admin/basic-info.php000066600000032126152141651100010363 0ustar00

Profile Builder %s', 'profile-builder' ), $version ); ?>


'page', 's' => '[wppb-' ) ); if( empty( $wppb_pages_created ) && !$shortcode_pages_query->have_posts() ){ ?>

[wppb-login]' ); ?>

[wppb-register]' ); ?>

[wppb-edit-profile]' ); ?>


[wppb-recover-password]' ); ?>


Profile Builder Extra Fields

[wppb-list-users]' ); ?>


paid member subscriptions

Paid user profiles with Profile Builder and Paid Member Subscriptions

One of the most requested features in Profile Builder was for users to be able to pay for an account.

Now that's possible using the free WordPress plugin - Paid Member Subscriptions.

Find out how

TranslatePress Logo

Easily translate your entire WordPress website

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.

Find out how


Extra Notes

Users can pay for an account with
Profile Builder and Paid Member Subscriptions


One of the most requested features in Profile Builder was for users to be able to pay for an account.

Now that's possible using the free WordPress plugin - Paid Member Subscriptions.


Other features of Paid Member Subscriptions are:

$wppb_plugin) { if( strtolower($wppb_plugin['Name']) == strtolower( 'Paid Member Subscriptions' ) && strpos(strtolower($wppb_plugin['AuthorName']), strtolower('Cozmoslabs')) !== false) { $pms_add_on_exists = 1; if (in_array($wppb_plugin_key, $wppb_get_active_plugins)) { $pms_add_on_is_active = 1; } // Consider the add-on active if it's network active if (is_plugin_active_for_network($wppb_plugin_key)) { $pms_add_on_is_network_active = 1; $pms_add_on_is_active = 1; } $plugin_file = $wppb_plugin_key; } } ?> active', 'profile-builder' ); ?> inactive', 'profile-builder' ); ?>


Setting up Paid Member Subscriptions opens the door to paid user accounts.

Create Subscription Plans

With Paid Member Subscriptions it’s fairly easy to create tiered subscription plans for your users.

Adding a new subscription gives you access to the following options to set up: subscription name, description, duration, the price, status and user role.

paid subscription plans

Add Subscriptions field to Profile Builder -> Manage Fields

The new Subscription Plans field will add a list of radio buttons with membership details to Profile Builder registration forms.

manage fields subscription plans

Start getting user payments

To finalize registration for a paid account, users will need to complete the payment.

Members created with Profile Builder registration form will have the user role of the selected subscription.

register payed accounts

' . __('Activate', 'profile-builder') . ''; // If add-on is network activated don't allow deactivation } elseif (!$pms_add_on_is_network_active) { echo '' . __('Deactivate', 'profile-builder') . ''; } // Display message to the user if( !$pms_add_on_is_active ){ echo '' . __('Plugin is inactive', 'profile-builder') . ''; } else { echo '' . __('Plugin is active', 'profile-builder') . ''; } } else { // If we're on a multisite don't add the wpp-add-on-download class to the button so we don't fire the js that // handles the in-page download if (is_multisite()) { $wppb_paid_link_class = 'button-secondary'; $wppb_paid_link_text = __('Download Now', 'profile-builder' ); } else { $wppb_paid_link_class = 'button-secondary wppb-add-on-download'; $wppb_paid_link_text = __('Install Now', 'profile-builder'); } echo '' . $wppb_paid_link_text . ''; echo '' . __('Compatible with your version of Profile Builder.', 'profile-builder') . ''; } ?>
install manually.', 'profile-builder'), esc_url( 'http://www.wordpress.org/plugins/paid-member-subscriptions' )) ?>. */ ?>
paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s', 'profile-builder'), "", "", "", ""), 'pms-cross-promo'); } admin/manage-fields.php000066600000262025152141651100011050 0ustar00 __('Form Fields', 'profile-builder'), 'page_title' => __('Manage Form Fields', 'profile-builder'), 'menu_slug' => 'manage-fields', 'page_type' => 'submenu_page', 'capability' => 'manage_options', 'priority' => 5, 'parent_slug' => 'profile-builder' ); $manage_fields_page = new WCK_Page_Creator_PB($args); } add_action( 'admin_menu', 'wppb_manage_fields_submenu', 1 ); function wppb_populate_manage_fields(){ $manage_field_types = array( 'optgroups' => array( 'default' => array( 'label' => __('Default'), 'options' => array( 'Default - Name (Heading)', 'Default - Contact Info (Heading)', 'Default - About Yourself (Heading)', 'Default - Username', 'Default - First Name', 'Default - Last Name', 'Default - Nickname', 'Default - E-mail', 'Default - Website', 'Default - Password', 'Default - Repeat Password', 'Default - Biographical Info', 'Default - Display name publicly as', ), ), 'standard' => array( 'label' => __('Standard'), 'options' => array(), ), 'advanced' => array( 'label' => __('Advanced'), 'options' => array(), ), 'other' => array( 'label' => __('Other'), 'options' => array( 'GDPR Checkbox', // since 2.8.2 'GDPR Delete Button', // since 3.0.1 ), ), ), ); // Default contact methods were removed in WP 3.6. A filter dictates contact methods. if ( apply_filters( 'wppb_remove_default_contact_methods', get_site_option( 'initial_db_version' ) < 23588 ) ){ $manage_field_types['optgroups']['default']['options'][] = 'Default - AIM'; $manage_field_types['optgroups']['default']['options'][] = 'Default - Yahoo IM'; $manage_field_types['optgroups']['default']['options'][] = 'Default - Jabber / Google Talk'; } if ( wppb_can_users_signup_blog() ) { $manage_field_types['optgroups']['advanced']['options'][] = 'Default - Blog Details'; } if( PROFILE_BUILDER != 'Profile Builder Free' ) { $manage_field_types['optgroups']['standard']['options'][] = 'Heading'; $manage_field_types['optgroups']['standard']['options'][] = 'Input'; $manage_field_types['optgroups']['standard']['options'][] = 'Number'; $manage_field_types['optgroups']['standard']['options'][] = 'Input (Hidden)'; $manage_field_types['optgroups']['standard']['options'][] = 'Textarea'; $manage_field_types['optgroups']['standard']['options'][] = 'WYSIWYG'; $manage_field_types['optgroups']['standard']['options'][] = 'Select'; $manage_field_types['optgroups']['standard']['options'][] = 'Select (Multiple)'; $manage_field_types['optgroups']['standard']['options'][] = 'Checkbox'; $manage_field_types['optgroups']['standard']['options'][] = 'Radio'; $manage_field_types['optgroups']['standard']['options'][] = 'HTML'; $manage_field_types['optgroups']['standard']['options'][] = 'Upload'; $manage_field_types['optgroups']['standard']['options'][] = 'Avatar'; $manage_field_types['optgroups']['advanced']['options'][] = 'Phone'; $manage_field_types['optgroups']['advanced']['options'][] = 'Select (Country)'; $manage_field_types['optgroups']['advanced']['options'][] = 'Select (Timezone)'; $manage_field_types['optgroups']['advanced']['options'][] = 'Select (Currency)'; $manage_field_types['optgroups']['advanced']['options'][] = 'Select (CPT)'; $manage_field_types['optgroups']['advanced']['options'][] = 'Checkbox (Terms and Conditions)'; $manage_field_types['optgroups']['advanced']['options'][] = 'Datepicker'; $manage_field_types['optgroups']['advanced']['options'][] = 'Timepicker'; $manage_field_types['optgroups']['advanced']['options'][] = 'Colorpicker'; $manage_field_types['optgroups']['advanced']['options'][] = 'Validation'; $manage_field_types['optgroups']['advanced']['options'][] = 'Map'; $manage_field_types['optgroups']['other']['options'][] = 'Email'; $manage_field_types['optgroups']['other']['options'][] = 'URL'; } /* added recaptcha and user role field since version 2.6.2 */ $manage_field_types['optgroups']['advanced']['options'][] = 'reCAPTCHA'; $manage_field_types['optgroups']['advanced']['options'][] = 'Select (User Role)'; $manage_field_types['optgroups']['other']['options'] = apply_filters( 'wppb_manage_fields_types', $manage_field_types['optgroups']['other']['options'] ); $manage_field_types = apply_filters( 'wppb_all_manage_fields_types', $manage_field_types ); //Free to Pro call to action on Manage Fields page $field_description = __('Choose one of the supported field types','profile-builder'); if( PROFILE_BUILDER == 'Profile Builder Free' ) { $field_description .= sprintf( __('. Extra Field Types are available in Hobbyist or PRO versions.' , 'profile-builder'), esc_url( 'https://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wpbackend&utm_medium=clientsite&utm_content=manage-fields-link&utm_campaign=PBFree' ) ); } //user roles global $wp_roles; // @TODO - The block below could use refactoring, see new function wppb_prepare_key_value_options. $user_roles = array(); foreach( $wp_roles->roles as $user_role_slug => $user_role ) if( $user_role_slug !== 'administrator' ) array_push( $user_roles, '%' . wppb_prepare_wck_labels( $user_role['name'] ) . '%' . $user_role_slug ); // @TODO - The block below could use refactoring, see new function wppb_prepare_key_value_options. // country select $default_country_array = wppb_country_select_options( 'back_end' ); foreach( $default_country_array as $iso_country_code => $country_name ) { $default_country_options[] = '%'. wppb_prepare_wck_labels( $country_name ) .'%'.$iso_country_code; } // @TODO - The block below could use refactoring, see new function wppb_prepare_key_value_options. // currency select $default_currency_array = wppb_get_currencies( 'back_end' ); array_unshift( $default_currency_array, '' ); foreach( $default_currency_array as $iso_currency_code => $currency_name ) { $default_currency_options[] = '%'. wppb_prepare_wck_labels( $currency_name ) .'%'.$iso_currency_code; } //cpt select $post_types = get_post_types( array( 'public' => true ), 'names' ); if( apply_filters( 'wppb_update_field_meta_key_in_db', false ) ) { $meta_key_description = __( 'Use this in conjunction with WordPress functions to display the value in the page of your choosing
Auto-completed but in some cases editable (in which case it must be unique)
Changing this might take long in case of a very big user-count', 'profile-builder' ); } else{ $meta_key_description = __( 'Use this in conjunction with WordPress functions to display the value in the page of your choosing
Auto-completed but in some cases editable (in which case it must be unique)
Changing this will only affect subsequent entries', 'profile-builder' ); } // Initiate the list of available tags for the pin bubble. if( function_exists( 'wppb_generate_userlisting_merge_tags' ) ) { $bubble_meta_tags = wppb_generate_userlisting_merge_tags('meta'); $bubble_meta_tags = wp_list_pluck($bubble_meta_tags, 'label', 'name'); } else $bubble_meta_tags = array(); // set up the fields array $fields = apply_filters( 'wppb_manage_fields', array( array( 'type' => 'text', 'slug' => 'field-title', 'title' => __( 'Field Title', 'profile-builder' ), 'description' => __( 'Title of the field', 'profile-builder' ) ), array( 'type' => 'select', 'slug' => 'field', 'title' => __( 'Field', 'profile-builder' ), 'options' => apply_filters( 'wppb_manage_fields_types_options', $manage_field_types ), 'default-option' => true, 'description' => $field_description ), array( 'type' => 'text', 'slug' => 'meta-name', 'title' => __( 'Meta-name', 'profile-builder' ), 'default' => wppb_get_meta_name(), 'description' => $meta_key_description ), array( 'type' => 'text', 'slug' => 'id', 'title' => __( 'ID', 'profile-builder' ), 'default' => wppb_get_unique_id(), 'description' => __( "A unique, auto-generated ID for this particular field
You can use this in conjuction with filters to target this element if needed
Can't be edited", 'profile-builder' ), 'readonly' => true ), array( 'type' => 'textarea', 'slug' => 'description', 'title' => __( 'Description', 'profile-builder' ), 'description' => __( 'Enter a (detailed) description of the option for end users to read
Optional', 'profile-builder') ), array( 'type' => 'text', 'slug' => 'row-count', 'title' => __( 'Row Count', 'profile-builder' ), 'default' => 5, 'description' => __( "Specify the number of rows for a 'Textarea' field
If not specified, defaults to 5", 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'allowed-image-extensions', 'title' => __( 'Allowed Image Extensions', 'profile-builder' ), 'default' => '.*', 'description' => __( 'Specify the extension(s) you want to limit to upload
Example: .ext1,.ext2,.ext3
If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)', 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'allowed-upload-extensions', 'title' => __( 'Allowed Upload Extensions', 'profile-builder' ), 'default' => '.*', 'description' => __( 'Specify the extension(s) you want to limit to upload
Example: .ext1,.ext2,.ext3
If not specified, defaults to all WordPress allowed file extensions (.*)', 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'avatar-size', 'title' => __( 'Avatar Size', 'profile-builder' ), 'default' => 100, 'description' => __( "Enter a value (between 20 and 200) for the size of the 'Avatar'
If not specified, defaults to 100", 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'date-format', 'title' => __( 'Date-format', 'profile-builder' ), 'default' => 'mm/dd/yy', 'description' => __( 'Specify the format of the date when using Datepicker
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, @
If not specified, defaults to mm/dd/yy', 'profile-builder' ) ), array( 'type' => 'textarea', 'slug' => 'terms-of-agreement', 'title' => __( 'Terms of Agreement', 'profile-builder' ), 'description' => __( 'Enter a detailed description of the temrs of agreement for the user to read.
Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>', 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'options', 'title' => __( 'Options', 'profile-builder' ), 'description' => __( "Enter a comma separated list of values
This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes", 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'labels', 'title' => __( 'Labels', 'profile-builder' ), 'description' => __( "Enter a comma separated list of labels
Visible for the user", 'profile-builder' ) ), array( 'type' => 'select', 'slug' => 'recaptcha-type', 'title' => __( 'reCAPTCHA Type', 'profile-builder' ), 'options' => array('%reCAPTCHA V2%v2', '%Invisible reCAPTCHA%invisible'), 'default' => 'v2', 'description' => __( 'Choose the type of reCAPTCHA you wish to add to this site.', 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'public-key', 'title' => __( 'Site Key', 'profile-builder' ), 'description' => __( 'The site key from Google, www.google.com/recaptcha', 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'private-key', 'title' => __( 'Secret Key', 'profile-builder' ), 'description' => __( 'The secret key from Google, www.google.com/recaptcha', 'profile-builder' ) ), array( 'type' => 'checkbox', 'slug' => 'captcha-pb-forms', 'title' => __( 'Display on PB forms', 'profile-builder' ), 'options' => array( '%'.__('PB Login','profile-builder').'%'.'pb_login', '%'.__('PB Register','profile-builder').'%'.'pb_register', '%'.__('PB Recover Password','profile-builder').'%'.'pb_recover_password' ), 'default' => 'pb_register', 'description' => __( "Select on which Profile Builder forms to display reCAPTCHA", 'profile-builder' ) ), array( 'type' => 'checkbox', 'slug' => 'captcha-wp-forms', 'title' => __( 'Display on default WP forms', 'profile-builder' ), 'options' => array( '%'.__('Default WP Login', 'profile-builder').'%'.'default_wp_login', '%'.__('Default WP Register', 'profile-builder').'%'.'default_wp_register', '%'.__('Default WP Recover Password', 'profile-builder').'%'.'default_wp_recover_password'), 'default' => 'default_wp_register', 'description' => __( "Select on which default WP forms to display reCAPTCHA", 'profile-builder' ) ), array( 'type' => 'checkbox', 'slug' => 'user-roles', 'title' => __( 'User Roles', 'profile-builder' ), 'options' => $user_roles, 'description' => __( "Select which user roles to show to the user ( drag and drop to re-order )", 'profile-builder' ) ), array( 'type' => 'checkbox', 'slug' => 'user-roles-on-edit-profile', 'title' => __( 'Display on Edit Profile', 'profile-builder' ), 'options' => array('%Yes%yes'), 'description' => __( "Check if you want the select user role field to appear on Edit Profile forms", 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'user-roles-sort-order', 'title' => __( 'User Roles Order', 'profile-builder' ), 'description' => __( "Save the user role order from the user roles checkboxes", 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'default-value', 'title' => __( 'Default Value', 'profile-builder' ), 'description' => __( "Default value of the field", 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'default-option', 'title' => __( 'Default Option', 'profile-builder' ), 'description' => __( "Specify the option which should be selected by default", 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'default-options', 'title' => __( 'Default Option(s)', 'profile-builder' ), 'description' => __( "Specify the option which should be checked by default
If there are multiple values, separate them with a ',' (comma)", 'profile-builder' ) ), array( 'type' => 'select', 'slug' => 'default-option-country', 'title' => __( 'Default Option', 'profile-builder' ), 'options' => ( isset( $default_country_options ) ) ? $default_country_options : '', 'description' => __( "Default option of the field", 'profile-builder' ) ), array( 'type' => 'select', 'slug' => 'default-option-timezone', 'title' => __( 'Default Option', 'profile-builder' ), 'options' => wppb_timezone_select_options( 'back_end' ), 'description' => __( "Default option of the field", 'profile-builder' ) ), array( 'type' => 'select', 'slug' => 'default-option-currency', 'title' => __( 'Default Option', 'profile-builder' ), 'options' => ( isset( $default_currency_options ) ) ? $default_currency_options : '', 'description' => __( "Default option of the field", 'profile-builder' ) ), array( 'type' => 'select', 'slug' => 'show-currency-symbol', 'title' => __( 'Show Currency Symbol', 'profile-builder' ), 'options' => array( 'No', 'Yes' ), 'default' => 'No', 'description' => __( 'Whether the currency symbol should be displayed after the currency name in the select option.', 'profile-builder' ) ), array( 'type' => 'select', 'slug' => 'cpt', 'title' => __( 'Show Post Type', 'profile-builder' ), 'options' => $post_types, 'default' => 'post', 'description' => __( 'Posts from what post type will be displayed in the select.', 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'validation-possible-values', 'title' => __( 'Allowable Values', 'profile-builder' ), 'description' => __( "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.", 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'custom-error-message', 'title' => __( 'Error Message', 'profile-builder' ), 'description' => __( "Set a custom error message that will be displayed to the user.", 'profile-builder' ) ), array( 'type' => 'select', 'slug' => 'time-format', 'title' => __( 'Time Format', 'profile-builder' ), 'options' => array( '%12 Hours%12', '%24 Hours%24' ), 'description' => __( 'Specify the time format.', 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'map-api-key', 'title' => __( 'Google Maps API Key', 'profile-builder' ), 'description' => __( 'Enter your Google Maps API key ( Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used.', 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'map-default-lat', 'title' => __( 'Default Latitude', 'profile-builder' ), 'description' => __( 'The latitude at which the map should be displayed when no pins are attached.', 'profile-builder' ), 'default' => WPPB_DEFAULTS_MAP_LAT, ), array( 'type' => 'text', 'slug' => 'map-default-lng', 'title' => __( 'Default Longitude', 'profile-builder' ), 'description' => __( 'The longitude at which the map should be displayed when no pins are attached.', 'profile-builder' ), 'default' => WPPB_DEFAULTS_MAP_LNG, ), array( 'type' => 'text', 'slug' => 'map-default-zoom', 'title' => __( 'Default Zoom Level', 'profile-builder' ), 'description' => __( 'Add a number from 0 to 19. The higher the number the higher the zoom.', 'profile-builder' ), 'default' => WPPB_DEFAULTS_MAP_ZOOM, ), array( 'type' => 'text', 'slug' => 'map-height', 'title' => __( 'Map Height', 'profile-builder' ), 'description' => __( "The height of the map.", 'profile-builder' ), 'default' => 400 ), array( 'type' => 'textarea', 'slug' => 'default-content', 'title' => __( 'Default Content', 'profile-builder' ), 'description' => __( "Default value of the textarea", 'profile-builder' ) ), array( 'type' => 'textarea', 'slug' => 'html-content', 'title' => __( 'HTML Content', 'profile-builder' ), 'description' => __( "Add your HTML (or text) content", 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'phone-format', 'title' => __( 'Phone Format', 'profile-builder' ), 'default' => '(###) ###-####', 'description' => __( "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces.", 'profile-builder' ) .'
'. __( "Eg. (###) ###-####", 'profile-builder' ) .'
'. __( "Empty field won't check for correct phone number.", 'profile-builder' ) ), array( 'type' => 'select', 'slug' => 'heading-tag', 'title' => __( 'Heading Tag', 'profile-builder' ), 'options' => array( '%h1 - biggest size%h1', 'h2', 'h3', 'h4', 'h5', '%h6 - smallest size%h6' ), 'default' => 'h4', 'description' => __( 'Change heading field size on front-end forms', 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'min-number-value', 'title' => __( 'Min Number Value', 'profile-builder' ), 'description' => __( "Min allowed number value (0 to allow only positive numbers)", 'profile-builder' ) .'
'. __( "Leave it empty for no min value", 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'max-number-value', 'title' => __( 'Max Number Value', 'profile-builder' ), 'description' => __( "Max allowed number value (0 to allow only negative numbers)", 'profile-builder' ) .'
'. __( "Leave it empty for no max value", 'profile-builder' ) ), array( 'type' => 'text', 'slug' => 'number-step-value', 'title' => __( 'Number Step Value', 'profile-builder' ), 'description' => __( "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal", 'profile-builder' ) .'
'. __( "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on", 'profile-builder' ) .'
'. __( "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)", 'profile-builder' ) .'
'. __( "Leave it empty for no restriction", 'profile-builder' ) ), array( 'type' => 'select', 'slug' => 'required', 'title' => __( 'Required', 'profile-builder' ), 'options' => array( 'No', 'Yes' ), 'default' => 'No', 'description' => __( 'Whether the field is required or not', 'profile-builder' ) ), array( 'type' => 'select', 'slug' => 'overwrite-existing', 'title' => __( 'Overwrite Existing', 'profile-builder' ), 'options' => array( 'No', 'Yes' ), 'default' => 'No', 'description' => __( "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name
Use this at your own risk", 'profile-builder' ) ), // Added the new option for the map field type, that allows to customize the POIs load type. array( 'type' => 'select', 'slug' => 'map-pins-load-type', 'title' => __( 'POIs Load Type', 'profile-builder' ), 'options' => array( '%' . __( 'POIs of the listed users (as filtered & paginated)', 'profile-builder' ) . '%', '%' . __( 'POIs of all the users for the filter* (no pagination)', 'profile-builder' ) . '%all', ), 'default' => '', 'description' => __( 'This option allows you to load on a single map the POIs for all users, or just these for the listed ones (this will take into account the filters and the faceted menus). *Please use this feature wisely, it will impact the performance.', 'profile-builder' ), ), // Added the new option for the map field type, that allows to customize the POI bubble content. array( 'type' => 'checkbox', 'slug' => 'map-bubble-fields', 'title' => __( 'POI Bubble Info', 'profile-builder' ), 'options' => wppb_prepare_key_value_options( apply_filters( 'wppb_map_bubble_fields', $bubble_meta_tags ) ), 'default' => 'avatar_or_gravatar, meta_display_name', 'description' => __( 'Select the attributes to be listed inside the POI bubble.', 'profile-builder' ), 'extra_attributes' => array( 'dropdown_options' => true, 'sortable_options' => true, ), ), // Added the new option for the map field type, that allows to customize the number of users per iteration. array( 'type' => 'text', 'slug' => 'map-pagination-number', 'title' => __( 'Number of Users per Map Iteration', 'profile-builder' ), 'description' => __( '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.

Please adjust this value to your hosting capabilities, and make sure that the value you set is the best for performance. We recommend a maximum value of 300.', 'profile-builder' ), 'default' => 50, ), ) ); // create the new submenu with the above options $args = array( 'metabox_id' => 'manage-fields', 'metabox_title' => __( 'Form Field Properties', 'profile-builder' ), 'post_type' => 'manage-fields', 'meta_name' => 'wppb_manage_fields', 'meta_array' => $fields, 'context' => 'option' ); new Wordpress_Creation_Kit_PB( $args ); /* this is redundant but it should have a very low impact and for comfort we leave it here as well */ wppb_prepopulate_fields(); // create the info side meta-box $args = array( 'metabox_id' => 'manage-fields-info', 'metabox_title' => __( 'Registration & Edit Profile Forms', 'profile-builder' ), 'post_type' => 'manage-fields', 'meta_name' => 'wppb_manage_fields_info', 'meta_array' => '', 'context' => 'option', 'mb_context' => 'side' ); new Wordpress_Creation_Kit_PB( $args ); } add_action( 'admin_init', 'wppb_populate_manage_fields', 1 ); /** * Function that prepopulates the manage fields list with the default fields of WP * * @since v.2.0 * * @return void */ function wppb_prepopulate_fields(){ $prepopulated_fields[] = array( 'field' => 'Default - Name (Heading)', 'field-title' => __( 'Name', 'profile-builder' ), 'meta-name' => '', 'overwrite-existing' => 'No', 'id' => '1', 'description' => '', 'row-count' => '5', 'allowed-image-extensions' => '.*', 'allowed-upload-extensions' => '.*', 'avatar-size' => '100', 'date-format' => 'mm/dd/yy', 'terms-of-agreement' => '', 'options' => '', 'labels' => '', 'public-key' => '', 'private-key' => '', 'default-value' => '', 'default-option' => '', 'default-options' => '', 'default-content' => '', 'required' => 'No' ); $prepopulated_fields[] = array( 'field' => 'Default - Username', 'field-title' => __( 'Username', 'profile-builder' ), 'meta-name' => '', 'overwrite-existing' => 'No', 'id' => '2', 'description' => __( 'Usernames cannot be changed.', 'profile-builder' ), 'row-count' => '5', 'allowed-image-extensions' => '.*', 'allowed-upload-extensions' => '.*', 'avatar-size' => '100', 'date-format' => 'mm/dd/yy', 'terms-of-agreement' => '', 'options' => '', 'labels' => '', 'public-key' => '', 'private-key' => '', 'default-value' => '', 'default-option' => '', 'default-options' => '', 'default-content' => '', 'required' => 'Yes' ); $prepopulated_fields[] = array( 'field' => 'Default - First Name', 'field-title' => __( 'First Name', 'profile-builder' ), 'meta-name' => 'first_name', 'overwrite-existing' => 'No', 'id' => '3', 'description' => '', 'row-count' => '5', 'allowed-image-extensions' => '.*', 'allowed-upload-extensions' => '.*', 'avatar-size' => '100', 'date-format' => 'mm/dd/yy', 'terms-of-agreement' => '', 'options' => '', 'labels' => '', 'public-key' => '', 'private-key' => '', 'default-value' => '', 'default-option' => '', 'default-options' => '', 'default-content' => '', 'required' => 'No' ); $prepopulated_fields[] = array( 'field' => 'Default - Last Name', 'field-title' => __( 'Last Name', 'profile-builder' ), 'meta-name' => 'last_name', 'overwrite-existing' => 'No', 'id' => '4', 'description' => '', 'row-count' => '5', 'allowed-image-extensions' => '.*', 'allowed-upload-extensions' => '.*', 'avatar-size' => '100', 'date-format' => 'mm/dd/yy', 'terms-of-agreement' => '', 'options' => '', 'labels' => '', 'public-key' => '', 'private-key' => '', 'default-value' => '', 'default-option' => '', 'default-options' => '', 'default-content' => '', 'required' => 'No' ); $prepopulated_fields[] = array( 'field' => 'Default - Nickname', 'field-title' => __( 'Nickname', 'profile-builder' ), 'meta-name' => 'nickname', 'overwrite-existing' => 'No', 'id' => '5', 'description' => '', 'row-count' => '5', 'allowed-image-extensions' => '.*', 'allowed-upload-extensions' => '.*', 'avatar-size' => '100', 'date-format' => 'mm/dd/yy', 'terms-of-agreement' => '', 'options' => '', 'labels' => '', 'public-key' => '', 'private-key' => '', 'default-value' => '', 'default-option' => '', 'default-options' => '', 'default-content' => '', 'required' => 'Yes' ); $prepopulated_fields[] = array( 'field' => 'Default - Display name publicly as', 'field-title' => __( 'Display name publicly as', 'profile-builder' ), 'meta-name' => '', 'overwrite-existing' => 'No', 'id' => '6', 'description' => '', 'row-count' => '5', 'allowed-image-extensions' => '.*', 'allowed-upload-extensions' => '.*', 'avatar-size' => '100', 'date-format' => 'mm/dd/yy', 'terms-of-agreement' => '', 'options' => '', 'labels' => '', 'public-key' => '', 'private-key' => '', 'default-value' => '', 'default-option' => '', 'default-options' => '', 'default-content' => '', 'required' => 'No' ); $prepopulated_fields[] = array( 'field' => 'Default - Contact Info (Heading)', 'field-title' => __( 'Contact Info', 'profile-builder' ), 'meta-name' => '', 'overwrite-existing' => 'No', 'id' => '7', 'description' => '', 'row-count' => '5', 'allowed-image-extensions' => '.*', 'allowed-upload-extensions' => '.*', 'avatar-size' => '100', 'date-format' => 'mm/dd/yy', 'terms-of-agreement' => '', 'options' => '', 'labels' => '', 'public-key' => '', 'private-key' => '', 'default-value' => '', 'default-option' => '', 'default-options' => '', 'default-content' => '', 'required' => 'No' ); $prepopulated_fields[] = array( 'field' => 'Default - E-mail', 'field-title' => __( 'E-mail', 'profile-builder' ), 'meta-name' => '', 'overwrite-existing' => 'No', 'id' => '8', 'description' => '', 'row-count' => '5', 'allowed-image-extensions' => '.*', 'allowed-upload-extensions' => '.*', 'avatar-size' => '100', 'date-format' => 'mm/dd/yy', 'terms-of-agreement' => '', 'options' => '', 'labels' => '', 'public-key' => '', 'private-key' => '', 'default-value' => '', 'default-option' => '', 'default-options' => '', 'default-content' => '', 'required' => 'Yes' ); $prepopulated_fields[] = array( 'field' => 'Default - Website', 'field-title' => __( 'Website', 'profile-builder' ), 'meta-name' => '', 'overwrite-existing' => 'No', 'id' => '9', 'description' => '', 'row-count' => '5', 'allowed-image-extensions' => '.*', 'allowed-upload-extensions' => '.*', 'avatar-size' => '100', 'date-format' => 'mm/dd/yy', 'terms-of-agreement' => '', 'options' => '', 'labels' => '', 'public-key' => '', 'private-key' => '', 'default-value' => '', 'default-option' => '', 'default-options' => '', 'default-content' => '', 'required' => 'No' ); // Default contact methods were removed in WP 3.6. A filter dictates contact methods. if ( apply_filters( 'wppb_remove_default_contact_methods', get_site_option( 'initial_db_version' ) < 23588 ) ){ $prepopulated_fields[] = array( 'field' => 'Default - AIM', 'field-title' => __( 'AIM', 'profile-builder' ), 'meta-name' => 'aim', 'overwrite-existing' => 'No', 'id' => '10', 'description' => '', 'row-count' => '5', 'allowed-image-extensions' => '.*', 'allowed-upload-extensions' => '.*', 'avatar-size' => '100', 'date-format' => 'mm/dd/yy', 'terms-of-agreement' => '', 'options' => '', 'labels' => '', 'public-key' => '', 'private-key' => '', 'default-value' => '', 'default-option' => '', 'default-options' => '', 'default-content' => '', 'required' => 'No' ); $prepopulated_fields[] = array( 'field' => 'Default - Yahoo IM', 'field-title' => __( 'Yahoo IM', 'profile-builder' ), 'meta-name' => 'yim', 'overwrite-existing' => 'No', 'id' => '11', 'description' => '', 'row-count' => '5', 'allowed-image-extensions' => '.*', 'allowed-upload-extensions' => '.*', 'avatar-size' => '100', 'date-format' => 'mm/dd/yy', 'terms-of-agreement' => '', 'options' => '', 'labels' => '', 'public-key' => '', 'private-key' => '', 'default-value' => '', 'default-option' => '', 'default-options' => '', 'default-content' => '', 'required' => 'No' ); $prepopulated_fields[] = array( 'field' => 'Default - Jabber / Google Talk', 'field-title' => __( 'Jabber / Google Talk', 'profile-builder' ), 'meta-name' => 'jabber', 'overwrite-existing' => 'No', 'id' => '12', 'description' => '', 'row-count' => '5', 'allowed-image-extensions' => '.*', 'allowed-upload-extensions' => '.*', 'avatar-size' => '100', 'date-format' => 'mm/dd/yy', 'terms-of-agreement' => '', 'options' => '', 'labels' => '', 'public-key' => '', 'private-key' => '', 'default-value' => '', 'default-option' => '', 'default-options' => '', 'default-content' => '', 'required' => 'No' ); } $prepopulated_fields[] = array( 'field' => 'Default - About Yourself (Heading)', 'field-title' => __( 'About Yourself', 'profile-builder' ), 'meta-name' => '', 'overwrite-existing' => 'No', 'id' => '13', 'description' => '', 'row-count' => '5', 'allowed-image-extensions' => '.*', 'allowed-upload-extensions' => '.*', 'avatar-size' => '100', 'date-format' => 'mm/dd/yy', 'terms-of-agreement' => '', 'options' => '', 'labels' => '', 'public-key' => '', 'private-key' => '', 'default-value' => '', 'default-option' => '', 'default-options' => '', 'default-content' => '', 'required' => 'No' ); $prepopulated_fields[] = array( 'field' => 'Default - Biographical Info', 'field-title' => __( 'Biographical Info', 'profile-builder' ), 'meta-name' => 'description', 'overwrite-existing' => 'No', 'id' => '14', 'description' => __( 'Share a little biographical information to fill out your profile. This may be shown publicly.', 'profile-builder' ), 'row-count' => '5', 'allowed-image-extensions' => '.*', 'allowed-upload-extensions' => '.*', 'avatar-size' => '100', 'date-format' => 'mm/dd/yy', 'terms-of-agreement' => '', 'options' => '', 'labels' => '', 'public-key' => '', 'private-key' => '', 'default-value' => '', 'default-option' => '', 'default-options' => '', 'required' => 'No' ); $prepopulated_fields[] = array( 'field' => 'Default - Password', 'field-title' => __( 'Password', 'profile-builder' ), 'meta-name' => '', 'overwrite-existing' => 'No', 'id' => '15', 'description' => __( 'Type your password.', 'profile-builder' ), 'row-count' => '5', 'allowed-image-extensions' => '.*', 'allowed-upload-extensions' => '.*', 'avatar-size' => '100', 'date-format' => 'mm/dd/yy', 'terms-of-agreement' => '', 'options' => '', 'labels' => '', 'public-key' => '', 'private-key' => '', 'default-value' => '', 'default-option' => '', 'default-options' => '', 'default-content' => '', 'required' => 'Yes' ); $prepopulated_fields[] = array( 'field' => 'Default - Repeat Password', 'field-title' => __( 'Repeat Password', 'profile-builder' ), 'meta-name' => '', 'overwrite-existing' => 'No', 'id' => '16', 'description' => __( 'Type your password again. ', 'profile-builder' ), 'row-count' => '5', 'allowed-image-extensions' => '.*', 'allowed-upload-extensions' => '.*', 'avatar-size' => '100', 'date-format' => 'mm/dd/yy', 'terms-of-agreement' => '', 'options' => '', 'labels' => '', 'public-key' => '', 'private-key' => '', 'default-value' => '', 'default-option' => '', 'default-options' => '', 'default-content' => '', 'required' => 'Yes' ); if ( wppb_can_users_signup_blog() ){ $prepopulated_fields[] = array( 'field' => 'Default - Blog Details', 'field-title' => __( 'Blog Details', 'profile-builder' ), 'meta-name' => '', 'overwrite-existing' => 'No', 'id' => '17', 'description' => '', 'row-count' => '5', 'allowed-image-extensions' => '.*', 'allowed-upload-extensions' => '.*', 'avatar-size' => '100', 'date-format' => 'mm/dd/yy', 'terms-of-agreement' => '', 'options' => '', 'labels' => '', 'public-key' => '', 'private-key' => '', 'default-value' => '', 'default-option' => '', 'default-options' => '', 'default-content' => '', 'required' => 'No' ); } add_option ( 'wppb_manage_fields', apply_filters ( 'wppb_prepopulated_fields', $prepopulated_fields ) ); } /** * Function that returns a unique meta-name * * @since v.2.0 * * @return string */ function wppb_get_meta_name( $option = 'wppb_manage_fields', $prefix = 'custom_field_' ){ $id = 1; $wppb_manage_fields = get_option( $option, 'not_found' ); if ( ( $wppb_manage_fields === 'not_found' ) || ( empty( $wppb_manage_fields ) ) ){ return $prefix . $id; } else{ $meta_names = array(); foreach( $wppb_manage_fields as $value ){ if ( strpos( $value['meta-name'], $prefix ) === 0 ){ $meta_names[] = $value['meta-name']; } } if( !empty( $meta_names ) ){ $meta_numbers = array(); foreach( $meta_names as $meta_name ){ $number = str_replace( $prefix, '', $meta_name ); /* we should have an underscore present in custom_field_# so remove it */ $number = str_replace( '_', '', $number ); $meta_numbers[] = $number; } if( !empty( $meta_numbers ) ){ rsort( $meta_numbers ); $id = (int)$meta_numbers[0] + 1; } } return $prefix . $id; } } /** * Function that returns an array with countries * * @since v.2.0 * * @return array */ function wppb_country_select_options( $form_location ) { $country_array = apply_filters( 'wppb_'.$form_location.'_country_select_array', array( '' => __( 'Select a Country', 'profile-builder' ), 'AF' => __( 'Afghanistan', 'profile-builder' ), 'AX' => __( 'Aland Islands', 'profile-builder' ), 'AL' => __( 'Albania', 'profile-builder' ), 'DZ' => __( 'Algeria', 'profile-builder' ), 'AS' => __( 'American Samoa', 'profile-builder' ), 'AD' => __( 'Andorra', 'profile-builder' ), 'AO' => __( 'Angola', 'profile-builder' ), 'AI' => __( 'Anguilla', 'profile-builder' ), 'AQ' => __( 'Antarctica', 'profile-builder' ), 'AG' => __( 'Antigua and Barbuda', 'profile-builder' ), 'AR' => __( 'Argentina', 'profile-builder' ), 'AM' => __( 'Armenia', 'profile-builder' ), 'AW' => __( 'Aruba', 'profile-builder' ), 'AU' => __( 'Australia', 'profile-builder' ), 'AT' => __( 'Austria', 'profile-builder' ), 'AZ' => __( 'Azerbaijan', 'profile-builder' ), 'BS' => __( 'Bahamas', 'profile-builder' ), 'BH' => __( 'Bahrain', 'profile-builder' ), 'BD' => __( 'Bangladesh', 'profile-builder' ), 'BB' => __( 'Barbados', 'profile-builder' ), 'BY' => __( 'Belarus', 'profile-builder' ), 'BE' => __( 'Belgium', 'profile-builder' ), 'BZ' => __( 'Belize', 'profile-builder' ), 'BJ' => __( 'Benin', 'profile-builder' ), 'BM' => __( 'Bermuda', 'profile-builder' ), 'BT' => __( 'Bhutan', 'profile-builder' ), 'BO' => __( 'Bolivia', 'profile-builder' ), 'BQ' => __( 'Bonaire, Saint Eustatius and Saba', 'profile-builder' ), 'BA' => __( 'Bosnia and Herzegovina', 'profile-builder' ), 'BW' => __( 'Botswana', 'profile-builder' ), 'BV' => __( 'Bouvet Island', 'profile-builder' ), 'BR' => __( 'Brazil', 'profile-builder' ), 'IO' => __( 'British Indian Ocean Territory', 'profile-builder' ), 'VG' => __( 'British Virgin Islands', 'profile-builder' ), 'BN' => __( 'Brunei', 'profile-builder' ), 'BG' => __( 'Bulgaria', 'profile-builder' ), 'BF' => __( 'Burkina Faso', 'profile-builder' ), 'BI' => __( 'Burundi', 'profile-builder' ), 'KH' => __( 'Cambodia', 'profile-builder' ), 'CM' => __( 'Cameroon', 'profile-builder' ), 'CA' => __( 'Canada', 'profile-builder' ), 'CV' => __( 'Cape Verde', 'profile-builder' ), 'KY' => __( 'Cayman Islands', 'profile-builder' ), 'CF' => __( 'Central African Republic', 'profile-builder' ), 'TD' => __( 'Chad', 'profile-builder' ), 'CL' => __( 'Chile', 'profile-builder' ), 'CN' => __( 'China', 'profile-builder' ), 'CX' => __( 'Christmas Island', 'profile-builder' ), 'CC' => __( 'Cocos Islands', 'profile-builder' ), 'CO' => __( 'Colombia', 'profile-builder' ), 'KM' => __( 'Comoros', 'profile-builder' ), 'CK' => __( 'Cook Islands', 'profile-builder' ), 'CR' => __( 'Costa Rica', 'profile-builder' ), 'HR' => __( 'Croatia', 'profile-builder' ), 'CU' => __( 'Cuba', 'profile-builder' ), 'CW' => __( 'Curacao', 'profile-builder' ), 'CY' => __( 'Cyprus', 'profile-builder' ), 'CZ' => __( 'Czech Republic', 'profile-builder' ), 'CD' => __( 'Democratic Republic of the Congo', 'profile-builder' ), 'DK' => __( 'Denmark', 'profile-builder' ), 'DJ' => __( 'Djibouti', 'profile-builder' ), 'DM' => __( 'Dominica', 'profile-builder' ), 'DO' => __( 'Dominican Republic', 'profile-builder' ), 'TL' => __( 'East Timor', 'profile-builder' ), 'EC' => __( 'Ecuador', 'profile-builder' ), 'EG' => __( 'Egypt', 'profile-builder' ), 'SV' => __( 'El Salvador', 'profile-builder' ), 'GQ' => __( 'Equatorial Guinea', 'profile-builder' ), 'ER' => __( 'Eritrea', 'profile-builder' ), 'EE' => __( 'Estonia', 'profile-builder' ), 'ET' => __( 'Ethiopia', 'profile-builder' ), 'FK' => __( 'Falkland Islands', 'profile-builder' ), 'FO' => __( 'Faroe Islands', 'profile-builder' ), 'FJ' => __( 'Fiji', 'profile-builder' ), 'FI' => __( 'Finland', 'profile-builder' ), 'FR' => __( 'France', 'profile-builder' ), 'GF' => __( 'French Guiana', 'profile-builder' ), 'PF' => __( 'French Polynesia', 'profile-builder' ), 'TF' => __( 'French Southern Territories', 'profile-builder' ), 'GA' => __( 'Gabon', 'profile-builder' ), 'GM' => __( 'Gambia', 'profile-builder' ), 'GE' => __( 'Georgia', 'profile-builder' ), 'DE' => __( 'Germany', 'profile-builder' ), 'GH' => __( 'Ghana', 'profile-builder' ), 'GI' => __( 'Gibraltar', 'profile-builder' ), 'GR' => __( 'Greece', 'profile-builder' ), 'GL' => __( 'Greenland', 'profile-builder' ), 'GD' => __( 'Grenada', 'profile-builder' ), 'GP' => __( 'Guadeloupe', 'profile-builder' ), 'GU' => __( 'Guam', 'profile-builder' ), 'GT' => __( 'Guatemala', 'profile-builder' ), 'GG' => __( 'Guernsey', 'profile-builder' ), 'GN' => __( 'Guinea', 'profile-builder' ), 'GW' => __( 'Guinea-Bissau', 'profile-builder' ), 'GY' => __( 'Guyana', 'profile-builder' ), 'HT' => __( 'Haiti', 'profile-builder' ), 'HM' => __( 'Heard Island and McDonald Islands', 'profile-builder' ), 'HN' => __( 'Honduras', 'profile-builder' ), 'HK' => __( 'Hong Kong', 'profile-builder' ), 'HU' => __( 'Hungary', 'profile-builder' ), 'IS' => __( 'Iceland', 'profile-builder' ), 'IN' => __( 'India', 'profile-builder' ), 'ID' => __( 'Indonesia', 'profile-builder' ), 'IR' => __( 'Iran', 'profile-builder' ), 'IQ' => __( 'Iraq', 'profile-builder' ), 'IE' => __( 'Ireland', 'profile-builder' ), 'IM' => __( 'Isle of Man', 'profile-builder' ), 'IL' => __( 'Israel', 'profile-builder' ), 'IT' => __( 'Italy', 'profile-builder' ), 'CI' => __( 'Ivory Coast', 'profile-builder' ), 'JM' => __( 'Jamaica', 'profile-builder' ), 'JP' => __( 'Japan', 'profile-builder' ), 'JE' => __( 'Jersey', 'profile-builder' ), 'JO' => __( 'Jordan', 'profile-builder' ), 'KZ' => __( 'Kazakhstan', 'profile-builder' ), 'KE' => __( 'Kenya', 'profile-builder' ), 'KI' => __( 'Kiribati', 'profile-builder' ), 'XK' => __( 'Kosovo', 'profile-builder' ), 'KW' => __( 'Kuwait', 'profile-builder' ), 'KG' => __( 'Kyrgyzstan', 'profile-builder' ), 'LA' => __( 'Laos', 'profile-builder' ), 'LV' => __( 'Latvia', 'profile-builder' ), 'LB' => __( 'Lebanon', 'profile-builder' ), 'LS' => __( 'Lesotho', 'profile-builder' ), 'LR' => __( 'Liberia', 'profile-builder' ), 'LY' => __( 'Libya', 'profile-builder' ), 'LI' => __( 'Liechtenstein', 'profile-builder' ), 'LT' => __( 'Lithuania', 'profile-builder' ), 'LU' => __( 'Luxembourg', 'profile-builder' ), 'MO' => __( 'Macao', 'profile-builder' ), 'MK' => __( 'Macedonia', 'profile-builder' ), 'MG' => __( 'Madagascar', 'profile-builder' ), 'MW' => __( 'Malawi', 'profile-builder' ), 'MY' => __( 'Malaysia', 'profile-builder' ), 'MV' => __( 'Maldives', 'profile-builder' ), 'ML' => __( 'Mali', 'profile-builder' ), 'MT' => __( 'Malta', 'profile-builder' ), 'MH' => __( 'Marshall Islands', 'profile-builder' ), 'MQ' => __( 'Martinique', 'profile-builder' ), 'MR' => __( 'Mauritania', 'profile-builder' ), 'MU' => __( 'Mauritius', 'profile-builder' ), 'YT' => __( 'Mayotte', 'profile-builder' ), 'MX' => __( 'Mexico', 'profile-builder' ), 'FM' => __( 'Micronesia', 'profile-builder' ), 'MD' => __( 'Moldova', 'profile-builder' ), 'MC' => __( 'Monaco', 'profile-builder' ), 'MN' => __( 'Mongolia', 'profile-builder' ), 'ME' => __( 'Montenegro', 'profile-builder' ), 'MS' => __( 'Montserrat', 'profile-builder' ), 'MA' => __( 'Morocco', 'profile-builder' ), 'MZ' => __( 'Mozambique', 'profile-builder' ), 'MM' => __( 'Myanmar', 'profile-builder' ), 'NA' => __( 'Namibia', 'profile-builder' ), 'NR' => __( 'Nauru', 'profile-builder' ), 'NP' => __( 'Nepal', 'profile-builder' ), 'NL' => __( 'Netherlands', 'profile-builder' ), 'NC' => __( 'New Caledonia', 'profile-builder' ), 'NZ' => __( 'New Zealand', 'profile-builder' ), 'NI' => __( 'Nicaragua', 'profile-builder' ), 'NE' => __( 'Niger', 'profile-builder' ), 'NG' => __( 'Nigeria', 'profile-builder' ), 'NU' => __( 'Niue', 'profile-builder' ), 'NF' => __( 'Norfolk Island', 'profile-builder' ), 'KP' => __( 'North Korea', 'profile-builder' ), 'MP' => __( 'Northern Mariana Islands', 'profile-builder' ), 'NO' => __( 'Norway', 'profile-builder' ), 'OM' => __( 'Oman', 'profile-builder' ), 'PK' => __( 'Pakistan', 'profile-builder' ), 'PW' => __( 'Palau', 'profile-builder' ), 'PS' => __( 'Palestinian Territory', 'profile-builder' ), 'PA' => __( 'Panama', 'profile-builder' ), 'PG' => __( 'Papua New Guinea', 'profile-builder' ), 'PY' => __( 'Paraguay', 'profile-builder' ), 'PE' => __( 'Peru', 'profile-builder' ), 'PH' => __( 'Philippines', 'profile-builder' ), 'PN' => __( 'Pitcairn', 'profile-builder' ), 'PL' => __( 'Poland', 'profile-builder' ), 'PT' => __( 'Portugal', 'profile-builder' ), 'PR' => __( 'Puerto Rico', 'profile-builder' ), 'QA' => __( 'Qatar', 'profile-builder' ), 'CG' => __( 'Republic of the Congo', 'profile-builder' ), 'RE' => __( 'Reunion', 'profile-builder' ), 'RO' => __( 'Romania', 'profile-builder' ), 'RU' => __( 'Russia', 'profile-builder' ), 'RW' => __( 'Rwanda', 'profile-builder' ), 'BL' => __( 'Saint Barthelemy', 'profile-builder' ), 'SH' => __( 'Saint Helena', 'profile-builder' ), 'KN' => __( 'Saint Kitts and Nevis', 'profile-builder' ), 'LC' => __( 'Saint Lucia', 'profile-builder' ), 'MF' => __( 'Saint Martin', 'profile-builder' ), 'PM' => __( 'Saint Pierre and Miquelon', 'profile-builder' ), 'VC' => __( 'Saint Vincent and the Grenadines', 'profile-builder' ), 'WS' => __( 'Samoa', 'profile-builder' ), 'SM' => __( 'San Marino', 'profile-builder' ), 'ST' => __( 'Sao Tome and Principe', 'profile-builder' ), 'SA' => __( 'Saudi Arabia', 'profile-builder' ), 'SN' => __( 'Senegal', 'profile-builder' ), 'RS' => __( 'Serbia', 'profile-builder' ), 'SC' => __( 'Seychelles', 'profile-builder' ), 'SL' => __( 'Sierra Leone', 'profile-builder' ), 'SG' => __( 'Singapore', 'profile-builder' ), 'SX' => __( 'Sint Maarten', 'profile-builder' ), 'SK' => __( 'Slovakia', 'profile-builder' ), 'SI' => __( 'Slovenia', 'profile-builder' ), 'SB' => __( 'Solomon Islands', 'profile-builder' ), 'SO' => __( 'Somalia', 'profile-builder' ), 'ZA' => __( 'South Africa', 'profile-builder' ), 'GS' => __( 'South Georgia and the South Sandwich Islands', 'profile-builder' ), 'KR' => __( 'South Korea', 'profile-builder' ), 'SS' => __( 'South Sudan', 'profile-builder' ), 'ES' => __( 'Spain', 'profile-builder' ), 'LK' => __( 'Sri Lanka', 'profile-builder' ), 'SD' => __( 'Sudan', 'profile-builder' ), 'SR' => __( 'Suriname', 'profile-builder' ), 'SJ' => __( 'Svalbard and Jan Mayen', 'profile-builder' ), 'SZ' => __( 'Swaziland', 'profile-builder' ), 'SE' => __( 'Sweden', 'profile-builder' ), 'CH' => __( 'Switzerland', 'profile-builder' ), 'SY' => __( 'Syria', 'profile-builder' ), 'TW' => __( 'Taiwan', 'profile-builder' ), 'TJ' => __( 'Tajikistan', 'profile-builder' ), 'TZ' => __( 'Tanzania', 'profile-builder' ), 'TH' => __( 'Thailand', 'profile-builder' ), 'TG' => __( 'Togo', 'profile-builder' ), 'TK' => __( 'Tokelau', 'profile-builder' ), 'TO' => __( 'Tonga', 'profile-builder' ), 'TT' => __( 'Trinidad and Tobago', 'profile-builder' ), 'TN' => __( 'Tunisia', 'profile-builder' ), 'TR' => __( 'Turkey', 'profile-builder' ), 'TM' => __( 'Turkmenistan', 'profile-builder' ), 'TC' => __( 'Turks and Caicos Islands', 'profile-builder' ), 'TV' => __( 'Tuvalu', 'profile-builder' ), 'VI' => __( 'U.S. Virgin Islands', 'profile-builder' ), 'UG' => __( 'Uganda', 'profile-builder' ), 'UA' => __( 'Ukraine', 'profile-builder' ), 'AE' => __( 'United Arab Emirates', 'profile-builder' ), 'GB' => __( 'United Kingdom', 'profile-builder' ), 'US' => __( 'United States', 'profile-builder' ), 'UM' => __( 'United States Minor Outlying Islands', 'profile-builder' ), 'UY' => __( 'Uruguay', 'profile-builder' ), 'UZ' => __( 'Uzbekistan', 'profile-builder' ), 'VU' => __( 'Vanuatu', 'profile-builder' ), 'VA' => __( 'Vatican', 'profile-builder' ), 'VE' => __( 'Venezuela', 'profile-builder' ), 'VN' => __( 'Vietnam', 'profile-builder' ), 'WF' => __( 'Wallis and Futuna', 'profile-builder' ), 'EH' => __( 'Western Sahara', 'profile-builder' ), 'YE' => __( 'Yemen', 'profile-builder' ), 'ZM' => __( 'Zambia', 'profile-builder' ), 'ZW' => __( 'Zimbabwe', 'profile-builder' ), ) ); return $country_array; } /** * Function that returns an array with timezone options * * @since v.2.0 * * @return array */ function wppb_timezone_select_options( $form_location ) { $timezone_array = apply_filters( 'wppb_'.$form_location.'_timezone_select_array', array ( '(GMT -12:00) Eniwetok, Kwajalein', '(GMT -11:00) Midway Island, Samoa', '(GMT -10:00) Hawaii', '(GMT -9:00) Alaska', '(GMT -8:00) Pacific Time (US & Canada)', '(GMT -7:00) Mountain Time (US & Canada)', '(GMT -6:00) Central Time (US & Canada), Mexico City', '(GMT -5:00) Eastern Time (US & Canada), Bogota, Lima', '(GMT -4:00) Atlantic Time (Canada), Caracas, La Paz', '(GMT -3:30) Newfoundland', '(GMT -3:00) Brazil, Buenos Aires, Georgetown', '(GMT -2:00) Mid-Atlantic', '(GMT -1:00) Azores, Cape Verde Islands', '(GMT) Western Europe Time, London, Lisbon, Casablanca', '(GMT +1:00) Brussels, Copenhagen, Madrid, Paris', '(GMT +2:00) Kaliningrad, South Africa', '(GMT +3:00) Baghdad, Riyadh, Moscow, St. Petersburg', '(GMT +3:30) Tehran', '(GMT +4:00) Abu Dhabi, Muscat, Baku, Tbilisi', '(GMT +4:30) Kabul', '(GMT +5:00) Ekaterinburg, Islamabad, Karachi, Tashkent', '(GMT +5:30) Bombay, Calcutta, Madras, New Delhi', '(GMT +5:45) Kathmandu', '(GMT +6:00) Almaty, Dhaka, Colombo', '(GMT +7:00) Bangkok, Hanoi, Jakarta', '(GMT +8:00) Beijing, Perth, Singapore, Hong Kong', '(GMT +9:00) Tokyo, Seoul, Osaka, Sapporo, Yakutsk', '(GMT +9:30) Adelaide, Darwin', '(GMT +10:00) Eastern Australia, Guam, Vladivostok', '(GMT +11:00) Magadan, Solomon Islands, New Caledonia', '(GMT +12:00) Auckland, Wellington, Fiji, Kamchatka' ) ); return $timezone_array; } /* * Array with the currency ISO code and associated currency name * * @param string $form_location * * @return array * */ function wppb_get_currencies( $form_location = '' ) { $currencies = array( 'ALL' => __( 'Albania Lek', 'profile-builder' ), 'AFN' => __( 'Afghanistan Afghani', 'profile-builder' ), 'ARS' => __( 'Argentina Peso', 'profile-builder' ), 'AWG' => __( 'Aruba Guilder', 'wkc' ), 'AUD' => __( 'Australia Dollar', 'profile-builder' ), 'AZN' => __( 'Azerbaijan New Manat', 'profile-builder' ), 'BSD' => __( 'Bahamas Dollar', 'profile-builder' ), 'BBD' => __( 'Barbados Dollar','profile-builder' ), 'BDT' => __( 'Bangladeshi taka','profile-builder' ), 'BYR' => __( 'Belarus Ruble','profile-builder' ), 'BZD' => __( 'Belize Dollar','profile-builder' ), 'BMD' => __( 'Bermuda Dollar','profile-builder' ), 'BOB' => __( 'Bolivia Boliviano','profile-builder' ), 'BAM' => __( 'Bosnia and Herzegovina Convertible Marka','profile-builder' ), 'BWP' => __( 'Botswana Pula','profile-builder' ), 'BGN' => __( 'Bulgaria Lev','profile-builder' ), 'BRL' => __( 'Brazil Real','profile-builder' ), 'BND' => __( 'Brunei Darussalam Dollar','profile-builder' ), 'KHR' => __( 'Cambodia Riel','profile-builder' ), 'CAD' => __( 'Canada Dollar','profile-builder' ), 'KYD' => __( 'Cayman Islands Dollar','profile-builder' ), 'CLP' => __( 'Chile Peso','profile-builder' ), 'CNY' => __( 'China Yuan Renminbi','profile-builder' ), 'COP' => __( 'Colombia Peso','profile-builder' ), 'CRC' => __( 'Costa Rica Colon','profile-builder' ), 'HRK' => __( 'Croatia Kuna','profile-builder' ), 'CUP' => __( 'Cuba Peso','profile-builder' ), 'CZK' => __( 'Czech Republic Koruna','profile-builder' ), 'DKK' => __( 'Denmark Krone','profile-builder' ), 'DOP' => __( 'Dominican Republic Peso','profile-builder' ), 'XCD' => __( 'East Caribbean Dollar','profile-builder' ), 'EGP' => __( 'Egypt Pound','profile-builder' ), 'SVC' => __( 'El Salvador Colon','profile-builder' ), 'EEK' => __( 'Estonia Kroon','profile-builder' ), 'EUR' => __( 'Euro','profile-builder' ), 'FKP' => __( 'Falkland Islands (Malvinas) Pound','profile-builder' ), 'FJD' => __( 'Fiji Dollar','profile-builder' ), 'GHC' => __( 'Ghana Cedis','profile-builder' ), 'GIP' => __( 'Gibraltar Pound','profile-builder' ), 'GTQ' => __( 'Guatemala Quetzal','profile-builder' ), 'GGP' => __( 'Guernsey Pound','profile-builder' ), 'GYD' => __( 'Guyana Dollar','profile-builder' ), 'HNL' => __( 'Honduras Lempira','profile-builder' ), 'HKD' => __( 'Hong Kong Dollar','profile-builder' ), 'HUF' => __( 'Hungary Forint','profile-builder' ), 'ISK' => __( 'Iceland Krona','profile-builder' ), 'INR' => __( 'India Rupee','profile-builder' ), 'IDR' => __( 'Indonesia Rupiah','profile-builder' ), 'IRR' => __( 'Iran Rial','profile-builder' ), 'IMP' => __( 'Isle of Man Pound','profile-builder' ), 'ILS' => __( 'Israel Shekel','profile-builder' ), 'JMD' => __( 'Jamaica Dollar','profile-builder' ), 'JPY' => __( 'Japan Yen','profile-builder' ), 'JEP' => __( 'Jersey Pound','profile-builder' ), 'KZT' => __( 'Kazakhstan Tenge','profile-builder' ), 'KPW' => __( 'Korea (North) Won','profile-builder' ), 'KRW' => __( 'Korea (South) Won','profile-builder' ), 'KGS' => __( 'Kyrgyzstan Som','profile-builder' ), 'LAK' => __( 'Laos Kip','profile-builder' ), 'LVL' => __( 'Latvia Lat','profile-builder' ), 'LBP' => __( 'Lebanon Pound','profile-builder' ), 'LRD' => __( 'Liberia Dollar','profile-builder' ), 'LTL' => __( 'Lithuania Litas','profile-builder' ), 'MKD' => __( 'Macedonia Denar','profile-builder' ), 'MYR' => __( 'Malaysia Ringgit','profile-builder' ), 'MUR' => __( 'Mauritius Rupee','profile-builder' ), 'MXN' => __( 'Mexico Peso','profile-builder' ), 'MNT' => __( 'Mongolia Tughrik','profile-builder' ), 'MZN' => __( 'Mozambique Metical','profile-builder' ), 'NAD' => __( 'Namibia Dollar','profile-builder' ), 'NPR' => __( 'Nepal Rupee','profile-builder' ), 'ANG' => __( 'Netherlands Antilles Guilder','profile-builder' ), 'NZD' => __( 'New Zealand Dollar','profile-builder' ), 'NIO' => __( 'Nicaragua Cordoba','profile-builder' ), 'NGN' => __( 'Nigeria Naira','profile-builder' ), 'NOK' => __( 'Norway Krone','profile-builder' ), 'OMR' => __( 'Oman Rial', 'profile-builder' ), 'PKR' => __( 'Pakistan Rupee', 'profile-builder' ), 'PAB' => __( 'Panama Balboa', 'profile-builder' ), 'PYG' => __( 'Paraguay Guarani', 'profile-builder' ), 'PEN' => __( 'Peru Nuevo Sol', 'profile-builder' ), 'PHP' => __( 'Philippines Peso', 'profile-builder' ), 'PLN' => __( 'Poland Zloty', 'profile-builder' ), 'QAR' => __( 'Qatar Riyal', 'profile-builder' ), 'RON' => __( 'Romania New Leu', 'profile-builder' ), 'RUB' => __( 'Russia Ruble', 'profile-builder' ), 'SHP' => __( 'Saint Helena Pound', 'profile-builder' ), 'SAR' => __( 'Saudi Arabia Riyal', 'profile-builder' ), 'RSD' => __( 'Serbia Dinar', 'profile-builder' ), 'SCR' => __( 'Seychelles Rupee', 'profile-builder' ), 'SGD' => __( 'Singapore Dollar', 'profile-builder' ), 'SBD' => __( 'Solomon Islands Dollar', 'profile-builder' ), 'SOS' => __( 'Somalia Shilling', 'profile-builder' ), 'ZAR' => __( 'South Africa Rand', 'profile-builder' ), 'LKR' => __( 'Sri Lanka Rupee', 'profile-builder' ), 'SEK' => __( 'Sweden Krona', 'profile-builder' ), 'CHF' => __( 'Switzerland Franc', 'profile-builder' ), 'SRD' => __( 'Suriname Dollar', 'profile-builder' ), 'SYP' => __( 'Syria Pound', 'profile-builder' ), 'TWD' => __( 'Taiwan New Dollar', 'profile-builder' ), 'THB' => __( 'Thailand Baht', 'profile-builder' ), 'TTD' => __( 'Trinidad and Tobago Dollar', 'profile-builder' ), 'TRY' => __( 'Turkey Lira', 'profile-builder' ), 'TRL' => __( 'Turkey Lira', 'profile-builder' ), 'TVD' => __( 'Tuvalu Dollar', 'profile-builder' ), 'UAH' => __( 'Ukraine Hryvna', 'profile-builder' ), 'GBP' => __( 'United Kingdom Pound', 'profile-builder' ), 'UGX' => __( 'Uganda Shilling', 'profile-builder' ), 'USD' => __( 'US Dollar', 'profile-builder' ), 'UYU' => __( 'Uruguay Peso', 'profile-builder' ), 'UZS' => __( 'Uzbekistan Som', 'profile-builder' ), 'VEF' => __( 'Venezuela Bolivar', 'profile-builder' ), 'VND' => __( 'Viet Nam Dong', 'profile-builder' ), 'YER' => __( 'Yemen Rial', 'profile-builder' ), 'ZWD' => __( 'Zimbabwe Dollar', 'profile-builder' ) ); $filter_name = ( empty( $form_location ) ? 'wppb_get_currencies' : 'wppb_get_currencies_' . $form_location ); return apply_filters( $filter_name, $currencies ); } /* * Returns the currency symbol for a given currency code * * @param string $currency_code * * @return string * */ function wppb_get_currency_symbol( $currency_code ) { $currency_symbols = array( 'AED' => 'د.إ', // ? 'AFN' => 'Af', 'ALL' => 'Lek', 'AMD' => '', 'ANG' => 'ƒ', 'AOA' => 'Kz', // ? 'ARS' => '$', 'AUD' => '$', 'AWG' => 'ƒ', 'AZN' => 'ман', 'BAM' => 'KM', 'BBD' => '$', 'BDT' => '৳', // ? 'BGN' => 'лв', 'BHD' => '.د.ب', // ? 'BIF' => 'FBu', // ? 'BMD' => '$', 'BND' => '$', 'BOB' => '$b', 'BRL' => 'R$', 'BSD' => '$', 'BTN' => 'Nu.', // ? 'BWP' => 'P', 'BYR' => 'p.', 'BZD' => 'BZ$', 'CAD' => '$', 'CDF' => 'FC', 'CHF' => 'CHF', 'CLF' => '', // ? 'CLP' => '$', 'CNY' => '¥', 'COP' => '$', 'CRC' => '₡', 'CUP' => '⃌', 'CVE' => '$', // ? 'CZK' => 'Kč', 'DJF' => 'Fdj', // ? 'DKK' => 'kr', 'DOP' => 'RD$', 'DZD' => 'دج', // ? 'EGP' => '£', 'ETB' => 'Br', 'EUR' => '€', 'FJD' => '$', 'FKP' => '£', 'GBP' => '£', 'GEL' => 'ლ', // ? 'GHS' => '¢', 'GIP' => '£', 'GMD' => 'D', // ? 'GNF' => 'FG', // ? 'GTQ' => 'Q', 'GYD' => '$', 'HKD' => '$', 'HNL' => 'L', 'HRK' => 'kn', 'HTG' => 'G', // ? 'HUF' => 'Ft', 'IDR' => 'Rp', 'ILS' => '₪', 'INR' => '₹', 'IQD' => 'ع.د', // ? 'IRR' => '﷼', 'ISK' => 'kr', 'JEP' => '£', 'JMD' => 'J$', 'JOD' => 'JD', // ? 'JPY' => '¥', 'KES' => 'KSh', // ? 'KGS' => 'лв', 'KHR' => '៛', 'KMF' => 'CF', // ? 'KPW' => '₩', 'KRW' => '₩', 'KWD' => 'د.ك', // ? 'KYD' => '$', 'KZT' => 'лв', 'LAK' => '₭', 'LBP' => '£', 'LKR' => '₨', 'LRD' => '$', 'LSL' => 'L', // ? 'LTL' => 'Lt', 'LVL' => 'Ls', 'LYD' => 'ل.د', // ? 'MAD' => 'د.م.', //? 'MDL' => 'L', 'MGA' => 'Ar', // ? 'MKD' => 'ден', 'MMK' => 'K', 'MNT' => '₮', 'MOP' => 'MOP$', // ? 'MRO' => 'UM', // ? 'MUR' => '₨', // ? 'MVR' => '.ރ', // ? 'MWK' => 'MK', 'MXN' => '$', 'MYR' => 'RM', 'MZN' => 'MT', 'NAD' => '$', 'NGN' => '₦', 'NIO' => 'C$', 'NOK' => 'kr', 'NPR' => '₨', 'NZD' => '$', 'OMR' => '﷼', 'PAB' => 'B/.', 'PEN' => 'S/.', 'PGK' => 'K', // ? 'PHP' => '₱', 'PKR' => '₨', 'PLN' => 'zł', 'PYG' => 'Gs', 'QAR' => '﷼', 'RON' => 'lei', 'RSD' => 'Дин.', 'RUB' => 'руб', 'RWF' => 'ر.س', 'SAR' => '﷼', 'SBD' => '$', 'SCR' => '₨', 'SDG' => '£', // ? 'SEK' => 'kr', 'SGD' => '$', 'SHP' => '£', 'SLL' => 'Le', // ? 'SOS' => 'S', 'SRD' => '$', 'STD' => 'Db', // ? 'SVC' => '$', 'SYP' => '£', 'SZL' => 'L', // ? 'THB' => '฿', 'TJS' => 'TJS', // ? TJS (guess) 'TMT' => 'm', 'TND' => 'د.ت', 'TOP' => 'T$', 'TRY' => '₤', // New Turkey Lira (old symbol used) 'TTD' => '$', 'TWD' => 'NT$', 'TZS' => '', 'UAH' => '₴', 'UGX' => 'USh', 'USD' => '$', 'UYU' => '$U', 'UZS' => 'лв', 'VEF' => 'Bs', 'VND' => '₫', 'VUV' => 'VT', 'WST' => 'WS$', 'XAF' => 'FCFA', 'XCD' => '$', 'XDR' => '', 'XOF' => '', 'XPF' => 'F', 'YER' => '﷼', 'ZAR' => 'R', 'ZMK' => 'ZK', // ? 'ZWL' => 'Z$', ); if( !empty( $currency_symbols[$currency_code] ) ) return $currency_symbols[$currency_code]; else return ''; } /** * Function that returns a unique, incremented ID * * @since v.2.0 * * @return integer id */ function wppb_get_unique_id(){ $id = 1; $wppb_manage_fields = get_option( 'wppb_manage_fields', 'not_found' ); if ( ( $wppb_manage_fields === 'not_found' ) || ( empty( $wppb_manage_fields ) ) ){ return $id; } else{ $ids_array = array(); foreach( $wppb_manage_fields as $value ){ $ids_array[] = $value['id']; } if( !empty( $ids_array ) ){ rsort( $ids_array ); $id = $ids_array[0] + 1; } } return apply_filters( 'wppb_field_unique_id', $id, $ids_array, $wppb_manage_fields ); } /** * Function that checks to see if the id is unique when saving the new field * * @param array $values * * @return array */ function wppb_check_unique_id_on_saving( $values ) { $wppb_manage_fields = get_option( 'wppb_manage_fields', 'not_found' ); if( $wppb_manage_fields != 'not_found' ) { $ids_array = array(); foreach( $wppb_manage_fields as $field ){ $ids_array[] = $field['id']; } if( in_array( $values['id'], $ids_array ) ) { rsort( $ids_array ); $values['id'] = $ids_array[0] + 1; } } return $values; } add_filter( 'wck_add_meta_filter_values_wppb_manage_fields', 'wppb_check_unique_id_on_saving' ); function wppb_return_unique_field_list( $only_default_fields = false ){ $unique_field_list[] = 'Default - Name (Heading)'; $unique_field_list[] = 'Default - Contact Info (Heading)'; $unique_field_list[] = 'Default - About Yourself (Heading)'; $unique_field_list[] = 'Default - Username'; $unique_field_list[] = 'Default - First Name'; $unique_field_list[] = 'Default - Last Name'; $unique_field_list[] = 'Default - Nickname'; $unique_field_list[] = 'Default - E-mail'; $unique_field_list[] = 'Default - Website'; // Default contact methods were removed in WP 3.6. A filter dictates contact methods. if ( apply_filters( 'wppb_remove_default_contact_methods', get_site_option( 'initial_db_version' ) < 23588 ) ){ $unique_field_list[] = 'Default - AIM'; $unique_field_list[] = 'Default - Yahoo IM'; $unique_field_list[] = 'Default - Jabber / Google Talk'; } $unique_field_list[] = 'Default - Password'; $unique_field_list[] = 'Default - Repeat Password'; $unique_field_list[] = 'Default - Biographical Info'; $unique_field_list[] = 'Default - Display name publicly as'; if ( wppb_can_users_signup_blog() ) { $unique_field_list[] = 'Default - Blog Details'; } if( !$only_default_fields ){ $unique_field_list[] = 'Avatar'; $unique_field_list[] = 'reCAPTCHA'; $unique_field_list[] = 'Select (User Role)'; $unique_field_list[] = 'Map'; } return apply_filters ( 'wppb_unique_field_list', $unique_field_list ); } /** * Function that checks several things when adding/editing the fields * * @since v.2.0 * * @param string $message - the message to be displayed * @param array $fields - the added fields * @param array $required_fields * @param string $meta - the meta-name of the option * @param string $values - The values entered for each option * @param integer $post_id * @return boolean */ function wppb_check_field_on_edit_add( $message, $fields, $required_fields, $meta_name, $posted_values, $post_id ){ global $wpdb; if ( $meta_name == 'wppb_manage_fields' ){ // check for a valid field-type (fallback) if ( $posted_values['field'] == '' ) $message .= __( "You must select a field\n", 'profile-builder' ); // END check for a valid field-type (fallback) $unique_field_list = wppb_return_unique_field_list(); $all_fields = apply_filters( 'wppb_manage_fields_check_field_on_edit_add', get_option ( $meta_name, 'not_set' ), $posted_values ); // check if the unique fields are only added once if( $all_fields != 'not_set' ){ foreach( $all_fields as $field ){ if ( ( in_array ( $posted_values['field'], $unique_field_list ) ) && ( $posted_values['field'] == $field['field'] ) && ( $posted_values['id'] != $field['id'] ) ){ $message .= __( "Please choose a different field type as this one already exists in your form (must be unique)\n", 'profile-builder' ); break; } } } // END check if the unique fields are only added once // check for avatar size if ( $posted_values['field'] == 'Avatar' ){ if ( is_numeric( $posted_values['avatar-size'] ) ){ if ( ( $posted_values['avatar-size'] < 20 ) || ( $posted_values['avatar-size'] > 200 ) ) $message .= __( "The entered avatar size is not between 20 and 200\n", 'profile-builder' ); }else $message .= __( "The entered avatar size is not numerical\n", 'profile-builder' ); } // END check for avatar size // check for correct row value if ( ( $posted_values['field'] == 'Default - Biographical Info' ) || ( $posted_values['field'] == 'Textarea' ) ){ if ( !is_numeric( $posted_values['row-count'] ) ) $message .= __( "The entered row number is not numerical\n", 'profile-builder' ); elseif ( trim( $posted_values['row-count'] ) == '' ) $message .= __( "You must enter a value for the row number\n", 'profile-builder' ); } // END check for correct row value // check for the public and private keys if ( $posted_values['field'] == 'reCAPTCHA'){ if ( trim( $posted_values['public-key'] ) == '' ) $message .= __( "You must enter the site key\n", 'profile-builder' ); if ( trim( $posted_values['private-key'] ) == '' ) $message .= __( "You must enter the secret key\n", 'profile-builder' ); } // END check for the public and private keys // check for the correct the date-format if ( $posted_values['field'] == 'Datepicker' ){ $date_format = trim( $posted_values['date-format'] ); if( empty( $date_format ) ) $message .= __( "You must enter a value for the date-format\n", 'profile-builder' ); else { $date_format = preg_split("/(, | |\/|-|,)/", $date_format ); $valid_pieces = array('d', 'dd', 'D', 'DD', 'o', 'oo', 'm', 'mm', 'M', 'MM', 'y', 'yy', '@'); if ($date_format) { $invalid_format = false; foreach ($date_format as $piece) { if (!in_array($piece, $valid_pieces)) { $invalid_format = true; break; } } if ($invalid_format) $message .= __("The entered value for the Datepicker is not a valid date-format\n", 'profile-builder'); } } } // END check for the correct the date-format //check for empty meta-name and duplicate meta-name if ( $posted_values['overwrite-existing'] == 'No' ){ $skip_check_for_fields = wppb_return_unique_field_list(true); $skip_check_for_fields = apply_filters ( 'wppb_skip_check_for_fields', $skip_check_for_fields ); if ( !in_array( trim( $posted_values['field'] ), $skip_check_for_fields ) ){ $reserved_meta_name_list = wppb_get_reserved_meta_name_list( $all_fields, $posted_values ); //check to see if meta-name is empty $skip_empty_check_for_fields = array( 'Heading', 'Select (User Role)', 'reCAPTCHA', 'HTML', 'GDPR Delete Button' ); if( !in_array( $posted_values['field'], $skip_empty_check_for_fields ) && empty( $posted_values['meta-name'] ) ) { $message .= __( "The meta-name cannot be empty\n", 'profile-builder' ); } // if the desired meta-name is one of the following, automatically give an error if ( in_array( trim( $posted_values['meta-name'] ), $reserved_meta_name_list ) ) $message .= __( "That meta-name can't be used, please choose another\n", 'profile-builder' ); else{ $found_in_custom_fields = false; if( $all_fields != 'not_set' ) foreach( $all_fields as $field ){ if ( $posted_values['meta-name'] != '' && ( $field['meta-name'] == $posted_values['meta-name'] ) && ( $field['id'] != $posted_values['id'] ) ){ $message .= __( "That meta-name is already in use\n", 'profile-builder' ); $found_in_custom_fields = true; }elseif ( ( $field['meta-name'] == $posted_values['meta-name'] ) && ( $field['id'] == $posted_values['id'] ) ) $found_in_custom_fields = true; } if ( $found_in_custom_fields === false ){ if( $posted_values['meta-name'] != '' ) { $found_meta_name = $wpdb->get_row($wpdb->prepare("SELECT * FROM $wpdb->usermeta WHERE meta_key = %s", $posted_values['meta-name'])); if ($found_meta_name != null) $message .= __("That meta-name is already in use\n", 'profile-builder'); } } } } } //END check duplicate meta-name // check for correct meta name on upload field if( $posted_values['field'] == 'Upload' ) { if( ! empty( $posted_values['meta-name'] ) && preg_match( '/([^a-z\d_-])/', $posted_values['meta-name'] ) ) { $message .= __( "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n", 'profile-builder' ); } } // END check for correct meta name on upload field // check for valid default option (checkbox, select, radio) if ( ( $posted_values['field'] == 'Checkbox' ) || ( $posted_values['field'] == 'Select (Multiple)' ) ) { $options = array_map( 'trim', explode( ',', $posted_values['options'] ) ); $default_options = ( ( trim( $posted_values['default-options'] ) == '' ) ? array() : array_map( 'trim', explode( ',', $posted_values['default-options'] ) ) ); /* echo ""; echo ""; */ $not_found = ''; foreach ( $default_options as $key => $value ){ if ( !in_array( $value, $options ) ) $not_found .= $value . ', '; } if ( $not_found != '' ) $message .= sprintf( __( "The following option(s) did not coincide with the ones in the options list: %s\n", 'profile-builder' ), trim( $not_found, ', ' ) ); }elseif ( ( $posted_values['field'] == 'Radio' ) || ( $posted_values['field'] == 'Select' ) ){ if ( ( trim( $posted_values['default-option'] ) != '' ) && ( !in_array( $posted_values['default-option'], array_map( 'trim', explode( ',', $posted_values['options'] ) ) ) ) ) $message .= sprintf( __( "The following option did not coincide with the ones in the options list: %s\n", 'profile-builder' ), $posted_values['default-option'] ); } // END check for valid default option (checkbox, select, radio) // check to see if any user role is selected (user-role field) if( $posted_values['field'] == 'Select (User Role)' ) { if( empty( $posted_values['user-roles'] ) ) { $message .= __( "Please select at least one user role\n", 'profile-builder' ); } } // END check to see if Administrator user role has been selected (user-role field) $message = apply_filters( 'wppb_check_extra_manage_fields', $message, $posted_values ); }elseif ( ( $meta_name == 'wppb_rf_fields' ) || ( $meta_name == 'wppb_epf_fields' ) ){ if ( $posted_values['field'] == '' ){ $message .= __( "You must select a field\n", 'profile-builder' ); }else{ $fields_so_far = get_post_meta ( $post_id, $meta_name, true ); foreach ( $fields_so_far as $key => $value ){ if ( $value['id'] == $posted_values['id'] ) $message .= __( "That field is already added in this form\n", 'profile-builder' ); } } } return $message; } add_filter( 'wck_extra_message', 'wppb_check_field_on_edit_add', 10, 6 ); /** * Function that calls the wppb_hide_properties_for_already_added_fields and wppb_enable_select2 after a field-update * * @since v.2.0 * * @param void * * @return string */ function wppb_manage_fields_after_refresh_list( $id ){ echo ""; echo ""; } add_action( "wck_refresh_list_wppb_manage_fields", "wppb_manage_fields_after_refresh_list" ); add_action( "wck_refresh_entry_wppb_manage_fields", "wppb_manage_fields_after_refresh_list" ); /** * Function that calls the wppb_hide_all and wppb_enable_select2 * * @since v.2.0 * * @param void * * @return string */ function wppb_manage_fields_after_ajax_add_field( $id ){ echo ""; echo ""; } add_action("wck_ajax_add_form_wppb_manage_fields", "wppb_manage_fields_after_ajax_add_field" ); /** * Function that modifies the table header in Manage Fields to add Field Name, Field Type, Meta Key, Required * * @since v.2.0 * * @param $list, $id * * @return string */ function wppb_manage_fields_header( $list_header ){ return '#'. __( '
Title
Type
Meta Name
Required
', 'profile-builder' ) .''. __( 'Edit', 'profile-builder' ) .''. __( 'Delete', 'profile-builder' ) .''; } add_action( 'wck_metabox_content_header_wppb_manage_fields', 'wppb_manage_fields_header' ); /** * Add contextual help to the side of manage fields for the shortcodes * * @since v.2.0 * * @param $hook * * @return string */ function wppb_add_content_before_manage_fields(){ ?>

wppb_disable_delete_on_default_mandatory_fields();"; if ( $meta_name == 'wppb_manage_fields' ) { echo ""; echo ""; } } add_action("wck_after_adding_form", "wppb_remove_properties_from_added_form", 10, 3); /* * WPML Support for dynamic strings in Profile Builder. Tags: WPML, fields, translate */ add_filter( 'update_option_wppb_manage_fields', 'wppb_wpml_compat_with_fields', 10, 2 ); function wppb_wpml_compat_with_fields( $oldvalue, $_newvalue ){ $default_fields = array( 'Default - Name (Heading)', 'Default - Contact Info (Heading)', 'Default - About Yourself (Heading)', 'Default - Username', 'Default - First Name', 'Default - Last Name', 'Default - Nickname', 'Default - E-mail', 'Default - Website', 'Default - AIM', 'Default - Yahoo IM', 'Default - Jabber / Google Talk', 'Default - Password', 'Default - Repeat Password', 'Default - Biographical Info', 'Default - Blog Details', 'Default - Display name publicly as' ); if ( is_array( $_newvalue ) ){ foreach ( $_newvalue as $field ){ if ( in_array($field['field'], $default_fields) ){ $prefix = 'default_field_'; } else { $prefix = 'custom_field_'; } if (function_exists('icl_register_string')){ if( !empty( $field['field-title'] ) ) icl_register_string('plugin profile-builder-pro', $prefix . $field['id'].'_title_translation' , $field['field-title'] ); if( !empty( $field['description'] ) ) icl_register_string('plugin profile-builder-pro', $prefix . $field['id'].'_description_translation', $field['description'] ); if( !empty( $field['labels'] ) ) icl_register_string('plugin profile-builder-pro', $prefix . $field['id'].'_labels_translation', $field['labels'] ); if( !empty( $field['default-value'] ) ) icl_register_string('plugin profile-builder-pro', $prefix . $field['id'].'_default_value_translation', $field['default-value'] ); if( !empty( $field['default-content'] ) ) icl_register_string('plugin profile-builder-pro', $prefix . $field['id'].'_default_content_translation', $field['default-content'] ); } } } } /* * Returns the HTML for a map given the field * */ function wppb_get_map_output( $field, $args ) { $defaults = array( 'markers' => array(), 'editable' => true, 'show_search' => true, 'extra_attr' => '' ); $args = wp_parse_args( $args, $defaults ); $return = ''; // Search box // The style:left=-99999px is set to hide the input from the viewport. It will be rewritten when the map gets initialised if ( $args['show_search'] ) { $return .= ''; } $lng = ( ! empty( $field['map-default-lng'] ) ) ? (float) $field['map-default-lng'] : WPPB_DEFAULTS_MAP_LNG; $lat = ( ! empty( $field['map-default-lat'] ) ) ? (float) $field['map-default-lat'] : WPPB_DEFAULTS_MAP_LAT; $zoom = ( ! empty( $field['map-default-zoom'] ) ) ? (int) $field['map-default-zoom'] : WPPB_DEFAULTS_MAP_ZOOM; // Get one time the settings. $settings = wppb_options_get_map_settings(); $pin_info = ( ! empty( $args['user_id'] ) ) ? wppb_compute_simple_pin_content_for_user( $args['user_id'], $settings ) : ''; // Map container. $return .= '
'; if ( ! empty( $args['markers'] ) ) { foreach ( $args['markers'] as $marker ) { if ( ! empty( $args['user_id'] ) ) { // Also compute the marker bubble content. $bubble = wppb_get_user_pin_bubble( $args['user_id'], strstr( $marker, ',', true ), ltrim( strstr( $marker, ',' ), ',' ), $pin_info, '' ); $return .= $bubble; } $return .= ''; } } return $return; } /* * Returns all the saved markers for a map field for a particular user * */ function wppb_get_user_map_markers( $user_id, $meta_name ) { global $wpdb; $meta_name_underlined = $meta_name . '_'; $results = $wpdb->get_results( "SELECT meta_value, meta_key FROM {$wpdb->usermeta} WHERE user_id={$user_id} AND meta_key LIKE '%{$meta_name_underlined}%'", ARRAY_N ); $markers = array(); $i = 0; foreach( $results as $key => $result ) { $pattern = '/^' . $meta_name . '_[0-9]+$/'; preg_match( $pattern, $result[1], $matches ); if ( count ($matches) > 0 ) { $markers[$i] = $result[0]; $i++; } } return $markers; } /* * Deletes from the database all saved markers * */ function wppb_delete_user_map_markers( $user_id, $meta_name ) { global $wpdb; $meta_name .= '_'; $delete = $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->usermeta} WHERE user_id=%d AND meta_key LIKE %s", $user_id, '%' . $meta_name . '%' ) ); wp_cache_delete( $user_id, 'user_meta' ); } if ( ! function_exists( 'wppb_options_get_map_settings' ) ) { /** * Get all the map related attributes. * * @return string */ function wppb_options_get_map_settings() { $manage_fields = apply_filters( 'wppb_form_fields', get_option( 'wppb_manage_fields', 'not_set' ), array( 'context' => 'map_api_key' ) ); foreach ( $manage_fields as $field ) { if ( ! empty( $field['map-api-key'] ) ) { // Fail-fast. This is what we need. return $field; } } // Fallback. return null; } } if ( ! function_exists( 'wppb_get_user_pin_bubble' ) ) { /** * Returns the map usable marker info. * * @param integer $id The user ID. * @param float $lat The latitude. * @param float $lng The longitude. * @param string $info The bubble inner info. * @param string $icon The pin custom icon. * @return string */ function wppb_get_user_pin_bubble( $id, $lat, $lng, $info, $icon = '' ) { return '
' . wp_kses_post( $info ) . '
'; } } if ( ! function_exists( 'wppb_compute_simple_pin_content_for_user' ) ) { /** * Compute simple pin content for user. * * @param integer $id_user User ID. * @param array $settings Settings array. * @return string */ function wppb_compute_simple_pin_content_for_user( $id_user, $settings = array() ) { if ( empty( $id_user ) ) { // Fail-fast. return ''; } if ( empty( $settings ) ) { // Get one time the settings. $settings = wppb_options_get_map_settings(); } $args = ( ! empty( $settings['map-bubble-fields'] ) ) ? explode( ', ', $settings['map-bubble-fields'] ) : array(); $result = ''; if ( ! empty( $args ) ) { foreach ( $args as $tag ) { // Go to souce. if ( 'avatar_or_gravatar' == $tag ) { $val = apply_filters( 'mustache_variable_avatar_or_gravatar', '', $tag, array(), array( 'user_id' => $id_user, ) ); } else { $val = apply_filters( 'mustache_variable_default_user_field', '', $tag, array(), array( 'user_id' => $id_user, ) ); } if ( ! empty( $val ) ) { $result .= '

' . wp_kses_post( $val ) . '

'; } } } return $result; } } /** * Disable the add button again after we added a field */ add_action( 'wck_ajax_add_form_wppb_manage_fields', 'wppb_redisable_the_add_button' ); function wppb_redisable_the_add_button(){ ?> update( $wpdb->usermeta, array('meta_key' => sanitize_text_field($values['meta-name'])), array('meta_key' => sanitize_text_field($wppb_manage_fields[$element_id]['meta-name'])) ); } } } } } if ( ! function_exists( 'wppb_prepare_key_value_options' ) ) { /** * Convert an array with keys and values into a usable option for the defined fields types. * * @param arrays $array List of options. * @return array Usable options. */ function wppb_prepare_key_value_options( $array = array() ) { $result = array(); if ( ! empty( $array ) ) { foreach ( $array as $name => $label ) { $result[] = '%' . wppb_prepare_wck_labels( $label ) . '%' . $name; } } return $result; } } if ( ! function_exists( 'wppb_filter_map_bubble_fields' ) ) { /** * Filter the map POI's bubble content. * * @param arrays $tags List of available tags. * @return array Filtered and sorted tags. */ function wppb_filter_map_bubble_fields( $tags ) { // Attempt to preseve one tag example. $maybe_avatar = ( ! empty( $tags['avatar_or_gravatar'] ) ) ? $tags['avatar_or_gravatar'] : false; // Remove some of the tags. unset( $tags['meta_user_name'] ); unset( $tags['more_info_url'] ); unset( $tags['avatar_or_gravatar'] ); if ( ! empty( $maybe_avatar ) ) { // Perhaps preprend this to the list. $tags = array_merge( array( 'avatar_or_gravatar' => $maybe_avatar ), $tags ); } return $tags; } } add_filter( 'wppb_map_bubble_fields', 'wppb_filter_map_bubble_fields' ); admin/private-website.php000066600000016414152141651100011465 0ustar00 'no', 'redirect_to' => '', 'allowed_pages' => array(), 'hide_menus' => 'no', ) ); } /** * Function that generates the content for the settings page */ function wppb_private_website_content() { wppb_private_website_settings_defaults(); $wppb_private_website_settings = get_option( 'wppb_private_website_settings', 'not_found' ); $all_pages = get_pages(); ?>

  • Custom Profile Menus" addon if you need different menu items for logged in / logged out users.', 'profile-builder' ), 'https://www.cozmoslabs.com/add-ons/custom-profile-menus/' ); ?>

roles as $role ) { $alt_i++; $key = $role['name']; $setting_exists = !empty( $admin_bar_settings[$key] ); $alt_class = ( ( $alt_i%2 == 0 ) ? ' class="alternate"' : '' ); echo' '; } ?>
'.translate_user_role($key).'

ID != 0 ) { if( $current_user->display_name === $current_user->user_login ) { $my_account_main = $wp_admin_bar->get_node('my-account'); $new_title1 = str_replace($current_user->display_name, $current_user->user_email, $my_account_main->title); $wp_admin_bar->add_node(array('id' => 'my-account', 'title' => $new_title1)); $my_account_sub = $wp_admin_bar->get_node('user-info'); $wp_admin_bar->add_node(array('parent' => 'user-actions', 'id' => 'user-info', 'title' => get_avatar($current_user->ID, 64) . "{$current_user->user_email}", 'href' => get_edit_profile_url($current_user->ID), 'meta' => array('tabindex' => -1))); } } } return $wp_admin_bar; } add_filter( 'admin_bar_menu', 'wppb_replace_username_on_admin_bar', 25 );admin/add-ons.php000066600000060256152141651100007703 0ustar00

$wppb_plugin) { if( strtolower($wppb_plugin['Name']) == strtolower( 'TranslatePress - Multilingual' ) && strpos(strtolower($wppb_plugin['AuthorName']), strtolower('Cozmoslabs')) !== false) { $trp_add_on_exists = 1; if (in_array($wppb_plugin_key, $wppb_get_active_plugins)) { $trp_add_on_is_active = 1; } // Consider the add-on active if it's network active if (is_plugin_active_for_network($wppb_plugin_key)) { $trp_add_on_is_network_active = 1; $trp_add_on_is_active = 1; } $plugin_file = $wppb_plugin_key; } } ?> $wppb_plugin) { if( strtolower($wppb_plugin['Name']) == strtolower( 'Paid Member Subscriptions' ) && strpos(strtolower($wppb_plugin['AuthorName']), strtolower('Cozmoslabs')) !== false) { $pms_add_on_exists = 1; if (in_array($wppb_plugin_key, $wppb_get_active_plugins)) { $pms_add_on_is_active = 1; } // Consider the add-on active if it's network active if (is_plugin_active_for_network($wppb_plugin_key)) { $pms_add_on_is_network_active = 1; $pms_add_on_is_active = 1; } $plugin_file = $wppb_plugin_key; } } ?>

active', 'profile-builder' ); ?> inactive', 'profile-builder' ); ?>
$wppb_add_on ) { $wppb_add_on_exists = 0; $wppb_add_on_is_active = 0; $wppb_add_on_is_network_active = 0; // Check to see if add-on is in the plugins folder foreach ($wppb_get_all_plugins as $wppb_plugin_key => $wppb_plugin) { if ( strpos( strtolower( $wppb_plugin['Name'] ), 'profile builder' ) !== false && strpos( strtolower( $wppb_plugin['Name'] ), strtolower( $wppb_add_on['name'] ) ) !== false && strpos( strtolower( $wppb_plugin['AuthorName'] ), strtolower('Cozmoslabs') ) !== false ) { $wppb_add_on_exists = 1; if (in_array($wppb_plugin_key, $wppb_get_active_plugins)) { $wppb_add_on_is_active = 1; } // Consider the add-on active if it's network active if (is_plugin_active_for_network($wppb_plugin_key)) { $wppb_add_on_is_network_active = 1; $wppb_add_on_is_active = 1; } $wppb_add_on['plugin_file'] = $wppb_plugin_key; } } echo '
'; echo '
'; echo ''; echo ''; echo ''; echo '

'; echo ''; echo $wppb_add_on['name']; echo ''; echo '

'; //echo '

' . $wppb_add_on['price'] . '

'; if( $wppb_add_on['type'] == 'paid' ) echo '

' . __( 'Available in Hobbyist and Pro Versions', 'profile-builder' ) . '

'; else echo '

' . __( 'Available in All Versions', 'profile-builder' ) . '

'; echo '

' . $wppb_add_on['description'] . '

'; echo '
'; $wppb_version_validation = version_compare(PROFILE_BUILDER_VERSION, $wppb_add_on['product_version']); ($wppb_version_validation != -1) ? $wppb_version_validation_class = 'wppb-add-on-compatible' : $wppb_version_validation_class = 'wppb-add-on-not-compatible'; echo '
'; // PB minimum version number is all good if ($wppb_version_validation != -1) { // PB version type does match if (in_array(strtolower($version), $wppb_add_on['product_version_type'])) { if ($wppb_add_on_exists) { // Display activate/deactivate buttons if (!$wppb_add_on_is_active) { echo '' . __('Activate', 'profile-builder') . ''; // If add-on is network activated don't allow deactivation } elseif (!$wppb_add_on_is_network_active) { echo '' . __('Deactivate', 'profile-builder') . ''; } // Display message to the user if (!$wppb_add_on_is_active) { echo '' . __('Add-On is inactive', 'profile-builder') . ''; } else { echo '' . __('Add-On is active', 'profile-builder') . ''; } } else { // If we're on a multisite don't add the wpp-add-on-download class to the button so we don't fire the js that // handles the in-page download ($wppb_add_on['paid']) ? $wppb_paid_link_class = 'button-primary' : $wppb_paid_link_class = 'button-secondary'; ($wppb_add_on['paid']) ? $wppb_paid_link_text = __('Learn More', 'profile-builder') : $wppb_paid_link_text = __('Download Now', 'profile-builder'); ($wppb_add_on['paid']) ? $wppb_paid_href_utm_text = '?utm_source=wpbackend&utm_medium=clientsite&utm_content=add-on-page-buy-button&utm_campaign=PB' . $version : $wppb_paid_href_utm_text = '?utm_source=wpbackend&utm_medium=clientsite&utm_content=add-on-page&utm_campaign=PB' . $version; echo '' . $wppb_paid_link_text . ''; echo '' . __('Compatible with your version of Profile Builder.', 'profile-builder') . ''; } echo '
'; // PB version type does not match } else { echo '' . __('Upgrade Profile Builder', 'profile-builder') . ''; echo '' . __('Not compatible with Profile Builder', 'profile-builder') . ' ' . $version . ''; } } else { // If PB version is older than the minimum required version of the add-on echo ' ' . '' . __('Update', 'profile-builder') . ''; echo '' . __('Not compatible with your version of Profile Builder.', 'profile-builder') . '
'; echo '' . __('Minimum required Profile Builder version:', 'profile-builder') . ' ' . $wppb_add_on['product_version'] . ''; } // We had to put this error here because we need the url of the add-on echo '' . sprintf(__('Could not install add-on. Retry or install manually.', 'profile-builder'), esc_url($wppb_add_on['url'])) . ''; echo '
'; echo '
'; } /* end $wppb_add_ons foreach */ } ?>
$wppb_plugin ) { if( strpos( $wppb_plugin['Name'], $wppb_add_on_name ) !== false && strpos( $wppb_plugin['AuthorName'], 'Cozmoslabs' ) !== false ) { // Deactivate the add-on if it's active if( is_plugin_active( $wppb_plugin_key )) { deactivate_plugins( $wppb_plugin_key ); } // Return the plugin path echo $wppb_plugin_key; wp_die(); } } wp_die(); } add_action( 'wp_ajax_wppb_add_on_get_new_plugin_data', 'wppb_add_on_get_new_plugin_data' ); admin/feedback.php000066600000025555152141651100010105 0ustar00base == 'plugins' ){ ?>

  • here" ) ?>
  • ">
base == 'plugins' ) { ?> base == 'plugins' ) { ?> __( 'General Settings', 'profile-builder' ), 'profile-builder-admin-bar-settings' => __( 'Admin Bar', 'profile-builder' ), 'profile-builder-content_restriction' => __( 'Content Restriction', 'profile-builder' ), 'profile-builder-private-website' => __( 'Private Website', 'profile-builder' ), ); if (file_exists(WPPB_PLUGIN_DIR . '/modules/modules.php')) { $wppb_module_settings = get_option('wppb_module_settings'); if( ( isset($wppb_module_settings['wppb_emailCustomizerAdmin']) && $wppb_module_settings['wppb_emailCustomizerAdmin'] == 'show' ) || ( isset($wppb_module_settings['wppb_emailCustomizer']) && $wppb_module_settings['wppb_emailCustomizer'] == 'show') ){ $settings_pages['pages']['user-email-customizer'] = __( 'Email Customizer', 'profile-builder' ); //add subpages here for email customizer $settings_pages['subpages']['user-email-customizer']['user-email-customizer'] = __( 'User Emails', 'profile-builder' ); $settings_pages['subpages']['user-email-customizer']['admin-email-customizer'] = __( 'Administrator Emails', 'profile-builder' ); } } return $settings_pages; } /** * Function that generates the html for the tabs and subtabs on the settings page */ function wppb_generate_settings_tabs(){ ?> '; foreach ($pages['subpages'] as $parent_slug => $subpages) { if (array_key_exists($_GET['page'], $subpages)) { foreach ($subpages as $subpage_slug => $subpage_name) { echo '
  • ' . $subpage_name . '
  • '; } } } echo ''; } } /** * Function that creates the "General Settings" submenu page * * @since v.2.0 * * @return void */ function wppb_register_general_settings_submenu_page() { add_submenu_page( 'profile-builder', __( 'Settings', 'profile-builder' ), __( 'Settings', 'profile-builder' ), 'manage_options', 'profile-builder-general-settings', 'wppb_general_settings_content' ); } add_action( 'admin_menu', 'wppb_register_general_settings_submenu_page', 3 ); function wppb_generate_default_settings_defaults(){ add_option( 'wppb_general_settings', array( 'extraFieldsLayout' => 'default', 'emailConfirmation' => 'no', 'activationLandingPage' => '', 'adminApproval' => 'no', 'loginWith' => 'usernameemail', 'rolesEditor' => 'no', 'conditional_fields_ajax' => 'no' ) ); } /** * Function that adds content to the "General Settings" submenu page * * @since v.2.0 * * @return string */ function wppb_general_settings_content() { wppb_generate_default_settings_defaults(); ?>

    • '.dirname( dirname( plugin_basename( __FILE__ ) ) ).'\assets\css\style-front-end.css' ); ?>
    • All Users > Email Confirmation%2$s.', 'profile-builder' ), '', '' )?>

    • All Users > Admin Approval%2$s.', 'profile-builder' ), '', '' )?>
    $role_name ) { echo '
    '; } } ?>
    • Roles Editor%2$s.', 'profile-builder' ), '', '' )?>

    ', '' )?>

    $settings_value ){ if( $settings_name == "minimum_password_length" || $settings_name == "activationLandingPage" ) $wppb_generalSettings[$settings_name] = filter_var( $settings_value, FILTER_SANITIZE_NUMBER_INT ); elseif( $settings_name == "extraFieldsLayout" || $settings_name == "emailConfirmation" || $settings_name == "adminApproval" || $settings_name == "loginWith" || $settings_name == "minimum_password_strength" ) $wppb_generalSettings[$settings_name] = filter_var( $settings_value, FILTER_SANITIZE_STRING ); elseif( $settings_name == "adminApprovalOnUserRole" ){ if( is_array( $settings_value ) && !empty( $settings_value ) ){ foreach( $settings_value as $key => $value ){ $wppb_generalSettings[$settings_name][$key] = filter_var( $value, FILTER_SANITIZE_STRING ); } } } } } return $wppb_generalSettings; } /* * Function that pushes settings errors to the user * * @since v.2.0.7 */ function wppb_general_settings_admin_notices() { settings_errors( 'wppb_general_settings' ); } add_action( 'admin_notices', 'wppb_general_settings_admin_notices' ); /* * Function that return user roles * * @since v.2.2.0 * * @return array */ function wppb_adminApproval_onUserRole() { global $wp_roles; $wp_roles = new WP_Roles(); $roles = $wp_roles->get_names(); unset( $roles['administrator'] ); return $roles; } admin/register-version.php000066600000035702152141651100011663 0ustar00

    /> '; elseif ( $wppb_profile_builder_serial_status == 'notFound' ) echo ''; elseif ( strpos( $wppb_profile_builder_serial_status, 'aboutToExpire') !== false )//instead of aboutToExpire if the client has autobbiling on then he will receive 'found' instead echo ''. sprintf( __(' Your serial number is about to expire, please %1$s Renew Your License%2$s.','profile-builder'), "", "").''; elseif ( $wppb_profile_builder_serial_status == 'expired' ) echo ''. sprintf( __(' Your serial number is expired, please %1$s Renew Your License%2$s.','profile-builder'), "", "").''; elseif ( $wppb_profile_builder_serial_status == 'serverDown' ) echo ''; ?>

    pluginPrefix = $pluginPrefix; $this->pluginName = $pluginName; $this->notificaitonMessage = $notificaitonMessage; $this->pluginSerialStatus = $pluginSerialStatus; add_action( 'admin_notices', array( $this, 'add_admin_notice' ) ); add_action( 'admin_init', array( $this, 'dismiss_notification' ) ); } // Display a notice that can be dismissed in case the serial number is inactive function add_admin_notice() { global $current_user ; global $pagenow; $user_id = $current_user->ID; do_action( $this->pluginPrefix.'_before_notification_displayed', $current_user, $pagenow ); if ( current_user_can( 'manage_options' ) ){ $plugin_serial_status = get_option( $this->pluginSerialStatus ); if ( $plugin_serial_status != 'found' ){ //we want to show the expiration notice on our plugin pages even if the user dismissed it on the rest of the site $force_show = false; if ( $plugin_serial_status == 'expired' ) { $notification_instance = WPPB_Plugin_Notifications::get_instance(); if ($notification_instance->is_plugin_page()){ $force_show = true; } } // Check that the user hasn't already clicked to ignore the message if ( ! get_user_meta($user_id, $this->pluginPrefix.'_dismiss_notification' ) || $force_show ) { echo $finalMessage = apply_filters($this->pluginPrefix.'_notification_message','
    '.$this->notificaitonMessage.'
    ', $this->notificaitonMessage); } } do_action( $this->pluginPrefix.'_notification_displayed', $current_user, $pagenow, $plugin_serial_status ); } do_action( $this->pluginPrefix.'_after_notification_displayed', $current_user, $pagenow ); } function dismiss_notification() { global $current_user; $user_id = $current_user->ID; do_action( $this->pluginPrefix.'_before_notification_dismissed', $current_user ); // If user clicks to ignore the notice, add that to their user meta if ( isset( $_GET[$this->pluginPrefix.'_dismiss_notification']) && '0' == $_GET[$this->pluginPrefix.'_dismiss_notification'] ) add_user_meta( $user_id, $this->pluginPrefix.'_dismiss_notification', 'true', true ); do_action( $this->pluginPrefix.'_after_notification_dismissed', $current_user ); } } // Switch to the main site if( is_multisite() && function_exists( 'switch_to_blog' ) && function_exists( 'get_main_site_id' )) switch_to_blog( get_main_site_id() ); if ( PROFILE_BUILDER == 'Profile Builder Pro' ){ $wppb_profile_builder_pro_hobbyist_serial_status = get_option( 'wppb_profile_builder_pro_serial_status', 'empty' ); $version = 'pro'; } elseif( PROFILE_BUILDER == 'Profile Builder Hobbyist' ) { $wppb_profile_builder_pro_hobbyist_serial_status = get_option( 'wppb_profile_builder_hobbyist_serial_status', 'empty' ); $version = 'hobbyist'; } if( is_multisite() && function_exists( 'restore_current_blog' ) ) restore_current_blog(); if ( $wppb_profile_builder_pro_hobbyist_serial_status == 'notFound' || $wppb_profile_builder_pro_hobbyist_serial_status == 'empty' ){ if( !is_multisite() ) $register_url = 'admin.php?page=profile-builder-register'; else $register_url = network_admin_url( 'admin.php?page=profile-builder-register' ); new WPPB_add_notices( 'wppb', 'profile_builder_pro', sprintf( __( '

    Your Profile Builder serial number is invalid or missing.
    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

    ', 'profile-builder'), "", "", "", "" ), 'wppb_profile_builder_pro_serial_status' ); } elseif ( $wppb_profile_builder_pro_hobbyist_serial_status == 'expired' ){ /* on our plugin pages do not add the dismiss button for the expired notification*/ $notification_instance = WPPB_Plugin_Notifications::get_instance(); if( $notification_instance->is_plugin_page() ) $message = __( '

    Your Profile Builder license has expired.
    Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s

    ', 'profile-builder'); else $message = __( '

    Your Profile Builder license has expired.
    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

    ', 'profile-builder'); new WPPB_add_notices( 'wppb_expired', 'profile_builder_pro', sprintf( $message, "", "", "", "", "", "" ), 'wppb_profile_builder_pro_serial_status' ); } elseif( strpos( $wppb_profile_builder_pro_hobbyist_serial_status, 'aboutToExpire' ) === 0 ){ $serial_status_parts = explode( '#', $wppb_profile_builder_pro_hobbyist_serial_status ); $date = $serial_status_parts[1]; new WPPB_add_notices( 'wppb_about_to_expire', 'profile_builder_pro', sprintf( __( '

    Your Profile Builder license is about to expire on %5$s.
    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

    ', 'profile-builder'), "", "", "", "", $date, "", "" ), 'wppb_profile_builder_pro_serial_status' ); } admin/admin-functions.php000066600000037756152141651100011465 0ustar00' . sprintf(__('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 )', 'profile-builder'), '' . __('General Settings', 'profile-builder') . '') . ''; } break; case 'Default - Display name publicly as': $form .= '
    ' . __( 'Display name publicly as - only appears on the Edit Profile page!', 'profile-builder' ) . '
    '; break; case 'Default - Blog Details': $form .= '
    ' . __( 'Blog Details - only appears on the Registration page!', 'profile-builder' ) . '
    '; break; } return $form; } add_filter( 'wck_after_content_element', 'wppb_manage_fields_display_field_title_slug' ); /** * Check if field type is 'Default - Display name publicly as' so we can add a notification for it * * @since v.2.2 * * @param string $wck_element_class * @param string $meta * @param array $results * @param integer $element_id * */ function wppb_manage_fields_display_name_notice( $wck_element_class, $meta, $results, $element_id ) { global $wppb_results_field; $wppb_results_field = $results[$element_id]['field']; } add_filter( 'wck_element_class_wppb_manage_fields', 'wppb_manage_fields_display_name_notice', 10, 4 ); /** * Function that adds a custom class to the existing container * * @since v.2.0 * * @param string $update_container_class - the new class name * @param string $meta - the name of the meta * @param array $results * @param integer $element_id - the ID of the element * * @return string */ function wppb_update_container_class( $update_container_class, $meta, $results, $element_id ) { $wppb_element_type = Wordpress_Creation_Kit_PB::wck_generate_slug( $results[$element_id]["field"] ); return "class='wck_update_container update_container_$meta update_container_$wppb_element_type element_type_$wppb_element_type'"; } add_filter( 'wck_update_container_class_wppb_manage_fields', 'wppb_update_container_class', 10, 4 ); /** * Function that adds a custom class to the existing element * * @since v.2.0 * * @param string $element_class - the new class name * @param string $meta - the name of the meta * @param array $results * @param integer $element_id - the ID of the element * * @return string */ function wppb_element_class( $element_class, $meta, $results, $element_id ){ $wppb_element_type = Wordpress_Creation_Kit_PB::wck_generate_slug( $results[$element_id]["field"] ); return "class='element_type_$wppb_element_type added_fields_list'"; } add_filter( 'wck_element_class_wppb_manage_fields', 'wppb_element_class', 10, 4 ); /** * Functions to check password length and strength * * @since v.2.0 */ /* on add user and update profile from WP admin area */ add_action( 'user_profile_update_errors', 'wppb_password_check_on_profile_update', 0, 3 ); function wppb_password_check_on_profile_update( $errors, $update, $user ){ wppb_password_check_extra_conditions( $errors, $user ); } /* on reset password */ add_action( 'validate_password_reset', 'wppb_password_check_extra_conditions', 10, 2 ); function wppb_password_check_extra_conditions( $errors, $user ){ $password = ( isset( $_POST[ 'pass1' ] ) && trim( $_POST[ 'pass1' ] ) ) ? $_POST[ 'pass1' ] : false; if( $password ){ $wppb_generalSettings = get_option( 'wppb_general_settings' ); if( !empty( $wppb_generalSettings['minimum_password_length'] ) ){ if( strlen( $password ) < $wppb_generalSettings['minimum_password_length'] ) $errors->add( 'pass', sprintf( __( 'ERROR: The password must have the minimum length of %s characters', 'profile-builder' ), $wppb_generalSettings['minimum_password_length'] ) ); } if( isset( $_POST['wppb_password_strength'] ) && !empty( $wppb_generalSettings['minimum_password_strength'] ) ){ $password_strength_array = array( 'short' => 0, 'bad' => 1, 'good' => 2, 'strong' => 3 ); $password_strength_text = array( 'short' => __( 'Very weak', 'profile-builder' ), 'bad' => __( 'Weak', 'profile-builder' ), 'good' => __( 'Medium', 'profile-builder' ), 'strong' => __( 'Strong', 'profile-builder' ) ); foreach( $password_strength_text as $psr_key => $psr_text ){ if( $psr_text == sanitize_text_field( $_POST['wppb_password_strength'] ) ){ $password_strength_result_slug = $psr_key; break; } } if( !empty( $password_strength_result_slug ) ){ if( $password_strength_array[$password_strength_result_slug] < $password_strength_array[$wppb_generalSettings['minimum_password_strength']] ) $errors->add( 'pass', sprintf( __( 'ERROR: The password must have a minimum strength of %s', 'profile-builder' ), $password_strength_text[$wppb_generalSettings['minimum_password_strength']] ) ); } } } return $errors; } /* we need to create a hidden field that contains the results of the password strength from the js strength tester */ add_action( 'admin_footer', 'wppb_add_hidden_password_strength_on_backend' ); add_action( 'login_footer', 'wppb_add_hidden_password_strength_on_backend' ); function wppb_add_hidden_password_strength_on_backend(){ if( $GLOBALS['pagenow'] == 'profile.php' || $GLOBALS['pagenow'] == 'user-new.php' || ( $GLOBALS['pagenow'] == 'wp-login.php' && isset( $_GET['action'] ) && ( $_GET['action'] == 'rp' || $_GET['action'] == 'resetpass' ) ) ){ $wppb_generalSettings = get_option( 'wppb_general_settings' ); if( !empty( $wppb_generalSettings['minimum_password_strength'] ) ){ ?> parent_base == 'profile-builder'){ $rate_text = sprintf( __( 'If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. ', 'profile-builder' ), PROFILE_BUILDER, 'https://wordpress.org/support/view/plugin-reviews/profile-builder?filter=5#postform' ); return '' .$rate_text . ''; } else { return $footer_text; } } add_filter('admin_footer_text','wppb_admin_rate_us'); /** * add links on plugin page */ add_filter( 'plugin_action_links', 'wppb_plugin_action_links', 10, 2 ); function wppb_plugin_action_links( $links, $file ) { if ( $file != WPPB_PLUGIN_BASENAME ) { return $links; } if ( ! current_user_can( 'manage_options' ) ) { return $links; } $settings_link = sprintf( '%2$s', menu_page_url( 'profile-builder-general-settings', false ), esc_html( __( 'Settings', 'profile-builder' ) ) ); array_unshift( $links, $settings_link ); return $links; } /** * add links on plugin page */ add_filter( 'plugin_row_meta', 'wppb_plugin_row_meta', 10, 2 ); function wppb_plugin_row_meta( $links, $file ) { if ( WPPB_PLUGIN_BASENAME == $file ) { $row_meta = array( 'docs' => '' . esc_html__( 'Docs', 'profile-builder' ) . '', ); return array_merge( $links, $row_meta ); } return (array) $links; } /* In plugin notifications */ add_action( 'admin_init', 'wppb_add_plugin_notifications' ); function wppb_add_plugin_notifications() { /* initiate the plugin notifications class */ $notifications = WPPB_Plugin_Notifications::get_instance(); /* this must be unique */ $notification_id = 'wppb_new_feature_customization_toolbox'; $message = 'Customization Toolbox Add-on'; $message .= '

    ' . __( 'Check out the Customization Toolbox add-on which packs the most popular customization requests from Profile Builder.', 'profile-builder' ) . '

    '; // be careful to use wppb_dismiss_admin_notification as query arg $message .= '

    ' . __( 'See details', 'profile-builder' ) . '

    '; $message .= '' . __( 'Dismiss this notice.', 'profile-builder' ) . ''; $notifications->add_notification( $notification_id, $message, 'wppb-notice wppb-narrow notice notice-info', true, array( 'profile-builder-add-ons' ) ); } /* hook to create pages for out forms when a user press the create pages/setup button */ add_action( 'admin_init', 'wppb_create_form_pages' ); function wppb_create_form_pages(){ if( isset( $_GET['page'] ) && $_GET['page'] == 'profile-builder-basic-info' && isset( $_GET['wppb_create_pages'] ) && $_GET['wppb_create_pages'] == 'true' ){ $wppb_pages_created = get_option( 'wppb_pages_created' ); if( empty( $wppb_pages_created ) || ( isset( $_GET['wppb_force_create_pages'] ) && $_GET['wppb_force_create_pages'] == 'true' ) ) { $register_page = array( 'post_title' => 'Register', 'post_content' => '[wppb-register]', 'post_status' => 'publish', 'post_type' => 'page' ); $register_id = wp_insert_post($register_page); $edit_page = array( 'post_title' => 'Edit Profile', 'post_content' => '[wppb-edit-profile]', 'post_status' => 'publish', 'post_type' => 'page' ); $edit_id = wp_insert_post($edit_page); $login_page = array( 'post_title' => 'Log In', 'post_content' => '[wppb-login]', 'post_status' => 'publish', 'post_type' => 'page' ); $login_id = wp_insert_post($login_page); update_option('wppb_pages_created', 'true' ); wp_safe_redirect( admin_url('edit.php?s=%5Bwppb-&post_status=all&post_type=page&action=-1&m=0&paged=1&action2=-1') ); } } } /** * Function that prepares labels to pass to the WCK api...we have a quirk in wck api that labels are wrapped * in %label%...so if we want to have % inside the label for example 25% off...we will have a bad time * @param string $label * @return string|string[] */ function wppb_prepare_wck_labels( $label ){ return trim( str_replace( '%', '%', $label ) ); } /** * Function that returns the reserved meta name list */ function wppb_get_reserved_meta_name_list( $all_fields, $posted_values ){ $unique_meta_name_list = array( 'first_name', 'last_name', 'nickname', 'description' ); // Default contact methods were removed in WP 3.6. A filter dictates contact methods. if ( apply_filters( 'wppb_remove_default_contact_methods', get_site_option( 'initial_db_version' ) < 23588 ) ){ $unique_meta_name_list[] = 'aim'; $unique_meta_name_list[] = 'yim'; $unique_meta_name_list[] = 'jabber'; } $add_reserved = true; $reserved_meta_names = array( 'attachment', 'attachment_id', 'author', 'author_name', 'calendar', 'cat', 'category', 'category__and', 'category__in', 'category__not_in', 'category_name', 'comments_per_page', 'comments_popup', 'custom', 'customize_messenger_channel', 'customized', 'cpage', 'day', 'debug', 'embed', 'error', 'exact', 'feed', 'hour', 'link_category', 'm', 'minute', 'monthnum', 'more', 'name', 'nav_menu', 'nonce', 'nopaging', 'offset', 'order', 'orderby', 'p', 'page', 'page_id', 'paged', 'pagename', 'pb', 'perm', 'post', 'post__in', 'post__not_in', 'post_format', 'post_mime_type', 'post_status', 'post_tag', 'post_type', 'posts', 'posts_per_archive_page', 'posts_per_page', 'preview', 'robots', 's', 'search', 'second', 'sentence', 'showposts', 'static', 'status', 'subpost', 'subpost_id', 'tag', 'tag__and', 'tag__in', 'tag__not_in', 'tag_id', 'tag_slug__and', 'tag_slug__in', 'taxonomy', 'tb', 'term', 'terms', 'theme', 'title', 'type', 'w', 'withcomments', 'withoutcomments', 'year' ); $args = array( 'public' => true, '_builtin' => true ); $post_types = get_post_types( $args, 'names', 'or' ); $taxonomies = get_taxonomies( $args, 'names', 'or' ); /*reserved meta names were added in PB 3.1.2 so to avoid the situation where someone updates an already existing field with a reserved name and gets an error check if it is an update or new field */ if( !empty( $all_fields ) && !empty($posted_values['id'] ) && !empty($posted_values['meta-name']) ){ foreach( $all_fields as $field ){ if( $field['id'] === $posted_values['id'] && $field['meta-name'] === $posted_values['meta-name'] ){//it is an update $add_reserved = false; } } } if( $add_reserved ) $unique_meta_name_list = array_merge( $unique_meta_name_list, $reserved_meta_names, $post_types, $taxonomies ); return apply_filters ( 'wppb_unique_meta_name_list', $unique_meta_name_list ); }screenshot-7.png000066600000121335152141651100007600 0ustar00PNG  IHDRTtEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp ?zQIDATx\Uq!{=q'(2G(_Hˑi߆\Hą[vc&z>|ǹg~{CBBPIMVZnݮ];ssRN{3gΜ={ѣGlr(@ã[n...J/^zUtǧdff ]]jժU^ֶq>P& =p@xx8dتUaÆuA322{ׯGGG?|,--իճgO===sĉ7@McǎYtC s{ay7>裘1c?~*իW=ٷo .s 3fKgϞ|^ҩOƍyggg,@2,s_~e=vgggWbڵO>nnnd@2,+3g޽ٳ+Z=z̬_~5j8|0{ 7f̘ڵ/'5ӫW/MM̀v$çIĉO>W9zhӦMCCCo߾;*;77׎ݻ% @*-[L>|͊ R*6TJz7oݹs =+wzzzgΜaP5C[[#FܸqcƍVmڴ믿{ ᓛ3g|N4Y&ed$ZnݠA'ήCk׮uW[ / +N)I7oةSǚW\]]{^v_ݷo_y֔~2)h5j4|pr'N(TNNNK.0`ѣG7n(Q0 77e˖]tiѢ0--|j*;;ȨC@eR /_.)N\rrr)'qpp_ k&$$3f% 6,11|*KCΟ??vXv9իW߲mrBq;|?ӷ_ff2ڸ޻st4lhoPGG'2ѯoɏ~|_˫ˈl,YI9eeeIo^^&7775%#+/.uMAN$Z:/61 ܜp1Ͽ{^ߴFlnozY)_ۿ.#1:-VF#t#M lV9]͔rccJKw+r|JOOi}pNɧSSRRrrr~ׯf͚1jtudK/X,$$XϧMS]XC)STR܎WU.ͿIGv_j͚n2΍gLLB__7==LW_7\ǹ嚵 |Y\-AR?:EqUq322Ο9c5zL^} U{cZ~=_緭|[[[w瞗wx-[(޽kW?YAW>\٩B7ȑR`ii)/},T¤R?3w;w|G~믿^>% +ұcG++(#A9Mwss7׮^QԿ[L9!VifO/]2k 9Ouvv)0+kk??qdVr)A3g}wߏS\xwʴ?m[gUH5I4rj6!-RV^HhiRrstIw-;9YrފܬVVÇeo%[MAw^1h[[..SXג>]tmѢQ#d)R¤䤤IOQ%̬6m*ɰ^aaa -^{N [4iܹW_!&ɰY'L415ݾ>>>7nWޠAʭݻ7L{7a ϓN9' V XY[=zP9G|=' 'ϲg0I#7KCbvL00_㗕*_45f=iqokU͢#""~srreZ$W_{uwt7$c4h3.7w͛/##CVSZ^:u|$m(gL0p*I;{JT&7X`[ԨkG5|o.](6v\'YmFF>yㆵ=b#F2_5MmmmaI "ӕ+WJ9ިQJ&,X w-Ց?Ti 4kEfccܺyS@+*gOLN[==矡:RLuаҩ9\JkT6Ǐ5i &4002堻w 즾4jI?'7i %r oܸDD^\EDꇆޗ)#(3wtt 8w ln{:x…Eq<ɖVV7۵KS˗.*ǹsg.]Ԣe+ڴiSa5.Mk%/_(Z3}T,ۻI-,,lllvUI4ۥ֯__}}}(ȝ;wv֮-kְLs9qJcgGV-&&o]|nnnxzю;Ǚ͛7;W%J,9va?/i緇[>JH2U۽{w1^paI]rԩSSR*]t{ndX6*L*_,T5 rz*?%>.^տPII!y4o֬^9ͱg̜2yRq-qh)97WzC kAvL ԞTwJhL|LMY+aqqq5ϓ~' "Dss +sEr^Eie )UGZlŒŋt%`q{:uڍ͛J2iӆ~ԫwK+)))r+y~'oX˅ &|ԴY /H0>}#ސ|&SR65Mttt *CyOb9͍*@D 6zޠ0NXn~p]&&Y.Q^ }RVGY")ɧ94jhԨQ'O.p SB__3{;wsΜ92?ɨ\.>I@UjS%Rtp-#G.n{ifX+yOV+9zL?t#+z&:ws2254rWYHҭ_Ao.+KڵWãͥ]^PP;˗Z4o~ﴵÍwFDDmں4FoP]^}7g.G7/=}}999vwufN)ϦZUJiڴҢLlLLB|B=_/]j۶]mz=0PM%أMی" }QQQJȿmKWP$I6 &މ_Ƽ7vzhÆ )|.ӕ\oۤCgcj\Pvv5|ʩ()e޺uJrŇ]5p43U[=K ]؜?в^fhhJyYzY?ll{vӺ{uՕSV_KduI˖d%@*1 q|&P#YϦMQ|kѣG{}oPE uQUC[R@ |۰a#s u5Ͽ)C;=Y נRn൫ݻdk׎u u###a-Ǿ+KS`YW?݊e\ &urr}ۋktss ,ח{I93K\j+;}} 73:w\^߿5#iMK/ԦM;v|;ēQFV[%ܨK=Pmڸa̛c;c;I2?s֭m[$'5y̌mz‡YYYkW|1WxCWa/ݣz\Yn`6g$?9+%%=EZ9Scdf:I9J*[PNլ:Ry]jjѵwJ.Ptk׮Μ1Q?_)K'N['aobLMU^PQvTtwܮ=+n 8;;Iϝ1}jn3}o.[Itt[7nqÇ,j^ {~i`qڵ O݃t y5\e+|zBBBn_~jFF=~غQ…vW^|%܎k#0$8xΝ=SAC:F1Jƿuܹ )7wi .,}s2wc۷͛jiر&y1|~>LX*}v\2þ:t >KzX~ȿbV>In}]qClȑӞz 4%ԀGFF>x5jذ)y/TMex9ǚ*>>^▤6m={Xm۶"caޟ@j]wʹE'iu\BV$''KhɧQÇKɟ}կhnT>}Z_zR¡ x8jmm- ʨ(hWaժUEi3F~H}UPaW ԹԞԀzU/2T ,_z^U+:99gT1/ܽ{… \BSZB3nVy7D&#w"9eKe|*ݻ'f͚JPoVT=WAO=/=] 6(U#)hK$S"V ݻTHTrCEׯ6W$RYDqnU&̝;Wȕ&TTҡgU=*?111|_|iӦ &qϮK ᰸YŧeB쒖hi783%TV+HI5J" '1L !ұdɒLGBUTt*R *͓MZ%X((!GIV]t=quQ(m_|S:ujXpZ.9*PHYQСC-hx IR3T GƔL&0҄r ɇ|ɓ'(255mРAϞ=[j3f? =CblyAvni[jUZ[56~wYJQ%C7lP J QUyL$3gJ S)K[ݻs$S)e2|)_|}}>XّTAW P2zJ<,_%J%yóD}# H{NqOcǎL:]Csss꫒c8h~ȱJHotmJ_6eJj$)CrE Ri(H"M0&СCj;а|..._W^k׮{Իi›E}̪\S$FlZFR3fTOy*޽{겛d %\~QZ$ (dJN2eg}V>7^Hunll\-ʫAaI`aӧOSFM L>~ =mڴϘ1jfw14s P7gHw<ӵICC􅔕'~ЩS$>Cz%_WrS|OиKߓU(aJhoj*0..N#KBBB)'ӧ$=׮][܄-[l̘1ܼyG}tر"Wgw5IQI9tFǐZ5%2zcaaet ^) M6S?Oއ>O)r!=ݠүR{%ahh|ZYYfN:M8QÕ?hРy֬Y2 .(M ?U/{EڠQfo==ct sTRV|5jյp/ 6,XzO_SՏQiTںܚexcΝ;7;;{ȑ U1bt,X@[=4Tb@ ݗ. EL f}8jd{KHjˇ@WAJW\yh_Гy*hT`h>KdZe)0TLX]Op4NilUdz U"*g+Z%={Ĺ'^wޝ5kdO?Ts1>o.9a!V h˧Uo)T.D ''OVn1ݰaS_jSLQmGlC]p?Ik2_S%%I#Gz&ǥԡzU,nW^U.J6V/.sJCHNSSS[8k駟Ξ=%[N: i;N?8׸<;U\+L"W|JK+5kJPP%K (9P5OuVR9'))I UDQ!!\K Gԛ̑'2вJ VxBYJ >Ḓ5z.ip,Uqu.8{le[rlvx*t~~~VVV%§ܹstebz]Z #(WEޯZu77H-IhQ邯g} * HJ)]de@ZE9H?~|JI\WuT]=r$dYVɅik$sStWY\KJ*/0a*EI*k{>}qN=j7F 7U֭[Oq < 峥KrCeEdu6mĮdXZxoFC 4|dhꟶfNnn$n֙EXY]v4tzQQQϟرQrr q.\pvv>rS_m_Fr}/7(SVAVDVGV]1|V=z7|S`Ђ RSS6mT{ٕ+WWc4kYAx)ڲV*(~2)۷Vl޼ѱSN廂OeFzzzǏ0` D|3{l?>)WVH̙3 }I-U8}4; LHHzR!C̟?pԩ>>>HΝ;{|(W\+׬Ys޼y wѣ-  >>>:::z4hi```ZZZ.wޙ>}ݚ5k&O,`PhzxxTծ]{ܸqZnIkR^|ő#GJٳg-Zt-$ sر5kot˖-gΜy*snݺv*AAA+V8raժUaÆuA322{m¢~^^^={ӓ>'Nظq?{Tdppp޽{~\\\>/^rJddtǧdff ]]jժU^ƦqM4U& ٱc$CIzZjݺuJ9Ullɓ'Ϝ9sGNj䳷OKKK}}}韞.!!!lf(3Z|l?紨 H!d H!db4ʸf$C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C,)YGDDPeggWv3NKKKMMʢIWW Eڵ٢s֭2 rgii)g~6"effԴ¡5PTOb&Hzzzqqqr022"T*666:::B%ҪVڣG! @200 [rE:T@C*UYwsquܭ|ͰiC!*MMMUMnnnZZZ9/4杰3|V !%CmmmUMvvv'üDݏ. PH,(?+Z <܌L!*Ijn.| $CPz[2֤k'N9鷃wHtdU 7Vsu6\}C2J>?f= jii`]sR"rQ}PffBU`ܱmX3#e{if{:;V:!@cjjڸquR-I3q 3B|~kI vԿMM͘]]]53fR.\dRdP9$%%yxxի%''?~<,,а~͛7W9sݻ2q۶mkԨ!=kVVօ w}ԩ۷ogffy{{K1MMM۵k')7Mmƒ4&2gdd$IA߿ٹK.'Q[@I}~״Β---ﯯ[ƌӓ(^ڣGÇ.ץ sq2j4.AAF[gV'@P9ijjJNt%-[J333kذ UլYT`:u)#KڔHر|ut-Z85j$$$$P1%=$ uWoشa>]5rrju5CJKСCO>ݭ[7Xl+WTfll,$F޻wOB57)Ebb*8e( (#'L<;|;'7m[[C[;7=Cĸ$Êرc3gT;w駟R'tw…#G 2$77W yԩݻ^=橺ereŽx&&&ZZZQQQ666*] %3ISnVV=teTIǟWpsfKhi骡B?w-LMM<}֨ÇePZZZDDDhh#+++11Ouhcbb$^JT>-ѽ{j_lܴiӝ;yaaa+_x3rI3EA!)§26pccUE*^3nܸq5Ej*X:vk.~) CyvQܘ T4)g/H8t㬘؜*֚efTDDDڵ+GFF6L鶱 ŭ[ݽCj*(333&&&aOkٱqLzܹsH*@fWVn$Ǔu֓'O֩Sk׮;w.|EVV֖-[<(#4l_}FK/_~ժU&]lA}дiڴio8p <j8 ?_pijjZ`eË*,Mm^+[+JE7m7XjddW:VrC%CBæ I۷wޭhT߿>fnnnhh sspÇ ܀ PFlmmT~*p7in޼=|mѢjбcU_Ϟ=t哎ڵkF8tSRR^$Ê( ܆ް׈g̘$NZ`j+;wV{Fjٳ*//nβtϟW9wܬYzegg}ӧO;vLSSW^qǏر#22RVɉ=@Ukaaa?+ Ku&&&E(_7<3i$A\GGP___=zׯoٲE #7m"TåLn chҤɏ?m6 riii%uSK/1|ҥ$=x@WWA#Fؿ7Z ߧƅ+""B!(Mj#&NثW/֭[-?s$www@ 4rrrܹSvG$IJr]jբN븛 YF}֭kddb Ջ]\\ݩ%$, N*j޼9dX[СC'O NJJ244tttlݺ%UdXIP6) $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $CPyPyaTTTZZU֖!lD777CCCjWjjjXXtnRIDEE9:: Sr,*d<҈!7@2 Qlݺu}{oʕT PTѶIgϞ6vF)}.]8lذWbϞ=;vP#^z|)))!FFFJS/ /Ȝ^d sNffuǎ{9;v|8sݻ;;;oݺUոqV^[o޽;<cǎ[nieW_}Uϔ)SLMM{e˖x''Ç:u/''qtuue#GHHMMMWWׁK5kH x@>wS)P2tHv V e+̔km&9Jz_JX()<ʘŕN5""B)QJrYY*vIoq5 ںpI!U)ecYV\\tVd@ܹÇoݺ])A@{Ϙjhh8x?ƍI޽̯/ i޼Yx;w]xqg7 {KĒ>>>?p^Iww7+++$4jPN3N>^ut'$թS'3#Z`ڵ3>>sccc%y\~c寿6S2?;/''͛7w\﬙3d[Hpȃg{{{VgffΝ7_jINjr{ha#F>P۷wppdx%9r<:tҨf^USaHj#Z[g$,-_<99˫y298iŕD}ՍZabR_ ?g})_ǎz5jiɒ%5O5\\$mۦ{g\ںu͛o߾S2ހ/HCHǮݻ%6m䝷jkk.]…rRQTzz]z)ƍ/_سgwIrz 4?s֗!_x^ caa*t7iXa5 wܝ=g{%n#PfW#ig~˯d9;JpO8ᆳ;vmݶ=5-U۪e>}zm#ɰgF7nޔȲ>dr`{y@2lllBBBN:լY3I8!VDWW7|… +Wv(M{!11Q KIFX[L{'(|q%QGB$I޹sGz*TXX|6'+o $ø"]t|_bF_~[4o&.3I\fww7B9q:{^ݔA۷=|dBܜĤD%JMKOnj:O vAy-{IWΡU@2t"'O666mР ꫯ]dd*.vŋǎ^|VV嚚J#89WiJ";wNƹwF9ʡaÆ\ĕ+WΝ1tP&Ґ|$ngG.^V)rKJJ(1A5}v򯄩T_t<=wߡC^{DDdg89+NQ]appǎ=v|ƌYյS3ws6忟yz>ױC͛? "I}ю;BBB㭭[hѳgOe:$5o_?Ν;,--۴i˕k#32L8q…;ҔQپ}ij-[8ȿ)9X>sE%^zsβ۶mg@۰aS񺋋?BֵK/ IMĸyJ}P=%mݶãY+Wgffמ==\TQI4lK{=vw'q6E5鯎 6mwо/U@PF(v9Tc[ԛv{H78xHi&..ƍVwϘjKQڶIJJ7CFKy9U~>555~f288O(tjSêVZ}k'##\@Zб>} "lo߁^Y`rw_Zjz̘Q*QܹsHф|T-|êӧϜ:ukW/PU[2 ccc333 Hf҅OMSy;w?q5k޻oqrtAxZZUwg oۦG:IRt' 6<<<^P:ul&YfM^={mѤ)g9B>MriLlLC>:gW999lٞީso޼%%LS/IlٲEFF޽>QYeYmzdggK /]yvzfFI$%%TzzZZy/.iw!@q{ wtt06{z0аļ'm523aPPDCI}uҥӦK L}"JOTxun]iz߾!(IXP^ZXEQQQ4_,jڴСCݾ}w+W^q#==a/gffd>wvr|(288Ҳ.޸yگ^VnFV sY|.\hna.#Hnժ2)SѬIRҘ%P9E[{,۶pF{LLխkiey Ik.5\~ۼ%&&Vz?4T%%9ݯGVVVHI;wzc==o/)ruviÄ999۞ISw?U-_ڌ{6k 1/]ݩ^\\\*[LLL "Ba/UM׶GfVVXX՜ܖ-Ś;vInȿhbbR~=@KUՔ522sAJ)77766H*@< Z},}[P[ 4#@2 $C9ʱz! #B9ʱ B*|޽{7--e`` P9H9@ݤ@2 $C@2 $C@2 $CPUPyaTTTZZU֖!lD777CCCjWjjjXXtnRIDEE9:: Sr,*d<҈!7@2 RSS˗Cmx*hۤ/yf^2233_~~LLL!u9;;[P*rss;ѦAi̼~z|\[dXqYXXnѣ'N|رcիWo׮{[n:nܸgN[z[ɒͶ$,[۽% L’TH^ IezP# LoLH L<ܾ݋ݲɶ,˒%˒Iw}Zeut|;e{ݻw gh4%C?R}, ]__G0.))&c(G` \.MG$L&A&r. ]WW2W/| Hw'===v!"eڊdrPR"vRlnnw_Gch~#i/sPӿo.DDDt8a:ZwwWV׫5w(yY ʖUjl6|<\[C3[,N+ Q֭[[[[(lX2`)-h0DC%b@59y7ߏbϜOw,..8!2VqHhP**lP `XGh3* ŋ^nD"(ok}}cc8C-G=u⦌s5Ν:VQYYYU]-/rpb5:K4ϗx955py@Ueeeoh@Ǝ"}I " cɹ4ᩏ2~?3nii_GiWWW%W-pܹNB/x<~p&j>DA3gܸqMLL?#~~SB\ZZO?[U0xşW^O~򓽽>?DDD`p䃣>`9HmCC_z)"HM8bA0@ZI0ZB8btwOrpսy*6Hm8 g8f9LC!ј?Y`q+UpXjp8*=5ΦM9`]&l8ˇv;hww76ܷ<3;va>B5_yWADRrÆ%R6 n9*{ٽ3bY""&PgU\Պ&;_l#v:GH{MpԆ]RR"w kf娌}ގp4<6"hܷo0O =VVV;}g>o7=py3'>ϧϹtCłW$O~OۛufKK˭[0ܹsy҅uPVVʳ&㔈if8S1Q{<-kXE aiu,H D"&/buu۷ndx[mx7vƆ|)V~l<kvf^ymbZ-yDHhuw-*,D$7A[O;Q8s<#*#:k;N c ؕ{B!'j0=? !܅ ~Z/**B*CVr =:SoiiIIsB1ׯIxW>yCa>+|{ HH&[26< PH:[RV'vwV*%[[[CyD)\\8ru&'KzN Q gb"ISYېa I+7+͓ND`)V+GΦ` ơJ4&< /[VmOx 1f`tT)Ňd%lhl krb4`YېcnvJ[Hn.^ڇ̹94IFV GL^ H`F4wmۍTJVח"󠼜Ѥf4\M@#bhBcbb`41L@*+/%T_\u2MiqOM!_LLL `!-Kl<{ܳrb2<>MJDDDD9y$Z {MO Sl9ޤDDDD'Tիy>l9!=̵咧jFaJʑh|"aQ-!ѳyLCDD d<"Cq)ժ߿ CFSdT2)ߖtz},ӅEE']ȁGK  !bo^lhҵ~{lCC͛7++*DO 输XL"F-˔˅%.ڟPcrۛ]i2 2TJן(ֆܸpvɄwZ08J D{Vh09URR"h4 yHDYz GJ"af`,P"4ۻLssm]ZN5>%b2$"""f4V|>,ϱX,yS.W,K$ Hn6-km6ݳDPm`tb$0a>&Pm2DE)Xg*ڂMÖ٤DDDD'dZ\X0 &OpnnΔ$;wKJMD$Cm3B~3uuX~voߺL4ju]}=f&vw'۹Jlhȓ$SS;;;65}PR?%DDDDu#9Fr8 G2tݏ7^tLDDDDDDLDDDDDDdHDDDDDDLDDDDDDdHDDDDDDLDDDDDDdHDDDDDDLDDDDDDdHDDDDDDLDDDDDDdHDDDDDD/po߾D[*l6ADDDDDL'֭[ 糾r.\=w";LϙUT*ƫW>wkk+**$"")Vg~sa2??bORyb/<99~bf( L^{"""""&Nde۷}>~|Ԧ)G^ݻwdxm~g _tg-˛oo~Ν;"nnn~;D̖׾(1Lwww~}}Dii#A?`0t:?OIc_uUPP|,O://^{*B)))IS[?я!p+z׻G@%""""LJOxfyi7˗/WVV^xqee| )nuuI ԷGUHnhؘx QGGG{zz:::r{{[_XXJX͑H~@=bdBVJꫯ"~~뭷 !""""zp|_EHA??':8f"ݍ7"mmmK++TЇLNN~_F${$5~g~k:777smm 5ϓ.{jooh4~sX,Y444 "vuu]tI.??яwvvA+ %}ӟύ/~r`0(OgAAV õxpOOEDDDDdL3ͧONfF;˦&[ng>Oo޼YTTD{񠇯,?Aԃя~35//~:6 ~6NfdC_ݻ躊 蹠X__LU///;Nv1=w\.f{|HC\AD[2tݏ7^tLDDDDfgf&Z|>ߵ|S`DABC„RҨ qdWW^GZ3͛/Ա7n5rgg+gϝx F剉 L(JuQQYYYMmpb[N>''&L&SYy{jJ_RR^^.' _5!ݷʪZX#GϯMd0>SB!"lg2 o%ȥ]ݨccr!6;kbx<߈Fń}XȈNיɐRȗC`0(\[S-Ӊ2(=W ZVݎlyʕDBR9~٥%A*+**~Xm@`t+>җr]F6LO'vw\\"94/95n{#Jў:1jCCCEee4uMNF"lW$bYlo|l KaÆDc1F=pxFJ )MPx^dzYXXhj&Cmt:8O:U``Nww7:]|poݲ~COOO;w.1eeCwJ=bgΞEe4ť%NP`4-@S+d"8176r~ a)ʼu ku:Hfll3drqq)d!.(JχсONNgXAן091}ʲ6!mxhK/eGB[\XG)ho'P$O: (DUKCUXn׋::2b2;:;ԤthFBU@d*, ijnFᑑS=@ȄXz{zn<?d51 Qp삙P8F">!x.>^l/Rez2,/+;߶?l  GD[00!7f`kk RYW\ٛmss8=(P( NH$ 'ѥ s(V\WZZ(]Z*))[V`43M(*@A%4a0?-PM^"S v Fq46zJ0) ~ޘ!jJ[i)HLʊ$S(fb&4cEVӉ(팬c$vӉ 2J K?v+Bؖ܍ɓ0nؿP`66q/=ђ /:S0Ѹ?XoS1C"""dRT657#+InX_] ݋5k 4ZH *$⃃]"riԃ #xF"`ȄƲEgzLC#EbbPaqeP4B]!X4[}-=e||J_]S3pfiY-EUcxS$➒bÑ'WVVҵ`&vh4QohFQx ?qLccc9z{.ɐd6 wܑo qœ3W~2j>ؤ720/G0$ QsTiOIۖiKMnYKR)$&+>b[t'n_Z\NO*QĹxp+r^[X)_]?s7&ǦI ɹ&'&~B~u'zN:Ns8u^3b٤DDDD' JJJ:ℜp ۿ*??*>Fؐ_߻2Gm;;"A$s72Ŀ~2D(9捴G"Rpec1'dCniO>6uww]XВ-:,aD3i_ƺSL\|%LsNsALDDDD/D``0yvMN½I_*G֌YX@@A>!Gm8rږ\.䷌l9F$-8Bdͭ-)vq+L5 off!uNX̌XD/1zť}upf`BE |a'..,݃twQh[>XC!ԖWdR,*,2kc3U)a:qބt0O&%""":ptkxl6buqh&XsD26!X[Wߏ9jCJj3oM5rX#sk3DJD"hWWrQZi&\rKXWPPݍTXP*bcLjjp~nNܝsp{QΦ&WIϜI58؜;nIV;1̃74 cSEp݈D)߭`'DDDt"\.M51P*_SNgΜ!TxٌzّL&nSDDDDRgJ`uU3!ы(L񹹹C 3$""""zܺukkkALDDDD-yԝ>}@x6)!1ы(CCl^0ll痕6?1HL\.Zɉp8|1gϨl6@dHDDDDϴd2Ԋ캳3666;;ЀSSx/JMOOO;̏b###:6Ҳ&rkk^g1Q&ʊga*_` d()|jjYVk6.-jsT]^S.W"(ZZW=wNTJ|zEbG;o߮G:BA; lj (SaQQSSVEC2b`m-3gIu.Kl[Utcc~niQmggo!DWWWQFmmmIJXtb&&1~X%^oo_w7}۸|=oM$͚v˿~SKDDDd0$8P([VW%Eeaniq}2c/FQ4 /z;# wPo11!y)b!•EEbX/O:3!aJOeș+++H{pkkkڒpee8 %=m|}Z""":aC 0r>(oyd:*IպEJJJүLvhhPR".V̓F$EjyyYV?d$4>rSKDDD WG.OU *Jd=RZޕXE$ș/\Ș'U=:<܌D"ǹBﱶ!$O"&C""""z:_V^Vf4ړԔfiD~cUgc{֓>sqT",_=/[ɭ1򗾒܈^9wD?_ߏ[-ųۉa*Tҧb^^^6 i%"&ÓFk E~~{]o! )?&#?,z"M[sz,̀EJ$cqv,=*O1BӉ D#Mz NFc7M~?+Juga)/J7cwrT_ݸt^%"""""&牦53}Nڀs>]3" WMEzv,1>?-Nsk!^|qg% fZ>oo=/V"_\?^KDDDDDLύFTe4Q^D܈[LbfCܸ|-OyDF\G4yy)v/1>cs{ _.2 ^> G/'^*jF}:wWVC?%""""Oȥ83t/n-/~I%g+_LD5%eQark{{na{Q![wiQ?m\7>soKDDx\.RShdv?H2J""""""zlR"""# ^dHDDDD<6%&%"""""b2ki DDDDDd4]mou2~o-y~ja^:kjڞ33~KO-=Z/I񏻟(w!""""""&C""""""&C""""""b2$""""""&C""""""b2$""""""&C""""dvMN>++֮?|ĥ7"&C"""": &gD"7/]z} nߺ;iJjϷ(gWXf~«#&C""""zp@ /*hl6ۓߺާ+}>JUQYYPPdWGDDDD/MFSWWWVVJ._ݭQv/{_zI!eroy==J&\).>uT:8_]]EV_onn6LԝAkۣ jP4֥Q26nooO\5l8i[RmnnjljR*,I_סּʪ*lAUUբ:VŐ-ˁMau+++Dqq1m02oD"dnǻ(R*N4EEEu%sx5H\ruvvB s8&vMN +`hX4E 6E_z=dp(466v… &IyuKKχhsV 6onc m8 ɐ 3ӭmm8.C())qy("f"3!Xm6ěH$ޞ΃1 FGFXvlttccZldxXӝ;w AQS5?7҂q4z?eMAªn4̝@B9ۋwς33paG$ x<]X +]]I(ubVc љX$=UQY')uV2|0iQ{pׂAV{ٽ?XL!DwaK˭ʽN|z>_YUe67\H.Ør䷞ɐ'ɬ nR@UU`A ùOQgݴb@%o'g LY˧R)RCCۚzȆ)X.}uVsϯ|SSSȺ٘#4x/XuvыCmll/7"yh0ƆI* d9V(Rǫ3],؝*??r%bhںiuG+^& ^VծK'N,[L.M`UܻՈ6ӑHd}}ɱ`Msׯ_w\mmv&&C""""TUUB! M&Ғ`qyii a@:%FQ8Qg:$:T2htnnBN :|B+l6VX5,Mh4S.B#]%z}9[1;3- |n#n8B@Y[PbZ0g^x!0=h,&.D'%`^oMmS::: 0|Dx6) b8X6qFSd/)9ԙׯ]C;}:GR ^~u1U CF:3=!c`N0fvcAAAWwxJNmjn(p;HhHG==OajElyFBUḘftdȱ@{!Ljjxep*/":k*RPOں#y#)?h{nLt蹃uc$Ñ9":[z[HST4}ٳg?|I&ҏ7蹱[BB{Fb2$""""X (3n왇 Q[[랚qF*R*&dHDDDDD/AgSog;]@DDDDDdHDDDDDDLDDDDDin{{{[<n O[W*EO}֮F^gHDDDtL|>LT*FSQYOBAr65!nItp8r?t. LO}]''&"ZUW_oZCӪ|VGy R]TTVVVS[`!WUUUm]ښBDD¡P]]VŴNK&KLDen0:ĥQ ޥw/gb GF'oBLDDDDt< B%AʊD"@'xv˕H$.\[jQŐCVWW$x|kk`\__GUX qb/+kFI38hZmv{tccaa^QQO4uMNb[z؄m}Iϵ50mihhVdTbhZ83EQmC`Y2s_';91>WTv"-F1m^/T&^"_z9y`2(ʺvB8FFס%MZzoBLDDDD/@J.{;_ml!e0K^1>6܅PJ&PFVcb=FH;;;#M-(022r7Ƒa++YqNwr OX[[[xۑܖN9#$˭VĹڪkjxU~A: RF{jjk{ٳvnvcB "(z-#"޾@.݁؏y:kp8DDDŽXHDDDD'+///N[Z<~UFQRJ$%dͶ7d^f"A1"Yx䭷𲩩"@p8Иɴ1C4VӡջDd}]j1K C"/(@¬RJ!\udcǿK.r4..D"E0c׋~BTI#x(F"~lɢ\!NGQ,eGt# G\zp̐ACrCB(h呺¢0Ūkj:~E+~|ll6ݜx<.N/G&ь xV$SUvi,q||zvf:+>`ooAH2Bx'WV+zx=nmmMϥD9!fgeC:]ZB# ]G.!IPS[1L4TUUp%T*1~ӯ3:])H 3k}*=DZpBF%xz3ٌyixh("+?= ۿWB!?Qܔ4hZoobg^ V=T҃gu 2ӧγE$CH旅 ^tB O(J$`pqqha***fgf%@ eQTBw'&&zN.qaai-Ǻĕ333[[[nVMM BzrXlA"ʗ ]]b䰮~rrZ?^55URR"C!*ɤFA2DFzT)&yBQב89c$G-+7ZDd2vo$%=exN%%zTx6)SLMMxz$!I6v///^GLDDDDD/Fg3$"""""b2$""""""&C""""""b2$""""""&C""""""b2$""""""&C""""""b2$""""""&C""""""z NH$N z*z=!ؔc<ɐ ɐ ɐ ExgrDDDDDD/n2l_"""""g&%"""""b2$""""""&C""""""b2$"""":9ݻwލbTjvvvppptt4HaQe}%*x N74s"ۯZ֖nkk{wgpEEEѶ|Z 657#"( _|JB+|݊e\bXK˅sEB!ܼqf]GbNAAV5 %ɉ@0V1J777_7PƺȀNqzo_>$aQV;}:}>zSRRst' TYhwiHz35lFnQ*P /z=bdF%(|M6(F !3}dByrggid2/2bN{s!ŭX5ŋwvP[* ȱ3G/3=-3$"""z,//omn5T*un'p8G]bq{z:L^|YS\|J2:XgJ'Nj˹x<ں^ǃe jDrb[}}e .jk[krNZ Ѩeoah!`CʭV"χI'`4t$AElnnF + hañ=99Z[Cj‚555XoiiInzKFAal"gpRJZZZ^VnK"Ę!z mLa#t>N<݈ e^|v%%NS[(e- :kD Ww0|1nLJU]xk&C""""`ii )"м`0 d0pHx'm͆u䍶u=X v H +buypSs3z8<22r B"[DTqbY<T0KGg${󫪫d2944Φ&d-H>ttdd6+Bݎ"CbP `4IBa1hqʃPd4wDmY%V#?]2Bcܹ\b6=IȺCCϜzNBCt3L}}x =3G݋&Oc֮y5ccKG٤DDDD'[o)38[bblD|$q#D4ؕ',.}}XǏ1XPP <a ? !d= YVL hR.,(YnX!ڃJKK2Z1]IJ N(ERX.4O3< jsk(:D#6+Uf1"5thqŻTUU>GJNԶ*f,{v-bl:Pn"Y_ z~ot:GE$Ҳ3T+]x mC9:O1Et_8fHDDDtlѡX4:::t,V-' {H l~~^Di BF8͛ H)ZV4xgc"3lU?|Dtc8bÈxXKy\*]jtzhNB,bLKb #dѓ}Oݽ]SSS{k` IMz Mutvs[8R[\,lP!m+i;lBv*2:Mژ0Z"Rh.,* # BJ:Hh{];;Hp8ǹ<"dw4:P\,ۘ!֥z~n../.*KCsrIӉx؝`ך0ݍ>AB̺Ho__~%E23ie{ yT2i#*%O~|ءDDDD/N~ F$"_g4`dc$g`u\PW;i0~8vj꺻fgX]߿gVD¿wŗCD"W սFJg Jd4:a4[[[]9xa䰖 'I3{z/ggf%J94M4mn@E;T/$s)vJi#GW!=' !\!.ݕh2yĵ^xi1ph9Z.a/G2N5r@lnnT ŹBlV|>$Ҳ2>i*Gu]+++o⭵`0)Aas*$"+Ve3~4jFboPJoof{Pf/iG>屣U*U9BMMŠtWXSכ`b%ݨG]M&%"""zX,GcڌN3ԔLf8WJJKW׮!>NjEyFBjѪ9qsdֶZZ[fgS+;0GWӣX߿k=ˎL&7i?J""""""z11!1!1 hvMNR" zNIDDDD'J,^œ+2ܽsX,9|nEey`zT&&&Z-?udHDDDDϖ!sBF*eGۆrȼ  }-2HR!?rdHDDDDϖh4bk^yU~gΞ}@*51>wVkÁ $i{ըըRZp766kjk+++HN&h2--.JZHt/HKJ6$Vfggm6(/UH%mv{]]h󭁁ʪel6Zl5* BFlni7 \*1[,Nے':55P Lbohh]0b4:J֭[[[[i ssM4pzwX]qqqtoFLLDDDDBQѪo8RZΦ&CY\\X$Cj*Fɝ!D$F9gzNPן=wjrbXR3K$0x;-L>q'kjR""""DBB:4ԸaGB;%Ip͡"b1 9nW=Őd$+ʌ2d4EڜxĈЅ\$'^GבЁFyt{ii G&y922< textarea, .wppb-single-ul-templates > textarea { float: left; width: 60%; max-width: 100%; height: 400px; } .update_container_wppb_ul_faceted_settings .row-facet-behaviour, .update_container_wppb_ul_faceted_settings .row-facet-limit, #container_wppb_ul_faceted_settings .row-facet-behaviour, #container_wppb_ul_faceted_settings .row-facet-behaviour, #container_wppb_ul_faceted_settings .row-facet-limit{ display:none; } #container_wppb_ul_faceted_settings .facet_type_checkboxes .row-facet-behaviour, #container_wppb_ul_faceted_settings .facet_type_checkboxes .row-facet-limit, #container_wppb_ul_faceted_settings .update_container_wppb_ul_faceted_settings.facet_checkboxes .row-facet-behaviour, #container_wppb_ul_faceted_settings .update_container_wppb_ul_faceted_settings.facet_checkboxes .row-facet-limit, #container_wppb_ul_faceted_settings .facet_type_select_multiple .row-facet-behaviour, #container_wppb_ul_faceted_settings .facet_type_select_multiple .row-facet-limit, #container_wppb_ul_faceted_settings .update_container_wppb_ul_faceted_settings.facet_select_multiple .row-facet-behaviour, #container_wppb_ul_faceted_settings .update_container_wppb_ul_faceted_settings.facet_select_multiple .row-facet-limit{ display:block; } /* Extra Stuff */ .nowrap { white-space: nowrap; } .wppb-fields-image{ margin-top:60px; } /* Shortcode */ .wppb-shortcode { display: inline-block; font-size: 13px; font-weight: bold; background: #fff !important; padding: 5px 10px; margin-top: 5px; border: 1px solid #e1e1e1; box-shadow: none !important; font-family: 'Arial'; } .wppb-shortcode.textarea { width: 100%; height: 1px; resize: none; } .wppb-shortcode:focus { border-color: #e1e1e1 !important; } .wppb-shortcode-temp { display: inline-block; font-size: 13px; font-weight: bold; padding: 11px; font-family: 'Arial'; } /* Manage Fields page */ .profile-builder_page_manage-fields .metabox-holder .column-1{ /* margin-right:0; */ } #container_wppb_manage_fields li strong{ display:none !important; } #container_wppb_manage_fields li .description strong { display: inline !important; } #container_wppb_manage_fields .added_fields_list li.row-meta-name{ display:list-item !important; } #container_wppb_manage_fields li.row-field-title pre, #container_wppb_manage_fields li.row-meta-name pre{ min-height:10px; } #wppb_manage_fields .ui-sortable label, #container_wppb_manage_fields .ui-sortable label { background: #fff; } #wppb_manage_fields .sortable-handle, #container_wppb_manage_fields .sortable-handle { display: inline-block; width: 16px; height: 16px; background: url('../images/sorting-icon-dots.png') no-repeat center center;; vertical-align: middle; margin-right: 7px; cursor: move; margin-top: -1px; } #container_wppb_manage_fields pre{ display:block; float:left; width:27%; font-family:"Open Sans", Arial, sans-serif; font-size:14px; } #container_wppb_manage_fields pre.wppb-mb-head-required, #container_wppb_manage_fields li.row-required pre{ width:auto; text-align: center; } #container_wppb_manage_fields thead tr{ background:#f1f1f1; } #container_wppb_manage_fields thead tr:hover { background: #f1f1f1; } #container_wppb_manage_fields tr.update_container_wppb_manage_fields:hover{ background:#fff; } #container_wppb_manage_fields tr:hover{ background:#def6ff; } #wppb_manage_fields_info{ display: none; } /* Extra Registration and Edit Profile fields */ #container_wppb_epf_fields li strong, #container_wppb_rf_fields li strong{ display:none !important; } #container_wppb_epf_fields pre, #container_wppb_rf_fields pre{ display:block; font-family:"Open Sans", Arial, sans-serif; font-size:14px; margin-top: 5px; } #container_wppb_epf_fields thead tr, #container_wppb_rf_fields thead tr { background: #f1f1f1; } #container_wppb_epf_fields thead tr:hover, #container_wppb_rf_fields thead tr:hover { background: #f1f1f1; } #container_wppb_epf_fields thead .wppb-delete-all-fields, #container_wppb_rf_fields thead .wppb-delete-all-fields { color: #333; text-decoration: underline; } #container_wppb_epf_fields tbody .wck-delete, #container_wppb_rf_fields tbody .wck-delete { padding: 8px 16px; } #container_wppb_epf_fields tr.update_container_wppb_epf_fields:hover, #container_wppb_rf_fields tr.update_container_wppb_rf_fields:hover{ background:none; } #container_wppb_epf_fields tr:hover, #container_wppb_rf_fields tr:hover{ background:#def6ff; } #container_wppb_epf_fields .wck-content{ content: "" !important; } #wppb_rf_page_settings .row-url, #wppb_rf_page_settings .row-display-messages, .update_container_wppb_rf_page_settings.redirect_ .row-url, .update_container_wppb_rf_page_settings.redirect_ .row-display-messages, .update_container_wppb_rf_page_settings.redirect_no .row-url, .update_container_wppb_rf_page_settings.redirect_no .row-display-messages{ display:none; } #wppb_rf_page_settings.update_container_wppb_rf_page_settings.redirect_yes .row-url, #wppb_rf_page_settings.update_container_wppb_rf_page_settings.redirect_yes .row-display-messages{ display: block; } #wppb_epf_page_settings .row-url, #wppb_epf_page_settings .row-display-messages, .update_container_wppb_epf_page_settings.redirect_ .row-url, .update_container_wppb_epf_page_settings.redirect_ .row-display-messages, .update_container_wppb_epf_page_settings.redirect_no .row-url, .update_container_wppb_epf_page_settings.redirect_no .row-display-messages{ display:none; } #wppb_epf_page_settings.update_container_wppb_epf_page_settings.redirect_yes .row-url, #wppb_epf_page_settings.update_container_wppb_epf_page_settings.redirect_yes .row-display-messages{ display: block; } /* Columns :) */ .wppb-row{ overflow:hidden; } .wppb-3-col > div { float:left; width:28%; margin-right:5%; } .wppb-2-col > div { float:left; width:45%; margin-right:5%; } .wppb-3-col > div:last-child, .wppb-2-col > div:last-child{ margin:0; } .wppb-1-3-col > div { float:left; width:28%; margin-right:5%; } .wppb-1-3-col > div:last-child{ float:right; width: 67%; margin:0; } .wppb-2-1-col > div { float:left; width:67%; margin-right:5%; } .wppb-2-1-col > div:last-child{ float:right; width: 28%; margin:0; } /* Extra Form Styles */ .wppb-text{ min-width: 16.4em; } .wppb-select { min-width:18em; } .wppb-select.wppb-disabled, .wppb-disabled .select2-selection--single, .wppb-disabled .select2-selection--multiple{ background-color: #eee; } .wppb-wrap .form-table th { width: 330px; } .wppb-metabox label{ display:inline-block; min-width:15em; } /* Admin Bar Page */ .wppb-admin-bar label{ margin-right:30px; padding:5px; } /* modules Page */ .wppb-modules label{ margin-right:30px; padding:5px; } /* Metabox Clone. We need this in various places to simulate the css of a normal metabox. */ .wppb-side{ width:300px; float:right; clear:both; } .wppb-metabox h3{ font-size: 14px; line-height: 1.4; margin: 0; padding:8px 12px; cursor:default !important; } .wppb-normal{ margin-right:320px; } .wppb-metabox textarea{ resize:vertical; background-color: #ecf8fd; font-family: Consolas,Monaco,monospace; font-size: 13px; } .wppb-metabox .inline-wrap{ width:280px; float:left; } .wppb-highlight{ background:#333333; background:#222222; background:#fff; padding:20px; } .wppb-userlisting-slider, .wppb-list-users-slider{ display:block; padding:10px; border:1px solid #ccc; font-family: Consolas,Monaco,monospace; font-size: 13px; margin-top:20px; } #wppb_manage_fields .mb-list-entry-fields .field-label{ max-width: 179px; } #container_wppb_epf_fields .row-id, #wppb_epf_fields .row-id, #container_wppb_rf_fields .row-id, #wppb_rf_fields .row-id{ display:none; } .wppb-wrap #serial_number{ font-weight: 600; line-height: 1.3; padding: 20px 10px 20px 0; text-align: left; color: #222222; font-size:14px; } #wppb_profile_builder_pro_serial{ width:460px; padding: 5px; } .wppb-wrap .wppb-serialnumber-descr{ display: block; padding: 0px 0px 0px 95px } .wppb-backend-notice{ display: inline-block; line-height: 16px; padding: 11px; font-size: 14px; text-align: left; margin: 0 0 5px 0; background-color: #fff9e8; border:1px solid #ffba00; border-radius:3px; } /* hide "View post" link from update messages on internal post types */ .post-type-wppb-ul-cpt #message.updated a, .post-type-wppb-rf-cpt #message.updated a, .post-type-wppb-epf-cpt #message.updated a{ display:none; } #wppb_ul_page_settings .row-visible-to-following-roles, .update_container_wppb_ul_page_settings.visible_to_logged_ .row-visible-to-following-roles{ display:none; } #wppb_ul_page_settings.update_container_wppb_ul_page_settings.visible_to_logged_yes .row-visible-to-following-roles{ display: block; } /* Add-Ons page */ .wppb-add-on-user-messages{ display: none; } .wppb-add-on-wrap .plugin-card-bottom:after { display: block; content: ''; clear: both; } .wppb-add-on .spinner { visibility: visible; } .wppb-add-on a:focus { box-shadow: none; } .wppb-add-on img { max-width: 100%; height: auto; } .wppb-add-on .wppb-add-on-title { letter-spacing: -0.7px; margin-bottom: 7px; margin-top: 7px; } .wppb-add-on .wppb-add-on-title a { text-decoration: none; color: inherit; } .wppb-add-on .wppb-add-on-price { font-size: 1.1em; letter-spacing: -0.7px; margin-top: 7px; } .wppb-add-on-compatible span { line-height: 28px; } .wppb-add-on-not-compatible { position: relative; } .wppb-add-on-not-compatible:before { display: block; content: ''; position: absolute; width: 4px; height: 100%; background: #d54e21; top: 0; left: 0; } .wppb-add-on .button { position: relative; } .wppb-add-on .button.wppb-add-on-deactivate { opacity: 0; } .wppb-add-on .spinner { display: block; margin-top: 4px; opacity: 0; } .wppb-add-on-spinner { opacity: 0; position: absolute; top: 50%; left: 50%; margin-top: -10px; margin-left: -10px; display: block; width: 20px; height: 20px; background: url('../images/spinner.gif') no-repeat center; } .wppb-recommended-plugin{ width:49%; margin:0 0 16px 0; } .wppb-recommended-plugin.plugin-card:nth-child(odd){ clear:none; float:right; margin-right: 0; } .wppb-recommended-plugin.plugin-card:nth-child(even){ clear:none; } .wppb-recommended-plugin .wppb-add-on-description{ min-height: 38px; } @media screen and (max-width: 768px){ .wppb-recommended-plugin{ width:100%; } } .wppb-confirmation-success { color: #27ae60; } .wppb-confirmation-error { color: #c0392b; } /* Manage Fields Responsive CSS */ @media screen and ( max-width: 1125px ) { /* Manage Fields Responsive */ #container_wppb_manage_fields th.wck-content pre{ display:none; } #container_wppb_manage_fields li strong{ display: inline-block !important; font-size: 14px; font-family: "Open Sans",Arial,sans-serif; } #container_wppb_manage_fields pre{ display: inline; float:none; width:auto; } #container_wppb_manage_fields li strong{ width:100px !important; } } /* Basic Information Buttons - for Free to Pro upgrade*/ .wppb-button-free { border-radius: 3px; border-style: solid; border-width: 1px; box-sizing: border-box; cursor: pointer; display: inline-block; font-size: 13px; height: 29px; line-height: 26px; margin: 0; padding: 0 10px 1px; text-decoration: none; white-space: nowrap; background: none repeat scroll 0 0 #e14d43; border-color: #b2401b; -webkit-box-shadow: 0 1px 0 #ba281e !important; box-shadow: 0 1px 0 #ba281e !important; color: #fff !important; vertical-align:top; text-shadow: 0 -1px 1px #ba281e,1px 0 1px #ba281e,0 1px 1px #ba281e,-1px 0 1px #ba281e !important; } p .wppb-button-free { vertical-align: baseline; } .wppb-button-free:hover { background: #e14d43; border-color: #ba281e; color: #fff; } /* PMS Compatibility page */ #pms-bottom-install .plugin-card-bottom{ border:none; background: #e86054; color:#fff; } #pms-bottom-install .plugin-card-bottom span{ display: inline-block; margin-top:7px; } #pms-bottom-install .wppb-add-on-download, #pms-bottom-install a{ font-size: 130%; padding: 10px 20px; height: auto; color: #e86054; text-decoration: none; } #pms-bottom-install a:hover{ background: #fff; text-decoration: none; } #pms-bottom-install .wppb-confirmation-success{ color:#FFFFFF; } #wppb_ul_search_settings .wck-checkboxes > div{ display: inline-block; margin-left:7px; } .mb-table-container .wck-state-highlight{ height:45px; } /**************************************************/ /* Extra styling for admin notices /**************************************************/ div.wppb-notice { position: relative; } div.wppb-notice:after { display: block; content: ''; clear: both; } div.wppb-notice.wppb-narrow { max-width: 825px; } div.wppb-notice .notice-dismiss { text-decoration: none; } .wrap div.wppb-admin-notice { margin-bottom: 0; } /**************************************************/ /* Extra styling for select 2 manage fields /**************************************************/ .profile-builder_page_manage-fields select#field{ width: 100%; } /* maybe take this out after a while. we need to keep it because of translatepress but after the tp update it is not required */ .profile-builder_page_manage-fields span.select2-container{ width:100% !important; } .profile-builder_page_manage-fields .select2-selection.select2-selection--single{ outline: 0; } #wppb_select2_overlay{ display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #000; filter:alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5; z-index: 1000; } .profile-builder_page_manage-fields .select2-container{ z-index: 1051; } .profile-builder_page_manage-fields .select2-container--default .select2-selection--single .select2-selection__placeholder{ color: #111; font-size: 15px; } .profile-builder_page_manage-fields .select2-container .select2-selection--single{ height: 38px; } .profile-builder_page_manage-fields .select2-container .select2-selection--single .select2-selection__rendered{ line-height: 38px; } .profile-builder_page_manage-fields .select2-container--default .select2-selection--single .select2-selection__arrow{ height: 38px; } @media screen and ( min-width: 800px ) { .profile-builder_page_manage-fields .select2-results__option[role="group"] { width: 48%; margin: 0 1%; float: left; } .profile-builder_page_manage-fields .select2-container--default .select2-results > .select2-results__options, .profile-builder_page_manage-fields .select2-results{ max-height: 800px; } } @media screen and ( min-width: 1280px ) { .profile-builder_page_manage-fields .select2-results__option[role="group"] { width: 23%; margin: 0 1%; float: left; } .profile-builder_page_manage-fields .select2-container--default .select2-results > .select2-results__options, .profile-builder_page_manage-fields .select2-results{ max-height: 800px; } } .wppb-auto-form-creation{ margin:50px 0 30px; padding:20px; background-color: #fff9e8; border: 1px solid #ffba00; border-radius: 3px; overflow: hidden; } .wppb-auto-form-creation.wppb-forms-created{ background-color: #edffe8; border: 1px solid #46b450; } .wppb-auto-form-creation a.button{ margin-top: 5px; } .wppb-subtabs{ padding:7px 0 8px; float:none; } .wppb-subtabs li{ padding:0 5px; border-right:1px solid #ddd; } .wppb-subtabs li:last-child{ border-right:none; } .wppb-subtabs a{ letter-spacing:0 !important; font-size:14px; } .profile-builder_page_user-email-customizer #poststuff, .profile-builder_page_admin-email-customizer #poststuff{ padding:0; } /* Sortable options */ .wppb_manage_fields_sortables {display: block; border: 1px solid #EEE; margin: 0px 0px 5px 32px; padding: 5px;} .wppb_manage_fields_sortables:hover {cursor: pointer; background-color: #EEE;} .wppb_manage_fields_sortables label {background: transparent !important;} .wppb_manage_fields_sortables > .dashicons {color: #f4f4f4; position: absolute; margin-left: -32px;} .wppb_manage_fields_sortables:hover > .dashicons {color: #000;} .wppb_selector_for_sortable_checkbox {margin-left: 32px; width: calc(100% - 32px);} assets/css/serial-notice.css000066600000002100152141651100012077 0ustar00.wppb-serial-wrap{ margin:40px 0; } .wppb-dismiss-notification{ position:absolute; right:0px; top:50%; margin-top:-7px; } .pms-cross-promo .wppb-dismiss-notification{ right: 10px; margin-top:-10px; } div.wppb-serial-notification p{ padding-right: 50px; position:relative; } .pms-cross-promo{ position: relative; background-color: #fff; border-left: 4px solid #d54e21; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); display: block; font-size: 14px; line-height: 19px; margin: 35px 20px 0 2px; padding: 11px 15px; text-align: left; color: #fff; background: #5693d3; } .pms-cross-promo a{ padding: 0 3px; color:#fff; border-radius: 2px; } .pms-cross-promo a:hover{ background: #fff; color: #5693d3; text-decoration: none; } /* hide menu items */ .wp-submenu a[href="admin.php?page=profile-builder-admin-bar-settings"], .wp-submenu a[href="admin.php?page=profile-builder-content_restriction"], .wp-submenu a[href="admin.php?page=admin-email-customizer"], .wp-submenu a[href="admin.php?page=user-email-customizer"]{ display:none !important; }assets/css/select2/select2.min.css000066600000035534152141651100013046 0ustar00.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb} assets/css/style-front-end.css000066600000046325152141651100012414 0ustar00/* Register & Edit Profile Forms*/ /*-------------------------------------------------------------- >>> TABLE OF CONTENTS: ---------------------------------------------------------------- 1.0 - Reset 2.0 - Forms 3.0 - Alignments 4.0 - Errors & Notices 5.0 - User Listing 6.0 - Media Queries --------------------------------------------------------------*/ /*-------------------------------------------------------------- 1.0 Reset --------------------------------------------------------------*/ .wppb-user-forms, .wppb-user-forms *{ -webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */ -moz-box-sizing: border-box !important; /* Firefox, other Gecko */ box-sizing: border-box !important; /* Opera/IE 8+ */ } /*-------------------------------------------------------------- 2.0 Forms --------------------------------------------------------------*/ .wppb-user-forms input:not([type="button"]):not([type="reset"]):not([type="submit"]), .wppb-user-forms select, .wppb-user-forms textarea{ font-size: 100%; /* Corrects font size not being inherited in all browsers */ margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */ vertical-align: baseline; /* Improves appearance and consistency in all browsers */ } .wppb-user-forms input[type="checkbox"], .wppb-user-forms input[type="radio"] { padding: 0; /* Addresses excess padding in IE8/9 */ } .wppb-user-forms input[type="search"] { -webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */ -webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */ -moz-box-sizing: content-box; box-sizing: content-box; } .wppb-user-forms input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */ -webkit-appearance: none; } .wppb-user-forms button::-moz-focus-inner, .wppb-user-forms input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */ border: 0; padding: 0; } .wppb-user-forms input[type="text"], .wppb-user-forms input[type="number"], .wppb-user-forms input[type="email"], .wppb-user-forms input[type="url"], .wppb-user-forms input[type="password"], .wppb-user-forms input[type="search"], .wppb-user-forms textarea{ color: #666; border: 1px solid #ccc; border-radius: 3px; } .wppb-user-forms input[type="text"]:focus, .wppb-user-forms input[type="number"]:focus, .wppb-user-forms input[type="email"]:focus, .wppb-user-forms input[type="url"]:focus, .wppb-user-forms input[type="password"]:focus, .wppb-user-forms input[type="search"]:focus, .wppb-user-forms textarea:focus { color: #111; } .wppb-user-forms input[type="text"], .wppb-user-forms input[type="number"], .wppb-user-forms input[type="email"], .wppb-user-forms input[type="url"], .wppb-user-forms input[type="password"], .wppb-user-forms input[type="search"] { padding: 3px; } .wppb-user-forms textarea { overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */ padding-left: 3px; vertical-align: top; /* Improves readability and alignment in all browsers */ width: 100%; } .wppb-user-forms .wppb-wysiwyg .wp-editor-wrap { /* properly align wysiwyg editor among form fields */ float:left; width:69.9%; } .wppb-user-forms .wppb-wysiwyg button:hover{ /* wysiwyg - overwrite the theme inherited background color on hover*/ background: none; } .wppb-user-forms .wppb-wysiwyg div.mce-tinymce.mce-panel{ /*Display the borders for the TinyMCE editor - Visual tab*/ border: 1px solid #ccc !important; color: #666 !important; } .wppb-user-forms .wppb-wysiwyg div.mce-panel.mce-first{ border-width: 0 0 1px 0 !important; } .wppb-user-forms .wppb-wysiwyg div.mce-panel.mce-last{ border-width: 1px 0 !important; } .wppb-user-forms .wppb-wysiwyg .quicktags-toolbar { /*Display the borders for the TinyMCE editor - Text tab*/ border: 1px solid #dedede; border-bottom: 0; } #wp-link label input[type="text"] { /*Fix the looks of the Add Link window for TinyMCE editor*/ padding: 0px; } #wppb-search-fields{ min-width: 250px; float:left; margin-right:20px; } .wppb-user-forms .wppb-search-button{ margin-right:10px; padding:7px 20px; line-height: 24px; } .wppb-search-users-wrap{ margin-bottom: 20px; } .wppb-user-forms .extra_field_heading { margin-bottom: 0; } .wppb-gdpr-delete-button .wppb-delete-account { width: 110px; } /*-------------------------------------------------------------- 3.0 Alignments --------------------------------------------------------------*/ .wppb-user-forms ul{ max-width:900px; list-style:none; margin-left:0; margin-right:0; padding-left:0; padding-right:0; } .wppb-user-forms ul li{ list-style:none; } #wppb-login-wrap p, #select_user_to_edit_form p{ overflow:hidden; margin:0; padding-bottom:14px; } .wppb-user-forms ul li{ margin:0; padding-bottom:14px; } .wppb-user-forms ul li:after{ content: ""; clear: both; display: block; } .wppb-user-forms .wppb-input-hidden { padding-bottom: 0; } .wppb-user-forms.wppb-user-role-administrator .wppb-input-hidden { padding-bottom: 14px; } .wppb-user-forms .wppb-form-field > ul { margin-left: 0; } .wppb-form-field label, #wppb-login-wrap .login-username label, #wppb-login-wrap .login-password label{ width:30%; float:left; min-height:1px; } .wppb-form-field input, .wppb-form-field input[type="text"], .wppb-form-field input[type="number"], .wppb-form-field input[type="email"], .wppb-form-field input[type="url"], .wppb-form-field input[type="password"], .wppb-form-field input[type="search"], .wppb-form-field select, .wppb-form-field textarea, .wppb-checkboxes, .wppb-radios, #wppb-login-wrap .login-username input, #wppb-login-wrap .login-password input{ width:69.9%; float:left; } .wppb-form-field.wppb-timepicker select { width: auto; margin-right: 5px; } .wppb-user-forms .wppb-wysiwyg .wp-editor-wrap .wp-editor-tabs *{ box-sizing: content-box !important; } .wppb-user-forms .wp-editor-wrap input { float: none; width: auto; } input#send_credentials_via_email{ float:none; width:auto; margin-right:10px } .wppb-send-credentials-checkbox label{ width:auto; } .wppb-form-field > span{ display:block; clear:both; margin-left:30%; font-size:80%; font-style:italic; } .wppb-form-field > span.custom_field_html { font-style: normal; font-size: 100%; } .wppb-form-field > span.select2-container { font-style: normal; font-size: 100%; clear:none; } .wppb-repeater .wppb-select-cpt span.select2-container{ width:auto !important; } .wppb-form-field.wppb-timepicker > span.wppb-timepicker-separator { display: inline-block; float: left; clear: none; margin-left: 0; margin-right: 5px; font-size: 100%; font-style: normal; } .wppb_upload_button{ display:inline-block; } .wppb-user-forms .wppb-checkboxes li, .wppb-user-forms .wppb-radios li{ display:inline-block; padding:0 20px 0 0; } .wppb-user-forms .wppb-checkboxes li.wppb-hidden{ padding: 0; } .wppb-form-field .wppb-checkboxes label, .wppb-form-field .wppb-radios label{ float:none; min-width:0; padding-left:5px; width:auto; display:inline-block; } .wppb-checkbox-terms-and-conditions input, .wppb-checkboxes li input, .wppb-radios li input{ min-width:0; float:none; width:auto; } .wppb-edit-user .wppb-checkbox-terms-and-conditions { display:none; } .wppb-form-field.wppb-heading span, .wppb-default-about-yourself-heading span, .wppb-default-contact-info-heading span, .wppb-default-name-heading span, .wppb-checkbox-terms-and-conditions span{ margin-left:0; } .wppb-checkbox-terms-and-conditions label { width: 100%; } .wppb-form-field.wppb-checkbox-terms-and-conditions input[type="checkbox"].custom_field_toa { float:none; width:auto; margin-right:10px } .wppb-recaptcha-element{ display: inline-block; } .wppb-recaptcha-element.wppb-invisible-recaptcha { display: block !important; } .wppb-recaptcha-element iframe{ margin-bottom: 0; } .wppb-form-field input.wppb-map-search-box { position: absolute; top: 10px !important; height: 34px; width: 50%; min-width: 250px; background: #fff; border: 0; border-radius: 1px; padding: 0 10px; box-shadow: 0 1px 1px 0 #c1c1c1; font-family: 'Roboto', sans-serif; } .wppb-create-new-site{ width: 100%; } input#wppb_create_new_site_checkbox{ width: auto; margin-right: 10px; float: none; } label[for=wppb_create_new_site_checkbox]{ width:100%; } label[for=blog-privacy]{ width:100%; } /* GDPR checkbox */ .wppb-gdpr-checkbox.wppb-form-field label{ width:100%; float:none; } .wppb-gdpr-checkbox.wppb-form-field #user_consent_gdpr{ float:none; width:auto; margin:0 10px 0 0; } /*-------------------------------------------------------------- 4.0 Errors & Notices --------------------------------------------------------------*/ .wppb-error, .wppb-warning { padding: 6px 9px; margin: 0 auto 25px; display: block; width: 100%; box-sizing: border-box; background: #ffebe8; border: 1px solid #C00; } .wppb-error, .wppb-warning{ color:#222222 !important; } .wppb-error a, .wppb-warning a{ color:#007acc !important; } .admin-bar #wppb_form_general_message{ padding-top:32px; } .wppb-error a:hover, .wppb-warning a:hover{ color:#007acc !important; text-decoration: underline; } .wppb-required{ color: red; } .wppb-required, .wppb-checkbox-terms-and-conditions span.wppb-required{ margin-left:5px; } .wppb-success { padding: 6px 9px; margin: 0 auto 25px; display: block; width: 100%; box-sizing: border-box; background: #e7f7d3; border: 1px solid #6c3; } .wppb-register-user .wppb-field-error, .wppb-edit-user .wppb-field-error, #wppb-recover-password .wppb-field-error{ background-color: #FFDFDF; border: 1px dotted #C89797; margin-bottom: 6px !important; padding: 6px !important; } .wppb-field-error > input, .wppb-field-error > select, .wppb-field-error > textarea, .wppb-field-error > label{ margin-bottom: 10px; } .wppb-field-error img{ box-shadow: none; -webkit-box-shadow:none; border:none; border-radius:0px; vertical-align: middle; margin-top: -3px; padding-left:5px; width: auto; height: auto; } .wppb-form-field > span.wppb-form-error{ margin-top:10px; padding-top: 5px; border-top:1px dotted #c89797; font-size:100%; margin-left: 0; } /* Remove global Blog Details Field error */ #wppb-register-user .wppb-default-blog-details.wppb-field-error{ background-color: transparent !important; border: 0px !important; } .wppb-default-blog-details > span.wppb-form-error{ display:none; } .wppb-blog-details-heading span { margin-left: 0; } /*-------------------------------------------------------------- 5.0 User Listing --------------------------------------------------------------*/ .wppb-table *{ -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } .wppb-table{ -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; border-spacing: 0.5rem; border-collapse: collapse; width: 100%; } .wppb-table th{ background: #f4f4f4; padding: 7px; border:1px solid #e1e1e1; text-align: left; } .wppb-table thead tr:hover{ background: none; } .wppb-table .wppb-sorting .wppb-sorting-default { display: inline-block; width: 16px; height: 16px; background: url('../images/sorting-default.png') no-repeat center center; vertical-align: middle; } .wppb-table .wppb-sorting .wppb-sorting-ascending { background-image: url('../images/sorting-ascending.png'); } .wppb-table .wppb-sorting .wppb-sorting-descending { background-image: url('../images/sorting-descending.png'); } .wppb-table tr:hover{ background: #f1fcff; } .wppb-table td{ padding: 7px; border:1px solid #e1e1e1; } .wppb-table .wppb-posts, .wppb-table .wppb-moreinfo{ text-align: center; } .wppb-avatar img { max-width: none; } ul.wppb-profile{ list-style-type: none; margin-left: 0; margin-right: 0; padding-left:0; padding-right: 0; } ul.wppb-profile li{ margin-left: 0; margin-right: 0; overflow: hidden; } ul.wppb-profile li label{ display: block; width:30%; float:left; min-height:1px; font-weight: bold; } ul.wppb-profile li span{ display: block; width:69.9%; float:left; } ul.wppb-profile li h3, ul.wppb-profile li h3:first-child{ margin:20px 0; padding-top:20px; border-top:1px solid #d2d2d2; } ul.wppb-faceted-list{ list-style: none; margin:0 0 20px; } ul.wppb-faceted-list:after{ visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; } ul.wppb-faceted-list > li{ float:left; margin-right: 15px; max-width: 300px; } ul.wppb-faceted-list > li:first-child{ float:none; clear:both; } .wppb-userlisting-container .wppb-faceted-list li h5{ margin-top: 20px; margin-bottom: 5px; } ul.wppb-faceted-list label > *{ vertical-align: middle; } ul.wppb-faceted-list input[type="checkbox"]{ margin-right: 5px; } .wppb-userlisting-container.wppb-spinner{ position:relative; opacity: 0.5 } .wppb-userlisting-container.wppb-spinner:after{ content: ''; position: absolute; top: 50%; left: 50%; margin-top: -16px; margin-left: -16px; display: block; width: 32px; height: 32px; /*background: url('../images/ajax-loader.gif') no-repeat center;*/ z-index: 1000; } ul.wppb-faceted-list .hide-this{ display:none; } #wppb-remove-facets-container{ list-style: none; margin: 0; } .wppb-remove-facet:before, .wppb-remove-all-facets:before { content: "x"; display: inline-block; border-right: 1px dotted #D3CCC9; border-right: 1px dotted #6F6F6F; padding-right: 5px; margin-right: 5px; } .wppb-userlisting-container .wppb-ul-range-values{ padding: 5px 0; } .wppb-userlisting-container .wppb-facet-select-multiple{ height:auto; } .wppb-userlisting-container:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; } .wppb-float-left{ float:left; } .wppb-float-right{ float:right; } .wppb-facet-float-left{ float:left; max-width:300px; } .wppb-facet-float-right{ float:right; max-width:300px; } li.wppb-facet-search{ position: relative; } .wppb-facet-search-wrap label { display: inline-block; position: relative; padding: 0 !important; margin: 0 !important; } .wppb-facet-search{ width: 75% !important; margin-right: 5px !important; } .wppb-facet-search .screen-reader-text{ display: none; } .wppb-facet-search, .wppb-search-submit { box-sizing: border-box; display: inline-block !important; vertical-align: middle; } .wppb-search-submit{ display: inline-block; width: 20%; height: 100%; background: #4F5963; position: absolute; right: 0; cursor: pointer; border: 1px solid #444D57; border-radius: 3px; padding: 0 !important; margin: 0 !important; } .wppb-search-submit:hover { background: #fff; color: #4F5963; } .wppb-search-submit::before{ content: "\26B2"; display: inline-block; color: #fff; font-size: 120%; -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .wppb-search-submit:hover::before{ color: #4F5963; } @media screen and ( max-width: 720px ) { .wppb-table { border: 0; } .wppb-table thead { display: none } .wppb-table tr { display: block; margin-bottom: 30px; } .wppb-table td { display: block; text-align: right; border-bottom: 0; } .wppb-table td:last-of-type { border-bottom: 1px solid #e1e1e1; } .wppb-table .wppb-posts, .wppb-table .wppb-moreinfo{ text-align: right; } .wppb-table td:before { content: attr(data-label); float: left; } .wppb-table td:after { content: ''; display: block; clear: both; } } /*-------------------------------------------------------------- 6.0 Media Queries --------------------------------------------------------------*/ @media screen and (max-width: 400px) { .wppb-form-field label, #wppb-login-wrap .login-username label, #wppb-login-wrap .login-password label, ul.wppb-profile li label{ width:100%; display:block; float:none; } .wppb-form-field input, .wppb-form-field select, .wppb-form-field textarea, .wppb-checkboxes, .wppb-radios, #wppb-login-wrap .login-username input, #wppb-login-wrap .login-password input, ul.wppb-profile li span{ width:100%; float:left; } .wppb-form-field > span{ margin-left:0; } .wppb-checkboxes li label, .wppb-radios li label{ display:inline; } .wppb-form-field .wppb-avatar-nofile, .wppb-form-field .wppb-avatar-file, .wppb-form-field .wppb-upload-nofile, .wppb-form-field .wppb-upload-file{ margin-left:0; } } /*-------------------------------------------------------------- 7.0 Password Strength --------------------------------------------------------------*/ #pass-strength-result { background-color: #eee; border: 1px solid #ddd; display: none; float: left; margin: 13px 5px 5px 30%; padding: 3px 5px; text-align: center; width: 200px; height:28px; } #pass-strength-result.short { background-color: #ffa0a0; border-color: #f04040; } #pass-strength-result.bad { background-color: #ffb78c; border-color: #ff853c; } #pass-strength-result.good { background-color: #ffec8b; border-color: #fc0; } #pass-strength-result.strong { background-color: #c3ff88; border-color: #8dff1c; } /**************************************************/ /* Profile Builder Subscription Plans Field /**************************************************/ .wppb-form-field.wppb-subscription-plans label { width: 100%; float: none; } .wppb-form-field.wppb-subscription-plans input { display: inline-block; width: auto; float: none; margin-right: 10px !important; } .wppb-form-field.wppb-subscription-plans span.description { display: block; font-size: 100%; font-style: italic; margin-left: 0; margin-bottom: 1.5em; } /**************************************************/ /* This is very weird: if in the css there is a rule on table of border-collapse:collapse; then on FFox and Edge the Media upload won't open /**************************************************/ .wppb-user-forms table{ border-collapse:separate; } /**************************************************/ /* Private Website CSS /**************************************************/ .wppb-private-website.wppb-private-website-hide-menus .main-navigation{ display:none; } /* Map markers info */ .marker-content-info {position: absolute; top: -400px; left: -400px; display: none;} .wppb-map-container .marker-content {min-width: 320px; max-width: 100%;} .wppb-map-container .marker-content .marker-info-avatar_or_gravatar {float: left; margin-right: 10px;} assets/js/jquery-manage-fields-live-change.js000066600000115147152141651100015222 0ustar00var fields = { 'Default - Name (Heading)': { 'show_rows' : [ '.row-field-title', '.row-description', ], 'properties': { 'meta_name_value' : '' } }, 'Default - Contact Info (Heading)': { 'show_rows' : [ '.row-field-title', '.row-description', ], 'properties': { 'meta_name_value' : '' } }, 'Default - About Yourself (Heading)': { 'show_rows' : [ '.row-field-title', '.row-description', ], 'properties': { 'meta_name_value' : '' } }, 'Default - Username': { 'show_rows' : [ '.row-field-title', '.row-description', '.row-default-value', '.row-required' ], 'properties': { 'meta_name_value' : '' }, 'required' : [ true ] }, 'Default - First Name': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-value', '.row-required' ], 'properties': { 'meta_name_value' : 'first_name' } }, 'Default - Last Name': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-value', '.row-required' ], 'properties': { 'meta_name_value' : 'last_name' } }, 'Default - Nickname': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-value', '.row-required' ], 'properties': { 'meta_name_value' : 'nickname' }, 'required' : [ true ] }, 'Default - E-mail': { 'show_rows' : [ '.row-field-title', '.row-description', '.row-default-value', '.row-required' ], 'properties': { 'meta_name_value' : '' }, 'required' : [ true ] }, 'Default - Website': { 'show_rows' : [ '.row-field-title', '.row-description', '.row-default-value', '.row-required' ], 'properties': { 'meta_name_value' : '' } }, 'Default - AIM': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-value', '.row-required' ], 'properties': { 'meta_name_value' : 'aim' } }, 'Default - Yahoo IM': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-value', '.row-required' ], 'properties': { 'meta_name_value' : 'yim' } }, 'Default - Jabber / Google Talk': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-value', '.row-required' ], 'properties': { 'meta_name_value' : 'jabber' } }, 'Default - Password': { 'show_rows' : [ '.row-field-title', '.row-description', '.row-required' ], 'properties': { 'meta_name_value' : '' }, 'required' : [ true ] }, 'Default - Repeat Password': { 'show_rows' : [ '.row-field-title', '.row-description', '.row-required' ], 'properties': { 'meta_name_value' : '' }, 'required' : [ true ] }, 'Default - Biographical Info': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-row-count', '.row-default-content', '.row-required' ], 'properties': { 'meta_name_value' : 'description' } }, 'Default - Display name publicly as': { 'show_rows' : [ '.row-field-title', '.row-description', '.row-default-value', '.row-required' ], 'properties': { 'meta_name_value' : '' } }, 'Default - Blog Details': { 'show_rows' : [ '.row-field-title', '.row-description' ], 'properties': { 'meta_name_value' : '' } }, 'GDPR Checkbox': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-required', '.row-overwrite-existing' ], 'properties': { 'meta_name_value' : 'user_consent_gdpr', 'field_title' : wppb_fields_strings.gdpr_title, 'description' : wppb_fields_strings.gdpr_description }, 'required' : [ true ] }, 'GDPR Delete Button': { 'show_rows' : [ '.row-field-title', '.row-description', ], 'properties': { 'meta_name_value' : '' } }, 'Heading': { 'show_rows' : [ '.row-field-title', '.row-description', '.row-heading-tag' ], 'properties': { 'meta_name_value' : '' } }, 'Input': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-value', '.row-required', '.row-overwrite-existing' ] }, 'Email': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-value', '.row-required', '.row-overwrite-existing' ] }, 'URL': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-value', '.row-required', '.row-overwrite-existing' ] }, 'Number': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-value', '.row-min-number-value', '.row-max-number-value', '.row-number-step-value', '.row-required', '.row-overwrite-existing' ] }, 'Input (Hidden)': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-value', '.row-overwrite-existing' ] }, 'Textarea': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-content', '.row-required', '.row-row-count', '.row-overwrite-existing' ] }, 'WYSIWYG': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-content', '.row-required', '.row-overwrite-existing' ] }, 'Phone': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-phone-format', '.row-required', '.row-overwrite-existing' ] }, 'Select': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-option', '.row-required', '.row-overwrite-existing', '.row-options', '.row-labels' ] }, 'Select (Multiple)': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-options', '.row-required', '.row-overwrite-existing', '.row-options', '.row-labels' ] }, 'Select (Country)': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-option-country', '.row-required', '.row-overwrite-existing' ] }, 'Select (Currency)': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-show-currency-symbol', '.row-default-option-currency', '.row-required', '.row-overwrite-existing' ] }, 'Select (Timezone)': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-option-timezone', '.row-required', '.row-overwrite-existing' ] }, 'Select (CPT)': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-option', '.row-cpt', '.row-required', '.row-overwrite-existing' ] }, 'Checkbox': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-options', '.row-required', '.row-overwrite-existing', '.row-options', '.row-labels' ] }, 'Checkbox (Terms and Conditions)': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-required', '.row-overwrite-existing' ], 'required' : [ true ] }, 'Radio': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-option', '.row-required', '.row-overwrite-existing', '.row-options', '.row-labels' ] }, 'Upload': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-allowed-extensions', '.row-required', '.row-allowed-upload-extensions' ] }, 'Avatar': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-allowed-image-extensions', '.row-avatar-size', '.row-required', '.row-overwrite-existing' ] }, 'Datepicker': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-default-value', '.row-required', '.row-date-format', '.row-overwrite-existing' ] }, 'Timepicker': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-required', '.row-time-format', '.row-overwrite-existing' ] }, 'Colorpicker': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-required', '.row-overwrite-existing' ] }, 'Validation': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-validation-possible-values', '.row-custom-error-message', '.row-required' ], 'required' : [ true ] }, 'reCAPTCHA': { 'show_rows' : [ '.row-field-title', '.row-description', '.row-recaptcha-type', '.row-public-key', '.row-private-key', '.row-captcha-pb-forms', '.row-captcha-wp-forms', '.row-required' ], 'required' : [ true ], 'properties': { 'meta_name_value' : '' } }, 'Select (User Role)': { 'show_rows' : [ '.row-field-title', '.row-description', '.row-user-roles', '.row-user-roles-on-edit-profile', '.row-required' ], 'properties': { 'meta_name_value' : '' } }, 'Map': { 'show_rows' : [ '.row-field-title', '.row-meta-name', '.row-description', '.row-map-api-key', '.row-map-default-lat', '.row-map-default-lng', '.row-map-default-zoom', '.row-map-height', '.row-map-pins-load-type', '.row-map-pagination-number', '.row-map-bubble-fields', '.row-required' ] }, 'HTML': { 'show_rows' : [ '.row-field-title', '.row-description', '.row-html-content' ], 'properties': { 'meta_name_value' : '' } } } var fields_to_show = [ '.row-field-title', '.row-field', '.row-meta-name', '.row-required' ] function wppb_hide_properties_for_already_added_fields( container_name ){ jQuery( container_name + ' tr:not(.update_container_wppb_manage_fields)' ).each(function() { field = jQuery('.row-field pre', this).text(); jQuery( 'li', this ).each(function() { var class_name = ''; class_name = jQuery(this).attr('class'); jQuery(this).hide(); if ( ( field in fields ) ){ var to_show = fields[field]['show_rows']; for (var key in to_show) { if ('.'+class_name == fields_to_show[key]){ jQuery(this).show(); } } } }); }); /* hide the delete button for username,password and email fields */ jQuery( container_name + ' ' + '.element_type_default-e-mail .mbdelete,' + ' ' + container_name + ' ' + '.element_type_default-password .mbdelete,' + ' ' + container_name + ' ' + '.element_type_default-username .mbdelete' ).hide(); // PB specific line } function wppb_hide_all ( container_name ){ jQuery( container_name + ' ' + '.mb-list-entry-fields > li' ).each(function() { if ( !( ( jQuery(this).hasClass('row-field') ) || ( jQuery(this).children().hasClass('button-primary') ) ) ){ jQuery(this).hide(); } }); jQuery( container_name + ' ' + '.mb-list-entry-fields .button-primary' ).attr( 'disabled', true ); jQuery( container_name + ' ' + '.element_type_default-e-mail .mbdelete,' + ' ' + container_name + ' ' + '.element_type_default-password .mbdelete,' + ' ' + container_name + ' ' + '.element_type_default-username .mbdelete' ).hide(); // PB specific line jQuery( container_name + ' ' + '.element_type_default-e-mail #field' + ', ' + container_name + ' ' + '.element_type_default-password #field' + ', ' + container_name + ' ' + '.element_type_default-username #field' + ', ' + container_name + ' ' + '.element_type_default-e-mail #required' + ', ' + container_name + ' ' + '.element_type_default-password #required,' + container_name + ' ' + '.element_type_default-username #required,' + container_name + ' ' + '.element_type_checkbox-terms-and-conditions #required,' + container_name + ' ' + '.element_type_recaptcha #required,' + container_name + ' ' + '.element_type_woocommerce-customer-billing-address #field, ' + container_name + ' ' + '.element_type_woocommerce-customer-shipping-address #field').attr( 'disabled', true ); // PB specific line } function wppb_disable_add_entry_button( container_name ){ jQuery( container_name + ' ' + '.mb-list-entry-fields .button-primary' ).each( function(){ //jQuery(this).data('myclick', this.onclick ); this.onclick = function(event) { if ( jQuery(this).attr( 'disabled' ) ) { return false; } /* changed this in version 2.5.0 because the commented line generated stack exceeded error when multiple fields were opened with edit */ if ( typeof( event.currentTarget ) == 'undefined' ){ // Repeater field triggered the click event of the "Add Field" / "Save changes" buttons, so the onclick attribute is in the target, not currentTarget eval(event.target.getAttribute('onclick')); }else { // normal Manage Fields Add Field button press eval(event.currentTarget.getAttribute('onclick')); } //jQuery(this).data('myclick').call(this, event || window.event); }; }); } function wppb_edit_form_properties( container_name, element_id ){ wppb_hide_all ( container_name ); wppb_disable_add_entry_button ( container_name ); field = jQuery( container_name + ' #' + element_id + ' ' + '#field' ).val(); if ( ( field in fields ) ){ var to_show = fields[jQuery.trim(field)]['show_rows']; for (var key in to_show) jQuery( container_name + ' #' + element_id + ' ' + to_show[key] ).show(); var properties = fields[ jQuery.trim(field) ]['properties']; if( typeof properties !== 'undefined' && properties ) { for( var key in properties ) { if( typeof properties['meta_name_value'] !== 'undefined' ) { jQuery( container_name + ' ' + '#meta-name').attr( 'readonly', true ); } } } jQuery( container_name + ' ' + '.mb-list-entry-fields .button-primary' ).removeAttr( 'disabled' ); //Handle user role sorting wppb_handle_user_role_field( container_name ); } } function wppb_display_needed_fields( index, container_name, current_field_select ){ var show_rows = fields[jQuery.trim(index)]['show_rows']; for (var key in show_rows) { jQuery( show_rows[key], jQuery( current_field_select ).parents( '.mb-list-entry-fields' ) ).show(); } var properties = fields[jQuery.trim(index)]['properties']; if ( ( ( typeof properties !== 'undefined' ) && ( properties ) ) ) { //the extra (second) condition is a particular case since only the username is defined in our global array that has no meta-name for (var key in properties) { if ( ( typeof properties['meta_name_value'] !== 'undefined' ) ){ jQuery( container_name + ' ' + '#meta-name' ).val( properties['meta_name_value'] ); jQuery( container_name + ' ' + '#meta-name' ).attr( 'readonly', true ); } if ( ( typeof properties['field_title'] !== 'undefined' ) ){ jQuery( container_name + ' ' + '#field-title' ).val( properties['field_title'] ); } if ( ( typeof properties['description'] !== 'undefined' ) ){ jQuery( container_name + ' ' + '#description' ).val( properties['description'] ); } } }else{ /* meta value when editing a field shouldn't change so we take it from the current entered value which is displayed above the edit form */ if( jQuery( current_field_select).parents('.update_container_wppb_manage_fields').length != 0 ){ meta_value = jQuery( '.row-meta-name pre', jQuery( current_field_select).parents( '.update_container_wppb_manage_fields' ).prev() ).text(); } /* for the add form it should change */ else{ // Repeater fields have different meta name prefixes, stored in the GET parameter 'wppb_field_metaname_prefix'. var get_parameter_prefix = wppb_get_parameter_by_name( 'wppb_field_metaname_prefix' ); var field_metaname_prefix = ( get_parameter_prefix == null ) ? 'custom_field' : get_parameter_prefix; numbers = new Array(); jQuery( '#container_wppb_manage_fields .row-meta-name pre').each(function(){ meta_name = jQuery(this).text(); if( meta_name.indexOf( field_metaname_prefix ) !== -1 ){ var meta_name = meta_name.replace(field_metaname_prefix, '' ); /* we should have an underscore present in custom_field_# so remove it */ meta_name = meta_name.replace('_', '' ); if( isNaN( meta_name ) ){ meta_name = Math.floor((Math.random() * 200) + 100); } numbers.push( parseInt(meta_name) ); } }); if( numbers.length > 0 ){ numbers.sort( function(a, b){return a-b} ); numbers.reverse(); meta_number = parseInt(numbers[0])+1; } else meta_number = 1; meta_value = field_metaname_prefix + '_' + meta_number; } jQuery( container_name + ' ' + '#meta-name' ).val( meta_value ); jQuery( container_name + ' ' + '#meta-name' ).attr( 'readonly', false ); } //Handle user role sorting wppb_handle_user_role_field( container_name ); var set_required = fields[jQuery.trim(index)]['required']; if ( ( typeof set_required !== 'undefined' ) && ( set_required ) ){ jQuery( container_name + ' ' + '#required' ).val( 'Yes' ); jQuery( container_name + ' ' + '#required' ).attr( 'disabled', true ); }else{ jQuery( container_name + ' ' + '#required' ).val( 'No' ); jQuery( container_name + ' ' + '#required' ).attr( 'disabled', false ); } jQuery( container_name + ' ' + '.mb-list-entry-fields .button-primary' ).removeAttr( 'disabled' ); } function wppb_get_parameter_by_name(name, url) { if (!url) url = window.location.href; name = name.replace(/[\[\]]/g, "\\$&"); var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"), results = regex.exec(url); if (!results) return null; if (!results[2]) return null; return decodeURIComponent(results[2].replace(/\+/g, " ")); } /* * Function that handles the sorting of the user roles from the Select (User Role) * extra field * */ function wppb_handle_user_role_field( container_name ) { jQuery( container_name + ' ' + '.row-user-roles .wck-checkboxes').sortable({ //Assign a custom handle for the drag and drop handle: '.sortable-handle', create: function( event, ui ) { //Add the custom handle for drag and drop jQuery(this).find('div').each( function() { jQuery(this).prepend(''); }); $sortOrderInput = jQuery(this).parents('.row-user-roles').siblings('.row-user-roles-sort-order').find('input[type=text]'); if( $sortOrderInput.val() == '' ) { jQuery(this).find('input[type=checkbox]').each( function() { $sortOrderInput.val( $sortOrderInput.val() + ', ' + jQuery(this).val() ); }); } else { sortOrderElements = $sortOrderInput.val().split(', '); sortOrderElements.shift(); for( var i=0; i < sortOrderElements.length; i++ ) { jQuery( container_name + ' ' + '.row-user-roles .wck-checkboxes').append( jQuery( container_name + ' ' + '.row-user-roles .wck-checkboxes input[value="' + sortOrderElements[i] + '"]').parent().parent().get(0) ); } } }, update: function( event, ui ) { $sortOrderInput = ui.item.parents('.row-user-roles').siblings('.row-user-roles-sort-order').find('input[type=text]'); $sortOrderInput.val(''); ui.item.parent().find('input[type=checkbox]').each( function() { $sortOrderInput.val( $sortOrderInput.val() + ', ' + jQuery(this).val() ); }); } }); } function wppb_initialize_live_select( container_name ){ wppb_hide_all( container_name ); jQuery(document).on( 'change', container_name + ' ' + '.mb-list-entry-fields #field', function () { field = jQuery(this).val(); if ( field != ''){ wppb_hide_all( container_name ); wppb_display_needed_fields( field, container_name, this ); }else{ wppb_hide_all( container_name ); } }); } function wppb_enable_select2(container_name){ // Select2 initialization on manage fields. jQuery( container_name + ' #field').select2({ placeholder: 'Select an option', allowClear: true }) var $eventSelect = jQuery( container_name + ' #field'); $eventSelect.on("select2:open", function (e) { jQuery('#wppb_select2_overlay').fadeIn('100') }); $eventSelect.on("select2:close", function (e) { jQuery('#wppb_select2_overlay').hide(); }); } jQuery(function(){ wppb_initialize_live_select ( '#wppb_manage_fields' ); wppb_initialize_live_select ( '#container_wppb_manage_fields' ); wppb_hide_properties_for_already_added_fields( '#container_wppb_manage_fields' ); wppb_disable_add_entry_button ( '#wppb_manage_fields' ); var overlay = jQuery('
    ') overlay.appendTo(document.body) wppb_enable_select2('#wppb_manage_fields'); }); // Custom functionality for sorting options (see the Map POIs attributes). (function ($) { window.SortSelCheck = { // Initiate the events and triggers. init: function () { SortSelCheck.assess(); SortSelCheck.listen(); }, // Listen for events. listen: function () { // Listen for the new element setup and trigger the expected custom event. $('.wck-add-form').on('change', function() { SortSelCheck.assess('wck-add-form'); }); }, // Assess the potential elements and configure these when possible. assess: function (elem) { var $elem = $('.wppb_sortable_checkboxes_wrap'); // console.log('assess triggerer ' + elem, $elem); $elem.each(function() { $rows = SortSelCheck.remake($(this)); SortSelCheck.attach($(this), $rows); }); }, // Configure the elements that form the sortable checkboxes options. remake: function ($field) { var $rows = $field.children('.wck-checkboxes'); if (!$rows.length) { $field.prepend('
    '); var $rows = $field.children('.wck-checkboxes'); } if ($rows.length) { SortSelCheck.sortable($rows); } return $rows; }, // Attach the custom dropdown options as sortable checkboxes options. attach: function ($field, $rows) { var $ddwn = $field.children('.wppb_selector_for_sortable_checkbox'); if ($ddwn.length) { $ddwn.on('change', function() { var val = $(this).val(); if ('' !== val) { $rows.append('
    '); $(this).children('option').filter(':selected').remove(); SortSelCheck.sortable($rows); } }); } }, // Make sortable items from the list. sortable: function ($list) { var $items = $list.children('div'); $items.addClass('wppb_manage_fields_sortables'); $items.remove('em'); $items.prepend(' '); $list.sortable({ items: '> div', classes: {'ui-sortable': 'highlight'} }); }, }; $(document).ready(function () { // Initialize the custom functionality. SortSelCheck.init('init'); // Bind the event to the custom functionality. $('html').on('wpbFormMetaLoaded', function(e, elem) { SortSelCheck.assess(elem); }); }); })(jQuery); assets/js/script-front-end.js000066600000001205152141651100012214 0ustar00jQuery(document).ready(function(){ if( jQuery("#wppb-register-user").length ) { jQuery('#wppb-register-user').submit(function (e) { //stop submitting the form to see the disabled button effect e.preventDefault(); //disable the submit button jQuery('.form-submit #register').attr('disabled', true); this.submit(); }); } //scroll to top on success message if( jQuery("#wppb_form_general_message").length ){ jQuery([document.documentElement, document.body]).animate({ scrollTop: jQuery("#wppb_form_general_message").offset().top }, 500); } });assets/js/jquery-pb-add-ons.js000066600000016345152141651100012272 0ustar00 /* * Function to download/activate add-ons on button click */ jQuery('.wppb-add-on .button').on( 'click', function(e) { if( jQuery(this).attr('disabled') ) { return false; } // Activate add-on if( jQuery(this).hasClass('wppb-add-on-activate') ) { e.preventDefault(); wppb_add_on_activate( jQuery(this) ); } // Deactivate add-on if( jQuery(this).hasClass('wppb-add-on-deactivate') ) { e.preventDefault(); wppb_add_on_deactivate( jQuery(this) ); } }); /* * Make deactivate button from Add-On is Active message button */ jQuery('.wppb-add-on').on( 'hover', function() { $button = jQuery(this).find('.wppb-add-on-deactivate'); if( $button.length > 0 ) { $button .animate({ opacity: 1 }, 100); } }); /* * Make Add-On is Active message button from deactivate button */ jQuery('.wppb-add-on').on( 'mouseleave', function() { $button = jQuery(this).find('.wppb-add-on-deactivate'); if( $button.length > 0 ) { $button .animate({ opacity: 0 }, 100); } }); /* * Function that activates the add-on */ function wppb_add_on_activate( $button ) { $activate_button = $button; var fade_in_out_speed = 300; var plugin = $activate_button.attr('href'); var add_on_index = $activate_button.parents('.wppb-add-on').index('.wppb-add-on'); var nonce = $activate_button.data('nonce'); $activate_button .attr('disabled', true); $spinner = $activate_button.siblings('.spinner'); $spinner.animate({ opacity: 0.7 }, 100); // Remove the current displayed message wppb_add_on_remove_status_message( $activate_button, fade_in_out_speed); jQuery.post( ajaxurl, { action: 'wppb_add_on_activate', wppb_add_on_to_activate: plugin, wppb_add_on_index: add_on_index, nonce: nonce }, function( response ) { add_on_index = response; $activate_button = jQuery('.wppb-add-on').eq( add_on_index ).find('.button'); $activate_button .blur() .removeClass('wppb-add-on-activate') .addClass('wppb-add-on-deactivate') .removeAttr('disabled') .text( jQuery('#wppb-add-on-deactivate-button-text').text() ); $spinner = $activate_button.siblings('.spinner'); $spinner.animate({ opacity: 0 }, 0); // Set status confirmation message wppb_add_on_set_status_message( $activate_button, 'dashicons-yes', jQuery('#wppb-add-on-activated-message-text').text(), fade_in_out_speed, 0, true ); wppb_add_on_remove_status_message( $activate_button, fade_in_out_speed, 2000 ); // Set is active message wppb_add_on_set_status_message( $activate_button, 'dashicons-yes', jQuery('#wppb-add-on-is-active-message-text').html(), fade_in_out_speed, 2000 + fade_in_out_speed ); }); } /* * Function that deactivates the add-on */ function wppb_add_on_deactivate( $button ) { var fade_in_out_speed = 300; var plugin = $button.attr('href'); var add_on_index = $button.parents('.wppb-add-on').index('.wppb-add-on'); var nonce = $button.data('nonce'); $button .removeClass('wppb-add-on-deactivate') .attr('disabled', true); $spinner = $button.siblings('.spinner'); $spinner.animate({ opacity: 0.7 }, 100); // Remove the current displayed message wppb_add_on_remove_status_message( $button, fade_in_out_speed ); jQuery.post( ajaxurl, { action: 'wppb_add_on_deactivate', wppb_add_on_to_deactivate: plugin, wppb_add_on_index: add_on_index, nonce: nonce }, function( response ) { add_on_index = response; $button = jQuery('.wppb-add-on').eq( add_on_index ).find('.button'); $button .blur() .removeClass('wppb-add-on-is-active') .addClass('wppb-add-on-activate') .attr( 'disabled', false ) .text( jQuery('#wppb-add-on-activate-button-text').text() ); $spinner = $button.siblings('.spinner'); $spinner.animate({ opacity: 0 }, 0); // Set status confirmation message wppb_add_on_set_status_message( $button, 'dashicons-yes', jQuery('#wppb-add-on-deactivated-message-text').text(), fade_in_out_speed, 0, true ); wppb_add_on_remove_status_message( $button, fade_in_out_speed, 2000 ); // Set is active message wppb_add_on_set_status_message( $button, 'dashicons-no-alt', jQuery('#wppb-add-on-is-not-active-message-text').html(), fade_in_out_speed, 2000 + fade_in_out_speed ); }); } /* * Function used to remove the status message of an add-on * * @param object $button - The jQuery object of the add-on box button that was pressed * @param int fade_in_out_speed - The speed of the fade in and out animations * @param int delay - Delay removing of the message * */ function wppb_add_on_remove_status_message( $button, fade_in_out_speed, delay ) { if( typeof( delay ) == 'undefined' ) { delay = 0; } setTimeout( function() { $button.siblings('.dashicons') .animate({ opacity: 0 }, fade_in_out_speed ); $button.siblings('.wppb-add-on-message') .animate({ opacity: 0 }, fade_in_out_speed ); }, delay); } /* * Function used to remove the status message of an add-on * * @param object $button - The jQuery object of the add-on box button that was pressed * @param string message_icon_class - The string name of the class we want the icon to have * @param string message_text - The text we want the user to see * @param int fade_in_out_speed - The speed of the fade in and out animations * @param bool success - If true adds a class to style the message as a success one, if false adds a class to style the message as a failure * */ function wppb_add_on_set_status_message( $button, message_icon_class, message_text, fade_in_out_speed, delay, success ) { if( typeof( delay ) == 'undefined' ) { delay = 0; } setTimeout(function() { $button.siblings('.dashicons') .css('opacity', 0) .attr('class', 'dashicons') .addClass( message_icon_class ) .animate({ opacity: 1}, fade_in_out_speed); $button.siblings('.wppb-add-on-message') .css('opacity', 0) .attr( 'class', 'wppb-add-on-message' ) .html( message_text ) .animate({ opacity: 1}, fade_in_out_speed); if( typeof( success ) != 'undefined' ) { if( success == true ) { $button.siblings('.dashicons') .addClass('wppb-confirmation-success'); $button.siblings('.wppb-add-on-message') .addClass('wppb-confirmation-success'); } else if( success == false ) { $button.siblings('.dashicons') .addClass('wppb-confirmation-error'); $button.siblings('.wppb-add-on-message') .addClass('wppb-confirmation-error'); } } }, delay ); }assets/js/jquery-epf-rf.js000066600000016244152141651100011523 0ustar00function wppb_epf_rf_disable_live_select ( selector ){ jQuery( selector ).attr( 'disabled', true ); } function wppb_rf_epf_change_id( field, container_name, fieldObj ) { var buttonInContainer = jQuery( '.button-primary', fieldObj.parent().parent().parent() ); buttonInContainer.attr('disabled',true); buttonInContainer.attr('tempclick', buttonInContainer.attr("onclick") ); buttonInContainer.removeAttr('onclick'); jQuery.post( ajaxurl , { action:"wppb_handle_rf_epf_id_change", field:field }, function(response) { /** * since version 2.0.2 we have the id directly on the option in the select so this ajax function is a little redundant but can't be sure of the impact on other features so we will just add this */ id = fieldObj.find(":selected").attr( 'data-id' ); if( !id ){ id = response; } jQuery( '#id', fieldObj.parent().parent().parent() ).val( id ); buttonInContainer.attr('onclick', buttonInContainer.attr("tempclick") ); buttonInContainer.removeAttr('tempclick'); if( ( fieldObj.parents('.update_container_wppb_rf_fields').length || fieldObj.parents('.update_container_wppb_epf_fields').length ) && buttonInContainer.attr('disabled') ) { buttonInContainer.text('Save Changes'); } buttonInContainer.removeAttr('disabled'); }); } jQuery(function(){ wppb_disable_delete_on_default_mandatory_fields(); wppb_disable_select_field_options(); jQuery(document).on( 'change', '#wppb_rf_fields .mb-list-entry-fields #field', function () { wppb_rf_epf_change_id( jQuery(this).val(), '#wppb_rf_fields', jQuery(this) ); }); jQuery(document).on( 'change', '.update_container_wppb_rf_fields .mb-list-entry-fields #field', function () { wppb_rf_epf_change_id( jQuery(this).val(), '.update_container_wppb_rf_fields', jQuery(this) ); }); jQuery(document).on( 'change', '#wppb_epf_fields .mb-list-entry-fields #field', function () { wppb_rf_epf_change_id( jQuery(this).val(), '#wppb_epf_fields', jQuery(this) ); }); jQuery(document).on( 'change', '.update_container_wppb_epf_fields .mb-list-entry-fields #field', function () { wppb_rf_epf_change_id( jQuery(this).val(), '.update_container_wppb_epf_fields', jQuery(this) ); }); }); /* function that removes the delete button and disables changing the field type on edit for username,password and email default fields */ function wppb_disable_delete_on_default_mandatory_fields(){ jQuery( '#container_wppb_rf_fields [class$="default-username added_fields_list"] .mbdelete, #container_wppb_rf_fields [class$="default-e-mail added_fields_list"] .mbdelete, #container_wppb_rf_fields [class$="default-password added_fields_list"] .mbdelete' ).hide(); // PB specific line jQuery( '[class$="default-username"] #field, [class$="default-e-mail"] #field, [class$="default-password"] #field' ).attr( 'disabled', true ); // PB specific line } /* Disables the options in the field select drop-down that are also present in the table below */ function wppb_disable_select_field_options() { jQuery('#field option').each( function() { $optionField = jQuery(this); $optionField.removeAttr('disabled'); var optionFieldId = jQuery(this).attr('data-id'); jQuery('#container_wppb_rf_fields .row-id pre, #container_wppb_epf_fields .row-id pre').each( function() { if( jQuery(this).text() == optionFieldId ) { $optionField.attr('disabled', true); } }); }); wppb_check_options_disabled_add_field(); } /* * Check to see if the selected field in the add new field to the list select drop-down is disabled * We don't want this to happen, so select the first option instead */ function wppb_check_options_disabled_add_field() { if( jQuery('#wppb_rf_fields #field option:selected, #wppb_epf_fields #field option:selected').is(':disabled') ) { jQuery('#wppb_rf_fields #field option, #wppb_epf_fields #field option').first().attr('selected', true); } } /* * Run through all the field drop-downs, in edit mode, and check if the selected option is disabled * If it is, disable the save button and if the date-id of the selected option matches the id of the field * change the text of the button */ function wppb_check_options_disabled_edit_field() { jQuery('.update_container_wppb_rf_fields #field, .update_container_wppb_epf_fields #field').each( function() { $selectedOption = jQuery(this).children('option:selected'); $primaryButton = jQuery(this).parents('.mb-list-entry-fields').find('.button-primary'); if( $selectedOption.is(':disabled') ) { $rowId = parseInt( jQuery(this).parents('tr').prev().find('.row-id pre').text() ); $primaryButton.attr('disabled', true); $primaryButton[0].onclick = null; if( $rowId != parseInt( $selectedOption.attr('data-id') ) ) { $primaryButton.text('This field has already been added to the form'); } } else { $primaryButton.attr('disabled', false); var tempBtnOnClick = $primaryButton.attr('onclick'); $primaryButton.text('Save Changes').removeAttr('onclick').attr('onclick', tempBtnOnClick); } }); } /* * Check to see if the selected field in the edit field select drop-down is disabled * If it is we want to disable saving, because no changes have been made */ function wppb_check_update_field_options_disabled() { jQuery('.update_container_wppb_rf_fields #field, .update_container_wppb_epf_fields #field').each( function() { if( jQuery(this).find('option:selected').is(':disabled') ) { jQuery(this).parents('.mb-list-entry-fields').find('.button-primary').attr('disabled', true); jQuery(this).parents('.mb-list-entry-fields').find('.button-primary')[0].onclick = null; } }); } /* * Function that sends an ajax request to delete all items(fields) from a form * */ function wppb_rf_epf_delete_all_fields(event, delete_all_button_id, nonce) { event.preventDefault(); $deleteButton = jQuery('#' + delete_all_button_id); var response = confirm( "Are you sure you want to delete all items ?" ); if( response == true ) { $tableParent = $deleteButton.parents('table'); var meta = $tableParent.attr('id').replace('container_', ''); var post_id = parseInt( $tableParent.attr('post') ); $tableParent.parent().css({'opacity':'0.4', 'position':'relative'}).append('
    '); jQuery.post( ajaxurl, { action: "wppb_rf_epf_delete_all_fields", meta: meta, id: post_id, _ajax_nonce: nonce }, function(response) { /* refresh the list */ jQuery.post( wppbWckAjaxurl, { action: "wck_refresh_list"+meta, meta: meta, id: post_id}, function(response) { jQuery('#container_'+meta).replaceWith(response); $tableParent = jQuery('#container_'+meta); $tableParent.find('tbody td').css('width', function(){ return jQuery(this).width() }); mb_sortable_elements(); $tableParent.parent().css('opacity','1'); jQuery('#mb-ajax-loading').remove(); }); }); } }assets/js/jquery-pb-sitewide.js000066600000014716152141651100012562 0ustar00/** * Add a negative letter spacing to Profile Builder email customizer menus. */ jQuery( document ).ready(function(){ jQuery('li a[href$="admin-email-customizer"]').css("letter-spacing", "-0.7px"); jQuery('li a[href$="user-email-customizer"]').css("letter-spacing", "-0.7px"); }); /* * Set the width of the shortcode input based on an element that * has the width of its contents */ function setShortcodeInputWidth( $inputField ) { var tempSpan = document.createElement('span'); tempSpan.className = "wppb-shortcode-temp"; tempSpan.innerHTML = $inputField.val(); document.body.appendChild(tempSpan); var tempWidth = tempSpan.scrollWidth; document.body.removeChild(tempSpan); $inputField.outerWidth( tempWidth ); } jQuery( document ).ready( function() { jQuery('.wppb-shortcode.input').each( function() { setShortcodeInputWidth( jQuery(this) ); }); jQuery('.wppb-shortcode.textarea').each( function() { jQuery(this).outerHeight( jQuery(this)[0].scrollHeight + parseInt( jQuery(this).css('border-top-width') ) * 2 ); }); jQuery('.wppb-shortcode').click( function() { this.select(); }); }); /* make sure that we don;t leave the page without having a title in the Post Title field, otherwise we loose data */ jQuery( function(){ if( jQuery( 'body').hasClass('post-new-php') ){ if( jQuery( 'body').hasClass('post-type-wppb-rf-cpt') || jQuery( 'body').hasClass('post-type-wppb-epf-cpt') || jQuery( 'body').hasClass('post-type-wppb-ul-cpt') ){ if( jQuery('#title').val() == '' ){ jQuery(window).bind('beforeunload',function() { return "This page is asking you to confirm that you want to leave - data you have entered may not be saved"; }); } /* remove beforeunload event when entering a title or pressing the puclish button */ jQuery( '#title').keypress(function() { jQuery(window).unbind('beforeunload'); }); jQuery( '#publish').click( function() { jQuery(window).unbind('beforeunload'); }); } } }); /* show hide fields based on selected options */ jQuery( function(){ jQuery( '#wppb-rf-settings-args').on('change', '#redirect', function(){ if( jQuery(this).val() == 'Yes' ){ jQuery( '.row-url, .row-display-messages', jQuery(this).parent().parent().parent()).show(); } else{ jQuery( '.row-url, .row-display-messages', jQuery(this).parent().parent().parent()).hide(); } }); jQuery( '#wppb-epf-settings-args').on('change', '#redirect', function(){ if( jQuery(this).val() == 'Yes' ){ jQuery( '.row-url, .row-display-messages', jQuery(this).parent().parent().parent()).show(); } else{ jQuery( '.row-url, .row-display-messages', jQuery(this).parent().parent().parent()).hide(); } }); jQuery( '#wppb-ul-settings-args').on('click', '#visible-only-to-logged-in-users_yes', function(){ jQuery( '.row-visible-to-following-roles', jQuery(this).parent().parent().parent().parent().parent().parent()).toggle(); }); jQuery( '#wppb-ul-faceted-args').on('change', '#facet-type', function(){ if( jQuery(this).val() == 'checkboxes' ){ jQuery( '.row-facet-behaviour, .row-facet-limit', jQuery(this).parent().parent().parent()).show(); }else if( jQuery(this).val() == 'select_multiple' ){ jQuery( '.row-facet-behaviour, .row-facet-limit', jQuery(this).parent().parent().parent()).show(); } else{ jQuery( '.row-facet-behaviour, .row-facet-limit', jQuery(this).parent().parent().parent()).hide(); jQuery( '.row-facet-behaviour #facet-behaviour', jQuery(this).parent().parent().parent()).val('narrow'); } if( jQuery(this).val() == 'search' ){ jQuery( '#wppb-ul-faceted-args .row-facet-meta #facet-meta option[value="billing_country"] ').hide(); jQuery( '#wppb-ul-faceted-args .row-facet-meta #facet-meta option[value="shipping_country"] ').hide(); jQuery( '#wppb-ul-faceted-args .row-facet-meta #facet-meta option[value="billing_state"] ').hide(); jQuery( '#wppb-ul-faceted-args .row-facet-meta #facet-meta option[value="shipping_state"] ').hide(); } else { jQuery( '#wppb-ul-faceted-args .row-facet-meta #facet-meta option[value="billing_country"] ').show(); jQuery( '#wppb-ul-faceted-args .row-facet-meta #facet-meta option[value="shipping_country"] ').show(); jQuery( '#wppb-ul-faceted-args .row-facet-meta #facet-meta option[value="billing_state"] ').show(); jQuery( '#wppb-ul-faceted-args .row-facet-meta #facet-meta option[value="shipping_state"] ').show() } }); }); /* * Dialog boxes throughout Profile Builder */ jQuery( function() { if ( jQuery.fn.dialog ) { jQuery('.wppb-modal-box').dialog({ autoOpen: false, modal: true, draggable: false, minWidth: 450, minHeight: 450 }); jQuery('.wppb-open-modal-box').click(function (e) { e.preventDefault(); jQuery('#' + jQuery(this).attr('href')).dialog('open'); }); } }); /* * Private Website Settings page */ jQuery( function() { if( jQuery( '.wppb-private-website' ).length != 0 ) { jQuery('#private-website-redirect-to-login').select2(); jQuery('#private-website-allowed-pages').select2(); wppbDisablePrivatePageOptions(jQuery('#private-website-enable').val()); jQuery('#private-website-enable').change(function () { wppbDisablePrivatePageOptions(jQuery(this).val()); }); function wppbDisablePrivatePageOptions(value) { if (value == 'no') { jQuery('#private-website-redirect-to-login').closest('tr').addClass("wppb-disabled"); jQuery('#private-website-allowed-pages').closest('tr').addClass("wppb-disabled"); jQuery('#private-website-menu-hide').addClass("wppb-disabled"); } else if (value == 'yes') { jQuery('#private-website-redirect-to-login').closest('tr').removeClass("wppb-disabled"); jQuery('#private-website-allowed-pages').closest('tr').removeClass("wppb-disabled"); jQuery('#private-website-menu-hide').removeClass("wppb-disabled"); } } } }); assets/js/select2/select2.min.js000066600000202150152141651100012504 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):a("object"==typeof exports?require("jquery"):jQuery)}(function(a){var b=function(){if(a&&a.fn&&a.fn.select2&&a.fn.select2.amd)var b=a.fn.select2.amd;var b;return function(){if(!b||!b.requirejs){b?c=b:b={};var a,c,d;!function(b){function e(a,b){return u.call(a,b)}function f(a,b){var c,d,e,f,g,h,i,j,k,l,m,n=b&&b.split("/"),o=s.map,p=o&&o["*"]||{};if(a&&"."===a.charAt(0))if(b){for(a=a.split("/"),g=a.length-1,s.nodeIdCompat&&w.test(a[g])&&(a[g]=a[g].replace(w,"")),a=n.slice(0,n.length-1).concat(a),k=0;k0&&(a.splice(k-1,2),k-=2)}a=a.join("/")}else 0===a.indexOf("./")&&(a=a.substring(2));if((n||p)&&o){for(c=a.split("/"),k=c.length;k>0;k-=1){if(d=c.slice(0,k).join("/"),n)for(l=n.length;l>0;l-=1)if(e=o[n.slice(0,l).join("/")],e&&(e=e[d])){f=e,h=k;break}if(f)break;!i&&p&&p[d]&&(i=p[d],j=k)}!f&&i&&(f=i,h=j),f&&(c.splice(0,h,f),a=c.join("/"))}return a}function g(a,c){return function(){var d=v.call(arguments,0);return"string"!=typeof d[0]&&1===d.length&&d.push(null),n.apply(b,d.concat([a,c]))}}function h(a){return function(b){return f(b,a)}}function i(a){return function(b){q[a]=b}}function j(a){if(e(r,a)){var c=r[a];delete r[a],t[a]=!0,m.apply(b,c)}if(!e(q,a)&&!e(t,a))throw new Error("No "+a);return q[a]}function k(a){var b,c=a?a.indexOf("!"):-1;return c>-1&&(b=a.substring(0,c),a=a.substring(c+1,a.length)),[b,a]}function l(a){return function(){return s&&s.config&&s.config[a]||{}}}var m,n,o,p,q={},r={},s={},t={},u=Object.prototype.hasOwnProperty,v=[].slice,w=/\.js$/;o=function(a,b){var c,d=k(a),e=d[0];return a=d[1],e&&(e=f(e,b),c=j(e)),e?a=c&&c.normalize?c.normalize(a,h(b)):f(a,b):(a=f(a,b),d=k(a),e=d[0],a=d[1],e&&(c=j(e))),{f:e?e+"!"+a:a,n:a,pr:e,p:c}},p={require:function(a){return g(a)},exports:function(a){var b=q[a];return"undefined"!=typeof b?b:q[a]={}},module:function(a){return{id:a,uri:"",exports:q[a],config:l(a)}}},m=function(a,c,d,f){var h,k,l,m,n,s,u=[],v=typeof d;if(f=f||a,"undefined"===v||"function"===v){for(c=!c.length&&d.length?["require","exports","module"]:c,n=0;n0&&(b.call(arguments,a.prototype.constructor),e=c.prototype.constructor),e.apply(this,arguments)}function e(){this.constructor=d}var f=b(c),g=b(a);c.displayName=a.displayName,d.prototype=new e;for(var h=0;hc;c++)a[c].apply(this,b)},c.Observable=d,c.generateChars=function(a){for(var b="",c=0;a>c;c++){var d=Math.floor(36*Math.random());b+=d.toString(36)}return b},c.bind=function(a,b){return function(){a.apply(b,arguments)}},c._convertData=function(a){for(var b in a){var c=b.split("-"),d=a;if(1!==c.length){for(var e=0;e":">",'"':""","'":"'","/":"/"};return"string"!=typeof a?a:String(a).replace(/[&<>"'\/\\]/g,function(a){return b[a]})},c.appendMany=function(b,c){if("1.7"===a.fn.jquery.substr(0,3)){var d=a();a.map(c,function(a){d=d.add(a)}),c=d}b.append(c)},c}),b.define("select2/results",["jquery","./utils"],function(a,b){function c(a,b,d){this.$element=a,this.data=d,this.options=b,c.__super__.constructor.call(this)}return b.Extend(c,b.Observable),c.prototype.render=function(){var b=a('
      ');return this.options.get("multiple")&&b.attr("aria-multiselectable","true"),this.$results=b,b},c.prototype.clear=function(){this.$results.empty()},c.prototype.displayMessage=function(b){var c=this.options.get("escapeMarkup");this.clear(),this.hideLoading();var d=a('
    • '),e=this.options.get("translations").get(b.message);d.append(c(e(b.args))),d[0].className+=" select2-results__message",this.$results.append(d)},c.prototype.hideMessages=function(){this.$results.find(".select2-results__message").remove()},c.prototype.append=function(a){this.hideLoading();var b=[];if(null==a.results||0===a.results.length)return void(0===this.$results.children().length&&this.trigger("results:message",{message:"noResults"}));a.results=this.sort(a.results);for(var c=0;c0?b.first().trigger("mouseenter"):a.first().trigger("mouseenter"),this.ensureHighlightVisible()},c.prototype.setClasses=function(){var b=this;this.data.current(function(c){var d=a.map(c,function(a){return a.id.toString()}),e=b.$results.find(".select2-results__option[aria-selected]");e.each(function(){var b=a(this),c=a.data(this,"data"),e=""+c.id;null!=c.element&&c.element.selected||null==c.element&&a.inArray(e,d)>-1?b.attr("aria-selected","true"):b.attr("aria-selected","false")})})},c.prototype.showLoading=function(a){this.hideLoading();var b=this.options.get("translations").get("searching"),c={disabled:!0,loading:!0,text:b(a)},d=this.option(c);d.className+=" loading-results",this.$results.prepend(d)},c.prototype.hideLoading=function(){this.$results.find(".loading-results").remove()},c.prototype.option=function(b){var c=document.createElement("li");c.className="select2-results__option";var d={role:"treeitem","aria-selected":"false"};b.disabled&&(delete d["aria-selected"],d["aria-disabled"]="true"),null==b.id&&delete d["aria-selected"],null!=b._resultId&&(c.id=b._resultId),b.title&&(c.title=b.title),b.children&&(d.role="group",d["aria-label"]=b.text,delete d["aria-selected"]);for(var e in d){var f=d[e];c.setAttribute(e,f)}if(b.children){var g=a(c),h=document.createElement("strong");h.className="select2-results__group";a(h);this.template(b,h);for(var i=[],j=0;j",{"class":"select2-results__options select2-results__options--nested"});m.append(i),g.append(h),g.append(m)}else this.template(b,c);return a.data(c,"data",b),c},c.prototype.bind=function(b,c){var d=this,e=b.id+"-results";this.$results.attr("id",e),b.on("results:all",function(a){d.clear(),d.append(a.data),b.isOpen()&&(d.setClasses(),d.highlightFirstItem())}),b.on("results:append",function(a){d.append(a.data),b.isOpen()&&d.setClasses()}),b.on("query",function(a){d.hideMessages(),d.showLoading(a)}),b.on("select",function(){b.isOpen()&&(d.setClasses(),d.highlightFirstItem())}),b.on("unselect",function(){b.isOpen()&&(d.setClasses(),d.highlightFirstItem())}),b.on("open",function(){d.$results.attr("aria-expanded","true"),d.$results.attr("aria-hidden","false"),d.setClasses(),d.ensureHighlightVisible()}),b.on("close",function(){d.$results.attr("aria-expanded","false"),d.$results.attr("aria-hidden","true"),d.$results.removeAttr("aria-activedescendant")}),b.on("results:toggle",function(){var a=d.getHighlightedResults();0!==a.length&&a.trigger("mouseup")}),b.on("results:select",function(){var a=d.getHighlightedResults();if(0!==a.length){var b=a.data("data");"true"==a.attr("aria-selected")?d.trigger("close",{}):d.trigger("select",{data:b})}}),b.on("results:previous",function(){var a=d.getHighlightedResults(),b=d.$results.find("[aria-selected]"),c=b.index(a);if(0!==c){var e=c-1;0===a.length&&(e=0);var f=b.eq(e);f.trigger("mouseenter");var g=d.$results.offset().top,h=f.offset().top,i=d.$results.scrollTop()+(h-g);0===e?d.$results.scrollTop(0):0>h-g&&d.$results.scrollTop(i)}}),b.on("results:next",function(){var a=d.getHighlightedResults(),b=d.$results.find("[aria-selected]"),c=b.index(a),e=c+1;if(!(e>=b.length)){var f=b.eq(e);f.trigger("mouseenter");var g=d.$results.offset().top+d.$results.outerHeight(!1),h=f.offset().top+f.outerHeight(!1),i=d.$results.scrollTop()+h-g;0===e?d.$results.scrollTop(0):h>g&&d.$results.scrollTop(i)}}),b.on("results:focus",function(a){a.element.addClass("select2-results__option--highlighted")}),b.on("results:message",function(a){d.displayMessage(a)}),a.fn.mousewheel&&this.$results.on("mousewheel",function(a){var b=d.$results.scrollTop(),c=d.$results.get(0).scrollHeight-b+a.deltaY,e=a.deltaY>0&&b-a.deltaY<=0,f=a.deltaY<0&&c<=d.$results.height();e?(d.$results.scrollTop(0),a.preventDefault(),a.stopPropagation()):f&&(d.$results.scrollTop(d.$results.get(0).scrollHeight-d.$results.height()),a.preventDefault(),a.stopPropagation())}),this.$results.on("mouseup",".select2-results__option[aria-selected]",function(b){var c=a(this),e=c.data("data");return"true"===c.attr("aria-selected")?void(d.options.get("multiple")?d.trigger("unselect",{originalEvent:b,data:e}):d.trigger("close",{})):void d.trigger("select",{originalEvent:b,data:e})}),this.$results.on("mouseenter",".select2-results__option[aria-selected]",function(b){var c=a(this).data("data");d.getHighlightedResults().removeClass("select2-results__option--highlighted"),d.trigger("results:focus",{data:c,element:a(this)})})},c.prototype.getHighlightedResults=function(){var a=this.$results.find(".select2-results__option--highlighted");return a},c.prototype.destroy=function(){this.$results.remove()},c.prototype.ensureHighlightVisible=function(){var a=this.getHighlightedResults();if(0!==a.length){var b=this.$results.find("[aria-selected]"),c=b.index(a),d=this.$results.offset().top,e=a.offset().top,f=this.$results.scrollTop()+(e-d),g=e-d;f-=2*a.outerHeight(!1),2>=c?this.$results.scrollTop(0):(g>this.$results.outerHeight()||0>g)&&this.$results.scrollTop(f)}},c.prototype.template=function(b,c){var d=this.options.get("templateResult"),e=this.options.get("escapeMarkup"),f=d(b,c);null==f?c.style.display="none":"string"==typeof f?c.innerHTML=e(f):a(c).append(f)},c}),b.define("select2/keys",[],function(){var a={BACKSPACE:8,TAB:9,ENTER:13,SHIFT:16,CTRL:17,ALT:18,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46};return a}),b.define("select2/selection/base",["jquery","../utils","../keys"],function(a,b,c){function d(a,b){this.$element=a,this.options=b,d.__super__.constructor.call(this)}return b.Extend(d,b.Observable),d.prototype.render=function(){var b=a('');return this._tabindex=0,null!=this.$element.data("old-tabindex")?this._tabindex=this.$element.data("old-tabindex"):null!=this.$element.attr("tabindex")&&(this._tabindex=this.$element.attr("tabindex")),b.attr("title",this.$element.attr("title")),b.attr("tabindex",this._tabindex),this.$selection=b,b},d.prototype.bind=function(a,b){var d=this,e=(a.id+"-container",a.id+"-results");this.container=a,this.$selection.on("focus",function(a){d.trigger("focus",a)}),this.$selection.on("blur",function(a){d._handleBlur(a)}),this.$selection.on("keydown",function(a){d.trigger("keypress",a),a.which===c.SPACE&&a.preventDefault()}),a.on("results:focus",function(a){d.$selection.attr("aria-activedescendant",a.data._resultId)}),a.on("selection:update",function(a){d.update(a.data)}),a.on("open",function(){d.$selection.attr("aria-expanded","true"),d.$selection.attr("aria-owns",e),d._attachCloseHandler(a)}),a.on("close",function(){d.$selection.attr("aria-expanded","false"),d.$selection.removeAttr("aria-activedescendant"),d.$selection.removeAttr("aria-owns"),d.$selection.focus(),d._detachCloseHandler(a)}),a.on("enable",function(){d.$selection.attr("tabindex",d._tabindex)}),a.on("disable",function(){d.$selection.attr("tabindex","-1")})},d.prototype._handleBlur=function(b){var c=this;window.setTimeout(function(){document.activeElement==c.$selection[0]||a.contains(c.$selection[0],document.activeElement)||c.trigger("blur",b)},1)},d.prototype._attachCloseHandler=function(b){a(document.body).on("mousedown.select2."+b.id,function(b){var c=a(b.target),d=c.closest(".select2"),e=a(".select2.select2-container--open");e.each(function(){var b=a(this);if(this!=d[0]){var c=b.data("element");c.select2("close")}})})},d.prototype._detachCloseHandler=function(b){a(document.body).off("mousedown.select2."+b.id)},d.prototype.position=function(a,b){var c=b.find(".selection");c.append(a)},d.prototype.destroy=function(){this._detachCloseHandler(this.container)},d.prototype.update=function(a){throw new Error("The `update` method must be defined in child classes.")},d}),b.define("select2/selection/single",["jquery","./base","../utils","../keys"],function(a,b,c,d){function e(){e.__super__.constructor.apply(this,arguments)}return c.Extend(e,b),e.prototype.render=function(){var a=e.__super__.render.call(this);return a.addClass("select2-selection--single"),a.html(''),a},e.prototype.bind=function(a,b){var c=this;e.__super__.bind.apply(this,arguments);var d=a.id+"-container";this.$selection.find(".select2-selection__rendered").attr("id",d),this.$selection.attr("aria-labelledby",d),this.$selection.on("mousedown",function(a){1===a.which&&c.trigger("toggle",{originalEvent:a})}),this.$selection.on("focus",function(a){}),this.$selection.on("blur",function(a){}),a.on("focus",function(b){a.isOpen()||c.$selection.focus()}),a.on("selection:update",function(a){c.update(a.data)})},e.prototype.clear=function(){this.$selection.find(".select2-selection__rendered").empty()},e.prototype.display=function(a,b){var c=this.options.get("templateSelection"),d=this.options.get("escapeMarkup");return d(c(a,b))},e.prototype.selectionContainer=function(){return a("")},e.prototype.update=function(a){if(0===a.length)return void this.clear();var b=a[0],c=this.$selection.find(".select2-selection__rendered"),d=this.display(b,c);c.empty().append(d),c.prop("title",b.title||b.text)},e}),b.define("select2/selection/multiple",["jquery","./base","../utils"],function(a,b,c){function d(a,b){d.__super__.constructor.apply(this,arguments)}return c.Extend(d,b),d.prototype.render=function(){var a=d.__super__.render.call(this);return a.addClass("select2-selection--multiple"),a.html('
        '),a},d.prototype.bind=function(b,c){var e=this;d.__super__.bind.apply(this,arguments),this.$selection.on("click",function(a){e.trigger("toggle",{originalEvent:a})}),this.$selection.on("click",".select2-selection__choice__remove",function(b){if(!e.options.get("disabled")){var c=a(this),d=c.parent(),f=d.data("data");e.trigger("unselect",{originalEvent:b,data:f})}})},d.prototype.clear=function(){this.$selection.find(".select2-selection__rendered").empty()},d.prototype.display=function(a,b){var c=this.options.get("templateSelection"),d=this.options.get("escapeMarkup");return d(c(a,b))},d.prototype.selectionContainer=function(){var b=a('
      • ×
      • ');return b},d.prototype.update=function(a){if(this.clear(),0!==a.length){for(var b=[],d=0;d1;if(d||c)return a.call(this,b);this.clear();var e=this.createPlaceholder(this.placeholder);this.$selection.find(".select2-selection__rendered").append(e)},b}),b.define("select2/selection/allowClear",["jquery","../keys"],function(a,b){function c(){}return c.prototype.bind=function(a,b,c){var d=this;a.call(this,b,c),null==this.placeholder&&this.options.get("debug")&&window.console&&console.error&&console.error("Select2: The `allowClear` option should be used in combination with the `placeholder` option."),this.$selection.on("mousedown",".select2-selection__clear",function(a){d._handleClear(a)}),b.on("keypress",function(a){d._handleKeyboardClear(a,b)})},c.prototype._handleClear=function(a,b){if(!this.options.get("disabled")){var c=this.$selection.find(".select2-selection__clear");if(0!==c.length){b.stopPropagation();for(var d=c.data("data"),e=0;e0||0===c.length)){var d=a('×');d.data("data",c),this.$selection.find(".select2-selection__rendered").prepend(d)}},c}),b.define("select2/selection/search",["jquery","../utils","../keys"],function(a,b,c){function d(a,b,c){a.call(this,b,c)}return d.prototype.render=function(b){var c=a('');this.$searchContainer=c,this.$search=c.find("input");var d=b.call(this);return this._transferTabIndex(),d},d.prototype.bind=function(a,b,d){var e=this;a.call(this,b,d),b.on("open",function(){e.$search.trigger("focus")}),b.on("close",function(){e.$search.val(""),e.$search.removeAttr("aria-activedescendant"),e.$search.trigger("focus")}),b.on("enable",function(){e.$search.prop("disabled",!1),e._transferTabIndex()}),b.on("disable",function(){e.$search.prop("disabled",!0)}),b.on("focus",function(a){e.$search.trigger("focus")}),b.on("results:focus",function(a){e.$search.attr("aria-activedescendant",a.id)}),this.$selection.on("focusin",".select2-search--inline",function(a){e.trigger("focus",a)}),this.$selection.on("focusout",".select2-search--inline",function(a){e._handleBlur(a)}),this.$selection.on("keydown",".select2-search--inline",function(a){a.stopPropagation(),e.trigger("keypress",a),e._keyUpPrevented=a.isDefaultPrevented();var b=a.which;if(b===c.BACKSPACE&&""===e.$search.val()){var d=e.$searchContainer.prev(".select2-selection__choice");if(d.length>0){var f=d.data("data");e.searchRemoveChoice(f),a.preventDefault()}}});var f=document.documentMode,g=f&&11>=f;this.$selection.on("input.searchcheck",".select2-search--inline",function(a){return g?void e.$selection.off("input.search input.searchcheck"):void e.$selection.off("keyup.search")}),this.$selection.on("keyup.search input.search",".select2-search--inline",function(a){if(g&&"input"===a.type)return void e.$selection.off("input.search input.searchcheck");var b=a.which;b!=c.SHIFT&&b!=c.CTRL&&b!=c.ALT&&b!=c.TAB&&e.handleSearch(a)})},d.prototype._transferTabIndex=function(a){this.$search.attr("tabindex",this.$selection.attr("tabindex")),this.$selection.attr("tabindex","-1")},d.prototype.createPlaceholder=function(a,b){this.$search.attr("placeholder",b.text)},d.prototype.update=function(a,b){var c=this.$search[0]==document.activeElement;this.$search.attr("placeholder",""),a.call(this,b),this.$selection.find(".select2-selection__rendered").append(this.$searchContainer),this.resizeSearch(),c&&this.$search.focus()},d.prototype.handleSearch=function(){if(this.resizeSearch(),!this._keyUpPrevented){var a=this.$search.val();this.trigger("query",{term:a})}this._keyUpPrevented=!1},d.prototype.searchRemoveChoice=function(a,b){this.trigger("unselect",{data:b}),this.$search.val(b.text),this.handleSearch()},d.prototype.resizeSearch=function(){this.$search.css("width","25px");var a="";if(""!==this.$search.attr("placeholder"))a=this.$selection.find(".select2-selection__rendered").innerWidth();else{var b=this.$search.val().length+1;a=.75*b+"em"}this.$search.css("width",a)},d}),b.define("select2/selection/eventRelay",["jquery"],function(a){function b(){}return b.prototype.bind=function(b,c,d){var e=this,f=["open","opening","close","closing","select","selecting","unselect","unselecting"],g=["opening","closing","selecting","unselecting"];b.call(this,c,d),c.on("*",function(b,c){if(-1!==a.inArray(b,f)){c=c||{};var d=a.Event("select2:"+b,{params:c});e.$element.trigger(d),-1!==a.inArray(b,g)&&(c.prevented=d.isDefaultPrevented())}})},b}),b.define("select2/translation",["jquery","require"],function(a,b){function c(a){this.dict=a||{}}return c.prototype.all=function(){return this.dict},c.prototype.get=function(a){return this.dict[a]},c.prototype.extend=function(b){this.dict=a.extend({},b.all(),this.dict)},c._cache={},c.loadPath=function(a){if(!(a in c._cache)){var d=b(a);c._cache[a]=d}return new c(c._cache[a])},c}),b.define("select2/diacritics",[],function(){var a={"Ⓐ":"A","A":"A","À":"A","Á":"A","Â":"A","Ầ":"A","Ấ":"A","Ẫ":"A","Ẩ":"A","Ã":"A","Ā":"A","Ă":"A","Ằ":"A","Ắ":"A","Ẵ":"A","Ẳ":"A","Ȧ":"A","Ǡ":"A","Ä":"A","Ǟ":"A","Ả":"A","Å":"A","Ǻ":"A","Ǎ":"A","Ȁ":"A","Ȃ":"A","Ạ":"A","Ậ":"A","Ặ":"A","Ḁ":"A","Ą":"A","Ⱥ":"A","Ɐ":"A","Ꜳ":"AA","Æ":"AE","Ǽ":"AE","Ǣ":"AE","Ꜵ":"AO","Ꜷ":"AU","Ꜹ":"AV","Ꜻ":"AV","Ꜽ":"AY","Ⓑ":"B","B":"B","Ḃ":"B","Ḅ":"B","Ḇ":"B","Ƀ":"B","Ƃ":"B","Ɓ":"B","Ⓒ":"C","C":"C","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","Ç":"C","Ḉ":"C","Ƈ":"C","Ȼ":"C","Ꜿ":"C","Ⓓ":"D","D":"D","Ḋ":"D","Ď":"D","Ḍ":"D","Ḑ":"D","Ḓ":"D","Ḏ":"D","Đ":"D","Ƌ":"D","Ɗ":"D","Ɖ":"D","Ꝺ":"D","DZ":"DZ","DŽ":"DZ","Dz":"Dz","Dž":"Dz","Ⓔ":"E","E":"E","È":"E","É":"E","Ê":"E","Ề":"E","Ế":"E","Ễ":"E","Ể":"E","Ẽ":"E","Ē":"E","Ḕ":"E","Ḗ":"E","Ĕ":"E","Ė":"E","Ë":"E","Ẻ":"E","Ě":"E","Ȅ":"E","Ȇ":"E","Ẹ":"E","Ệ":"E","Ȩ":"E","Ḝ":"E","Ę":"E","Ḙ":"E","Ḛ":"E","Ɛ":"E","Ǝ":"E","Ⓕ":"F","F":"F","Ḟ":"F","Ƒ":"F","Ꝼ":"F","Ⓖ":"G","G":"G","Ǵ":"G","Ĝ":"G","Ḡ":"G","Ğ":"G","Ġ":"G","Ǧ":"G","Ģ":"G","Ǥ":"G","Ɠ":"G","Ꞡ":"G","Ᵹ":"G","Ꝿ":"G","Ⓗ":"H","H":"H","Ĥ":"H","Ḣ":"H","Ḧ":"H","Ȟ":"H","Ḥ":"H","Ḩ":"H","Ḫ":"H","Ħ":"H","Ⱨ":"H","Ⱶ":"H","Ɥ":"H","Ⓘ":"I","I":"I","Ì":"I","Í":"I","Î":"I","Ĩ":"I","Ī":"I","Ĭ":"I","İ":"I","Ï":"I","Ḯ":"I","Ỉ":"I","Ǐ":"I","Ȉ":"I","Ȋ":"I","Ị":"I","Į":"I","Ḭ":"I","Ɨ":"I","Ⓙ":"J","J":"J","Ĵ":"J","Ɉ":"J","Ⓚ":"K","K":"K","Ḱ":"K","Ǩ":"K","Ḳ":"K","Ķ":"K","Ḵ":"K","Ƙ":"K","Ⱪ":"K","Ꝁ":"K","Ꝃ":"K","Ꝅ":"K","Ꞣ":"K","Ⓛ":"L","L":"L","Ŀ":"L","Ĺ":"L","Ľ":"L","Ḷ":"L","Ḹ":"L","Ļ":"L","Ḽ":"L","Ḻ":"L","Ł":"L","Ƚ":"L","Ɫ":"L","Ⱡ":"L","Ꝉ":"L","Ꝇ":"L","Ꞁ":"L","LJ":"LJ","Lj":"Lj","Ⓜ":"M","M":"M","Ḿ":"M","Ṁ":"M","Ṃ":"M","Ɱ":"M","Ɯ":"M","Ⓝ":"N","N":"N","Ǹ":"N","Ń":"N","Ñ":"N","Ṅ":"N","Ň":"N","Ṇ":"N","Ņ":"N","Ṋ":"N","Ṉ":"N","Ƞ":"N","Ɲ":"N","Ꞑ":"N","Ꞥ":"N","NJ":"NJ","Nj":"Nj","Ⓞ":"O","O":"O","Ò":"O","Ó":"O","Ô":"O","Ồ":"O","Ố":"O","Ỗ":"O","Ổ":"O","Õ":"O","Ṍ":"O","Ȭ":"O","Ṏ":"O","Ō":"O","Ṑ":"O","Ṓ":"O","Ŏ":"O","Ȯ":"O","Ȱ":"O","Ö":"O","Ȫ":"O","Ỏ":"O","Ő":"O","Ǒ":"O","Ȍ":"O","Ȏ":"O","Ơ":"O","Ờ":"O","Ớ":"O","Ỡ":"O","Ở":"O","Ợ":"O","Ọ":"O","Ộ":"O","Ǫ":"O","Ǭ":"O","Ø":"O","Ǿ":"O","Ɔ":"O","Ɵ":"O","Ꝋ":"O","Ꝍ":"O","Ƣ":"OI","Ꝏ":"OO","Ȣ":"OU","Ⓟ":"P","P":"P","Ṕ":"P","Ṗ":"P","Ƥ":"P","Ᵽ":"P","Ꝑ":"P","Ꝓ":"P","Ꝕ":"P","Ⓠ":"Q","Q":"Q","Ꝗ":"Q","Ꝙ":"Q","Ɋ":"Q","Ⓡ":"R","R":"R","Ŕ":"R","Ṙ":"R","Ř":"R","Ȑ":"R","Ȓ":"R","Ṛ":"R","Ṝ":"R","Ŗ":"R","Ṟ":"R","Ɍ":"R","Ɽ":"R","Ꝛ":"R","Ꞧ":"R","Ꞃ":"R","Ⓢ":"S","S":"S","ẞ":"S","Ś":"S","Ṥ":"S","Ŝ":"S","Ṡ":"S","Š":"S","Ṧ":"S","Ṣ":"S","Ṩ":"S","Ș":"S","Ş":"S","Ȿ":"S","Ꞩ":"S","Ꞅ":"S","Ⓣ":"T","T":"T","Ṫ":"T","Ť":"T","Ṭ":"T","Ț":"T","Ţ":"T","Ṱ":"T","Ṯ":"T","Ŧ":"T","Ƭ":"T","Ʈ":"T","Ⱦ":"T","Ꞇ":"T","Ꜩ":"TZ","Ⓤ":"U","U":"U","Ù":"U","Ú":"U","Û":"U","Ũ":"U","Ṹ":"U","Ū":"U","Ṻ":"U","Ŭ":"U","Ü":"U","Ǜ":"U","Ǘ":"U","Ǖ":"U","Ǚ":"U","Ủ":"U","Ů":"U","Ű":"U","Ǔ":"U","Ȕ":"U","Ȗ":"U","Ư":"U","Ừ":"U","Ứ":"U","Ữ":"U","Ử":"U","Ự":"U","Ụ":"U","Ṳ":"U","Ų":"U","Ṷ":"U","Ṵ":"U","Ʉ":"U","Ⓥ":"V","V":"V","Ṽ":"V","Ṿ":"V","Ʋ":"V","Ꝟ":"V","Ʌ":"V","Ꝡ":"VY","Ⓦ":"W","W":"W","Ẁ":"W","Ẃ":"W","Ŵ":"W","Ẇ":"W","Ẅ":"W","Ẉ":"W","Ⱳ":"W","Ⓧ":"X","X":"X","Ẋ":"X","Ẍ":"X","Ⓨ":"Y","Y":"Y","Ỳ":"Y","Ý":"Y","Ŷ":"Y","Ỹ":"Y","Ȳ":"Y","Ẏ":"Y","Ÿ":"Y","Ỷ":"Y","Ỵ":"Y","Ƴ":"Y","Ɏ":"Y","Ỿ":"Y","Ⓩ":"Z","Z":"Z","Ź":"Z","Ẑ":"Z","Ż":"Z","Ž":"Z","Ẓ":"Z","Ẕ":"Z","Ƶ":"Z","Ȥ":"Z","Ɀ":"Z","Ⱬ":"Z","Ꝣ":"Z","ⓐ":"a","a":"a","ẚ":"a","à":"a","á":"a","â":"a","ầ":"a","ấ":"a","ẫ":"a","ẩ":"a","ã":"a","ā":"a","ă":"a","ằ":"a","ắ":"a","ẵ":"a","ẳ":"a","ȧ":"a","ǡ":"a","ä":"a","ǟ":"a","ả":"a","å":"a","ǻ":"a","ǎ":"a","ȁ":"a","ȃ":"a","ạ":"a","ậ":"a","ặ":"a","ḁ":"a","ą":"a","ⱥ":"a","ɐ":"a","ꜳ":"aa","æ":"ae","ǽ":"ae","ǣ":"ae","ꜵ":"ao","ꜷ":"au","ꜹ":"av","ꜻ":"av","ꜽ":"ay","ⓑ":"b","b":"b","ḃ":"b","ḅ":"b","ḇ":"b","ƀ":"b","ƃ":"b","ɓ":"b","ⓒ":"c","c":"c","ć":"c","ĉ":"c","ċ":"c","č":"c","ç":"c","ḉ":"c","ƈ":"c","ȼ":"c","ꜿ":"c","ↄ":"c","ⓓ":"d","d":"d","ḋ":"d","ď":"d","ḍ":"d","ḑ":"d","ḓ":"d","ḏ":"d","đ":"d","ƌ":"d","ɖ":"d","ɗ":"d","ꝺ":"d","dz":"dz","dž":"dz","ⓔ":"e","e":"e","è":"e","é":"e","ê":"e","ề":"e","ế":"e","ễ":"e","ể":"e","ẽ":"e","ē":"e","ḕ":"e","ḗ":"e","ĕ":"e","ė":"e","ë":"e","ẻ":"e","ě":"e","ȅ":"e","ȇ":"e","ẹ":"e","ệ":"e","ȩ":"e","ḝ":"e","ę":"e","ḙ":"e","ḛ":"e","ɇ":"e","ɛ":"e","ǝ":"e","ⓕ":"f","f":"f","ḟ":"f","ƒ":"f","ꝼ":"f","ⓖ":"g","g":"g","ǵ":"g","ĝ":"g","ḡ":"g","ğ":"g","ġ":"g","ǧ":"g","ģ":"g","ǥ":"g","ɠ":"g","ꞡ":"g","ᵹ":"g","ꝿ":"g","ⓗ":"h","h":"h","ĥ":"h","ḣ":"h","ḧ":"h","ȟ":"h","ḥ":"h","ḩ":"h","ḫ":"h","ẖ":"h","ħ":"h","ⱨ":"h","ⱶ":"h","ɥ":"h","ƕ":"hv","ⓘ":"i","i":"i","ì":"i","í":"i","î":"i","ĩ":"i","ī":"i","ĭ":"i","ï":"i","ḯ":"i","ỉ":"i","ǐ":"i","ȉ":"i","ȋ":"i","ị":"i","į":"i","ḭ":"i","ɨ":"i","ı":"i","ⓙ":"j","j":"j","ĵ":"j","ǰ":"j","ɉ":"j","ⓚ":"k","k":"k","ḱ":"k","ǩ":"k","ḳ":"k","ķ":"k","ḵ":"k","ƙ":"k","ⱪ":"k","ꝁ":"k","ꝃ":"k","ꝅ":"k","ꞣ":"k","ⓛ":"l","l":"l","ŀ":"l","ĺ":"l","ľ":"l","ḷ":"l","ḹ":"l","ļ":"l","ḽ":"l","ḻ":"l","ſ":"l","ł":"l","ƚ":"l","ɫ":"l","ⱡ":"l","ꝉ":"l","ꞁ":"l","ꝇ":"l","lj":"lj","ⓜ":"m","m":"m","ḿ":"m","ṁ":"m","ṃ":"m","ɱ":"m","ɯ":"m","ⓝ":"n","n":"n","ǹ":"n","ń":"n","ñ":"n","ṅ":"n","ň":"n","ṇ":"n","ņ":"n","ṋ":"n","ṉ":"n","ƞ":"n","ɲ":"n","ʼn":"n","ꞑ":"n","ꞥ":"n","nj":"nj","ⓞ":"o","o":"o","ò":"o","ó":"o","ô":"o","ồ":"o","ố":"o","ỗ":"o","ổ":"o","õ":"o","ṍ":"o","ȭ":"o","ṏ":"o","ō":"o","ṑ":"o","ṓ":"o","ŏ":"o","ȯ":"o","ȱ":"o","ö":"o","ȫ":"o","ỏ":"o","ő":"o","ǒ":"o","ȍ":"o","ȏ":"o","ơ":"o","ờ":"o","ớ":"o","ỡ":"o","ở":"o","ợ":"o","ọ":"o","ộ":"o","ǫ":"o","ǭ":"o","ø":"o","ǿ":"o","ɔ":"o","ꝋ":"o","ꝍ":"o","ɵ":"o","ƣ":"oi","ȣ":"ou","ꝏ":"oo","ⓟ":"p","p":"p","ṕ":"p","ṗ":"p","ƥ":"p","ᵽ":"p","ꝑ":"p","ꝓ":"p","ꝕ":"p","ⓠ":"q","q":"q","ɋ":"q","ꝗ":"q","ꝙ":"q","ⓡ":"r","r":"r","ŕ":"r","ṙ":"r","ř":"r","ȑ":"r","ȓ":"r","ṛ":"r","ṝ":"r","ŗ":"r","ṟ":"r","ɍ":"r","ɽ":"r","ꝛ":"r","ꞧ":"r","ꞃ":"r","ⓢ":"s","s":"s","ß":"s","ś":"s","ṥ":"s","ŝ":"s","ṡ":"s","š":"s","ṧ":"s","ṣ":"s","ṩ":"s","ș":"s","ş":"s","ȿ":"s","ꞩ":"s","ꞅ":"s","ẛ":"s","ⓣ":"t","t":"t","ṫ":"t","ẗ":"t","ť":"t","ṭ":"t","ț":"t","ţ":"t","ṱ":"t","ṯ":"t","ŧ":"t","ƭ":"t","ʈ":"t","ⱦ":"t","ꞇ":"t","ꜩ":"tz","ⓤ":"u","u":"u","ù":"u","ú":"u","û":"u","ũ":"u","ṹ":"u","ū":"u","ṻ":"u","ŭ":"u","ü":"u","ǜ":"u","ǘ":"u","ǖ":"u","ǚ":"u","ủ":"u","ů":"u","ű":"u","ǔ":"u","ȕ":"u","ȗ":"u","ư":"u","ừ":"u","ứ":"u","ữ":"u","ử":"u","ự":"u","ụ":"u","ṳ":"u","ų":"u","ṷ":"u","ṵ":"u","ʉ":"u","ⓥ":"v","v":"v","ṽ":"v","ṿ":"v","ʋ":"v","ꝟ":"v","ʌ":"v","ꝡ":"vy","ⓦ":"w","w":"w","ẁ":"w","ẃ":"w","ŵ":"w","ẇ":"w","ẅ":"w","ẘ":"w","ẉ":"w","ⱳ":"w","ⓧ":"x","x":"x","ẋ":"x","ẍ":"x","ⓨ":"y","y":"y","ỳ":"y","ý":"y","ŷ":"y","ỹ":"y","ȳ":"y","ẏ":"y","ÿ":"y","ỷ":"y","ẙ":"y","ỵ":"y","ƴ":"y","ɏ":"y","ỿ":"y","ⓩ":"z","z":"z","ź":"z","ẑ":"z","ż":"z","ž":"z","ẓ":"z","ẕ":"z","ƶ":"z","ȥ":"z","ɀ":"z","ⱬ":"z","ꝣ":"z","Ά":"Α","Έ":"Ε","Ή":"Η","Ί":"Ι","Ϊ":"Ι","Ό":"Ο","Ύ":"Υ","Ϋ":"Υ","Ώ":"Ω","ά":"α","έ":"ε","ή":"η","ί":"ι","ϊ":"ι","ΐ":"ι","ό":"ο","ύ":"υ","ϋ":"υ","ΰ":"υ","ω":"ω","ς":"σ"};return a}),b.define("select2/data/base",["../utils"],function(a){function b(a,c){b.__super__.constructor.call(this)}return a.Extend(b,a.Observable),b.prototype.current=function(a){throw new Error("The `current` method must be defined in child classes.")},b.prototype.query=function(a,b){throw new Error("The `query` method must be defined in child classes.")},b.prototype.bind=function(a,b){},b.prototype.destroy=function(){},b.prototype.generateResultId=function(b,c){var d=b.id+"-result-";return d+=a.generateChars(4),d+=null!=c.id?"-"+c.id.toString():"-"+a.generateChars(4)},b}),b.define("select2/data/select",["./base","../utils","jquery"],function(a,b,c){function d(a,b){this.$element=a,this.options=b,d.__super__.constructor.call(this)}return b.Extend(d,a),d.prototype.current=function(a){var b=[],d=this;this.$element.find(":selected").each(function(){var a=c(this),e=d.item(a);b.push(e)}),a(b)},d.prototype.select=function(a){var b=this;if(a.selected=!0,c(a.element).is("option"))return a.element.selected=!0,void this.$element.trigger("change"); if(this.$element.prop("multiple"))this.current(function(d){var e=[];a=[a],a.push.apply(a,d);for(var f=0;f=0){var k=f.filter(d(j)),l=this.item(k),m=c.extend(!0,{},j,l),n=this.option(m);k.replaceWith(n)}else{var o=this.option(j);if(j.children){var p=this.convertToOptions(j.children);b.appendMany(o,p)}h.push(o)}}return h},d}),b.define("select2/data/ajax",["./array","../utils","jquery"],function(a,b,c){function d(a,b){this.ajaxOptions=this._applyDefaults(b.get("ajax")),null!=this.ajaxOptions.processResults&&(this.processResults=this.ajaxOptions.processResults),d.__super__.constructor.call(this,a,b)}return b.Extend(d,a),d.prototype._applyDefaults=function(a){var b={data:function(a){return c.extend({},a,{q:a.term})},transport:function(a,b,d){var e=c.ajax(a);return e.then(b),e.fail(d),e}};return c.extend({},b,a,!0)},d.prototype.processResults=function(a){return a},d.prototype.query=function(a,b){function d(){var d=f.transport(f,function(d){var f=e.processResults(d,a);e.options.get("debug")&&window.console&&console.error&&(f&&f.results&&c.isArray(f.results)||console.error("Select2: The AJAX results did not return an array in the `results` key of the response.")),b(f)},function(){d.status&&"0"===d.status||e.trigger("results:message",{message:"errorLoading"})});e._request=d}var e=this;null!=this._request&&(c.isFunction(this._request.abort)&&this._request.abort(),this._request=null);var f=c.extend({type:"GET"},this.ajaxOptions);"function"==typeof f.url&&(f.url=f.url.call(this.$element,a)),"function"==typeof f.data&&(f.data=f.data.call(this.$element,a)),this.ajaxOptions.delay&&null!=a.term?(this._queryTimeout&&window.clearTimeout(this._queryTimeout),this._queryTimeout=window.setTimeout(d,this.ajaxOptions.delay)):d()},d}),b.define("select2/data/tags",["jquery"],function(a){function b(b,c,d){var e=d.get("tags"),f=d.get("createTag");void 0!==f&&(this.createTag=f);var g=d.get("insertTag");if(void 0!==g&&(this.insertTag=g),b.call(this,c,d),a.isArray(e))for(var h=0;h0&&b.term.length>this.maximumInputLength?void this.trigger("results:message",{message:"inputTooLong",args:{maximum:this.maximumInputLength,input:b.term,params:b}}):void a.call(this,b,c)},a}),b.define("select2/data/maximumSelectionLength",[],function(){function a(a,b,c){this.maximumSelectionLength=c.get("maximumSelectionLength"),a.call(this,b,c)}return a.prototype.query=function(a,b,c){var d=this;this.current(function(e){var f=null!=e?e.length:0;return d.maximumSelectionLength>0&&f>=d.maximumSelectionLength?void d.trigger("results:message",{message:"maximumSelected",args:{maximum:d.maximumSelectionLength}}):void a.call(d,b,c)})},a}),b.define("select2/dropdown",["jquery","./utils"],function(a,b){function c(a,b){this.$element=a,this.options=b,c.__super__.constructor.call(this)}return b.Extend(c,b.Observable),c.prototype.render=function(){var b=a('');return b.attr("dir",this.options.get("dir")),this.$dropdown=b,b},c.prototype.bind=function(){},c.prototype.position=function(a,b){},c.prototype.destroy=function(){this.$dropdown.remove()},c}),b.define("select2/dropdown/search",["jquery","../utils"],function(a,b){function c(){}return c.prototype.render=function(b){var c=b.call(this),d=a('');return this.$searchContainer=d,this.$search=d.find("input"),c.prepend(d),c},c.prototype.bind=function(b,c,d){var e=this;b.call(this,c,d),this.$search.on("keydown",function(a){e.trigger("keypress",a),e._keyUpPrevented=a.isDefaultPrevented()}),this.$search.on("input",function(b){a(this).off("keyup")}),this.$search.on("keyup input",function(a){e.handleSearch(a)}),c.on("open",function(){e.$search.attr("tabindex",0),e.$search.focus(),window.setTimeout(function(){e.$search.focus()},0)}),c.on("close",function(){e.$search.attr("tabindex",-1),e.$search.val("")}),c.on("focus",function(){c.isOpen()&&e.$search.focus()}),c.on("results:all",function(a){if(null==a.query.term||""===a.query.term){var b=e.showSearch(a);b?e.$searchContainer.removeClass("select2-search--hide"):e.$searchContainer.addClass("select2-search--hide")}})},c.prototype.handleSearch=function(a){if(!this._keyUpPrevented){var b=this.$search.val();this.trigger("query",{term:b})}this._keyUpPrevented=!1},c.prototype.showSearch=function(a,b){return!0},c}),b.define("select2/dropdown/hidePlaceholder",[],function(){function a(a,b,c,d){this.placeholder=this.normalizePlaceholder(c.get("placeholder")),a.call(this,b,c,d)}return a.prototype.append=function(a,b){b.results=this.removePlaceholder(b.results),a.call(this,b)},a.prototype.normalizePlaceholder=function(a,b){return"string"==typeof b&&(b={id:"",text:b}),b},a.prototype.removePlaceholder=function(a,b){for(var c=b.slice(0),d=b.length-1;d>=0;d--){var e=b[d];this.placeholder.id===e.id&&c.splice(d,1)}return c},a}),b.define("select2/dropdown/infiniteScroll",["jquery"],function(a){function b(a,b,c,d){this.lastParams={},a.call(this,b,c,d),this.$loadingMore=this.createLoadingMore(),this.loading=!1}return b.prototype.append=function(a,b){this.$loadingMore.remove(),this.loading=!1,a.call(this,b),this.showLoadingMore(b)&&this.$results.append(this.$loadingMore)},b.prototype.bind=function(b,c,d){var e=this;b.call(this,c,d),c.on("query",function(a){e.lastParams=a,e.loading=!0}),c.on("query:append",function(a){e.lastParams=a,e.loading=!0}),this.$results.on("scroll",function(){var b=a.contains(document.documentElement,e.$loadingMore[0]);if(!e.loading&&b){var c=e.$results.offset().top+e.$results.outerHeight(!1),d=e.$loadingMore.offset().top+e.$loadingMore.outerHeight(!1);c+50>=d&&e.loadMore()}})},b.prototype.loadMore=function(){this.loading=!0;var b=a.extend({},{page:1},this.lastParams);b.page++,this.trigger("query:append",b)},b.prototype.showLoadingMore=function(a,b){return b.pagination&&b.pagination.more},b.prototype.createLoadingMore=function(){var b=a('
      • '),c=this.options.get("translations").get("loadingMore");return b.html(c(this.lastParams)),b},b}),b.define("select2/dropdown/attachBody",["jquery","../utils"],function(a,b){function c(b,c,d){this.$dropdownParent=d.get("dropdownParent")||a(document.body),b.call(this,c,d)}return c.prototype.bind=function(a,b,c){var d=this,e=!1;a.call(this,b,c),b.on("open",function(){d._showDropdown(),d._attachPositioningHandler(b),e||(e=!0,b.on("results:all",function(){d._positionDropdown(),d._resizeDropdown()}),b.on("results:append",function(){d._positionDropdown(),d._resizeDropdown()}))}),b.on("close",function(){d._hideDropdown(),d._detachPositioningHandler(b)}),this.$dropdownContainer.on("mousedown",function(a){a.stopPropagation()})},c.prototype.destroy=function(a){a.call(this),this.$dropdownContainer.remove()},c.prototype.position=function(a,b,c){b.attr("class",c.attr("class")),b.removeClass("select2"),b.addClass("select2-container--open"),b.css({position:"absolute",top:-999999}),this.$container=c},c.prototype.render=function(b){var c=a(""),d=b.call(this);return c.append(d),this.$dropdownContainer=c,c},c.prototype._hideDropdown=function(a){this.$dropdownContainer.detach()},c.prototype._attachPositioningHandler=function(c,d){var e=this,f="scroll.select2."+d.id,g="resize.select2."+d.id,h="orientationchange.select2."+d.id,i=this.$container.parents().filter(b.hasScroll);i.each(function(){a(this).data("select2-scroll-position",{x:a(this).scrollLeft(),y:a(this).scrollTop()})}),i.on(f,function(b){var c=a(this).data("select2-scroll-position");a(this).scrollTop(c.y)}),a(window).on(f+" "+g+" "+h,function(a){e._positionDropdown(),e._resizeDropdown()})},c.prototype._detachPositioningHandler=function(c,d){var e="scroll.select2."+d.id,f="resize.select2."+d.id,g="orientationchange.select2."+d.id,h=this.$container.parents().filter(b.hasScroll);h.off(e),a(window).off(e+" "+f+" "+g)},c.prototype._positionDropdown=function(){var b=a(window),c=this.$dropdown.hasClass("select2-dropdown--above"),d=this.$dropdown.hasClass("select2-dropdown--below"),e=null,f=this.$container.offset();f.bottom=f.top+this.$container.outerHeight(!1);var g={height:this.$container.outerHeight(!1)};g.top=f.top,g.bottom=f.top+g.height;var h={height:this.$dropdown.outerHeight(!1)},i={top:b.scrollTop(),bottom:b.scrollTop()+b.height()},j=i.topf.bottom+h.height,l={left:f.left,top:g.bottom},m=this.$dropdownParent;"static"===m.css("position")&&(m=m.offsetParent());var n=m.offset();l.top-=n.top,l.left-=n.left,c||d||(e="below"),k||!j||c?!j&&k&&c&&(e="below"):e="above",("above"==e||c&&"below"!==e)&&(l.top=g.top-n.top-h.height),null!=e&&(this.$dropdown.removeClass("select2-dropdown--below select2-dropdown--above").addClass("select2-dropdown--"+e),this.$container.removeClass("select2-container--below select2-container--above").addClass("select2-container--"+e)),this.$dropdownContainer.css(l)},c.prototype._resizeDropdown=function(){var a={width:this.$container.outerWidth(!1)+"px"};this.options.get("dropdownAutoWidth")&&(a.minWidth=a.width,a.position="relative",a.width="auto"),this.$dropdown.css(a)},c.prototype._showDropdown=function(a){this.$dropdownContainer.appendTo(this.$dropdownParent),this._positionDropdown(),this._resizeDropdown()},c}),b.define("select2/dropdown/minimumResultsForSearch",[],function(){function a(b){for(var c=0,d=0;d0&&(l.dataAdapter=j.Decorate(l.dataAdapter,r)),l.maximumInputLength>0&&(l.dataAdapter=j.Decorate(l.dataAdapter,s)),l.maximumSelectionLength>0&&(l.dataAdapter=j.Decorate(l.dataAdapter,t)),l.tags&&(l.dataAdapter=j.Decorate(l.dataAdapter,p)),(null!=l.tokenSeparators||null!=l.tokenizer)&&(l.dataAdapter=j.Decorate(l.dataAdapter,q)),null!=l.query){var C=b(l.amdBase+"compat/query");l.dataAdapter=j.Decorate(l.dataAdapter,C)}if(null!=l.initSelection){var D=b(l.amdBase+"compat/initSelection");l.dataAdapter=j.Decorate(l.dataAdapter,D)}}if(null==l.resultsAdapter&&(l.resultsAdapter=c,null!=l.ajax&&(l.resultsAdapter=j.Decorate(l.resultsAdapter,x)),null!=l.placeholder&&(l.resultsAdapter=j.Decorate(l.resultsAdapter,w)),l.selectOnClose&&(l.resultsAdapter=j.Decorate(l.resultsAdapter,A))),null==l.dropdownAdapter){if(l.multiple)l.dropdownAdapter=u;else{var E=j.Decorate(u,v);l.dropdownAdapter=E}if(0!==l.minimumResultsForSearch&&(l.dropdownAdapter=j.Decorate(l.dropdownAdapter,z)),l.closeOnSelect&&(l.dropdownAdapter=j.Decorate(l.dropdownAdapter,B)),null!=l.dropdownCssClass||null!=l.dropdownCss||null!=l.adaptDropdownCssClass){var F=b(l.amdBase+"compat/dropdownCss");l.dropdownAdapter=j.Decorate(l.dropdownAdapter,F)}l.dropdownAdapter=j.Decorate(l.dropdownAdapter,y)}if(null==l.selectionAdapter){if(l.multiple?l.selectionAdapter=e:l.selectionAdapter=d,null!=l.placeholder&&(l.selectionAdapter=j.Decorate(l.selectionAdapter,f)),l.allowClear&&(l.selectionAdapter=j.Decorate(l.selectionAdapter,g)),l.multiple&&(l.selectionAdapter=j.Decorate(l.selectionAdapter,h)),null!=l.containerCssClass||null!=l.containerCss||null!=l.adaptContainerCssClass){var G=b(l.amdBase+"compat/containerCss");l.selectionAdapter=j.Decorate(l.selectionAdapter,G)}l.selectionAdapter=j.Decorate(l.selectionAdapter,i)}if("string"==typeof l.language)if(l.language.indexOf("-")>0){var H=l.language.split("-"),I=H[0];l.language=[l.language,I]}else l.language=[l.language];if(a.isArray(l.language)){var J=new k;l.language.push("en");for(var K=l.language,L=0;L0){for(var f=a.extend(!0,{},e),g=e.children.length-1;g>=0;g--){var h=e.children[g],i=c(d,h);null==i&&f.children.splice(g,1)}return f.children.length>0?f:c(d,f)}var j=b(e.text).toUpperCase(),k=b(d.term).toUpperCase();return j.indexOf(k)>-1?e:null}this.defaults={amdBase:"./",amdLanguageBase:"./i18n/",closeOnSelect:!0,debug:!1,dropdownAutoWidth:!1,escapeMarkup:j.escapeMarkup,language:C,matcher:c,minimumInputLength:0,maximumInputLength:0,maximumSelectionLength:0,minimumResultsForSearch:0,selectOnClose:!1,sorter:function(a){return a},templateResult:function(a){return a.text},templateSelection:function(a){return a.text},theme:"default",width:"resolve"}},D.prototype.set=function(b,c){var d=a.camelCase(b),e={};e[d]=c;var f=j._convertData(e);a.extend(this.defaults,f)};var E=new D;return E}),b.define("select2/options",["require","jquery","./defaults","./utils"],function(a,b,c,d){function e(b,e){if(this.options=b,null!=e&&this.fromElement(e),this.options=c.apply(this.options),e&&e.is("input")){var f=a(this.get("amdBase")+"compat/inputData");this.options.dataAdapter=d.Decorate(this.options.dataAdapter,f)}}return e.prototype.fromElement=function(a){var c=["select2"];null==this.options.multiple&&(this.options.multiple=a.prop("multiple")),null==this.options.disabled&&(this.options.disabled=a.prop("disabled")),null==this.options.language&&(a.prop("lang")?this.options.language=a.prop("lang").toLowerCase():a.closest("[lang]").prop("lang")&&(this.options.language=a.closest("[lang]").prop("lang"))),null==this.options.dir&&(a.prop("dir")?this.options.dir=a.prop("dir"):a.closest("[dir]").prop("dir")?this.options.dir=a.closest("[dir]").prop("dir"):this.options.dir="ltr"),a.prop("disabled",this.options.disabled),a.prop("multiple",this.options.multiple),a.data("select2Tags")&&(this.options.debug&&window.console&&console.warn&&console.warn('Select2: The `data-select2-tags` attribute has been changed to use the `data-data` and `data-tags="true"` attributes and will be removed in future versions of Select2.'),a.data("data",a.data("select2Tags")),a.data("tags",!0)),a.data("ajaxUrl")&&(this.options.debug&&window.console&&console.warn&&console.warn("Select2: The `data-ajax-url` attribute has been changed to `data-ajax--url` and support for the old attribute will be removed in future versions of Select2."),a.attr("ajax--url",a.data("ajaxUrl")),a.data("ajax--url",a.data("ajaxUrl")));var e={};e=b.fn.jquery&&"1."==b.fn.jquery.substr(0,2)&&a[0].dataset?b.extend(!0,{},a[0].dataset,a.data()):a.data();var f=b.extend(!0,{},e);f=d._convertData(f);for(var g in f)b.inArray(g,c)>-1||(b.isPlainObject(this.options[g])?b.extend(this.options[g],f[g]):this.options[g]=f[g]);return this},e.prototype.get=function(a){return this.options[a]},e.prototype.set=function(a,b){this.options[a]=b},e}),b.define("select2/core",["jquery","./options","./utils","./keys"],function(a,b,c,d){var e=function(a,c){null!=a.data("select2")&&a.data("select2").destroy(),this.$element=a,this.id=this._generateId(a),c=c||{},this.options=new b(c,a),e.__super__.constructor.call(this);var d=a.attr("tabindex")||0;a.data("old-tabindex",d),a.attr("tabindex","-1");var f=this.options.get("dataAdapter");this.dataAdapter=new f(a,this.options);var g=this.render();this._placeContainer(g);var h=this.options.get("selectionAdapter");this.selection=new h(a,this.options),this.$selection=this.selection.render(),this.selection.position(this.$selection,g);var i=this.options.get("dropdownAdapter");this.dropdown=new i(a,this.options),this.$dropdown=this.dropdown.render(),this.dropdown.position(this.$dropdown,g);var j=this.options.get("resultsAdapter");this.results=new j(a,this.options,this.dataAdapter),this.$results=this.results.render(),this.results.position(this.$results,this.$dropdown);var k=this;this._bindAdapters(),this._registerDomEvents(),this._registerDataEvents(),this._registerSelectionEvents(),this._registerDropdownEvents(),this._registerResultsEvents(),this._registerEvents(),this.dataAdapter.current(function(a){k.trigger("selection:update",{data:a})}),a.addClass("select2-hidden-accessible"),a.attr("aria-hidden","true"),this._syncAttributes(),a.data("select2",this)};return c.Extend(e,c.Observable),e.prototype._generateId=function(a){var b="";return b=null!=a.attr("id")?a.attr("id"):null!=a.attr("name")?a.attr("name")+"-"+c.generateChars(2):c.generateChars(4),b=b.replace(/(:|\.|\[|\]|,)/g,""),b="select2-"+b},e.prototype._placeContainer=function(a){a.insertAfter(this.$element);var b=this._resolveWidth(this.$element,this.options.get("width"));null!=b&&a.css("width",b)},e.prototype._resolveWidth=function(a,b){var c=/^width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/i;if("resolve"==b){var d=this._resolveWidth(a,"style");return null!=d?d:this._resolveWidth(a,"element")}if("element"==b){var e=a.outerWidth(!1);return 0>=e?"auto":e+"px"}if("style"==b){var f=a.attr("style");if("string"!=typeof f)return null;for(var g=f.split(";"),h=0,i=g.length;i>h;h+=1){var j=g[h].replace(/\s/g,""),k=j.match(c);if(null!==k&&k.length>=1)return k[1]}return null}return b},e.prototype._bindAdapters=function(){this.dataAdapter.bind(this,this.$container),this.selection.bind(this,this.$container),this.dropdown.bind(this,this.$container),this.results.bind(this,this.$container)},e.prototype._registerDomEvents=function(){var b=this;this.$element.on("change.select2",function(){b.dataAdapter.current(function(a){b.trigger("selection:update",{data:a})})}),this.$element.on("focus.select2",function(a){b.trigger("focus",a)}),this._syncA=c.bind(this._syncAttributes,this),this._syncS=c.bind(this._syncSubtree,this),this.$element[0].attachEvent&&this.$element[0].attachEvent("onpropertychange",this._syncA);var d=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver;null!=d?(this._observer=new d(function(c){a.each(c,b._syncA),a.each(c,b._syncS)}),this._observer.observe(this.$element[0],{attributes:!0,childList:!0,subtree:!1})):this.$element[0].addEventListener&&(this.$element[0].addEventListener("DOMAttrModified",b._syncA,!1),this.$element[0].addEventListener("DOMNodeInserted",b._syncS,!1),this.$element[0].addEventListener("DOMNodeRemoved",b._syncS,!1))},e.prototype._registerDataEvents=function(){var a=this;this.dataAdapter.on("*",function(b,c){a.trigger(b,c)})},e.prototype._registerSelectionEvents=function(){var b=this,c=["toggle","focus"];this.selection.on("toggle",function(){b.toggleDropdown()}),this.selection.on("focus",function(a){b.focus(a)}),this.selection.on("*",function(d,e){-1===a.inArray(d,c)&&b.trigger(d,e)})},e.prototype._registerDropdownEvents=function(){var a=this;this.dropdown.on("*",function(b,c){a.trigger(b,c)})},e.prototype._registerResultsEvents=function(){var a=this;this.results.on("*",function(b,c){a.trigger(b,c)})},e.prototype._registerEvents=function(){var a=this;this.on("open",function(){a.$container.addClass("select2-container--open")}),this.on("close",function(){a.$container.removeClass("select2-container--open")}),this.on("enable",function(){a.$container.removeClass("select2-container--disabled")}),this.on("disable",function(){a.$container.addClass("select2-container--disabled")}),this.on("blur",function(){a.$container.removeClass("select2-container--focus")}),this.on("query",function(b){a.isOpen()||a.trigger("open",{}),this.dataAdapter.query(b,function(c){a.trigger("results:all",{data:c,query:b})})}),this.on("query:append",function(b){this.dataAdapter.query(b,function(c){a.trigger("results:append",{data:c,query:b})})}),this.on("keypress",function(b){var c=b.which;a.isOpen()?c===d.ESC||c===d.TAB||c===d.UP&&b.altKey?(a.close(),b.preventDefault()):c===d.ENTER?(a.trigger("results:select",{}),b.preventDefault()):c===d.SPACE&&b.ctrlKey?(a.trigger("results:toggle",{}),b.preventDefault()):c===d.UP?(a.trigger("results:previous",{}),b.preventDefault()):c===d.DOWN&&(a.trigger("results:next",{}),b.preventDefault()):(c===d.ENTER||c===d.SPACE||c===d.DOWN&&b.altKey)&&(a.open(),b.preventDefault())})},e.prototype._syncAttributes=function(){this.options.set("disabled",this.$element.prop("disabled")),this.options.get("disabled")?(this.isOpen()&&this.close(),this.trigger("disable",{})):this.trigger("enable",{})},e.prototype._syncSubtree=function(a,b){var c=!1,d=this;if(!a||!a.target||"OPTION"===a.target.nodeName||"OPTGROUP"===a.target.nodeName){if(b)if(b.addedNodes&&b.addedNodes.length>0)for(var e=0;e0&&(c=!0);else c=!0;c&&this.dataAdapter.current(function(a){d.trigger("selection:update",{data:a})})}},e.prototype.trigger=function(a,b){var c=e.__super__.trigger,d={open:"opening",close:"closing",select:"selecting",unselect:"unselecting"};if(void 0===b&&(b={}),a in d){var f=d[a],g={prevented:!1,name:a,args:b};if(c.call(this,f,g),g.prevented)return void(b.prevented=!0)}c.call(this,a,b)},e.prototype.toggleDropdown=function(){this.options.get("disabled")||(this.isOpen()?this.close():this.open())},e.prototype.open=function(){this.isOpen()||this.trigger("query",{})},e.prototype.close=function(){this.isOpen()&&this.trigger("close",{})},e.prototype.isOpen=function(){return this.$container.hasClass("select2-container--open")},e.prototype.hasFocus=function(){return this.$container.hasClass("select2-container--focus")},e.prototype.focus=function(a){this.hasFocus()||(this.$container.addClass("select2-container--focus"),this.trigger("focus",{}))},e.prototype.enable=function(a){this.options.get("debug")&&window.console&&console.warn&&console.warn('Select2: The `select2("enable")` method has been deprecated and will be removed in later Select2 versions. Use $element.prop("disabled") instead.'),(null==a||0===a.length)&&(a=[!0]);var b=!a[0];this.$element.prop("disabled",b)},e.prototype.data=function(){this.options.get("debug")&&arguments.length>0&&window.console&&console.warn&&console.warn('Select2: Data can no longer be set using `select2("data")`. You should consider setting the value instead using `$element.val()`.');var a=[];return this.dataAdapter.current(function(b){a=b}),a},e.prototype.val=function(b){if(this.options.get("debug")&&window.console&&console.warn&&console.warn('Select2: The `select2("val")` method has been deprecated and will be removed in later Select2 versions. Use $element.val() instead.'),null==b||0===b.length)return this.$element.val();var c=b[0];a.isArray(c)&&(c=a.map(c,function(a){return a.toString()})),this.$element.val(c).trigger("change")},e.prototype.destroy=function(){this.$container.remove(),this.$element[0].detachEvent&&this.$element[0].detachEvent("onpropertychange",this._syncA),null!=this._observer?(this._observer.disconnect(),this._observer=null):this.$element[0].removeEventListener&&(this.$element[0].removeEventListener("DOMAttrModified",this._syncA,!1),this.$element[0].removeEventListener("DOMNodeInserted",this._syncS,!1),this.$element[0].removeEventListener("DOMNodeRemoved",this._syncS,!1)),this._syncA=null,this._syncS=null,this.$element.off(".select2"),this.$element.attr("tabindex",this.$element.data("old-tabindex")),this.$element.removeClass("select2-hidden-accessible"),this.$element.attr("aria-hidden","false"),this.$element.removeData("select2"),this.dataAdapter.destroy(),this.selection.destroy(),this.dropdown.destroy(),this.results.destroy(),this.dataAdapter=null,this.selection=null,this.dropdown=null,this.results=null; },e.prototype.render=function(){var b=a('');return b.attr("dir",this.options.get("dir")),this.$container=b,this.$container.addClass("select2-container--"+this.options.get("theme")),b.data("element",this.$element),b},e}),b.define("jquery-mousewheel",["jquery"],function(a){return a}),b.define("jquery.select2",["jquery","jquery-mousewheel","./select2/core","./select2/defaults"],function(a,b,c,d){if(null==a.fn.select2){var e=["open","close","destroy"];a.fn.select2=function(b){if(b=b||{},"object"==typeof b)return this.each(function(){var d=a.extend(!0,{},b);new c(a(this),d)}),this;if("string"==typeof b){var d,f=Array.prototype.slice.call(arguments,1);return this.each(function(){var c=a(this).data("select2");null==c&&window.console&&console.error&&console.error("The select2('"+b+"') method was called on an element that is not using Select2."),d=c[b].apply(c,f)}),a.inArray(b,e)>-1?this:d}throw new Error("Invalid arguments for Select2: "+b)}}return null==a.fn.select2.defaults&&(a.fn.select2.defaults=d),c}),{define:b.define,require:b.require}}(),c=b.require("jquery.select2");return a.fn.select2.amd=b,c});assets/js/select2/i18n/pt.js000066600000001533152141651100011565 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor apague "+t+" ";return n+=t!=1?"caracteres":"carácter",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Introduza "+t+" ou mais caracteres";return n},loadingMore:function(){return"A carregar mais resultados…"},maximumSelected:function(e){var t="Apenas pode seleccionar "+e.maximum+" ";return t+=e.maximum!=1?"itens":"item",t},noResults:function(){return"Sem resultados"},searching:function(){return"A procurar…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/nl.js000066600000001600152141651100011546 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nl",[],function(){return{errorLoading:function(){return"De resultaten konden niet worden geladen."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Gelieve "+t+" karakters te verwijderen";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Gelieve "+t+" of meer karakters in te voeren";return n},loadingMore:function(){return"Meer resultaten laden…"},maximumSelected:function(e){var t=e.maximum==1?"kan":"kunnen",n="Er "+t+" maar "+e.maximum+" item";return e.maximum!=1&&(n+="s"),n+=" worden geselecteerd",n},noResults:function(){return"Geen resultaten gevonden…"},searching:function(){return"Zoeken…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/eu.js000066600000001514152141651100011552 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/eu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gutxiago",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gehiago",n},loadingMore:function(){return"Emaitza gehiago kargatzen…"},maximumSelected:function(e){return e.maximum===1?"Elementu bakarra hauta dezakezu":e.maximum+" elementu hauta ditzakezu soilik"},noResults:function(){return"Ez da bat datorrenik aurkitu"},searching:function(){return"Bilatzen…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/gl.js000066600000001440152141651100011541 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/gl",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Elimine ";return t===1?n+="un carácter":n+=t+" caracteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Engada ";return t===1?n+="un carácter":n+=t+" caracteres",n},loadingMore:function(){return"Cargando máis resultados…"},maximumSelected:function(e){var t="Só pode ";return e.maximum===1?t+="un elemento":t+=e.maximum+" elementos",t},noResults:function(){return"Non se atoparon resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/ms.js000066600000001427152141651100011563 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ms",[],function(){return{errorLoading:function(){return"Keputusan tidak berjaya dimuatkan."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Sila hapuskan "+t+" aksara"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Sila masukkan "+t+" atau lebih aksara"},loadingMore:function(){return"Sedang memuatkan keputusan…"},maximumSelected:function(e){return"Anda hanya boleh memilih "+e.maximum+" pilihan"},noResults:function(){return"Tiada padanan yang ditemui"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/sk.js000066600000002240152141651100011553 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sk",[],function(){var e={2:function(e){return e?"dva":"dve"},3:function(){return"tri"},4:function(){return"štyri"}};return{inputTooLong:function(t){var n=t.input.length-t.maximum;return n==1?"Prosím, zadajte o jeden znak menej":n>=2&&n<=4?"Prosím, zadajte o "+e[n](!0)+" znaky menej":"Prosím, zadajte o "+n+" znakov menej"},inputTooShort:function(t){var n=t.minimum-t.input.length;return n==1?"Prosím, zadajte ešte jeden znak":n<=4?"Prosím, zadajte ešte ďalšie "+e[n](!0)+" znaky":"Prosím, zadajte ešte ďalších "+n+" znakov"},loadingMore:function(){return"Loading more results…"},maximumSelected:function(t){return t.maximum==1?"Môžete zvoliť len jednu položku":t.maximum>=2&&t.maximum<=4?"Môžete zvoliť najviac "+e[t.maximum](!1)+" položky":"Môžete zvoliť najviac "+t.maximum+" položiek"},noResults:function(){return"Nenašli sa žiadne položky"},searching:function(){return"Vyhľadávanie…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/et.js000066600000001407152141651100011552 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/et",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" vähem",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" rohkem",n},loadingMore:function(){return"Laen tulemusi…"},maximumSelected:function(e){var t="Saad vaid "+e.maximum+" tulemus";return e.maximum==1?t+="e":t+="t",t+=" valida",t},noResults:function(){return"Tulemused puuduvad"},searching:function(){return"Otsin…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/de.js000066600000001407152141651100011532 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/de",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Bitte "+t+" Zeichen weniger eingeben"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Bitte "+t+" Zeichen mehr eingeben"},loadingMore:function(){return"Lade mehr Ergebnisse…"},maximumSelected:function(e){var t="Sie können nur "+e.maximum+" Eintr";return e.maximum===1?t+="ag":t+="äge",t+=" auswählen",t},noResults:function(){return"Keine Übereinstimmungen gefunden"},searching:function(){return"Suche…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/lt.js000066600000001621152141651100011557 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lt",[],function(){function e(e,t,n,r){return e%10===1&&(e%100<11||e%100>19)?t:e%10>=2&&e%10<=9&&(e%100<11||e%100>19)?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Pašalinkite "+n+" simbol";return r+=e(n,"į","ius","ių"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Įrašykite dar "+n+" simbol";return r+=e(n,"į","ius","ių"),r},loadingMore:function(){return"Kraunama daugiau rezultatų…"},maximumSelected:function(t){var n="Jūs galite pasirinkti tik "+t.maximum+" element";return n+=e(t.maximum,"ą","us","ų"),n},noResults:function(){return"Atitikmenų nerasta"},searching:function(){return"Ieškoma…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/cs.js000066600000002324152141651100011546 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/cs",[],function(){function e(e,t){switch(e){case 2:return t?"dva":"dvě";case 3:return"tři";case 4:return"čtyři"}return""}return{errorLoading:function(){return"Výsledky nemohly být načteny."},inputTooLong:function(t){var n=t.input.length-t.maximum;return n==1?"Prosím zadejte o jeden znak méně":n<=4?"Prosím zadejte o "+e(n,!0)+" znaky méně":"Prosím zadejte o "+n+" znaků méně"},inputTooShort:function(t){var n=t.minimum-t.input.length;return n==1?"Prosím zadejte ještě jeden znak":n<=4?"Prosím zadejte ještě další "+e(n,!0)+" znaky":"Prosím zadejte ještě dalších "+n+" znaků"},loadingMore:function(){return"Načítají se další výsledky…"},maximumSelected:function(t){var n=t.maximum;return n==1?"Můžete zvolit jen jednu položku":n<=4?"Můžete zvolit maximálně "+e(n,!1)+" položky":"Můžete zvolit maximálně "+n+" položek"},noResults:function(){return"Nenalezeny žádné položky"},searching:function(){return"Vyhledávání…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/zh-TW.js000066600000001304152141651100012107 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="請刪掉"+t+"個字元";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="請再輸入"+t+"個字元";return n},loadingMore:function(){return"載入中…"},maximumSelected:function(e){var t="你只能選擇最多"+e.maximum+"項";return t},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/lv.js000066600000001550152141651100011562 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lv",[],function(){function e(e,t,n,r){return e===11?t:e%10===1?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Lūdzu ievadiet par "+n;return r+=" simbol"+e(n,"iem","u","iem"),r+" mazāk"},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Lūdzu ievadiet vēl "+n;return r+=" simbol"+e(n,"us","u","us"),r},loadingMore:function(){return"Datu ielāde…"},maximumSelected:function(t){var n="Jūs varat izvēlēties ne vairāk kā "+t.maximum;return n+=" element"+e(t.maximum,"us","u","us"),n},noResults:function(){return"Sakritību nav"},searching:function(){return"Meklēšana…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/th.js000066600000001667152141651100011565 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/th",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="โปรดลบออก "+t+" ตัวอักษร";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="โปรดพิมพ์เพิ่มอีก "+t+" ตัวอักษร";return n},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(e){var t="คุณสามารถเลือกได้ไม่เกิน "+e.maximum+" รายการ";return t},noResults:function(){return"ไม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/hi.js000066600000002145152141651100011542 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hi",[],function(){return{errorLoading:function(){return"परिणामों को लोड नहीं किया जा सका।"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" अक्षर को हटा दें";return t>1&&(n=t+" अक्षरों को हटा दें "),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="कृपया "+t+" या अधिक अक्षर दर्ज करें";return n},loadingMore:function(){return"अधिक परिणाम लोड हो रहे है..."},maximumSelected:function(e){var t="आप केवल "+e.maximum+" आइटम का चयन कर सकते हैं";return t},noResults:function(){return"कोई परिणाम नहीं मिला"},searching:function(){return"खोज रहा है..."}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/zh-CN.js000066600000001401152141651100012053 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/ro.js000066600000001615152141651100011563 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ro",[],function(){return{errorLoading:function(){return"Rezultatele nu au putut fi incărcate."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vă rugăm să ștergeți"+t+" caracter";return t!==1&&(n+="e"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vă rugăm să introduceți "+t+"sau mai multe caractere";return n},loadingMore:function(){return"Se încarcă mai multe rezultate…"},maximumSelected:function(e){var t="Aveți voie să selectați cel mult "+e.maximum;return t+=" element",e.maximum!==1&&(t+="e"),t},noResults:function(){return"Nu au fost găsite rezultate"},searching:function(){return"Căutare…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/fi.js000066600000001277152141651100011545 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/es.js000066600000001547152141651100011556 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/es",[],function(){return{errorLoading:function(){return"La carga falló"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor, elimine "+t+" car";return t==1?n+="ácter":n+="acteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Por favor, introduzca "+t+" car";return t==1?n+="ácter":n+="acteres",n},loadingMore:function(){return"Cargando más resultados…"},maximumSelected:function(e){var t="Sólo puede seleccionar "+e.maximum+" elemento";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No se encontraron resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/uk.js000066600000002135152141651100011560 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/uk",[],function(){function e(e,t,n,r){return e%100>10&&e%100<15?r:e%10===1?t:e%10>1&&e%10<5?n:r}return{errorLoading:function(){return"Неможливо завантажити результати"},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Будь ласка, видаліть "+n+" "+e(t.maximum,"літеру","літери","літер")},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Будь ласка, введіть "+t+" або більше літер"},loadingMore:function(){return"Завантаження інших результатів…"},maximumSelected:function(t){return"Ви можете вибрати лише "+t.maximum+" "+e(t.maximum,"пункт","пункти","пунктів")},noResults:function(){return"Нічого не знайдено"},searching:function(){return"Пошук…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/az.js000066600000001275152141651100011557 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/az",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return t+" simvol silin"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(e){return"Sadəcə "+e.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/ja.js000066600000001520152141651100011530 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ja",[],function(){return{errorLoading:function(){return"結果が読み込まれませんでした"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" 文字を削除してください";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="少なくとも "+t+" 文字を入力してください";return n},loadingMore:function(){return"読み込み中…"},maximumSelected:function(e){var t=e.maximum+" 件しか選択できません";return t},noResults:function(){return"対象が見つかりません"},searching:function(){return"検索しています…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/ca.js000066600000001554152141651100011530 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ca",[],function(){return{errorLoading:function(){return"La càrrega ha fallat"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Si us plau, elimina "+t+" car";return t==1?n+="àcter":n+="àcters",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Si us plau, introdueix "+t+" car";return t==1?n+="àcter":n+="àcters",n},loadingMore:function(){return"Carregant més resultats…"},maximumSelected:function(e){var t="Només es pot seleccionar "+e.maximum+" element";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No s'han trobat resultats"},searching:function(){return"Cercant…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/da.js000066600000001462152141651100011527 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/da",[],function(){return{errorLoading:function(){return"Resultaterne kunne ikke indlæses."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Angiv venligst "+t+" tegn mindre";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Angiv venligst "+t+" tegn mere";return n},loadingMore:function(){return"Indlæser flere resultater…"},maximumSelected:function(e){var t="Du kan kun vælge "+e.maximum+" emne";return e.maximum!=1&&(t+="r"),t},noResults:function(){return"Ingen resultater fundet"},searching:function(){return"Søger…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/bg.js000066600000001612152141651100011530 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/bg",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Моля въведете с "+t+" по-малко символ";return t>1&&(n+="a"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Моля въведете още "+t+" символ";return t>1&&(n+="a"),n},loadingMore:function(){return"Зареждат се още…"},maximumSelected:function(e){var t="Можете да направите до "+e.maximum+" ";return e.maximum>1?t+="избора":t+="избор",t},noResults:function(){return"Няма намерени съвпадения"},searching:function(){return"Търсене…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/en.js000066600000001473152141651100011547 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Please delete "+t+" character";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Please enter "+t+" or more characters";return n},loadingMore:function(){return"Loading more results…"},maximumSelected:function(e){var t="You can only select "+e.maximum+" item";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No results found"},searching:function(){return"Searching…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/pt-BR.js000066600000001525152141651100012067 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt-BR",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Apague "+t+" caracter";return t!=1&&(n+="es"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Digite "+t+" ou mais caracteres";return n},loadingMore:function(){return"Carregando mais resultados…"},maximumSelected:function(e){var t="Você só pode selecionar "+e.maximum+" ite";return e.maximum==1?t+="m":t+="ns",t},noResults:function(){return"Nenhum resultado encontrado"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/vi.js000066600000001441152141651100011556 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/vi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vui lòng nhập ít hơn "+t+" ký tự";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vui lòng nhập nhiều hơn "+t+' ký tự"';return n},loadingMore:function(){return"Đang lấy thêm kết quả…"},maximumSelected:function(e){var t="Chỉ có thể chọn được "+e.maximum+" lựa chọn";return t},noResults:function(){return"Không tìm thấy kết quả"},searching:function(){return"Đang tìm…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/sr-Cyrl.js000066600000002053152141651100012473 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr-Cyrl",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Преузимање није успело."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Обришите "+n+" симбол";return r+=e(n,"","а","а"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Укуцајте бар још "+n+" симбол";return r+=e(n,"","а","а"),r},loadingMore:function(){return"Преузимање још резултата…"},maximumSelected:function(t){var n="Можете изабрати само "+t.maximum+" ставк";return n+=e(t.maximum,"у","е","и"),n},noResults:function(){return"Ништа није пронађено"},searching:function(){return"Претрага…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/ko.js000066600000001526152141651100011555 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="너무 깁니다. "+t+" 글자 지워주세요.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="너무 짧습니다. "+t+" 글자 더 입력해주세요.";return n},loadingMore:function(){return"불러오는 중…"},maximumSelected:function(e){var t="최대 "+e.maximum+"개까지만 선택 가능합니다.";return t},noResults:function(){return"결과가 없습니다."},searching:function(){return"검색 중…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/ru.js000066600000002147152141651100011572 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ru",[],function(){function e(e,t,n,r){return e%10<5&&e%10>0&&e%100<5||e%100>20?e%10>1?n:t:r}return{errorLoading:function(){return"Невозможно загрузить результаты"},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Пожалуйста, введите на "+n+" символ";return r+=e(n,"","a","ов"),r+=" меньше",r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Пожалуйста, введите еще хотя бы "+n+" символ";return r+=e(n,"","a","ов"),r},loadingMore:function(){return"Загрузка данных…"},maximumSelected:function(t){var n="Вы можете выбрать не более "+t.maximum+" элемент";return n+=e(t.maximum,"","a","ов"),n},noResults:function(){return"Совпадений не найдено"},searching:function(){return"Поиск…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/it.js000066600000001554152141651100011561 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/it",[],function(){return{errorLoading:function(){return"I risultati non possono essere caricati."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Per favore cancella "+t+" caratter";return t!==1?n+="i":n+="e",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Per favore inserisci "+t+" o più caratteri";return n},loadingMore:function(){return"Caricando più risultati…"},maximumSelected:function(e){var t="Puoi selezionare solo "+e.maximum+" element";return e.maximum!==1?t+="i":t+="o",t},noResults:function(){return"Nessun risultato trovato"},searching:function(){return"Sto cercando…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/nb.js000066600000001421152141651100011535 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nb",[],function(){return{errorLoading:function(){return"Kunne ikke hente resultater."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Vennligst fjern "+t+" tegn"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vennligst skriv inn ";return t>1?n+=" flere tegn":n+=" tegn til",n},loadingMore:function(){return"Laster flere resultater…"},maximumSelected:function(e){return"Du kan velge maks "+e.maximum+" elementer"},noResults:function(){return"Ingen treff"},searching:function(){return"Søker…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/km.js000066600000002051152141651100011545 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/km",[],function(){return{errorLoading:function(){return"មិនអាចទាញយកទិន្នន័យ"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="សូមលុបចេញ "+t+" អក្សរ";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="សូមបញ្ចូល"+t+" អក្សរ រឺ ច្រើនជាងនេះ";return n},loadingMore:function(){return"កំពុងទាញយកទិន្នន័យបន្ថែម..."},maximumSelected:function(e){var t="អ្នកអាចជ្រើសរើសបានតែ "+e.maximum+" ជម្រើសប៉ុណ្ណោះ";return t},noResults:function(){return"មិនមានលទ្ធផល"},searching:function(){return"កំពុងស្វែងរក..."}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/pl.js000066600000001635152141651100011560 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pl",[],function(){var e=["znak","znaki","znaków"],t=["element","elementy","elementów"],n=function(t,n){if(t===1)return n[0];if(t>1&&t<=4)return n[1];if(t>=5)return n[2]};return{errorLoading:function(){return"Nie można załadować wyników."},inputTooLong:function(t){var r=t.input.length-t.maximum;return"Usuń "+r+" "+n(r,e)},inputTooShort:function(t){var r=t.minimum-t.input.length;return"Podaj przynajmniej "+r+" "+n(r,e)},loadingMore:function(){return"Trwa ładowanie…"},maximumSelected:function(e){return"Możesz zaznaczyć tylko "+e.maximum+" "+n(e.maximum,t)},noResults:function(){return"Brak wyników"},searching:function(){return"Trwa wyszukiwanie…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/tr.js000066600000001320152141651100011561 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tr",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" karakter daha girmelisiniz";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="En az "+t+" karakter daha girmelisiniz";return n},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(e){var t="Sadece "+e.maximum+" seçim yapabilirsiniz";return t},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/sr.js000066600000001652152141651100011570 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Preuzimanje nije uspelo."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Obrišite "+n+" simbol";return r+=e(n,"","a","a"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Ukucajte bar još "+n+" simbol";return r+=e(n,"","a","a"),r},loadingMore:function(){return"Preuzimanje još rezultata…"},maximumSelected:function(t){var n="Možete izabrati samo "+t.maximum+" stavk";return n+=e(t.maximum,"u","e","i"),n},noResults:function(){return"Ništa nije pronađeno"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/he.js000066600000001667152141651100011546 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/he",[],function(){return{errorLoading:function(){return"שגיאה בטעינת התוצאות"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="נא למחוק ";return t===1?n+="תו אחד":n+=t+" תווים",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="נא להכניס ";return t===1?n+="תו אחד":n+=t+" תווים",n+=" או יותר",n},loadingMore:function(){return"טוען תוצאות נוספות…"},maximumSelected:function(e){var t="באפשרותך לבחור עד ";return e.maximum===1?t+="פריט אחד":t+=e.maximum+" פריטים",t},noResults:function(){return"לא נמצאו תוצאות"},searching:function(){return"מחפש…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/hr.js000066600000001507152141651100011554 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hr",[],function(){function e(e){var t=" "+e+" znak";return e%10<5&&e%10>0&&(e%100<5||e%100>19)?e%10>1&&(t+="a"):t+="ova",t}return{errorLoading:function(){return"Preuzimanje nije uspjelo."},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Unesite "+e(n)},inputTooShort:function(t){var n=t.minimum-t.input.length;return"Unesite još "+e(n)},loadingMore:function(){return"Učitavanje rezultata…"},maximumSelected:function(e){return"Maksimalan broj odabranih stavki je "+e.maximum},noResults:function(){return"Nema rezultata"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/mk.js000066600000001723152141651100011552 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/mk",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Ве молиме внесете "+e.maximum+" помалку карактер";return e.maximum!==1&&(n+="и"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Ве молиме внесете уште "+e.maximum+" карактер";return e.maximum!==1&&(n+="и"),n},loadingMore:function(){return"Вчитување резултати…"},maximumSelected:function(e){var t="Можете да изберете само "+e.maximum+" ставк";return e.maximum===1?t+="а":t+="и",t},noResults:function(){return"Нема пронајдено совпаѓања"},searching:function(){return"Пребарување…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/el.js000066600000002154152141651100011542 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/el",[],function(){return{errorLoading:function(){return"Τα αποτελέσματα δεν μπόρεσαν να φορτώσουν."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Παρακαλώ διαγράψτε "+t+" χαρακτήρ";return t==1&&(n+="α"),t!=1&&(n+="ες"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Παρακαλώ συμπληρώστε "+t+" ή περισσότερους χαρακτήρες";return n},loadingMore:function(){return"Φόρτωση περισσότερων αποτελεσμάτων…"},maximumSelected:function(e){var t="Μπορείτε να επιλέξετε μόνο "+e.maximum+" επιλογ";return e.maximum==1&&(t+="ή"),e.maximum!=1&&(t+="ές"),t},noResults:function(){return"Δεν βρέθηκαν αποτελέσματα"},searching:function(){return"Αναζήτηση…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/ar.js000066600000001567152141651100011553 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ar",[],function(){return{errorLoading:function(){return"لا يمكن تحميل النتائج"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="الرجاء حذف "+t+" عناصر";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="الرجاء إضافة "+t+" عناصر";return n},loadingMore:function(){return"جاري تحميل نتائج إضافية..."},maximumSelected:function(e){var t="تستطيع إختيار "+e.maximum+" بنود فقط";return t},noResults:function(){return"لم يتم العثور على أي نتائج"},searching:function(){return"جاري البحث…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/fr.js000066600000001606152141651100011552 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fr",[],function(){return{errorLoading:function(){return"Les résultats ne peuvent pas être chargés."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Supprimez "+t+" caractère";return t!==1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Saisissez "+t+" caractère";return t!==1&&(n+="s"),n},loadingMore:function(){return"Chargement de résultats supplémentaires…"},maximumSelected:function(e){var t="Vous pouvez seulement sélectionner "+e.maximum+" élément";return e.maximum!==1&&(t+="s"),t},noResults:function(){return"Aucun résultat trouvé"},searching:function(){return"Recherche en cours…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/fa.js000066600000001754152141651100011535 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fa",[],function(){return{errorLoading:function(){return"امکان بارگذاری نتایج وجود ندارد."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="لطفاً "+t+" کاراکتر را حذف نمایید";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="لطفاً تعداد "+t+" کاراکتر یا بیشتر وارد نمایید";return n},loadingMore:function(){return"در حال بارگذاری نتایج بیشتر..."},maximumSelected:function(e){var t="شما تنها می‌توانید "+e.maximum+" آیتم را انتخاب نمایید";return t},noResults:function(){return"هیچ نتیجه‌ای یافت نشد"},searching:function(){return"در حال جستجو..."}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/sv.js000066600000001422152141651100011567 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sv",[],function(){return{errorLoading:function(){return"Resultat kunde inte laddas."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vänligen sudda ut "+t+" tecken";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vänligen skriv in "+t+" eller fler tecken";return n},loadingMore:function(){return"Laddar fler resultat…"},maximumSelected:function(e){var t="Du kan max välja "+e.maximum+" element";return t},noResults:function(){return"Inga träffar"},searching:function(){return"Söker…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/hu.js000066600000001327152141651100011557 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/id.js000066600000001360152141651100011534 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/id",[],function(){return{errorLoading:function(){return"Data tidak boleh diambil."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Hapuskan "+t+" huruf"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Masukkan "+t+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(e){return"Anda hanya dapat memilih "+e.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})();assets/js/select2/i18n/is.js000066600000001405152141651100011553 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/is",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vinsamlegast styttið texta um "+t+" staf";return t<=1?n:n+"i"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vinsamlegast skrifið "+t+" staf";return t>1&&(n+="i"),n+=" í viðbót",n},loadingMore:function(){return"Sæki fleiri niðurstöður…"},maximumSelected:function(e){return"Þú getur aðeins valið "+e.maximum+" atriði"},noResults:function(){return"Ekkert fannst"},searching:function(){return"Leita…"}}}),{define:e.define,require:e.require}})();assets/js/jquery-email-confirmation.js000066600000002653152141651100014120 0ustar00function wppb_display_page_select( value ){ if ( value == 'yes' ){ jQuery ( '#wppb-settings-activation-page' ).show(); jQuery ( '.dynamic1' ).show(); }else{ jQuery ( '#wppb-settings-activation-page' ).hide(); jQuery ( '.dynamic1' ).hide(); } } function wppb_display_page_select_aa( value ){ if ( value == 'yes' ) jQuery ( '.dynamic2' ).show(); else jQuery ( '.dynamic2' ).hide(); } function wppb_display_page_select_re( value ){ if ( value == 'yes' ) jQuery ( '.dynamic3' ).show(); else jQuery ( '.dynamic3' ).hide(); } function wppb_display_page_select_cr( value ){ if ( value == 'yes' ) jQuery ( '.dynamic4' ).show(); else jQuery ( '.dynamic4' ).hide(); } jQuery(function() { if ( ( jQuery( '#wppb_settings_email_confirmation' ).val() == 'yes' ) || ( jQuery( '#wppb_general_settings_hidden' ).val() == 'multisite' ) ){ jQuery ( '#wppb-settings-activation-page' ).show(); jQuery ( '.dynamic1' ).show(); }else{ jQuery ( '#wppb-settings-activation-page' ).hide(); jQuery ( '.dynamic1' ).hide(); } if ( jQuery( '#adminApprovalSelect' ).val() == 'yes' ) jQuery ( '.dynamic2' ).show(); else jQuery ( '.dynamic2' ).hide(); if ( jQuery( '#rolesEditorSelect' ).val() == 'yes' ) jQuery ( '.dynamic3' ).show(); else jQuery ( '.dynamic3' ).hide(); if ( jQuery( '#contentRestrictionSelect' ).val() == 'yes' ) jQuery ( '.dynamic4' ).show(); else jQuery ( '.dynamic4' ).hide(); });assets/misc/plugin-compatibilities.php000066600000037522152141651100014200 0ustar00' . cptch_display_captcha_custom() . '' . $output; } elseif( !empty( $cptch_options['forms']['wp_register']['enable'] ) && $cptch_options['forms']['wp_register']['enable'] ) $output = '
      • ' . cptch_display_captcha_custom() . '
      • ' . $output; } return $output; } add_filter( 'wppb_after_form_fields', 'wppb_captcha_add_form_form_builder', 10, 2 ); } /* * Function that displays the Captcha error on register form * */ if( function_exists('cptch_register_check') ) { function wppb_captcha_register_form_display_error() { $cptch_options = get_option('cptch_options'); if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'register' && ( ( !empty( $cptch_options['cptch_register_form'] ) && 1 == $cptch_options['cptch_register_form'] ) || ( !empty( $cptch_options['forms']['wp_register']['enable'] ) && $cptch_options['forms']['wp_register']['enable'] ) ) ) { $result = cptch_register_check(new WP_Error()); if ($result->get_error_message('captcha_error')) echo '

        ' . $result->get_error_message('captcha_error') . '

        '; } } add_action('wppb_before_register_fields', 'wppb_captcha_register_form_display_error' ); } /* * Function that validates captcha value on register form * */ if( function_exists('cptch_register_check') ) { function wppb_captcha_register_form_check_value($output_field_errors) { $cptch_options = get_option('cptch_options'); if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'register' && ( ( !empty( $cptch_options['cptch_register_form'] ) && 1 == $cptch_options['cptch_register_form'] ) || ( !empty( $cptch_options['forms']['wp_register']['enable'] ) && $cptch_options['forms']['wp_register']['enable'] ) ) ) { $result = cptch_register_check(new WP_Error() ); if ($result->get_error_message('captcha_error')) $output_field_errors[] = $result->get_error_message('captcha_error'); } return $output_field_errors; } add_filter('wppb_output_field_errors_filter', 'wppb_captcha_register_form_check_value'); } /* * Function that ads the Captcha HTML to PB custom recover password form * */ if ( function_exists('cptch_display_captcha_custom') ) { function wppb_captcha_add_form_recover_password($output, $username_email = '') { $cptch_options = get_option('cptch_options'); if (!empty( $cptch_options['cptch_lost_password_form'] ) && 1 == $cptch_options['cptch_lost_password_form']) { $output = str_replace('', '
      • ' . cptch_display_captcha_custom() . '
      • ' . '', $output); } elseif( !empty( $cptch_options['forms']['wp_lost_password']['enable'] ) && $cptch_options['forms']['wp_lost_password']['enable'] ){ $output = str_replace('', '
      • ' . cptch_display_captcha_custom() . '
      • ' . '', $output); } return $output; } add_filter('wppb_recover_password_generate_password_input', 'wppb_captcha_add_form_recover_password', 10, 2); } /* * Function that changes the messageNo from the Recover Password form * */ if( function_exists('cptch_register_check') ) { function wppb_captcha_recover_password_message_no($messageNo) { $cptch_options = get_option('cptch_options'); if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'recover_password' && ( ( !empty( $cptch_options['cptch_lost_password_form'] ) && 1 == $cptch_options['cptch_lost_password_form'] ) || ( !empty( $cptch_options['forms']['wp_lost_password']['enable'] ) && $cptch_options['forms']['wp_lost_password']['enable'] ) ) ) { $result = cptch_register_check(new WP_Error()); if ($result->get_error_message('captcha_error') || $result->get_error_message('captcha_error')) $messageNo = ''; } return $messageNo; } add_filter('wppb_recover_password_message_no', 'wppb_captcha_recover_password_message_no'); } /* * Function that adds the captcha error message on Recover Password form * */ if( function_exists('cptch_register_check') ) { function wppb_captcha_recover_password_displayed_message1($message) { $cptch_options = get_option('cptch_options'); if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'recover_password' && ( ( !empty( $cptch_options['cptch_lost_password_form'] ) && 1 == $cptch_options['cptch_lost_password_form'] ) || ( !empty( $cptch_options['forms']['wp_lost_password']['enable'] ) && $cptch_options['forms']['wp_lost_password']['enable'] ) ) ) { $result = cptch_register_check(new WP_Error()); $error_message = ''; if ($result->get_error_message('captcha_error')) $error_message = $result->get_error_message('captcha_error'); if( empty($error_message) ) return $message; if ( ($message == '

        wppb_captcha_error

        ') || ($message == '

        wppb_recaptcha_error

        ') ) $message = '

        ' . $error_message . '

        '; else $message = $message . '

        ' . $error_message . '

        '; } return $message; } add_filter('wppb_recover_password_displayed_message1', 'wppb_captcha_recover_password_displayed_message1'); } /* * Function that changes the default success message to wppb_captcha_error if the captcha * doesn't validate so that we can change the message displayed with the * wppb_recover_password_displayed_message1 filter * */ if( function_exists('cptch_register_check') ) { function wppb_captcha_recover_password_sent_message_1($message) { $cptch_options = get_option('cptch_options'); if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'recover_password' && ( ( !empty( $cptch_options['cptch_lost_password_form'] ) && 1 == $cptch_options['cptch_lost_password_form'] ) || ( !empty( $cptch_options['forms']['wp_lost_password']['enable'] ) && $cptch_options['forms']['wp_lost_password']['enable'] ) ) ) { $result = cptch_register_check( new WP_Error() ); if ($result->get_error_message('captcha_error') ) $message = 'wppb_captcha_error'; } return $message; } add_filter('wppb_recover_password_sent_message1', 'wppb_captcha_recover_password_sent_message_1'); } /**************************************************** * Plugin Name: Easy Digital Downloads * Plugin URI: https://wordpress.org/plugins/easy-digital-downloads/ ****************************************************/ /* Function that checks if a user is approved before loggin in, when admin approval is on */ function wppb_check_edd_login_form( $auth_cookie, $expire, $expiration, $user_id, $scheme ) { $wppb_generalSettings = get_option('wppb_general_settings', 'not_found'); if( $wppb_generalSettings != 'not_found' ) { if( wppb_get_admin_approval_option_value() === 'yes' ) { if( isset( $_REQUEST['edd_login_nonce'] ) ) { if( wp_get_object_terms( $user_id, 'user_status' ) ) { if( isset( $_REQUEST['edd_redirect'] ) ) { wp_redirect( esc_url_raw( $_REQUEST['edd_redirect'] ) ); edd_set_error( 'user_unapproved', __('Your account has to be confirmed by an administrator before you can log in.', 'profile-builder') ); edd_get_errors(); edd_die(); } } } } } } add_action( 'set_auth_cookie', 'wppb_check_edd_login_form', 10, 5 ); add_action( 'set_logged_in_cookie', 'wppb_check_edd_login_form', 10, 5 ); /**************************************************** * Plugin Name: Page Builder by SiteOrigin && Yoast SEO * Plugin URI: https://wordpress.org/plugins/siteorigin-panels/ && https://wordpress.org/plugins/wordpress-seo/ * When both plugins are activated SEO generates description tags that execute shortcodes because of the filter on "the_content" added by Page Builder when generating the excerpt ****************************************************/ if( function_exists( 'siteorigin_panels_filter_content' ) ){ add_action( 'wpseo_head', 'wppb_remove_siteorigin_panels_content_filter', 8 ); function wppb_remove_siteorigin_panels_content_filter() { global $post; if( !empty( $post->post_content ) ) { if (has_shortcode($post->post_content, 'wppb-register') || has_shortcode($post->post_content, 'wppb-edit-profile') || has_shortcode($post->post_content, 'wppb-login') || has_shortcode($post->post_content, 'wppb-list-users')) remove_filter('the_content', 'siteorigin_panels_filter_content'); } } add_filter( 'wpseo_head', 'wppb_add_back_siteorigin_panels_content_filter', 50 ); function wppb_add_back_siteorigin_panels_content_filter() { global $post; if( !empty( $post->post_content ) ) { if (has_shortcode($post->post_content, 'wppb-register') || has_shortcode($post->post_content, 'wppb-edit-profile') || has_shortcode($post->post_content, 'wppb-login') || has_shortcode($post->post_content, 'wppb-list-users')) add_filter('the_content', 'siteorigin_panels_filter_content'); } } } /**************************************************** * Plugin Name: WPML * Compatibility with wp_login_form() that wasn't getting the language code in the site url ****************************************************/ add_filter( 'site_url', 'wppb_wpml_login_form_compatibility', 10, 4 ); function wppb_wpml_login_form_compatibility( $url, $path, $scheme, $blog_id ){ global $wppb_login_shortcode; if( defined( 'ICL_LANGUAGE_CODE' ) && $wppb_login_shortcode ){ if( $path == 'wp-login.php' ) { if( !empty( $_GET['lang'] ) ) return add_query_arg('lang', ICL_LANGUAGE_CODE, $url); else{ if( function_exists('curl_version') ) { /* let's see if the directory structure exists for wp-login.php */ $headers = wp_remote_head( trailingslashit( get_home_url() ) . $path, array( 'timeout' => 2 ) ); if (!is_wp_error($headers)) { if ($headers['response']['code'] == 200) { return trailingslashit( get_home_url() ) . $path; } } } return add_query_arg('lang', ICL_LANGUAGE_CODE, $url); } } } return $url; } /**************************************************** * Plugin Name: ACF * Compatibility with Role Editor where ACF includes it's own select 2 and a bit differently then the standard hooks ****************************************************/ add_action( 'admin_enqueue_scripts', 'wppb_acf_and_user_role_select_2_compatibility' ); function wppb_acf_and_user_role_select_2_compatibility(){ $post_type = get_post_type(); if( !empty( $post_type ) && $post_type == 'wppb-roles-editor' ) remove_all_actions('acf/input/admin_enqueue_scripts'); } /**************************************************** * Theme Enfold * Compatibility with Enfold theme that removes the wp.media scripts from the frontend for some reason starting from version 4.3 From what I understand they only allow it on media formats or posts that contain media embeds ****************************************************/ if( ! function_exists( 'av_video_assets_required' ) ){ function av_video_assets_required(){ return true; } } /**************************************************** * Secupress Compatibility * Compatibility with Secupress plugin when activating Move the login and admin pages ****************************************************/ if( isset( $_POST['wppb_login'] ) ) { remove_action('login_init', 'secupress_move_login_maybe_deny_login_page', 0); remove_action('secure_auth_redirect', 'secupress_move_login_maybe_deny_login_page', 0); } /**************************************************** * Divi Pagebuilder Compatibility * Compatibility with Divi Pagebuilder and content restriction. Basically we try to force a restricted page that was created with the pagebuilder to display as a normal page ****************************************************/ if( function_exists('et_setup_theme') ) { add_filter('get_post_metadata', 'wppb_divi_page_builder_compatibility', 100, 4); function wppb_divi_page_builder_compatibility( $metadata, $object_id, $meta_key, $single ){ if (!is_admin()) { if (isset($meta_key) && '_et_pb_use_builder' == $meta_key) { if (wppb_content_restriction_filter_content('not_restricted', get_post($object_id)) != 'not_restricted') { return 'off'; } } if (isset($meta_key) && '_wp_page_template' == $meta_key) { if (wppb_content_restriction_filter_content('not_restricted', get_post($object_id)) != 'not_restricted') { return 'default'; } } } // Return original if the check does not pass return $metadata; } }assets/misc/fallback-page.php000066600000001614152141651100012165 0ustar00 <?php echo htmlspecialchars( $site_name, ENT_QUOTES ); ?>

        '. htmlspecialchars( strip_tags( $message ) ). '

        '; ?> here to return to the main site'; ?> assets/images/pb_fields.png000066600000035572152141651110011765 0ustar00PNG  IHDR y!tEXtSoftwareAdobe ImageReadyqe< iTXtXML:com.adobe.xmp ti7IDATx py,Q XMb8J 6p¶bHGE#J"εGw* iiedCsj5F*x UahHPV[$=g . vϞsv|s| gΜ!鿵kBФtttttttttNNd>LenAPYZ|-Qc]iv,.^TlJclTcV"NzY@N³Pz7 kVVڿyaB^aB86("6tvQsz[AZfKrZ!JX !% `<:#: QLXZؽڥtyh[L ;"Kd[e۷$ߝg9e<`Ԃ ~l$o_tː'wo0j8p񯱱on߾:%ÜۿE+U,{'~,S 8TpB'' So`UY[ ,+֗9w|N*&=ܮF6쭲:Ss N' QHK6j@~E8@ P9;kFI"3PZ`3noie8kc.KSP:K~[1(wv6w`3qyB<4˴҇_q.k/ ꩛N$Ժ!;s i.Yř{}vْƥ[(PO=q)xꩧ='?U.[Zdbzؒ/k.03 yc?y?;^BGzc|dϡ'nޟc/6ȸ'>ׯA, .)k܉{ǣQ (ԁN:a?X({;9_'1,ND'ƾۣ1iM;HfZN-d]pԒYs;>/#ߕʞ>|:|@aO(.ucC\E' H0 COҀqyŚ=)u:ם`ȱ7HJHj(G$dvyق۩;Ħy$%>ɢ{}d0%^Sw0&ȁ''aWW"tz}#Hӡ.vi"Ü. wqO\Y$= W뱱VrWSStL|:S> p?kX!CΜQEr.ց"f*BxxéT,H% 0?H,ӄNMI齦&=⋇D%͉#y?ksNfngX/ %`F X˥bN~XA@bKbq @X` =~0̙3k׮Ņe!C<SO8p·~]}ɞ7tݒ;rLaj@'N@MXB'tT\`[>Os dEڵât7.+di?c9;PN~=.XT*WQZٟEarrܹs/^ticpuCCܜ2ř&&&b ('@sh`@;` NxxW-3ME:jmLlt0eH ks6; Նu:w0fBAW{K}7oR'@Ma6bj0 WiA*H-L&zH6&m1>AJdydt=Z0b)**Ķm۶nݺ~kz}g˵ǡR'3ifhc,SAΛ$NB̚{J1`ʉOE0!"D^(J@hz3@j3FK+J{J96u ?̫J8%+fhW#@'0 tε Y\<[oR @'VS,;ݥ ..N+\-ȪXLpQ  ­N*/ipY8*܆`8$XWRg920`]q:$0>,{Wt)y/LN`8Ԟ}CGl|WGr=ΘX6ީSΟ?ܘʕ+o[o:e\D8{tIo8Um# O_ JQ/Pg?j*-,}=KLMM]4>66@ubJ{uKS۾l >s{j~Wo^5 7m#]|=O;eGӾ^S?枾:A"U»/ sx$avv&!V !H{KC{uUu08]}' 4{ZbEѻ̒7tc0K}d_,,t8⋇Gm%{éKVgrWsX1PnAm6.wXyOo7[g'f5^Wg.O6xCi_~_=wbX'3:brr`.Olr-bo#"sWO_[6UuY*N;L7 Z; LphT1a SNWN|au;w!>F0͑WBNMpKjԯF.cekX[JQ.?(j W_}Y_xÊ\רp6PeiUӹsWs5Cƕ!KvCb9V~'#6Aٓ*PY]u}~}|@>~Mj:9:ew} kmeeљXqjן O_vb^3?q_!t=_.!׭m&"?WzKœCB S+c|y^N\][srCoz,郏ۮ&g|H%zUHfQѕNDu?;󋏦..ij?aPvso_Xg|* R'fnju m1̇qN@_ėnzxC&OltE^ ). U9rWgNL;Z֬Q3_Z6f5iY ɄvHâM \M?6zoA5`]Mu.n|?;[Q}\94KY:!z{*V ?W([lC^ډ 7Ugty)nHJtjTF'(Q$s"`pdqj^oK7pRJ:M†PbAdB/W7qE>XnC `dHzg$կX\T)P?%ވ|;(W5׊n |ƺQ  R| Jq5A XO8fܢzr,:i 1{urk"zB⸄'H4,829ċnN;]WΎMO*P 8;Ӆ/DUB+Wh2FY!Q)TM‘vETU yO'N?ɿQ*-^z]?^6ԼXԬY4ԣBH2A:`Y~%ѕi@Ǡd]Qie֊ru(#i_CHj 4׭u[ٻc!IMa;c)FOJ DŽYՃI I'H `"0 p -QFR2nwC%N9TmCFZ @@ Tٷhts ʅuʘ9A6Ci_;s\2ʹQeq'PaN re$vqXswɂSn,7'Ć30/a6)&AS`?xSĝ@'@'@'@'@' f8{,.6fn}.]Zr%V#i zhI,D TǮY0W&(m9F!"ͨQUAgLT^N̤Ζn^6KG`_O uhqP:=Up)j4YeLO$^/o{S's9jj8%^3;caP춑A*]q'PeߢyOu< xTr~a\4:lzB$yͫM` AK =2Z*Tĝ@BSPDN=Aw|Xsw&X,ק%5V}ތ=?Lݝ1֘{zY=e"̷MaJ{:>>nGܩDo}t@`RGC[0$á"P9w2􋽁/];(CokudVT=l +fk18c|6{z*XL<&іX;!}`Ǔä Է2Dc^?a^9sڟ#3GO/vlm(?CQJvp>ܳ/ޫڕp.Gmi!2Bwte8-K(6Ty6 b)H5,ƺhb7\G)uBv `jT[*cWڿ|V=y #, ׭,:dFbB}T%tb3P?QINg3dx}X^}8,LU1#j #O h8,N!K4(. ,ȎhlY)-⺊S%)C.(o}P"ݩm0?}rԵF-RߚO%X*Dy=y7y;G 1Lf)Hu; 3S% G\Vu_Z\`OU s]%UbRA'v?N+(r;ORf<hh;UXZѠxrzejlVZRVI xR՟vKS?\;$ԣޭxˁ,l‚l!-d ZyOYNźR 3C)0HvbtQ*IN|'GufӂLg5JH~ Ehp$8؆XX:XsO^`Z +=eFOg+Jz2JbX&ֿH$d |oQ,2OʩV?hi9PuF<It:aTd3M^S.Қ`U{(brB(xN>T;*q'#uZ]R>RBAZa;&`*jӢ+dԩύtbXj^4'VzQY0/ iqMŬX yA+LX5)ls(dNհҼX̉U keBRJU@S0bJt"(խ.X*R cXl3NWG 5IsЯ8v=]N<FyO+oXQgN'XӔAl|c먗GH- q'Pi\St1(M wSLo*fTGnT6Bj]f)B9bѐ^!iJ`( ">@bsZd"t(-/W-v#t"\z~]~Su#Rt/@'XS(2r Y* r&:S GnTP=0>RIS53:N%baV'ԹM!Տܨ:lXX!i=6|O"0LoQe<zU\If7r {ZFI*AP?AnTPMwƊyO'c"@HHXT rbyO+V<]ecռ%rjX0JaQk"9Q8\-~P: :>ww^} ]wuljp ˗/B'fgg#->GWq'dI*mK:q-_b__p1wD Ԑr=ՠYVq'*EN4 ;P1p>EPoo(F뮻҈T^%Bq_$Dq)?Inl&)7C#OQ(fggC_y]q-nibb%D"N|Qx*uv + )?wEČC %} qtȫld<o2m ~L(w?@ID F+` 㩠 JEQ9[IL5IuX5Oݣ8 \JJ RRHxBԗJUYa>]G4vE"$ĥTW)q'PiX0I.e<{b* ).[ *)/茧bS* (@L5TW (<;(E* )?`llEeg^N7s脦+ۿs`#,љS7nFç),C8YzU9>j4 f0jav9O,m>;GET z>S;[9|Rw㮣-N,ϐv 2[w| TiglTX' T`AϮxB,GsW$:@v9]P8Xl0K=5naڧdJa 1qyUgB&+zJ^=t³k*ֽdMw)y& T˜"m?j!=50%]4E,q ĝʬi'Gث;`sOSƋ-Tڅ "%SFtBqggp +weJhTu0twd`+?h?eR(8qlNQ&NɻrE7w؈xg 9yOˌOcuԀbDSYؽP*-rDgaE*Vsʿ́?:::::@QL  aU9B rPJuu5JTĝ@QNةޣ SUIi.+AL@("4>>nIY~}ԡKoS&iWL_p-W`^*V٧x5IlU ;M&4̂ @ͱyA TC݊dlpA/">\(`Ö%4 s>Y0 PJdyfOZ(Ű{B7aEKyO/0] ^}Ub߼`aRZSZ)NS `)5Hr t=NFכ":iI`NmyAZץ~3&'?HMq:̩:Ӊ/uW_>OgHBuyB8Q8dNRp)32`8_f{ X( i&)A*d+HNC^"9P:/?soZt39JdO5;ncSrnUfR̜ [8O~D;uP<[л՛Xp~;.bt?FSdHY@AÙ3g֮-<ٳf.\XjW_A\ `#bfKW9f&''WX~7}5k8} ::*A=@'M͞ =nU`NG9#^<(qdw!i$M_|N>0+O ԧk\b|Inv% `uZ"iJ6 $CE݅If_$]!=d-<@z.:P5 , A$SfJ&|n:OpqHϦ/h/渤pS'YEښ!pH*β_ #E: Ag/VW,..: P?#$,nMu/R\whW#%nBS{L@'a#? ? ٜ{$&H~\Rp#[H 7$2tf\$&|NUcʰ:i[r4;.:# H?#$2_#I'b,uxƴ^s,:!\b-.\0/щ+VSI,m 'ɟ<>LN.Ӈ?:::@$Þwh'uհס; 8L֕1SuRl="g|S^\z NP%ewCuA~y.%Y=yq'VH^< moH܅p?@e''a/o鉥TJ9ÞA HX`0J9=p֐"1K )|bghTtp rRa|`4jCKڜs"wz};OTG`_O'dPF$ ǹA-c%G9N|' l˩Ljx95T=:菓`LRÆ|P :̤[XT2iK:DH/ڦUDC1;ZxpsNíR"Ds^xW0m ?IhqdXIgN/dsyG6ןf`Ja\N=|$5$Zr6<v"hl})@p*&3)kCHonΑT=ѯ]6NX49sfڵ˝={o#OQ%8z(V;gzaAe|绻fffgYwi)ZlŊ~G]f 7͏-~,,YYvn֖gm3yWXzwcS0Ew`rftNɃحͧ~ZK፽z:ܽq76BL !ASSӥKHccE/Zdu]{x7֪׬Zb|̂8vOW<{-{Nl.V&Gs,FssoyybT$֬Y3o0+wDw ^/d:|󅍻=nFRog2Ru`i+Bxvqus;efh50ǭҲtROH_}qѼH%7U7 Ӊ[8bOXT+dǞn~EP;O8ei=2w(cۑ{_;]B[3xtv{-} U K4 o|3;8,X{Ͽfy7O=Hn/-=GvSuV29%ߖlZܾ%P[k޾%}u |P'w~Cߊu ̂3xn߼}w>Vkȧ*`4 } ̂'<;v^ls6aFw[d3i*K 'JpnP* ֘c R:}f!ZX!؇)Z6)S с6tˡ7:Z}KZ{أB3cfR [I|'ԺG43L'QZ[) @BWfL+\;^79<0>ŀH8s왢`+, 1T'(xkh;c6f [),oqoW(Y [om۶뮻goذg>LB=y~?tXL8:8]|j";}n8THrq7aԊ1} J'^x!lmm;gf pbTܢ sDZLDh! Z) KCT'-Z$]O:nnQ.RLR6)yʑn+el}۲e Bf'Pe{]RS…79>`(VW٨a0H@tQ)'iD`;=/_\,hswG3!y!PNoHP7 M[IENDB`assets/images/pencil_delete.png000066600000000706152141651110012621 0ustar00PNG  IHDRagAMA7tEXtSoftwareAdobe ImageReadyqe<XIDAT8c?%B@,$_\"_H>YoM>IC??'__`J6h50A\/E_x4hӟ*E~c8h)w??~A6q ~c> fPt(fgI8 Ѝ hKÿoz33n&u8 ڞ*m g)ÿDj~gjš ? L|@ fIp{9\nmnj bǹ߁ H?fK qg&Lة IENDB`assets/images/icon_delete_disabled.png000066600000002012152141651110014116 0ustar00PNG  IHDRatEXtSoftwareAdobe ImageReadyqe< IDATxڤS9oQEE% p*t?+*h@)I,w 78]}dEJFy}{ncvl6w@ 6{b6 T*k P, 2Go.댁EQpHjt:r9h4E"́ JQޓ4vT*0͘trVXVn$^dZ%TUX.L& Ikx<FhF!" Z-F$i4zJP(`˞BT2i$$㤄gsb;tJ}m.P:5l 1U:eǁ`AsP??:zX,tm_d2AT"́7#epԆLF[f`VA6e m( 8zvy0n6bDh02xAnj]=Eܻ߃K$ʷ0ӿOin}^dIENDB`]}IDATxc`]`|8:Po;m*Ud׭<џp]xۺ`b @š`檹 @S [3 . l ._; Z͌ vz657l9DcϒE;!NU(vEg3Rxg_Ƙ IENDB`assets/images/pb-pms-cross-promotion-icon.png000066600000026472152141651110015334 0ustar00PNG  IHDR,,"tEXtSoftwareAdobe ImageReadyqe<hiTXtXML:com.adobe.xmp ^)hIDATx |T箳f¾ **XP֊Bն.VJj}[W^ֶ׭VET". "-$d}93I@%!} ɝ;9s6,x d!6]d% + d1,&BB@@A!b!YL d1,&BB@@A!b!YL d1,&BB@@A!b!YL d1,&BB@@A!b!YL d1,&BB@@A!b!YL @Bj @ &B BPa!! TBB*l!!6 @@@@AM @ &B BPa!! TBB*l!!6 @@@@AM @ &B BPa!! TBB6@ @ !!BB@ @ !!BB@ @ !#%@Y'ljc4fAD6Qd=E|Q1k*f( `pH:g^}" F4|Zcҋɲ ZE+ "TTr.7@{ڃ=z(@hD-Eq_ZԣB84aV_6@yO{ACuN"|<W]YaW gLbw9|{ @. ConKA wC  9y%P'08NL3$h@]ךQcw| ȉ SɷD+*"/Q0/.dzXF+s {:CH\j3;xooԨ]AC,X=@<v̡Fql}kiק*dOǹ- ( ?\OO¬8nOٯnzWDV.E2]:aN^p]*yOqڑ:s~yK{# 6?%09|asNY|Տ҃{Ыw Eg蝅o4=rck3Ro Η&ό|Puo8ppM$95 k-*xQ1;]tAb[7ǝnu&֯r.WO}Ԗ߾Iw4؆v)ķ~\_Lhc(F-&lo񭛄mE+e՚!~ee$0r1qL;Ck 㕽SlYy%,xzskBy P]MqFdmWٛ;n/ӽT^USf(q_7"瓧{ H xҚñO6 t#7R_]FF M]+xqG*K2o0t}y_T|!%uGP8wWkOuS5k oy&LfOTk>M;=Sg#藅 5-ܓ$Mؙ9A>ɗf J:-믘yB$Ж#â/ 7o--dj!0mt唟߻J9Za!5>x'#Qc;;]b~Ҡ%k{64Ðlk6b<\HH s} w7"يmX}>#Skn>l]%ڑ:e^plz=@7:>Ґ"ퟵ;!';A?)NvrA Uea6[rҲzAٹݖE B(25C&ê~2by}d㌳+ƫTȷCF(hkxgrD՚Rnaeo\6œB'PؽB!=Jn(ʺA Kh2Pm YN*z2_R;:A,k>7Q[Bf}™%߿ϹyCݷ[̔FXz/[+#{'0Dߊ]N/&)Hxw9vJ'mZtkW;ΤɓҤ)[_4ݺȈEOx-iUOdgҳՎlN=47X^l= %3˿l(}- Yx囉tӏlT>$C KV٢k?к5R?Vg z`9Ƌ2+Kd;r.Od ِ:t܋XUL4%6kޫGڢ@HwlS5#(.՚mҭ#륾:{”C|'ְ &UiÁPZIY:%\|DnoOWF}v[MD4txU?4_ >w7zvόqɿ %p_2M]l<"|)%?yp5ghzfVTm9;6U*xr_V~e&es\~!5ܔM BU[4[(v.a;r{hќN GKm#w~:bigO-ijAynZ/eW u}uYe}҈Nxa( \ o4lz+ z(&S>( Tߋ}b[y^mzI~M -`'.CS=|Iu/ L`+|I) yN+z="$vi엛\sWGi0|ߥl— VĚ#zCɭkz_ǜx֏Fj<@kOW }i]G+Ս;cv,x pwO?}{z) :vӾ7'M /] ;r,}iD4lG:a3|~<5kVE?|Pd_L6'fHV f3]3f[)Zw#ЖسVqǽɜ15o,GvWvJ'i](8+/S 8[kّX2p]5$V%q$!mT?~s3CzzQ{V]9L*_11i2}|-v+w¼;]cJ˅~#ivpئu?ߧ4>𒨧&/9aSZ !шh$JѠH"y5a:\Q4bv5;ptkW-L c~4ktJiTvw=υzf1G- h/*vϿDsץ#WSN)o۸|{VO Bcf9&LtL:>nޔXĕODּ=8_\ʒug~\26{n( %?cn3d$Svt|sOX0FES69s7_ \;r/)⁕ A_lrO;5|3PQXT31*@0_uN3((cڽ;"i!8WՔsdpL`xc&4潴(0"q֔ ([6NrH*gFxs Te8J1:gvLޞn^.v#oȧ=Okg&i[{UF>jp?oC56JC\}MY>5^mw:نΎz5(]s;& +;7~0-\vMj㯮%?qv{Ə+%߿NNC#V_GyS _+`jDJ1y{¶89h6>TQr=LYp5?̀>fOD_ib+M}#;H 5-~mlz).f&]a\2 c.ZbUf-'!Z6gd'Ӣ䚟gV`?"D-tM+Ԓi+tw!rQ_11 UH1 +dSvDqCQ{,3yTkM+c8"1S3F3"M>^d_T.NC؞[Q$- .LE]*?۶ ,ʐf B9<~֐M[_ًIhn+K~ {/Z_YUH6[xLG]\j`YN cz_]Hh1Ԕ gzt;kާy D4;]t,  ڷC'/wg4;̬-6wݪ'Gzk8ŷGWzWcNHը3=9<dsdj2NPQ)v/3s/2Sҥ#|{4YF fوFܮէ5U<49u#,SԜi"a%`A,!o;iqLsL5Qo844{ؑTM6w8rAW4v0=Ekl7n[!4_!lѭm'}@f77J˽ukjUolYdUb&qJ%3} pb\m|UlGd23ϣvta[aÇȄLKmsH1@#zU^dDxU9Y`/y3wl'ZQvR!پNsBk>'/>G[2 7y. v@9Cyɣf' tٶ6N+~XO`)u}fW~3/瑘hc dAHc4xsyǥ*#ÝBq_\z3ŋ4xstmWp-~;G?Gio7g`W/Y#(3|%Æ!غV_:God%aʏw͹L^TIuU' UKz:|crDIb{ĵl4{̪<"]g)z9>sۂdj)q] n UL7beNvNv[?< pXFrWg~ZY̖&Ê^эƆmfsʴrP#oa8^tbkHCjro0ݭdrb7DWc$R(#1xͧzП~~gH}{y;_?4oF#}Qcdz^9 fXL7.۲/ʳ^ġ( ^Z|V&ǹ/^] ٱM, k)[6e19:xxt_꓃1"hKIi2dK! VY*cZQ5E^&7p2)1zɒkn\3ЛmFzv#A#1b[ jG*eahZ LC# bN&hPR%_Tq1[W;}۝iu,Ӷv [,> U@57yn(ԧi=WQً8e-=1myA?¹PS!6hZwQ{|{E%ZkpFjc-\6zg ,9x@b}yHXoN̈́|i9 d/@+yo5Bc܂C0>Y6<_&^E_v:(IK.h0sOA@y`Asׂ3BXۚpkO4@as & K+(lY|[gD]|Qz>߹% 8_xW0p4Jf#uiqL{*QX$&m XVۚ]4[2jC2 PV^}/dR|_|Uֺ !LI'H%QU>KJCG]²[UxokfGX7qS݆c4|rws;;H]K^P؟!S>9k}I0CuNeؖz Wy @Hüzp2G2[wN@777Y]Myi9e^3 Gmt"4%\}}5P0{Ȫw򊤿Ì]6Z'~-Œy'S:w 4vFVc;]Mu9N'TwД̲vTOQov;QRyPRf& 2rO&w?je+j6rxdN{5ފ4 Jlw;"JW ={w.fͅ{ U'̷81 &Y8N@Jk:K~miʪ?A俬4RH/ U?'dBݎ:8Wjǎe5.eLO뺇>U҈h1ِg>t8GݷD"m9y̩>s:4 LdG1٭%󫛽Ά|Rѝ)c;3U̫slff%kD¬˕/Ur1M"Op.mW~aK,&Kf7,.%דN(mO[BB  @ A !BBBB  @ A A BBABB  A A BBABB  A A BBABB  A A 2   BBA !!BBBPB!@!P! T@@*TA A *   BBA !!BBBPB!@!P! T@@*TA   BAVB!JA Y ! +!d% B@BAVB!JA Y ! +!d% B@BAVB!JA Y ! +!d% B@BAVB!JA Y ! +!d% B@BAVB!JA Y ! +!d% B@BA 0fԃIENDB`assets/images/basic_info_pms_cross_promo.png000066600000010422152141651110015421 0ustar00PNG  IHDR%, OtEXtSoftwareAdobe ImageReadyqe< iTXtXML:com.adobe.xmp 6څ IDATx{lSǎ!L( RBinݺi[7jT6uSNS;6%`EЬ@y4HȃRpljoޡbߏ";gC6e:fț | l do7 | l @6do7 | l @6dK1NL"C67l doa7ldo<7ldo | 7l @6do | `׌L#pdo 귛l%[b=7lefIdKEB :V7ߦRRj>?[4\^g s=t׆EʙjLDX#a 2bYͽM .z ga\4&EA`Fava]yΐ;y3g@*W:G@yslp}oӌGMt'4_hvqc4r1B6Tw4؏nj9!R o17OHW.`Db‚J&4b/sE_>GC< tOKܪ>K MFfc9r\Q.?鞠lD0k]0NP*VI!6 4Av~QNt1>zՖy*fem}7E& E9Uemâ]']HlRqE#G!. ѣ# =E%FT 9HV6*#lVlB`7n'Ee(X$H[9ŵ3E+0`[* EbL*|`o%GJ)B@^8|8&ވL Ghtx:Zd2S1͒(so7pC+twKSMbQD ,^otJcyի$b!qɨac%Krxك΄P(zv}!_?Ҧ,ٲ:#J8OUS&Yl:|KF,He' -J<~R{835H(hz1l[ɤT pHȬeM1wTRNnv{xAbcX\H쮅@<ަa8P y!%)/  5eGM] +}%[q'keS2=LC [>0ZA=HH@oa7kt`M9^N[* /un-;((W#Z cm`=PfV<:9מ3O6טI9lB=d7p զj;:+T=[[WityN߮C?n*Sݹ07ϱ6Lu:IڦSkwտws-‘ض#v%ʁz=++%K4fiVO}ʎ(; *T)I]'|,>RUstc}'=u&O'lzHeߦ1@1X;&9 Ͽw!k&ϋQÌ68<_{5S&("ݍ6xAu3匈S2d˵*e9%]ͽ8KQV9'_QnQ=:#6Ce'WϬ+*V7|o3ye#8-dVWi)$[ZPySqc(*lYYV'b|@8zѥŚ8-.R_6ytU 9SC tcQ}su kdqZ}n |K2?(\pV=[}qG'f\vE1m y_%*n HVWiܰ(go0O~0xbC4}:S# 'E;e[VhD(}MsݘR"{r-NdTKwR#dvR{0Z'ZҰ&Gm,ry yi29_50dRs͍h=O,ow6{s"fE9|Jl4|&Cܐ> 3e%f{|Z|o\m~3ݞ$O֥ 6j(s]2r*%1L}؇QBp~ԭ.mYFc:F77.1:9Eڥ |rY_-_#i8!6zs]f-S3[{eGGs݈vpĩ rs+Lojw]cD-*5{Nm?f${`O00dPI~zw'Mx 6w>VJ&R㭗xËGQ[yl/v%b?Y3Thq  Ʋ8R9S]S.yIL_2n퉵m;Ϧ!eJ#Ѻr}RUiLʐTRqS]W®L-?[Z+'Rr5??;\ MN GcL 0xy\t* Ug@1>o2@AT-uTHE+}+̑ S.}~e.;5 ̳ `îL͠fܡt-gάe^}4du_xâKΥEj* *Z2kǏ(ۥq*}|Ʋ?1x˽lXCogE\C}Xe)o AIm'Oo FdwOiyۥ5R_oTkͳG"' Td+F{0*>X5 d, 7lA6 )I%|ld  o |lA6d  o 7|lA6d o 7|lA6dzJC6|l7d }lA6  x o 7|lA627d ` #`fIENDB`assets/images/pb-logo-pro.png000066600000405366152141651110012175 0ustar00PNG  IHDRrrgF^ cHRMz&u0`:pQ<bKGDtIME +FtEXtRaw profile type app12 app12 15 4475636b79000100040000003c0000 uRtEXtRaw profile type exif exif 22 45786966000049492a00080000000000000000000000 AzTXtRaw profile type xmp8UK09 xF.UYx~I.$D7 _5UgQ}q0.`vﭰ휃m*sm*lömm*Tp奺n;mUu 9ضS۪PUUU**¶m sζ{/96lVU@U{+z< ۶a[m[m9ضm۶m۶*{sP{QU lmm[U۶s @ UU9pٶ8>ί?m/ϯχ휓//T۶=Ϸyv=sPs*6TsNlP6Tp=`[m6¶m*l;<mp݆ mPU *s9mUT` p9۶UPmCUmsۀm۰ ۪U sNm۶ *VUwo~ꜳ-mm>sνw[ @U9TU *Tm*T m[U Uضދ'6T9UUUTUUsp9@U{jsN *Vsᜃ BUU۶UPU9PU9gj6x?~>OGǧO G|>Q VUP@T*ۀmP ^^^`۶s*T:TPa96lVUTsUնmm9pنmGm*Um{oUsPU@*Tꜳ lv9TsU9g[Uヽy|'>|<^}܇?s?s|s9眃mQUm۪¶ms6۶UsNmPmmmmۀ9 Uv*꜃Smۆ`m۶mUm6`[U=m۶U۶Uնsζ{ﶪBUUUuΩ*T:`mUUsm*`۶ s9¶ ^sP~X|q*ǧO m޷{/Pss[UUU*{QsT@uΩm۪PmVm۶ UmUUچ ma[P9BxvyT:ۀS۶P x<sNu*`[Ua[uU UuEBUa[TS9g6TmUUm۶ 6<mPUUU`[Uvٶ:¶mUm@UUm pΩj[9q;{/}>-~ >^spvΩ¶m*9U *Tնm^@uUTlömPUն lm PU۶m۶m lCUm**lmPU۪ msζm mvѷkooea۶ǧOU6?mmSmm*l* lCuٶ VUUUVU9 6¶s@TPU۪ P@ s۰Sm`Vm9۪PUU[UUU*lC@m89_7A Є`q0O>}˗/z<նm۪jPUj[VU*sN*lCsm۪ ۶*¶ PU*@ *vنsPچsNm眪9նm@U¶ ؆ ؆*{Q۶*lCmUuEVUն{9*Tm؆TPUu/{߿/>{yїW lo_r탻^a^NǧO*`[u}{{˶jS*vmTUUTUUm96l9ն*TUTUm@T۪mUm[lCm۪sNB'*T9¶{ouVa[mml;`*`mضTU@Tv}=Ͽk_޾yW~/G]t|~=s_zq_N?>}۞w[lUU{ ǣUp=T TUUU ۶UPa[j*T T۪vy<նmBm9lCuΩpU[smCU۶sm[s9mUUmT*`Pնmx<QU^}~'I4?>G'||><#O>|lCm8 @ սxTm6T؆ j[ *T`۶s*UPPUնm UUڶ 6TUUPUUn`۶s99Va9چm*m Uo_~woͫ >_?[?/}_^x| /_Wն T96 նmTmms ؆ PUVچm VmsU[*lP{m9ދSas6TUn;sPa۶sNUUU UUU{/*ض¶sN Pڶ Umsy~_Wy~qߣY||g_o??oW'>??G__s?<>}{6TBUU۶m9j[m9Um[|VUu6Bm նm**{lCT>l;löꜳ ///m*@ ۶U؆j6Tl{>9眪j۽9@`۶ sN`۶m@PmVUm9սwBT۶smC ///;o|W7ܷs`LG7c??վ5/?~?XgBӧOl{>s Vն{oTmT9lۆjs99ն{o nPնsNSBmU:TUBmm{sNm9BUUU mTUT9j۽Um۶sζ{/mۀS{9vΩPUxyym[sNjPUmy_x;o}?}K]?׷p_>zy֟x}7ۿoo>]{"ǧO9m9{sNU@ Pa9½Pۀmm9@U6T|Ko/{>vҿ_}݇ ooǷ>u\x| l{>۰ *mT`*lVa[umm۶m[pEj9VUPUUUUuΩ PUmUjG휳 @¶msNUmچ  UPUUU@Ua6s9Tm|;_~k@ُ=>_?_3/uѧe/sWO||};܏/~~o{^${ߟm9V@B޻ P TUS{q{/ۀ m¶ ն UUUU*s*PVj۶ P{キ:T@UamsζjSmT m*lö۶U<׷eϿ/?<{~?髗v{?_{qӧOsp}>۶{sPچ [U*<{9`6:T @m6T9ު¶mPm۶m۶{QmCU=OTj6pmCm[*U{9S= Tm۶j98{mP= mmm۪s9gPmۆm|>u`soϿʟ>=u__}g\g7_soǧO x{{{ΩpιmsN V9m^Tǣ¶mU{om{{s9vΩ'sN ۶mCUs*lx<{Qs mmUS{QUUUs9UU[s*l۶޻|>*Tض նm9眃{x`PsmsPU{m*TUUm{9۶{q9'8ֽ_e?s^x^͇{}y=?G>/؇^_G ه|x_އ[w?Ӈo^^#ǧOVm˽pΩGT T*TVU6Tض½:sss9ދj[Um@uΩmsP 8T۶۶U@uΩ޻pΩ*99pAmۀmۀm*9@T6ꜞs^//Og>rޏyz_#o_ӿOb/_o=<_~vnm>}mU˗/飯s9**T @ 9@ BUUx>ު9P T9۪sN pT9g۶mVsPsmTU ^sڶ U UU۶TU @TmCssAs{yᜇ|/?^hxݷ~ؗs>o__<?8?K|xO F/|AӧO m9ڶP69Bsl۶ @x<{9|>x<*TTlCUaUl;l*l*`9眃{6 m؆ U m pנּVsm @U*l PU۶m۪sjm>||a?7{}+7>W?Y[_O~qGGzvQӧOm^T۶UVaTڶP۪ *`[Tսw9g[Umm{<m*@l96mp@`*նm9۶m{9 眪ڶ UmUP۪mlCUs??'_z//|}^~~˾7uw~_ϧ޿yw{_W?}w?w_~| z<۶mKxTض w۶{|{QUm۶ Pm{>ۀmx<ս|{lml{`6s۰{EUmný|{+ 6TնmPPU휃m۶{Q[BUUl؆mضm۶m۶mlۆ ۰m۶{U~_o}oɇopcК9/=ч/_s?}~}<|7o}[ǻK?w/~g'`o{{R%Z<>}6<|>oދm9g6{Qs9Uxg{wϚ;>֝g8nڒ&-UJCI"*@"m PM4*E %Q@(TH@=ZvfL19szO{ܿ׵VۙI Zm$I۶333hHrf&I$IM I8`m[$IZkmt+ov|^o^bLY~8m}o='ʹ#H;%cynrL{?ruj^67שImZO/vwwmzG۵VH$I$I$A[lۆVmIfH$I$I$If&IۙI$I۶H$I$Iڢ-$h$Ivdfdf"I$mg&Ii333Im۶m۶mmжm[$$H:Im$A۶m$ 3m" &Ih `533-@I" hm жmdɓ'|?_WO/+Rr|.||yOs~pLf]v6c3coӏxsO?aym[ӻO mf~Oqq?K8=q!m zZmg@$Idf$A[m۶If& H$@$-$3Ӷm$m $m$IM-f"Z+h $$I$I$Im6$$I$h6 $j6I$&mvfm$Img&I$m@$@$mbf6`f@m&I I$Z $$ٶt:%ٶӧ7^?7}^Z>±ug>|u0um>ktu_s;|/ݾOKA&s`gݮszMO:Svwwh$@8Zmm۶! $A۶hm$i H$$ڢm[&Im۶m6 $I۶333h333mZIHI`IvI$$I$Ij$I$IM23m13۶adf&"I$&IҶ-fmdf-f& $AmvfHmg&I$ $HH$3$mmnۆINӶm3s{{7'Ͽ~[?a@zvٮ/?zvwy緛7r<<247xs~C$־Yq>ɾ|k:ћOә)km[.!l[.rlvf8Zz"I$IA۶I-$Lۙi6 II$H`ffIIZH23III I &Yka۶ZkfǑm13I$I$I$I$I&A۶IH$ hm$Iڶ$k-$I233ImA$3d33I$IHdfffжm۶V`fmvdf}mNӾɴtzW>/?w=>i[N+6ǻ_~oen6[^.xn{w=F";@$^-$IVmdfZI$I23H3fm$i $f& 03hIH23m$I$IM$I-$`ff-fmE$Xk%&ٶ mgf۶ڶ I`$m$@$m&A$mE$I$@$I&L8 " $I$kIm$IIm-$ImE۵$I23kٶ|>c}u%[l=}{}zi=\m᲍ytyz#|>>ވfV\2Ӝwl>oǓ+Y׶}y?G;_޼oߤמ׬Y1o\O3usCOŗ_vcNc;Hr\dfm-\יA$IZmgm$IҶ̠m$H I &Z+I@kf-H$$A$3$̴M23IZ̠Zkf13k8II$IZHH23333 ɾ3m$i$ih۶! I}O6 6 m[ mۢm$$A$If&I$3kmXk%ٶm۶43۶%Jtss{Wz=.[ں?5u:m'tǗ鲝n>ctsY6̃}7'9S9u~+כ&./y듏~\_~e[fI$i8備I̴m$ fmm̴E[$Im@ I$I$I۶HҶm$hI&$m&Z+ `f I$i Llۖf&I۶mIf&I۶ImI033Mm۶Ifff$A8$HIf& mLZm[m6 L$h6ɶm3$tIf=ӧOoo|K߾ky2%lɥ=yn~v~//>=w]Iz/\r{OOOU7Y95f^<ξ~?O[nq}q3O?/f?^6G?}\oҳ}n~$q<>>ݶ- hI6 Lm$3Ӷm $$$L[@@$mH@ " $$I$IH$m$I-&f& 6I &I$@[`fh I$m$I$A[$$mh$I۶I$I-fff~ssmZ Ip^<}|xկgֿS;o b{d_Wί}?Nۋ77ӧ{\fmo_[#}cf흙جezltڏc}77OOO:/~~~Ol/?yO^/7?$/Hvww@h8m۶@$I$Hdu$h$H23I$$I$@L$I$AV$mIA$IEV[-$m$I$I"IZm[Lk-$Lm;3@ I$@`fж-L$mmۀH$ -HmmhmZm̶m|>Zmm۶m^铧z}~?C~dzu5XWܟI^~W]}??z~n.׽=m__؞~k;]Y[KNkn__y\LsqͧjKӓf㧮k}N벶=lwww$V[<>>^.h 8Mm$h$I I$۶mI$I$I$3- 03m$Yk! I$I$I$f& $kE۶$LHdfZIMHҶ- mqImC$H23mgk$k$I-H23m&$k- I@mIE$Iڮ6 $Ij}߷m۶m۶L$3CV>ɼ[_F>?w~\/K&JȬGμw;+/Kp>=qݼߜ{ZzO:^_=w}e"o1_⿺}oØmq=gWq{q#YWO_=ͪS5M]kǁ{=|@۶ILV$Iж$Ykafh $"I$IIIm$ $k-I^Iff$I$mm Z$A[Xk ZILV$I"I۵Vۙ6I3v53Xk!ZkwZIf&I۶I6I$kI6I$Xk-$A$Iڶm -$Xk%ImMd6ImZI$Iq۶~>ضmfڶ$^旾/^mϿ}5SW$4uKsz`ʲ7֭qno\:LJ7}kӳf~.oWn׎b?f۟}7Ko_yf[G&\g??^^yx ?dy|I`$03mZzZHض h $I$ $$Imm $ I$L[$m ̴m;3Im$IHf@$Z 3I$k- Zmm $$I$II03IHIm$i$ $ I$I`H$IҶ-ZH@$Im[3HI$ @$ڶ }߶m۶A$IC{sʶwاn?tf=g`V9l';ܤٹV"jٶt=lv8o7Yo_we{/̚_|Oړ]untf96׽s_y6=88m۶-$IҶm$m&Iv6ɾk-@ 6I$IfHmH6I$$iI$I$h$ f$m"I[$i@Iжm$I$If@V[$$I$$I Im[$$&ImZkV۶H6Zm$Iжm[I$h $ihI&}ߓl63If&IHvgpoݯ?޸==\"]1!@ڊdϗ'm?^2O_>=oyl^7Gs\]/7~'/nN$Z86I۶m}۶m v$ $I۶$I$3II&I23I-$i$@$$A$@$mLILmI$I$I۶ Z3{[$ ILmжm[I IE$I-03II$$ImLm Ii $i6It:ϧi۶I$HMrG˗-oO|yn7(եk[k]_<==amg𺿞cܖn/+/~tc;З7Ϟ|䓾}9vww$^q]k03IH23m۶Mm ɶm38II$I I$M3-$ fH E-fH$df6I@ۙ}fڶM$mE$m̠m$Im$H 03I I$I$IZ+Im$I$I03md$h03Ht:̶mI$3$mnۖzy+y|m0:+鸼}}uztΖܯ|ٿ8_>Y7Cvl^מo~Elwww$q\.88l63h$36I$mlvff& 03I $I$IۙI6I$A$IhmI@3IIm I$3ILIHAL$m۶I$$Z mmbf" mH23If&I۶Zkff@ۙIҶ-f& "IZm133Ӷm[$m۶-Ip^gf۶V\י@$HYk%t333h;3Im۵Vۙq=;^+/_7k_|O}Oo]&r.}ⱷo?35=9]ܾ/>?x|߿Z??nfz_O?(vwwEkz\.mm"I$ $I$IIж- $0336I[$@۶H23IHIm $m$mI-`ffmIm&Zkf I $I23@Imے$A$IM6 $I IE$m13mHk-$Imm$3ddfڮ03XkǑ$I$L۶IZI}O۶aff-bfErw?V˚ܟX>[cڗX~'n_\762>k7 /g{1qW|s{hη_][s~ `"Z+ZkJvfڶEEE@$mMm$I" $@$mm$HIf&IiIII$&I@$@$m$I I$mۢ-̴m;3H$I@m& IE I$h$I۵VmImm[V133vfNӶm۶Nmۀ$$ݎ\]O7=x_~[?X h\p\fn+/]}t8uđ/'/mn&O 1[~uЏ}^m57z~lwww@[$DZqHvfIfmѶm[M$i$I$H$A03hHL۶@[ $I@۶3mgffIbf6II$IҶ$A۶HH$AM$Ih۶m[I$$$I$I$$$u533vfڶŶmo۶m3 IڢZkmqɖyx|_9\䧶We5 o{i{^v6al˯7iN/׾^~n2qߚ|Ϫy\U $3Hm6$$mh۶m۶mm@ۙImI6$Yk" h HdffffE$hv6L۶@$I km $I6I[I-ڶ@۶@[ڶE$m@۶Hm$ mm&A۶h $Z_~og??;@We˓/;wsjǙudb~{?s|~={rJɸ5>w *$I6Iٶm۶$h$m $$m@жm$m۶$mh$@M6I۶$I03m"I[$A[MHh;3Xkk$I -$Yk%Yk%IB[ m@H@Z+I$hvfh lۖztJm[$$`f}o^y=;/_6WO73clnS??>Hz=cKy/5Mr>G{t:fPlж-03hvu\mqmvvfI$$3H23IZIjA[$iIpZ m$Hm[$Im$$mm$I[L$I3$ ڮ03I$IM03IZH6I$3$I$I$ڶMmH6I$I I[M@[ &H I۶mm6IA۶I8#$mmZIm}}۶$3@$mZk%vy~iW^m[4 q=}/_ݝ)OKNۍf.Cܾ;>y[oMdNxocr:|Ms`$ALz\Zql6 H23I"I$m۶M23m̾Iڶ=Iٶmffmv$mZIJjd53I$IMH$Ivfж-ff6m$mmKh6I3m$I23h mmZH@$I$I$fff$$ E[m$I$I$ ڮ3dvf$Img&I$m8lۆIf& ڮZm Zm̶m3s>O L$IZkuG۶dNsӶm^9r8Qn(t;olԿW>tQ}qlO}| g߭ݚmͱ=y{x/Ǜ:rk؟_ڇSwÜOo~n=IZ8V$If& $$iB$HڶEۙi m IZmgIf& $IIm۶m"I$mm$ ڶ̶mkV۶IIm$Zm۶m13If&I$@$IHE$h$h mZH23IH$h$m$m&IHҶm$ I۶I$A[$A$IZk-lۖmdf$m}߶m}g& Hh۶-I&'O-/~w_|O|poWJ}u=}}[}^x8OoN\o'O|=<}Gz?xG)}jzm{1gpڿs^Z8m" 3Ӷm[$I$I mgffIIJ;3ڶ-Zk6$I$ f& $H@$Xkm$$A03I$I$ @E[$i@۶H$mL I[$i h$I`fڶMm&$AI6I$Yk%$Im&$iI$mqm㸞Ng^:.zvj`'3I$@ڶ]km[$=͜onu\./w.ow{B\ޝ[^y\ۙ%l9~/~Nڏk3y%k?z|3b&κ&kfm:B}.___;m7$!2fM&FِVJ$k$H23fffm$I3E&m;3333m&I3338I@HҶm[`6 жmI$m$YkMk$3-$I$I$YkI-$i$I$ m&ImHHj;3Iж̠-mk@۶m$I$$3338# Zm$YkEٶm}g& Hhj $Idz~~Zyݗ'um;0sqrk9e;=|/?ǎ>}|o=z kͬښٮ]b%Iz|xM^wfur#\/^/Ϸ|"lUF @`G>23IZHp^@۶۶%im[۶Im6 ffvfdfZIfff L3HIfII I$I$`Am133@$I&Idvfm۶m$kHI$A۶- I$ivB۶Iڮ]kMI$mI$Im&Idfж$idf$IbfB Z3@$hZ 333N}߷mH$I$q]kIbuffvKyx>|ד]O7Z=;?s}}׹y>;qZ9mܻ|ۯGOVfّ9ڏw֛_x֓u۞ϳM^ݽO|cۇ~b~Cxx89s D!k}zgm͌gcϚ8vBl@B! !P@-j~;U@V*T Q8qqscxlݬ_gpC[$A[@/_fmJ$mwIInIvww.&Iu]I9HҶm$ ̴+I$uL$I"IMsN۶m" dfm$`wwmsN$@$"Iۙm[`w13IImh @[`wg&M$ жmۙI mdfڶ$I$9'ImH@۶m]sfm }~x]'?t_}g{=<{kk?ϼソzf|ߞ_No|a2_'w+?/O>/~z⁽}'ǯ7ߛ4gY.͟gG z?u7svC$m۶M23IL[Im[$i$m@$mm@۶IIh6I$hH-mwm$@n۶h $" v&iI"I$Hmۙnh䜳mw7I\וdf9' @$i@M$mHҶ-Mdfnnۙ@$h$h@[$iH.~/|1~}xO(_u?I;[άӵ/cs/w]9Ws>|N~?{o_u]44o=  ?xLRΛ7o&@۶h$Im L۶H23H$$A[m9--9I; II$I$i۶m[$ж-H23I$AݶI$眶mhs9' H$m۶mi6 L`ww-9mHm̠m[3hv7$I233m6 933眙H-I93m$眶JtW<>m qC0y> /\/w埸Nέ.?{q xu×Wӟ{ퟝ}$3Fp޼y3M$v̜s.$i E$A$h䜓dw۶E$I$@[ ڶm $A$ @[IH;3ݶIfIm"I`ffmbfE$HhIH6IM$@I&n`fL@[`f$I$I$I@$I$A۶H$InA[M23m13I-䜃$Idfn̜s$A$Hm$iHI9IJ^=<>s>ǧ^:!J ܍zy{ۯ\zx>?Onso'_{S;>9ŵ>Go?_u}6s$ղ=0߭ۇ_/yNeU|_$mg溮E$8$IEsNm$ A۶M$IIIf&m{Ai3HA۶H$i EmۙII$I"IE$I$A$IL" HI$I6H`f$vww$H$ MI$@$I$A[$I$I۶IdfжmsN$i $i$ <<tO>_}3׭qq]jfdd6s%nz|__OWׯ><%q>x7^͕ryy??Ƌӭo<|_mus;3?G]u׿h$`fڶunۙm&9`w13I fHHҶ-$I$mmI6 $HL۶pII$I m$Aۙ I$I3m[mۙA۶HII$I@6I$A[hdfIݶmۢm۶$$Iv%Idf93жm[- I$IvmmBd=|o{S?#קk ?[OϨy/;9}|Wƃ+Wzg_+|<ܓ_gOҋymI$m$i{ILII@۶m$m$i 뺐$i$I&$A$I IH$I$ ۭm[333m3mgI$I$I$II`wh$I[$A۶H-$i۶m$A$I$I$mm$+ dffm$3mL[`f$i{]" L$vm$hvfm[$Imۙis.ڶMrΙz1_}zW^}p{[kO>IDȹ;O۳z'/>v^w^~^n:=an_|zx8=r2y|}o|6^Ͽ%׾I@ z~~+L$I&IL$IжmIm13Iڶ̴ݙ$I. IE$I-mo[333眶I$Ii$$n$Iڞs$IM23I$I$IڶIM23mE$A I.f&IMIf&I$$A[ ڶ̴m$ $3$ `wg-9mqI$s9gffff$$I23Iݶ{]vww`fݶIHۭ$ ׼އ߽׾/y[w[>oS=_~~m>3p[>g/?|>}p6]nIλ|'9u7We/d n&iI9휓Iffwm$̴E$m13mdww̴E۶mM$i۶-̴M$L[`fI$ڶMI6I$$ @[Iڶm$h$@$i6 " &6 3h$ --.h-.mwwffmM.$A$ݶIfsΙ IhIf m $ivw"y{?ۇ_`_?wmۼ|gGs|oOWy>=|ߺNk˜?'_{{ut$'{lbv>>qt^_S+h$&nmfvi-ڶ̴vC[`w$mI]L.Lmvfh$I-ni3m$I[$I8Ipݰm~ݙA۶3hڶ$mIm@[$A$h$Iv7IHҶmۙm `f̴] ڶE$mBI3dw9Ij;3I$im( }ԯy?ϟ/;l^W?{?=Ëۻo]?^~}0|o_ z97tIZ`9- v-h$Mmu]6L[IڶMM$I" Mm[I$I$ " $I ڶ ^ו$ vI"Im۶m۶m[Mm$mw-E۶m۶mhIж-mۢ-ڶm$ ڶEmmhI"u]m$A۶I$A`f{]W۶mIڶm$ ж- vwwmh @]չř?"}*ݾ?wW>~{ΟidK`ާ&7kڶ  Cᅰ40`fnv;L[ m$u.j m$Ivwwm۶mus9Iv@۶Hm13Ivwwdww-sf&̠-$36$i6Im$I" 9眓m۶m۶m[̴]mIn۶h$.f溮I$AmvwnImѶm$m133H@mh6u]mm$IImm[mѶL뺐E$mu]m$H$yq/6߾O||=O>~V>>x{n]Os?/Wgu_Ms_|:_ݵ91qݿc~`oz~/]Hډ$Im۶m۶m۶m۶m[m M$.f&Is9Hvwwwf$IۙIh{]si{]vmm$IEm$]L I$hu!I$Im$A[Ifm-ڶMH$IۙI$I$3mwm$I$I$9$I$3$ &mvw&I23ݙIm m$IImn[h{ΙI$ m۶m&I}fm$= vw$3u]m df$vK69׻<ŋ>>/^~Ck?ыoaO/S_D[{VO\{{~M>ϯq_wO?_}>=6I'!yy9?|9'~O峾uo @sv;$n$ݶ I$mmn۶@$3$m m۶mdf3sIuMrn[Hmg朓dwhmbwH$ "I$m Iж-$ $I$I$I.LmI$Mm]$u]~m3333$A$9su%$m[@۶$If-$IMrn[۶@n3sΙ3ݍ>ͯG~ ?ӏ~wo8/ 5irwMFZ4 fzypfo\+Cn Og/>~?󼦿O>f0H$I$I933m"I$mmѶ9眃m۶ݶ۶-03333mwwf9I$@۶$I$II$A۶mI$Im۶m۶-f& Ifm۶.ж- mnۙIm&$m@[m3$In[ L$眙A I I9mw$$@[ ~o۶-m[m3333Ӷm`f뺮 Ifff$3@&~}/~/{?ᣧS(>:WW }O_@χ_{<z8{ܟgW`03vwwݽ ڶ$ m.$i -ж.03Ivww"LvEI$IҶmۙImm۶u]mmmmwww۶ݶ$m䜓$I۶m۶~n[s$$3$ If&I۶m@$hu]׵۶msN.`wUۧ}c_~თ} |_{wϷ_f"O>Iwt/|Qsԇ~_>3g2~}/_o7o$" $I$Im$u]u.ڶ$$h6I$m$3Ӷ`wMm۶m$mdw13@ڶm۶m[$I6̠- $I$IIdwLf& $A$@[@$m$ ڶE$m ڢmmI.6M$$ImI&m$mwwww-f&I۶@$$333HI9 n$I$Imm&i6Im \u]vnIJmm{^S{<[?W͗ @(sw}p֜9ns37XDd:|'_C<繙Ͽ~y& I$Imݽ-$I$ Hmgff$niEh$Ivwsvm$I$ ڶM23IڶM$333hII$ivff& H23$ $i$HmHm[$I" 6 ڶmIvm$$mHI$$m&I6Iivfdf9$IڶMh3H233$HvwqfmI23h۶mu]m13@A亮$ǏOϙ^x廷~w7~C̰ [n_m×~o$9d^>=T{?n}c.͛7$6 жS۶HmwI̠-v7Im$A=sJ pn9眙 3-f& sMI9mL$Hvww3vfffw$$I&$h$@$m$I$Ihmm۶m Iu]vfs-f$Ihdfv~ 333m9-f${i6I$h- I$If&9'I$n3M23Iv.\u13u]umm@69gwgWI3A|7}ۓ[O2g @؜}x7_~|e.nr勿?k?hϟ? #׋N#uμnܲp޼y$I>==]׵H3sI3-m$IM$IH$mw7I\H$mmH@$$hdfIHH$i m$I$I@$3$ L$Idw&i۶m$I$iHm[$imdfж9h۶-$3EmѶm$I$A$I$I$IIfIpιn3H03hmwm۶Im[$I23I$I233__|㻟w|7}1Wsp>_wϷ}x{˟7O_?<M8s{O{{?p޼yIڶ뺮6I$I$ I$$$I$A6I`fڶ&i۶m[IhH@$I $I@03I I$@[-I3hm۶&Imm$i E$H$I$3Im&$ h sڶM23I$I I$I6I9I Iݶvff&I[mdff&I3338$Idfɜo_=xꋟ|>yǾ0{S$<<c?7G_<ϴ/x^ʫ^_>2ihnjmo/ΟS_~=}8o޼ݽ IL۶H$m93$@$A$IH$$i$ m$i$I۶m$$I@M$̴$IM II$$9 I$ݶm.E[m۶.nf& HmIsfffLIn[$I$f&I۶mm&I23$H$I$I$I$ nvC$Ivf ̠n$m"9gf$333$I I2f߯_}x^~|_|z^ U|}>K/\|Ys󢝧6yqιxӧ}z<=͛7$i$mq]u]um$@$$idwJm$I6$AmME$H-vfHvwm`fI$EII$I$IE[`fh Mm @$i$$I$ $A$I$Im۶E$m&vInm$m-$I$I$@$I03mfpA[n[mH$ "$9`ffHm۶s|/?޿_;g?C_|z^t_937#3<əCrgn|'g?Ǐ/ޞ>7oIжm{[- I$m133I E$II$6 LMH23Ibf$iIf& ڶM23H-$@$@۶m$A$&mI$IH 03H233 -mmIfImA[@IpIHm۶&A$I`ff朓dffff$Ih۶u]vf9m[̜sI9v3$I۶Igyy{um&!ۋsm#;=-93'|'~yz^NΛ7oH233vw۞s~o$+$A$h{AIvMvfffws̜s$IsNf8 жm[H$I033mw@$mѶm pfm$h۶m[$A$I@$.6I[$ڢbwJvw&&+I dff&Iۙ9M$ L$3&9\ׅ$m$IvwsE@$I $Iv79gf$A$In7v $A$mLvfvww۶E$3$$$h vffv:>ë~q6OyHv*@2o9_/?w{x_KOv"g޿??N IDAT_}}ay hH~EA$3 m1338E3@$If$H23I9hvf ڶmvw$iڶEEݶH I[ IMڢ-m۶m$I033Ӷ-v3mL$h;3H$I$I?A{z{oj\]$TB8Ӂ a#)RHဖQrLKF}29F48$H `UvUZs] IIHw`m&Aۙ$mIm&A$h@$$V$H$$A[\]]NL8mۢ-f&I۶{w۶3 I۶I=cd {޻YI^zj+k>E$h3 Xk%i{GiH23m" $$I Im{m$ $I$i6IIm8Ѷm۶ڶ`6IqffI23$Yk%i;3I$AMm$Im۶{A$hF73H$L7fIfffI$I233I$3suu53XkL43I-p|N-ڢm۶m&Yka}riIжm$mZ+ ffmIө7GuJ=zzޓWsyK?8_VR`7v9}Osi\j./X7V.Gm$$ `}r{̴m$I$i$I۶H I$I$If$ &iII$A۶{m$ $A-жm$mmm۶H23mm&{sL$i6 IL$I$A[$I& Ii{\m&{'A$II{Vhd53I$I${'I$I$I$I-Z3$IZkfff$h{q{I$m{8mn{\333mIdffffZk$Ifff$AɈ=OO~Ko _r:}sz  ɞT;Z۾IU]1z_] 0Dv$dEB%G^G$II3\.ymXk%{-@$@[m$i$Iۢ-fm${3If&I$$Ih E$36Iw۶޻-H23qMI-f& ڶM23Ib$Ii$3$IIfIN23h-DZnh$I&mI$@[`fL۽w[$Ifmg{otJ$ ZkffffZk-$I۶m${IǁVmM֚$333333IZ3$I$IfI@YIiMm$3s\bfZIZkfڶM7fm[LIZ{' $h%lrqW?<׾7>xpzt/''$imdffff@۽7m$Im[$I6Z m&i$ ڶm$I[ 03h$ &I6 -|>t:%i6ߞ{Ç??O|ⓟ/|_|3~h^<}{_`o?:.Ko䓟$ @m$q{O<\.{8ڮ $qtjmI7m;̴m 3̴M23I\.OO>}x>|xsssuu-I3\./˯+_ʫo~t:]__8h;3Iڢmۙin;޻$A۶h 콓fm$3803I^.$k-mۢ-$3I-&@w[$$kH\__N']k{8.q@۵޻m;I[ I۶3JwVmvfNS$mIh m#"I۶ㅓ/}_#~xyMS+03h6 O>}q{If& $$qImۙi$I `A[L[L۽ IINmzf8c~~'~`Z m$8Xkx^{3oo|;N{wۙImHn {Lw$mI"I$IrGۙIm&$hNmL{fIIm$mL$3$IZk%IZkm$qqG[`{o콏hIfmg&I$h6I$̜N$m13I03IIж-IP>^s̝['n=w9+6 h|>?yӧO>\.mgm$mI$h $ I m$I۶I{EۙIN8$3vf8xg~ggG~Gh363$ ж-ڮvfޯooooo߽\.WWWIHm۶Mn $9cf{#̴E&in$HmI@[8$3I@$I I[ I$Zk53333өq3rDZnq 8m۶mgt:%i;3$i{GV`fN̴M$IHWӌƷ׿'/pzw7h`=zHm I88ϗ%Z m13@$I "̬L$3333333d533$ L$I$I23IжmۙI6II6 ڶ{cf_}CI`֚$IV$I$I$I$Ivf$iI /|򓟼7k7жm$I fm$Lw۶INVI6$I@${@$qHI$ H$ JIfI`INtZk%II콏{E۽w88ft:mIdfI$k$k$I$IM9_nN+YzoO/_q{8{ޗ8{{o8ϗ8m8c}\.K۶{|qZ݃C__?$mN'$Yk!޻m$38f& q$Iۮdff& 03777/GG~n3s\6I۽7ڶM$IIZ3$ $I233d$I$@۶$3֚V$ILۙ9Nk$Yk&Yk$A۽w۵ I۶HҶtIr:g&{f^.8&A۶8Nhvfpfff`f{'IZkZk$ $I$I$ -֚ڧ588 ^{w''zvc)7+@m㸻{|n9Ϙ$6Zkf&I7ffZk" $i6 w$Im[{L[Kr}}{3=8Im$\.333@۶3$ڶm3q {I{f__Wr\N콓mH$I۶8$Im`dfmmۢm$@Vw$3Nm9I$I13hm" `fZI\]]]__t:k콏8~=33df.{>m[$IIZkfL`f$&@[$A۶mۢ-6Ih7yͷw.O{_1OowypZO{+I6 㸻{qIgh^kmdfpÇm IHvvJm[$I콁hж-m$hv $Ai;3{o m" IۙIN8L$6I${m$@ Iw[$Ivf$I$3h$ I۶{o-F$ \=㝻/}wNw?Wo?=nI:)yW$h${Ǐ_.$I޻mLm>|t:f|>'&Ih03h m $Imwy祗^_?g/ض-ZI8?~;|n{uuu}}?Ї>?z{gNH[o?wp:ڶ-E[ Im Hm6 ${m6 ڶE$h MIڶHҶ-ڢ-ж-m$hmڶEe^8/|kzo=On_]k+$ڢr\.ӧO3fr$3{fnoo{'Ih ڶM${_.ɟ?Gqq=Nk3򑛛-8INqg>Yk&IIڶE$m$ڢ-$i$m$i mA$hh $I${@E[m$IE$A[-03$mmhH--w[ +ǓϬu\.'o|[y];I+Id{;<}3N{333{8#I$k}/OO+'>mZkI$O8M6I[Mw[$A[ -IMHm$I3mH$`fm-fmIHmmIm$I[-AflOhOx+_3^_x䝧Sfe= ֣GI$I$ $I$@$Yk%9|>_.3Ӷmmg& {?3?Z  I I$I I$I$I$IhZr//˗$A$Iޯw?'_o|9Zt:ZImZku:ݽ7{Zt:Z+̴{> m$ $I$ $$$IH$I$I$mH@$$ $$$ `&٧/擻s}s׺ZG$r\.{# fff$}Z @t{g~SG>֚$${o޿O?___{ޞN$i жtzwկ_'O> II${_./}|># $A[I3$I$If$PRxqNO?wg>ӱ.r}s=7k#H@8qm f033$@`fff}ss/^x|>NiN<33[oo[~׾t:rYk%{'mHr:Zq$;qXk{~{9# mII@r7>w>מ}o=N{4e#H\.{o$IIIֺ t:??O?cfffdfHJꫯ~ӟ_/~񋸺{f]km$3${9Nq}G>L[{w?ߟN'@[ Im{$]N:>/ǯG{<ǬѣG$$\.qڶAm $__~tBۙrYky___/{w}}}sss\m;3m3 . fffp:|7j $ m$$IfI$ &>֩tW=s{ۧ/}=wD=z@@$m\.em$703777IImmg3ӟ>z8{f333w_rA$$9mHZkն;13k7x^{~=$gy嗿o|_{L[$I@$hmIMMI"I[$" $I@$I$$II$=5f+<;GS?vs{?яKH23mI>\__3{o-$@$II$$3@[m I{$m$H$ fm$i$@I$I$Iw۶If&I[@۶h&I I[ݽ龻yꝞw~nG;Z׺ዯ}33mZIڶmvfڶH}rL}gffffff̴̠}fڶm;3mL۶mѶ-$Ihmh6I۶I6 @ $ IIIж-Zk-Mm$mI XZ{Wo^wÏ|$˓۫c/II$m̴mZk̜N$IE۶333mѶm۶mghi۶m۶'Aff۶wyO?~}߶ '}sO|qp\fm۶m@۶mmڶm I$AяK3dfC}ߓ\]]/| 777%ɾm۶m m۶m Hmv}}}fڞ}gff}?333<3IIff}f}ovfڶmmLۙi;33vfڶm۶mۙmIIMI&Ykm6IIHJh۶m$mImuq\~7ї7Yhl/2@I{mkgyII033{$ж-$I$$?rZkZkfWw?x\$ @$Iжm۶m$I$I$v$Im=~^xas='?c۶ I Xk%IڶL}gff&}q\frv\.e}ffffڶm۶m۶3mgmۙi۶m6I۶IHIZH$$I$IڶE$A$m$I&Im&A:wϽOzu<]?7w7~~Uwy9je$W^y%I IELۙrMmg^:NInۆ}ߑ3m̴I $I333k;O_+t:%Yk!IIr{{_vfZh{8iڶ-I[ I$$ I$I$I I$hlۆ$m|>?]__EIZ}~x<IdHp8 IM$YkZk$h mm۶\.L3;>3Iefmdf}$I3333$ٶ- $mIIImC$k$Iжm۶̴M$IڶE`vf@JeNpN߾=ܝwG伯W^@$h;3L۶HJr޽^xaV[k}g-$ $I$II`mI}饗/ -ff۶///%AXkLmJ$IIm$Zm6 .˗|c۶-ɾXkÇ7_Z+I$II$ٶ @۶Id۶p<x_.mx}gff`iv{۶{efZp8lv<߿mےL@Imdh $h m;3H̾h,39?Wmz76W^yH}f"I$mնmk- IfZ+ $k$k$H$ @$idC?|rl۶֚~8^{__g>3Ϝ$Xk%II&YkڶM$I$$ Hж՛oo?sϵMm}Oz׻O+_ʶmmmh$mbB$IIAmN{Nt:m}o{\}u}ߓ IۙIffffff̾'|>۞N?x޽{x<$ٶ-@[ I[@$I$A[H-ڶ]kI|ep:/y'o}>Ó׏^yI̾˥m[$Ip8N锤m$i$IM$I$Ivu{{S?SO}߷m}$I$K/DۙI$I "I$A$II6ImIft:}߷m{מ}c۶].v?om[I $I$I$ Zkhdfڶffu<onnömm>3I6 fm>3h333ݶ?N$A۵ֶmI-I6 &ڶ$A[E$h $ivfIZ޿wZwxgO#y[+mZh{\.˾3$Im;N* $=I$@$h۶m$HI6 pwwK/^|řiB۶۶o?G;p8`fڢ-&I$II" I-$@mmþ_׾}o۵ZkwZoq<$IJ$kfk$m۶m۶m$m3d۶VImۮonnvZ mLжmp}}{NVk$m&IIH@$$Hdvf$ffI`۶$Hen]OGO?׾oK^y$I$m$A{fx<޿۶۶fff$&IҶm[`Jm$k$h;3۶www??_\.۶am۶۶! m$I۶%A$Hd3$I$m$Ykaf$$i I$I-`'6 y{~ww}}̬mZk-$$I$Imڢ-$Im۶mZIڶx<޻wt:j{۶333mbfmxyx\k-$I$Iڶm hhH@$I$I03m&iI$$Ykm۶m[`ն-$k$t8ه/[c#/i_>^6wvW^yHhvfmpsss}}Z@ۙiZI$I$$kXkG>3s8~7~Vk$m@[M$m@$I$IZm$Io~#?x\ZIZZ kv>dfJ" HMt:\__83mp޽<3777mZI$ I$$@$@Hm$m$A۶$6 PŠaۖ\]?Ǐ/|[}|e|<7=NW^y@[HXk̬fIZ>wx\kI333۶mv۶$@V$I$A ž/_]]%A$Xk?'䓟U$I$hB[$ImHm&I@$I$I$I$IHHo^__xL6IۙYk=s+o} H@$" ڶmmgfflv<Oݻw}}}sss}}}$m$ h $I$H-h`fZIڶ$I`@۶@Js8onnyvfs۵ڶM$ ڶEhp8OO<|{}s뿾m۾m$Yk%I$I$m۶E[-@۶3Ӷ<}'>Ϭf3Zk}g|f~\Z Zkf}$t:]__߻wmC[m"Z+ @$\.3333Ӷ-HδEVHXZֲXж-ڶm ڶ]k-Zmgm۶m۶M$I[$i?9]߻L|}}_wi O I$IH$Iruuu}}ڶr޶-|N¾m$Immm&ٶmfK13ڮz__=ϗembh h;33Ӷ-$ж-$A[ڶm۶m[kZkZkm- /+kIж-$ Ip8Ifm۶m۶KDf/44:}n=~GQΓ>زkJ`ILm+R)$ m-@۵Z+IۙIm-$Yk%imۢ-dp>]y{}=\ﮞG$T}_k%I$HXkarYk].ON' ɾLII$ڶE]kHmz;|p8}E[$AV۶k-H̴MJ23@$mm&A$i .˶m۶}__|1I$Hw]?=IfIb$ f$A[$I ڶm۶-Zvd퇜nr}Z|蜷^ɋOzGW=>|ͷyr:a;4:!kNzw>eK񰙶mk-Zmڶm6 ZmZ`fm I۵V۵V$ ڮ}oIRۺ$3|+/]?|wO{Ww$OEMXk43www3$IE$hI I038ûmO|wp$9333m&$m$I$ & IE[m43mxO}S??-ֺ\.~?/pض m۶MI- I[hNW^ޣǷ~=x`Iжm۵hHm0~;O^zo~O~O^y]ϼ㍻nxZy?M[=9?w}߿7/_x_}N~p9ӕGtNDh HҶ-ڢ-&A@۶mE$hmmېd۶$YI6 y3yW?myq߭^O6 $IIm۶ HڶEM$ Iۻg}(m۶?o|x<$ɾI- .˶mI h$ Hr\d۶~~G~IfI==/W}Z@[h $A[ x+gؓ}.]79::<^kp'??͟3W_~'>{S}۟?77ϟol @$@[I$mE۶H֚V[$I@}Uh{_W?j`{嗓$I$ $A[žIZk;Zk$HI$}ǙٶmkO~_3m$$A 6Ih$hVH$ H$I$I$kI??3B}gͿ7_nnnf&I$I-@DۈHwn=?G}/o}A+Oe{i7vJ"Yɓvmu%-籟һy_3x7ot;=rlے(iQ-h$I۶HHdf$m m$3V[m$k$kx8َ۝;oϿw?yK7H-m$9\.Mmg& ڶEh$I[@[MHI}>p޽6I^{뭷߿Zk@$HkmI$II I[mHI$Ykp8~D[I޿_ܶ-$@[HH+4 ڌs>;SּyvoueikjE7s4']{n9vm2o?:w^o?{g& ڮlۆ$k-m$$h $k-Lmے|F-m\._җZm H$H $m"II" " f$ mgfmg&I[/LkЇ>t8f&Ih I-Mm۵V[Z X}rƾerwt;=}cW~ൺz ;9Vr\V[2J;4a:{dvk?S[f.9g֩ysϽ%cYu~z%`f$@ff$H$333033#Im&imڶ]kmm&9q533$I۶+I\ۛ_/v9ۯ:hٶ 36Im"I۶$kmېd$ Zr`m[`fj $i@`flK/akI;k$I mm$kmkid Imo>z&I$H^zZ @HIh Qt:/fϮ<5OY s9O7<=A7- \v=:v.ON8a.xko'u7{OW/r$- I$m" " $I$A[&lvdhY>X3?||ݓ]{lpimmm[ Z m}m;3H23mJm$$^@[̼IڶMڶE$XkL[Lh M֚Yk%io|$g}6I[6Uu_WE~75e[kNNn|k_;~ͫݩLmW^孫\[<]rxz/~ݿ:fWTm&Iv$km&A[m۶I@$HIضm$-ږ4췾_û'jwygK |Nd6 ڶEI$ IL$IҶZkw$Yk̾I$IIm$ m{H}ooo$V@۶m$@[mmIm$IM$IڶIvOҶm- R4ww?sxo~{^̗>:ڽ=̾m`fZm@$mMHmIZkm-H6I EH.m}ߓ$H@-&i$I[$i6I$HҶm-6I۵b53mZZ m" E$\.@ \]]@۶m6I@$mMT'rX$-׶SO_]/O^[tߎ΅ӞwnSWO}=}.]lssIbzՏ~O_}=W|nzls/{\&k_UP(hAdN?ϿkGNGܿ7'u7\}__;9?s\7ǣKvն3-mm3Ӷ-&I6 H$۶Zk$h$m$k;AJ{`_||-3Kq?.Ommm$@E$mmv`S ۶]]]"ImZhIڢm$Ihm&E$-Zk$h $IAmO~u~uszzOAdq1*e@]d&+ƍ&M 1hlq3q ˒$x3b1So`ajm{i{n^-&yi۶mIh mqIW<|^_x;\>ux+o'wKOyݞ=ndo;ro>_M~co~CJ={xr:swy/|ߣW_{Om=}EmH23m۶=hhh;3m$II$IvmL$mm3@".pxss}'z}v˓^$mh I[$@$h6 hdfvh$$mI-k! m/IH$-ڶ6I[@$m$IҶm$@[$6I۶3I$Im^m |+_]I"I[IHz}=|'O ۞$f_=WϽ7;]Ó䖹qΞ5ɗǿw?|^~5;YyO}w9 $Ahh{$Iffw13$$I{\v]$@$03mۂ2o;u;>ٯ? ~ޞnvw$h -m[m$Imyh n[ I-җ;vM;p_WO>g\͙{<˺{[}=:={#zGFDv$Imݶq$imnݶmI$Irq3mh6 @2. }{}_yxmy۶m۶<{g[=ϳ&۶m[ I۶mѶm۶fm$IIffffffmwm[I$I3f^/R$Hmvwۢmۙ I۶In7I$i۶m۶hy" $A[Lmwm[$I$IpG~"I۶ڶEMIHڶ-$@rwO/={w/oEse̚;O^8~_}oCsìcem$qN{t>g?Ǟsg#/Nepv-n$I`wwhhmn=I$ 333mgff6I@$Ifff̜繻Jn(ϼG|qymmwm۶mwwwmh۶m[m 3m$I$Imm$q`wHHӟ4Idwmh6 H23hmm[Im жmm$3h۶-&_|3A|39sfڶm$ж-̞8~?]۝)gq>y>^ׯ[݇HnIޜ7$(I\l5e.^~o|gw90O⶗88}}go>GO<@۶HHm&iymImr$Idf1ϒSy>ofK_vyz fybfڶm$h$HI6 @[@$mIIm$ $y'Iykkۢm$ m$ivf$m$$̴]$}{}$;3Ho$-Hp<;_jdBSso?[W/!A!Pu\K羺w}xاz؇2g>?m=swѶ-ж-ڶ]n=vn۶h m۶m۶mm$=sw&9# ^_bw&i;3G>! ڶmۢ-h-f6Iyy3sGж'?ɗ_~z牶H$j/;?/K_70雗|?swOnY4ql6qg/?wσ]w;|?}o}WGGC6 жm[EIh3vw۶m@@$IH$IIBλ>}-33<&A۶Immvwwwwwm۶mжm۶mݶm$I@$hz}W~ m=>k]ڢm۶mۢm۶HI`wwww$ڶE$I$ivwgC}8O_k$m-@[h۶mm.}Gߜg9^$rןO^s== @=><'˳G/ċC󨕳3؛ |{Ӷm۶m$Immdff&Imw.f8h mE$ml}~q={kMx sn'O "I۶IvIdf$I$" I$IҶm{tKf죿5Ͽpg<W'w_dW/yGO.$溇sѵ{_}[o>~<_ڗl|Cܯ$A.hh$Iۙg<# 033<6I`fm drŅ'xڶ.۶m$m;3Iݶy.vwwwww&E۶mhH23q$HH I$='?ꫯ@|w~wwwI $i$fm$I$n/w|w_'?{nw$ ж-@k2Ivwqy{x2p{ͻ=ˣs}ՇuR4 +5t7sK<љf=>z;?}ryնm۶mm133m$@i{g=9Mя~4@$I"IE$I Im۶mmIжm۶m}웿mۿۿqvf-mmWDrog~C|+ge^yr/jZf/L_wyy=<;rww}.Om۶m۶m$I$i6I۶h8iyfffж-$vm$I$I$I$ Вffyvw۶mm$ vh M$I$I3333$I$Im۶ڶh8y~~ =m.I$IH23IvwhmwwwmqK/M?/~_{qV7@vn͝:~=[nrM+9λ?ʇ޶$3 Immmw-f8mH23333qL۶mۢm[<<<K_//qmL@[$II $MI]CK֝q}=O7O h M#I?yמMq_?o}sV۶mwh۶m=ϳ-E$I3I$333q$m$I$IL8f3sy8dw]36qm] 13m$^˥mI@$hvwl{$98I$I$Im۶I㘙$W^_.v8sfwm].fH23I.bf$I23@۶h6 жm۶mdfH8cf"I>|w}zڞ__>rIHH@m۶m۶ڶ-#fgs·~ͯmggn^{]|p=I mmw<9mo\7]O~+_~xrp>}zwwO|_q^$iq{{?ynA۶A$I㘙$h۶m[-mm۶m[$~3OOݶ$noc^.$ mHm$I6Imgmwwwg8$m"IE[ 03Iqz]O?w<ϙEO~zǑ$ hIM23@$a?#_z}?[3DZw y<yþ٭?5=9-vm m[Ǔ[q|E.weޝKι$ $ m<ϳm<󜙙A[$IrqH I-$A$Im۶mwwwIDATm;qqr^qm۶h6̠-ڢ-6I=ϳq/ /dw@[`fHҶm۶$3sG$6z\.m۶=sw_{}.m$?~mIz^יI$]333I$zMdfffwg83G|̜q/_^mhmL$@۶mTa׻^ׯqtYh H$@۶Iv`hHԯso{8$6qqm咤m8 $i$Im۶$I2388mH$ h۶?q6ImE[$A۶I<8$Im$Hdw///O$Ǒm$I3?r\$3ݽnmw@$I&A$m۶$ݶm۶mr^8ϳcO?c8y?yh$Iж-ڶMڶJ<o;[62@۶m維nFSI)o;/_iH23I$ݶmw3$I"I$h @[ڶm۶mm۶-m13If&I۶Im E;3?\.y= @ݶmI8I@$I$n?y&i6w~臾{88v3hmwI $]$ݶh m۶mdfp&<۞ٶ?<϶m&\.w}뭷ڶ@$I$m۶vmm هk,H5C'@m۶Um7T 7tI333IvffmbwݶI fh ۶m۶m۶m۶m[.$If88L$I IE[`fr\.i$I$qvwl E}zg9cww7 $.pg[m&9#I۶IHn<^.ٳ??% IW7${vm۶@۶m$IH$II$IH-=ᲽiW)"s}rkQOlm6I$AL$m4"oå99һ#?#/r^ݙImwyIf& ڶm $A$hIn8.믿~? ?#?k]Mmm.h Im$ɳ+Oo8{Σ'lI$IVv^ypܮY)W~W߸&O۶<$3s'8n7fvf&A$H-<{~ϻO^W /~W^\. qE I$@=ϳmm۶m$I$ mgfwn{_/yr?W_ٟǏE$ I$I$I$H䦗mxO$\?W\/wkG-m Iw?|cpdx˗m<ϙ033s$Idff& f8I23Hy`fM'߃0|Yk[:l|2ca4&0G1= !)&3I&'i8&vNK`AHByKڧ}z]mZhA[ I$IݻwI$I۶̶m۶%I-NͶmIH03k8ZIf&qkmNӶmIHmDZ:Z ZHW~W/~˷|3777Iq@qmHfmZm$i{uuu?G雾i3@m>?'~|%&Im$AImgm[$I$I$Ih@@Kꛞ|篽q'~tmIh$A2zS.Wq;7kCOIB$m$$I$I$ٶm۶$Iڶ]kE$LhdfI$I$v=Ifmg& $̬̜N$m"m۵V[qI}ڶM$ mZk8Zq]kbf&Z8>O|K_u=Sq$IImKr\~oooG}3yaL$@$kZk%$m$AG]]]#SODZmf&I`53̟3??}:㘙Ifm" @Lm13IZm۶m Oq>mPHΝ_?qŚ#mv&f{ůSηmG-f&I[ vfж-Im۶mf03I@k33$ &Z+̠-f&I$I$7m۶M23IIdfmKrG뛛$m$ m۶Im|>ݶrzw$A$ImZmqZZ &Imm[k?_oWUk-E$mMoO~z׻^>~xf6 mKrm{| //})`$3Zk\.ض 8̬Hr{{{\noo7?ws۶Vi;3۶8}'>$9c۶8f&I ɶmH@H$m$@zk˾f/7|vvnV_z>g{IHn+qlN7q0W'5qݞ&ڶZ m&A$@$3$l۶{$IZ@$h;33$IHI " mIj$m&i{qINtڶm$mZ36IۙA8@۶ֺ\.q ZIII=cfNS{?w}w]k%Z3m[[盛]O~~C/ֺ\.kmے$l6Z x>ӿmt:8I\.۶N__O/O;wlv\ffu\NE۶I&A۶hжm$Xk%IZ I`6 }?g˺l|;߹#v Hm۶mڶ8S_h,dzZ>^s7{ױ j6I[Mm۶k$IdfLm۶k$3-L-HH$vb-M23۶L۵-ڶ̴mJ$t-I88.Z mm&Am[qmk|>?/_'~ oxC|uu6vf8$޽{_җ/|_|gN~gy_7կ~k8ZIL8p̣GNӶmW|>ޞNmg8mۀm}Z k$3mmm@[mMV]'Ͽӳ_3rqd˱_f/ I襜mۮ<}3sxY85Oz}ϴm$ڶ$I$$I6 Mm$@3@$Im$6 J23۶%Im;3I@$Yk&}ߓm$Ihvu\s[-h$$V}g׏=JOݻw?+?~uuvd53k-Lm㘙ql׾}-mZ۶ ZmZI$9#|t:NǏo۶Ç޽;33-ڮڶݶ-$A۶I@m$i6I`$IЊl7.S}w̗eu[˜W|=-ۗq>4T If&Zbin {y'LW/.Ǒӧԙ՗Ym$ EV$If&I$I m$m۶m I۶HI$AIlo|$m3mL$I$ H23IZq\.8ff۶$q̣G̴$"Z+I6 `֚3m$mbf{t:cfNg?ٿ{ի^־IfI$I$ImKҶZZ8ZkvHm$I$IIm$im[OO?>m۶m;'Yk6IVm" E۵VmgmmZIf8$$mѶm[$A$3$I$IPԉnrnr3oz}\.ٳmn~y=|s}?qWWWk8nnn$h̴&"I-ZIhZ̜ ɗpy.l\N'~W/\.ڶrI23mE۶|>ZHmnvfm۶EINӾt:XkNw7omkgg~#ȃmff۶$mg8II&A$IZI&IҶ-$HVۙImL۶If5}˗Ŀ3G|{t;83?~yYsytsyb@E$k|}?]ؗ9g7oz;"GW$iH$$Hd۶m HIjڶ m"$I{HH$Ir\.k-$ٶm۶YkamghZk].$I&Immk6Ip:\]]<~ǯoM޿ww߻wo6EZ 3_|ŗ^zrNU۵Vۙi$i$Z+̴E[Z I I $IxWy׍kZr\Zw={ush HL\?^/[ϿW[[O,X?m_W7ws_=./ɦ&Imۙi$Idf}=II`fmA۶mqIݻ$$ 8cu\ml 03mZ8i m$3֚`ڶ-|;wk-L$m$j۶-$I$I$Ifffffffffffff&I$Imۮ Z+I333mn~w|ogW}-NZ3HJm۶Id$I$mm$$IIIڮfZF/<Ӽ{ru~i]=Vgl^W/<'_|գ>XlMPHH23I@8ۓă?i]ɾyWmY]IbfǑdf Lmېjh$ Zk-$I$h{qmkmڶMm$IDZj{\.Zk}ߓжZ|> .`ն-m;#Zk۶$I}_kmo{|;7m$ Ǒ$I[$9#Imے8/g?/}K/W^zÇgc=~ hI@k_7ɹy]z|}_~:|ܿ_}>'NJ23m/K۶m۶ I$k-l۶{$I}}fZh$I۵Z+ ڶǏ?~| m۶-ɶmI@$8¾3$ HҶm|>ޮZI^.$If&I8m[k8v7 w;9IfmZk$?g?>}+_\.kG].Zk8ֶmm^__N$i׼5]w޳>׿q$3|ܻwOOտW?϶IrǶm@mۙYkL۶IE$@$oxٿ֯;ˎ=;]˴;/㻿w?k?ś'9s;@j]y>~K;/%Z_^k^ZO+緻]Mvm۾XkmZkI$m̬LImۮ&Ivvնt8I333H}/ڮ.rrt:N|\.m$Ykmm6tZk||oqe۶mۀ$pG~K_gO?я~cg>/v۶$md۶i֚Mr\ff۶rmIZ3;zꩯگ}~WIVmk-$id}c??S?Sqܽ{r`fZ3$I[DZm13m" @$m&IJIp̴MY\];OW/oW\^>.pz|'/WO>go裯ݏP&Anǣ'7?}zvqѾ|C«ye愶hB8mmmt۶-6Ik ZkgZkk-L43mg&I3$I$IZrM23k<|w޽stJ@[lvǃ. k$mۮfml63r=}|+ZIZIIE~__>O}Sg=lۆVۙf&qql3sm}߶-NtZq33ϼ}{_V$&qql63IwiIH$r$m6 I "Imm$9cfձvyӣӃ˝o~/n9hwf//܃'?f0wMLr{\7ׯ{=|w??> M23Hm13I.G>K/W?=rI$kV[̠m$mZmjIft:Nm۶m۶mfff6Zkdffff=zCo~?}׽u۶Z3i;33m[կo7ſ777۶ݶ8\]]].$I$$I&E$$ vffMmw6/=7ͳ~|utd-\/|[7]~W=ytzuSWs&+|dIbj0fy:W'<ޞ~;xݗ}<ڜ̖=\N/[?Z- Lm$h;339N3"qIEkV[$$Iv53Xkm6 ڢm޽{Zk8fffInnnm$Hk[$i ?޶ \.y۶O}{߶m Imض~~ۿ:3۶q=:m$ $ڮ&I8}f}:No63۶ @$i֚\.<|ӟ//G?ћgyΝ;mZkA$m$imۻ=m?}ooo}I$i$$ жmm$HI"m׺Dfz޷/Sr׻k_Ro&Gvwm[/;ޞw6˓++ke;*L^9vZum帜U7/{;t۫k=ڜeݥ/\=v|99;$ I$H23I&I333۶%mgk$$m" Zm$6IhH23XkDZݻwI888m333IffA$IIfr޶E$mۢ9ɶm?~k^7k$I&$XkDZ<|~~G~/ſ?>f&q?xѣG3$IfmѶ-ZkV۶k$NmN̴MH23I|N8ff$/?'gg?׽f۶6I$f|>uogy藿}߷mmж-$&Im$h $Yk! ۶HIffYr>?}W\}ۼs~cy_O_wg_rϿ8/>zp<^}x6'[ë'nXyxs>-oyS9Ϻo=޷]s2/syo^fv.KZk-Em6$Im۾IIf&Z-ڶ]k!I8Lm۰V۶hvwHk8nooh;33m۶mH-Z=\.kh6 m^kݿ۾?kfM$@8ѣ__Ї>t{{m[$@/8ZkjXkmt:}߶mfmKIIm8\.kmێH23I?~}?_]]sNm13m`oo|~ _|ruudնm$h$$$XkM$ $ivf`ffin3Wk{}_5^yQg+sJqtv7^[&{:dnm=^ֿ~_>k^><}+_~^d=]ڭZm3$I$3l۶$m$Yk%Ih۶m۶ ff6 mZH }{ֺ\.qǑd۶}߷mKҶm/Zk6$Yk$9k~oۏHvf03Z 3s\>O~3Zk%ǁmێx饗>|"I۶۶Z36$}m۶mKض e$I$hk-\.mDZZ ۶ݶ|>c5_5{>=d6q$I'??yq3mHv$ 3-&ڶ=N8۶ ffVَr絗['=vs=nyMMv=_񫧗\ϼs_yɫ\_z'_qU/;k^;7#۲7٬n&ʦۥw~W<]-yx^w^ݞN6B[m$۶L$8>3 Zkfp\l۶\.q- ضmB۵Z-fH$ImZk۶a۶$IBH̴Ç&i{Gi{tZk~|+ZIIVS?S__\.WWWm&iÇ_~jI88mK3tm[$m-ڮ Zm咤-qG3;ڮfѣG-oy23h;3I̬m{_ }OǏ$rٶmIZk6E[m}ovfڶMbrlO ys_/Aa"޴g9:k2E̝ulzs\5[mqK['8Ϻf+Zú?l۶mۗ}C'xo~mHA;w|7~+^~?n;3IH۶$i;3m@۶mmZH$moq\j%\]w[wzy{a^=ؒ$ڬ5ӣv~nm͖ld[$mgՇ?~/?sw=\r>y{۵ڢm۶I$= fm̾۶@Iڮ$Zm۶mZ۶L$@$@$h;3I"v="̴- ry|\.hmۮ|~k^?>mk$\.۶m/|G~GGZ۶=mdi{>?~|\ZmgI$43\__o۶m۾@$@HZ Xk].rrq03IkI|>ӟ_^xo~+_JMd[gGݿѣGq޶-fm۶6 I$I$Y3u٬69s{qùo~oo/˱]t*3FVnrel+D~zίw~} _>׭umGvU3Z 3Hm̾۶m$@[$I.Km}OI$m$۽{IH$ 03If&I۵V[8Vm׽o|mq`6$9cfZ׼5Ї{$3m$i$mm$mE[icmtbt<|y/_uO^}tm{r DZkGRm;gk\Pm{ŝ׼k^xn^~Z}؞ZG۶Ivf̾hm۾IIHh{l6I[M$H$ L۶H23۽{H$ vfh$mZ hIrmmg& e۟O|#ٶ8i63r36I$3___3dfI$ڶmvuZkZkZk-&$m۶Mm[$INqi6 |}?sk޶Wqp$!%Li4-P!FjN5tJZJA% F30# Z4rq`;81>\WZ?O~#U53U53I䛿쫯ѣ}onn㘙$3IIfITUw# Rbqyq _ڇ?娬e.=P9VjjuM@2zv:.ozӼ_9޼\.ݍ$$?$U53]U9N__/}K۶afZIPU3\k8*Iֶmk|޶mUUIPUUI$ >8nt7`3m[UuTU$k$IqkmZ_~_>^x@NRU|y{>777ef$I23I03IZq$IIZ*$ӓ)_/=˿z]^זuWl^ 31#*,69m_<;^{zꓛןv7zv)YR3c M߯z^>mm{mo_0ݨLIr>J23III$* }I$U$ dfPUIf& 3`fOg8$U53033$*t7 3ݨ$I03k?oN$=3kd۶3^;#ɶmo۶; I$IfU53 $Ol:T?\y7뺻߯zzuU9O_7gowy|u;e˥Nms=zdu؎˚>J\Oեnmu~77yᵯ>Qu٪:9WutN.Vm50777Hq$AAUqqwwULwt:U13qT|w~'03'OcfqI㘙^k$I$$IRU333Hj>c6LL8_?#?Z8m}GUuw$UFUafH+Oh[UKwhOw֣l6`X3fNyr~^_z/qg}7z޸ʛx.u:Ycs3HO:ݞG_x[={syo7=>gMs?ײ?o;z]UGyu~p=cff&ɶmk$۶mVUIm;NI* 8>8UI233 `f{f IA3SU<_/;ί_kL$Uu^O>8~g~\m}_k333$IAc=<=:[So?> ϧ7&'? ͇|b~3~+o޺>9o9նժ9mUʩf(:׼~~l}sGO|+=y->xt3a9αgU6] ;'^{s]ceqNnLkmZ`ff&IUI`ff$UUUId{}ߟ>}z}GU?'}z>:#?#ks=}t: $3s\. $Ykm۶m|>ϧi۶B`ff3DZqLtww# J`fUUU$I$I̶mkW^y/I}̬.Z~?VwN8fff03ݽmZffffU:?'U==қ_}|~]^Wx#tWOyO~? >T9oLâsǚGXz+Sɖ,7K|빏}OsS/|sO}3<ͼQ'NQq28~1$=اNIN|N`f03q IIRUfIRUI$mkY?03 Iw~^}ON}??wkfmn`fTݏ?/8$q]UUmtڶmI*I$$^333H23ItTU$fff$L$H$q>}yW>򑏼303I}߶-|˷oƧ>|}ffH$*&DTztwoп_X?^c ̄O?''>+f[8ozgsiuvͬYy󗷛u={p㡛k_on=373sԚm:WǥGuWu̩zl}k͹]U>nrSW?~z?:K_Mc;,#__Ƽ^/ qt-NL`f*̠$ILwc֪$mے ff=~03I ;Z/q3SU8Z/`w'LwW??8$f&I$3{wo۶Zkm۶mZk۶Z H$I$3>3Uڶ-IVDZ֚I$U$HRU3$Iw|__x;~jff}w=s??ɓ$qNmېdf*qUv:fzܚJF7nO_󫿹o&ۇÞ HI8cf۶NJgf=~$̠03}^}?zvw\.N?t:LU! fffm??L IA\.Uu:jZk%I$IU$}ߏֶmU$UUUU333ITUwwww'Ig+/q$8Z|7|Ûo?=I$$$q~tyz}+kk'G23[*.oK_o/qs͸\ӹg=IUUU$H23qtHB$I$a q^5ۣ|;?u:tJHX?$033}}?cN}Or?O^|m*$Yk}3|x}f{۶m۶m[km۶֪JRUI$$}GwINS*$I HdffItwwZIf& 03IZU/}۷l63*>/'>\UH23q r{~o+{#AQ#9.{~?~Gه}379Θ=qIZI $q=3H$I$IIߛ>?ٯ??W_xwt'zU>k?yf~w_|j{fsr}#SATUw$$@$9N777U ITUUǏ fffw7Hm[ww̼=;;㨪F\m>ȏG>G! {8m;Ud۶JRUI$I$AzǑ$YkI$̠H$$ IU@ZU53333IItwX_I2]/כ۪u}J$uf I$I$A`xdMFu?u~_~s{o2J:\{^=Qֹ]4$IrǾIfI$AIZUdff&I$Ac̠fzv7$^3󶷽O?GnT$կ~GG?=|rNSw$Awwwm۶m$k$UUUI$I$@wwwwwwww$L$FUafTUU $H$3333$IU%AwwI e۶O}S_>zM$Uq|}|#wwwUdfjf03Xku<9{7k.&ڪV_O/WW>^kz[gǕ{]Mzm۶-I$I $UA$I$I$L_w{ͪl)Wn~ۧ?{}RunVqFO_u_ӯ|ߞzI }?fUI U֪*$Ǐ03tqݝdZk%IOɇ~:Nֺ\.տ7ZZ333IIfg&IUU$I$H23$LwDZ;gqH333I`f$I {f㘙$k-$UUUU@$Kt:{۶$3$IU%'~W~eQUHRU\udԓie]Nf:噿߿~tV׬]徯Wj߯4ddJ$H@U%I$*yS9*wT^_? suלNq~v?nǛ|˷/qSfajcLWU$}߻f&IU%AV$I03H?~ 03338}twwS$*L$mۀ$@$$I 033q dBJ$ `f$I3sDZ{wǑddf\.Ifffpq twwwwwZ q*$I$ $ILw#ɶmI//[雾$03/+_$Uݨ\mW=/q:w:]߼?g|ٱ?zȱOww_#KNӶm۶ II$IUfzz?Vd-Um=9x:[ϥm^~n}z173ZսW T.$VIfH2333 In mCU[ֿGI23I$I֯ʯ||> `ff3$I$$k$I $Lw_.:3UI]UI; fff$I$A$ILw'ZkZkf3ݨmے`ffk{{wk$q {_I.|8{fZ[:{ΗcfO7wI>y}iœzk/W>ts}'kfz^U3t7TU$AtT`=~`fffffff033$AU/?ۿzN$}Z8m$k-$3tt 03$U$I$U$f& 03ݍLwLwwtqݍYk%@$333@$AULw3]UU533333SU333U333I*$9c۶|;ۿ Z 3Ͼmo'O$JZ Mm}޻o[ϯ]zxw9.]NoRZkmv:NӶmIZU I$@ IH23q13U$3UUUqI333Iŗ{׿wm3z5U}=xfw_y~sw˱5j1`8@$@IZIqqqqDZ?~ LUuTUUuqH$$Ic쏝N^kaf ۶}Ͽ+ө 333333=3333333333q$IH tLw3$3333uw֚$3Udff&IfH233ݝI$twdfU$3`۶__ί$]UHr^?~Ƿm;cfYuݯO4O:}nnu_rlk߯o~Zk۶Jڶt:Nm۪*IUUZ$A qz\.H3SUIt:Uff& f3ܳ=|3}J}ۏ^z;%`'ۼm󩯼S۶s)#$8# k$*$ 3333Y?`f I$qݝt:u7kqN}߫jf$y_K?S?u>$3ݘVYkaf H23If& {N233$ {f}n`f$@$IfHIIHRUI$ df$AUU ɶm_WxHRU3SUIݷ>OOUqcDcl}=~ӷg|~NqUn=CrNm|޶m۶$HRUIf&I$AI $}/˾ݍ$UUUI8N۶Ut13IfCq$`f033$I23ݽZk Z3$I03H23ItwULwwTffff8>cf̾Xk%n$Ig$IH I$3Zkaffn ֧>}zǶm3T^zZݝ$ Hm*9I]_ӷnO}uힹƵVuڶmZk۶֪$`fdf$I23H$$3$Aw_8TնmI*`fj~3IG4sԗ޼|ϯz4t Rd>/=rwS L>33SU8cf$Yk%AU%AfZX~`ff&IL$AmNSUt:?C? u3>'>}ߑLw# fZIHmt7* 3$If&t7pqILw}Gw ffffITfff`f03*`f$I t7jf$U$ TӧO??^$$Ç??[ot:UR 3Z7&H$ٶ|Zk[kNH I$$U53H$ Iz^.8PUIm;I* $ITնmI}߶g}A&ɜ:g_wÓuZ姟If&IwA ZkTUZkfֻn$3333$ fI$Im9çiN23U_{mVU=3I$`f$U$ITUAUuq@w Zk$=38#Z 3I333ITU$I$ $I$  ݍV$k- fffjfZI>||gIgtZ+ $&~q̾LWUUt:UZkUUH$I$ATf^O>^wwtmsUUf&I$333IT3Ym@*޽h}O+op$H23Iffw$$k$$If&I8ֻn I$INSUN$_w}{r9UuGULO~//}KUmU53$A$II* $* 03U883333 r333I$I$U$ITU;I$IU53@LLLw_תJ I.K~{{_~}gf6TryOOk8\. {fֶ]יYkUv*Yk۶m۶mk$I U AU% Lz>}7޸^zI|>N|:f& f&I۶UZUfF;r7yx{^~|1 @\ݏ7zczSi$$3;3$IPUU$II23]z@3$$I IUN|>I03I~Z3SUqf03@If&I$UUUU$t333q}n$I}߯q3$$$Hf& II333ݍBw'YkU *ɾIضm+<|{{f&IwWUя~ݝ}m G+NyZkZU$I$I$@$Udfq=yzvqq$9kBAL$I $3df038fӵu}K_~[?p~3uoIi9ݳ'6c$3`8f&IU%A$UTUUǏ'I$I$I$I$I$I@$I03HHTUѣGooB$__/k۶%=33333338>#Z$$IdfdftU8$k$333q{w $LU%I$q@UUfIdf`fm$3$UUUI TPU$3J23kwwqTUU%Yku|~OO%q38gd-jڶZTUU%I $}G}>}zwww\+U:NgM3$@Idf I*Iwi]s翚/w}Q=yz9Uv̳/?9?kϾvWk-u?v $8$I $I H `۶t\.ۿ@?T13 `f$$n$`fg3 㘙8>8$A$I$ L$Fw fff{fffffffLwg ݽq}Gw g8O}So$U53H=ߺ{U~qq13HbֶjZkZkUU3fff03H nqɓ'O>\.8Ir>onnnooygyt:N$I03$'O133d۶9'}<~>`NoOkvyk~?M=79c333I IUUf3 $H$I$IݽwH`f3̇>9N03333f3$3333qtwwwwtqDZqq $f $$Udf$ILww$3q13@ֶmk-t dffv۶گm63̋/]]۶8$8c8;Hm|޶ZUUUk0333333twwtqr߿O>\.=3Im;Nt:Ufpwwo믿ӧOH$U˵ݫOO=}oN.Y|G{ڷ9I03@$IfffffffffHw$A$H$=wxGw'03֪*9gfffUUUITUn jff=3q~q333$IHI$U533=303qLUUU IU%A03* TUUaff&IU!I$Hm+/w}@{'~'^}ժ:33333SUkmt$I ffffff`ffgIz\.zLwm[kmv>|>Nt:N$ Jr^x㍧O~^} Ǹ9;7뵮sm'2;>O陕7O\g%H8$=3333=3kJ$@I @Uu|˷||Mw'03U/|p|N233333f333333II$Iktq388H$ AA$Irfff* f@$̠$$$I$A$Xk߯7wLx{/˶mww$q777۶%I23`fffff3Z 3fqTUmNSUZk۶m۶m[kf&I$$03]U3s\tzgsUU_w} ?M?m\2qyi|xfݬf03@wL`fKϮy󺟵 _REɑ˪iua 2(tfdoIYg:HbGMkJ:,YIf8n$Imih6 I$3|>߼y?&yfw>}}}{99m$뺒u]IHs9-s9}|>9$HEm`f]$I23If& x<u}߻{ݶ .M23m9uL9vwG>~~_񸮫-f& 3s]mvwwwwwsιss9{9s^__߽{_{|m%u]u˛7o޾}{]$i{ιIffff& {ݙI=|嗿/>|zÛׯz?r.9ǚ)Oaɯ#ye%m$3333dfm$uL$hmbw۶Hm@m $I23I`f_I9I{o??Nrbw۶mNx<"$IIsm眶I>|${^וmڶ.:`w9@[-df.f$Im̴mm۶-n$u%m>y]9' 6ӟ圓H23uL۶h m۶$mHx0I\IDAT<9}9$3If&x<o߾}$h$I$@[m$Img&I[_ݻwusLI͛3?y|K?XN}]޾yf{|~:|ܝ Iݽ H|>93sI$IH0 $s}>M$|>?G?@???s}sM$̼\͛q]u]9m I>n[`w9I=sbwwm[-Hm۶ݶm -$m${ivw&$9M $}>眙9޿6 m|>w7 }}svww||>h{}swm-fff\u]u]uL$ڶmzιkw9mۢm۶8zxw/Q>~ˑgg2;M&f.-fffmm $$@=}|>|}ݶmۢm$$3x<~w~^וdw7o\ն]$$I}Iھ--ж9s9m{ι{wsݶݶmwww9ssvm۶mwww9s&IIn۶m۶m M23ݶIڶm۶-$}wg_?Hm:|gyI{y>s}}}9s9s9s9gwm$m뚙뺮kf뚙^^^m۶mݶ_~m۶h{ι>|8rkϾ:ym>$Ϲ<{q>~?=mݶh;3IH$ vwwwww۶M=m6I۶Hdfڞsf&9w7{]W۶If?7?駟~zι{fຮ$I I[EݝmwwfڶIffww9=m{wm&i{w$H $]nN9'Im۶I9IH`w$]03mg-HE$Hś7oÇ7}}ߏӶ-~~WW/xڞsx$A-m۶-$$I9m$H23u+ fff033df&i @۶mm$x<m۶mqܻ1{{_~7gQ^w/s>o~۟}㌗$m[M$ix<36I$ж-vww9}ݶm$ ڢ-033$ ̻w?_>m[ w̴m{ΙIvf3333$Imwo9gwn9$iu%im۶m۶;3mwE[9s9m9۶&m .m$ m۶m$@m۶E\ݻ$;3Iv3pIҶm$mm&$i I⺮$IfHdf<뺒$A$$m1337o<$}u]IE[$H\{?'r_ysxfux<G$IڶݶIvwwn۶m۶E$8缾svs]`f$3$Im۶-Iڶm{iݶILkf9gwwnݶmwwwm-fffh3$߾}ݿ?L$u~;_՗$6 }|m3&fffE۶I$Im$m۶M$LO?[7o.`w13IWޑϿ?zyrǟ۾޽k;33$ h$mIIffff&Imv I$Im 3<M23Ifff^͛i ]$Idfv?$m$ /m&$mwmmdfж&I$h۶}ݶI9$m9L nѶ̠m[$$u]cw$+&y<36n$I$뺮If{}=nۙImw3m9}n۶m$s9_L$~'3 ;3Iж=s9眶8n=<&Im$ݝm.ڶE[mh{i۶9㺮$m///_>O?4I[}߻>i3y2|񒿽vosN~5^nI33Ivwfvs&A۶mLs뚙.m$A$}sv7I$mx뺒sf&Al__|x<333IHIڶmIsιysmzAI I.$Am $Idff&$ffffff$-$I$I<뺮뺮x vm9msΟnM3>~뷮j۶-6 v-$Ifm$m~>{ιsι{wwww9ms}眙I9nvwwwwwww?||>www ຮ&Ͼog3ӶmI m{w77^˧?ï7^>|ᜃm۶m۶m۶m۶m۶m[s9mn۶q]Hh6}߻{H m{s&i$m$9$$I$i۶m۶m?}Y۶mI޽{3$$If& жmIIڶ]yL۶m۶m `w&hvwJٶ-n[If& $i۶m۶m"u]u]533I$ vw133sN$Ivwwww?O߿oIp7OHE$Ivhvww7I=$i{&ݶ9}}<缾~|s>>|>}m$II۶-vwۯK'mm13vE~3Cӳ<^?4n9_}v}H$um Ivww"I[F9mm@[bf$I$@M]Lim͛__<$3vwg/я~tG}6 xݶm۶EL۶6I[-bw~>m`w$IҶm[$I$i6Imdfv7 f-s $ -Iu]u] mm`fpAh۶ I[$?O>df&i o'|_9'm$mۢm[.fmmѶ}hu$眶$IfIvx|bfv3$$A-&i h $svO?x'h333|mhdw v-um6I۶h{]ڶm$n=<9߿ꫯÇL$IҶ-h @$I`fffw۾yK${ny}MNa檞7L6c\>Om$mI ڶm۶m۶mwwwwI-6I${ixHm-ڢ9gwgff$i h.$i# ̴{7M vwf?_|rIA@H̴m9}svff&Iڞs$3x$Im-n[-df03h۶m$IIm$Af&$I$A$3Ivm I}h$mo,̴$m" жm۶HmMI$9gw 3sι+u]I93x|h 9>O{g~]y?ZϹ~>Nm@۶Hu]uA$Hmdw13hm&A I-ڢn[n.L[Hvw$9-m}w__~?33Iݝ$hmۢm+ "I[ns9gwѶm۶IsHAM@mm $$$@$IM$Iv7I$I亮뺒$$3m-$i$&A$m6 x<~G?BIbw?x>3336IE$mѶm۶Hm-II$$mѶm$]Lm$m" vO?}_~_>f%2/o>?K>[7?o~5zL6 m I$3Ӷ-ڶMm H23h۶m[m[m;3]̴`wL$mwwwwsvwf>|o~O?|W_ׁ$@[$immwI`wwsiݶ]$9$iu%i۶-m$" ڢ$i m$I۶I$I ж-$\x?o}[@ꫯ⋙i$$۶mm@$8sm&ݶHr]WEsf-$m$6 Iڢ-ڶu]m&]m$mwH23xI$Imgm-mImۢ-m~9H__O~ӟ>gm۶m$m$I䜓$ &II жms\@[yff0$__|W?}䞜+kOys޼rHH-ڶmm"Imn[mf&IG[m[$ihIm۶M3m"I۶۶mH$3$|__~W_%u]8n۶H$Ih۶-^53h$m`wg"I33I]LHm[$IL$333I$A۶ڶE[" imw3$Ivw|9׿#9' IIڢ-$i$I$33ӶmIfff$IrA$Ig}|^ۜ?OoF+@i~룗}=sMΜsfmݶ}$mۢ-ж9gf$i;3IHI\u]\]m mmۢ-vm=$ݶmH$8ຮ裏>c_~W///3vfmm9H8`ff&}3mIdw$x<8 I۶ڢ-I$̠m$i6 $u]3dfE۶HE[$ ڶm6 " " ///_~_~ k`5_}|=缼Ivw9m&IҶ-жm "h///o޼IrM><$ݶ{9sfhvf9m۶mM233IvI$m[ $IIڢ-fmw7I$h m$I$ 3333hH-$I-m^W_{|o޼m۶u%I$$xh$ f $I3H$Am`f۷_gz<|Y@˟=>(9ss-p9svwfH$Ihvffm[-$I>9H`wmh `w۶]smE۶@۶m6IۙIIO><36 |>9mۢ-Eۙ$y<3vwm۶$&I3LsN[sfm>$Im$HI$Iڢmۙ&I@۶mmmm۶m߽{Gyff9-mP$i亮.$j]$s\*ɞE(&@zk޾yz쳯oyyyyyyA>.vm[$$m\ו$ $`wws9.I@۶mm۶hHI$IfffJr]vwm.vwm۶EI93>|޾}Ҷ$$Is}|?mxbq( iV+I$ɉ \xy\@*Ù<]ڏ$cg{c}}H|>9I$IҶm۶۶m$HҶm$3m~># f޼y3mwsi۶- ⺮$H$Im[mHHhs$IH$m`fu]Ifm۶-ڞsm}<x}} $|Wݽu]h7_>+~׏ֆ@(T$jL&B(%~x{ }^3};ݞs9u]ݽkfv7ImwwwhIm;33Ӷ-msN$u=gnmhh s9Ifm۶mۢm[9gfpw[ I?яo@_@$HI-I-3HM-@[$$ I[mIHҶm$h 3z]&~?9mgm5^o?{Ηϼ\ [X"$Oo/*y#zcIvIf& }?H$ih6 m$Iv-I=$.✓m[m;3mۢ-6I" ж-3@۶I>s޾}WW'M͛ݝH@@&I $$@[$@$IH039///??㱻ݙA$!y?>:f X!  тB/{{ף3t ܟ~x?:W^Gۙ9Ivvw L۶mwwwA[`f̴mm&i nGm $vfE[n["" vݶ@[̴ۿ?3mຮݽxݙi$Hh$hvf@$A[E$h I IAxkuzk=4@w |4ΝeR5&z M,2+Lmmg:s*`*` Vx `۶OOO˗/y<}_?/~`N`À}_ ?e?y>}ê>o˯}9?|o߾mö{o<Vضm9 *TP}[Uն˗sض <Ͻw[uΩpVa96<y~???WߟAu~>mx*U P T*TTPP@y휃{o۷_ɟɿׯlUp_/_}~]68 P p{NOs֗??_=|>yUx{U_~v= :9眳m[U؆ *1W˿~?` rm :{~sv<~>?_?|>9z ޻}{9۪s9{pVsUmUT۶zUuΩs9sW?ou{`kh~>ˏ_~?Kӏ??w?w?~>_:6{a۽ l9Pm{UsTSs|9msUVUms69o߾}>m?oWlm*`۶ @l۶UVU`6s}OO/s׿~_|h@>ߓk·o?}o||*{U{9m^9g[j9s{*Uuvﭰ 9۶U6>Ͻz}PU}VU_?__˿կ_  }?g_?϶{9x[PwηΟ{` `0F0;o??_ǢǾsΩ}_yTU}yPmvΩ휃m*lm9UUm;{:m8T`[m9VmU6T۶mPm*By~/_sm~_կ~u9j6ڶmmضmPm6lPmBm* 66T۰ 6m@pιn{?GGGoͿy}m۶=Sދm@ދ꜃Ss{o{7p=lpm ۀm۪y}=ϳ휃o߾ ض ۀm ݶ휳ދ{ދ ^s*`99}}{m۶؆pιnVpy8l6T@uV{9ս:{s9m|9xgysNp˧ϩӷ7~I}_~<}qy޻z {6T{m99UpvﻭP{VUm۶SUV9}mշoߞ9T_~ZUPs*s6wmvlU*Am@{9g*ض  * vymUmlۆ n}jP{Uދ ۶mV۶U{{}z}_Tۀ{/aU<۰n;{Ωp6lPa؆m@:`9PaPm{9۰ * @S Uu{hsΡV۰p6lÄ6T]m{9j6|>/_|>o߾JUa۶m96T*m۶۶sx~~mpΩ:Tj*T{m`9P}>mmU9*T x6@S{ *s s6:` w|>{۪Smm@U[s۪msPmVTޟ~ދ}m<<s9*TUmVmPU8}jy 6Tm@T*llU *lVPaU۶BmlCmöm@uv9g[mPUն{o۶U 99ڶVmC`[uٶ lۆmVa۶ PUTU 6¶m*T۶U۰mۀ 9ދ 9l;lCm*նmնm* KwTB}mmP@U*`*l;sEmU{Um 6T9նmT@uΩ @ սUm9 y~}s~Žچm۞9T@mUm[ma{9Uu>6Ts6lVUضP{Ωچj 9ս9ދj*P*`P*9g۶ ۪Vދm꜃mTm9UmU *s *l6T*`[T6{+* ؆smCuET @T۪j*<9g۶mP{QUVsm*`msNmBm9g۽{Ω߿py~~*lCuنms  VU9 *SmPB*T*j[U꜃STUj[mۀ *`:s9Psm 6l{w T *l9@SP*l{gUT*BT眪BmmUUU8lC*U *{`P`9{m}><{[s6P۰m9*Tp6TUUa*@löꜳm9眳 mUuBUU眪:m s 8`[Um ض Uus9mymm6PsmCUU9T{9^TUT`Ps*{+*TPU*TU lm9<<^*l9ڶ sNUUsNUU眪چP6@s9UT6T@TPm=` P@y۷o{s6|>s9g9؆m8T@Ua*۶{{sνw6TmU{{V۪sNSsP۪jPPUpΩUUs*l;*6T@UsNU 6[U9 VUUs*TPmۆ꜃S{sNUUUm؆mUU:lCm۪ PUmm9UmUU*T۪ 9sNuV؆ ۪T*TUUUa9{9zyj[Ua9*lmP99s*l*6@@Uᜃ߿sVs꜃s98l9g[U؆mۀ ^TUm؆m*mۆmPmm*T۪ U VU6 6UVU@mjmU UlPmVa[{/9 Tն *l6TU*`[u݆m`PU *Tj9؆ V lV`*lvﭶUضmm*lCms*`[ ۀjUl;l<>۪m^Tm@u{v½:T۪{/9VUUm۶jڶ✳ *T<նmvvΩ9xSm6:{ @m9շo߶@o{/9@mPUP ؆ 6sj۽*8l*a۶s۷oTn {}}}6SU99UUUamm9g۽w9P@ 9۶mC<6lVPpET6T*lPUmýmCTնm6l<6l;{96TPUUmUPmVUVUUU@Ta[?o*{sN<۶{olۆs9g۽ض ۰m>*6@m6T`6mUlVlVUu@uٶ{ιnPUUۀm@ l *{a۶s9@mնjPmCmPڶچj[¶j9PU*aPamp*lچm:|>}TpﭶBm۶۶s l9ض l;[s`9*jm9^smTVa 69¶yms @mUUT@TPUlTPU* m T6`6*T@j69޻ضPj*PUPa*T<{^UuEmն PmVچ 9ض P l P{؆j *a9pv*sTm@Tm *l*T*sl*P*`۶ P{sζ{j* PmUm:ۀmjmP{yׯ۾}/m6T眪 ն{mު9m>6slPsP8`9@UmV@Umۆy*^Tmm9ڶ UT@ދ TPmT m@ @ ۰ڶ 8`pιnPa { B*UP{ ¶y/_{6Tۀmm6llCUmpAmlۀmvAUmm@UaU{oUP޻ Uu6lm  pj[Tm*mPU@ ۪sVsν V*ۀ @U{UU U*lUy*Tۀm|>۶m$G54忣{;۶a[m*`[Um`l{ݶm]Um@UUmضm  Ulj[UU؆¶PUBUUնmPUUUUUm *TwmPUV}W@UUUUUUUUpwUww6TPa[U6۶m* ض UU*lPU6TmmUjUmP¶mPlVUۀmw;l{]BuwT*Tj[mmP@Vm ۪mmTmvwUj 666TB;l6`m؆mն mTmU P@l P@mjmT `{nڶ޻;` B؆6`*6VT6`*=T6m wT `۶*lmm llCT6@BTmmmmT@m {>*VUT U*PU۰mmۆ @mmPm۶ mmvw۶`[UUvwm6>}~Pm**T*{w6jjjU؆mPچ 6Tۀj mPU۰ =lC@ ض *UT `[Uۆm@m6PUUU6l*TU`6öm T@mmۀm6ཇBUU۰VUۀ PlV*P`[a[  VVUl `[jTۀjj[PTm@mm*pwضlVWa[꽷 {~ mPmT{{wWUۀ wW὇mUlP {6TU Va۶ U{U@mTPU꽇mUڶmPj[aPTUjTVmC 6TVm*T*lPzmmUm m6Tնm6Pmjmm @mնmm6lUPa؆ m ݶmU a*`6lۆmw۶U۰ 6T*lVU۪m6T}{؆U¶m*lCTmT*m UUwm*@m*l*TU=PUPUض*T`@ `m*TwWm*m@ @U*T mUVU*}x]PU{ 6T6mUUUUU6TV{Ulj[U޶ wlPWU6@U{=l~j[UmVUUUm}_mCUU۪ ۶*6`[ mچ m[6`۶ۆm6¶m@`mm*TP¶*lCU۪{UUݶmUUPP wmpw x~߶{mm*ޫ*TPmmPU޻;TVmvwնm}mV ض l *ڶ*TT۰ 6ln6Tۆm m6lnPT*TU  m=`۶m; TVa6**ض{{lö ۪mVU@ @UUm*l lPT Tۀ mPl mT *`{ۀ὇mۀm@mP*Tۀ P@ mU6T@lVmۆmU xVUPa۶Pl 6TPm ۰m[lB amC Pmۆm6`ݽT@{> @lPmUUm UU``[ U Pmvw؆*P޻;T{؆j[T@mBuwo[`6TPmlCl{mö {{6{Pm*`PP ؆ UT؆ @n 6Tm ۪^m۶m۶mCUm6؆mTl*lVU*T  Pm۶pwm ۪ml*؆ m mCUm{B VT*@mնl6Tmۆmmۀ{m۶mm@*`[mmض PmöjmPT޶ @*lC TT@*T۶۶U VPնm`[a۶mն wTwmlP@ @۰6löچmwwwݡCmm=چ὇?Pw ۪m*lPammۆ{@ P mmU m@mm@ 6U PmT۪ۆj6l۶T}mPmpwwm۪wwնmPU۶m6@TmVV*lB 6j*Vί;l;l*lW*lUmUmBU` `[m`[T m؆j{j۶*l*`{UUm~m=Tm ؆ UVa[TUm[l@Tm*TamP@ PUmm6T`۶ ۶]vwm۶mU۶U6Tj{6U l PmC ۀm{BT@ ¶mUn[m[uw۶ mmmサ 6PmmU=T  ۰޶۶m*`{Wm;P {۶ݶ?޶Pm۪` @۶@UTl6@j*{ݽmۀj۶ U`mTll mェ6P*T*lUUUU @T*{*`چmն ۶am @lP6l*l{on~?T6zm;ڶBmwWmۆ `*``Pa `T@lmm6T@m**TPT۰ PUP*Tm@UUUUmC`P¶m@mضm6l{m۶ jml Pڶ 6P 6l*jj@ jPwma[TT @m؆m6l`Tնm*lVݶm66zmlw {@m{mw mU `*lmCUUUömT ۶a6`lCl m* `lC @ w w PUm@P Tۀ l l *lm{ޫl` TTxU*66`[T*UV@mmC{U ۪m@ T@mP*Tmml*lVU*`[l ۪m@m @޶zݶm؆ lVmöm ۪mPpwmPmV ۀmPzU}l6m[ 6P6TPm PU۶mCl* mP{U mm{@Uam[lV¶mۆm=PmCl6lPmUm[mpwm{Pm6m =T `*pwm  ۀmmPί m۶l* mPmP`mP@ m۶ Ulڶ wwնm*mmUޫmn۶ Pa6۶a۶ {UVm[U; @ݶ޶*ma[UU*lCPaT؆mmP؆ *@UaVl*lV*` T Pa*lض 6mzwm6ml*Tl6lC mTU۰ 6T6m wޫT6TUT6T*P6@ mmlmV۰mjm*`{`[ m@UmmUmնmm`lm@j۶U *ۀ l=wWU mmUmPa m؆mV}߇m@U؆ PmP`[u`6m[uwۀ*TP`Pa`m T۶m؆mmPP ۀ۶m @mm lmTmmPaTlm6l` ۰6ڶm۶ mjOHrA"kwX!`*ۀm*Bl @ l*l6m۶ ma{۶U=`*l l@ޫm l TlV@ VmCm[ TmP @ `j*mV{vwU۶aP6Tl 6`[Va[@۰amPmC T ۪mTlT PmT lPm*mPUmlU`mm** ؆j*a[m۪j[նmTm*{ *lC mTPmjl6TPl Uj6l۶*jTm`TTP6Tl@T m@ P6`TPlچm;m[Um`[m`lC Um6@UضU@m@6TPm ۰ @j Tm۶ 6ja[T`TUUUllCUUlj6mT@`6Tmll* @`T*Tm6W*6>mPU6؆ PU6Pa ۪6`Ppw{VUP*@m@`m6mP*` *`mPm6Pضm=T m¶ =@ 6{mچ mUU}l*l@lU@6T@T T{*`[mwWUm PU66T j66 PU TPmU ** PTa[m@lCm@6`xm l{mlPm@U` Tlm`[UmPa6`T@ @*l@ @Pa[j؆ 6¶ 6T؆ 6j ۰T۰ Uj[ VUPmC``[PlCT@ Pض *lm@m¶ Pm؆ڶTmPmPUPmT@V6 P*T@P6P؆jmU`[mm U mTۀm @ T6`T6`m**l6mPm TmT؆ PaU6`[a*6l@UV۰ löm@ڶ@@@U؆ T6V*l P 6`U6UjT mPۀ ۰ aj Pll`*|xm6*  ۶@TUض*m P`[l@ ۀ*TUl۶mm 6P}`[TVmC BjPچj6*T V mvwچj*lU@ 6lC Pam@ ۪jPPPP*چ VUPm Pa[TmwVT նTmTUl6jT@j۶ ضڶ *l TmmP{Pz*;lmTPmm@6PTmlP@۰  lP6T*TUTCmmچ6`۶m@ @l PU `P`6` Umm@j*TVmCpw۪~UT6lV{m6lC Pa[U*l *pwն{ۀmvw۶6lW T`PmP*VU P*Pa[m*U6lCPmö wwww߿mm۶ Tضz}`[mm6lC`Tmj*lm@uwVU}۶~l6 lmPPmCuwUl 6mPTPmV z j۪vwT@ `ma[mmTmT*TUmn *Tl >* 6`[öTTۀ 6`[UmVU*T ۀ @Tlm@lPaPl wWUض¶ 6lC؆jVwl{~?Uuw*lU>*PTTmUUa mPUT6ڶj*PUTm*mPmmU` ۪m6lm۶mlP؆m@UU6l;۶a۶** lCPmPa`[ @;m۶m[PP**m6l6 P@@mm*Tn۶mض VUm*l*؆ @ Bl*`[U;TPTPm6ۀmU6`l*mPPUۀ m@ @m6 TۀmA87۶UPUwWwmض ~l lP*lPU=TPUUUm@ P`m6Pm *`m*Vll۶ ۪ m۶m۶*UUU ¶m ۶m{@U6`* *؆ Pa6۰ ؆ PU  6*` mT mPU۶{؆mj~Um @@Tm "vIDATmm ۪m@PU۶U{キ*lpww@` նjTڶ @UBTm6lT*l mTmwPUU m۶pwU{mjmmlT*|wwwm~6`*ض *@ *T*}U@ `[T*`*lV@T `*T6lm@uwwww۪*}wwwPUjmTT 6@ T޶CUUV*~6Pa66pw@BU?T P6l`ڶ ww}mm*U @TTlwm{wWmlCmf5o I%tEXtdate:create2020-03-11T12:11:27+02:00x2%tEXtdate:modify2020-03-11T12:11:27+02:00 IENDB`assets/images/header.png000066600000000234152141651110011251 0ustar00PNG  IHDRPWtEXtSoftwareAdobe ImageReadyqe<>IDATxbjhh`bb```?K*FdLCՠa p XncIENDB`assets/images/pb+pms.png000066600000010241152141651110011214 0ustar00PNG  IHDRctEXtSoftwareAdobe ImageReadyqe<diTXtXML:com.adobe.xmp IDATxylp#p4M# IK)(!tTcMl& ĦrZd^P+i4m&8N;o}ӠԵo>B)د=󾯑 2C* =DeJHG QB(!~x? ѿ_QH%$ޏG QB(!~x?JH%$ޏG QB(!~x?JH%$ޏG QB(!~x?JH%$ޏ'T< RZ.qAG!~x?JH%$ޏG QB(!~x?JH%$O2܅9*G*&Nc~Z)QeR5❮P|2I6Eknc*lA9ebuǥ$~د2^8MRk2)9  i l'{"|0H$>%Yf?ũJ["uǼ'c[k/WvglqNY_h3 ǮK?`[[oe'F~|G 'O?isK`?vcqL Չ*v› 6cxZFKqu6N=R;Kgk{|EAmWe×/N>7ZVidOW)dv釈: =s[/!FUCй@E ͌(4׭_VϳT4h; KRdz^_16/vthM2D= =5HE&~Ussl`w @Y~6U`El}\Mpuעc#!ޡ@*Z?t9u]'MjEZrd t\Ɵk: 򾑉b;H(we ><}Y3P+e1֬لDSp"~fv0+N?&0O36Vthjlƺz[]?h e/Ȋ+|!s[hՕ]SׯX¦o[*9wH67!.ByF_xl{09ߡ3jb,&ˌZ^%F6MrNi9}!o?#6aH=֘sqw'|UСC{]\+xǪv2t9f!ϷP;7u*BQodb+?ʜgg(rk,:Jv qO w=uGε3H03\P)e,1Oڠq>u ̪UP w _yeK[Z$,ȝW{i?YcQΡiȤ/5xEז"?4dI`ueF%#^/^%˫kr!,Jq_!iMΡbe!èKEM@ 冶)Z@?va٬U9۷w( RnCyAj'Gu2"\D{~ؒrc E&%VLJXrʛ-ks> aL8r~=gF4/>}/KxNȤ5/>cpK)'2PXԣ0HRTF?X./j6Op]KzmgW=cv+[{Mܑ`|FGaIʮ)+43ˏQj *O:|wYh{>ww8~zCS}O/hO>+#ia wY*qq`b=(d 8:t. ebA .m;:׽- F.~,φl-͓\gYdʤ>+_iii㏪t0bOr H|gi< g)CR'PlLvT0~EC0\UCiIENDB`assets/images/pms_recommended.jpg000066600000071112152141651110013161 0ustar00ExifII* (12i  ' 'Adobe Photoshop CS6 (Windows)2015:10:19 14:14:230221nv(~`HH Adobe_CMAdobed            " ?   3!1AQa"q2B#$Rb34rC%Scs5&DTdE£t6UeuF'Vfv7GWgw5!1AQaq"2B#R3$brCScs4%&5DTdEU6teuFVfv'7GWgw ?*I$$I)I$JR+{hOCTQCk.ql hy{\kwUbd BmZfMؙh_V^vڛf°:@qshcD0Mt?ƴzOR#͑161zHuװ Adobed        ""     s!1AQa"q2B#R3b$r%C4Scs5D'6Tdt& EFVU(eufv7GWgw8HXhx)9IYiy*:JZjzm!1AQa"q2#BRbr3$4CS%cs5DT &6E'dtU7()󄔤euFVfvGWgw8HXhx9IYiy*:JZjz ?;v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثW;v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثW;v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثW;v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثW;v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثW;v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثW;v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثW;v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWbb`DZi7I)Ȍ3͘ ڬcYcoz薼mppUPEbDbG6߆v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb_;v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWbZnqN^F=aSY[h^R >oO?a^@]goY"5 Z]S_Ui~Nԓ80W wDuTf;!`(k^HJh2}fϫ'WO7/X$K~yv*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثW;v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثW iZ?K^/&'lJGoLYZV/!,jKnkX9:y‡bi6י.4 q fDrFA/7a`kS=V𘵍7~d&/ ژr#̓UثTvˬ]UJйK/ʲ[1e{U-(c33XO45s%"#2x1ech3OS_V k!'7RaWo#C(J lc!!a 7"9JOJ+rYA^vhXE\4seO~D]Z(ŀSگ S~>-C?ufKY8a.J,VH61*è;HXq#(pC9v?So;sմCޢ1X&21O#ܞ9)Le$fo,(C_9w#i2YA#ĕ+W38eS['y5J]pտ߶OTPtJ_K˫կ^&!bw<iehq~>-Y4Mi@XhpeGM8—w~]x A*IuJnDrj̈́KM2/SmGUVfZDѷ6:I{%>fϗd+G2GOOs#x康.c\jͤwB#3OF\& |[e1a0 U~>-XBLFQ2Q݄r$Ou4  y3Sک-< |;E.~N'x(C_/K)vsڵ̐h@! t\9 &cf|K0[գĨP, @VofG1A`T(C_o?*D2(jnDlI&JՌFe4 3Ąص]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*U;v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثVC (jZFLm ǖaNNR7ͪjܱ伊'92\wb]Yה_4KD<i/lj?wH0zcߥ׻v* ɿ-׭A7&bk?#9Z_= ^_,#C sQ2 0~,/#$rjwa=@4G[+>0y+#w5Y9ڈ FN/u&qXz~lYE\AqXzcS4zw <*_oy-wE2en=/N&**̬:8N /SF]TH;~;\kUD@爑*=!CB~xvjIW#mJK"G u.S.ɳUxotǣy%X~{gz`h/?{_ 4:{(d9[9r1ca?^o?I~6et"Rƽٲz8.KGÝbbK)[lag7٧'O/c1BRH¾A)nb-vYEkN~Zm=?䙯֋Ost@`3e.]o_O7&a??Ax>?K|H<Ep&,8S,:3aN-'Y嗁 PJB!{jj5 _گђ&\GG]HI>&W=(Qr\n<ylovyɼ۝?]`zf5-%VKs-QW)I7rG}:/~yd?fK8@27qA]/ Wo=wϞua9H=^SFe$0@A Xz @̋.7X=Or`9㥞@SBdy+ |5GUŞ7mkwy'ږp! O<f23}?Q^-@sZ{jU[ϫyD[(d?X1ӫo_QBԣ.fi%>:8ڑYio'$Mg/5a}os˻[⇺9f_pD< |WH6(oWEV~8ipȒ5>j5ِ3'g?l56fó[3_[WoitԶT.Se̓ʭk߾$V?$O[%uvS~S;] "?6A/S[ ؏OtY~9=R[cW#N4, cV޶?q\?N5c?0aSNmQGJ3/JrmHjq=!> /_W归YUnD4WkYOJ$l{z,(HFvUr% 1øywc/5zntx#:N^9mыsmb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb];v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثPɿ.5a.h#-lx.f|3[-J{V_[O\ Nhp+˪]v*W:B5 bO3W0O道ͣv*Uث&rft'ќ~mj76Vk,Qos[.~f"̛̚/wp6ρ|Ydޖƥ w#zr9Byga[P 9D"#t/p2D3K? KMJ-%z}ŔL"$Hl;m-1fT9'#/'IpzGqOdOךW!'b!:G1o6y+W.nmw%He#6u0.&L ZeUTc,£C><5Xtw'ҴCׂf brƞ'v*= u_M}~N'4ІNgpSmk:pKr>9[swTh;7/n;9tku,EQMGs$#0K(=*\V_7-> yGS!77vKJ*zٲPFfc,2O[O9&iuݏ'k?yG<n~|aŌ:98gzǘufZv? .9Ì,~QH<`rO-m){-İvw"[3ZY'$g1s4@yun%ubASٷUiO?*j:Eķ7# <]^ lRFo-x#n]''ūZA!>nK^R:)V s$ʽ+Y>My}]K hZU^~dwc,26?EK1 4C'5;]q/˞$ |<:q͆>U}66g b)Ξ]{WA_s +atQ>rĞeGz1DII~HqnSSl+\ɞ{-$>\xP|Sa)~pMKTW[M(Yyחe+G#Adl~U9t'eZ}!+-q/(~`Z9 ꪽ8?hI[:4΃,_[7qo@7)[H#$ˡë kI翘]9Fٳ6gC$iYu[)l~ǗZ4fg1/hױ_D9ZTklb#N<2_<'ӡBTh?k9^&y4ݫ[J*˘!+oé1oS+{5On\kZPq2d$J׼'buWI/-^O=:R4~e{z\ʞ^*P\h˫/q,#ꈹ|~f3\@Ū0̳iGg`@~/v->™r s廷nQˍ*Ut 0;̓G19rkNp Z:%z}Q/ԥy3?͘G$̬Z?%c=PԈ-fr"IJcX]=J}NvnrS\(8/COy_v["]$Ǘx'pJ|v ωr_diG'a-Z9 ꪽ8axckKo~rZfc`qrOV?O.7%$|_k1:O%lZ#GNvm4ͤ v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*U;v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWaT~h wf\lA\&(ce|=XXjdQm#5\ps~Fj͛SWFk .dY u(-&{Pe<Xw'7a~K\AZސEN_I:_Tm#$c!e< $N Wb]m+zJkPiح۽sH4<ف][]߯1w?Ƕ PoD.k ݏ't_&V4; (]O6kcǦDuv߾c<{S_v$aޔfLy+}'`dըZ>^,Bگq hvlC%ثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb_;v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*Uث;*ơ(Y 袹 DY,3AE[%c*!w?O ?:Ls|okig!aIOl/i'!?5~!U9&PY8cվ}+`VR xd?"d5rEvYzO71]]̼=78͘Ϲ$G-h}H fPoV Zpx*ˣPNJ?5$g&ƮJYF/,FjW19 $3vIoiqk–z QQ]vYn)O(Qu|v~qw_Rk)> mƯҒ'!ɓ'ѳ vch5y"ЮĖPDʓ ~cb‰ q#u=qmKk e3)k%D^eK$1"^*L?c/sX2=?-ZhQ_..njb <}YwnG쌁2.aQQMCkKj6P[JTT)p[Ա{vaHBAGu )$CO.^Xuy4:^o )\^NH~A?rdiĖڵ&^ cڤ?sMr6f*ҍ^ iW!ͷ>9B?e|YfD?18$ktʬǷpE˥SDEߥƝJucz1_}$2G$*J8IiϺN4l7 y?k-J5f+JդDfHYZFu]^Ju+vz[U?N 1$yy tHl<j?ٙ3+M9oX߇\ ~?ˏ4eG$'?r33]h݅$B^u 'r$Q1!yXUnI홳\X#@2Z ֖ރ,5$buv<_%oPD}ir~??bA/G?T\lsH5ifip)$or)7Ugl'G牄?AYPӗ7 Bz7 tNC1 MN?AoɊ Q__.W~f*fUثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb;v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*U4ߗoWnʠs6_?r{2EC@~ 8~aFj1IrsLw͏='bb]v*@I4c.V#ŭ֣,VFXn*>Y˪/9V'e 575`p Zriib`hAͰ pk;v*UثWb]v*UثWbq,,QԂlAE[Y!-f^/ToILr2cDp I&I.-fdH*_ʊdqLnnۜJPt^?nj@P4fFwwvqcg$ՌmS%3:P Ou)n O8HGE'7ӓ!_F%P/`u$u)U`qx[:k @訣 sa招XEͺNA]ಹ6=gljKu3\^CTH  ՟aǀ@RRE!u-RM@e I |((ŒLjCȯf`|0^r))(51aiEzCn\Y_O<\I>dE2Uˆ탅 nyyo22*b̐]moi=LeLN;0`#7$LG4zK,-1925?#Ęe1GE?Sc$1grLfR+VL[肴ԃJ7z[d17SRiT!`"=^?S `I_9Ykb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb];v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*q)Ж4QEX'rx7 a&fۥ:Wb]v*'p}ֿX ץ{f.MkZyxjCQ$lSLr@^&zknr%Ĕa̜8ı/ ɊOs<21ib{5ðh%O$b]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb];v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]jҧ~MAl˛|sS>[VޱSVU53駰_q9uc\{v*UثWb].6ulio>_1<2ԨR?fK2;4SuF{%g :x9N)!l 162Y KP||sli b]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*U;v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]v*UثWb]j8DP{ۚ|'ybv_a~g۰@v*UثWbZmi7ik4G6 6천xQ k{l Na6t@T "1u¼Rǰٌzk틺\jjjUBX@O$^VbځHPTS%Eg{bϞ|]e=|zۄsgQM2V",ZdR|N\.|EKlp-ƠH cLCoJ^vt`UC39wϊ^ &8TIDATx 񹏝ٛKAD j!571'QcI4FGFDE@Enc{a:3;[;;P[SUS*+gd0Q@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ E Y ,^eLEF`4>>x wwhƨr TRj>ڭb]ժ}\a}Gk~| w}X&P@#5Gqo4hw4wNGo?Z[X *ЊE)X0\s-N{M޷^|2Z3dm`MDڷoEӏ=gxnJ2f4U83P@61@X{)FsNvl :ٿ7rp&Ţbt:M%-tҭG^h޳oE`Fl(:TĂ|ڱ-r耞sZvU 6Z7a1_]jWL O#G}_ACڽc$v{cj=Qd!u4 ZVU?rub@[y3m2w:B9SSyqТ̷H)h!EW9akWW=@`G`Pߊy=u6oe**V`4,V[r; Z뛳\gj[G#G?\j,pY{Q>/#S;@ !E؆ /uX Pׂ; ~i>l#%(,%T9v/e!w߮zB-5HWrí&KVwgxe#ɪGW[{-&%h sdk>/˙ ]])[v4p/Nc[[%K׽ouz4C}߲ڡH_h^#Ц 4[~T" X{Vvl܆ܪHfd e.o'^)p(աp~EC'HUG@s(dNNVVF*s6Ѳr@fG )QOM, GbP.4hd (dt(Rb@.g8ł sh4mvh> h*¡\p,4D"T@c^XQ{5 4 I֜`ٍ]BT%|4WΣ8 ryHe;SbpWGUfV*w4\ܽ 㬩P@Y(9?_`**6G=as1lC4Xfuub)twNx?wC r#4h^o>k^_'S_nc1ֻ"1}kg= hajΚr;Tj@@ڶA`,7sk7@D'+ۨq掝O>xZvl5kЯ8$7j**꣕rjG_.i*4@6ͥөC;ZV#N79x |LO\twKd6`pĩi @"4EO;q &^<_!n D|uܡ"s0-?M΂4k͚޾ٳ9-*ѿESEW^*<[,ӄc'k5w8'䄺% wuA}g̅^yF.B~9ifB>~Χ'xnX+'x4OE%=V*q1@siߋzj8ҽg1nEbp/TqK#>Ohܥ;I <7hpQ fC?2Y+Ph M,:ڟ*v2sy+~N}ZB>k?r@c1@vR8ahߞ])5'OYԯ;լGʸ`GCbqNzq)1Ѥ MH}q-H!rhLjlV?van׾ ii[ũ,{YvSԠ(%qk3X\Z1~ƙs&neͿR5 w?'8b`rmIsNrwTVdN?o7O;^1|au%hC'~; {o Qڣ"1{^'|xz /|&p|{r ~Qu3M1bjizbH%H/iSvU+ eսdu34q s?C쓚`Y`CG̢~śpD Aĉz4ŻdQ_kƳ3Eu,epWSg5z-A ׅ4h^u$֠jDk0WΟ!\B &3.ZU_bH $LitJ(&oȪAS/5oW\m08M(F^2MB@ ŏĸhlu_tHS-Ҁ65yq^pF.zA s-^I5e(UzFkXwaY(ǣ^/&?XҤ"͠"T %st#(CĩߦЀk[[b"GL/&+Y5(α_9o9{tΦ^DD@FќtmseHγor%- z1_߾f+m޳5 %\N=ojo'-:։r Y 4&,C?[ԯDEd0"Q :[NᄁgG&NZdTp&h#JucRbو=>?}ŵ3Y :[&*'MΟZge!ޝ 41if@[iKoܡcK } .OCH)*]Ei[M_ _/`klIzu"cY-7ۿmŰ0Dw1,cz=TĩlMԐ 9qZAA¹[2^Sys.Y21kv6ie5ʮuWㇾxխ5,~W89U6L*DEl4ڳ;q|ꨯǨ{Qt^tw3pS#yFK5iJvZpr`-%}G7k 0*ڗdfs}RLaњjF«oL%m! SW[l hg@subn?[x4CC􉛺XyX JV==l+ 6Zó\~ ]"yuE NHɍX0kŕ|fܞAܮ}ۉOKMzo]ͭAQ8gw׋huDi^`^0Eў'Ɛ՝U4iY74g}K9Ze+?G}{+Eb^!]ok~D;ѳ{-p|fiėJK4@c0}:OVc{W;'L{5WL0Z Νؒ^zT,Eݬ9Ll(5s2kt^_88$:_k 消̈.r-w{w20|8~ƙ+kݧR.!ЕڲT}V(5[wݟ"#T[t?F=va|)j()T㜌/B!)OK245? |+/UǕ{1xW\iZzMB3ʐ<N\9v3%1)s 8 myoY쥢Y֞[@_ar1/όvgvRs>`A|Cg9:\>eG:t29 R=lr-{9H5׻dQr+UOF=هZsN j{^~^3] q'4il?fm\Ơ:)_Z$ &O-|9B{ĨX+y nSJ9rXRJ7ilGR|i,w5gY^AkR[^Y&g g nu?reaZWC[7Q١XQWR5ڳ,Ajd?R|i&/fߣ^= k.:9.-_ RzbΓ~ƙixJco۟sytI m"ushz+֚ mۜW4+G* EٶTin4@d:tx~ iFEֵ5_[Ύ]Hb;Ai]nwS_.fi~pǿ-6}kEN-J<r!qkܗ+DD<³`~Mx!~-M߯c0*~Qi 9v 4:Ŧu'Ilihȿus}+vK9W~h3.5+V,K٥Fu$kŐoroaa=5P?7`lgv=Yx9/)k[͌}Ԣ\bV1tx` Il\/3}kpFIP\blr/KEsMV_&ަxt iڥ[`e ~~p+foHU!'+o̚ ŖhݔRy3tvl޷'gWᨧ6yKrnKS,zZNVsr/`Ҵ{!4Cz͇UWKwbZzc-{:*9J[ZZllL1bB.]sVvpf9l2wOo>~fѝ]hF;ɦI\4';Ǹ ߾TX-}e& cQ1F'ұ!Aⴝbs>TG:짝n4[TS){CkW}8 _च`;#)[yCGι`6Dm"GTc{ ωE2_H/K9A]ﺦ*󂙚?;MM$6Q^TK6l3&*E3g+i{1I- NUK5OU+B6łAy}{Sa@cF=^}~yO{^{15[XTrw {0Mޟ4h*pRм"ZWӳ`~.R˶iίIދG#۪y ǧe[' E@g w>}!s{S9[>ePjkWV}nl4L^voQ\g1JHy$' ݭ9=6H^6b >M7<֜u%+n̓JLvic[{Ny1JsL\mRe些[9[>>K"ybNmДPVZ5xl*^n=R(6:kh}q7 o.0w=$(*qMhٶxAk%si9nښJ?[ܶDK4HF#M}Z".x؝}nxߞTY:w-.KNiϒRNKOs/ŷP}+5 uzĘ %4Z}/4c3+i[m} sH%s4VI\q sךOKVx/1]}Xq'.g=T ܧ:迮Oe~S}źo̐7{mef.`2+R.+i46hC ;јG{`AkxdgduE`_)jv ~RVg,jP1Lgq>ͭx4JkLK`k^~(&B& nK95Xb\'Jީ4U%ɋ*W?F:K@T[|0=3iGR-, ~9t0ƿRuW_V-ҀNȄ?9U⣿% :Ͽy_=}ީ}𞝆hѓd,jZSSvLOvorFutC/kRu(me&`1I+.1~R P%;v.g1'EYdEkP e%2fD떿3" /*'iWoŲܼ|47CNSGfDKdo4+ׯ nќhi@fg"BcUE muj. 598ڟj }7(]{Out4߫˜rX8Ty/ъhNSeO3 wIetf!ec'O[D=W=`[#h/V< atsuz,'uumEx noiX,d+k_g5u 1F 7[ Qr-&w:ߜ|Qy"ѿjy܇>F(Rw; ^)^o]i^! Oh낋lӫ{0e~mK˓SBv$G5zϫ/7|ny@)Y{rX\y+Oʷ~hs*yxъoX @J @W_-;tJgSX@zhs_<[BЁ>zkݞhm!1hҹkLuzգ?x,nptFЄE@kԉ }r4Z{ J!< kS8@%ې>=ovҿ s&ξؽwb1}i‹Nyrn>k^orO[0k@J4`q{OEu ^U$-̓-Nh'@*<:׌Yʱw(T3Sg1Zt]8`fѨ! h5ۀwF*pohufsaĂA`u@J@9S$ĂyUPȿbkF69ͥe` "20_q`wcqDOVEtd*)Mwhn6`sF;| 489#y$m-]޻pMFneÜ1ڬ[7y@ /~|~_rͲ29JFV1qƸ=#_Q+, k>D{)zC,},ҟ>j EB@}0EJ:v5%keҿHQ̓KڽA@mEJ`vmdl^fWWGvCvlS_|O)4 o"-c FfcåUnS<@Aڽ]B[6Q2 {zx+qO9 Oh`H mz(};ggrGOy@O?EJpf9B,`*,L',kq-y[₩B۷ԽfgEH3@ ;sy{j0F"gi ܾ!YAC?{knzjiiȗN5E9ŐX:p91eHUz۝2eڷ"9%g- y@OQDeF4b:Em>ldR9X,-/F'4\^H;_z} sylF p,k۝s?+> OFe)ѣ4b`CzWŏ#GWhœF5}.~.j{*';jhMu>Hݝ+5jܮA4T\xcx(|ޥ h.PRD4sNJxG|/VWQC|g4)7kktGCcpBvy֊A] N7}U-C ںF|Fw;m&_wSU53 ׯ/k>3άOVݯiH@A.|~\ZWf"hѐ @Y%`1迮t:U/3)@#жy!)' F Ӑ[<faI̳F*cZC$Ha>O>ZN+Nt^9R * `#&0b=/*Wvûoo0[kW3|m8cڔcQJ !֤[XWdR?Zu]q.v[k1{sBJssOmx 0Ic+xIENDB`assets/images/icon_up_down.png000066600000000333152141651110012504 0ustar00PNG  IHDR ptEXtSoftwareAdobe ImageReadyqe<}IDATxڬ0C-8e2vʥn$,g .pKvY<̜^S3سl4$?XWu .U989@%w24[ <85A-=$G2IENDB`assets/images/select.png000066600000000364152141651110011304 0ustar00PNG  IHDRT<tEXtSoftwareAdobe ImageReadyqe<IDATx 89R "(BxC>qH, FR T )%s8PB'AK)^^]Cē !AI'c~Z+gc5{NB 'v76 ^ &Q)IENDB`assets/images/tabs_bg.png000066600000000165152141651110011425 0ustar00PNG  IHDRstEXtSoftwareAdobe ImageReadyqe<IDATxb#(ӧO ƿIENDB`assets/images/empty.gif000066600000000055152141651110011141 0ustar00GIF89a!,Lp;assets/images/sorting-ascending.png000066600000001722152141651110013442 0ustar00PNG  IHDRatEXtSoftwareAdobe ImageReadyqe< iTXtXML:com.adobe.xmp HIDATxb?%qtvv$I7!X @ӌ phi A?!%)zA~yfIENDB`assets/images/logo_hobby.png000066600000014242152141651110012150 0ustar00PNG  IHDRZ[tEXtSoftwareAdobe ImageReadyqe<diTXtXML:com.adobe.xmp aIDATxypǿs,Y%˖glMqx͒ 0LP\㏭l%adT b!qKٖu_9fFszf1ҌeI31ٳP̴|`0|^k!ZhQmئiZ_hqJz^? {UUm 80OIlcT߿}7 G &ٌ]#k659 A$1 ǒ^K &ьP>Ν3-p8h\!s+6M"^wM,16LFCS̖E(td2Y燕Ҽ$3T"@L Vw$0dۇvdOMŽ"7+[h#nv :I8 ي/;0='UddTY2_<f9<>vrR4> IiI4ZI:P dxdJ:<1IYrdȱIQ! # %M.vhQEG /rƒGCpUG\9P}+,c ]c !3r;ZR&Fj§fO5)5lc} !'4hhB}14םٚL?LP>JjOvڈ6d uZ(F=PJcu5)nZ r9qD60^t,0ʲxCNN}b;p zdKdنm )ĎCh4ƚ K'rB$qMҷϝDCNP A۸w#0T 7q&M BS8Ɂ O0dAfv>7|?`{h~̜7bvO ]ً(3yE,S 9û"ouf>Հ^/2rW<k%%`墿" dZ*N^pꠖZ[ d%:C]m8}d?Yfk88%4RC=g 1vft8tc.m\mm0NO/ |5:*`y\mtAsקE,;Cnn*68{1]{zyk%X.$< tRF_<.{OCWzHEs[ )v)[&3䲎VEhr^IR3JC#Kng- fҢ;8_qaȞ 6 w[t 3'W6<%*dV/f46CNfoɑAs wn ߷3vZZA\:u*RRRdݗ!55xX~~ dϭD݄̀ n7^ڵK-Ctp:4l ';׬Ƶ[")) tn]:O\2@t2=4IJ|,gG{l60!o > NK'eOEwfX9h 6l܀D]]-MME"]A$ǝyL0.=Ij8q .Iz5bA V.H.qAs%^ڦ mUP{ŚO<#GI!oAȂ Ï9cH:x`|<qHJE݅EtHPf AN e|~PK&V,)H G_58>Gʌ;N HeĄ,/kYc{{;ZZϞ= +V\~/&r䘹={N8Nfikk𱛛iiԁ/VR B_,ܦo= R֢_mhz0=c$٩WVZ&0xzȪJ(<ugP5^1؇d)( $@W+Huh/oC' c3/(:Wytuug -gΖ D>xFh?>J\ZGL cRA*l/֬9X=Ze?Bdvt<4Ŗ̀X&qd,[<+P[S+H9:!ÇجI;= M]."T4+Y`Ǵ5w;E<ĚFQ3Eq|X-#^8$c_pj^2{6)u%KΝ8{欀κ[+E yK M 0Q8+ pI ۂ|i5[(˿qd,ߎoKF?xfϻM?"`:XhȡƐ"([,z@NQB:I>.݇3fHV[SSEsT`1RT}|BfrOg D@z)0e 8;ې{/QQV($5<^OZRũ %1Ȟ;G%#-[\.!klk'OM1R,)1xSHm!S ݔ}8ikj/\M$Qq@=2q~;eΜ9%p$,c+̙PTTLL ( C%!llsnnjuqf )jAfgWݧ=sQN"w鑚2r11Ty)(UU]79jjϳ>@%K:-[d$֭"P7 Ԓ+Q|ۘ^Ͻ*5yLA_\ nB<'UWyȅDK~gZ?:Վs;a5y@3 $d+ÏH,gtVvno7#0{_zT"1z,U8qPb*DwsA|`Blf1=M)gd;Sh]c% ,!$Z1V_q_'Op.TOqp2,lƬFrehI$>S c=uBa]&GpwW_CG2.udr! \v\onlPuCyq]w'υ$lŞJa8)C+U_NIc}h)0TUUi y4p7@ڵkeΆ$.IMf K&O/`/--Cq xY c@d4dك9 )o:zE8@k4s?cPYYEKOrج)$555K:5h)|󧟒.<_PM6xL`l%տ "C->d$ϑ(|, S[*4N>7HD@s.7̚%cQa±%#;/yzYy }}G0d:DžB }̆e.F "O9 ]_:x0:fxѥe^-\`X(Q'ܑp'Fl5% zm9 #Cڜ2p#obK N ) cK2B*&?%+dV<ɎfCp4*pR(FN-t$@`v:=meʣ X؄mR:L,TN/8j1k :y-Re̟_OeCvsn&\0Fwv;BR57SQIENDB`assets/images/pb-icon-16x16.png000066600000002502152141651110012133 0ustar00PNG  IHDR tEXtSoftwareAdobe ImageReadyqe<diTXtXML:com.adobe.xmp YWatIDATxGaݵ,IIA,鶉9EKC]:tS"t̩CQCV]bu5*2}xy(5rc 0PoP3GΨ6Esm[V-x5+ %6˪R{EEscU.ٗ3F,i/aު^*7Ǜk- V9 RQ6R FeMƘnN2GH`FbȠ(aUpwH9vؤN؜cF29rҎ8U^]8w;r]u.56F,t|OI9*u|Уl‚~ {GژbIENDB`assets/images/arrow_right.png000066600000000535152141651110012354 0ustar00PNG  IHDRagAMA7tEXtSoftwareAdobe ImageReadyqe<IDAT8c?%B0 k_WAPz"e_~ ¿~1d7۷.j3Jؖ?7@&˗zZYj'Me7Xo!o+]r{:g0ARR oܽp{=x -YXPAku1ba7lIENDB`assets/images/spinner.gif000066600000047675152141651110011504 0ustar00GIF89aRRRҶ򘘘ھnnn^^^\\\fffrrrtttZZZXXXƨ!! NETSCAPE2.0, H$ P!/@ 4Q 28` &ܠh D$<@A2jxsɁ` !`TD`C,4 @ @x` 3> #F .D174IX%p  b@X\ p Z  4h'3puLv @ x`@? DnAq 7\Oႅ @P`E-?À!,TTTή򐐐hhhƼ´fffllldddttt^^^XXXvvv```zzz~~~Ȃ Hx P!tP`  4Q`Ё:hQ?*P0Xe X^ࠣGdi` &@",† .H  f@8@ !Zx!"?4@p *hac@5@7d8Ct$p` 1z䰑ņ@8H#fN$ x[Mo(`80GwX'! G <8) ac@ C(H Gy@x`@2JaE?H0$HC@ Nh Q G 8h@0h|?C܂9 Aȑ Dd@=F=# !,TTTΰzzzʴpppddd|||rrr```jjjtttbbb¦xxx Hn Pa<p@ (@0`#@ P*gxY#g*aA `i " j8 c ~0.$xhQ > QC@(:$`G,`NlsZB&À"$"4 Èr(aex8(@hܠ4A P9B08C܂9$\(a'PHy87!,TTT΢𒒒ԶЂppplllxxxbbbvvvzzzfffĺʾ|||怀욚 Hl@x0B p@ *(@ Ł<4@@ @|j@M *X`(.LH\uJ൏/H5_`k=#'hA ! 6Q{|/v J8p !,TTTЪ𖖖ք¶xxxlllbbb~~~rrr|||VVVtttʾ H0@xPA h`@ *( Ȉ7:8P# P#6,9pGnP8xHF7@P0j GOD((PÉv8 8 0p@ *|`B1pGa<Ш1D<0"ʼn&>,0@e )(H`AB0h`+f4萀"La` xZA D(^:QXߠ!C L >0#C< $La ĈQ wzA`=5#$JM!,PPPҰ𐐐غnnnTTT~~~XXXzzzttthhh^^^fffľ H|@x 豃@ JT!(`A00X 0bL `Z>,D:zx@(@`ƌ 0xjA )j8M!cP@Cń (@Pz@ $39d@AC/R[ XhBÄ5$\` 0!,D0b@ErŅ'\0Qv!ap| 0Pa 9 !a-'T@`wA`=[+a@!,RRRҺ𚚚vvvļ^^^\\\ddd|||ZZZnnnlllXXXƬܰ޲ Hz@x @ JT@7@ Jxp+`ĸG<>x`Áz#D8lx@v!@@<5` 4ࠡAh}!!A /-@ㅻx/!Ŋ LC |<"C F0a @ 07(H0(x r0*@n;,X0CFPXE=:(@9_L8 -j^?d!,TTT̰𒒒jjj¤ƾfff^^^vvvhhhrrrxxxpppXXXbbbdddʮ H~@x a JT@< @@% @aP% "bT٣@~# j@v` AB|pbLx`  C@"Z @jػ Tذa!Š**\0ނD )Fd` 'Fp@8 XNTp Jl0@iP< )d@P( $ @#l; ,`098=ãߑ:Ïj" !,RRRάvvvȰ¾nnnhhhrrr~~~zzz```pppjjjttt\\\ Hz@x9ra4( $F.u䁣 (h`ABI v*;X(n!բ,P VXB2%`o_+ZH1ÈA"Ѓ%&!"H!D4:,qFFTXƀ(P`>N`4,` 8; .(qr8xE:MB7@hoab 2 !,RRRή𐐐zzz°rrr~~~dddxxx^^^ttthhhVVVbbbpppȴ Hx@h n " q ,0 "tи@Ap  A: IA x0 H p# (x(XD'pА* +xx1nLY ޼;lh<4`a 0!YC2XAA9<@?xOD~v!,TTTά𒒒ԼЂpppZZZzzzXXXtttbbb|||rrrVVVdddĺfff H@ PB A 6$`CCF   Pc )P1 0aBT09P& x @  0 >h0EE#p")PxCX@bʼn;\`! h ~;/PuIDATx tTeՒ*%lUQVQZqVO;36tV=[vmAee9-@VJjMsW$$$! Uh**/wzJ;mJ]JYtCD%n}n@O7~tcб&3np[(Hs;{~Gtct$Ih_w@pAjbvluq8JV\ gtߏۮGvQEPטQ`^'FH.r ./kD~AS De 裑f #=#VCh Y,omV7^:}0'JFF+5Mkr)HMpF`a& !%n?~ǜ|~H Yɘ+S WNn5e"&H>Adi|@T$ mh!Y0ؖ3̟)!6> n@Iiյ9a2[r4Gr{T!ЄlfL8</*% ".󮅚جɶ!$*W ȲFOѭZ V@rbFJ: |D'BIH^wg0Qdij(BM90IQ CGf]7b:Zۡce,HGrTf[t"a q;$*N%K(gv`$`~kY,F.MW2j]Z\nS 6՗yD=rׅq!>шcJr!GmDU7iqd)ױl07s1NuאZ_Cc'N(5\oG ^ϚJi"l" 7cL<[S*ɌOw1]h%bu H'*3S8kUHd %X)"yN 2y@wȄ {T555>M#yz!/}.8tl4l f-&ChU:EYT:Yd9䁎ܥnO O1u2d.`t:)FAllkE\ٳgQ|*OV!~1|9VCF(,Dvv!7TyfGg$Edx!˲ łm[ y'c֬YHNIp8JK`p'p 7`rdDRr@r ?C}b epQ6oڌEW.UW_:3?VAcҤ,,*̝;OƍM HvKkhO7Q|~ChinJ+I5#p"-m,.\|Ohkk?? ҈pYR3}ETfȜv!$}~mјC@]Hi`]1׬q$r3 A6vCUI݋G~#:7&SU\C9EH3g6V޾RD?z+RSSQnFN|Q #rc'`ժU˖?c˖ͤ:fHxNF#HBuz\eo ]_,N,%OաD<6<5]ES7\j5އ)lX333Ev嵯?PEBzZ:_g>o_{n+ٿ\'>1hͷ܂~)S '+ "u4/mQ!%csu)Ȝ؞=;[lNN>v=,<KysO>)@rR~n߆X/p%>'N$Ce2u*|_m 5˅<|2#d=&qMp͂z(^d1tOӟuv#%9Y48\DwQLQz>߹S1|"sAqqENJz=}2Dqk^&3Tգ2/>NNsA.K*OAgQͽ؄̽ !"j(l^7~59??cǍeftCMP]nۋ̉H3Xez*1g5qE:>_=@nދ>͆'"N)fP )hin#@D&ea< טdԩCӣl]Ć3d9ZdC^VS^F8J@jݥEvꇘWL̟nР͚+ ֢_Hl7 ؿxeeeSĎ7t]m(Yy gIHQb>WjHm6# 2> FWwӥ`icՒSL j*})ӞWPWrXB Hw g(o QzgܹyyC6P i0Q^^3Ѭ@ l@E PjU.2f +R=Z\XN=Eir 狫/,2fѯ"9Y nƑ>cioϗKRJ%Y` 652~ĉx"9d߲:! #]n4O=;rJ+SqWߕP\*g.f&%H;nq\< h_8IK~;p]9Uܹ(Y$9O=kG󱱱q8r0y[-h7%D^S dw^ מŚ$8I24ºYY*Q8-HK3b՝'$^׈@V@3gGcVkp gN}f™;J077۷mGSs#X! 7T]m fΚ%$^0aB̧4L< "u ]hPc(ŲkRZ _[ sG-X0˂K>I[,Ƙ U~'=gVޜ<(rL.Oʢ9 b*+OVc*3"I^p*H333{y䮐yT? 2%)& V.N>oLĉ$68:swO॒nc…$$NC Ӧ`q"j8lq3ȝ7=D TJ/ڎx/<_ 4%*Nr!iRk* r`m񦛑"UURdsdfddAQh_ݳG\͢r('ɉ!\ݦ]&tl5Y2/(='gkГP;7_o;r;sՒ)ȼqhTvl5ļ } 7|(O:%@uujkjsILL fu_BkݣYimuOd2=l_ߚG'~DLPaxw{vg92mҡ@V1W}7bE<*۩V 2hxaC$<<neUUU)QS__{,[Lxan6}Nљcg¯`4 3c",ZDv뮿Ň+ͧn "-}FWIٽ]&ixXKvW_/b TYUٽ\Ci󐘐 TNKJR׉I7 HE.Д/vƋo% l|v4[,y;IZuR|?Or}XO[m@ȉLTq͂:0VCZBӢ XB@PyW EQ]8NZ0b''9p[{muXϿV5U߆$H0}p͒ 51===hkSQ /Tz RpNd48Q| V,9 mв}zdnRFDx0Z wm@)~\43#w}VQdd#?g#\t F4xhuJB7QZZ*f ]21OńǦ_>c4lF"[8GxVr 7[M8R9JW ~Fdq)ٟ5PqѾ|刡H@VeqƑEvv6:^d=7DJII +g*a6 !@g}QPP .drn, KloBB* >&/{2; O977[J)|{j bٲeRkcp BII vn ዾ:x8zh֭[Gjj ዾzr5wy뮻Nߪѕ>xSða())0 Kxdd(..fڴi~+L_x *4˝?aIZ{\/,Y SpuaY|9AA&Onq~~>qqqH=m `/,^ gBcz'x#4 a =o6?~|8aaa3cG|| @c#G\O#p1D{{;ׯ'77㩙^вR/l?nv)9qȑ#ffe0ww}멩EQ__ov)2𮱱W3Ϙ]&YBQmm-K.TTTgH}]֯_ov IuRRRŋ.0fرcWҥK455QWWǡC;i*Ν;{߯W\u\.ZZZ2***O\.̟?_ waÆAJJ ,`͚5ڵٳ=>o۶mӥ=l6FEll,seÆ ی3FPT=f,]TÇ[pOӦMcݺuc5Nɓ'?S5@wd!ԩ뮻_uD?n999J}:uJb B[[NG݃J^o#+@ssN_SSV|ECXXNSJOul@l =sNSRRtD?-9v[nUÊ GI{Qߊ=8pEsIIIeЌ˗_~LLNrt:رr._?S@wب<cҤIGf<5>{lf8䔣UV)_vFX24Ie͚5nd6ǫQ.EӐ?駟x饗ϔktZxXd Ç7ThjjJ>s٣@y͙3BKDd)J| qכ]9N - lڴz)Μ9cvI^Iup7[:\.d׮]fI(225C餰7|R<@+ eڵDEE]\.+W䣏>2^$>b$'']i6g\0̙3Yr%|$477/PSSCee%;vPβeزeeNlG'/EDDK.%;;[rرc/2ΝS,> bbbxOɱ̻ Fff&|ǏWk˖-:UNN94t-4gn&(V^MNNwL?ĉud fذaATT$$$Jdde&11L_}ZOF6Je)Uɓ'+o9$P_ObH3E-]tN@ @}TG"|'J[e> J9VD=ĝ>}BEtHz|2۶m#//g*g ^0k4w ZZZhhh}vjkkun3}t] /Ka4K8+ MOOWW?"B… =^KKVSZ(;:uǬj:+> ^0^V@ PRRu hok2eSeIfy֭[IKK3:tHR.ۉ>q8O``iuTUUi]8@ &L= 9r_k5ALG`` III̘1t/]۵$CfnDHHѣGILL Ǐm6mȑ#ZߺZSCuT@-h;1@\x2w"￯5_\dhaylذA RoShai---kZ> _:?ZXѣGٴiV?^KJ%QTT5ge1<>!b ;7$rؼyVsVZX޽{yYͼZHeTWWSXXm"?;!ܬIWG-L{nill4{6@ Smٲ{VM>-{kbhq:<ކ@U_@ UWWOz0?}KaN'o7nҪcH߹\.v2y ƗcItvvvZ=ڗ]⾚Q1%Bw555|ᇔy:qʱ%BYkk+`޽kM5(KZ$immə3g8y$NTUUy]2wg_Ն1Bni`˝Bap3Y! ځRe[̎{5qh7͛ov`#QVPV.{3 f {p'hIENDB`assets/images/icon_edit.png000066600000001152152141651110011756 0ustar00PNG  IHDRagAMA7tEXtSoftwareAdobe ImageReadyqe<IDAT8ˍKSaWEDBԅЍ}a? P3B ]t +$aA IX^ns\[sKp;;gɦps6qt w`԰U]|^)JrL+:Nsb&\.u,Ld2iIYBӗ)v>)iR(D4E!J߰EYyZ,ǽM!a*?fH>>ƧG9Q7&h޳|}+ n $jcM}w+U;}92XͶ$jxw?Y=“g~Z\-32L>vEdi/ e{;^D tT߈]v5Jh.Az{ELRY`gnu| &/8AKT]gqz !-8COZfr~ -;HUcq~ +:IXgw'7HYj{+=Oat 2FZn  % : O d y  ' = T j " 9 Q i  * C \ u & @ Z t .Id %A^z &Ca~1Om&Ed#Cc'Ij4Vx&IlAe@e Ek*Qw;c*R{Gp@j>i  A l !!H!u!!!"'"U"""# #8#f###$$M$|$$% %8%h%%%&'&W&&&''I'z''( (?(q(())8)k))**5*h**++6+i++,,9,n,,- -A-v--..L.../$/Z///050l0011J1112*2c223 3F3334+4e4455M555676r667$7`7788P8899B999:6:t::;-;k;;<' >`>>?!?a??@#@d@@A)AjAAB0BrBBC:C}CDDGDDEEUEEF"FgFFG5G{GHHKHHIIcIIJ7J}JK KSKKL*LrLMMJMMN%NnNOOIOOP'PqPQQPQQR1R|RSS_SSTBTTU(UuUVV\VVWDWWX/X}XYYiYZZVZZ[E[[\5\\]']x]^^l^__a_``W``aOaabIbbcCccd@dde=eef=ffg=ggh?hhiCiijHjjkOkklWlmm`mnnknooxop+ppq:qqrKrss]sttptu(uuv>vvwVwxxnxy*yyzFz{{c{|!||}A}~~b~#G k͂0WGrׇ;iΉ3dʋ0cʍ1fΏ6n֑?zM _ɖ4 uL$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Km)http://ns.adobe.com/xap/1.0/ C     C   PX  P  !1Qa"ARq2Vb #8BST34r$sCDUc>!1AQaq"2S#RbBrC ?+lI<ϒLA 6 u翓{GW:CJ-lDUdE,rU\KHЂC[sGo=w9ey#!ݓu<,v묑idqk|Ds k1iz<.v6h!ih-9Ź^A"S;Wt6QY]-,!2Ce{IۘVCsK\ZE6 6l|{juf ٤;.S}tJf/)yl# 8 sPgU؃8nl\ [\&m^:hft}I[): ^=@"ZiKuXUTaJqdwV&质 'IGBˁ 4\͢/m$85\̖!3wq\ Ao~I|/mū!˖MƇHY>b~Qupbzj%t-V+;CޮuI9E =DN0jdtd9γ-$.uteLH2sBHx/x!Rc~ me3o}"u$ nvjyX>0 ^]) yDVjke^yÇq+eB/WRԼ]=_ G_KR!v+)~^.~/K|_دإxK{u/i~bb>B/WRԼ]=_ G_KR!v+)~^.~/K|_دإxK{u/i~bb>B/WRԼ]=_ G_KR!v+)~^.~/K|_دإxK{u/i~bb>B/WRԼ]=_ G_KR!v+)~^.~/K|_دإxK{u/i~bb>B/WRԼ]=_ G_KR!v+)~^.~/K|_دإxK{u/i~bbr6 igqc桗? v-~^+e6( =ŢC!6-2,)^QF({^[pHA~-2 ׭,V]+$1 :f2LB@ 6㗬zLǗxGƱı3LBdtRp#[ 2,\ SWǜMb"w[^QxIgLBI'k6@Y%Ye&!o=}q+"\,~`0 z|<9z|&u[ѷ=8G/c[IU[0hi6KwK{pvw5LU}zD1<V7RJ'v4豃FZ?hzK( 7uj*+Ѫu{& -Aڑ151a5m]'9U6@*{F4` 4_Dװݻi {P $I<\iQ{;Q$1CRDڈ..l67.{:%7oHZ: <9c~P!y~Wg{mE[i=CKlm{Z r.c8@R/$Mq|;}Tt9<^5c;͗_EaPxGЦRmë{i"H[/""Tr3FkNmoE]#Ne$gk8幰-:^Zx=rt_TQԜV3w!u&LفZS6׵1ͺww*qkqg/G)3Hj"'u..:3Ug/Sy-Ldtx/#x>XǃC-7:k`uTHbc~Q>8AX'NݛȥuG kjsS>ұl[`)𭍛.&}.&Du0+#K{&:._ǔ٥l' j^ɮwCzFvm1\.FV*1&'p n%6کxv3c9Vt` >QTE^_MQDѶ6ž,|hV6j٫D^lFqxߧfOT3O,p>AP* $=Ã\ZZk6ɉ$LJsQٶ4"JR(秧67+( &E6D^f8^PoU̬HT捞2J1吁77L6K_3];o ]w9c،̫tPP$'1Baq;.}HViK~>]}祼 \B:Lgbg 9%D_=Vtٱ8n\]C Xy D6fX s fnc8^tIÏY%tLmN)7o2(7tIoD5_tϓtW C z\:& ㈶137(խ ؈/ZyLG7\2qٱa{SRᮁN\= ^ZH6:"'?!T:)*_H)هU:Jև9[f݀Dm7藌loN{Z8`ǸŦMZqоU]8n݀a4e8STQ3ѽo*Jqd}TE Z5{52;^Z-N%134韟#aU1V1Njvt{sѯyk%X8MzcbE'2=WʈN6ư%scڂ%E Uy4Cng F<f)~|?;G3Nˎ |9t9KH$m5'QSF>3 WiaqXr?=8VP'p,$B[U\Ʊ U|yΊ[yu&Gͦǝbx˶w*㤤GQ<1@\%kgZFPV2[$E>O^d1* et48ĘR$ٜIsv5Ē]}Lޝhvvii-}3YoEx.l *.GPu^x*-Ej9jXCS}}sᔓòx[)ii)}@spinVI-USOwxS#u<ͷhqvdDLJr>y+ڇesd~W AlmckqqޯTzloEx~=WUW9jN"ӆܛr2s1>T침 `{ UUQ33xximqpoܖkW1^i}|[6)k'3D$idMksI=}-+16zNVIFÍ H.4R}"7ߔŹfmi7b\^\z|=[,QTQ 6 I k:6>51^vzLoH(j6nؕd0GE9G+MץS31<鍘m%eM]KTx@l{3 ixov]="b-70MSUs7SZb7ϚE>AE%tE+3+ɳ4}&"Ӗ9<,Q3ysw;2 84 }%UT\s3Z*\R }[ bWk d)0* Cq~Fݨ/$7P:O~(I' ?RIC}O$!ԒS@I?ou$7P:O~(-TrS..N~ L68[/  16Hj,n(9qw=i()&%c#t5Ԡ)n71en  3d YƥPl-چ)HAa1>&J2ݎ- /$R*-@hě3Eḿtb{E Z'ƞđfs.GfQfCl鳤 j먰f Dz*׊c  ˈE^sU[U74ҧ~USZJig<@;_WIrxᆡbg~Mu}̉6 5nhc5[;rHo胬$k >'_I^W?Ih;sCE48LIEh h%i -qM6"7uj*+Ѫu{&Μcͥ g'UTxEA8#čHތ*]IQ杯%@xs@#ǡ6krYSMGE )e{"L۶VѶmk,L_ɨzq>rְ(dcֆ0t͔tsco~y3#MkjqqP:703xnPڸi:ub}f#VǺ`Ǿk>plluޱ6|VT&7.Yǐ<9VZ־vb-kcS[^$) &&nHк_R"3,"z匤趺6G6?-ECXo2" k{g3||4ra, alQV y:hxckE]nu$"* l' j^ɮwffd.snE5 APlSmA$iTS&$aH{x [⃞  u0IM,@l/v>44ѯia9êMx.ƹ<6{u_)yCknÁleIR?>(I;GRy@X|PsX|P8UM,| KotdbZH6AA>b nHc [ 3ǔ8kH8@@@@@@@@@@@@@@@AIܱqm nc}vB?ݷЁm nc}vB?ݷЁm nc}Q- 4/)i(ٷՔA@? m ue{6:H=~YG$Ϳf߂VQ o(ُ Nk(/á-öReC)q:裃h$ϮQ!f/?6c[')ڝ,:v9i1dluM>!IGH1<ӗJn,.ˊb^etG^Ll WS_OḪy% ݻǝ@F?]U393!Cc*x,1H:,[xxf}'"ٿwm6.Ը;a0SAY^EWޑQ?3U}[WAP^S5k&1aO=U;sDI3[ wv_KUuc~m}- um5Tedhx.n6[܎-1;=[kzEuyYѦKOW)$e;Xϛ(i62Z_vاI뿭Xm~)O͋$5.̠. 7AŤd'[sO᝜??6.kTWD!4rK4Ed-q662NKu:obl~XJb{_&Kghq 6=ђ̴EvEW(a'62%$N? Vu֫vPH*\+i<̋yPim C1119E`>%ět4TD<:rMhik`\ 4(~Yz1my{S~_5;I5 /0N3H2>Hh2y[=+Qρy9ePbf42Mk&Ai|o^ϲ'$y&~CqRB2gp y=yZ=[j8edUi+zxkH ݐI_yQ7GJusڪ҄$vGSÇ>FцJ.gKKIpk*Fw޻D;u\4OUfep$5 Fn/M"^N*v:WBɩӾ61EjssvYG&}+A A G>U[^ꦙ~I kf7mS!*7uj*+Ѫu{(;6aw k؂颮?ꏂ ꏂX8*Ǫ> ]XGᕕ0I A6\b9 ?yY\ j$zPdP*icp9si@JFOUq+=V}u SVVGqP]v 3w]૿ 烯0zE\?cE^?p0z &,Hd##;.$:jJ t0:x"5:ޤdY:Qg@*9JLn/k_Fz_-g@y|{:_-g@y|{:_-g@y|{:_-g@y|{:_-g@y|{:_-g@y|{:_-g@y|{:_-g@y|{:_-g@y|{:_-gAjHK\TtH4!zZpʂ٭X.B{if֎ZS.-XT C)f؛ۗ8guu1Z;`{5Nb0IW3c{[rU58-ukQ:i#hAQ'{7|,VY۾x{_@w>7|8{_@w>7|8{_@w>7|8{_@w>7|8{_@w>7|8{_@w>7|8{_@w>7|8{_@w>7|8{_@wq}of ]9;ٻKFY#5#vkaAX'z)aHDv!~#T\w]ٻ.xR;ٻk`h8wQk|=n qٻf M]9;ٻ*lj G@wȤ{Z]rG61H<.(s"jK.,/c#?t˺LLorU3ߤ/ʃ #©6N,> bVWE@r<8X>܏\jj8_G؎JV j][ 8ûy%-gm̌Lm?8ٚ`lˏ:7>c5 ,eS1{g_'IN{=FnlE93p, a LmmU&}36g 6ۘm٭b|9JjᩧV}[WAP^S@1VL dN( Y^\67>sEǂG? ifH6InqP^XSy9qL^gYb1N\; 9dqpc/i˾g=} XϺv[e6-7CM=3([N8:KHi(= Ydz۳{NϮg`VN)vbJRϖ8\Ʊźpq^]ms |JQBŻ\×sf_Ū;پ8Ec3>ZX ]6`/mm̳ooOO~ SUN,^Q`nGMIOE TQ09sh£ -`>7GS02W\ZKz[r&t%5=;ϻ1F1.w.9*FZ,"p]z3!}UHdtw5䆋a %"KQi 9ͅ{GϵKE.s=4^$pCQ<&V5 mro-oVxuse@ 3Բ[9kn\ei71]ff%M=%#g{_ i`~.Q{X_/=o"82TYgVF:ֻM:LZm)|TWH\]E )o8ac\T>yXF(Ayty,)+YXnZl˹gJrwLz+ Z*Za_]4T{%{ld`˗;@4[+u,z$-wVfG)xXn 7)a{*B4s,L:oV0 pֈݼcvֹ hKh^-=uu~F?2Lp14 -L̤Eа蝸5&=[O$MXӥiv_f&\ژ[>"&j(ih%#FJ\|H5-iΫffo-"턡LW0BX4KO5DO' oecX&q$jf7Df-jzz^|]toCWW%4tԒ:f\wwk'`,n{V~nqIIS婖H`5T؄V7T8fifݡKkZ{O]݊[0EK&8D:>H~DUr%"z7f) f"wKTljs;w#92؋73k_Fq|nxn1[P]a}-S{E֫_$U_Coa<T,WTQsJ(HHB 38g p@܁?r 38g p@܁?r 38g p@܁?r 38g p@܁?r 38g p@܁?r 38g p@܁?r 38g p@܁?r 38g p@܁?lF21?X1^'Zc_CvNiMa4Q9f<.7±?&b>[S>S\^\GDw5/?jkpz|dlJDgE˯ @9qLץ ǚb95۱W}{eUlsi )+^m;2 憒c@q EcM-m>+A,"ļ8ucDw蓿dq}ĨiAIQ:&ҰK7i<|oOߟ 0t}/ j E7|1x k!sV ]&-zZy3E5]*b:MV3Xjn>Fm+d6б٥ )cG=mM{Y}ӁJ{emxVJJFSQ>i!a}a6X?Fa!pf^3nL:T;sS !,]uӮ8٥UͬiIY% Ԭ5{.G59"_vboo$?iX~Qf ЕΜ^,Ή{э'R +rru' FXIV<\̌3ktJ1S樲Jl옷0f\C }|G- |Ⳮ9lӳjhddLw&)Dkǀ3+7dqO2/ +0lVm#f 2VꉄL !_-.ȵe7!/0F,};Fج cZ25{yDMIFI5NijeZh_ˆMQTaV6g7{[[+Mb9oW>U3RY~{ o13kXfj;ζ;e1Użb-$: yl1rF1t# ؋zoˍL"N^NJz w*X{"Z[ƥ3xͪǭ }[ bW{2죃ZcH,Zt b n5[j0<6MIoTqRqwz 2;popysVVo"bo5n.cl /=E3:BU]4fgPbOLzwreycqloҚ:rfUQaiMMp/Lh9 'rOD9ATQL^Yr7c%Hq6{ {eifdxYjf![.{9sE΃53pGǥ@e{m<'6#)ӸmBulǵhoQbbWQVDmJ_Rmǥ3K쬼 ȫyXF(?HA:Yk0#$΃GLR ʩ5a`hu"|ijvJmpk'QZl^XMT^ | ƚ*)}}-\<:˶#  7kG"kqTM1N{MJ; 1T{MWϴ8 xVP#6nk êc,ÜZ6bmO&%Tt;jiJf@CM\ȹ ~͎]"bj믏̟LLF&-o6ّEqdLi{,re/s<[EZb#zb1|}ݤwd[!T'b6Z0\֗N)wxy0K,T;_ 2/u"W2lNvգ?xH̔9s֍fFikMhu9Ǐ;p-i5)%_I`d.fZL m .%1womzOcp*gvYu֥{t[I5;ub4xNϻMGj-:˻M~vqlO[LY~qaŇVIgL2x6#g.oj+TF-;Ӕ1 sjj? \GES餏!e>r_0q`cr-奼TDLMӕiy{ObZk|~;-Fbê HF7qB'($s}V1{DbQYE=,Ho,ݜ:+]kc+`k)gMJf%BC-ɯ kj''ctX3Lgm/7z5Zނ:*$ӽ`NIR7;BNS]qiO_JaS1Zѿc薣jLJ,l f41Sd_#f'7'lQ4W5_,~N\oӋ8SG昦/G^xhK@@@@@@@@@@@@@@@@@@@@@@@@@@@@AAU _PfI\fuD2(c㺑ꋔ ;͞ik$:9N ]Ken̶wYG{##e\؍ KD8N˰l6 OPF#re٠8aarU묠]xv`jC`摖-hh"9FRFvw+'YO& D1|шAD QQth5}Pc/붟prU9lnG1cmi Xƴ`\w/U1{Nq~ =`eeTdrеEar5lZ5N~ej:3*]F73e%TR6J^X=sen.5LEw[􈉙J pB7GQPAcX2 5 *c:v>yXF̵NZHF^M4@/8@/8@/8@/8@/8@/8@/8@/8@/8@/8@/8@/8@/8@/8@/8AF#bx:΋x{+c' G7柌4nfC.%? cnĎg>-e }Ur?`5~3ʫ쮷=OX̎g>8 c297e ~ds?oU5~3ʫO)kgٿW'}~BU~T[%T22!]v?;w{gb-|>PTvj0&6>Z5Z~qaH& s%cN!pu j08{{TnZ/ ۝Po!bUЈ8mN!=LU9hu3>Yv-T&N0ZJe4oG<1˴S;xbfh?5=gJi}/I#SqwtIa{߽n >P8 gMsxukLӛT7 *f/c(f/Z͸Y-z&K%QW4/KD Cb.!Y<UExZi[ qqvLJڦ#[,|}~E;7b;إ-a[*$>Xs\qՇTUm1/tbx^&#!?EPjXI->|B{qYvYciKi`$aYyZ7d ;ͦM1uK߇KfJCas, %Yk}2Lުk:Vj00d͹stehp _)-=Htu/<ᕎsB^脙w!wn55ZZ,Fq4ohc)KG \z5LBD"VUe6!SG L0O$QU0E; pi{jq*&)uIpi'8=w35æ+MnM5ua3a/Po#ikm9c&0َfCpᦶ6!sbvĚk}#wvXÛDZ&|f2tL(茸t.Sİ8f<١M2QMSUb}"2ڋp/s*+',\\`  o4H;sy&j׉7E&ۧ[ Nb|4_/ p7JM,WHonh93f`:ܛIh9e;6Üs8 {UaԲ/47P?H@(y(S3WT/|8|өWc33T^u֩(4ї5C44 n%I.ךL?[fxRܽ$2h TGZn#OXlMTLM>R%YQSR;ᩝ(pٴ x;5g=#c(|i-#rxNo'-}7/Yk(<ңuSMٱmm ?M~;cc/fA^罃yO˻">f/eGTs_U읧W]n1;/v/cژn묽$Q'h`%C-CEQY %xހ >ppppppppppppppppppppppppppppppp㇌ރ#h}}pG҃n#?z>z?.ESU uL>Giap Iq)5lbyL}/ݭz"pMbK5ƽs~EzYߺz>8uF' SAp6%ÒZuo)}sARbm/UU ;1cHpۆei/ԝo?р¶IHʊDDw&'b6mPSOHT12z''p`؞IT6w{_SDNOlWWLY|>Z< IS|Õ5뮴oFqOX6->C[Oc4WbuihNkH̎dp xuk;°qfe-꭪Ha4JA-yq-"/uΉhϾDDn%#dcic{ [)h[ mq)1tA̶PX䶽j2O÷UÙDi8dp2F:Z}و+6v Z=udmET#~QawzTًCS7ai~bWÚ{3 A! }0ƺ80ڡ2ŇJ9@_S31_g+;WFicd3ꆺA4eν5 36]ȃnv#S4( #Kl6|w s^n/2S}uH R h&ZEpAg5䳳8u&m[ږvUd1G$9ѵKd pN\k[(VͳU nRCs\x"*fb&PZxU%&mM\\ht\4ZkrSk.n晳p'I_%n#'إPfndiDL ;~jMc~\l*[>6F6yIKf2̀n3e475 jښ{yJf*o[UIM/M]C;qJ٪Ov*@{L9ԗ| gn{/>m~mzGix@mM>=ХF?;GK<'w.*Y'wPY'w&xn?hFw|UHSy=( =(+;dp;i N4c'͝)c't.{^^KqjK͑Q:*kML2,$- H뜦 uSfX练O|F] ߞ',`Dbܻ+[3Hf6`WY7{>\Sm}bn^`}H"bd_ax'GG5}K }ہ\t]khoe5ťŇ-ż|121#dbpagD ~Hh*d~g6ͅݠ\NDK#KIiEH-;k6#] Bz5N]W;r"Uf5/@ZaeD1=sƶ +t7)Uٸwg7J]=F% dҺWǹ")xS'J8lU覎(fwF$П; Ekj]yxlf#S׶9R0H8q6*[)HEkUyX2J 'MiP[rsMmBFzq')Jy(fV {^3XH$#8l~m'QKij}C~4 4mH rr-֓0fEx7ESM#BAtl/<ôws.\͡I7Uk664JF|Y'eb/;+:^:i=EuAg'#-۬D/iUjfc[&I7ʖ8`f>?CM6 um~A߭fyXF{-Vb|TRYᖖG1*LDhl5F<-h97X:ZVsO]^|ɔU e>,Hcr?MKB6kg`c08Ys^#iZCoan`nҺM|CAp~p@pνY^uhqPR3M-E? 1! !ZN TSꙹ[}-(9eC,E|1>`PN)^dle$8r>O_o"Qgl"|:jT8;e-qeJ bnf*Zˈ-MIFm1ə3ݧOqA?q3pF "AC.Mv}SCU]IoogMyvjF渵Ñuo~jh+jzW6XotAs*Y̵Sl,k@,fo~ˇU:MI4I$Hx걾;k6#] Bz5N]W;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@AY~'Y~'u7?~gMt߼I u7?~gMY~'t߼I  oʿaWXXP^S~|<i1J|; wew]q9mx`pM±:E543ofdtx,9 /2昍}wFPc{7WAeD3ݙ.u(d;9ͽF\%WBkzamnh# \i{\ktj&}~V-IA$ek^ʈoa?9FĬMɋ1+L>yXF{??1خOWUJtBFj5]SL9K.sM&䔈YuRz5>=Des npiBC@$sv"/iDȎ-\bc>Ͼr*.!UNC#aawO%",^H }[ bWk W펠l~~GOE5[-mݠ]337ퟥΈpEfY_TpUr>2n,G!yvYqh|[ۉ"&cwڶqkt#uq VIi2H6XO* Mjf׾鷕薽jG;4O43F 9Rln |]- l' j^ɮw[lf$5 x&18Y1yK[G4XDS6xy2r 4o-FQfl2jJ)hsNm<1gYqr{uc67浀 ZK9"ܳ:ʛ11is[S{#=(3U4+L Av( b +WcMs"(Ʊfsa=`Ybǭ }[ bWk S+i+biaUUlε]gHr1ҟE48 wgGI.# vZzZ3i٪]qn|M5:6.H 6n@Z9Z#dleC䉓D qhMkk[;+5Zw̳}Zw!ڬf֎)v_d7$nhd)|lTDe44ib{yٮ9yD >]L.KewsOGKVCoa<T,WTMsbm8 4̑\;9z쉶Ni$thᨥ02AAAH盹Ǵkg;| z ĩf9b1y[-m\7"LrU4Ay264n p3M&x* hF`YIK,?_NIfkŪokX sG]saj5dFsqqѠj\,!*>yXF{?< }[ bWk assets/images/sorting-default.png000066600000001756152141651110013142 0ustar00PNG  IHDRatEXtSoftwareAdobe ImageReadyqe< iTXtXML:com.adobe.xmp $,dIDATxb?%q ` wtt'8] (//g$ Ț a6 |Hh`LP PBMHJHH183@TcIENDB`assets/images/ajax-loader.gif000066600000010120152141651110012164 0ustar00GIF89a lllDDDNNNLLLꞞ򊊊666zzz<<<(((,,,vvv"""VVV솆  &&&>>>ttt000BBBؤZZZ$$$~~~rrr|||hhhjjj```xxx΂XXX222***bbb^^^ppp! NETSCAPE2.0!Created with ajaxload.info! , ))4)3* 5 A9@ +&<  )KFN!Ƶ҇% "!'ш , D# 6. `xU-TA d 1 _r`AQ'LpH`AQ0BKA 1 F `c.pdld(`b Rp"a=xa!/{6B?6%bRu$`2$..6dCE c!F(CAS%hE̴@ $'rbPI )D vԠnj(wFj2Ѓ3>Xp@ cF<:IˈT#JD'7ݼ-MK %&`@! , TT)I((K/4FFKIAFLFA ( XMDF%$:(NIҠ.<<(06[CIB!$EZ 3Q8$8V+r`B"on)O`0Lދ' "(Hc#  B?081[0  ' B~`+AFB(M;z"D<bC t1J'Uj̉! $ u 8{e#Q%UPN(NңD&$sĶ`GeJ& 8D0 A)жKjE@L:D8'N [ <-\Q'["& /_ %%: M.O%. T :&9A*G,N& J.  T`.sŰBNp! '({XqP zD1@Q6}A&-Th#=BlA!BY @@-=!ɖ2@THUATh AS<@qb`PJ)˖]Xm*phJ#F,;@ :qMZK:@( %5Q4Ѓ5Pa)Pb+JF"lQpE ъ8y3 #$!@'IJ(;#9ޫ&TA#8跟 \{Av%HZ ! , SM[@KD %b`-b%QEA-AN"* Q-)*=Ic0/XG%SE 5 M <5I/5`EЁ (<Т>[UP`(5YPʔxȒ& #(8[tA8a!AR\C.Wp,pe'0 t.LAo-FZ  6\ ` 2%O ,,8@ń# >Ihi !0 zlre,YF8BkPJ+P nF@uX@'KA$<.,l` װ}DL)lFD-H )E !ƒOTAXPFUB/W p-X` ! , ADA@<EAD/%% ] Q#X=2Q?@b C[: VC5=M?2+3ІDNt Gx2Q ("4P J0)BH.~PP 6DAQсTxa`n` zs(LhD,XٷbLdH`1 . ǽbF:t@ \wquD*<$`Н{%I.|0PV*\BHR:0B (?Z՘9P`A҅` !qKf60'iC>,@B-r-=bIW5T'TL#=PAAQBCܥ=PQ $}RPQiۆv! , _/BS]F=@9P&%[D2F/D]WAEf J 3A [ IS)HB  >ԅ %+Zˇ-= UhPeX@R6B֡0XL#!r ` %p & Bf4jvP@` @$'PPAXe]L!">t(DQAѢ P<$ n0|TP Id@S`׀/,!70P PIU fd 0k`aD!@8kE#:&D"5XK L I@LXAB .h-4a % - D(VH ! , ) ("% 4aIFPR N)WZ<] 0.FD͈FG A#!5<*H .&QEA։N$OƋKZ*6 N $JV=pAצNAvDi"1Q .•BeP;Dd8 .xdU/1CwzGC c'  EXeC+a(c Hz|*0RA@qRF`!X!Sjh,A4Tt(uV,bD\TУ yxb2 #.J2".!Cp"!$taa)(X9`@@DP<,WnR0H@ `Ԡh-$}WpЁQ! , _>AO(PD(!O<- ->)C & [-ĈN\M;D̉ $ڊ>V]Bz0K (vx  e %Dȝ>@D" Eđ- E.T:0dE1? Th`¦M"6$`DG B<I J1" u@Rc  HkTHxPE*(etЃ N|T7QEKiDv( Q GlX$QP@e':lP!ETV  UP" #\C TŸGA80D&#`"ʋTl0aCD`@&X0%piAئDl P-"Cw%DC<EX@ph/W\N;assets/images/sorting-icon-dots.png000066600000001672152141651110013412 0ustar00PNG  IHDRatEXtSoftwareAdobe ImageReadyqe< iTXtXML:com.adobe.xmp 7H0IDATxb?%qp 攗3& h r@x|JNIENDB`assets/images/icon_add.png000066600000001335152141651120011565 0ustar00PNG  IHDRagAMA7tEXtSoftwareAdobe ImageReadyqe<oIDAT8˥Ka[/Y()%X(olNۖskn.-h;8fEP"jïMGˈ}yພ羹$I.tulu AX:𼂒ZHh1DnZJOJB{Z?`2`S=N$ő=;a &jw qJG#<"N2h8޵`6xցn_+ ~Zto}`x%XЛ͈ hXѿƻ/}BJ_G&|Qr-6Aރ EL⬡\U3:WUh[C6+ 6.f *K͸ܝFq ou4܄?d|XҥMvD` *_[ #A20liR|xq`4w=\uQ m+G|%$5Թ5RO*YGMUO Gqj4ְ(X& s1c˭(LVf RdjQ '-1ATA>U j4,pV"4L$e@.ArBY a~myY])Q8tNLܞt2"I o=CSd)__AF(IENDB`assets/images/logo_free.png000066600000014747152141651120012001 0ustar00PNG  IHDRZ[tEXtSoftwareAdobe ImageReadyqe<diTXtXML:com.adobe.xmp nIDATx xTs7.IABKUTZZkxZmkZ۪֫W{[UW }@KVɬg}wf@B2r|3s0P\\ tD Sւ7]=tSE[}>3^7(/ܤ1TgCݤm:7t MUut7i6Mx+P +<*m߯chFn#] 9-U3d=Si<F!q8utQ]k?ɨ@Ud+WoTִ݉1'Cvf1`mH.nOVS hhQ5`s0x<@vj0H6Dщd3N/4(YDO6ćtkpb't`kwvC7}2p]:F|tu׏Ah|1qhbm Y!P_p 5\E*&3<>Wg 90ylEg[ ]p:y:'>;#9A3`OCUq>j>0$(>y"bREZ$G>hň(|i ׇrEcm%|*V!_>#Z`sqeA? lHwt1z䢡 WrCG.k^/KK"z4L!|i -N eJ+Ό0 ȣϕ hصP6nGJ0 #yt %RCpvwerv59+Ϻ.Cd::Xmv$N6@o$;]/Irt\5t~C{c$UOQi^AtB}u NXOqFaL6QXPHj)vzZ3hGKC ;($.ԧB鎪I҂00Ylh`KEʤ4mР9eR(܇L'VOdFz(/Dk[;!'"ňO$=hSFh=A`mG0yMCM] Xv1@g_;As1$}X 6+}wb4[eJ^zߠY:۠MNI An's&ݝpЮ(jX1>U!#.di&d)Q~楮qM UGQNjmHtf;Zy\ C!4mjw6AC :|>wcn:$#g6rb|`i0Owܦ tjK,{8j]ܫTCV ]+ƺ#4'$[?^0mnYmUf.^MHPjO$= A ?nb!n1 -}/e3ITwC@?EA،QCMY0 ^K)r/T+YaxPдO :¡Z}Zg#E1C+ hn0 l6-<$F-)s]ZӴB6S$#"qI#tfCgg'Qx(i@z/𣛘gd`?~˥lqsk #w'1qDhmmE|cܸ\}͵?a<9l ;3+AhD,%%x)R 5m玝8TpuutWOH@ff&.LKKþ\lݺ^z)_q\.א d ]ـQ9M&v[`wn/]vnXVdBJK2tD353f^@Rr2n_Qܣr=^; rSr5xJn se`߾}xOv"!!"4ᬕ lGG;b {}Ǻu0,G\FcЀ ]$l2R YBWW6֏?ƓO<YFмDf];hdee"{vH]wߍF|G2 ]bؙX)Rڱ敿ŞQ0, ?)) K^-/~6OT "?;!A:\ɢӁW98{͠-B/Z_*ukסNS47?/[K.[K!^YwϞ$#v֬l4jQlBҊ7~Ok>^vS\~mPly\]HO^^.W8hݗA8J8hEw/6/\`%'z#ޒdׄpOصs 3Qq|X)j0!Zm[ſŶ;,_q \';O|0ʪ*K _=K/}#)Ӵ"ϋYwaԕ|X?oPFp@^nϒ‘?o8 gw~fwɵ/?#1>#-Ǽ(C܍wJ'<5'X(& ;39g"#e!T&02zqHCCC=9,0ν1SWiHKKH>(3221$m^P/ǜN[(A~ NLid.mE/!r챟z5%xvhsQP!s]紴4霜*(@}}<ìlN9sbǎϤR'Tw.5 112qC+Z>WN<Ɂ-ÖYBmnK`JB6~'&4tV2kʃVVV\Z[ ̬̑L"˺x+,<6q>K/Țy!$_uʊJL$&] W:A!q ENŝߧh눱$bSSXqὸKOQ0rz. c7ye-̜AҒ(+**DjqQT9Tw?fYa={lMv'n"=/dD$7-e$hlSd~ݰhIG;$Y]!jkj$cIs]dgK AIɼԞ8AZU+FKK <שOIxg`kxغ gL~lX7NP.MU|Bkw-[æO7j@ɬ(.]#K9s7V ήNO7gByY4>|>>yRf̺Π7m܈e˗[?d/Vl|W" s(d?kMƃWqQQ݄񳰁dm]UaVrjnʃBA ưnnַ=XwO]XX2 QqX# I v޽YE UʐdJrH_Oi([O^aRL3n2T1t.JpAJ nۿmJRe׬\S AY~ɸ8ٝp'%'a58H8zgU7K:`$sn2x3'oȅ?\Sc9Ivza@Ѣtb4cfsbx33a2kC$˗+/r,^Xs~;KUnAMb6ɿWE:}2vg3I q(jȑi*>}:tHrZ\@F7<#It矣Q+)&6F2ƅ Jd zZ=ե~ruzrD[1~q=2 ˉ GI} ^07y9`ѐPf'WG1q$$Pj͍#EFY! r?ߕ~wYqs–Cllht60Rvټ28-=Lś S?ɡAbFᑿʵ5߹ϸiC[1gC >8fAs?蹒PD@V{V'z"uP7nHɎE/dɱA'쮩#G)͝%$19y/gHO ,KO]>AT$:_o~K3WB5//O@^$oe=4}Q#ú§BN ݴd C7⤓/LPhXybps7/ YF*++EyW/Ÿ0xpS 6F^gÎ )i(D-Y2~08aYAŹBҿpC7ď YH!HPrȵ[-팷V_YqEQ|EAxeJڝcg&|^tZ`IENDB`assets/images/icon_error.png000066600000001275152141651120012171 0ustar00PNG  IHDRagAMA7tEXtSoftwareAdobe ImageReadyqe<OIDAT8˥Ka SAoc6.PDC Dբ@Zxh1N"CN:vf}󶰾6uvyy1=!4ИvCv$ HS8d*P. M`+Sذnv~cHVr}ފOKW55Bb `l`yj`yk1AjE @EoqS2FE64(l=$6#1![?@Dw$-WfW&D$Fn>SRJuZNWc#di@% b_s Rۆ^t&:?!DmSQeJWeJÈqMT 'DB:RE_as3ȯC2Vz9W[9ŢwU*B4!B|zPJ fVcdEmZVw!Opřzp!MuS>x9f0Uއx8GHv=}uʡGBy=-Ka J8K+${?`vLЉ37ӿѯLjIENDB`assets/images/pb-logo-free.png000066600000364122152141651120012311 0ustar00PNG  IHDRrrgF^ cHRMz&u0`:pQ<bKGDtIME &!W dFtEXtRaw profile type app12 app12 15 4475636b79000100040000003c0000 uRtEXtRaw profile type exif exif 22 45786966000049492a00080000000000000000000000 A;zTXtRaw profile type xmp8UK sKBC7fS?{fb^c( :'$j5/~&ŋokr"8SB5"w-5hTۋ9E"uXX`H_}-l;yh` W}Z+9 SZdǯOVQj膹E Z\97E5IkӪVarl= Z5IahY+c<dc olm#?TYlD( UH6ڠRHzb3Q t~* FpQf>].q* d(V&ldn:aK8d5qLYtb,C%p hHsQtGdnC3d}8kvcf.?%67iϴ ө6hs&YW-qpgKO ^>~ܞq O_Aa9ȼ?l.rIDATx,۶D1)VG*;5_׶ﻻU۶mV{ ~6TxmVU@l6۪6VU=] @`}P}W6T=T6 ۶BUa۶چm؆;m?PUP *l}`۶Uۀ꽷j{n߿{^mVmCUUmU{=T۶m۶ ؆ {w߿~{ض ~ն_ڶ۶ mVW۶m'PU~{{omvw؆m۰ al{UmUUm6 mۆm޶mj{ޫmն^Um{{m؆j6۪6lmVmmj*l ۰m[ 6`{۶mۆm`mm۶}{{؆m۶ml V}_m۶m{キBU{m{m~{۶m6*l}wm;la6Tض l۶m6PUmwWmPݶm6TPU@*{Uwww`PPTwwwwmPUUT۶Uնmm۰ ۪* ۰m6l] wWWmCmP;lo[UPmնmPU؆ml`۶mlV~}j*{wvwm۶m{ ۶UTlۆBmPa UUmömサUo۶mUT mwWU{o lCUն 6 m@ ` mPU{U *TPm }_ m꽇{キm{Uնm]uwmm}~۪jPU@mxmm@66` =Vmn6۶w wj۶m~۶a[Ua{mۀmm{]ޫ{m;zPmm;mampwնma[U{;lC^UmV{*lUj }ww=ݶmUP꽷 m ۀj6Buwۀ{{_{۶}}l{o{zmV6Tض նmۀjTm` @zamPUw PvwwmUۀj6TUPUj۶ @mض U۰ 6Vmm*{{@m۰ z~߶m CU{WamC~Ux{mچm=꽷m؆ WmPUU۶m*`۶V6`mj6`[m۶UmmU*m UU~۶޶j{۶mmェPm۶ m@UmT=ڶ 6Tۀm*zU6T =l^wmPPm{~{mmض{=TPm w}{^6l۶lm۶U@ m{ Pݶm۶pwضmޫmUUmޫ ۶6¶mllpwVچ`[m۶۶a۶B¶^Umn6{mwwm۰m[UU{=PUvwն¶~;l۶mmwww*l۶>T¶mU}m؆ PmCUa[]U{{ίmض *llۆ l;ڶ wW6T`[mlC`[U*چmUUmVl*l;lPmm۰{m ۶mۆ{m{mT6TPm{mUUwww۰ mTUUmö6lP؆ =TP 6_j{Wm~} Pz*T{*6lC{P6TP* UlT6lUT `j[m[UmUضBUa۶Uض lTww6`öWmP}Pm**TU¶m{=l{mC6`*lC`Pmm{߿wWU;m*m@@mmT۰m۶ o6lCm@UwޫPaڶ Vm6lVU{n6TPzUlm~ڶ pwwömェm mpwնm*mö~۾{o۶mj۶m۾*l;`۶mPU@}{~{olPam>~꽷6 m_T@m۶m۶m[UUVPa۶m*l۶mۆBUmVU؆*ۀmm*lڶ նۀmpw{m{m*`۶mpw @l*U* ۶¶m۶m6Pa6TUUUU޶۶}{~۶PT߯zmVض ۶a۶m۪ڶm6TwWmVUj6{6۶a6?lj{>o[6l6T6wCUm@mۀ ۶U=TVU6jmm*`*TۀmmmTն*۶ mݶ l ޫBU*zUwmn{PPmClm@Um U۪j۶{mUma[uwxm}U۶;lC~{= UU޻o[~サ*x?6Tma6Tw|߇@o۶jPlvwPU۪m666VPPm{om*l=``۶zm{~߶m{gj{ @U ۶}wwڶ 6۪mPPU۾ÿm=mmwWUömj{w նm{۪]Ua6Tݽ{mlPUCm Pa6Tն*PVaa[ PwmPPm6T]{~m Pa ؆6`{*lPUm] 꽷U6T=T Uw xUj۶VWݶ m{UնmPaU۶U۶UpwU;T{m{o[ 6`P¶6 ޫ ۀmPml*mm@۶ ۪mm{~CUa{mnzmUU`a@uwmP 6~o۶m{߯j{a6^Wm۶U{Pam}6Tom؆m߯ڶW۪Wݽ?߿j6lnaU^uwj@U6Uキm۶U۪WUڶ wPj۶j~PV{UmUm۶m{;T{ mxl m w ؆ wwwm[ö۪ m߯~{^Ummm{}{߿{ڶm[Uݶ UP{~ ۶U*mU۶Um=Tն޶{@P{zUچmض }Wmpwض꽷PV{omVU۪޶m۶ UUPxm{mwxڶUU؆mPU¶ @ چ޶~VU؆mpw~_Uίmn~wmm*T{wཇm۪]ö*?}}} wWUvwT{nmTmjPmvw{* Pl*@}߷ U wB m۶]T۶j[`۶m6`[UU۰ ۪ Pնm Pm;Uچ Pmۆ *lP]uwmC6UUUU{xmVU۶؆jPUa{o[;~_mwWam۶ `*P~U{mm=ڶ PmPa۶۶ wmaVU۪mۀj۶ ~}߇mTBUmUmۀm؆ ݶmwUmn۶ۆ mClöPmۆmmClCm{U }{۪m;lVmnUm=ݶڶmj {Uj6PU؆m6ݶm@UPaa[ {¶m* mmm۶U۰m[Um~? ض T@ llCPUxmضmU*lTP۶a۶޶ݶ{۪jmTwm۶~m۶UUU?|Vݶn[TU 6lۆj@uwT6@T6T6mwm^UUۀjPU۶mUU~wۆ wm*Pm[VޫTm BmPޫpw؆ a[l@UUa۶m=BUUVUwV¶j۪>Tն޶mx{{mmVUwCm lm C T@mxUwm[uwmT{m~۶m*l*TUUmjP{o{oVwl{m*T۶*`UUU6T۶UնjPU*ض6U*¶޶U{@}߶lmソ{Umx~?lPUP{Bj|ww۶ﯺ{۪{z]Vzmޫ*m۶m޻{キ {wwwض6}_Tw{}6؆6{=?TUն^Uzm *lTTPa۶m۶U}wwmpwo۶m lWޫj[uw*lC ^Um{a[Um{m6]Um*W@mvw6l{=`6@lmxU6`[UU w}_ ۀݽTU=lm۪*a>Ta6Tն^C}mض VW@PmCUP@ j*l ۶mۆ۰ToCVUa۶pwn6{UUm6T۶UB{U¶ @uww{m?@}{߶mm~{߿={@Um۶lmmmöm{`6Pm߿{o{Um;`m m۶mPm{6l{w o{Vݶm*l*T ض lm[Ua{~mw{*lۆ ۀ նj{նmUöm vw}Wڶm؆jཇ l6mw۰چ Pェ*T {=ݽ{CT6Tpw۶;`6T{pwVPaUUݶj}߇mlC`*mնm}Wm꽇lvwնچ ]m6۰ Cm}~߿{U۶Uxx}{ PUPU*lT6^U*pw;@{ェ*UUUwWUw6lCU] mUUTx**lCm۶m۶mBTUUU*ݶ66Uwwwa۶m{ ۀm؆*¶mޫ~߶mm6lvw6 6<l}} ۪ ~wwض @UU`[n*} m{*Buwwm۪pwm ۀö ۶aT߯z66`*löm۰ @U*TTBUU۶Um۶ Ux}߷ UU6lmCuwwWlm6ۀ{om޶ ؆mmwwwwնm۶mUw߶a*n[}6`>ۆ6`[gچ{n{o[m=`6Txm*~۶mۆmTw}_mj[mڶ*w ?Ap`mٖ%QMsW$݁޶ཷ U}_m~_uwm PUvwxmCuwmwwwU}߷mڶm{UxUwPU=T۶U޻{*`[U}ޫV*TUmն wCUm~mC~~*¶ڶm۶ ۪j*PUvw۶UVmmmm{UwݽPm;{=] m۶mCU{WU6m=lU؆ ェl޻ Pm*l`*}Wa6U{*Tm۪۶m{*l{m}lömU6ݽmۀm۶m۶@WUPmۆm۶UPm mV6TwUض ۶;lV j۶6۶m*UݡmxmCU ۶m;lV۶a6Tضm@uwwmmT@~@UP {{o{wW{UmmUUUa`[uwmUضm۶m6Tﻻݽmض¶ =@j6`[`{o۶ 6ڶ m۾ﻻmm{~ ۀmPUxmPUm ؆{www{Ulۆ{UmۀP¶m;lT۪j[m6|{mo @Txm~۪{nmض {o[¶ P}m{wm?WU޻mmU*lUmw*`ݽmPnm~_U ۪ *lݶݽpwmU wmw^uw۪ ն^m {m{6T}xm`{mon۶Pmm=j۶mV}޻ {~{m@U~m[la[Um~}_*TUmPU6~ T{ضm{o6P{UUUxU~ UPa *`m;նmmzUP*T{UU mサo۶W۶ C ~_UU UuwUޫm@U{a*ضmPa[m{V~6`*Pۀmۀ oU{j[}Wmj޻;{ェڶ mm;`[P@}_UUm۶ ضa[Uݶ mm=TT@ m*{o{ww6nl*|ݶ U߯;~?l;l~U~ *l~n۶Vmömェޫ﫶U wl~wmw}{նm*Tڶmmm۰*ޫݽ{wཇ~キm۰ 6T*mmVm~UV6l|߷mU{o{{m۶ am@U۪ ۶ڶaچjm@T6m[UmVam6m޻ PP}lmTa6m~_ma۶j m﫶a[Uwwmj6WPaU~{o{_j۶m*T{o[lm;la[Um^uw]P6T~}w~{pw{BUa{T`[lm6 a ۶U ۪m m*aamm{  pwնm6lUmmV؆j۶mmUUն PUwW_UmmwWVm~^m6lVaz*۶*llCm6TնmU *@6T=*چjT UUί U{Uuw۶V]mB`ja6l|۶ Ul`P6lVx}߷Pmm[Um۰ ն m{an{mCmUնoۀm@Uݶmmۆm}Wm;l޶Upw=6T*Tm[Ua{Pmm]j} @{*l{m۶mۆ UmWm{{*`{o`{o۶ཷ mWUxBm@{Pzm{Uնww mlVU@ml{m;~mPWaPU؆}߇{wVmC{m۶{{PU@޶ {*`{m۪꽇6mmmm{ @UmPU۶UUۆ @l PUUUU@CmT۶Uw {=Tm{{{؆ ۪mۀmնmw UmwWU؆mj[Um۶ xU6 ؆{ۀmmvw߯z؆lC UwlVmC{mPUն*l߶m۶U~pwwچja{  m?T؆mۆUPUm=TU*l;6llm}{*UUmwWvw؆ C www{mmw{ݡUm^Um*lPB¶ڶ =TUTm۶;UmPUa۶z۶aPmC նmwma6Tww}ݽ {>pwնWݶml۶{Uwmm~m=]޶{{w?lPmCm6۪ U m UU۪ w wm6Tm۶mPmC @UUom*UU޶6l*`{WUoUm؆j6ڶ¶mضmVa[a{o[Um*`a{j[U6`UCwwնj[mVmCUmpw۾چmۀmmm~j{w 6۪WU۶UlP۪mwT۶@Tض{Um؆ڶmU۶}=Tݶmサ;lۆ T*a[j6l;PVUwWmۆm[6ڶml6*lPmm۶~ۆ^Ua6lۆjmV{Uuw{mPUUUUmPmV{Tpw}߷@Ua6m[W}߇m߯P*lCUaP`6l;löVmCUa[jm؆jڶ {~jmUxUU m۶`P۰BU؆mjmm{m۪ @ ^uw=TPﯪ*lvw{6T}Wض T*`6l{Uwwնm*۶m6¶mサz~m=T{]mPU{B۪ PaamVmUPmVmCェzU*Tm ~m*TP=l* mPί xmۆmwm۪۶mjl{m{Uuw۶mۆ Pm~w{U*TV۶pwaPm۶ {zmm U6l{UUUmj*~¶m*`۶mmPU؆W{mۆ ؆mm*lm[UUUPU*T~_ 6۶Um~_UmBmUェ6lPU۶mV}WmBzmn۶m{{www*ཇzmmTն*löj6TwW{Uo۶m~vwwm=T~}ww{ömPmC ۪]T@꽇mェz~_uwUm۶m۶* ն߿߿նmUm նmmն ۪mlCj*lm6lU۰zU۶mC m Pm۶aP۶6Tض mml*`[}{Wa[moۆUU}m*l mU PmCT6{*`6`[ wWa[m}TU`6@T?o[mmۆm@{j[U۪m۶*VU۶pw۶jUۀm`[l۶ ۶m`w wm[mmwmmCUmlö m6@mm*lޫ{{ソ?lm۰mpwwlUնUնm{6Tݽ @{ @}߶{{wW?Um]Ua۶m@ *la¶ UmPڶ{*VmTU`T۪ ۶W]m a[{w@WUUm۪mPm PllCU``6T6lömmm{۰ UlVm xmm{m z ۶U{*l۶m[Tն{6 ն TwWm6۶Uնmچ ؆ Vm@U=ݶm6ll*l;^UUPB Uޫ{U66`6^UUض |WmUUwww T*6l{mm{ݽmpw6ۀ mۆmlC @m}*TPUPazUxmPm޻mo[B{{=j6T6T6lޫVUۀm*@^*lömնm@{=B*llmPUUa6}m{{ww~ *Ppww{նޫ*lVm{}۶a6TP{Pۀmo{UUaWݶm  nۿo[T@uw6TUm۶~U۶U}www}Wm{U6꽷z]TU mwmpw۪j}a۶vwض ;6`6lC @UUUUpwwWU a {ۀ{*lvwUUmö {mίm}ww*{~mۀ~{꽇~mίW}Wچ{>lUU}{V}ww]ソmwWUU۪ zU*lPm{UUl6möm۰m۶ mۆjPTm؆ mP}mVU@Uۀ@uwlC6 *lCml{U}U{U m*l6{j6`۶zm}{o{Uw}a[UUض 6VUm6{*l{o6`C *Uնmpw{PmݶmPm{{۪m6~}~mTն lmۀ {>`*mUmT amm*T{U=PmC m*ڶ¶mpw~ݶ^}{ضm۶mPmm*m۶UV] 6mm}o[mwl~jm?~mmöm@UUwWU۪wwP*6۪6ն ض ۶U6T6@ VmC ۶Uwwwm*ェ6TlUUPޫ{U mPa۶ mpw۶mVU l۶ 6`6@mm۪}wmö ¶*l~?*Tx6lwwۀmUpw~_uw wlC߿ڶWa*löm *n{U6`۶^mCۆ mVUUWPm{T۪m*Cpwo}Va[`{gj6;l۰ mۀۆmmmm۰m[޶j{wT۶m; նm@PmWUm{UpwPUwww۶a{ mm۶]UUUޫmjڶ {m }_VzUaT~P6pw m۶amT6`[zm mwVxUUmm;~὇~{>@ ۀ mP6TUj۶ {*{j6mۆ}ݽm*llm{~mն ?U=6Tx~ضj}۶Uնm*{oݡ^uwwWBuwնTCUmU*T὇Cmmzm꽷o[U¶mTP;m{=lVm{U{۪ UUۀmPUUm۶UUuwضmݡ*C{*Um}T@Um~{@ w>lm{mUw>]PUP{mwwwm۶mxmVU}WUPa*ၵdٶE;i}50s3fG6Tm{~۶ma[lCoݶCm۶m۪j۶W~m۶~{キ;lۆma۶۶ w 6Tw{za{}߷m pwVl~_Uw66T{mj۶m@UUm*Tm{Um۶ww{o}߶m @UU}ェpwU|߷ ؆ۆmmj۶꽇꽇{;To[U{{w*T6l?T*ömUUm{mޫlö¶jTa[m 6TU j[ *lVaP*` wWUm;lm6lچm۪꽇mm]uw۶zm{Uwwww}6TT6lPPmö mUնmmm 6UwmPUնmmVmnmmTxBuwjmC lCPa۶ wW{wWa۶j[j6¶C{~?m=~mۆ{wT*@m;w ۶U{}wwo}~_m}߶6TlT{6WUm*l*{۪PUU {U^ ۶U۾﫪m۶mUUPa*`۶mն6]m[Pm6^ 6{Wa[mUm*}w߿ml; ?TxUw^U^mݡ6۶Uw նn[ ؆*lmlCmU 66ݽ{Wm ۶m{ Pm*Tn۶TV]WUwl۶ mj6T@lUm؆mmཷچ~BlPmC޶m۶m{mVUサۆmmmP}{mUuw~wm~@UmC UU]UamPa}۪ m۪߯{U۶چ ض*|ww{wWWU؆^UU۶UmUlCm *lVUn۶mU m*{n6mP]lm6mPU؆mj۶mPݶpwmU۶6Tvww޶m۪ 6T6Tm{a[UmömjP~~m[CT@uwwwwml{ pw}߯;ݶڶ ض~{۶pw۶m`P6Tۀ `ݶ`۶ޫ{ڶmm{U{ww`[PmU؆m*lVmCU ཇm[Ul۶m[Umݡ*{UTUm߿*|߷ wTw~߿ޫö ۀlmwTP]z`l6TlU~{۶mUwWa[ @Um{;C サöm նm۶a@UUض xmmۆ^U@`6T mwCU۪ VTUa[U=꽇m;ཷ¶mw~{m;l6ݿaj6{m{~mUUmj{}_mwWۀmۀmoC Uuwサ~VmP  ۶U{omUۀmTpwޫ޶mnm=T{~TV۪ VUضljwww{UUޫ]¶ U{۶mTնmmmV6T۰V]߿pwն۶*l變pwwvwm *lm{wU}; @mUmmö{j*lCU؆m]۶U۶`m۪꽇 mۀVU TTT{ڶ ض mUUVچ}}m@Umޫj wWa~mj۶{Pmvww޶޶m=ཇ}_mUUm 6B mնmx߿Uキ mwݽ@Uί PUmjpwwww^Cm*6T6mUwww PU6m Pma[UUض6TUچm UVU~}؆m۶xwm*xUU}۾ۆ6Tm pw۪۶m~_UmC~?|www}{W{öm;ޫUU]uwUW6Pmm¶{m~{ﻻjmۆڶm =T{m۶mޫn6lCUpw{mm[UޫTw۶*lvwP۶mVUj۶ö *l6l;چj6ݶ ضln{m@޶m{}ն {{o۶m}6{o{o{|߇pww pw~?m~?löU{~?{w~?Wm{{{ޫ@mچm m6lm޻ {m{mޫ>ޫPUնjPwwmUUa^ lm{{m۶U 6T۶mmۀ*۪6Tlöچ PmPmPP6۰ **`[mw @6{vw۶~?lömj{{mBuw{;mUuw mP~Pm}߇mmwWa}*l۶m۶UUmUwV  *m@wwWmPUサ{*lPm۪{o{{ ۶mCwW{o*lVa۶}6m{UTTzmmja6Tضm[ݶmUU{]W{;PUU{޶m۪m{>T@Um mwmնBz{m}mۆm}߶Um~}サ~xww^m۶ P{6VU] ض*~߶{Um[ޫU{oU۶mCUݶP¶ mB`6`[U6Pam۶m m[uwB @* {wwwP=¶ pw{Pww6Bzݶ¶m}m۪mxU6Pm{۪}j[uwP*l|۶ Upwնj[ ~_m۶6}նmUm*`*l U]Cuwmwm*j*l۶UP6za[U U{*lVU@mPm{ݶm߯ڶ Um6l{pwomնmUUmTնmwWUm{۶m}UCUmVmo]}m{m;߿U۶mmT ?}ww6l¶*mB`mP὇۶mm۶m{mPU۶{wm{ڶm۶ڶmw޻WUض w6@ ؆{*T۶Uw ޻;PU؆ n۶ {ޫ a6`۶VU*TxUw;llö?ݶ m؆mUU{ww~Cm[~wlTޫ*löm?۶m*`[uw {=ömxa}޻ mUm նmla6Tն^m۶*۶mVm۶mm*l۶m۶m۶ضm6lCm{6` U`Twm[mo[Um{a۶ mm۪o[ ۶m}}PmVUwWU{o۶}mWmwm߯U۪ޫ~UwWa۶pwソmmlöm۪ ۰ `}m*mm6l6}߇ @l*۶m{mPmCUa6Tm6Uvwm*l6*l Pڶ a{w *6`[TۀVa[ۆ ۰ ۾pwmCUm m۶U۶mCuwソa۶~6T{mCuw*۪WUUUU@UPwmwmVT*T``۶ ۀ Pm}_*T{{w`[uw 6l6T@{o[o[UU6TPaUw @j[^6V*@m@m{wmUض {l}m{ί ÿ{UU {o۶V{^~{߶mm;T~_TU @lV}@l?;T{*ض @꽷 6چ wW=}m۶mpwmۀ m۪z*` P@UUmUUmC pw۶m{ ۰  ۾ضm}߇mmmwWUwwwmۆm~}_Uݶ }{ض a޶Tm@`}~mPmaPxU{~サ۶ { wU۶Um` նj{*{Pm[UUض]VUW6`[U{@UmCڶPmU۶pw{@j6}~߶mWmPUmmj{~߿^Umwww~w ۰ xmCm[}_m۶ ۶m@|?mV*l;|߷`mVU~߶TUwwwmm=m[UU=lCCUmölPU^ ۶ ۪U@Ua6T@mmUUU{߯ڶmPvwնmնm}߶{*TT}jݶ޶ޫm*TT~{o{߿m{m}Wmۆm۪WUm~xm {۪^UWm6l?T6@6wwmj۶mm{۪jU{o*l{߿w}{߶n{ն^uw*l~} {m؆¶@Ua۶m**Tۀ=Twwwն?Pa; j{߿wl{~?=~m۪{۶Uն {۪mضm{6T{moU~}ݽpwUェPmW}޻Wa{サm۶m_U}ޫmmmoU~6;l۶ 6lCm{۪ wWmöm6T۶aUwVUpw۪ @pw۶UTնPPضڶ *@j{BUwmUj6T*mwmmm[mm[UU *l۶ ۪mUj[UUP{U{Uڶ U`6`۶޶m۶mzmݶ޶T{oPm{]uw}www|W}?T^mU{o6T ۀm{la[uwض{m{Uj P{WlCmBm@ *BBuww **ڶ w{mm~wa[UUlۆmUmP}Wݶmljm߯zpwUUUwWm۶ m۶m۶~?T{wwx*Tn{;}x]mP}m6mضjmj۶ݽPU{wwwmnlmVa{U;mP նm`۶ l>۪ Tm۶V۶]Umj6l۶ *6PmUCUUնömmCUίm۶mۀmնm۪چ{U~?mۆ~UU*l{*Tmw{۪mۀj{*WU *ェڶ {zUmpw{a۶m@*T{ PmPmj¶a۶mm6m6 }wWm۶ B {n6T¶ Pa۶mUm6m۶U۶UmCU@UmmUwwwUVm~?l}{ww {{pwxUݽ{P὇m wնm=m۪m*T` m؆mmUPa؆jma۶mwWU۪m] {wTa{m `m{WU۪m۪m۶U>]l{a}ェVa۶mU նvww} *wm[w޶ > mwW}w~޶ ۪>l{Um޶U~޻}~^UBUa{o[VnݡzU{?]U*lVmPV@}W{{m{Cuwmwm6l{۰m;|mvwa[mm{mj6l ۶}WU۶zݽPm{]l ۶mö޶mwpwUmݽmۆڶ߿U{wCmwۆj{=T6꽇mサ{mサö *~?j{キW Pޫ޶꽇W];6pwPUx] UmPV{@Bmmwﻻ  mm۰ m7Y9I&͌f2& V]T,HAl](>PDƍ)(BRNӴIMd}߯J$A$H6 $ݶIbwm$mL$mmwm$m$mIbfm>n뺞>}>ꫯO>}iϟ?~[?|~ysΓ'O&nݶO<9u]36 $ݶm&{w$L۶mL$Imnۙ뺮E$36H$9`fpΙ] E$IfffڶE[ &+I[$$H-{iI03뺒sp]̴mi3m뺰IfH$I$mѶ-m;3Ivdf&=mE۶I93n뺮&A7$imdffffvhm$Im$I$um$m$@۶m$i $fm$A$I&<>>v%i s~3+|??o>_W_}_~63>wywo}[w/^K3~?yInmh$uE@[\׵H$ $ n$vm I$HH6I[n[$ m&$Imݶ I6 m۶ݶ@$\I@`w۶m;3IH$3HmH$HҶ-m۶H̴EHҶmm@7H$@뜳Iv~_וhI bfжvk6 m[I$Iu! $mm{]M뺒skOȏȏ~S>-gϞ>}kO?u}ݯ~__zo۷ɓ'+99$imgm&9'u]mm &I$I$3sf&IsNfh$I۶hdf$@$i $-fm$H23h$333mm E[$ݶ3H6$i m$I[3-I23I$I亮3vw13I&An$@۶mm$m u]u ;3IHH$I`wH$ vIHi6I$I"I$̠-sN63/^x||<<{O?_|31E$A$@su]]nK/k9|[z뭷z__җ{n'O$ivfmwmѶ.̴vK9gwdfmg&I$hvfm[mۙ $I[II$IvKI뺮 mm[ mmvw&A$I-L$I$I$ $II23@$A$`wim۶mMhMm$ж{̴M- $3m$&$@E$m&ffwۢ$$I9If̠-$i{9k???O}Sm@$IҶ̴m$IҶ-$@7{wsE۶mn[mg&9gf]$HmdffE$I$ 9If-I@@$I23u]u]n眙Ir96 9Hs9m۶mgv%i;3$i{Ir]W`fn̴M$IHI.-vw۶]`w۶=9gwo>?S?7Ͽ+IIIhi$MI-ڢ$'>__/7͇]m$Ifm[$A$I03ILs$I hIvI$AH$hI$IҶu]hIf--n۶nu vww&}wgvsN۶I$i$Ip]L۶@$ 03mmh L[`fڞsڶE$̜s$I[E[7|mqߟ?wy~Mmmdw$II $imwwwg&IA[]L$Iڶmm"I`wo;}ߗŋʏ~W^A[ I$hdwLۙ9gfhIf]L[$" oտWon7\uߓ$$Iu]3Ӷ-m M23HݶHdw$A۶I$I<>>⺮E}xxE۶ m3m9$Ivm۶v%^zɓ'I@|M@H9ϟ?wbf13Imfm$]u]u]u]W[$A$m&I$ m̴Eۇϟ'y'?ɿ_kv;Lm'dIDAT&9gfm h@뺒n$ڶ|7/׾$I[mH$I۶333$M23IڶE۶mѶm u]Ivm$Ivw$I$ bfm۶E$\ו$Ó'Op݀ns΋/vwff&=m$I IkfL\ו3$ 6 " ڶmmI-ݽIp9$~o sn[y饗>>{/wԧ>ٳIIfhmm9uIss?JҶ-$"Imu%ж-$vhIm" &ImwH$3vfv3E۶H23Hvfn$vf 6I$n۶@ $E$mg&I$H23hHm@[`w$ $mwm.v~m;3;3Izٓ'Of& 7$$h$ŋ/^;/^Im3m[v}|ou]3h$I[m̠-ж-$ж->}}Ϳ7_}ն@I-wy{7};ǶO<Ї>}?믿_~뺀H_owwɟɗ^ziwgM<W/_o{_xx9紽nun^zvoƟ_)IpΙ$ms>zkfݶI-@m$I[ h I"I[Ihdf6 &I v-ڢm$I- m$i m[E$@mmn[m۶M6IsNݽm`wgv=yv 7$$Hm{ ℑ33眗^zC?$h;3I{$h -uᜃ0v7 mۙim|;o[o/|k_;s]$AMrw7I$u}|3?'G>-sN$I|峟?M6I$m6 `fv--Hh$&A[$@$;3h I۶h$@ffw&A[ mm$ $iE[$Am&Ih L۶6 9mdwwc[In@~~ ڶfm@[$9om;3mLЇ>Gyxxm6><<<>>>yg~g?9IE$m&I[?_ַ亮$3-$AI9gw?_/vHm~K;\׵H ڶm6 -m&A۶m@sN[`wwww&II>}f&I-x @$~$ٳg/u]n??GGgffdfoo//Ww}ٳgmwg&I[@[m}_[o^}|3H9G~77-$$A$36 m۶m۶vw`ff溮I$o@ڞs9m f03Ϟ={ ݧO~n3Ӷm$If~W~7p~_וdwI:$nuso[_gcسgж-v7 /Ozw/̜sI&h $$ڶHdfffffHz7H 8E$Imu=}ٳg3$xv~wwf̴$y뭷 |ݙI.Mdfvwfs\u__7k}# $ݗ^z~~//^n@-mmw7 `fI"$I$I23u%Ix H@sN[mۙ$i6ɳgϞ={63տW?ǯvK6 93/'O>}zߓm;3mwwf$~ n[$3{oƗ'>mIMry?O;_]h III IIm۶-$A۶m f溮AE7xH9~E۶I3ٳO&A$MH?7xs]W$@$3>~_~# `fs&$I\u]W۶ݙɓ'7/'_y啶IIO}Sַ<<<̴E$$II6 @$@$-E-Hh $I@ I$h$ImImmdf03mf$A$G? $$I$I$I$I$I$/^h$IHrΙ$uKOяI$A-vs9Ih 륗^zY$@$A$I$Imbwg&~WL9纮/}K__9<<<$i@n[nm@۶H$۶m۶m7~~>OH?}~ H$&hHvw13h E۶I I$I &II$I$I۶mIж-.6IIn۶m"I۶Iu]u I ߟ>;^yu:؆b0vڀʦ&ڮZm$*Ң!O"Awզ%BVUI&@a=81ƎgqqǛo $HH3s q{=Ϗ=K$I$bfh$Xkn\.o7r$Imt:~~~N̴m۶m۶m۶m۶-fm$i mL۶mжm$IE8[;I${8c;ok$m۶m;3mh $@[3n3d=3333333mgmgfff{fڶm;3mL۶mѶ-$Ihmh6I۶I6 @ $ IIIж-Zk-Mm$mI@mZhqk8ZH7$Ib{̴mZk\.'O'I-ڶim۶m;3@[L۶m۶{'Af8w}/?̬/}ݿ}|>Nvm۶m[m۶MZ h۶-$IIZHŋrww/k_'?7xcj{c=ztݒ۶mh۶m$@h۶{{L{_יz$@$3۶mۢm۶3vf̴m۶mvffh@@$m$AIZm۶Mm-ڶm$I[@$m&A[L$@$qH$8|M @ $m{ﶷm}Z{ӧ " fffm@۶$ `fonmկ~www vN' I$Im۶m I$I$I;I8I~Ƨ>_}fZm~ٳgh;3h;3mXk@$@JduG۽{fgff&7nnw۽nn̴m۶m۶mgfn;3mL۶mghv6I۶IHIZH$$I$IڶE$A$m$I&Im&$$Yk]kN8$ 7|$I$IHm3vf޷ۭm$h;3orI8콑3{M3h $I$$A̬N{?od$kZ__>m۵ڞN'`fڮHH$ $I$A$I$IH$ &03q I[`fz~ӟkV[f藿/| yf IN'$II@$kZkmmۢm۶3m=3II3-pf{w[$ I$9# $mIII@$k$Iжm۶̴M$IڶE`vfMZ+I۵qkZ+I۶Ho$Aۙ{L۶HJ_}j{o3H@$I$I$J6 7;|{c`fGZHkIҶ-ZI@$I m$Z-&AvW+ȏqkmZ{_$I$I I$qh q:|>ϗ˥mv{'7033$ ̴fvf" f& ffffffv^{8.|>I@[ I@H$Ij I- 03Hh$kmXkqiZk%7$ $A[&Ykrw\$I$IrZ h L$$Iw$IZ=;qZvv[k%z^Lgm۵޻m[v{'i{fz><DZ$YkafڮHJJ$II$AIZI>qIf3s׿__O^$Xk%II&YkڶM$I$$ HԶoo}볟쫯:3Iڮf&I|8hHEmZk!I$IH$ qǗrN{ﶷm${$HvfH233333vf{$3s^kɓW^yǗ|>N'$9-@[ I[@$I$A[H-ڶ]kI@[ZIXkH7|$$I23{ֶ-$i{:.rI6Z IE$I&A$@[@I$hzkYk%A$KKmL$III- IMImH23z׾kȏq{43k$x׾s۶@I$I$IhZ+ 6̴m Z|>?zt:Ѷ{fmL${ ڢ޻qwwwOZkq??}+_riIk$mg&Z 3ZIhmbf6rk~gr$Yk`fZIڶm۶t{|^k!I۵ڶM I[@$H$ m$A[k3338-03h۶m$mѶ-@[@h -$I23k8.v! s۶$q${Mh$I۶ZII$tj??C?>cf$ivf~:NHIڶM$h{ڶM6 $I$H$IۙIXkH@m8/˿KO}~f$Iԧ>~޺{qkk$h" m۶IZmۢ- fhjZt:=~˗3{ ڶE۶mq|~Z8$m"I ڶEhhH-Ibm$ "IZkfڶ$I۶XkH23XkM23hdh$`HXk Z3֚t\pG333$IH$m{\_HVm__Km۶$ $i mۙi6 ImI$I$9IN}si$I~W_^mI@۶h $h;3H^{_?}{tJ$ fv?~ꫯ~x߿Zk-mH$ h$ڶ$Aۙim@۶@$@$$ &A'h m/^q<}ѣGq$i I۶3s:fm8IHI6 ${o|͟Z m`53˿}v%I8$imA$$I~??|_GqL$$Im" hhq8yIۙ{t:Nk-LHE@@۵V۶IZ 3vf$I`53Iڢm[mN&i3Nr^_}էOZXkm$@[Iж--8N'ӧ9_ꯞN6I$IHhE[vK}ww? dW_}'~'/{=Nmm$ |ڢ-Z Im $iIڶm Ѷ-&IEH $nI>rmNA$h۶m۶ڶE[Hv''13@++_Zk$mgIZж-$-$A[Ht:ɟɯZ-vc?czǁm۶EV$H$i{{ﶘmAv-,-@*JֲeŊ m$жm[IжZ mdj;3m۶m۶m$I"I۶I @$II߯n{mvf?~^n$Imhh6q37^m M~_q^oZ-ڶZ vffm[$Im[$Im۶m۶ZkZk:_o~HH&YkLm$ I`u:NtJ23m۶m۶m"rT5L =_><{{yЗGiZ ,ݶ")I &ڢ-mZk$mgff&IҶmHd-ڶm@V43k$6 k-Znk${g& $I$@m" &A[mxx 6I$;GGt:E[$AV۶Im IIZIfHm[m@$H$mv;c|OO%A$?O|_җ.KHk$I03 " HIжm۶mp\]kry'y˭3+ËzoO}vޣgzzz}/wm_/8N9*/Nr҇%G⺯aڶm[Xk HҶm۶I̴m 3hIڮڮn$IvnIH$L$" &HmNr{L$@[$Ihm$3:??z>m};Nt: Nm@I$i Hm$ ڢ-r~~꧀IZ{|O?}t:Nh۶mHmI@u8=~w_;ݏ>pk_ۯܿf˗ywY_Vy}p?~1~rߚ=ܝ<6K-$i I03mm ME[$3d-$h{\Z3v 8M8t:nfffZ@ۙIZkmM$-$Yk%yWI&A8>_9#I$&@$h &A[m/| ӧO&O|O>]k%im۶]km$&<۷o|ry#~ͧ/CWy2vYG~t?u} wo8o7ۿ_}o]?v{'v.Bh HҶ-ڢ-&A@۶mE$hm88$k$mI  qqI@۶HIëO~Im[[_;Iwh$HvG$3 I$ IW[o}ӟn-Z7|_; Iȼrz6=7gg>}Ou{4tyM8ͤm8xw=گ?w+w_y}“+[׷k;Ǫ-@[I$mE۶H֚V[$I@鄽tKm$I$hht:vC$Imh&A[6I[$z}@$}kkwiHh mIڶZ 3$@$ &A$Im??Ibf>Oo=$II$@ RM,w?xO?? ?bw<ܞi+kk< v-u3/?|/óUMҢ@[m6Ii$I" I-ڶE[mvfIжm$XkǑ$ Ip$i I@@[II&$9ϸn{I$A۶Hm$i hI@XkG?Gn$O'OZk3hI`նm[ I[H IMIh$@M$Z 7 ɓ}Cqh II`fA=׋;{=Z333Im@i֚mdf6Z+ f43q`f&I-@[$idu$Zrn7mV Zm$mH ֚o$@xwo$I23ڶڶMh 3fmf$Iڶo>zH$x7ۮ$i$hpck//GۻO~"ސړunMs[i[ Wwyrcr+]#/i7gӯ|Ogz^S{VmmZ$I233vA[$Z-fIvdf$iB; h$kih;3Ip^ZIZkZ6Zk$mm[-$Zk$IfffN&I-IڶE$mZG@$/_׿$IM&A[mm[$I@۶mm6Z $h |[zff|N$3IE[mYiΓ^O?i:NS@+/;/KBzgoNxw]otq^;sa?ҟzgG>y??_W/nIMҶ--@$@Zm qmZIk-3mѶm۵&I233jn{iffZ HMm$k-ڶ$Xk%@I|H̼IڶMڶE$XkL[Lh M֚Yk%io}^ꫯ&i @:ƺ<]z'>o[prd-v<Ϻ^ַfWחv߹^ص["T^'ۧw/n˗eӞqw]N[e?7~wwܝ3+G[t*m$iNj۶mڶm-M$mI8ZHڢ-f̴m33336I۶k$38zM8 ڶEI$ IL$IҶZk$k{'I$I[$IIH23HZq+@$nϓ$V@۶m$@[mmIm$IM$Iڶ"oI'O$i6I[HmIBeó;?+W>^sj vo{w_o}BxG<xa~ͩsg3^;%rY}qG?דy9ˑXm[qL$3v$mѶm$IIbI p:ZmZm I۶m{Ѷ-$qp:03IN3n3j &i mEmH`Z hm@II-ŋmIL[$A[ ImM-mm$i6 hZ m֚k-`m" <<γ-S3w{w_.׋;{>KN~m[o<;W=>4Y;UP T YNo>}k|w4(۹ry_7=;n٪mg&I[ 03m&Ykmgm[Mm IhZ IIhIZmmB[8$k-]kq̬h h$m&-$h$hk--- I/_" 8gϞ!I8ZhIڢm$Ihm&E$-Zk$h $I@Omuy޷f`Vpq$Fr3aceʪPTʁe G**QWhI%D#*+08ggܿ'&>} m $A[-N%{?Ͼ{^yg٫{i^}Kxf+FEsy}'/߹Q @$@}~M=sbϻeI/+ϯ{Os7ǻs 26gXc..Ϝ=oZ/̓^sNn_W}ϗ?җH.$IҶ-8$mѶmm۶- $ \.8cf-@m&H233Im1hm۶m=hyEs9\=:/羲y~k:]| @rwtgNpy~_˛/=mO%gupܽxw~1'v-n$I`wwhhmn=I$ 333mgff6I@$Ifff̜繻 9#I$I0/<vm# Hhm$I f& $I$H233sq3 L[`w]m mmwvwn۶m۶m۶m[@[ mݶIH_mq^G>mmmmm 3@m$ <<9# hkk^{5O}곟z=m-H^3/?y{?}7o__ U/}veG;~O5x.m.wG۫}OOo8w@$@۶mIf&ILm۶m[Im$ I$If& ffyMmh۶-ڢn۶m۶m۶m۶m&I$Ivwo/2vIv7IW_}^k]ڢm۶mۢm۶HI`wwww$ڶE$I$ivwgW_}pG[?~-Emm۶mx ?x%r>3{.R$Mpͳ>}џȳyd{W?{[om۶m$Im[m$333Immwww13q-E[m.$i{gE$8ݶyMmn{vkIfm<϶{ڢ-ж-n[$A۶m$I{ym$Ih$Iyq<{7~7$ f&Iя~y" ڶm$h{'жm۶mIvwH23333Ih۶m$ڶm۶m۶H{~ϓ'O" ~7~ӧ3HҶmE$ I$IH@$Imcyۼ?{Ћ<_uu>w_>yꅝG/`k[2z?_uyt%y_|R;;s.$HEmm$i;3qxyq$fffp'&I vmA8f&I`ڶ.۶m$m;3Iݶy.vwwwww&E۶mhH23q$HH I$=ԧ>o@?GKvfffffff$I۶$ mw-03h $I$$Irݾ+?H7ԧ> /.$ڶ@[hM&8.#5<}>lRm}z}_y͇uFURәK}g<=67vvm۶m[@[$n$If-dfڞvw<8zHm$I {mwwww-vww13hhm[mdww7I13In$@۶I-I$I$I̴_|3h ~GnۙM-$i @[$I$ $ڶmm6 m۶m۶- ̜yG?oo>__o;3mIh mwww۶+tL"x-_{幹Myxz}v۟?/ĩhAdo3}w7^<'϶dzy._}wp󶻻m۶m۶-$I$m&im13m<϶ ڶ$M$I$I$I$=η}[j۶m۶myEݶH$I]`f" dff8$жm$I$IIs`f8vq\yrIHH@m۶m۶ڶ-#f̳sŏ}|۾{w|+~v{rΣI mmw<9mo\w]o~_~{=q9 wnW{gmo[$Ivwwn۶mwwwy333;3Iq㘙888i$m&m۶-h۶-98i۶yv-yI3s.$L8 @$HI$IrV3iA۶жmۙݶmwww<63ef$IH23If`ffff$I2r ڢm۶mgff$vfffwm۶-" 6qI$Iy>yvC[mKK/ymn<@۶h6 ڶM uG>蛾]w>g_vw۶M@$Ǒ^|z;:Lk_[Jڢm۶mw<-/\Ph{I $׿?9U尻}! m" 繻I6q36ǁ$5I۶H@[ I=swI23`wwynm$3sǑq`w]nqqmI$$@۶mmm$II$I$Irݞ?~qϞ=ɟ__>hq?<63h333h$q33m۶m vmm۶m${yHmnMw|pG[ݿwIhpݒ$A[ Mmmh۶m[ ?xv(|w)y&O4IHmw<=}~\t[_d/Wh@L۶%ImI$Im㘙mIh۶-H`ff& "I۶$IҶm$I$Ivwn\.$A۶m&$vn[$Iжm$3sMrvǿc?c]`fv}oodwwwwmIжm$I&I̠133333m[$Ih $f&I8^o?g?=m6ɳg~~@8$Am" IfHPyz\p _OqqH{=sw=Ͻ^|w?nNwWO^JڶM@$I<ml{Gm;338f&I[&qz^.iI6qI$Iq$9ϳ-&\.%&z?$m{"IE vww133m@$I$$q yxxxџɟ\.y&i;3IsC$E$mw̠m[ I-f۶mm L$ݶ3IڢyyݶO>>?ߺI̠-~gG~G. n6I$h{"I$I$I23333H$m۶m۶m۶m۶z{{?/O_;>t}8]ӓCbwn۶o;Ooq\9\歯&$@$@[=<϶mO؏{׶-$I$i۶-mn[I"ku+=tt@[жm[vsNȉt9zW I`ff& ̠m[y6I$m$vww۶m۶m۶m۶mE[$qGI$IA[ Ih \.23m$i8ymh{gۙ9۶-<O}տo-8$}w|̴M23m㘙$H23IHm۶3y3-vw $iq$?C?ꫯ93h MͿ7~ѣGI.K[HIݶ-9z;T{pVq>{<$3snH23]<϶ڶMrGmǑݶy\.mqϟ?7|7<<<ǁ$I&9gfwomh۶-$II$I $II$͞㚇۳.("s}}Onm۶I `f$i;9]3s7g83Mlm6 L$3vwgff $ݶ3s$$IIH<϶Ivww۶vm[$AI`f.r9cfvww&I$I$$hr^HҶ-$iHvww\.3$I@[ymE?g36I۶I\ϟn8k8ffff8$<ѶmݶmwnybfHrG<.|w_zû{^տ&IIڢ-I$A<Ѷ-m۶m6 $II(=d;2=4k$$IpNWGa3mf|ټwm I[$A$Ivwww-IfI$Im I<<_G>7:33s^3$`wnϼ׌,cu?;DH-狙^.7nsl\.&ܓ7߹&ڶ<$3s'8n7fvf&A$H-<O>>I&Im$AImgm[$I$I$Ih@I/Y.{ϫ_{{ @msWNmIh$A2q>?;լsToV9?qY]`$IH$I$I$Hm۶m333Imj$I$6̠-$I$Idfvf@ZtJҶ- ڶ]kE[Ǒjwm$Ihv:cuG۵Z-fmXk%_}s_u_Ǒ$ bfffO~7|WW?|nr~}}; I$hkm8cvm$A۶۶/g>گ}gڶ8#[;KKmZ+I۶hk|ƾ38ffmṃGO<cmo{[ֶm8c6Eۙԧ>}}??;Z$AV$m̬$ "$A[$A۶Hh$I$IL.MonoB&/s}}>Ӛl"Ih̠ev:uwiu9=w7i;ڮ}_=ʯ߻VBfZ hh $I۶N$m$Zm$333mdffffm$ ̶mHdf$ٞ{$@[$ڶqk$___o۶Jv$@˥mI}mZh{8m۶Zk]kZm~'wuݶ-vfǁ}߿+/}KLmېZq۶MmqkiJr>}ٗ}~O?wk۶IfIffmm_?܏ȏ q۶13IImpG$ $@$i $8֖};:G_~כyhW_}uu>Z۶lv}}=3۶Z xnnnSO __.rm~'sζm333k-ڮ۶E$hIE$Iڢmttbm?NUZۊ\/]FΗ=)h $IҶm۶)]o8}SMy`Nղ|/}K鱵Z @k$mmg&I$$m I$H-mѶ-k}fmmg I۵V $m}}6m@$DZZkmm $imm[k???|O?]]wi֚$mg-}o{\fox?O'>O/Gݻ+<|$9N777wܹ{;w˾++7׿mZ3I8ݿ7'?;wlv\ffu\NE۶I&A۶hжm$Xk%IZ I`6 }}ᕇ9|G6a~ۻ+=c/_}߈r:"ZL8N7Mozӛ~m_|^x᳟/K/=x|>t:<3O?{gZk$8@m}?_\.zt:m;3qlm;ZXk%hh$hmmnrϜ^8aگo-ӗ_}9)$Hd$z)c۶ut>?_|ӓדcy2u9L]߿/>w9ǩHc;̓Ou=8 H$3dfh`4_j\ݺnku'?ٮVնHI"Zm$3m$IIжmжm۶m[$$I I$mI7@ٶmff&I$H$$k8.q3m[8fÇzfImd|nIZkLۙIҶmm13H\]]]__߹st:13ӟ?~: f& $I$۶%ivvuZkj۶-d۶IH$I$I03I>OſĶm۶ǁ}ߓ}o$ZmmIڢZ+I۶3Ӷmk$3sLh۶- II$I$(DcJS;yv9ν/{}Ώm$ q ̶m3̠lۆٶmff& $df$i۶m۶ImIf$A؞{$H$ImۢZ8v۶mfq}Iڮq>h@$mIEql۶mnnnܹm[9N9x۷-wII̶m۶m۶m$IH/?ֺsL}ZIZkmڶ$3IH6IIEm I$IڶE۵V[H$I۶HqzgMlq9Ng?m{b;S|nIf& ffGzM/^W~^w쏖233m$3YkLV$333m$IH$I$Ifm$IۙA$=sm$I$IfIIk8hm323WWW3Iq˥-I$i$"ZkfZInnnfffm۶SO=w{{~y晫+੧z{w޽{ʫz>}?qWWWk8nnn$h̴&"I-ZIhZ̜+vut^/{江3׃msJ$}r~zr9Ow#ϯ_궎6$ $HIE̜N}ߓlۆiI$ I$$I$I$IyhHh{>\.ڶrI23mE۶|>ZHmnvfm۶EINӾt:XkNw~omI|G>???я~۶ Z3m[3sG$$mm$k$m$iI$Z$A۶mgm$3ᚯg|r_m׶e5/XIDAT{ϙTIm;3k-$A$I03۶mۆ3-03h 6Ih8Vۙk`{$$Aqq. mm$fmZ|>13mMdfZ3Z۶c=vΝַ{{?~q@3I&Iڶmmۮڶm۶m۵V[m$mmm$I$9cʯ|--< //}?- II$img&qIM֚-@[ $I3Y۶._~o}ç9%N븴S_z;_z?w/ZL$ I .]$u .`ն-m;#Zk۶$I}_k++۾-LqܻwW^ԧ>}_+_x^x~>O _\.k^.Zk8n۶j{sss:N}߯^׽Moz׽ ox8L$k-`fԧ>&q۶rlۖ-$I[\.ٶ8mZm$A[H@$i k-$Ij^Oۿz9e뾒9xc?vյs<M$~\mݾttG~+o|K=y򅮓mb{7tsz4mid۶ZmۮZ$IҶifZ3s:mC[MZk53Im۵|>q I$=N13IvffI$?<ڮ.rrt:N|\.m$Ykmm6tZk|۷}۟xXk̶m`ھG~c>__{Whm[Hm̴=c۶q3mZr`6 ɶmIx≷o{w~&ZmmEXkcqw޽\.`$Iql63qL۶H$I۶I$A13mD6WWΣӽ#Ӄ?>uj/|n{y?~?9ypw?n{ChI2G{慫uv<&{{pɼz=73q9-f-ڮ8`fm[[lv:fm'i MZk533ZkZZ 3t:LۙI$I$I<vfZ˥mYkݿ{;wNSb۶8߿\Xk%iv53hd۶9ϗ=y~}{ꩧZI" @[$|g?}~>}ԧ>uǾIff6 03I8cfb۶8l۶mmq:pZ8yg7ootB[$6 Zm$IK/؏#sN۶H@$I.$iIMIImh$q36.էˣ\OOOCԧ>/|IfffZmm[$I$mJ̠m۶m63۶vffff"I8sۻwo|_u_71qIm$i6 >=˥-Hr$I6Z+ EI&H$q$ٶ43}69n?_x96WǦ[n_'+GԬ$1ڣM&[o+TZt%Imܙqo3sxKݬ\^/:k3ee?O7O?Ї>O|Ν;oxmkvfI$A[<}{|_mnv. $A@$mI"IHh;33Vr٦;ua\Ͼ>_ytYڭ[zWKy[ˮϏn?=~tzuSWs&+|dIbjuK6Wsxޣ;Ͽɻ[ys;[ܫ.}/u~<:fIf& 6I̜Nm8$I"I۵Z-`f$Ir{{֚ڶmmѶsZku>㘙A$ٶ  Inoo-?zh6r13g77 f&I$I8ܻwC[oO?'?93۶q><m$ $ڮ&I8}f}:No63۶ $Iڮf<_՟ٟ՝;w}ٛ$m"I$Hmz׻n|>~{{̜$H$I[$$Imm$A`Hl۾֥%2۶~3O}g^飳mW$9^޺sݿ+ozѶG~ʚFrَ mWǶrv|3}}7=/ݵ^҇~mN][*G_\}|99;$ I$H23I&I333۶%mgk$$m" Zm$6IhH23XkDZ=sMqqǁ}߷mI23 $IH23-&im}?Im{ѳ>>7yH$ ZkmےˣGnsQ:zN?}}V9~ov{'suzotoxcNjy͟;Wo]r3qrMk"ɶmhdf$ٶm$IH$I3dmۮ$qmg&ɶmXkZm[mIvֺ]k}OӾ@[I޿vm۶^___.[[&i;3H]kL>O?$ &r8M̴]k!ɶm8NimےL۵Mm$Ykqmq>㘙$k-}g[o{n۶H-Ǒ$ZGG_GZחt:8$h 6 $I$A[L۶3$$iת骫~ë7jBDn\];.%=anܻl^'O<ԯಯ=_|tsʝ}Χگ~՗ys0urzdGLdk=~oK<7?{ݫ}:v7wzNzte|{Oܿӿ%8Y}۟yfthgJ|~6S]Ț):b֚VۙNYk\.9Nm@Ij$I^.rr IDZZkL۶I{V[$mfff I6Ik- ɣGDZm۾ﷷO?gyf$ dֶmkK/}|O$A3֣Gs۵Zmg-pǾ۶at:NӶm۶ I" $@۵V۵Z hq}Zh|>'ٶm۶?mېIA;w|}C=n;3IH۶$i;3m@۶mmZH$moq\j%[3Wkq9ܽΞW{_3Ow8%!DؒIڬ5ӣv͜գnm͞ldmLdILy*tug'?s_k-E۶m$I{ ڶ}߷mk $m]k%IV۶mۮm$I$IIvfE-L[ " \.傶ض̜׽u?G?3I\.|3_//ݶqh$k-Lѣj;3H ̜Nz۶m}$E$mZZr\.8cIdXkL|K_zOb$I[${<|8}۶̴m&A$A $I$3C3k.ؒsŝGf^}~;>GqILfe#uשٳƊ& !! VyS_z߰zgێ::Λfյ$f-d6}߷mC$IHk-\.$m-$I03hI{$I$I3df]kXk%ٶ?6I$H̴?_?{%IrG鄶I$\.>]kIIfffNmWWWWWW$I Imk8:8qkq`Jm̬Jvf$Ykau\}W>/{n۶fIZ3~_~gL[M-m @IMmE=Kڶˣ+ݯ=7Ϝq9H:й%S5.`yW<{yK>V?'ns=Ѷm`f3;n۶{$@-$13۶Mm $I$3Ӷ-s$I$6 I&Yk۵3޽{oy[?mې$Irٶr_ ~m[k}63r36I$3___3dfI$ڶmvuZkZkZk-&$m۶Mm[$INqi6 |}Osam7д` h`ƨI*䏠5̔'1jwR+U2QF+U&f $FD$ M84a{>ws]Uk8>O|#|ff&$Ї>ꫯ>~x8f&̠{ftwAUH233$r\|^￰_|G{<+k/#  afz(0(+(g`Kߺmx>//x첽z13SUnTUIf3 3$03۶UUw f&I$ITUTf`=y@UI03H{fr<rt7w?O?XTfl/|owyO{}ߑU53Xkz\. :$Ykm۶ZkmZUUUU$I8㘙Fw# Z=3۶UUwLU%I֚L$DZ֚޶^~|#}׽Modf֚=??ꫯ\.Z 3dff&$$I^kǑ$Iw'!kTOO~|奷w]o7W{lwIg;̞~I 3fT%59m_xg7=iS$" f@HFS77s]~~{{{q{_}oD2L7j$3jfgL$@`f J}13@ IU%I$TUɷ|˷$gϞ?^UUumTUwmo/?ǫjf $3$'{z&I23IfIfm?{8TUUuwm۶mZ+Ifff$8{f㘙IRU3333@Bw03ݍJ3ֺ^I;?}C3$}ߓ~/|8ڶmm}G$I$̠f$3`^C%k=;/|r=Q*CX-wM_S9N[a7nW^6[u:%K͑Z}e?\ֺVy/͏so+Uݟj뜯T59W=x`f; @AU߿˥UUU ImVU%J$>cfqI㘙^k$I$$IRU333H8o?}{I8|mێضmwTUw'AQUnTf$򼯏Uutg}C|wKDKSOg77Ϯ}+yzy랾^˺vO19$ӧsnOGo~Spsy˃;Nzr7=婹h;v={Q.GgFNͯO~[k'z?i_RRkmcOIݽq8jUU3qIp^{=y03~fZqݧ?ÇZ$ PU??W__FIfq$ٶmd۶m۪*ɶm)IU%q3www03Ifff$ALwLtw$I23H`f|J$IضkkIr^m}`f$fI qh;?|~|y7~ίj0ɛ웾4O?O}/|Ko{7z[NmjNۨtUrY9Nm5]^~/_lG~7ҋϟۇ)j\YS[lkemμyk|ˣ'_{]ceqNnLkmZ`ff&IUI`ff$UUUIdɓ'{}ߟ?~}GU| /\$IU??___|ٳgif$rwww\$Zk۶m|>N۶N333}ff8}}?cfITU3$I$I`fm/}KG}ߓ$̬}_k}7~rguZOq333޶mUU3333JF}ͳG_~w=Ld:nN~_ē?I}anmydj՝>t͞>2[u]^Jfy^ϯ/~ً^_ӯ}?xu5O˽:%˜su].oOxB$=اNIN|N`f03q IIRUfIRUI$mkYO<03 Iw~^}ON/w]}:fIfUu?_˧緷q$8ڶt:m۶J$U$ L@tww_$$I{f*L333@If&I$AI8Nqܼ+??ַ|FAwf [[ԧZwwwy `ff$#Q|;懿ݿ鵹Ne+'o~ٳlMS\rZ]m3kV,Y,O:i]ڻڶ'ǣnWG~/>}ۻٟ%j0Ԋsv;-~<߿wo̺%UoΧ) $ݍ$$IdffAV$U3$IϞ=^@~=/oo8c53I H23??_?<3k$dfIju:Zkڶ-IUZH$I$`f{ff8qm[kI$03 $I23Iݨ*$$Hfffm{W~L$H$3ѣ}s?A$UUUIfU5S3=Gm.7o9O|'L5/H&k˶>7rS?p~yo|{v9úk_on=373sԚm:WǥGuWu̩zl}k͹]U>uݜ+G>e_|^|%;G{sǞڼV_{)[JNL`f*̠$ILwc֪$mے ff=y03I ;Z/q3SU8o}?I333]U??W_>w{{{G 3$Lyrm[km۶mmZkUUIf$I$I}}Zkmۖ$IUUZ+ZkfXkLwI$@BUHdf$$ݽmӧO~]z?N$A~;/OoqݽmLU%9NL[3axq]mWU9ѕuNo7_{'N?uO7#o{Ժ15MWejͳoW}ׯOSnou}t%X@LwwwwWUULpq3ضt:UUUUU$=3ɓ'$fUq뵻z>x|>?'ğif$Igf۶ooog& $ \.:NUZk$IffffffffftqtwwwZk۶TUJI$HIH$3t|җ wwtwU%$={˿'TL`ft_8?<{K'w]ӧεͱM'Ska][_~͟ӛs?~xr=s{$I  df$I$$3HgOϫf{~_O~eyn׋\b;x>lvs:gfع1@ I03:t:%I$I'O̾DZ{w'۶].?'o~m$k~//Ҿt}wo۶m۶mkmZUUUI*I$n tJ3SUUV$;IAI InTZ+$f&Z8_~WwLTZ_u_}|*$8NB?ʿW/>Ӭ}1Gr\~y~7/|Q߾&U3^q$Yk%I$qt $IRU=c7w>/?+/}孯?y-mgFU飳dz__uůbm7'w<6;IUu@J$LtssSU$AUUz `ffݽ{w8$۶uww㫾ܟsU53H}Z_K?s?㻻;$$Aw~Ƕm󹪒lVUUUUI*I$I@$H\8TU$k-=3I$tqI$$$*HTZffff& 03I*oo{ӛt^TU8\^x-oyG>W_}3$I`fdf̃v;n_[e̵گLmj_}߻I$z$H$II97u|uoW$/~MwJmO7}߻/z:s&'#iI8}ߓ $I$*L$H$ɓ'AUzn\יIr\f楗^軿f&IUum__?#?ѣ:N 3Im۶mfTUU%I$ 3333IfffgffUIRUU53 L$U3$Iz:~_oǏ^U@U%G>r\*T`fsmYyv_ ԗN=~c_yi:ׯMW}w59fضm۶$I$I$TfI$A 0ݪ^*[tJy?g>yWGfU3DZ=ۃc?WO~ٗ^ﷇ]o4i$qT̠ IZU$f=3@>ZkJ+ʟѣGf3.}}ZZ333IIfg&IUU$I$H23$LwDZ;gqH333I`f$I {f㘙$k-$UUUU3$Inoo~|>޶ 3$IU!>___V8QUHRU\ul˿O.JK_η/<ߎmu:պ\zLIZIZk$H$ITU $I`#_1Tʝ-{}˧p_}[_f=92]SO7g>M:bLWU$}߻f&IU%AV$I03H*۷mG^y$IZݍuvogo}Kyz]v}zyÿ?壟{͋GدG}ztYUu:m۶mIL$I$03UWL>n&k}ڣqYO9MNG_}?뵪.|8{fZ[:{Ηcߦ߱\2|yϼܝ{9z^.u?#Zt:NֶmkZkHI$I$IPUIILcLϨfUY?^?{/ݾ][kNq3&}ue13= $}$f&IUUBwXO<3̠$8g&ɶmU^z8$U53$~O|$H$`ffff03VU!IU%$I$$dUU3333>cff$$H$3TU jfPUIdf033$ $I*ItwwIҗ/~{{IRU3U_>Oq) $5qa{x7^yw|y#IUUUJHmjK}z矾7?_Or\:}?PUUڶt:Nmے*IU%A$I$@$df8cf If& fffK[_[~˱5j1`8@$@IZIqqqqDZʛ>iݶGNe pqIXk%AU! fIPUz 3 fI $ө=yϿXkLO>oOM$3`f33333J23k-L$If&$AwIfff$AwLww H$I03 03II* $L$03@$ٶ_ӧO;jf3s>=z?򗿼J8ZU1"̱jZo[?Ǯ{sۇXk;Ni۶m۶mIL$H$$03H23_.}߻I$p:m*y񣇷s'?_ݼY+aqcrsد߼vf;֚kK@I23q$$Yk%$U$Z 3dcf̾Xk%n$Ig$IH I$3Zkaffn ԧ>XkIog?__]kuw$8#U裪$>'ݞ=s?k^mk۶ֶmiUUI$ HdfHRUIfH^wwwq$mےTU IUUZ ۇ&[uY[O?K;ƳLۏ}}?oεMedf`q3$Z+ * Ud53ݽz 333I`f`ff& lv: ۶oO~8# f3SU?G$`fI03UJrGmfQUIPU$I23If8HdfU8{f03333H0333f@U3$IIUUQU3$$I?|滾^|}ߓ$A8~'~__kut2 f9ӗn=MHmֶ:Nk- @$IIjf$IA$z\.wwwwwwqlv>TU I$mےm /$LY9y˽߿G'=rLNxy3_>~-A$$ݽ;jffI$kHRUIZkY~3L$$A$Iffڶ8?Gȿo[۶QUImU3$ Jf HRUH@U%TUwt̠{J3803ݝI033$IU%I$I@$I*Yk%I`ffffѣG?~mm3$Iw#̼?UZI$!}4ccfjUUiZkB$I $U53 tz}zNSUmv>03I$Innn>|XUqTUq{9r<'n}߭ݔN;9$3df}GnH֪AHdf$9c $A$It:UtJr^?]mےtwUuwU}[o}_}߷m $IHRUI$IUI*ݘ`feI$IwLVw'*$II I$`f`ffff`fzVU`fHr\\|3w8f8Ϗ=OHr\$Yv^gfUUidmֶm۶$*T$fU$03I{O^z^}$Hr>O|>N33$m۪ kn3c9g;~;w'}'OgO~̪S4LHA$$$w  $IRUINTzC?G3$$~h53Uujf3$df$IRUUUUHLw>33sZkF$z=3ILJ$I`f II$ 033ݨ*twVU 8m}?NʣGۿjftwU%yGI {ї}߶pⴝתZkUUI$IH$IRUIf pݳgkwqGֺ9Nk-$$$I$H23If3tqy_|_{z׺Wk»/nKk1 @}fq3 ILUaf֓'O$I$I$I$I$I$I I$$I$* /;ο~B>OW|e۶$gffffffqt7q$YkUTU$@$I LǑddff8}}A$$333IPU$8 ̶m$`f*IU@ 3dfPUIff};;QUI$ٳKRUk8fqGόZ[T:mmkVU%JPU3$03I8$?r_Wt7ju:NÇooo$I$df$BJFQ ֯_Um~/= ^ǚ}vϳ]jBI803IH$3 $AHXkmv:.>ooIp^ӟtU3fHIFf8}߻{f038988I$*I$I$Int`ffgfffffft7{fqt̠{fԧ>?I H/K?}߫j888ASTԶU[ZkUZ 033A`f}Gwcf^wwwwwwϞ={r^qL|sss{{ÇޞNTUU$ f3$}wwٳ8fffl۶"u:ӏG̶j=͛ ټ1?<Ԏ6$I$UUU8gn 03 I$I$Aև?wH`fӟȏt03t t7>`ff}?8}ߏ>8n 03Udfݝ$$$3 $Idfg&t7>8TUUm[kgff$3ݷ۶>OUq[۶8$8c8;Hm|޶ZUUUk0333333twwtqr?}˥g&ɶm|>ܜNT>}kkϟ??# Tc.w>;?yϼ:l L/ɣr9_mN $I`f{f{ff`$I$ tZk=O鷽mݝݿ/Zf`ffgfff8TUU%A`fPUIf13tDZqqH$I f& T t13UUUI$UI$333HRUU$U$I$m;HI^|{W8LwLUm;ϧө$AH23I$r\:3ݽڶmm|>t:t:N`f03*z}}^Icrs{Wo+uo\}_c?=\yuV$}ߏH33333֪$I@ $$ITUw7|Ó'Of& ??z|N233333f333333II$Iktq388H$ AA$Irfff* f@$̠$$$I$A$Xk]ת:~臾]z$e۶}߻;I8mے$ fff033333 ff3u8fff*ɶmөffm۶m۶Z3$ \.t:=||>WP{}[կuf2}}v{w?+{pݬf03@wL`fMӮY󺟵ko #;6+veЃ{g* ]tW$4 %0dIhGM$IM23mm`& 亮7oWo}kwͿ7͛ݽs}}}9眳眶IdfJu% 9眶@{9}G_+@޽x\3mݙ m{9}9gw9=s9߿߿|>۶M亮f͛7o߾kf=$3333@=$ڞs_?~|}}=h۟zw_՜O$>?oy^=g m"$$m"u]3$ n۶ݶmE[$vwILsoo/IvI޿%9`wmжu]}'y<mdf$$I9I6 sN$?~|}}Eݽ{wJ6 mIvus-H23h{]3 LM$ݶIfffڶmI}E뺒L$>|xyyoxsm?9' df뚙m@۶mwIbwxsskIf& Lx<޾}͛13I6I$I@$I L:紝$3 ͛3x}\Ou?:?1O Iݽ H|>93sI$IH0 $s}>M$s?@$H??s}sM$̼\͛q]u]9m I>n[`w9I=sbwwm[-Hm۶ݶm -$m${ivw&$9M $}>$I{{sw}9gww}9m}|>wݶ{bff&u]u]u]$IImݶvӶ-ڶms|>_uO~I>}r /ޯ~dtw -fh$mwww۶vwwI vw9}|>|>}svm۶h6 I;;Ku-??͛ڶݶ$3333$I;IW@ڶ=s>m9}.pݶ۶9眳{sm۶9s$I6Imvwwm۶mݶIf6 @۶m۶E$n|>⋿I3///Hs|>}s9}svww9s9s9m&i{]u]uu]3s]\r]m۶m?ϗ$m۶Es}߯>|9g|}]yk1yq}~?OבIh EݙI@$Iݶmm=9m۶IڶE$333IffwgpmIf??}9I뺒$I$mmwwf ݙio$ݶsӶ}Iڶm}I .dwI; $Im&9$A `w̴ vI o޼Ǐ_'s$m?Ϳ˿|<}<Ih$m۶m$If&IsN[ u]mJ$Iжm[n[Iv|.G۶m@[=3nx>?7>eN8/?~g4bf$hm$i;3I.̴Mmn$Ims}mwm[$Ih $I3Ç_|h6 G?/m9333333I `ffff$I[ж=}m8@$mw$mѶm۶m۶]`wgݶh=s99gw۶$mE-dwm۶mHm۶Hrw޿~~$m̧~'8$ivwwww۶Emm $mq]W$3$I23Iu]Imh7oGw$Iڢ-fff`v$=ݟ}}'~_{xf9//?WW溮$mgHm@f& Iffwh;-ڶmvffff3If&I$$++h$ OO'y>x<#I$Imn$mwm۶m"Is^__wwwwww9{9.03@A$vww۶m$m۶=m n$If&\53mwvwwwwwwwwn۶m333@[mI|~o߾?-~&Aݽ|>w-ڞsbf$ h6I$I-@$m۶I$Iݻ__E.p7f3I|~{7>n$sNs}mwwwg&Iv7hvfж-Lxຮ㱻I\וdw<idfvm$I\u]W$3=`w{w۞sv$ݶA۶wm۶HsN9??gmϞg`wwwfmm{9s9mqݶ{y>}Mdw9I9;3hu]m@mvww-Ӷmsu]Iڢ-^^^>/ݻwIbffffffwmyOw'׋oqOy_|?{:_nI33Ivwfvs&A۶mLs뚙.m$A$}sv7I$mx01K}w>a^?&33u%@s9gf$3HҶL$fomwms9my<Iж9眃$$I@w~x$A[ I$i۶-fff$As9___9gw9۶m9Iffff& $IHIж-vf$A$3dffff뚙IH$ $I3x<뺮뺮13s=svm[.9M|[ڶm Mm Ii6Is>ssN۶mws9gf`wqι۶ݏ?>$3`fkfI__/fm$3dwwhvY'lz]{x?֯|Ǐ9h۶m۶m۶m۶m۶m۶9眳6m{ιu<$hm$@۶}9|nH6IsNA$@m۶m_I޿|&ݶ@$3$$ڶMr]" v7I۶ |>~}}ݙi۶m۶mn$3]mwwwu]I|>۶Em $A$m۶m۶m[$뺮fff $.fffpI$ vwnÇh /x<m6Im;3ڶMdw9IIv9s}}|>9?~|}}}>}~9Ǐ}?y9gwbff&I$Am ]}[//}g@۶@[ }|5S>}c?O9oI亮m n[$i}H9<E-h ] $IHII23mm߼yຮM;3_}՟ٟ'Mx<mwm۶m3ӶMhg$$ImI-;3IڶMm[$Mi$眶3$IH$i@u]u]ׅ$3$mۢm$s-ڶm;3HIɟ?f-??쳯zf9Ivm&imbw13mmmFݽ&9=$I23Hsww3$I^^^f& m6I[@[ 䜳u{xOC>/7yoxys"></ I[]I.ݝq]nmm۶m bwwww۶m$u%]9ݶmvw9$k~ `fWW_}u]ڶE۶m$I$3s]}}6 03___9ss$A[$ݶmw3$I$.⺮$m13cf$$I^^^G+I$I$I Ih $\וIHҶ-fm۶mB$3$ ]}yyꫯ/m$$w}mhdw v-um6I۶h{]ڶm$n=<9>|oL$IҶ-h @$I`fffw۾yK${߼~r5oe㚼=y$m$i HIжm۶m۶]mHmI&sNm$mm9;33$I[@۶u!I۶x<Ivffu]k|33?꫗sN $@=.ffff-m{ι333I\$$#I$h$mvwm$3A۶m$IHm \53If&H &MmII$i͛///3+dfLmh۶mM$A۶&i$H䜳mg@L9\ו亮$眙y<3@[m$9޿Ƕ̞ǣ7g}Ɍlw|>\9-hI9HI-.fmѶm$H$IE[mMEi I.8Em>|++Hm?ϯ:L`wg& &A۶hJHs]m۶m$$`fm$@$mIv7 v7 6I$m IM6I$뺮$If&n[$i I" I$I[M<ggimksfffw&iH-ڶmIM" "I$33-ڶM$I233Ӷmm[${۷__|>Y?v8O3?|ɛk>mڶ-\ׅm;3Ifm[mhmwdfжm۶@۶hvfi $Iu]|;λw$3ooo}[@-M@۶$Ivws{9n[.sfffm뺒mImmvfڶMm$H$ hI z<3$I hmwu%A$A۶]$i |$h$駟~{KI9h EIm u]h6Im@m;3333m۶]$h$@۶IfO>iÇ13V_|6ڢmW_}vww-03II3sis99gw뺮+9眃f9xL۶HҶm۶m۶E[HI- 03I$6`w3xj^wͷ|u쳟i۶-f@۶ $i$I$9$II$A$fHm$uo޼$>|{&K/ƻmf{}v9o>~9W[$i $A[m۶`w۶]m$ 6 v-6u]3$ɣ-ж-E[$hm&Aۙimmmvw۶M$]nIdf޽{o} ||M \ׅsmm$H$I[.mۢu]3Ho vwf@[-$ 93$I$i$IڶE$@[ $I233$Im m[-vw13@$mw7ɗ_~_o}[~)̜s$m -"II$I;3h;3m&idff@$$II|///muIO~_74e_\d3眙A[mw}mg&I۶h m{Ι$ILm$u]ׅ$u=vm@[m۶hE[`w9I$8`wwm[& 9kf>O?||̴$A۶@s-$9Ir̴E[m$] 9HҶ-mh$@I93h$ `fڢM$I233s]$$mѶ-`wI3m۶MHH__o}[///mIH$Ih H@\53I$I IH-" Iu}'m񋿻j皯_|13$vw9sm9m۶m13Ifff"" um$I"I[̠&Im-$I$uaffffmI$I[@]@[m뺾w޽ym^וh $$T fx<&Ii $I3HI03x}}M?o\s17KhǻO7_S99Is9gwg& $@$I-mgffڶ"I$I㜃$v7 &ivm9h]m mm$o߾Dۙim}>眶m <iݶmHdwbw$ii If&9-93Ӷu]mG[LM$ ڶE$I$I$ mѶbw$m۶HhImL۶߿#O޼y33HH@\k$InI&s\*ɞE9h޼y33ǣ-M8K>zcG$  @Iny&޼$&Ifd"j3&(6$K'5p}e?ՏOy~ܻx|g03Lm۶mۙ$I⺮$H$Im[mHHhs$IH$m`fu]If@.жmۙڢ9' &9<$?~$o朳u mw7\/_|:o?}OֆDA@ EJPʵ}7?A?cogs9뜳u&I.m" mgffڶEm}I亮LMvww3mmms9'̴m۶m[m= n $Ir7o~gx<HIh6I-3HM-@[$$ I[h$m&Img3?㺮sNۙA63mwy< $D2@[m1ץ@so}|o>>dwdf{h$@mm&Idwۢ-$IsN}n[ -9IڶE۶3Ӷ-m$]-m;3 ms9۷ǿ{ݙyyyi;3$ $$MH$HH $H@$͛׏cw3$IBr~'o^6\/ !dTQrc_}2SyJǛ7G'׹x< 9H眶Idfڶm 3$mgmm6I[`w>n[$ݶ3-bwۢ- vIvIbff^ׅu'??mຮHm$@۶3-$ ڢ-$A[HIHT}گo+@@E#}J9,ïusε_}_}r~|9߾}ۆmj۽yTUuﭰm۶sν@UU{˽m˗/߿ {m۽{9y{Sᜳ67ׯlUp_`>ݿt~oxn_|~˹g?<϶ }{ׯ}Ty Umouv~myދ¶ ު9sm*Pa[ysNm۶s=s~_w7r[/P 0@<~bϯ̟}ǯ?O~~⦅ϗΩ mv۪sNTEU{/*U8Tsj۽mUUjy sN۷ogO???l*`ضP۶*m`VU`6s}?s=l~yޟY?03 f @)`W_?|=߿߯_>ϧpVUv={Tmm `pΩ۪sΧT9g۽68lVU|>yl{y@U[UsP?'oooos*T@OOO_{{d۽yu_~7~|+ϷFP06`wy~/?~_叧_Kc|9T/<߿<;S9v~_|GsO~?|<9}{y{/ Ps۶U眪:Vm9g۽ﶪBu`[UsmsNUچj[l }U߿SU/_||}*Um۶s Pmlv sm9SmP۶mmB|{U:T؆ PU *y|>n9ylP ۶sދBU=ۿ ylCUUT6l9۶s9P*VU`*TUuΩs ؆ 9sUն ۀmPUl;s ۶zvl9g6TUsAuιspEUU@9½B UUBUUpj6sj}U*ۀދyp=l۶ 9۪j[sa{ou`۶j[Uۀmض VU8lm@`*l6TVa[6TVj*TPa @6ylöm@uΩ@m6T 6mml*`۶T۶a۶mUj۽sA սa[@T۪½yVm9Vm{9✳6sۀmpPmVmն{9 @`9ׯկU@m@{ {qVUUm؆j۽[sU{ 69V{/VU@Umjۀ ۀmچ **l p6 <սsŶmT۪ @Pmj۶m؆m PBU*j* ۀma۶mT۶am9۪m`[`6`9 @ U˗}}VU۪m@m۶m6l;`*`۶mUm{{oATPm`[U@ m6؆j*`[mmv6TT@UTն{۶mýyT@U U `۶ ۶s lC Sm*@B `[{9}`*TPU69V[P6{j*jy{/VUU{9jPU۶sνwjlۆ{9möy{/Pm*a*lTնmm¶ m6Tۀm*p{/ PS}}a۶{< *{*TPmlT ۪VU6Tmsν {sm;mV B|w9 Sm8`ދj[UsTնm۪mj۶ދs6PT۪ڶm9g9n;}sN ۀs*m;T߾}ދsmC¶s:`U@ սs{Qs6*{mm޻P=y9n**`UUsp=lm{mw9۶sy PV<۰ }_T*TTmAB V9g۶z߷˶m<<ضm9sNmj9նmVa9۶UUUT۰ V}m}mT8[a6l9{oum>*6@m6T`6mUlVlVUuιmPsms*TUU6`Pm*** mضsPP۪m6چj6Bm[{9@ նj[mնsTl66TP[U@ @ @u|> [mC P{mm;`*Vsmv:{sTm6l`۶sN 8l۶ 6lmsTUmT*TT U۰ @l  V lm6Um ض Pڶ pιn*m*Tچ m6T6T؆ 6<{om@U{Qa[6T۶Upm@6Tl6*Tmml m۰T9Tn*T *۶؆m*pιnTmm[ Vm9g۽w[ ؆ ۪ 6Vsm6@ 6Tm۶ H#bN=m۰T?T۶PU@UUն n۶T6*`6l۶ ؆ lVPU¶;T*PUUm6TUUUUUa}¶ mTUUPUUUUUUUUTljmPapw{Um۶P@lۆTUwWUj*VU6TPUնpwwC 6TPa۶mm*ۀmPpwBU;l**U66Tl؆m6۶ ۶m*l6`m @ Pm۰ ؆jam@*n[{۪ P T 6UmlCUm*^U6lCm[Uww6T@ Um6T@m{m6T{mT`n{Pal6mUV*l` V؆ mj[ {۰ l@Uj6PU6}Pl*l*T؆zmVU6۶mC6T6Tm`۶ ۶mmml ۶UVa^}TmP۶m*lP὇{Va@ {U @ *l6{U`mPmC  U 6TTۀmPU@ UmTl{UPa[UU;l6Bj[m>llP@T۶؆j ؆jl{jln*TU ۪mU Pmm{U`UjmmU Um@ Un{@T۪ ۶چ wmvww{¶ {o}^U~?T{*{۪ `Pm ¶mサ@ l*}{PmP]m6նj{wWm6lmU l6چ mmP۶UTVmBT۪ ۀm*Tmmۀm@V6**` l*mTۀmlPm؆ m ݶmU a*`6lۆmw۶U۰ 6T*lVU۪m6T}{؆U¶m*lCTmT*m UUwm*@m*BUPpw@U@Ua۶Pamն*mڶ PU] ڶ ض @U*T mUVU*}x]PU{mPUUUUU Pa[uw=TmU{*l @^UUUzmUwm[UUUm}ն ض UUl*l Tm6PU6TPmCTضjmmöjUUa6 ۶UPP*Pa[Um *n۶ ۶ oU^uw۶ml{Um۶*l{*l{mPmj۶6`Uxm`[lTU؆ mTPmV*mT`Uwm*Tm6`[6`U{w *TTTۀm**T؆ m6P@*lmmmlV὇ =a[m6l**mU*؆?m@؆mT U؆ 6T*TT m@uw6m6¶ ۀ m@TmBT6TPU*TT؆ m۪m۰=۪*lvwն*mچjmUUammU6lömam۰o6UlT {WU@ *`j[ j[m6۪mmUT؆ m۶6TP ݡ{6T**lCm~*۶j`m`{o[UUvww6{@ jP m6Tm*Txmサl 6l{m۶ n۶mU `PU  T*`*;ڶm[UlvwUPVU mT}PUサۆCjBU ۪mw`[] ؆mPm۶ PU۶ww^Ua۶mT U * ؆mmچm6T{*ml UTPն UUۀj T@j6`۶ P@TT۶Uvwmlچm۶U*Pݶm @6lö ۰ ۪j~?vww{j{؆@6lUl@m{oz6@T6Tض ۶U*۶ նmm**Tն 6lC lPmnm۰m۶ Pl}ض @ mU۶BTwT{o۶mP`[`[l¶ 6Tlj*Vί;l;l*lW*lUmUmBU@6VaVlC`چm{ェڶ ۪ CUU~jm{m`mmUVmUUmVۀmPl*@mm pw؆j؆ mB ll۶Uض޶o۶m۰ ڶU{@ U6`[m6jmlݽ{**Tmm*@uw۪m۪۶ mUlCWmPm{] mU UlmzBmT @T؆mݶm~?lCU{m؆WU۶PUU mVT@m*ض 6 @6lPچ ^uwj6ڶBU؆mwjm@U|߷WU*@ @m6¶j6VޫP6pw6lUض w ۰m[T*`[a[Ua[{pw{oնm*lj6TPۀ T6*`l ]BUUU@* 6` *U6*նmml*@UUض ۶mۆmm۶a}WmömۀmP*U۶*؆mT@PmTPpwVaU@ P T؆mVmö P@UmV¶mmVm*mn۶ PmpwTvwVUۀm¶j6TUUU=l@UmmP6T6* P PmCPmm{mm*T{oP@T*6l *l*l6{* V mUPamPm6@UmöjPmlPlT@ `[`۪ ۶UUm U*lC6jPa*l*Pί{wm*U۶mmlöjT{o*T۶Um6`@T{U}{۰ lVmC T@ 6*T۪ml6TնmP۪ mTmw^Uml``*lPUlV۶Ulm۶a{6TP۰ *T`[UmVmm*T` wm{6؆ 6`ml6`m[m*TxmCuw۶m@*`6T*T؆j6TPmpw۶mCUlmCx]m j*lvwj۶۶m@mm@lCTض ;l~ömmöwmmU@lVU6mlPw *lۆmVU @PTam*T6m PU؆mUۀ U l*lCTm *@m j{a m*۪ 6*۰ P{om6l  jlm{*U UU ն @T Pm*l`m6*`U6lmj` {@VmC`PU`[Um*@mpw۪mnPچmmm@ 6 նmm*T6lP ۰ ۪ *Pam*TlT`lm6`PUU 6*6l*ll T۶m؆mmPP ۀ۶m @mm lmTmmPaTlm6l` ۰6ڶm۶ mjOHrA"kwX!`6@` @Tmm@mUཷm{T؆ma{۶U=`*l l@ޫm l TlV@ VmCm[ TmP @ `j*mV{vwU۶aP6Tl 6`[Va[@۰amPmC T ۪mTlT Pmm*`Pm*lUPmCl{Pm P6@TPUTl 6Tlö ۶Uն mVUmچj6Va[mVaTUlPa[ Tնmضm[T6*6@ Pm VmC T`ۀjm@ 6V@ ww@Ua۶ *6P؆  *mmm{ ۀ mP @Pa UUU6TPm۶mm*6lö l 6؆*VUնml۶ ؆mPamm T*mlPPmۀ^T mCUmT`*@jValCm؆ 6l{ۀm@Uj[UU@am@m`l*m؆m@ w`۶UP6TTضm *6pw چj*TضmTU VTPP*lPU =lm]Ua`*@Ua*lCUPPm llU@ 6`Pa[ > `*۰*P * @`UT6TTl޶m{om6* ն T*`[ jm@m6چj{>U6lP@TT6TT Uml*l lCmmmPm *@ `[UmU 6TU  6TP@TlP*`m{P* T*l۰ 6mml mPmچj*ն UPU@ P*@ U 6Tl**llmmPmTU@lCTmlPPalC mCTmm6T؆mm Vpw؆ *TTmm ۀm6lTm>TTT*Pa[mPa*@l*m6l la[Pm`[@TmPۀ ۰ aj P`6` P{oPm@ @Tض *¶m6PlT@ 6*`m]UB6m۶چ Pm*U@m6Tm m*Tmm*Bm۪mUl۶@ 6TVmj>mP؆j6T U6BB  T@ Pa¶ mwVT նTmTUl6jT@j۶ ضڶ *l TmmP{Pz**;lmTPmm@6PTmlP@۰  lP6T*TUTCmmچ6`۶m@ @l PU `P66@؆m mn{oPچ UPmPw]@Umömjݽj۶Pm6TPUP6 *`PwWmmソ ؆mwm**l6|`@6P*`m`[mU۪j[Um6T6lpwwww{ݶm@m۪ *UVVm6Tj*@6TwmUU}߷m~m6l Vj 6TwWa[U lP@ նm ~{mw*j@TچjU؆ ۪ j`6@jm@ Bm`{n[ڶBlU=l @m@ Pa lUնmU*@ ۰ mTP @6T 6 6pwUm*`*l`*l6Tmmpw~PUw¶m=]@@lVUl۶ U @l`m۪ *UP@l ض mVUmml6ضm6 6 mxaݡTUlömmm6Tm *Pa6aUTm۶U  P  m`m 6@mm6U m۶ ۶۪`* ۀ P6Tm@lC`mlm`mVa TUlm 6pwm@66B6jTVUm È AhwUpwm۪ 6lۆm?l lBUPU@UUU۶~6@m @ *mUwww lj[u` m66l* m۶ll`TUUU *ll ۶U*l۶U `ۀm ` *؆ Pa6۰ ؆ PU  6*`P mT mPU۶{؆mj~6`[Pmm6@66`[ j۶ xU@m~lPVm`T ۀ T *T@`۶l *l`{oTUUmm۶m*]uwU`[چj*6@`*U a۶ *؆ ml6  {*|߇mUuw? PT6mll  m*@ T Pj` ۀ Twwww zP}wwwWUPP*Tl*P{UUn[llTT@mT U`P6@T mj6UUw ~TlT6*PjPm{] նmdDmon%tEXtdate:create2020-03-11T12:38:33+02:00 %tEXtdate:modify2020-03-11T12:38:33+02:00QIENDB`assets/images/pb-logo-hobbyist.png000066600000411240152141651120013205 0ustar00PNG  IHDRrrgF^ cHRMz&u0`:pQ<bKGDtIME %pJ FtEXtRaw profile type app12 app12 15 4475636b79000100040000003c0000 uRtEXtRaw profile type exif exif 22 45786966000049492a00080000000000000000000000 AzTXtRaw profile type xmp8UK0 =LP}'w/ hD _~sZ{Yc %ZհhĆne7hQguvkrcC5&3ج3֜ ,&zkl !.X`tùvc6{o9l㿓OH,8jZsuuup ^3=^B2ޜQ2=϶mqEc01^~>H ZʂX*bZ!Zc*L؞LX=B Rq۳L/Lvt3SUL/tU;9Gz^R>y޹ 6%F<(| A-?jqhrlP}mHP(zL9E9ӎՊLGRL>  z&d߽{|j۽s6T96sj6Tl*TmKuڶ휃{ 6Pmۆ|>`vﭰ휃m*sm*lömm*Tp奺n;}|۪ Tsm9UUUa[UTU@m9m*{9Pm^smضV@x<9mö *`۶ ۀsm۶mUUU۶m*TVUUVU`۶m;T sᜳm[Um9q>~}%ȷϯχ휓OOW۶=yv=sPs*6TsNlP6Tp=`[m6¶m*l;<mp݆ mPU *s9mUT` p9۶UPmCUmsۀm۰ ۪U sNm۶ *VUwW_߷~ݞꜳ-OOmn>sνw[ @U9TU *Tm*T m[U Uضދ'6T9UUUTUUsp9@U{jsN *Vsᜃ BUU۶UPU9PU9gj6x՟_gC=/Q,<>|mx>ooox< TPUնmU *Pl T۶sP:9چ 9a۶:smTUmpنs6lx<*lP:l{꜃*TUUTmT6`۶s9s9۪:>wλ~y~gu{}X@Gٹ<{<,my}96:TmT@x<9Ss VUVsmUlCU{QPUV8Tpٶ `[UU۶m*lC c*T@UUUVUsm9m[UaPUUm*l*sVsNxΞu?>} }WG/{ǯ{|}xOPaǏުs9UUUض U9a[ڶm۽ 96꜃mضVۀmU Pj۶m`۶m^TPmm@TUUUBmTUmj[U¶mUuٶ UUUPm{<=bv>~g/}??/ ۶-{w'g^=öچ޻xsm Um@UUm9۶*6 ۪ ^T8T@UTv j[Ua*Ps6PU`smlTUUUTꜳm9g[UU{*@m ;g_^__ןWu4@蠽<^|sǼ}˷Ͼ?ί<>|ӧO>=xT۶mmBUm`[U9ն pΩm*lT *lCUm*l`9g9@j9Us:T۶U *`*` pElۆ Uսj[UU眪Psa `PmCTսr_>e:/˷{嫏^^v<7^Tӧm6l9BUUPUU휃mچsNm؆s@UmUUU ۀ U۪j۶ ؆ ۶U U U?{ؾ[oz#ݝs=ܗ7~zϾ}x]>k<>| ={ @lbG {Ω*TmP¶ 6TPm*UUx}z{{m sm9gm*P*l98` P@B PPUT{j۽T۪sν96Tm*lpv9¶m眪j*^Tm[Ua[mj[*Bm ۞w}~~qߢw?_~?z=~GO;{yÇl>OlCl*TUmڶsΩU ۶۪SU۶U۞gUUl*TvΩPmۆP½6T@{s6l9rٶ T۰m[mmCusΩ {QsTml;TmT*նmUڶS{*T@m9g6Tݻz>~"Ex|m|nCUުvנּ m 9眃mPmp99vSm*svΩPs*TPU眪PUm pvΩ:Tնm 9SmmvvmPs{キ:T9ս Uս///mUuΩPm U|>K=_7|볟_W/=w,߿{WW<??ݷ̹k?_}9~:yLJom^{;s{w?{9>=>*<Ϸ{/s۶s9m眪j¶sN{/PUUPU۪s**mx> @m@U9چma[u *9mۀUPUꜳm[Um;T ۀm9gmm Pa9ն{oͣ—??^7}|3_~ۏ9g}:o?~7r9|qK{~k~?'Wɽ=_z<>|{Vs{QUs6s j69 pΩBm؆*`*½w۶m۶mCm@U*T vB@mGm PU 9j[mPa6Tmpݶض ۶PmVUVU*{^9q]_|s[?/zyoo>_׿?=e=sܻw^ǓLJ pΩچ @m¶mmU`6`۶m۶U*^TᜃmUu*PUUUU眪* UlVUxT9PT*lۆz>8T6*mP ۀ PUUUUTm9眃 @ux<^^^<ׯoo{_{Z>{|o~l_\}_>}~_yg}y}??ֻ_o{{:p=m۪sN PmC սw½j9✃m^PUmmUj[UU8T@@BUնm@*T{ouΩ{/*l6Pm69V*lTPUT؆m9m*lyϞ߽~~O?8/q?~'o>|:wx|<{?7ֻ^~ty}~}W~/yG>|s{ܶ[s' 6T@mުBUxTs9۶9BUU*l9Vmۆ @m۶m۶ދj|T۶{/mm*P@{|Vm۶U99 lxT@UU@mPmPmVs9ۀj6l;<y÷ݷ_oQ﷿{tu2Pڗ?C_m|:Tm6T9¶mx`۽9pvVU9սUUU9SU9¶m۪m BmPmVs9{= 9g6:UuΩ^چ@UUն{xE~|y~w?~sS>o=6>@چӧ{oS= `PTmm[{ou98sνնPUۀSmVUU 8PapΩm*mSa۽w[UUUSUs*Ps 9PU۶U@۶۶Us m@T9=n<^N>ݿ^g_[˾x4{}o8/g?o>Ŀ>y#w~⥯}_=~[ݝox_7ٯ|r<>|PmOPU9[s9@UUTP lCUmTUUPs *U*l|>Us½sUj޻ sζm۰:98T 8TUmjm j *@Umۆ 9{9眃 8lsO?>^h^v7|o{W^wv_?_[zox̏|w{+_G8=_u<>|l{}}}>۶sm*Os*ǣBm@6Ta[us66s9nllۆmPUll m9T6Um*ڶ:ڶ}w;~~[m޾o/~}?}xm/u/~y_׾:t}xLJ9m6Um[PU@UU {sζlx_~~gǷK˾ۗO{;?x}巼O}kyq^ܝw>r߽?{ϙow<zx|s}{{{{{{>۪mxyyv}yy6m۶[U |>QU*T۶m;缼{QmVs{lm۪ ۪޻PmVsmVUնmPPU{sζm9նT lVm{ous6s TU @m½ 9G̷wWwܯӟOoӷ>^>_/Ͼ??m?;ػ}e_[w>>{{|~ڣyx/w__~|xwϹ{UQ/za:~{/>}_6T{mPU=ϗ{9///ooox<ooo9j۶s*`m ն{Tۀj۽xT|>jn;p9ض mTm@T{jmCUpΩ'{؆ mU{QUնmxlۆ ]x|߶c_'!&H0`TۤNl+[Q-l+mUډ(uj%(4iì98 ln麮y?xvf`Iۮ{-Ǒdfmm$O{E{|>/}|}睧zoɏor)OhyrYǭ.~}e\]_=ׯ,I.ws?9?kubQm^.8E$I&I$ bwmIfH$I$I$If&IۙI$I۶H$I$Iڢ-$h$Ivdfdf"I$mg&Ii333Im۶m۶m۵ڶm$3Iq I-$h۶-$bfZ h$h$I[-LHI&Ivf@h$Zkfh6`fn3yͣۯoӏ@jF݇Ǿswxo׮^#\'_}}{~r*?<~}^>p|];o> `=ym[en;3$I$37f& m۶M23I@$$$m$$m$m[ h$Im$m13IIf@[ I$I$Im۶If& $I$A۶I$ w۶I 6̠m۶3m$Im;3I&i$$i3If3h6II$$$Z|>'Yk=~_ӿ)֗_94*veg洮r,{~q8wzwvNx8޼oCuOw'H\gozӣWw>Пᶝ9%qj9?L~./+UF`=yvf8r I$IA۶I-$Lۙi6 II$H`ffIIH23III I &{c{L8-f& $i$ $I$I$h6 I$A[mۢ-$I۶3d$Ifff"I-333hdfbfvf $I@I ڶm3NLmt|>Nɴ|~x|㟾䷿ O_3H :L4yp:_v^^}\W9{?gn.4rj.?e.Y=i?kjtr,:/>~}Yz mIq\.H$; ڶM23{$$$iI3I3M$H$I$I$ &I$ II0333I"I콓mvfZmm @$II$IڶM$I&i$IIIM23@ۙq$E I$I3$I۶I$& I[I &i{oHdfm133ֺt:NGǯ߾ߺ;?#CjN "Pٹ?9G|.ݞ'O3Oۧo7ww7O/s>=U2et_K?>֫8ǬW%ɓ'$r\.Ifh"rMdvf&A$m ڶMI$-$ m콓$i $i`fI$IL$I23IL$3d g&q3># $ Hd$I$3333 NII{cfMM8mt:%ihIIж-f@۶m6Im$3m w[`wZ|>Z+QXݏ':"H$x>[|{ߏY|Wkzt:\o=|[:\ߺ؏w~Wo[Wo| y#s ֓'OH I۶q<<<`f$03m&IA[f-"Im$I I$IڶEm$@$H6 $h6 I3Ifff$H I[`f`f&I۶m7If&I۶ImI033Mm۶Ifff$A8$HIf& mL޻m[m6 L$h6Zkf$9ϧ If77?{WzyVwytiUwh}3f5ǯ߯^/k_<^W@[}xx8h۶-6I ${ " L @ df$3$I$Id$I$@`f6I$mdh I[$$I$IHdfn3If$3m H$ -$m3$I[`E$Im@$h$h@۵mZ|>_]]޻mZrǏow~Ko}/\]v3Y鍽r<:nKm^ſәW# Yӱܟy|ztY;p˺?ǯԑ.\- mZka{H23h$I۽w[--$IfmH$I$hdfEIdfڶm۶;II$I$I$I$I6 M23IڶEۙi $$If&I۶@۽qm۶-$Iq`f$I$ mHm{oI@۽w۶If& `}G۶Hqmqmm$I{'IIڶ{'I87f&IpܿCox|s/=wNWPGwyaߜN7w'kwu7ӣ>?\g~^?NuL/7;/WOuT $IҶmfH$ f{w[mޘ$m-f&I${mh $ж-Fm۶-$A[$Ivn۶m[mmѶ-$I23kI23{o$A[@m{#I$h6IiN-E[$A$h MҶ $Z m۶m$Zk53I콑$$I$I$I-IZIvfd -$;L"7> }g_ܯ~|~at3@v1yp酗Ooz_}pu yܺ]7/Gs^1?!y>;^vC^F/vM{_:5׹.qzaߝ IdftJ$IVmndf $imh Mh@۽wi Im$IM@۶mh@۶@ۙA۶I{o$$9c=3Iq޻-M$I ޻m13ImIHH6I$II$I23I`HHvvII$Im۶m;3I$3$$A۶H$ ڢ;${m۶m6̠-ŗu|OK>[I捇}K䴻z\kOsu|ǯ%>k}sq^{:ϯ.8]=377gϏ #֣9_ݛuz3+ﹺ\{{[}9Cn9^< mLYkh8HI{cfF{w۵жm۶IڶMmѶm۶m$L$h h$ 6 $I 033${ڶM@۶m$@$3 L۶m@I@$Ifff$I$mmm mIqrq;I[$Yk{#Im۶m۶h6 I۶{۶m6 {ɴ\^}=p\ "&Ajo.}<ӵsS7yS&xgoߺ|==orwqo:u\sz{47}5WO $YkNVm[-ж̴{a8m{E$\.mEHh m$ImIMvf ڶHmۙI6IH-hI6I$I]k tL7fff{۶mIh@E$I"I$I$$i$A۽w$I$m۶mmm۶m E[ tZk̠-hd}\^|7WOo|ճ9-e?us|!΅ q~8r.Om?{.~[kwzq;z.7/.ם}`$ft:ZIqM$ dfvжm{oZIh $III$h۶m[m۶m$@[$A Imm" Imm۶$It:II${E $A[жm[mH23Ih۶-$m&A$IL$hv$ ж-$I$ {MҶmm$ t:%Im&Amgt:DZ~饗z_b؟Ϭ+{mB$yn?y-/=W;ܽUhxz[]=|9ߟy>7:ݾ";1:텧_:_|{Fͺxpu η]x8r3-8備Idf$$ImIH$6 &f3m$HIf&I۽7$$$I$I$i$I3$ hm$mI IHI{$I$m$H@$H$m$@$m$I[E$m&I$m&YkNtZk!Hm~fnݬ\;?~ ?=~6V/u߿?C~rdyqŷ|g|> f& $I$A۶n>wyxHڹu xt\}^tty}e+}up|ק޺]+OcO]1s}g~kߜܷGg}ӏ>=r:֓'OmA۶{h{3H$$$@INw[ "I۶H8h $A$mbff&I$m&$i m$Ibf&I$IvI$Im$IFI$$I&I$ жmm@I$IIڢmbf6 E$Iڶm$hI ڶMqIf& ZmIt:Nk$3@$m{'zo>>[{8ڻ4de?pڳ~o򣗾;/񰺬:Ϭc.{'xyn[7%ur:}ϾyV׾Ϳx^%'OI fryxx{DZjH$$m$Im&q ft:%it:%I23k`fZh{:{'I;޻m$3$I6I $IۙA۶6Ik$hm$i;3h I$3@۶hv$m$I$I$@`ff&II@[&I$I$I޻-03Img&I$hvf$ImZ mL{&۶\]]癙$I@۽8mɜjk\.Og_y7^WsqrMԚX}\_.|fg{s\8s^sYu9͏s>=??{tsڳrw^_W_]/ _ag9' Zt:f&; m$I6 {'Ih{mmۢm۶Im۶H23@@$ I$i -Hw۶H23kw[MHh $9Lh$m-hIIڶ{$IZh H6I۽w$m$m&I@[$A[ F$IڶڶMdk${{idfZ3$ImkW^{mNoͿyWŏμ>ޚyk"ч~>Ϯ/}{ӻo>|O_T_=׾WΟվ;w^Ͼr;s^<%r^K×aC8`u:N|{q-vfڶm$m{o콏@&Iq$9mDZqk$I&mm[ IZ@[$IhIh6Im h m -$A{V7HI@۶@ I۶Iж-`f-8̴{'Ykm۶M{@۶H6Ih?p_}ݻ}ǹϮfn<[Ksk}f?ϯ_XαzW>/Y^s? yIz @w۶{@۶{۶ " $i;3H$ &IҶ-$IIM23IHvfvf I$ڶMI$i I[$ڶM23IH$Im$I23m$I$I[m@$H$I$$@-H{o I$$Iڶ$i $m" -f&IE$IkZ|>NI$-жm"̜k洏?k_z>G3#WËY/jŹ~|s\׮yw?o^c2ޝGϧN?py竿ާ?_)۬9Fz $C[$i Ǒ$I$Im$m$idfn̠-f& $mmgff6I$Iڶmg-$жm-$h$I{{$Im&I23I&I$I$I$i۶-h $IdfM$I$$hm I$I$I${cfmgH$I3Hin$k43t:L @[۶E9.fq:]}_ # sm6Bԉi?;yܣOsdg]?5K_zΗWӷo}.senB(z @i{{{N$3`fff53I-f& 03h${M23hvffffڶM$ fffp$$mm۶޻mm$H$ڢ-In$ If@[HI$I@[ 03HI I-ڶMk-$$Lm;3hV$ڶm$I$$qIn$޻-Zt:NI$I$,"}\&=zzww}:8K3=QMrn^j˾[Wss_|9vO?{Η?=_|\;~q}1?1Y9It2]zYXЇf&3I.qhvZm$Iڶm3n;3H23{$333IIf&Iۙ$I$3$Ibf$I$L$Hdf I۶ I$Im$In;3kV$Imm$Im I[$A$IҶ{m{'in$ $I" $Im۶M$̠mۙI6 I${`$g& $I6 7fffN|>Nk$$L8$m1233ij{9??ۯ.g~]קN94:EbZ2~}{uzdKȯ9ݟ|?埻ՙ7zUSӃ<5f= wagm{36c>b6irP#^UDQՊ7i ڨMHHJE RK@kH1c1xƞdz^O-콯k$Imm`53IH I[ Zkfm$ǁڶM-37$9IfffE$I`6II$iڶ{033-vN23Ibf$$inI$H$h$mg& $Im$@[Z+I$I@$Im$m۽w$@$m8ڶL$I$̬Z3$$ڶmn۶޻L̀嚸9OryXrss I<|O]ȿ;?4/>ru?r}m]_n>N=?pzyj_ޟ?x>u}׿=/߼{]^[wǻ͖`=}mz|IжmZ+ ff$ $I${'{V803m$IL۶h$I$M$m$ жm$I콑mm$@$mmI$II$H$Ivf콁hV۶m$ ZIIZh>#Ih HI $I@[$03IڶM$IZt:f& $I޻-{#I${o ޙ9kd?g~E@3N/v }GGk;z?Ϻ^:ىd'{ ǯ'77ׯܜ>{_{_|t˫3AӶIzx-"I`mdfIIڶV[@[\W$A$mI${cfm۶-hh $$I{6 dvw۶@[ZI$@$m۶m[L۶Idf{w[$m$ڶA۶f& 6 03q콓L$333IA۶m ̬Z3֚ $Ihd53IڶMjv&ѫwY|ݮ^엧/ wsɳyMO~_~ۏ|/_}u5`=}-f{$@ۙIr9cvfZHr" IMJnI$m$h۶-m$@m$" g{IfIm"I`ffm3-$A$@[M@Im$M6̠-v$3-$I$I6I$I$Iж- I{$3hdfbf${HB$H23ifZ I$IIM$I$k$mc{t9u޻G2d Qs/ԼYӫ/?SyCz>sO޿wu/ԓur1WhǾqΛ?gykwkWG4l[oH qe$IJh$k${Im{'I$I$h$3dݶZ Ifm[ " fm"I[H-ImgH$A[$$i$Im$Im$I23I{o$II$I6H`f${o $Im$A $I$II$IҶm$mdd HH2336I$93$ $ж޻{6I$IvwW[1㼟>9y_y8}wܬw:+sڻ?s{¾}t{r]yG}x|uqoOܿczn59`[I$${oryxx@[Hv76I=8Ifm$&I23@۶̴MI$@[$I$I${7fH$I6mmIdf13m`f$m@$h IndfI$ $ m۶m $IA03Iڶm$m13mm[$AIҶ${m۽w$3Imdj̬m${{qq\׶IN{mu8ww}S닇޼z56-nγg>uXǥy_~Ͽ|̇O?gtxyE/׻shq>~?pIn̹/VWy_'s'ntz-$I@ r\.{803ImI޻--f& жmIҶm[{03m$ " &I$I$I$I$iH$&Yk%A$I-mmL$m I[̴-m[ I[$I$II" $IffݶmۙIdݶmHhI$$3s>1338$I@[^m HzHfL5.Ͼ?s]gW|=@N_<||s?7?.<<ܾxOp?u+d唯MC{+o}99nNǙW>W?wzq$z뭷$I&rqZI-v}:N&hdff& $I II$AI$hdfm$ $$m۶mvf$L$IMIfI$$ -ZIH--m$I[HmM$I@{II$m" fff$IJdf$Am۶=-$Im$m@wٳb9>xv~M= 5}:=^~3O3o~'w|{/;_;e>WϏGR?Z'^tl~'ί}w/ns>m-~ܮܻ9iz뭶@[$3Ӷz=cvff@۶IZ{cf$A mm[$I233$ ZI"I$m Im`3I@$&I3@$I$f@۶$A۶3m-I$mm$H6$hn۶-ڶm IL$INS$Iff53mm۶" Md6 6N2kkz;/gc d<ǯ/z{[/r1㚗:2_wz:q9}w<?kqi~g_8}rSYs%XwʧniFRӧOmH6Ih^m$mg&I${'m۶MHm;33-@8@3-$iHI$I$I" $I$ާөm[333m3mgI$I$I$II` @$I" ڶE$m$I۶m $I$I$i$m&qI$333m&mdf3$I8HH233$t:Nh$ ڶhI$ivfb{m$kɩsчK/xxyya=|7~c$n9kۗ_=>Ӈ44:{1mi/3֓/M$\^9:+7~'_yk=O^}=zs{Oۯ}ܟ{RR>@$H8.qIfff I$6I7fXk36Imdfm[Lm13m333I{# {#I$I)IۙV$I$̴EVw{w$Iڮ$IM23I$I$IڶIM23mE$A I13Im$H23I&$ Iж-fm$I$$Ifff{iV[mg&Zk֚$IffffIL$mmq`N233IvvIHvwwe&ank__|秞zIqsyo^&wO;7r9^_xSſx:_#9f'W?v7S}H_8v{?/OM{ٳ'OH$@$H$8rǑdffm$3Ӷm$3333mj{s3ڶm$I$i֚-f&Iۙi $$II$$I23I$i${$I$A$I&ImHҶm$H$ f& &IHI$m$3-bf3H@{&ۢm{IvfIfm$Ifffm$Zt:L$3mm{dfڶm6 7I'ɺtݸx³WqiZӮeWoܳ_~_Kgg߻Ͻv~=У?ַq%ιz?ant7~8n5/z9]I $@$t:8i-ڶ7f-N{oIE۶콓$i$If&޻mۙA[-$IN23m3m$I[$IZ H鄽w$3s^3mgж-m;3IIhIE$IH$I[`$I[$i۶޻-i{o ڶE$m@I${V8L$I&A[`ff˥|^k-жm$qmIF86I۶h M2Mz9_ښgɿ{ǻINg} Ӽp1럞gwȓ79=7z#].s^ ||9ܯwݾ./|N]ܯﹾ_y?XO>$$ 콯r^mg$̴mj6 ж̴M23hhmg&qmg& &mm133$I$ @$3`df3EHE۽7v$I@[I$I$I[ L۶h$@[I$hHIfHI@$mHhm$I[$ImۙAۙivfZm${Zk%A ڶm8$3wm=a:u}e{x'^x@r\fVuoNwk׳<}_'kd2rʵSoz;oovN+g_|x-y#=0o|k]rI~g7׬kOHr\WIIm&޻mIi{dfff `f&I$A$I I$I$IHHIf&IL۶H3{$Ibf&{o$AۙiI A&i3m$ M23HIm$I{53I 03333I$$I6Iw۽7HҶmnn@$I:ۛ^>ܿԳ^ k=zkqzv\wytyr~asoo{_}|g]G/z{.? x?}y77GCoNBFt<^_ryO^/8{XuWͣWWn}ph3}?qz:=%s|oZ+k?o}xo真P>}h$I8qk$HI$I$-ж-M$ 6If& @$I3B콑$ m̠-$@۵VE$h6 d I$A[$A$H$h$I$I$A$Lw$IҶmH$3@$@۶Hq{7" Z3$I$Img&I$3$I[콓f&II3$h gf53m&$INZ 3ɱwSvq_y?7c|-;usgurH%nɑgw}u<;u֞}7᳟7Gy/9Χu<`z:owzq>yO?Oo~l=o,0H$I$IZf53m"I$mmѶZkm۶{{m L۽̬H7m I$I$Im6 $I$жm۶mbf{$3mm@۶@$m۽{vf$A۶I m۶{@۶h$Ivn $Id53H$I$IZmmg&$bfp^k۶mmۢm۶m3sqH233$2Iz=}'|wW}Itz3uM/~t{X>;?޼Kw}룛_ǯjf:yeV8=?~'RŞn//^:[ū7ȓO뽼gXO>ME 8z޻m۶{$H-$6 $I[ mdf$A۶3{#I$IHm۶Mdf$ImۙYkH$ I$h$$IIHҶm$Iڶmm@۽7m$&A[`ffhmv $A`=3IXk$I$IYk%LIdfж{NIfffv{H$k$&Im|zr=Y̋}ۇ=\:K0)9?t<\镽>79!w3'ŗok|t/ޮoUo_k/?7~7+ڣw~+?;O?1m~۟(ӧIH$I$I$m&Irq{om{GۙIIжm$IIfmۙ;I$Iжm۶HIޘ m۶m۶-$idfIf@$II$I$HN23I$IHmIE$hI콱n ڢm۽w[Mv MnHHm&M23@$I{ﶘ$mbfm`dffI Zk N$I$I۽w۽w۶IڶMmqq:NS8$imۮqݓG;ww/{?w}ѷ=}J\{^ȣ˛s/Ƨw9}c7:yK?q쳟?~ߺ9=sz68I_G~t~cN7xԟ>}h$@$8I$I@[${3N23mk7@[$I{$kw$I$ ImdfmIfff6 -HҶL-df I$IIm&$$I۶H{o-mm۶hd6I콓E $Im$I$IfmۙAYk$i6Im " I۽7N̴M23333Ifm۶mqm13@A8$I gffWd^>{_~?~ùSf6`=Kyyͷܞzuαu]o~ßޞ^5ޝy_˗Ϗ>x|I>c7o^oofJH!>} IImm><cvf-f{ I@$3^3L[-jIkm$II" $Idf$A43mZ{'${8pz`ffqvfڶMҶm[INS$k̜(ٹIno^?\OҋOo^X9e/YG]io0<:>f9iw7?_ߵ۵o.+zOgxirwљynn&;Z{%iO$$I{q{o$AۙYk%AۙI{$I6I$I" {'I8Imж-IHmL III$m-3$I$Ihdf$AۙI$I&i۶m$I$iHm[$imdfж{fZ@۶m$콑m[mdf$II$I$I$ImAN$`{M{m&Im$$Ivff3$Lb[7o緿~}/}޾bS z.7o/n8Gě^}ܾW~&r/OMOn0[?v7.=u'Û}#o~o.zr\zDӧO=c}$m$ 03IڮfI$H$H$ $II6I &I6ImII$$A$HL۽w$I&$I$II$ ۶mFhm۶{vv -L $I$$Yk$$-{E$H`fm6 жm$3Lm$H$I$@$It:N'$Ihn;3Id{&iIZ3$$IIY}=?zeݽo={7~~x{tݞ MnwGsݓެv\ws3f~KQ~;y}'^{gaϼ#_|wzqjeӧ$i$mqqqm$@$uIDAT$id}G$m$IIf& hXkm콑$ $i 콑&fhH"$I$@[@$H$ ڢ-03&iIfm E콓$Idf$HI$I$ImIm{#I[өm$mE$I$IH$ ft: Zh{m۶$IH23IZ$i۶\۹{ݳ__ݹ6v 4syh,w/崝3yx_?.?)^=w\w]|2/O{?̹/}t>ݿ:~.ϟ}p'Լ_;nN(>} @$A۶m^m@H$Im133I ̠-$I7fm$IM3d$ dfHҶ-Lmdf$I[h I$ImH$Hw I@$II$3$333 " &{M$3$Iڶ̠- $Xk%{#ImhdffI$IVI$Im۶qZkmV IYkN'`f$i6Ibnnr{zMrp=|柽{㧯a;1Du:N^^=?|'/7/M)Ͽ{?.ͺ{%˵^돿v'zd2ku׏|cnO}y^{x{:K$Iq{o{Ϟ=\.{m㘙&Im۶Mr:H$ufZq13kw[$YkkIfmn$IvfMI{'-f&̴m޻$i۶-mm$A۶mMImmv{vAۙ9cf`fڶM23h${$I`r콑{H7Zmk{H$I{'I{L8f|> I$YkZmޮL{! ڶE98޻{fZIIffff8$i$k-{Zk{&3i.+_x Ϗ7}{y\.ye' *Qh:mN˳ˑӋ/w>?o8h7!RuȓO/^캞<Ѿ'7`NtvN7_>~ϝZӧm Iz^H23Hdf-fffXkE3@{'I23$AIB۶3Iжm۶{$Iڶmmmm@@{$-" ڶmI=333mbImg&I$I$ $ =33?'OB6NhSHŃP"lU@WEUZꓪmVM RSBڢdvxlg<9JH$HE콓{om6 $i Hn6 $A[ $̬$A$f& t:fffvnm13Iڶ{۶IڶMqk${o8{mgeJHһWWNw7_~7CNḵkͮK4ݱo>ĺm\&W7"ܝowݧ빿Z_?ɷw~ʬi칳:]ɑӊԯj&iiZ+ $A$I`=3I콓L۽w$ I[${M23{oHmL3; mIڢmۙi -{oN$H@۶q$Aڶmw$Ip:HE$A$H$H$A$3m$ Iжm̴EN'\.8$w[@mg&; ${k$m&im3 ڶIbf^.$m$I$ {o8mZIvffI"Iɳ|ɿy'y}JPѦחsy+{Dk{Zn۾R{}Kff_휞^~WkAf;Q'm$ f& 6۶Em$@$I$ڶ I 3$$$&i {#I$@۶HqmѶ-$i8L[E${7&i۶m$kqmۮ"IH$ " mq33m[${03$Am $ڢm۶mIm$tJҶ;I36I[IL[$콓޻mImvffff̴M$}Zwo~yG}՛;r:GWWnyrާ.=]izř @xzZ#WZ{f[V_C%a9^B쫿`_I{L{o I۶Xka}̠m$m$@${H {'@m;3{h-m;3I`f۶MF۶mm[`$Iޗ;Z+kI$i$IMҶmm&IE۶mL۶@۶hNd 콓@I"IǁAIn6̴E$"ZkIf333&r$A۶mm۶m$38q3Bqg&I$3suum$3ӶmiN}p>d]q{/[?୻uJզ, |9Nӫ=Žlmg͜ǷO羵G:Nܮ'[M/ok__/b|潳ޙX=$A$I I8{i6I$H6Im@$H$I$ $IM3-$Imn6I$AI$h;33$A[m$I۶ڶm Ǒdfm۶M{'$HҶm$$I$IHM$A$3r ڶMNI033-k$6ZkfHHNI I$H$I[f&I$kZ I88mIqbrgff" ̬ZI$I$-{fϟ9<}s3wr:sz܆VHL"Zǃq=,K级uu؃y|zܟ|Swi͸:ۗ/~8/#pz~sDB`=zI$ff}\.; $3 I3Iж-fI$Im$h$Iڶ]k!IE I$mL۵̴E$Iޘ$ImdfpG; ڶm$mۢ-{fѶmhdf{$I$$A$If3-$ -H$޻IiIF$mILE$v$ " ڶM$I`53If&Zkh{֚Ih۶m۶I{Z+I$3s:Z3ZkL$3IcRv&{w^rn>ջ}Ͽ}o|uy`6[B*G=Wo9?}O>tʜz?3W~t4]ϘeNr֣҄G@$${_.F۶{oH I-{L$Im36IwۙA[$I3$ ZI$Iڢmi$޻m[`H$8&$I3m&$mJ$̴EI$I$3${'MI{ME$mIH$@-03If޻-$337ft:%IIff53333k$m۶E$mZ+I۶I&YkL$kI$I$3I$ ̬$&}&yWW~Eo;̓{=7{r7SMr^|y{g6zhH^.rG۶IfffڶE $ $ I I$333m-ZH3f&I[ &II23IZIڶE$@$I23m$i$IvfHdvm$A[$I23If& 03I3df$Ih$m3nIf-ڶM$$i $$ڶM$Ir$$H$I[$Yka9N@$3$ ̠m{mZm8mjN$ZkfZ3d53IZ3$I$$@m2qy97W_~ůf}~~x>|xssssso+|_׾v>md88Z36 ${m6 ffɓ$Ifffڶmvf$Iw${3Zk$m $@8038cfb ${E$IfffڶE[gIIZI"$A$m{6 `f\.m13k$q`53m&3Ӷ-f&I$k-콓 IIK6Ӹ{M~˿]?w]>syIs;y:o6󩟹WkͷoLff_nٓ3'$imdffff@۽7m$Im[$I6Z m&i$ ڶm$I[ 03h$ &I6 -|>t:%i67ޘ{Ç-я~cK/_|3ooog&|IIN޻-m@۽7IZm-h;3k7$I$I{$I&M$m$m޻-жmI$i6 w$hmmIHj$h bfn۶$I L[ IE[hmfe?{7Www?~&=oV^ǟwsyz8 Ih $9O<\.{8ڮ $qtjmI7m;̴m 3̴M23I\.~w}w>}饗>|xsssuu-I3\.o'>ݿk_t^k!qmvfE۶3v6I۽wwۙIm{'YkL۶Ifq`f\.IZڶE[If&I۽7@[M2337${H23IZm>NhZk! q\.8kw${w@mgf{$k$m̜ۢN$m13I&Yk FDm 'W{|`^r@z=z|>'۷贎].7_m{O>y8w$3I8$Iж̴E${I̠-f-f{f$I${'I6 Ih{}}=3qqssя~?=={cIh{Z {o'>__g}S;N{wۙImHn {Lw$mI"I$IrGۙIm&$hNmL{fIIm$mL$3$IZk%IZkm$qqG[`{o콏hIfmg&I$h6I$̜N$m13I03IIж-IPҾt̝_o|K'o=;ҷ8vn븛 kI{YkM$I$I$A$mg&Im/G>?'>~7{m&I$ `f&YkI${m$tZk%$mL$IMn $Aǁ$II`$Ik$hdf$ ht:NV$h$8w[{=NI8cfNS۶$If$HZkH֚L$IA$I@$@ۛt{ծg{8ɿ\Nm'3Wedǚ<$]mX= I I{r fI`$I{oۢqq8{c}q{rv{qrѶqq/riv>87\k{#/?Gy|w|?]>?NՓ{3OXY*p⪙ /2@8~3s>13Im̴M{oZkZkE$IҶm{$H@۶`h{uuuwwzЇ>g{~t:cfh6 . жImۢ$i{t{fh$_җ??3?/|rN'${'i۶-$Im/q333I;$im۶E۶I$k${Iff$ s$I$Aۙ{cfm۶E$̬$tZ {q{ff&\.{}G۶H$ $$$333Xk%$IM$Hm۶E[m$n.`kw߼m IHvvJm[$I콁hж-m$hv $Ai;3{o m" IۙIN8L$6I${m$@ Iw[$Ivf$I$3h$ I۶{o-F$ \=ͻϽ^?Oyk @^~e "߾\.Iw$$mg}tZk|NM-6 `fhHh777osϽm"{m8~7_yyW_{7||>~=}{=zs=3 {cfh $y?W_}өm[I"I[$A[6 h$ImH I۽7 Imm[$I@$Im[ $mۢ-"I[mZ mIHmmm[T7<| _|}gp_>}u /2hr[O>=Ϙ`fL{}oooO{$I-$@[@@[@h6 d}\/<8cImk_>OӟgկO<988ڞNZg:N/?{nnnH8f&;q/k63kw$I I۶H-@[$m-$mM23hmm$I{oHhm$IH$h f-mmIn dx.䕯}ҫGG_i* /2Im\.oӧO13{$In;33>?>mg&rIm$$Eb8ԟK/N${]kM6kkk'~~z뭽IZ36`{8Mz;K/}w}/я~}/8k|$I|qI&i-&޻--Hh$&A[$@${A[IڶE[$03{I3@$@[$IIbH$ڶM-m 3]˃u~ͧSfe= ֣GI$I$ $I$@$Yk%9|>_.3Ӷmmg& {?3?Z  I I$I I$I$I$IhZrOOK$A$I_җ~~O?_ů~9Zt:ZImZku:ݽ+Wo~{Zt:Z+̴{? m$ $I$ $$$IH$I$I$mH@$$ $$$ `&٧/wړ^ܵ{wѣG$I$r\.˥-HInoo>ǑH6 $$@[ P9Mngoܻ?'o^Ys zI$q\.7$I$h$Xk p:̟3?c?w8w9#Z+?~{f]km$3${9Nqo?/z׻affffb8|w|[oOt:IHm {'Mzp:qrܯ?3繿=fX= $$r9-ж mvf$O/x>O .ZkoOO/Ǐonn.Kmg{f$r NSۙ'OoƧ??xss{Mm8>||^g>j $ m$$IfI$ &>֩tW=s{=wD=z@@$m\.em$703777IImmg3+mMrGk}soo}{{{\&Im&IIHmq${{NO~}Cz׻HrG${ >>^{ I[f&I$IH$ $Im&A[Lۙ{'IN23$i Hh II- mH$ {k$I$ $Ah۶m[ HK>yໞsnsu6kz$hq8$IڮoƗ~df" }﻾_h $Iw mm{oI$i̠-m@; $A[ $IA$I" @ I$I`ݶmIж-IH@twmkwGnzo|ǻn۞;Z׺ዯ}33mZIڶmvfڶH}rL}gffffff̴̠}fڶm;3mL۶mѶ-$Ihmh6I۶I6 @ $ IIIж-Zk-Mm$mI XZ{Wo^wÏ|$˓۫c/II$m̴mZk̜N$IE۶333mѶm۶mghi۶m۶'Aff۶wyO?~}߶ '}sO|qp\fm۶m@۶mmڶm I$AяK3dfC}ߓ\]]/| 777%ɾm۶m m۶m Hmv}}}fڞ}gff}?333<3IIff}f}ovfڶmmLۙi;33vfڶm۶mۙmIIMI&Ykm6IIHJh۶m$mImuq\~7ї7Yhl/2@I{mkgyII033{$ж-$I$$?rZkZkfWw?x\$ @$Iжm۶m$I$I$v$Im=~^xas='?c۶ I Xk%IڶL}gff&}q\frv\.e}ffffڶm۶m۶3mgmۙi۶m6I۶IHIZH$$I$IڶE$A$m$I&Im&A:wϽOzu<]?7w7~~Uwy9je$W^y%I IELۙrMmg^:NInۆ}ߑ3m̴I $I333k;O_+t:%Yk!IIr{{_vfZh{8iڶ-I[ I$$ I$I$I I$hlۆ$m|>?]__EIZ}~x<IdHp8 IM$YkZk$h mm۶\.L3;>3Iefmdf}$I3333$ٶ- $mIIImC$k$Iжm۶̴M$IڶE`vf@JeNpN߾=ܝwG伯W^@$h;3L۶HJr޽^xaV[k}g-$ $I$II`mI}饗/ -ff۶///%AXkLmJ$IIm$Zm6 .˗|c۶-ɾXkÇ7_Z+I$II$ٶ @۶Id۶p<x_.mx}gff`iv{۶{efZp8lv<߿mےL@Imdh $h m;3H̾h,39?Wmz76W^yH}f"I$mնmk- IfZ+ $k$k$H$ @$idC?|rl۶֚~8^{__g>3Ϝ$Xk%II&YkڶM$I$$ Hж՛oo?sϵMm}Oz׻O+_ʶmmmh$mbB$IIAmN{Nt:m}o{\}u}ߓ IۙIffffff̾'|>۞N?x޽{x<$ٶ-@[ I[@$I$A[H-ڶ]kI|ep:/y'o}>Ó׏^yI̾˥m[$Ip8N锤m$i$IM$I$Ivu{{S?SO}߷m}$I$K/DۙI$I "I$A$II6ImIft:}߷m{מ}c۶].v?om[I $I$I$ Zkhdfڶffu<onnömm>3I6 fm>3h333ݶ?N$A۵ֶmI-I6 &ڶ$A[E$h $ivfIZ޿wZwxgO#y[+mZh{\.˾3$Im;N* $=I$@$h۶m$HI6 pwwK/^|řiB۶۶o?G;p8`fڢ-&I$II" I-$@mmþ_׾}o۵ZkwZoq<$IJ$kfk$m۶m۶m$m3d۶VImۮonnvZ mLжmp}}{NVk$m&IIH@$$Hdvf$ffI`۶$Hen]OGO?׾oK^y$I$m$A{fx<޿۶۶fff$&IҶm[`Jm$k$h;3۶www??_\.۶am۶۶! m$I۶%A$Hd3$I$m$Ykaf$$i I$I-`'6 y{~ww}}̬mZk-$$I$Imڢ-$Im۶mZIڶx<޻wt:j{۶333mbfmxyx\k-$I$Iڶm hhH@$I$I03m&iI$$Ykm۶m[`ն-$k$t8ه/[c#/i_>^6wvW^yHhvfmpsss}}Z@ۙiZI$I$$kXkG>3s8~7~Vk$m@[M$m@$I$IZm$Io~#?x\ZIZZ kv>dfJ" HMt:\__83mp޽<3777mZI$ I$$@$@Hm$m$A۶$6 PŠaۖ\]?Ǐ/|[}|e|<7=NW^y@[HXk̬fIZ>wx\kI333۶mv۶$@V$I$A ž/_]]%A$Xk?'䓟U$I$hB[$ImHm&I@$I$I$I$IHHo^__xL6IۙYk=s+o} H@$" ڶmmgfflv<Oݻw}}}sss}}}$m$ h $I$H-h`fZIڶ$I`@۶@Js8onnyvfs۵ڶM$ ڶEhp8OO<|{}s뿾m۾m$Yk%I$I$m۶E[-@۶3Ӷ<}'>Ϭf3Zk}g|f~\Z Zkf}$t:]__߻wmC[m"Z+ @$\.3333Ӷ-HδEVHXZֲXж-ڶm ڶ]k-Zmgm۶m۶M$I[$i?9]߻L|}}_wi O I$IH$Iruuu}}ڶr޶-|N¾m$Immm&ٶmfK13ڮz__=ϗembh h;33Ӷ-$ж-$A[ڶm۶m[kZkZkm- /+kIж-$ Ip8Ifm۶m۶KDf/44:}n=~GQΓ>زkJ`ILm+R)$ m-@۵Z+IۙIm-$Yk%imۢ-dp>]y{}=\ﮞG$T}_k%I$HXkarYk].ON' ɾLII$ڶE]kHmz;|p8}E[$AV۶k-H̴MJ23@$mm&A$i .˶m۶}__|1I$Hw]?=IfIb$ f$A[$I ڶm۶-Zvd퇜nr}Z|蜷^ɋOzGW=>|ͷyr:a;4:!kNzw>eK񰙶mk-Zmڶm6 ZmZ`fm I۵V۵V$ ڮ}oIRۺ$3|+/]?|wO{Ww$OEMXk43www3$IE$hI I038ûmO|wp$9333m&$m$I$ & IE[m43mxO}S??-ֺ\.~?/pض m۶MI- I[hNW^ޣǷ~=x`Iжm۵hHm0~;O^zo~O~O^y]ϼ㍻nxZy?M[=9?w}߿7/_x_}N~p9ӕGtNDh HҶ-ڢ-&A@۶mE$hmmېd۶$YI6 y3yW?myq߭^O6 $IIm۶ HڶEM$ Iۻg}(m۶?o|x<$ɾI- .˶mI h$ Hr\d۶~~G~IfI==/W}Z@[h $A[ x+gؓ}.]79::<^kp'??͟3W_~'>{S}۟?77ϟol @$@[I$mE۶H֚V[$I@}Uh{_W?j`{嗓$I$ $A[žIZk;Zk$HI$}ǙٶmkO~_3m$$A 6Ih$hVH$ H$I$I$kI??3B}gͿ7_nnnf&I$I-@DۈHwn=?G}/o}A+Oe{i7vJ"Yɓvmu%-籟һy_3x7ot;=rlے(iQ-h$I۶HHdf$m m$3V[m$k$kx8َ۝;oϿw?yK7H-m$9\.Mmg& ڶEh$I[@[MHI}>p޽6I^{뭷߿Zk@$HkmI$II I[mHI$Ykp8~D[I޿_ܶ-$@[HH+4 ڌs>;SּyvoueikjE7s4']{n9vm2o?:w^o?{g& ڮlۆ$k-m$$h $k-Lmے|F-m\._җZm H$H $m"II" " f$ mgfmg&I[/LkЇ>t8f&Ih I-Mm۵V[Z X}rƾerwt;=}cW~ൺz ;9Vr\V[2J;4a:{dvk?S[f.9g֩ysϽ%cYu~z%`f$@ff$H$333033#Im&imڶ]kmm&9q533$I۶+I\ۛ_/v9ۯ:hٶ 36Im"I۶$kmېd$ Zr`m[`fj $i@`flK/akI;k$I mm$kmkid Imo>z&I$H^zZ @HIh Qt:/fϮ<5OY s9O7<=A7- \v=:v.ON8a.xko'u7{OW/r$- I$m" " $I$A[&lvdhY>X3?||ݓ]{lpimmm[ Z m}m;3H23mJm$$^@[̼IڶMڶE$XkL[Lh M֚Yk%io|$g}6I[6Uu_WE~75e[kNNn|k_;~ͫݩLmW^孫\[<]rxz/~ݿ:fWTm&Iv$km&A[m۶I@$HIضm$-ږ4췾_û'jwygK |Nd6 ڶEI$ IL$IҶZkw$Yk̾I$IIm$ m{H}ooo$V@۶m$@[mmIm$IM$IڶIvOҶm- R4ww?sxo~{^̗>:ڽ=̾m`fZm@$mMHmIZkm-H6I EH.m}ߓ$H@-&i$I[$i6I$HҶm-6I۵b53mZZ m" E$\.@ \]]@۶m6I@$mMT'rX$-׶SO_]/O^[tߎ΅ӞwnSWO}=}.]lssIbzՏ~O_}=W|nzls/{\&k_UP(hAdN?ϿkGNGܿ7'u7\}__;9?s\7ǣKvն3-mm3Ӷ-&I6 H$۶Zk$h$m$k;AJ{`_||-3Kq?.Ommm$@E$mmv`S ۶]]]"ImZhIڢm$Ihm&E$-Zk$h $IAmO~u~uszzOAdq1*e@]d&+ƍ&M 1hlq3q ˒$x3b1So`ajm{i{n^-&yi۶mIh mqIW<|^_x;\>ux+o'wKOyݞ=ndo;ro>_M~co~CJ={xr:swy/|ߣW_{Om=}EmH23m۶=hhh;3m$II$IvmL$mm3@".pxss}'z}v˓^$mh I[$@$h6 hdfvh$$mI-k! m/IH$-ڶ6I[@$m$IҶm$@[$6I۶3I$Im^m |+_]I"I[IHz}=|'O ۞$f_=WϽ7;]Ó䖹qΞ5ɗǿw?|^~5;YyO}w9 $Ahh{$Iffw13$$I{\v]$@$03mۂ2o;u;>ٯ? ~ޞnvw$h -m[m$Imyh n[ I-җ;vM;p_WO>g\͙{<˺{[}=:={#zGFDv$Imݶq$imnݶmI$Irq3mh6 @2. }{}_yxmy۶m۶<{g[=ϳ&۶m[ I۶mѶm۶fm$IIffffffmwm[I$I3f^/R$Hmvwۢmۙ I۶In7I$i۶m۶hy" $A[Lmwm[$I$IpG~"I۶ڶEMIHڶ-$@rwO/={w/oEse̚;O^8~_}oCsìcem$qN{t>g?Ǟsg#/Nepv-n$I`wwhhmn=I$ 333mgff6I@$Ifff̜繻Jn(ϼG|qymmwm۶mwwwmh۶m[m 3m$I$Imm$q`wHHӟ4Idwmh6 H23hmm[Im жmm$3h۶-&_|3A|39sfڶm$ж-̞8~?]۝)gq>y>^ׯ[݇HnIޜ7$(I\l5e.^~o|gw90O⶗88}}go>GO<@۶HHm&iymImr$Idf1ϒSy>ofK_vyz fybfڶm$h$HI6 @[@$mIIm$ $y'Iykkۢm$ m$ivf$m$$̴]$}{}$;3Ho$-Hp<;_jdBSso?[W/!A!Pu\K羺w}xاz؇2g>?m=swѶ-ж-ڶ]n=vn۶h m۶m۶mm$=sw&9# ^_bw&i;3G>! ڶmۢ-h-f6Iyy3sGж'?ɗ_~z牶H$j/;?/K_70雗|?swOnY4ql6qg/?wσ]w;|?}o}WGGC6 жm[EIh3vw۶m@@$IH$IIBλ>}-33<&A۶Immvwwwwwm۶mжm۶mݶm$I@$hz}W~ m=>k]ڢm۶mۢm۶HI`wwww$ڶE$I$ivwgC}8O_k$m-@[h۶mm.}Gߜg9^$rןO^s== @=><'˳G/ċC󨕳3؛ |{Ӷm۶m$Immdff&Imw.f8h mE$ml}~q={kMx sn'O "I۶IvIdf$I$" I$IҶm{tKf죿5Ͽpg<W'w_dW/yGO.$溇sѵ{_}[o>~<_ڗl|Cܯ$A.hh$Iۙg<# 033<6I`fm drŅ'xڶ.۶m$m;3Iݶy.vwwwww&E۶mhH23q$HH I$='?ꫯ@|w~wwwI $i$fm$I$n/w|w_'?{nw$ ж-@k2Ivwqy{x2p{ͻ=ˣs}ՇuR4 +5t7sK<љf=>z;?}ryնm۶mm133m$@i{g=9Mя~4@$I"IE$I Im۶mmIжm۶m}웿mۿۿqvf-mmWDrog~C|+ge^yr/jZf/L_wyy=<;rww}.Om۶m۶m$I$i6I۶h8iyfffж-$vm$I$I$I$ Вffyvw۶mm$ vh M$I$I3333$I$Im۶ڶh8y~~ =m.I$IH23IvwhmwwwmqK/M?/~_{qV7@vn͝:~=[nrM+9λ?ʇ޶$3 Immmw-f8mH23333qL۶mۢm[<<<K_//qmL@[$II $MI]CK֝q}=O7O h M#I?yמMq_?o}sV۶mwh۶m=ϳ-E$I3I$333q$m$I$IL8f3sy8dw]36qm] 13m$^˥mI@$hvwl{$98I$I$Im۶I㘙$W^_.v8sfwm].fH23I.bf$I23@۶h6 жm۶mdfH8cf"I>|w}zڞ__>rIHH@m۶m۶ڶ-#fgs·~ͯmggn^{]|p=I mmw<9mo\7]O~+_~xrp>}zwwO|_q^$iq{{?ynA۶A$I㘙$h۶m[-mm۶m[$~3OOݶ$noc^.$ mHm$I6Imgmwwwg8$m"IE[ 03Iqz]O?w<ϙEO~zǑ$ hIM23@$a?#_z}?[3DZw y<yþ٭?5=9-vm m[Ǔ[q|E.weޝKι$ $ m<ϳm<󜙙A[$IrqH I-$A$Im۶mwwwm;qqr^qm۶h6̠-ڢ-6I=ϳq/ /dw@[`fHҶm۶$3sG$6z\.m۶=sw_{}.m$?~mIz^יI$]333I$zMdfffwg83G|̜q/_^mhmL$@۶mTa׻^ׯqtYh H$@۶Iv`hHԯso{8$6qqm咤m8 $i$Im۶$I2388mH$ h۶?q6ImE[$A۶I<8$Im$Hdw///O$Ǒm$I3?r\$3ݽnmw@$I&A$m۶$ݶm۶mr^8ϳcO?c8y?yh$Iж-ڶMڶJ<o;[62@۶m維nFSI)o;/_iH23I$ݶmw3$I"I$h @[ڶm۶mm۶-m13If&I۶Im E;3?\.y= @ݶmI8I@$I$n?y&i6w~臾{88v3hmwI $]$ݶh m۶mdfp&<۞ٶ?<϶m&\.w}뭷ڶ@$I$m۶vmm هk,H5C'@m۶Um7T 7tI333IvffmbwݶI fh ۶m۶m۶m۶m[.$If88L$I IE[`fr\.i$I$qvwl E}zg9cww7 $.pg[m&9#I۶IHn<^.ٳ??% IW7${vm۶@۶m$IH$II$IH-=ᲽiW)"s}rkQOlm6I$AL$m4"oå99һ#?#/r^ݙImwyIf& ڶm $A$hIn8.믿~? ?#?k]Mmm.h Im$ɳ+Oo8{Σ'lI$IVv^ypܮY)W~W߸&O۶<$3s'8n7fvf&A$H-<{~ϻO^W /~W^\. qE I$@=ϳmm۶m$I$ mgfwn{_/yr?W_ٟǏE$ I$I$I$H䦗mxO$\?W\/wkG-m Iw?|cpdx˗m<ϙ033s$Idff& f8I23Hy`fM'߃0|Yk[:l|2ca4&0G1= !)&3I&'i8&vNK`AHByKڧ}z]mZhA[ I$IݻwI$I۶̶m۶%I-NͶmIH03k8ZIf&qkmNӶmIHmDZ:Z ZHW~W/~˷|3777Iq@qmHfmZm$i{uuu?G雾i3@m>?'~|%&Im$AImgm[$I$I$Ih@@Kꛞ|篽q'~tmIh$A2zS.Wq;7kCOIB$m$$I$I$ٶm۶$Iڶ]kE$LhdfI$I$v=Ifmg& $̬̜N$m"m۵V[qI}ڶM$ mZk8Zq]kbf&Z8>O|K_u=Sq$IImKr\~oooG}3yaL$@$kZk%$m$AG]]]#SODZmf&I`53̟3??}:㘙Ifm" @Lm13IZm۶m Oq>mPHΝ_?qŚ#mv&f{ůSηmG-f&I[ vfж-Im۶mf03I@k33$ &Z+̠-f&I$I$7m۶M23IIdfmKrG뛛$m$ m۶Im|>ݶrzw$A$ImZmqZZ &Imm[k?_oWUk-E$mMoO~z׻^>~xf6 mKrm{| //})`$3Zk\.ض 8̬Hr{{{\noo7?ws۶Vi;3۶8}'>$9c۶8f&I ɶmH@H$m$@zk˾f/7|vvnV_z>g{IHn+qlN7q0W'5qݞ&ڶZ m&A$@$3$l۶{$IZ@$h;33$IHI " mIj$m&i{qINtڶm$mZ36IۙA8@۶ֺ\.q ZIII=cfNS{?w}w]k%Z3m[[盛]O~~C/ֺ\.kmے$l6Z x>ӿmt:8I\.۶N__O/O;wlv\ffu\NE۶I&A۶hжm$Xk%IZ I`6 }?g˺l|;߹#v Hm۶mڶ8S_h,dzZ>^s7{ױ j6I[Mm۶k$IdfLm۶k$3-L-HH$vb-M23۶L۵-ڶ̴mJ$t-I88.Z mm&Am[qmk|>?/_'~ oxC|uu6vf8$޽{_җ/|_|gN~gy_7կ~k8ZIL8p̣GNӶmW|>ޞNmg8mۀm}Z k$3mmm@[mMV]'Ͽӳ_3rqd˱_f/ I襜mۮ<}3sxY85Oz}ϴm$ڶ$I$$I6 Mm$@3@$Im$6 J23۶%Im;3I@$Yk&}ߓm$Ihvu\s[-h$$V}g׏=JOݻw?+?~uuvd53k-Lm㘙ql׾}-mZ۶ ZmZI$9#|t:NǏo۶Ç޽;33-ڮڶݶ-$A۶I@m$i6I`$IЊl7.S}w̗eu[˜W|=-ۗq>4T If&Zbin {y'LW/.Ǒӧԙ՗Ym$ EV$If&I$I m$m۶m I۶HI$AIlo|$m3mL$I$ H23IZq\.8ff۶$q̣G̴$"Z+I6 `֚3m$mbf{t:cfNg?ٿ{ի^־IfI$I$ImKҶZZ8ZkvHm$I$IIm$im[OO?>m۶m;'Yk6IVm" E۵VmgmmZIf8$$mѶm[$A$3$I$IPԉnrnr3oz}\.ٳmn~y=|s}?qWWWk8nnn$h̴&"I-ZIhZ̜ ɗpy.l\N'~W/\.ڶrI23mE۶|>ZHmnvfm۶EINӾt:XkNw7omkgg~#ȃmff۶$mg8II&A$IZI&IҶ-$HVۙImL۶If5}˗Ŀ3G|{t;83?~yYsytsyb@E$k|}?]ؗ9g7oz;"GW$iH$$Hd۶m HIjڶ m"$I{HH$Ir\.k-$ٶm۶YkamghZk].$I&Immk6Ip:\]]<~ǯoM޿ww߻wo6EZ 3_|ŗ^zrNU۵Vۙi$i$Z+̴E[Z I I $IxWy׍kZr\Zw={ush HL\?^/[ϿW[[O,X?m_W7ws_=./ɦ&Imۙi$Idf}=II`fmA۶mqIݻ$$ 8cu\ml 03mZ8i m$3֚`ڶ-|;wk-L$m$j۶-$I$I$Ifffffffffffff&I$Imۮ Z+I333mn~w|ogW}-NZ3HJm۶Id$I$mm$$IIIڮfZF/<Ӽ{ru~i]=Vgl^W/<'_|գ>XlMPHH23I@8ۓă?i]ɾyWmY]IbfǑdf Lmېjh$ Zk-$I$h{qmkmڶMm$IDZj{\.Zk}ߓжZ|> .`ն-m;#Zk۶$I}_kmo{|;7m$ Ǒ$I[$9#Imے8/g?/}K/W^zÇgc=~ hI@k_7ɹy]z|}_~:|ܿ_}>'NJ23m/K۶m۶ I$k-l۶{$I}}fZh$I۵Z+ ڶǏ?~| m۶-ɶmI@$8¾3$ HҶm|>ޮZI^.$If&I8m[k8v7 w;9IfmZk$?g?>}+_\.kG].Zk8ֶmm^__N$i׼5]w޳>׿q$3|ܻwOOտW?϶IrǶm@mۙYkL۶IE$@$oxٿ֯;ˎ=;]˴;/㻿w?k?ś'9s;@j]y>~K;/%Z_^k^ZO+緻]Mvm۾XkmZkI$m̬LImۮ&Ivvնt8I333H}/ڮ.rrt:N|\.m$Ykmm6tZk||oqe۶mۀ$pG~K_gO?я~cg>/v۶$md۶i֚Mr\ff۶rmIZ3;zꩯگ}~WIVmk-$id}c??S?Sqܽ{r`fZ3$I[DZm13m" @$m&IJIp̴MY\];OW/oW\^>.pz|'/WO>go裯ݏP&Anǣ'7?}zvqѾ|C«ye愶hB8mmmt۶-6Ik ZkgZkk-L43mg&I3$I$IZrM23k<|w޽stJ@[lvǃ. k$mۮfml63r=}|+ZIZIIE~__>O}Sg=lۆVۙf&qql3sm}߶-NtZq33ϼ}{_V$&qql63IwiIH$r$m6 I "Imm$9cfձvyӣӃ˝o~/n9hwf//܃'?f0wMLr{\7ׯ{=|w??> M23Hm13I.G>K/W?=rI$kV[̠m$mZmjIft:Nm۶m۶mfff6Zkdffff=zCo~?}׽u۶Z3i;33m[կo7ſ777۶ݶ8\]]].$I$$I&E$$ vffMmw6/=7ͳ~|utd-\/|[7]~W=ytzuSWs&+|dIbj0fy:W'<ޞ~;xݗ}<ڜ̖=\N/[?Z- Lm$h;339N3"qIEkV[$$Iv53Xkm6 ڢm޽{Zk8fffInnnm$Hk[$i ?޶ \.y۶O}{߶m Imض~~ۿ:3۶q=:m$ $ڮ&I8}f}:No63۶ @$i֚\.<|ӟ//G?ћgyΝ;mZkA$m$imۻ=m?}ooo}I$i$$ жmm$HI"m׺Dfz޷/Sr׻k_Ro&Gvwm[/;ޞw6˓++ke;*L^9vZum帜U7/{;t۫k=ڜeݥ/\=v|99;$ I$H23I&I333۶%mgk$$m" Zm$6IhH23XkDZݻwI888m333IffA$IIfr޶E$mۢ9ɶm?~k^7k$I&$XkDZ<|~~G~/ſ?>f&q?xѣG3$IfmѶ-ZkV۶k$NmN̴MH23I|N8ff$/?'gg?׽f۶6I$f|>uogy藿}߷mmж-$&Im$h $Yk! ۶HIffYr>?}W\}ۼs~cy_O_wg_rϿ8/>zp<^}x6'[ë'nXyxs>-oyS9Ϻo=޷]s2/syo^fv.KZk-Em6$Im۾IIf&Z-ڶ]k!I8Lm۰V۶hvwHk8nooh;33m۶mH-Z=\.kh6 m^kݿ۾?kfM$@8ѣ__Ї>t{{m[$@/8ZkjXkmt:}߶mfmKIIm8\.kmێH23I?~}?_]]sNm13m`oo|~ _|ruudնm$h$$$XkM$ $ivf`ffin3Wk{}_5^yQg+sJqtv7^[&{:dnm=^ֿ~_>k^><}+_~^d=]ڭZm3$I$3l۶$m$Yk%Ih۶m۶ ff6 mZH }{ֺ\.qǑd۶}߷mKҶm/Zk6$Yk$9k~oۏHvf03Z 3s\>O~3Zk%ǁmێx饗>|"I۶۶Z36$}m۶mKض e$I$hk-\.mDZZ ۶ݶ|>c5_5{>=d6q$I'??yq3mHv$ 3-&ڶ=N8۶ ffVَr絗['=vs=nyMMv=_񫧗\ϼs_yɫ\_z'_qU/;k^;7#۲7٬n&ʦۥw~W<]-yx^w^ݞN6B[m$۶L$8>3 Zkfp\l۶\.q- ضmB۵Z-fH$ImZk۶a۶$IBH̴Ç&i{Gi{tZk~|+ZIIVS?S__\.WWWm&iÇ_~jI88mK3tm[$m-ڮ Zm咤-qG3;ڮfѣG-oy23h;3I̬m{_ }OǏ$rٶmIZk6E[m}ovfڶMbrlO ys_/Aa"޴g9:k2E̝ulzs\5[mqK['8Ϻf+Zú?l۶mۗ}C'xo~mHA;w|7~+^~?n;3IH۶$i;3m@۶mmZH$moq\j%\]w[wzy{a^=ؒ$ڬ5ӣv~nm͖ld[$mgՇ?~/?sw=\r>y{۵ڢm۶I$= fm̾۶@Iڮ$Zm۶mZ۶L$@$@$h;3I"v="̴- ry|\.hmۮ|~k^?>mk$\.۶m/|G~GGZ۶=mdi{>?~|\ZmgI$43\__o۶m۾@$@HZ Xk].rrq03IkI|>ӟ_^xo~+_JMd[gGݿѣGq޶-fm۶6 I$I$Y3u٬69s{qùo~oo/˱]t*3FVnrel+D~zίw~} _>׭umGvU3Z 3Hm̾۶m$@[$I.Km}OI$m$۽{IH$ 03If&I۵V[8Vm׽o|mq`6$9cfZ׼5Ї{$3m$i$mm$mE[icmtbt<|y/_uO^}tm{r DZkGRm;gk\Pm{ŝ׼k^xn^~Z}؞ZG۶Ivf̾hm۾IIHh{l6I[M$H$ L۶H23۽{H$ vfh$mZ hIrmmg& e۟O|#ٶ8i63r36I$3___3dfI$ڶmvuZkZkZk-&$m۶Mm[$INqi6 |}?sk޶Wqp$!%Li4-P!FjN5tJZJA% F30# Z4rq`;81>\WZ?O~#U53U53I䛿쫯ѣ}onn㘙$3IIfITUw# Rbqyq _ڇ?娬e.=P9VjjuM@2zv:.ozӼ_9޼\.ݍ$$?$U53]U9N__/}K۶afZIPU3\k8*Iֶmk|޶mUUIPUUI$ >8nt7`3m[UuTU$k$IqkmZ_~_>^x@NRU|y{>777ef$I23I03IZq$IIZ*$ӓ)_/=˿z]^זuWl^ 31#*,69m_<;^{zꓛןv7zv)YR3c M߯z^>mm{mo_0ݨLIr>J23III$* }I$U$ dfPUIf& 3`fOg8$U53033$*t7 3ݨ$I03k?oN$=3kd۶3^;#ɶmo۶; I$IfU53 $Ol:T?\y7뺻߯zzuU9O_7gowy|u;e˥Nms=zdu؎˚>J\Oեnmu~77yᵯ>Qu٪:9WutN.Vm50777Hq$AAUqqwwULwt:U13qT|w~'03'OcfqI㘙^k$I$$IRU333Hj>c6LL8_?#?Z8m}GUuw$UFUafH+Oh[UKwhOw֣l6`X3fNyr~^_z/qg}7z޸ʛx.u:Ycs3HO:ݞG_x[={syo7=>gMs?ײ?o;z]UGyu~p=cff&ɶmk$۶mVUIm;NI* 8>8UI233 `f{f IA3SU<_/;ί_kL$Uu^O>8~g~\m}_k333$IAc=<=:[So?> ϧ7&'? ͇|b~3~+o޺>9o9նժ9mUʩf(:׼~~l}sGO|+=y->xt3a9αgU6] ;'^{s]ceqNnLkmZ`ff&IUI`ff$UUUId{}ߟ>}z}GU?'}z>:#?#ks=}t: $3s\. $Ykm۶m|>ϧi۶B`ff3DZqLtww# J`fUUU$I$I̶mkW^y/I}̬.Z~?VwN8fff03ݽmZffffU:?'U==қ_}|~]^Wx#tWOyO~? >T9oLâsǚGXz+Sɖ,7K|빏}OsS/|sO}3<ͼQ'NQq28~1$=اNIN|N`f03q IIRUfIRUI$mkY?03 Iw~^}ON}??wkfmn`fTݏ?/8$q]UUmtڶmI*I$$^333H23ItTU$fff$L$H$q>}yW>򑏼303I}߶-|˷oƧ>|}ffH$*&DTztwoп_X?^c ̄O?''>+f[8ozgsiuvͬYy󗷛u={p㡛k_on=373sԚm:WǥGuWu̩zl}k͹]U>nrSW?~z?:K_Mc;,#__Ƽ^/ qt-NL`f*̠$ILwc֪$mے ff=~03I ;Z/q3SU8Z/`w'LwW??8$f&I$3{wo۶Zkm۶mZk۶Z H$I$3>3Uڶ-IVDZ֚I$U$HRU3$Iw|__x;~jff}w=s??ɓ$qNmېdf*qUv:fzܚJF7nO_󫿹o&ۇÞ HI8cf۶NJgf=~$̠03}^}?zvw\.N?t:LU! fffm??L IA\.Uu:jZk%I$IU$}ߏֶmU$UUUU333ITUwwww'Ig+/q$8Z|7|Ûo?=I$$$q~tyz}+kk'G23[*.oK_o/qs͸\ӹg=IUUU$H23qtHB$I$a q^5ۣ|;?u:tJHX?$033}}?cN}Or?O^|m*$Yk}3|x}f{۶m۶m[km۶֪JRUI$$}GwINS*$I HdffItwwZIf& 03IZU/}۷l63*>/'>\UH23q r{~o+{#AQ#9.{~?~Gه}379Θ=qIZI $q=3H$I$IIߛ>?ٯ??W_xwt'zU>k?yf~w_|j{fsr}#SATUw$$@$9N777U ITUUǏ fffw7Hm[ww̼=;;㨪F\m>ȏG>G! {8m;Ud۶JRUI$I$AzǑ$YkI$̠H$$ IU@ZU53333IItwX_I2]/כ۪u}J$uf I$I$A`xdMFu?u~_~s{o2J:\{^=Qֹ]4$IrǾIfI$AIZUdff&I$Ac̠fzv7$^3󶷽O?GnT$կ~GG?=|rNSw$Awwwm۶m$k$UUUI$I$@wwwwwwww$L$FUafTUU $H$3333$IU%AwwI e۶O}S_>zM$Uq|}|#wwwUdfjf03Xku<9{7k.&ڪV_O/WW>^kz[gǕ{]Mzm۶-I$I $UA$I$I$L_w{ͪl)Wn~ۧ?{}RunVqFO_u_ӯ|ߞzI }?fUI U֪*$Ǐ03tqݝdZk%IOɇ~:Nֺ\.տ7ZZ333IIfg&IUU$I$H23$LwDZ;gqH333I`f$I {f㘙$k-$UUUU@$Kt:{۶$3$IU%'~W~eQUHRU\udԓie]Nf:噿߿~tV׬]徯Wj߯4ddJ$H@U%I$*yS9*wT^_? suלNq~v?nǛ|˷/qSfajcLWU$}߻f&IU%AV$I03H?~ 03338}twwS$*L$mۀ$@$$I 033q dBJ$ `f$I3sDZ{wǑddf\.Ifffpq twwwwwZ q*$I$ $ILw#ɶmI//[雾$03/+_$Uݨ\mW=/q:w:]߼?g|ٱ?zȱOww_#KNӶm۶ II$IUfzz?Vd-Um=9x:[ϥm^~n}z173ZսW T.$VIfH2333 In mCU[ֿGI23I$I֯ʯ||> `ff3$I$$k$I $Lw_.:3UI]UI; fff$I$A$ILw'ZkZkf3ݨmے`ffk{{wk$q {_I.|8{fZ[:{ΗcfO7wI>y}iœzk/W>ts}'kfz^U3t7TU$AtT`=~`fffffff033$AU/?ۿzN$}Z8m$k-$3tt 03$U$I$U$f& 03ݍLwLwwtqݍYk%@$333@$AULw3]UU533333SU333U333I*$9c۶|;ۿ Z 3Ͼmo'O$JZ Mm}޻o[ϯ]zxw9.]NoRZkmv:NӶmIZU I$@ IH23q13U$3UUUqI333Iŗ{׿wm3z5U}=xfw_y~sw˱5j1`8@$@IZIqqqqDZ?~ LUuTUUuqH$$Ic쏝N^kaf ۶}Ͽ+ө 333333=3333333333q$IH tLw3$3333uw֚$3Udff&IfH233ݝI$twdfU$3`۶__ί$]UHr^?~Ƿm;cfYuݯO4O:}nnu_rlk߯o~Zk۶Jڶt:Nm۪*IUUZ$A qz\.H3SUIt:Uff& f3ܳ=|3}J}ۏ^z;%`'ۼm󩯼S۶s)#$8# k$*$ 3333Y?`f I$qݝt:u7kqN}߫jf$y_K?S?u>$3ݘVYkaf H23If& {N233$ {f}n`f$@$IfHIIHRUI$ df$AUU ɶm_WxHRU3SUIݷ>OOUqcDcl}=~ӷg|~NqUn=CrNm|޶m۶$HRUIf&I$AI $}/˾ݍ$UUUI8N۶Ut13IfCq$`f033$I23ݽZk Z3$I03H23ItwULwwTffff8>cf̾Xk%n$Ig$IH I$3Zkaffn ֧>}zǶm3T^zZݝ$ Hm*9I]_ӷnO}uힹƵVuڶmZk۶֪$`fdf$I23H$$3$Aw_8TնmI*`fj~3IG4sԗ޼|ϯz4t Rd>/=rwS L>33SU8cf$Yk%AU%AfZX~`ff&IL$AmNSUt:?C? u3>'>}ߑLw# fZIHmt7* 3$If&t7pqILw}Gw ffffITfff`f03*`f$I t7jf$U$ TӧO??^$$Ç??[ot:UR 3Z7&H$ٶ|Zk[kNH I$$U53H$ Iz^.8PUIm;I* $ITնmI}߶g}A&ɜ:g_wÓuZ姟If&IwA ZkTUZkfֻn$3333$ fI$Im9çiN23U_{mVU=3I$`f$U$ITUAUuq@w Zk$=38#Z 3I333ITU$I$ $I$  ݍV$k- fffjfZI>||gIgtZ+ $&~q̾LWUUt:UZkUUH$I$ATf^O>^wwtmsUUf&I$333IT3Ym@*޽h}O+op$H23Iffw$$k$$If&I8ֻn I$INSUN$_w}{r9UuGULO~//}KUmU53$A$II* $* 03U883333 r333I$I$U$ITU;I$IU53@LLLw_תJ I.K~{{_~}gf6TryOOk8\. {fֶ]יYkUv*Yk۶m۶mk$I U AU% Lz>}7޸^zI|>N|:f& f&I۶UZUfF;r7yx{^~|1 @\ݏ7zczSi$$3;3$IPUU$II23]z@3$$I IUN|>I03I~Z3SUqf03@If&I$UUUU$t333q}n$I}߯q3$$$Hf& II333ݍBw'YkU *ɾIضm+<|{{f&IwWUя~ݝ}m G+NyZkZU$I$I$@$Udfq=yzvqq$9kBAL$I $3df038fӵu}K_~[?p~3uoIi9ݳ'6c$3`8f&IU%A$UTUUǏ'I$I$I$I$I$I@$I03HHTUѣGooB$__/k۶%=33333338>#Z$$IdfdftU8$k$333q{w $LU%I$q@UUfIdf`fm$3$UUUI TPU$3J23kwwqTUU%Yku|~OO%q38gd-jڶZTUU%I $}G}>}zwww\+U:NgM3$@Idf I*Iwi]s翚/w}Q=yz9Uv̳/?9?kϾvWk-u?v $8$I $I H `۶t\.ۿ@?T13 `f$$n$`fg3 㘙8>8$A$I$ L$Fw fff{fffffffLwg ݽq}Gw g8O}So$U53H=ߺ{U~qq13HbֶjZkZkUU3fff03H nqɓ'O>\.8Ir>onnnooygyt:N$I03$'O133d۶9'}<~>`NoOkvyk~?M=79c333I IUUf3 $H$I$IݽwH`f3̇>9N03333f3$3333qtwwwwtqDZqq $f $$Udf$ILww$3q13@ֶmk-t dffv۶51IDATگm63̋/]]۶8$8c8;Hm|޶ZUUUk0333333twwtqr߿O>\.=3Im;Nt:Ufpwwo믿ӧOH$U˵ݫOO=}oN.Y|G{ڷ9I03@$IfffffffffHw$A$H$=wxGw'03֪*9gfffUUUITUn jff=3q~q333$IHI$U533=303qLUUU IU%A03* TUUaff&IU!I$Hm+/w}@{'~'^}ժ:33333SUkmt$I ffffff`ffgIz\.zLwm[kmv>|>Nt:N$ Jr^x㍧O~^} Ǹ9;7뵮sm'2;>O陕7O\g%H8$=3333=3kJ$@I @Uu|˷||Mw'03U/|p|N233333f333333II$Iktq388H$ AA$Irfff* f@$̠$$$I$A$Xk߯7wLx{/˶mww$q777۶%I23`fffff3Z 3fqTUmNSUZk۶m۶m[kf&I$$03]U3s\tzgsUU_w} ?M?m\2qyi|xfݬf03@wL`fKϮy󺟵 _REɑ˪iua 2(tfdoIYg:HbGMkJ:,YIf8n$Imih6 I$3|>߼y?&yfw>}}}{99m$뺒u]IHs9-s9}|>9$HEm`f]$I23If& x<u}߻{ݶ .M23m9uL9vwG>~~_񸮫-f& 3s]mvwwwwwsιss9{9s^__߽{_{|m%u]u˛7o޾}{]$i{ιIffff& {ݙI=|嗿/>|zÛׯz?r.9ǚ)Oaɯ#ye%m$3333dfm$uL$hmbw۶Hm@m $I23I`f_I9I{o??Nrbw۶mNx<"$IIsm眶I>|${^וmڶ.:`w9@[-df.f$Im̴mm۶-n$u%m>y]9' 6ӟ圓H23uL۶h m۶$mHx<9}9$3If&x<o߾}$h$I$@[m$Img&I[_ݻwusLI͛3?y|K?XN}]޾yf{|~:|ܝ Iݽ H|>93sI$IH0 $s}>M$|>?G?@???s}sM$̼\͛q]u]9m I>n[`w9I=sbwwm[-Hm۶ݶm -$m${ivw&$9M $}>眙9޿6 m|>w7 }}svww||>h{}swm-fff\u]u]uL$ڶmzιkw9mۢm۶8zxw/Q>~ˑgg2;M&f.-fffmm $$@=}|>|}ݶmۢm$$3x<~w~^וdw7o\ն]$$I}Iھ--ж9s9m{ι{wsݶݶmwww9ssvm۶mwww9s&IIn۶m۶m M23ݶIڶm۶-$}wg_?Hm:|gyI{y>s}}}9s9s9s9gwm$m뚙뺮kf뚙^^^m۶mݶ_~m۶h{ι>|8rkϾ:ym>$Ϲ<{q>~?=mݶh;3IH$ vwwwww۶M=m6I۶Hdfڞsf&9w7{]W۶If?7?駟~zι{fຮ$I I[EݝmwwfڶIffww9=m{wm&i{w$H $]nN9'Im۶I9IH`w$]03mg-HE$Hś7oÇ7}}ߏӶ-~~WW/xڞsx$A-m۶-$$I9m$H23u+ fff033df&i @۶mm$x<m۶mqܻ1{{_~7gQ^w/s>o~۟}㌗$m[M$ix<36I$ж-vww9}ݶm$ ڢ-033$ ̻w?_>m[ w̴m{ΙIvf3333$Imwo9gwn9$iu%im۶m۶;3mwE[9s9m9۶&m .m$ m۶m$@m۶E\ݻ$;3Iv3pIҶm$mm&$i I⺮$IfHdf<뺒$A$$m1337o<$}u]IE[$H\{?'r_ysxfux<G$IڶݶIvwwn۶m۶E$8缾svs]`f$3$Im۶-Iڶm{iݶILkf9gwwnݶmwwwm-fffh3$߾}ݿ?L$u~;_՗$6 }|m3&fffE۶I$Im$m۶M$LO?[7o.`w13IWޑϿ?zyrǟ۾޽k;33$ h$mIIffff&Imv I$Im 3<M23Ifff^͛i ]$Idfv?$m$ /m&$mwmmdfж&I$h۶}ݶI9$m9L nѶ̠m[$$u]cw$+&y<36n$I$뺮If{}=nۙImw3m9}n۶m$s9_L$~'3 ;3Iж=s9眶8n=<&Im$ݝm.ڶE[mh{i۶9㺮$m///_>O?4I[}߻>i3y2|񒿽vosN~5^nI33Ivwfvs&A۶mLs뚙.m$A$}sv7I$mx뺒sf&Al__|x<333IHIڶmIsιysmzAI I.$Am $Idff&$ffffff$-$I$I<뺮뺮x vm9msΟnM3>~뷮j۶-6 v-$Ifm$m~>{ιsι{wwww9ms}眙I9nvwwwwwww?||>www ຮ&Ͼog3ӶmI m{w77^˧?ï7^>|ᜃm۶m۶m۶m۶m۶m[s9mn۶q]Hh6}߻{H m{s&i$m$9$$I$i۶m۶m?}Y۶mI޽{3$$If& жmIIڶ]yL۶m۶m `w&hvwJٶ-n[If& $i۶m۶m"u]u]533I$ vw133sN$Ivwwww?O߿oIp7OHE$Ivhvww7I=$i{&ݶ9}}<缾~|s>>|>}m$II۶-vwۯK'mm13vE~3Cӳ<^?4n9_}v}H$um Ivww"I[F9mm@[bf$I$@M]Lim͛__<$3vwg/я~tG}6 xݶm۶EL۶6I[-bw~>m`w$IҶm[$I$i6Imdfv7 f-s $ -Iu]u] mm`fpAh۶ I[$?O>df&i o'|_9'm$mۢm[.fmmѶ}hu$眶$IfIvx|bfv3$$A-&i h $svO?x'h333|mhdw v-um6I۶h{]ڶm$n=<9߿ꫯÇL$IҶ-h @$I`fffw۾yK${ny}MNa檞7L6c\>Om$mI ڶm۶m۶mwwwwI-6I${ixHm-ڢ9gwgff$i h.$i# ̴{7M vwf?_|rIA@H̴m9}svff&Iڞs$3x$Im-n[-df03h۶m$IIm$Af&$I$A$3Ivm I}h$mo,̴$m" жm۶HmMI$9gw 3sι+u]I93x|h 9>O{g~]y?ZϹ~>Nm@۶Hu]uA$Hmdw13hm&A I-ڢn[n.L[Hvw$9-m}w__~?33Iݝ$hmۢm+ "I[ns9gwѶm۶IsHAM@mm $$$@$IM$Iv7I$I亮뺒$$3m-$i$&A$m6 x<~G?BIbw?x>3336IE$mѶm۶Hm-II$$mѶm$]Lm$m" vO?}_~_>f%2/o>?K>[7?o~5zL6 m I$3Ӷ-ڶMm H23h۶m[m[m;3]̴`wL$mwwwwsvwf>|o~O?|W_ׁ$@[$immwI`wwsiݶ]$9$iu%i۶-m$" ڢ$i m$I۶I$I ж-$\x?o}[@ꫯ⋙i$$۶mm@$8sm&ݶHr]WEsf-$m$6 Iڢ-ڶu]m&]m$mwH23xI$Imgm-mImۢ-m~9H__O~ӟ>gm۶m$m$I䜓$ &II жms\@[yff0$__|W?}䞜+kOys޼rHH-ڶmm"Imn[mf&IG[m[$ihIm۶M3m"I۶۶mH$3$|__~W_%u]8n۶H$Ih۶-^53h$m`wg"I33I]LHm[$IL$333I$A۶ڶE[" imw3$Ivw|9׿#9' IIڢ-$i$I$33ӶmIfff$IrA$Ig}|^ۜ?OoF+@i~룗}=sMΜsfmݶ}$mۢ-ж9gf$i;3IHI\u]\]m mmۢ-vm=$ݶmH$8ຮ裏>c_~W///3vfmm9H8`ff&}3mIdw$x<8 I۶ڢ-I$̠m$i6 $u]3dfE۶HE[$ ڶm6 " " ///_~_~ k`5_}|=缼Ivw9m&IҶ-жm "h///o޼IrM><$ݶ{9sfhvf9m۶mM233IvI$m[ $IIڢ-fmw7I$h m$I$ 3333hH-$I-m^W_{|o޼m۶u%I$$xh$ f $I3H$Am`f۷_gz<|Y@˟=>(9ss-p9svwfH$Ihvffm[-$I>9H`wmh `w۶]smE۶@۶m6IۙIIO><36 |>9mۢ-Eۙ$y<3vwm۶$&I3LsN[sfm>$Im$HI$Iڢmۙ&I@۶mmmm۶m߽{Gyff9-mP$i亮.$j]$s\*ɞE(&@zk޾yz쳯oyyyyyyA>.vm[$$m\ו$ $`wws9.I@۶mm۶hHI$IfffJr]vwm.vwm۶EI93>|޾}Ҷ$$Is}|?mxbq( iV+I$ɉ \xy\@*Ù<]ڏ$cg{c}}H|>9I$IҶm۶۶m$HҶm$3m~># f޼y3mwsi۶- ⺮$H$Im[mHHhs$IH$m`fu]Ifm۶-ڞsm}<x}} $|Wݽu]h7_>+~׏ֆ@(T$jL&B(%~x{ }^3};ݞs9u]ݽkfv7ImwwwhIm;33Ӷ-msN$u=gnmhh s9Ifm۶mۢm[9gfpw[ I?яo@_@$HI-I-3HM-@[$$ I[mIHҶm$h 3z]&~?9mgm5^o?{Ηϼ\ [X"$Oo/*y#zcIvIf& }?H$ih6 m$Iv-I=$.✓m[m;3mۢ-6I" ж-3@۶I>s޾}WW'M͛ݝH@@&I $$@[$@$IH039///??㱻ݙA$!y?>:f X!  тB/{{ף3t ܟ~x?:W^Gۙ9Ivvw L۶mwwwA[`f̴mm&i nGm $vfE[n["" vݶ@[̴ۿ?3mຮݽxݙi$Hh$hvf@$A[E$h I IAxkuzk=4@w |4ΝeR5&z M,2+Lmmg:s*`*` Vx `۶OOO˗/y<}_?/~`N`À}_ ?e?y>}ê>o˯}9?|o߾mö{o<Vضm9 *TP}[Uն˗sض <Ͻw[uΩpVa96<y~???WߟAu~>mx*U P T*TTPP@y휃{o۷_ɟɿׯlUp_/_}~]68 P p{NOs֗??_=|>yUx{U_~v= :9眳m[U؆ *1W˿~?` rm :{~sv<~>?_?|>9z ޻}{9۪s9{pVsUmUT۶zUuΩs9sW?ou{`kh~>ˏ_~?Kӏ??w?w?~>_:6{a۽ l9Pm{UsTSs|9msUVUms69o߾}>m?oWlm*`۶ @l۶UVU`6s}OO/s׿~_|h@>ߓk·o?}o||*{U{9m^9g[j9s{*Uuvﭰ 9۶U6>Ͻz}PU}VU_?__˿կ_  }?g_?϶{9x[PwηΟ{` `0F0;o??_ǢǾsΩ}_yTU}yPmvΩ휃m*lm9UUm;{:m8T`[m9VmU6T۶mPm*By~/_sm~_կ~u9j6ڶmmضmPm6lPmBm* 66T۰ 6m@pιn{?GGGoͿy}m۶=Sދm@ދ꜃Ss{o{7p=lpm ۀm۪y}=ϳ휃o߾ ض ۀm ݶ휳ދ{ދ ^s*`99}}{m۶؆pιnVpy8l6T@uV{9ս:{s9m|9xgysNp˧ϩӷ7~I}_~<}qy޻z {6T{m99UpvﻭP{VUm۶SUV9}mշoߞ9T_~ZUPs*s6wmvlU*Am@{9g*ض  * vymUmlۆ n}jP{Uދ ۶mV۶U{{}z}_Tۀ{/aU<۰n;{Ωp6lPa؆m@:`9PaPm{9۰ * @S Uu{hsΡV۰p6lÄ6T]m{9j6|>/_|>o߾JUa۶m96T*m۶۶sx~~mpΩ:Tj*T{m`9P}>mmU9*T x6@S{ *s s6:` w|>{۪Smm@U[s۪msPmVTޟ~ދ}m<<s9*TUmVmPU8}jy 6Tm@T*llU *lVPaU۶BmlCmöm@uv9g[mPUն{o۶U 99ڶVmC`[uٶ lۆmVa۶ PUTU 6¶m*T۶U۰mۀ 9ދ 9l;lCm*նmնm* KwTB}mmP@U*`*l;sEmU{Um 6T9նmT@uΩ @ սUm9 y~}s~Žچm۞9T@mUm[ma{9Uu>6Ts6lVUضP{Ωچj 9ս9ދj*P*`P*9g۶ ۪Vދm꜃mTm9UmU *s *l6T*`[T6{+* ؆smCuET @T۪j*<9g۶mP{QUVsm*`msNmBm9g۽{Ω߿py~~*lCuنms  VU9 *SmPB*T*j[U꜃STUj[mۀ *`:s9Psm 6l{w T *l9@SP*l{gUT*BT眪BmmUUU8lC*U *{`P`9{m}><{[s6P۰m9*Tp6TUUa*@löꜳm9眳 mUuBUU眪:m s 8`[Um ض Uus9mymm6PsmCUU9T{9^TUT`Ps*{+*TPU*TU lm9<<^*l9ڶ sNUUsNUU眪چP6@s9UT6T@TPm=` P@y۷o{s6|>s9g9؆m8T@Ua*۶{{sνw6TmU{{V۪sNSsP۪jPPUpΩUUs*l;*6T@UsNU 6[U9 VUUs*TPmۆ꜃S{sNUUUm؆mUU:lCm۪ PUmm9UmUU*T۪ 9sNuV؆ ۪T*TUUUa9{9zyj[Ua9*lmP99s*l*6@@Uᜃ߿sVs꜃s98l9g[U؆mۀ ^TUm؆m*mۆmPmm*T۪ U VU6 6UVU@mjmU UlPmVa[{/9 Tն *l6TU*`[u݆m`PU *Tj9؆ V lV`*lvﭶUضmm*lCms*`[ ۀjUl;l<>۪m^Tm@u{v½:T۪{/9VUUm۶jڶ✳ *T<նmvvΩ9xSm6:{ @m9շo߶@o{/9@mPUP ؆ 6sj۽*8l*a۶s۷oTn {}}}6SU99UUUamm9g۽w9P@ 9۶mC<6lVPpET6T*lPUmýmCTնm6l<6l;{96TPUUmUPmVUVUUU@Ta[?o*{sN<۶{olۆs9g۽ض ۰m>*6@m6T`6mUlVlVUu@uٶ{ιnPUUۀm@ l *{a۶s9@mնjPmCmPڶچj[¶j9PU*aPamp*lچm:|>}TpﭶBm۶۶s l9ض l;[s`9*jm9^smTVa 69¶yms @mUUT@TPUlTPU* m T6`6*T@j69޻ضPj*PUPa*T<{^UuEmն PmVچ 9ض P l P{؆j *a9pv*sTm@Tm *l*T*sl*P*`۶ P{sζ{j* PmUm:ۀmjmP{yׯ۾}/m6T眪 ն{mު9m>6slPsP8`9@UmV@Umۆy*^Tmm9ڶ UT@ދ TPmT m@ @ ۰ڶ 8`pιnPa { B*UP{ ¶y/_{6Tۀmm6llCUmpAmlۀmvAUmm@UaU{oUP޻ Uu6lm  pj[Tm*mPU@ ۪sVsν V*ۀ @U{UU U*lUy*Tۀm|>۶m$G54忣{;۶a[m*`[Um`l{ݶm]Um@UUmضm  Ulj[UU؆¶PUBUUնmPUUUUUm *TwmPUV}W@UUUUUUUUpwUww6TPa[U6۶m* ض UU*lPU6TmmUjUmP¶mPlVUۀmw;l{]BuwT*Tj[mmP@Vm ۪mmTmvwUj 666TB;l6`m؆mն mTmU P@l P@mjmT `{nڶ޻;` B؆6`*6VT6`*=T6m wT `۶*lmm llCT6@BTmmmmT@m {>*VUT U*PU۰mmۆ @mmPm۶ mmvw۶`[UUvwm6>}~Pm**T*{w6jjjU؆mPچ 6Tۀj mPU۰ =lC@ ض *UT `[Uۆm@m6PUUU6l*TU`6öm T@mmۀm6ཇBUU۰VUۀ PlV*P`[a[  VVUl `[jTۀjj[PTm@mm*pwضlVWa[꽷 {~ mPmT{{wWUۀ wW὇mUlP {6TU Va۶ U{U@mTPU꽇mUڶmPj[aPTUjTVmC 6TVm*T*lPzmmUm m6Tնm6Pmjmm @mնmm6lUPa؆ m ݶmU a*`6lۆmw۶U۰ 6T*lVU۪m6T}{؆U¶m*lCTmT*m UUwm*@m*l*TU=PUPUض*T`@ `m*TwWm*m@ @U*T mUVU*}x]PU{ 6T6mUUUUU6TV{Ulj[U޶ wlPWU6@U{=l~j[UmVUUUm}_mCUU۪ ۶*6`[ mچ m[6`۶ۆm6¶m@`mm*TP¶*lCU۪{UUݶmUUPP wmpw x~߶{mm*ޫ*TPmmPU޻;TVmvwնm}mV ض l *ڶ*TT۰ 6ln6Tۆm m6lnPT*TU  m=`۶m; TVa6**ض{{lö ۪mVU@ @UUm*l lPT Tۀ mPl mT *`{ۀ὇mۀm@mP*Tۀ P@ mU6T@lVmۆmU xVUPa۶Pl 6TPm ۰m[lB amC Pmۆm6`ݽT@{> @lPmUUm UU``[ U Pmvw؆*P޻;T{؆j[T@mBuwo[`6TPmlCl{mö {{6{Pm*`PP ؆ UT؆ @n 6Tm ۪^m۶m۶mCUm6؆mTl*lVU*T  Pm۶pwm ۪ml*؆ m mCUm{B VT*@mնl6Tmۆmmۀ{m۶mm@*`[mmض PmöjmPT޶ @*lC TT@*T۶۶U VPնm`[a۶mն wTwmlP@ @۰6löچmwwwݡCmm=چ὇?Pw ۪m*lPammۆ{@ P mmU m@mm@ 6U PmT۪ۆj6l۶T}mPmpwwm۪wwնmPU۶m6@TmVV*lB 6j*Vί;l;l*lW*lUmUmBU` `[m`[T m؆j{j۶*l*`{UUm~m=Tm ؆ UVa[TUm[l@Tm*TamP@ PUmm6T`۶ ۶]vwm۶mU۶U6Tj{6U l PmC ۀm{BT@ ¶mUn[m[uw۶ mmmサ 6PmmU=T  ۰޶۶m*`{Wm;P {۶ݶ?޶Pm۪` @۶@UTl6@j*{ݽmۀj۶ U`mTll mェ6P*T*lUUUU @T*{*`چmն ۶am @lP6l*l{on~?T6zm;ڶBmwWmۆ `*``Pa `T@lmm6T@m**TPT۰ PUP*Tm@UUUUmC`P¶m@mضm6l{m۶ jml Pڶ 6P 6l*jj@ jPwma[TT @m؆m6l`Tնm*lVݶm66zmlw {@m{mw mU `*lmCUUUömT ۶a6`lCl m* `lC @ w w PUm@P Tۀ l l *lm{ޫl` TTxU*66`[T*UV@mmC{U ۪m@ T@mP*Tmml*lVU*`[l ۪m@m @޶zݶm؆ lVmöm ۪mPpwmPmV ۀmPzU}l6m[ 6P6TPm PU۶mCl* mP{U mm{@Uam[lV¶mۆm=PmCl6lPmUm[mpwm{Pm6m =T `*pwm  ۀmmPί m۶l* mPmP`mP@ m۶ Ulڶ wwնm*mmUޫmn۶ Pa6۶a۶ {UVm[U; @ݶ޶*ma[UU*lCPaT؆mmP؆ *@UaVl*lV*` T Pa*lض 6mzwm6ml*Tl6lC mTU۰ 6T6m wޫT6TUT6T*P6@ mmlmV۰mjm*`{`[ m@UmmUmնmm`lm@j۶U *ۀ l=wWU mmUmPa m؆mV}߇m@U؆ PmP`[u`6m[uwۀ*TP`Pa`m T۶m؆mmPP ۀ۶m @mm lmTmmPaTlm6l` ۰6ڶm۶ mjOHrA"kwX!`*ۀm*Bl @ l*l6m۶ ma{۶U=`*l l@ޫm l TlV@ VmCm[ TmP @ `j*mV{vwU۶aP6Tl 6`[Va[@۰amPmC T ۪mTlT PmT lPm*mPUmlU`mm** ؆j*a[m۪j[նmTm*{ *lC mTPmjl6TPl Uj6l۶*jTm`TTP6Tl@T m@ P6`TPlچm;m[Um`[m`lC Um6@UضU@m@6TPm ۰ @j Tm۶ 6ja[T`TUUUllCUUlj6mT@`6Tmll* @`T*Tm6W*6>mPU6؆ PU6Pa ۪6`Ppw{VUP*@m@`m6mP*` *`mPm6Pضm=T m¶ =@ 6{mچ mUU}l*l@lU@6T@T T{*`[mwWUm PU66T j66 PU TPmU ** PTa[m@lCm@6`xm l{mlPm@U` Tlm`[UmPa6`T@ @*l@ @Pa[j؆ 6¶ 6T؆ 6j ۰T۰ Uj[ VUPmC``[PlCT@ Pض *lm@m¶ Pm؆ڶTmPmPUPmT@V6 P*T@P6P؆jmU`[mm U mTۀm @ T6`T6`m**l6mPm TmT؆ PaU6`[a*6l@UV۰ löm@ڶ@@@U؆ T6V*l P 6`U6UjT mPۀ ۰ aj Pll`*|xm6*  ۶@TUض*m P`[l@ ۀ*TUl۶mm 6P}`[TVmC BjPچj6*T V mvwچj*lU@ 6lC Pam@ ۪jPPPP*چ VUPm Pa[TmwVT նTmTUl6jT@j۶ ضڶ *l TmmP{Pz*;lmTPmm@6PTmlP@۰  lP6T*TUTCmmچ6`۶m@ @l PU `P`6` Umm@j*TVmCpw۪~UT6lV{m6lC Pa[U*l *pwն{ۀmvw۶6lW T`PmP*VU P*Pa[m*U6lCPmö wwww߿mm۶ Tضz}`[mm6lC`Tmj*lm@uwVU}۶~l6 lmPPmCuwUl 6mPTPmV z j۪vwT@ `ma[mmTmT*TUmn *Tl >* 6`[öTTۀ 6`[UmVU*T ۀ @Tlm@lPaXIDATPl wWUض¶ 6lC؆jVwl{~?Uuw*lU>*PTTmUUa mPUT6ڶj*PUTm*mPmmU` ۪m6lm۶mlP؆m@UU6l;۶a۶** lCPmPa`[ @;m۶m[PP**m6l6 P@@mm*Tn۶mض VUm*l*؆ @ Bl*`[U;TPTPm6ۀmU6`l*mPPUۀ m@ @m6 TۀmA87۶UPUwWwmض ~l lP*lPU=TPUUUm@ P`m6Pm *`m*Vll۶ ۪ m۶m۶*UUU ¶m ۶m{@U6`* *؆ Pa6۰ ؆ PU  6*` mT mPU۶{؆mj~Um @@Tm mm ۪m@PU۶U{キ*lpww@` նjTڶ @UBTm6lT*l mTmwPUU m۶pwU{mjmmlT*|wwwm~6`*ض *@ *T*}U@ `[T*`*lV@T `*T6lm@uwwww۪*}wwwPUjmTT 6@ T޶CUUV*~6Pa66pw@BU?T P6l`ڶ ww}mm*U @TTlwm{wWmlCmp`+,o%tEXtdate:create2020-03-11T12:11:37+02:00:%tEXtdate:modify2020-03-11T12:11:37+02:00gIENDB`assets/images/sorting-descending.png000066600000001722152141651120013613 0ustar00PNG  IHDRatEXtSoftwareAdobe ImageReadyqe< iTXtXML:com.adobe.xmp |HIDATxb?%q@i8 $h@yy9L$ َ3 phfVcjN4! A ?LBIENDB`assets/images/buy_now_button.png000066600000006103152141651120013100 0ustar00PNG  IHDR*T<tEXtSoftwareAdobe ImageReadyqe< IDATx] pTfB !< IPABBh%A)Zժ>j;Eh5RqF$) jTЎyva$]/_ggHw+b]Ž's${v?}vwm Xi!&VOøZ2`WoEL"K,hv!bZ5WCTT>Kw7Cɼk0ǿy ]wE$؍#)v {jd J~k nmo-_>k>TG6쀵:/=/+a9mw5V[<ѸLO,.]?N+{۰IuL7ޮT1x.%Ue 1^{UHwi{-aopD02!5b||}`OymZy٬^wjRTu-)Vz4WթE(aCOt%e $ ڣ>GP*_o7@Cdž(2 UcݧE1Z.>+5>i%MpX )츨Χ\VBWH'TQlBxH] .mY@UeE59ׄ㉪:t}9dnyS! };2`˪l( X9lxxP/&:98kN@ФWTf_e4>b#!YOK}rE(&G;  ?ͼ‰Mux{ 'Ve2+?jMaeĚUR_Cu y Q4޻H,Q>q)G7Q-it ?j(ò3B$iXH0O8[\!Q}D޽hlB%b蕻1:ثgMc*{6/%8s1&EK/mDj?w꧲z9J^n/18Җ>qhzu%:Ɂc L.m596"7UP}o#֘꠸#@?IvkW*x8k822o6dDc Ϡ6ó*#-E8!|Lpbk>?.ɋN!vUϺHKo7(үj;h:Q>VPYuqWj@ש6D]Q Ruԛ`<$jtqklB-^,XPVY}Dş_XtT6B1oJ(X_6;Ct,wNWY[q9&fuiZRN0|A \(%|ywĻX$aa琘x 4a̍OAw^a@=-NuETlWX E|Io9;2+x,|"E4H5:Poêq()m)[8?|{RF`$Wtcl-rD9 n8+?:-ćT J`/s5U~cG ٩zqO7#ݑs֥2]|J@(4,u߷PGms˓OdH>t?^>h".ueqT'nHۈN$lcnjڻ>rspt ֚ΑH܌ZxުCF̤xŁc$jf׮N֎gtaWK|У/) W+dg&fO7%-I`oQeDGEwgsFbU wѫl0Jp#IJv:O*g*eGx-RȦ7ݡܜ0ҞK9N :]˴wĨ 7$ne?;t\DӅ5ezQǾ.1D)<I_|W[s ۖ3jW[~\j⓸pEDOAl- AlIM.9.煈!?#oj,p Y\ev\؄?&'FF1a4Z>KBRv0]0~ e2/c2>]Bv7uUXS0:%ktx'N!c) 6@?ݠ0N>ф5}EQpS  jYBZKNpۜQ[KIENDB`assets/images/pb_menu_icon.png000066600000002756152141651120012472 0ustar00PNG  IHDRatEXtSoftwareAdobe ImageReadyqe< iTXtXML:com.adobe.xmp >dIDATxڔOSQﵥex "Q rCp)11&7F6.\r,Mp `$ a*mܾ˴$'ys{;~&Dj>PGG2M4~{? rOB;H%*gVX|ʍCނ-mbK~Hf 5menm᥀ZPP<Rt ƌOG5,pUSX;H*EtN_-M )*n90_ ѿV\ٿ0aX`ſ4ܟ@_P303'×^ 4G)1vUMB9 i;N@ͺ@Ռ㡻zZIENDB`assets/images/pb2.png000066600000003762152141651120010516 0ustar00PNG  IHDR-!M"sRGBgAMA a pHYs+IDATXG՘GMku9Gb: AT=vQ ]oO <)b@/*Q ˮbDL0`YwwO@33=zz֭[gWշ]vֱcG޾}{o\_ߢLK)%#mݺu|3f̰Ν;[ͭqO>8eee޸]}{[JFT˗/֢E kժmڴ~bJ/]+*'+*-byK-[ږ-[6l3Pׯ$Ŗ.XQYFnxc_ӃcǺ/^O>e0(//&Mؚ6mj4Ck֬7=k|/9E7zmܸqGJҘxGY+?~&+Ԍg\:_=|(Px)42B!4zX"|gsq Msog8sLڵ+ړ'O[) NNW^۷o}~ݻw>|<`<ֽ{w2߅m۶ryI\ 1`™3gɓ[QmӦH!C|8?xLD( #t `Ç޽{;4+(x5;uT!0A%ܹsmѢE֭[7gϞ;w<F4۪UlncTiǴgёg_;#"0 =~k{w"ф@D &xT{?ގ?pbmmdyɘ%bzCj,rJ*5k+ȸgϞÇѣGA/v,X`Wv<-ׯۍ7|<PHaDa6qD:u-YĖ-[f=zȘϽ|2"1v6hР.߿oȅG1Ikm۶,]8W<18ׯ_{b`$9$K(ߡ10S|]p1Ц(8`7o[ڮ]͛h:ߕQLVT(U:BG޽xw"\x?zK ޹s_ޕt'(***lD&N Nbnذ~gϷ={Wh 7)SaիWĉv֭&*XH0G߾}CSLiӦy݈kϛ7iɺ:r?Cŋ}B?9re0}oxUۿ s!( @" _y4|ρ[C`~=3NL$(%ȑ#̗ҌgCE1 0pرcV[[Bv`@U^A$^) 1'<b )A!J2Ai凒s|Lj = 韠Xf\K#*]өha04[]ia:B@WDo1^ؼ`۷o{k<\4/b 6 ^V⎥l4 (ҜjT'x& V~(F#sQhdY^I!'<IENDB`assets/images/pb-pms-cross-promotion.png000066600000021666152141651120014407 0ustar00PNG  IHDR%, OtEXtSoftwareAdobe ImageReadyqe<hiTXtXML:com.adobe.xmp { IDATx UՕ|=w5BE1O ""(C@E I!^wy~Nhy@#AHQ UTQUw=[KhoMk}a ״^bic]q4$FBo$$FBo$$FBo$FBBo$FBBo$FBo$$FBo$$FBo$FBBo$FBBo$FBo$FBo$$FBo$ FBo$FBBo$FBo$FBo$$FBo$ FBo$ FBo$FBo$FB\AƲH?⍤`4M5ŨcNJ#:d$8oqDŽu4mp릢J4 c 1 `=P:]$Lw)XsҾBq 1aSF(h&4ͭ!iшiBI_ih8`ط?[f ^)ЪΪHkTN'QExɖF K0BJSSv+Μn!lf"aDsc&jLɲ+t3 JІ f3>7Lg(W]Wj|~!_( =l X6[c7i`TX@'̤?yy/g4bөUU&6|膣l$(dWrr#|=3ODfFC+8O\JT̉PҰ/^uM'l2Ú`9B~3UUr.WA;~H&8 FrX:oX\$zΈ[&d*M%X5yWA-] 4z5i*--t31p&|.7y pggY[.Ed?+r6mHHGQ{-H& b9!L~u8jO ch05j'1 ?jʅ05nhԯ?|VMb6'Y8礩br3a3鴊 գZ'. ڊmyq;}J:%^bJ+;*Y3oMj t⇍㮽k|qo#nKz9z,Z8r'vwSp7#k,[( fCMn܈5v3Z7 O=ɿ>|8BMvxi%zHrG2..4583Y}غf,ƶ!Zc=FH،$ݷT()eʞ矲O=xcYgbkV9Y>"Ns]s֑j |^+CH7fmۆ֭6g31 pO3a$}>[fjdΚtO,5,=5F.+;'~/|%_92#0򬹾{ ؚU_6)iבy}z&?еf1{= Ĺ-JkpMl9h䎊+[ 8켔]4pcdti$'?8^i >'?szkA@[5b[G)A)zI-;F9\|hY|j+* O*1~ڦ0J/)Y6.%/q\-C҇У'Bۧ]6CV6Fן/qPSD.H?1Ǩq8|=,?w}y9 ;悛b...'϶* ?{Yģ%F}]~iH8x'k-zjf|heMl&ˮI0i^\[7=(ex9q*|JRc/wYF vQhzBq v~7;%r|jn@Wo:P `%u`O!V1dX(q[ >iHG&Ochrf|/^͔鬽,Bcn 2(~.=PXt5Pa~dUg5ju8TRf,y\O™Ⱦɴ'xD9&9 wSoL ,/4);Fx^ ~)Q7}{f>Xl[,#M1zɇډ7K`b y2`F8ĚjFjd@@:=WjhX6"^1bW)[G@ @UCUT7?&A0-TJa#< TǏǏhǎ@-a9hs^bb0Y`.YS'ch8/]AMS \HH8I/5 eװ`fPkg#:F9'L ykݼ^QvX{-qMvⳏ1_vG˥onK} L~Zٹ u5.پ1^w^2< g#PzIIKzx9 L.3vLsXcg>W׹ŪF2 _8Nd#dW}X͖v&aԔ{=ޅL@5gE^E "b99|mQ3j΁ j-zz`Q|htyq.W!.'mhXlLp.)-^Ꭓ 5yCnPdɭ/?S7q>7W[>0O={ǮТ|i0ip4 ^%?TF:vꀰE`gi؎/5x;rbUء>Nyv[h+ț/^_ J3g;_uw6:yL5` ?:ӪuwU [ ׻x)8Tʥ t\7=wm`A$򩲽$WCNj ~\Sú33C;lVQUߏnPذd;r >g͵5WyjvGT[ تotߵs8mlk4!ޮ[8({|]֠qTG|~o.z@=zόwZneNς{_YGMQ=vD=q,Y{}|A0tYCeʮ6K3pM? q,k K "'=҇tX MM c5ljkGtMM@lvaz샕{fGL썗yUeT?%} 3mp[=~Dٽ#kI]0w8;`_*^za3ķ7B>ڷ`K9e_  ۱{vde!p_թ.UڸSG^ZfX:6c+fŠ&렉[>:iU{b['lYGsm?R%v5m (jgrWUڍR.;t-0:pAl'c-׫aȔgGK|Ʋ?ylSA׺=jMu˗ LyYu݇g޷2sʍvj*,1mZNti55+hܛQ&9Rw2 e Ge/m&xf6Xr t׌դo`="Ћ˼{H/lQz!zdeL=Hp3fnW y<&x}O5}~5+-FX,,3np,e,w%F<hʒWc*WWH0+h.G*oF4߮ȜC?=/_3&-xoLhgN~7ǁ_\bbeI-;L ,/Ja~Z,^Z8T5}e.{fgZWn?6{1844`0rW\gҗQ_T_ۢHp9n%Èۜ[ H> 䘭}VB)쟑5RD@˜+/ ;1-@Q 7[[穒fTqQBϲ3Ξߣ!X{|0rY_ q+b`vƲ?HD(2%Vl {nVH7@v>ް  1ܓ/_1u⩝+%xZ#b`5c/q|$=k=kXe֞Z90э+IZ`x?"yIENDB`assets/images/arrow.png000066600000002225152141651120011156 0ustar00PNG  IHDR zjtEXtSoftwareAdobe ImageReadyqe<diTXtXML:com.adobe.xmp "͕IDATxb| DO05qgjw&L ߁ ?Yj HH=Hȸ R> *U m:D oӁ`bLh~gN0D qdEG yqO/} GQ҄!٭ IDATxTU[ߧ~U]QoN5$sQAADAJ9眣#A* 9J9g{#꫞9G7+5W`9^_P( BP~  BP(?Pq BDJ֭( BP~`}dUty`}ew1P(ʗ.X!pR '36##Z;c |e7.B\/Z;Cs8yZAN<b|2vm ++"G!)"$!X[#f"}Ri>(_TÎmokppN!9"lJ8' gg_EΪbώ]Mv)!Zp%|pP( ' v)ф>~/ks77_pkqM `mqعm;xeNBFg ^K"!,'C22rr`=⊰ sLv|<:mxCXF'$O4rrp/$ a9gt D죂'aL$!x M a&P,p p8,C6KNƧ+[@4{"x=s<Յw+׮B]A-XjgcvJ, sDA72ò`_ķz%Q^CPL9Ǚw\r{#4  BA7oe P0 v@AYN߳[w g5 +3WrZ# *{,ߎ%װx#^8ķJ2<EL|(y%gw)K־1:{`n>wlgs V:zcw䗁.*"$素xBv~|.8sZ#~ z8ASDű.394 8[V ̀AP( Pp "< nPrԏ9ߋ߭s:hGV *߀"z( c'@MmKPsX]H •{& #QP1,v7ݼ8{,莽` [fX;":=ְrD%|pvk ̵.>Aه=T`ɔc+e)0FXx._/,nAH "L IgMnap(~Iq9=nbr/rLN2Z uTE-. /#O!8tB6BLhSx/:)/fo%k 5Exg<`Q(O.:o1A)؇]իWqVA nc N1pE5_1] "3-` O;=b/wWo.c(ر. /H.JUaF7\4!zGQfغevB"Xv n0P7Ӫ VWsFd}O6ǷU#Yiޑ{B"uc/߫GQixE7Հ0$ReW޸ʤP;q59a^PNM"1\rvFtjfwԽHvbn}hVD=@52w/-V\)aڹ7"z>Riĕ`ζGgPO=HK)|!ȩ~_x_pI`$ ^`\ B?ćD{s[jrpQ!pQAJusLꞥ!E#:>i,Ahg9'{fcq&>.{{I<۹`M sD'"~rnsR(Wނu WozY54T؂umĄ#>G颏 aۋE֭xq#{{m°e,ˌ`i# :|*l5P^%E` #Xۄl֣'q!JG6ڞC@B* Ͻ'P:~&03r$1q_ 4!p=xfO35~| 60ׁҫ9rUI?(ciY%uRb*;]>2ѶrS8!<YQe+[G5 q N_4li#My8tV̹aaq?n J✡p#>sD+(C~C*CL8VOͣLP{+[\Y'D3ìq^FO܃pZ/#4>'ąpPQa8CI >Aȩi1×1 ՌlX0bn~FB!!"pX=-Xo[>:L ``uis\F7PN?kzr Q]|>~8Açk?E (a˝mť"\V1guKy6sܘ`cH 1ymzCdSII{wҰEg;_=i |+X~]?y8=11c o9@0 c{ G06E_ o+B.ChxT‰Sqf;7ď`A~alݹbGH2$ʔ nJ@I(c첶) [vI2@DT|%'9SA/GQ(*&!Dmwh:@{5݂8z ǙyH\.wӺ!7u~qlipWr b 4mb9@F8y^rǏVZ5+8̯aܐ8vjҒ8ƹꗹ9͞W%5P> `7 2AWS#28퉎Q`J︟#.4ud'y?-Xr{g@u:gB!ұCț>.X*݌>ۊq Ғ"Pɏs{!"cTsF? VNvz{ܕ"Կ'XE8{R9o@P_p ʜj^8eucJCs }S(z("SQEzU\/* C8BRõx ֙K]8 X_3ᘮ#k{(,|?Ii K_R.Q# mLj6щ%Xc=,Z uAD'W^Z^9羟k 9Xq8,`ꎷi+k VD N}B p\:lO\}VjrvnVc:, i-WtM`Z\}瞨IةC&<`tQ3{&XpTE`jpe[)]qdfW\oU55 7#xs"t9u^K~DzpAJ7&zsFhx)s)V&}ZO_m뮐ȯ'zo {%LPH(`MIT ,UDpXAp1a %XCm8}Dg^ׅئ`զA!|iWPɹy겒P7uaOc=#,QhYyp v#_5>A.QXtslGkE\AE JN@\vCGsbgLZ@DJ5 SB8k+⊝:(\2!gEda_QQ ߧK<B7eL_:)nL{T8 qTsV̷͈<u2B!|^自>䁒VnGFhj06@\tTd#sv OSI®eM#[+-k;(z 5Gkh9ctrZ$;1m}82XKA2u/{X4oU hDj|({>+p#H-r7[@gGt{d:AlY`,.|WlOXJq= t{Q ngl _VmqEF+ EȀ{86z vk]%bpF{9Cxrr{^hO-eBom>B >z@Wh^l1 #xxHȩ[:э!<- z5 }㫟Vkwd5b|) +UNsn,d10 p $h( B!") ^3H+.CyybD8X@e BP($X$X8x ^~!p sk:菆BP(,, BP($X$X BPH($X BPHH( B``Q( B!`Q( BE!P( BEEP( ,.l߽ĉBP("X[@Z Vw/ BP(,X۸a叫7baHEEP( {a,V\-݅-~m݃cǔ֝$X BPv↔:T//rSعrǥ?y 4eyMHQnؽ}d5.R ; G7XB^OLxDgjLs `MMMallBP(O .A8^GR\sO8Cp/O\)xE#"& ;'|B.^qDF\_ b`MNNbffkkk BPH N0DHGbO}o",7, 8vSGan^Dm;W$BBawYv511YAeIڲ_ƮguFbϐ7-Xo4a{l?+WXQEhP lh΍q4"" oC368,BR(J`HDaXxc.nX_C%և+9-AEAW"X[vC Luհ{'=X  ߩk7BDEA&X/A1݀I? L/{m_]OuLBGLA$X?A˒pn^шzҌijZ4M_W &prGߙ{Ґ ̧5ʌADfo  ); FXd9n?O@e 7 ۙ:ƓPve`em pEX\*&鏓  A%r.^x`s0y\@Ć`jk8un<DDd<1&^e܏Ezu?g Ksȸ gOe`i# a01\ g?u=Ó7 hν8Ffz͗]gz7_?3uUe  =^!AAPK06a|CD0ۀAzAAv~4s bn$*0BFDNA/wI-Vq45380w`zQ}&NȈa 0#" kCpg+{w^&~a v}D*Tln" ~.kBQl.Y=6^i\ " +Pl}7K? TԛP8=,ox : s7x`iA<q8,,I>(9DJE|{pV泌lm qGo9.B  7X ,`Uv'KC0v@HN|\v,}U[iaǖ]U1eᢢ4Hf0 9mH$" k舨bmpi!M^R   -Xy )}r @HvKEEAį, AA$X$XAA```A   ,,  HH  `AAEEA-X;x$pZ'ߋ CFI U'w7|p @`A t]q/=!D{v""" ,N`5gbR@G;N[1J{}dI {ރ̰v܍lم|>:v.>hx#;`*fvD:Td%h m:7_ w26ݬ``[n|XoGTR6[^e ,BbgX__P(),"">`TTeG7ؼK]uHN ]0vGHxaSsY -(*b'jfp]$Xl:^܂[L&HjʎÃA"/!A(nWBLDt6kٟ_> ˸bSG`7.*xY/|``.Y/=7ŋ#JjP<a1yP;kdnzRތGyփL'7)X%Z8}ZZs 0 p^ VYb3PUxIB('FE$X+ Ǖ!^HGa(=W`n VN'ܢ%/b6bevަ?C).Wo^~^ӆ9/_ A`/,ʗ$XcvFtt,n DG1 3=:!&md_%cw|ZK9$XAE$X_˯Y7`Mw8)yu!", `$XA`$X$XAE$X  ", ""H "HH,, "HHH֫rVVVFP>SH,,ւP(/d  -AM {7  AALX"7>p @`A N'N ɽ[5Cg`Ir`DPl↶k<v'XZWqfH'4{I/ݯ&A&&^H5T$US-nJG[c?kaKXgr^aeu c  UhLŋLuUzj'p?#+s אS(KBum5(7ȫeַ[^F ၶ[0[yfزW1܃ ' W$aU1c<;҄`8xAEq0\Ͱk;Κ"]dDayκ =pT̺¡tTnyJ ;`_6K#X e`pXYÓ|4"Q^Դbm%X]ätU?Cy}Rx(=h+GU(^O"+AMFk1™YO:ghdw8j*c㝸(WA`}DNc/=K0T_MXFғgXZ•.C !-$&fbdc6S s&Ce$Js>:)XEIwr1c.'|$sh-bi 9՘l\_g5*0Tv ڱN %,=ilcY:V߼:3•wf3n%\ɅJkt+B7񦬵5NY5te53fu8uZ_'"BE|vg)(UJ5 +LA$X$XAA``YIA$X,  HH  "" BEA$X,  HH  """ , AA$X$XAA```A FGG)aK_Nv\غs/!iK V>Œ_yg:F 籰@`rryyy(//d B<Wr+ѡ8%m!qk 7% ~䋘g=WO Dxn[;z|*ZVVVF`nndI&Xq*cqF\ Gs#@ \"S1uiy#eVfQXxGVPQ'pf Javq/V*ׯI=bBhpΨj*#YDDEP4~bY.Y܎Öm;I~g2sEhl˺9ʾG/7) r&loޏ/u"qFp3㸠j {wOE ߺnpFhh$O-; z"Eht(`^1YZ%:iаAzO 8_pw{ahǞﲆ"vņ@MFW93uu'W\}lc?r7/R,Xho@|mrUzӽ5HyQk+ak_^Hu-]^tOG`ė.Xl qeqZ"CCpRI -.{מOJySx?Y}g˖ct4dZDŽv>x^C!;ggmc;7x pLqػ$2  ᐶ+Bj[w@ <Q7[VpC7z :hp-&MɌG ad|zS^^וL#X}>F+U4Ft\`DGUGu$ƺ`#X֮W|r f'قerF?@p n݂:.`/GPZumgFeN&=JFE ;P;Ź7gϫ19/G|T?o2Ҵ5_[pQ>F̬q= Us CM{ȫnE޼ۏ.)o9!4<wkQwL-qi)JZA&{[wu +3nk q;T9f{ Z^z3H uGq.qErL!X 8r: ]ǽ8 #az`1Nqa>pċO VحLθ6$4~!h< {7J][xX;oy!X- ΙeW|koG ?` V,ˬg*'Ѩ-c/! 0lӳ;.0oЛ,L=݄+~}}%CGϙ>x%YQQQg? /&XK\edGe% uU= 0 WO'EB!F\] ev ++/Z'aC`]mU- ڜӱa }]+8!#^nIUǷ۹q&!̗aA.$Xė X07ڊ4^g Vd 1Dw"fW13ڏ(;^(ܸi]1|Cj/'ʉBEk^Տ9v`5.$lʌE <]S[?t,jkkCmm-݃EEf^/?{ p{]O,$yW$Xįe4֕9^"v+ Q9` م/x' wZ0=ڋRf$̸ܸO 1KxɥO@;W"lAD\. TG)o1n6`=ϭhnr'`مtnb,,W :PTI 7}c=wXF@Yնaem3lzJL.ri,70L,l4zOwd-X1P*Kzb EuXBG&[J1<˙ Ylp&^m{uF [*r=0م%wbf>^-̡]@Ek``EdL@E  AE``   #л)o>, """~QQ(·ޟ k^ HH  `AAEEA  AA_`.EDELu3dbae/U}9ZW#ZV^blӏ{kx}}!ʋ:Μ,IE۷K7džF+A`\q*!(&:n  g1Rt bhxK]H: Mq`~>Ykb u ^y[; YL-.f:O AkS9/^}=.chjsA1tNbY+(ldOh@BL05mh*Shoi@CfY1[_4n btl}24FzPWWmfI#f+sBsS#^*6a%r+Yoi^GJ}>B]$V_OFr&;kpA&z&0PIJG ^6c}e ,Cac&{kpG)jg~)m|6k=P jC#e=DbBq#5a=jr3*zu U)be@*#!, 2SݼHF2ʑXԉҜ,ayz2r죲jI:Ffft5 qw#h(#8lBfI _33< o#Yݭ)(A.#}s+EnE=eOQ?:")wnyi)]Zcs>ήGJ~9ې0՝#t,X'~-Wo$ ?t>qcs {r*1ДeADAJ#Xyׅ3 D{c?䊴0P>m+8)eh\ =3-*$Psp3d1}$Xߌy<7+z';z*P5U1B4քPQzF[K\X%` k0ﭡ#ex9LBQY Z4Wuaj6+cszM^6ZGfW9,Ó"Fhz5(oDjcbIx9ʪSAzSq.,1MS(D;#X=u*E$> 2zyilTUxqe=̺ͺ׾D1#uǛ]Ђ;ik}.cjiO^E^]/3wv mHNfDo@xcD$ L cp[)KʠS fQ5A `33]vR*N0oZ$xZD<{s07` Ǒӗ]( -w?Fe'uOmGZ}$?^w0sA_[CQN ?u̎iF" :q?%sKX[ŋlfٰUYH|ۀ:!Yx_چg Ƴ.bʸM@Fb *;ïfPwn,DEᆰ2d=+PRE`~4 B"*M@l'wTpC&4ey8Bq3pl읠}߲Taa!yy(h>ΞB`m0\#3+GFO~=ك6T^EnH*Y__P(;YYYa! 8t0^>qʟ%yZczp1у|# "pQ(I2ǘyDuNMJW|&=Hl͝0kA6 4&|}Cp7m7k hl,O=~ٸFT,CP֊H;m9744 d.-CD_ Bzk#v @< XA~! ,w 1WliKp_d텎[@p20?Tlpâw6۳ زG.Z#"Z r$XiX=e!PZRm_T7x܂1ZMYH &{+`njsv]B$n1犺Dxڡ ]蟀G\ggEw`A`}Tv%ޫ>BEpt/"\߲mI=8Bޑ|%kP!@1{+7WyPTZt6U#ɹt Eڦ`db`8bxn O"Q1JZQ;Վw;Tb>7Q[Aq9X[C#:V01:U,,  ֞C`[`Kv~y!8~pK›ݣ' {3,pbv.̼ =$Xeಅ #Mz5 v;=\DF =(O vasv "eMU)[4p%< ިHC:lkz-sKmq?NkzcJH, `/:+Fj&q?)R:S )ťy\FXL%x;瓂rGbs.%V€oGZaGTl,װb}p \{^+ۜqI+]'"H H>n22Z`f. >G t~W$%MϖqAN<-ߘyy *dKΏ );#K!Qo!S~o,vתO&FI, o>OX7@׿g%kkX <|{G.$-\sav>WMf%AFC8Bx= uL,x+}ߔKV9X%A13Z<w k`1D=ˈlp&}l,"}%=7jֿF~Yh&"H H6i玈|x H¿ҳ~"B9$X A N`A```$XA$X$X$X$X A  " %Ϻyr" "; |(8EE`A`QH, ,,,  " `$XA$X$X$X A    AEAE!"H H~`qlƧeZ^+8<$X A _Na7yBʄ)=i pwޣ:PdSGA " '$!z".IXع eqFVQ P?i#8xyD_6Z8%czPFjP`X訫ⴾ=lakc i1)q 4UOANp%3{0ԏc .8#OEh@Cg.A3FNahce)Q (Z^SS7 AEAG`2ceg+km41v9C\4)W%j1^a!p*|$X A ֟тqtoMUpI@^MLqʌ;=G(_KP;o)X: l؂%}ڈvGm+ K8HE`A`q%ch┾=`*P7aw_ІܹP? SpzPE28oc,i8K *v R3tl!#~m!'̩)DT5)=V8osGO048>)58z\(SYcvף% ,qUq0RG-X A (X,  " """"H H($X A   AEAEEE$XA$X,  " """HH <S"Tp0{=˲_m|>( H>, ,=kK+sh7sόwPbR9(</ AC3Wb'(.〠(%px L;')9s.9XE9 ^^~g~^iBO[Tw iK@29u`=Q}aVXbUg!, OGpB/ S78BBr%Sk8{4`agkk2eXe).~Wl <;w\r5:OG*%HJn ,,{**qa, O,!EZ 5A@\ 䏞o7.[?G1e.~(ZBl=}qASAm/j Mc\v%}WX]2a 3 >i_o7f^[xxyCF.h<3G ccv8qTma. t!$(HE`A`#Cg\ut㰴ԡ?>90rc I[;8 >Ym.@l\>,:Še`n.CPTG@[kS4E,%鰧3uX ]pRNB".C}\5^ay!!AEAE"pA24N+c, ,,z( AEAE!"H HHH, /!```$XA ;$X$X$X AoeeeEEEGSS   AE[`I$Z[[```$XAX}+CGbI  +䜢P(Cވ$XB8ch~{eahO.'CtQh6nP>"r@\&vnj~.2 -z!hb BP>/G)< KNn0v% HCM68ssZ3]!'%:: 05w#dń7y+/hxabk;Gq}h_0qp3ˈ3d{mdmK[+: #񂑞C+ጞ*NC[09n^h83ruƱc0d͞0 AAO4~ZƖis~1EX٘BPH.Nᇁ]TIC/Bᒃ/ C, No G,`%9p OXǴ.㢦*ԝ|p-ve Jォl !(s<}:07хYc{RG## 8|DalaY58@B 5'(>,  >`I;㰰f Rr3C@4.,-3KC@Nf&`:Ws(Y6>e묣E>R/y8㜱3\]pꉟ,}Q:|0p83c,,qLFYFҧ/G`Ay_A5Ord`c)EC:A=~`F 0=3F0+.PeTgdFg z.2P8*#83u;p;R*,9 4OCPl3K`Y&09< gGFٮR$l`>,e4T O*?Z,RRxyf:8 O|"7@J/g}RG $*#,ލ$nug!C)K,Y3eE29%\<}YV]rSMEHu)Vc~q #աKK -~;wc|~ oGR X[CSC5Z{0>>q^@Uq!:G85 T棦gk hkAes7*p=ZGf03ҍja OŵXb=6Y_}5^5RƴY7.:45"/9CEe%'w7rff]E7->`94FLLO2r9q t5sKmȻeObٖֆ TԵai}3nCumf񚕅i4U ~xIjTFţy9(bZ=cRQ߂9 NWzn C"0W[P7QnDEM#eW7lu -5q̮ [b&0 ˫v.bjjoFQ܀']80S"qKk+je׃εy43QM#+sv iYx瘚[D+־`)\_e1904ĬL0;tyf]VOf7ι*edyz/O>/=`xQ|W{(Gw/s[!(kAFZ2#Fx6ҋ][2䤧qq|\W˪')‹̻xRiAiFƐv 5 .%=xrcdlFGi2 a Y:'&O0:KEQ8ƛ^2u.ǫA,F[_"e'S r0=90ܸeMh+BGyfڐ1LjrEmKld$ad|hEn c9곓Q7yȻ+3y YaU*JE]$?L:&;ʐ_uYhc9].N 9XATP(nODAU SQh-ǣyӏa_b6XrxPi]B/S!ħʈw6X$ /碄9V^sι5+, as_fJLDʋ3ܤ_GVb41# XY]EgE> yd+11܌Xey_Im/z*2{sCHIa],*I``JsP1WZghmER #+L]_{}3/\iYf 'q/U+³> ls{x=ħde 5asHIHD#sqN3_2g+yv&3r9ɷӌ{),Z@YS qERKLύ32HM*ƛ*d1{F)Pd>L8S `+ f\Q}Է6;蟚Ca]4O- c4Y`.- %%kh`cvOou3u^3FzKYef`ݮxQ׷q<:W3uGqJ(%3KDDuCV45CȌ>_2S;oa̲"e$X\\f- -㜲\I'f߳4 si,BfY7sLFbU)bsn0AEEEvHLRRj;03Ԇ>⌹aT 1%4#KHINBnQ=z{Z7zPOsJ=9$#sX~=̅8]`.T܄ ?IGFYOH.Zj: e-]h^69Ąq@̭yltT3zV032$ĥg +HmsPl}Rp_z- *, ~ie0SeVz[\faFĥN&".*c#(}E_[=zq-}) MbyqjJQ^~;QYS4`h` #=-nM+>%`e8$?HGj5x9: /΀$ 7W3h}RqBv7U,$%<1.yHhYA-lVrn8AD %/;3ĥeA]F#X'{1ay`uW}qJ,Ied>gZMu!QPшGӳxmH-iBݳV~%]xzLQ ٯI{U%+{"Tfwv7A)pt /Dގi$R>۸-8w/ब8κᶗDNݻ 8j1r`+zC]Sܺ|ᇲ_܋e3HorK|7/*av#XgӇX]Ⱦ#Mׂ . HE|E #z68]GwEu 91 h|μϲ^ WHL+H]k8) SKh`e18D{) jZP4 WAYk]guHK2IK9el_21FHj +AA KYSD *!7-XᦫQ RPE|z(0#^lb&6vǡl}9 &~"*"$XWk$]­1SkY@JR:F禑0 #K+xkn&f&x}HȨs9IINq$GĠ߾ KtB..B@$\ 8V畆ĄpHVGh8LʚGdd>Q\-{/f8ֆ7 C=TlA Ɩve# +,3[HBcacKge^N|}5ޅS84<.\OکV]] h:57YhfRc5w_2Y4vwaj| m >`}RQ4`%'ovAT/ YEe1``ݰz5e)Ac`A   ,,  HHH BEA  AA_`qAAs_D  ނgUٍak[@[EGB6k(~0OBz&$X$XA,u8ꁗ% CH8]Pf?eX8@y6Gⲝ3 mR$O ' )X8gnC8yX2]:<$X$XA ;.CDOゎ!luNBJa.xBJ̜ !"cZ08+^02ՃȆ`)]!Ȝ1…0 R  AA=9]65ʜc 8wU(f^8uB vֺ"|G`S.v.>8$%O 5""" `IJg8l a4GD5qe((=D``ӧՠa = %ִ6N3`V3y ȟP8$`>ᒉ ``AW.X"CJ^C`\˫AMC{c%䡢qr!,.ξJ64!f^ȩi1˞#o'ԙqXRIߙׯ_Dg/&XkXZZ"VV><7֊_q,"Ig>u:/&~Q+˜.--3E&Z'>Z"{+?90}յu.-l S:VWWF`` ݻA~ט}OgmmI H\-y[@!cp+N%alCZA\` 4-Emjav^~ DB,& fД{ 6ky7 YwL*SF?ǔꈊ d3$aGkςk|SӅ,x9#>< >Y^,ۀx~ qߍ|05?XGz:ᢙ ^W7 B""E1B`m}H o/ŧar~.pFZe[7r:Չ?#Zsp/~.FA∐ GpiyɓޏK!jnb @VybT !;+ϫڰ`M5#;#O2H HlZF@Q1GOcnwU4sD#Y5\p3fp $#e6^^`f2<;Hh]cXtfUT=EV !=0?[![V + {ۂ8rsae.f_ŋ;,Ud,| Sg3nH\IDAT JEF~3VP{ƮQ_ckў([bK8@=#X~Q0k4#X2Xن`| .xUUC=‘Yނ76܋tChK%}XL-ܑ[\jFXF&rpnnˌbFbF|]0:Ƌ wBZ4FJ*fmz{ g5::y>&zݎ 2?ۀ8W?4W F1|m+|` 3f +'w?xt,2^6o`zDGQy $XA$Xc}]Q9hˎDxN+[,{eS{V Z[[]l`ذIa=&e >8S}_1"&@u"YU=雔 ,&)Ɨ3a 1шDƯ['?   C$! (8wA7㎪@VZq\ ?$X$XAAзs)qBU\6/3WTqFǏHo._ ll, k\x\'z2 .%}<8 $ )fyQq f:  {2??uA'1 hkJlq=ܝ-/p^o ;7?,AYBIR3'CGH H'z.8)w.2ê*l"""~`1X7ѣG'׵UW sp8N3 `/, !v *i]lmgg(KZaa)\/?hC2k^#e$Xρx~&---<#S͏e+SP7I; w,[\(albUsFalo-~ݻ{~uo[wV-CA'd13133SvvoO'd2-tGGjiʽswiؾa f[sbqn̘5sۗ1kJqf lZ1sJ#""~ h[d2R)w VW #E__?4jTWQl6~X ֧CIf>b£Qk_*$&dOC+ cp1޼e8v.؄s8zbuܺ8+)c8v7g~˖K#t-q۷oŁ37q sl6LK$X/==77{Vuu5?$XC]qALb&Dnw "&XBGCA-[ AMP'V10D >ނE!"F% 3j Cӆx0iz#X%"92][Y )J'XZȇ}<ȭ HH,^^^ܽWqqqhE `?r&zJ`!q|fb zN ]$XA$X$XWhe꧹rʛ[@ЂAM Q[`$ٯDeY#ȯ HH  "" BEA$X,>i455" ""-ܫrԾ&{m·E{;AAEE"h_}a _~d{ŋj3A'{̅k8y$%XvaΜw[s_ V p"&'1W=%" ʸzm>t{mNMqq"JR)"٥ ")2!qLŀi *KPF $$uQ$3XA`Kϱe:?pg`ص{'fΞ˷lZkvmǜl~GrV\{l3cɢ%Xq…d Vl؁]t6٫g0[•{pUL}gz dfٲ֬GYYDZfjܵ-ߌ۷`fo9;K` P(p-Y@Q0T#/F<Jl!BKbC]n0BR!im}LĈ~xn.(SJ#fqr6&Zp~?w{on7Þ;pE&4qlܶŅ8{;ځ ׮cx46|  i'?ƺKMس;q1.;e֍ز}',Yo`Ux!vġ][3\;[]k0m֗?*XޖϐɫD^j$|`hc8:P[b5vz@> r'K gOaig3m衕F 9v]sX0g>N3 OsS2[ ֒Ep]\|-sOb<,z}?zm=LoK8u.ݸH;=k\EI/XjNVsm< O2z 6+OE ҶdiI{OT|mQZ#?/!okў.ȫjDMQ ŠP xDDb8 vBPX-a)C?]#$<-cpV8u6y1mBl9s;V-f݋0ujN^}#ش/`êb.]:}6c`M[ y8Ϧw6޲75k>oɦ8sNǏarN.,&"\8}_sڵ@iF,e+H*!>hEjL{:[ѢQ[R a)HvB50H+ fa̛g2(XdӶ$XğwiPےUVV]2>+66E__a3}~m@O=1JF8; i"ta=PڤB!w@4Yf Oo `~A  AA$X$X$XAAE!" oMY1y&,  ~`X8u MawWc$-@O_/2^ CoE׍~o0?g{f14ϖ['_?= fhaի?زQ?y54OD5}|?4v~Mvbpx<ܒIvd.:{?Ǵ)2yrqzﵦ}=淊4:z&`}U͈ X4TۚʑWѝ}m->ks4#92 꾟; yGTC~J(zРȉV!Hur5H~'_e-ߵ>:Duh5}Ɯs  | 5B&ȉ s_O;hjaHӉ-??B>{~:mS#^^͟2/ ydExiGdq{Ղ62~>9Fl/Z;>TۚP'߅ 'p N-/^Q{nvzGg S:]7YFW{Af7w CÎ}DGGQLWK%r*V"3%%(ʋ3 ?؃:10}kC}5Js4o@_' 2Cw|b9D@Z%; avHشO.E#_VV(d&!LJ}-B7ftD'C֎f6?hlMGh_P+C{41qd3,ɌFtb6T=j_ʕ^F*hW!:&1;9i(q x\YUA3\L-ml2]ׇMqONgAjp$2SC7hpl~Ť^qeLh[MŰ7F\q [F^e38@ea,;AP$y.-OM ^Z NY .t]'Zm)Bt|hQKCeZ7ЫmSM(IBfQH tV,B}o]K12a߫jv*dwO|n}FMrrshM8aKPƖq6xưw㫜`=%l_:NO^ CU¤Ʌu6 4Ü24٘*⣐_+Egw/kaf!|cGUA5r*-EjŠen ᐴIDMމ~6| kՍneQÆU U,FV+ d!2 TgU]ZL4 %4 ^n9K^$+W&EMl4 e0jHj^< rS |PDwoTuO*, zaZVA:j6*!rV!'yTꕐG/ mMM*EI~YppvB[&ͅɈʯAA2t$2F׈f6oyHDc['wYWUiJQ5B" a5,pos$4 ]5pMDi<6}B&Hw (wObi^Ha#$HH_k@/CPlj~,L}lCvhrzLgˌ(HjKDWWFki:B+$l[JGG#|VkKM_/tӣh`~2TvXD9#0 Q+u ۦ6DLXd-y}*V_"oCL@8r$GDud, .yDx#;%5ς\)u9TՆrVbHbɗӰl4 8 ɿh~17c Ko,>w^>~p^lM78#0nT,ݲ{F&an=s⹋p gM?M gwn8gF0Qo?{q/['V&OúJo.lm-O7z &} =tWB! ck~& 1*G-;CYNLDBXT3ukE%C\X;WŰS|vƞf £!D;6u!/ Dfwx'LAXYt"6<"9rC-e෠MTn@2Yk.˅H,nDCѧѪ+UӫʐM; Q<1jP*i Eah^{}.3KQ Z Ñ^ kűΰuODjVnD&%Aul*CHBWkL( E zEȮkXB*&{#k$*N0Q>dĆk z?;{"4%*v H-s*fr^'h C~kYUiABq=D%0a}GURFxmk\#}^"-g oihKGa"CُlVX]ˏ[P3CȌ$?yb P%@bJ=^ cۛbDH#غEC? I嬮js;5"ز}},-RD3B*['l;i.DHvH B \ r~vq5-Rr r*[8%GuR$J]8۳yFne03 uJv P3P[$tBSn8PkGw%f+ƒM "* h` ?5nܺ嫘8u[a2q {vmرrMÞçckJyc?|P+XWw, #;?u Ģ8:.sLF&3nVK'gڔMoZ8bǘ8og w- Xd vtt!j8 ih#HԂn9;M*AkmSx\BSQ'Ɂ7w /@MMG|4bW}a"evPMDH uG{WG%"6$FC V8ly1ȄC`|Ln8I!lDvT!St¤;$hd|a-gkU+a#77!%,|I1b; & a; pېJJԱUlN)ZHj*GZmD H;|AhW6#<4ºj&$yQ$ "V/)] ɪg6v.e8T77!&,t}FTE=)ul$f wCJ`WrP B @v꾰F^lU"]!CuN 2K i!н^v΄ƲynfDK/f2!?2)BٲYA&,DlZ~Eyȭsu@*oC#?I9t'"QR߈f\B&T1!ՁF& Y蕖e|FG:\D%9}wAP0a~ь,ve16Ȓ &oznzT6׫FVTF Y.N]{ƄkdE$CX]#7TxHK'ENW*)AEr."> xEHsEKP`v2׭m˔ l{ʬxGe N8j Tne X}.Ax|: pH&M~l?mTrTW0&lUm0uMڡ!5b ȥHr#^``dnrXk”-QXY7KQZ{6h[h-"WjZoBK67jP]͆bHw Xw d%. 5U_ )oB>Wd56''eXs7=eM.rx(CLw %|Hbn"4}3 l5=oj٩kQ1ЭBI>~M*{ h*)$n(7GnPT5T"+-m<}*CV^d}\w>Z+SրlJ;DC1A{konm(.^* __ AQ_Zn9hQK!V棙سXw-Xf"yeiTwwՁ\䳃Jق֟pKͳəDɵ/&"4C"]uԧÒ&cض^ׁ|Vϣ2Do^i 7=]DWW'*S wIۛ-+qIí吝s&tb`o;mmIwXEoM/,EiE JVf\UB^X8D"/ym]twB$q%͍\iŬײyk}-l-n~@W?Q/d,#yEelu߭@qn>̨x~^F}`~ UMo^.?׉<薑TZ"MQ&;Cl,c:VMݪ km05zGYb =xYl ּuW[ivDn8x dž0a_`A1*ks9SG~ ׽_pY˙`z๙9ܝm,=z67%`kcF8y=NS^ =c[0kq8yๅ)\qx*y ;Ny0,\aja ;ټ̅W~SWFlz7x,  FE DL[ƶ05y5 g`=tk%[|I)ltcɜYǘ8kk_y:.xGA}0,Xa*诧m5,\Ϯ{-X[<ĩݫ9 K'0bB6{$|5clM`ʌp]k?D,  IWcbކ0{w/֝S;u/qFęXaX]d#Hq36͟`:fz9 ֮qtrI-z\[aoJ0႕8zUOdj" bTXn+nd9p&/`ꃰ2͛v378puؾm5Ǖk0y a=uWSax ֳ~3Y ۘ혺lr$ =ǘL=Igbv7=5  Xfb8uL7 KƩ3gzX>zsc8̆;gkv$>z0&i[ b:!bÎKѵ`ݿ=|T{ Gvn-XF?>RnXSbccck_-îd[eTseG,  ; F<.[2XԀ=blVE{y|38W/ էc7R`!6%.QSב2p  HƂgWKb+Vqĝ V4O1X!:,NêZY5_*\`Al6aJVj0q!MWuq3 AAj$Y~kkQ%X{h`We=xgc%+[߆/^{(ے1-!Ha\s`1/^ˣ, C5g ;#?NO{3w ֆ 1fV˰<+0KxcCV+HuAm NvA3G{%laeldeo0-, 5v1ZoLbт0{ .3ù{NEY| .%]Uq7]bulR&⫀ |b3 axxecJ| ?&'jWcR(VXKX , -Xp WOܺu&fX`{~=n2fŎkθ}`LoNq%]2Nozp m÷o \?~._ I~e =  J5nV>`qqvs0a_[}dj#0y|77 wLw6mS;ֺ37p!&&1g,,, { ַzc8yòlrnuǘ8mg6GL3GFkƺ}0¥1c4KL[AAޥq1|7/Bok͉||+1n:Ɗ)a&LĂpƾw0{O;gI~w6iWˋG< ɵrڲ weC+X ҖEA`lL\`nKf]c7cf_}ӭpߌW+B  >kŚ0}&N,  F`QH  ""   H($XAA``AAEEEA$X,  HH  "" o Xj|؇o/fNFEEAįgwP#W0wd|=e!Ο8$N\KR(P*2r|BP(;RpL:Sm=+ yigf hKk:6GDR>\ qғS`qfm8`2+ūkd [ C3 cuSV|qxrpVL ob/C[Jv( B`y 8ypϴ`MsO`x=,,]=)≫+VM[ܰxfOq'w`p” 0q%8: ';L,, BPeKpů,]M]a8v_1=<3&GKg`=yFWңpV#L,ap,3\]>1$X$X BUZ^S0kk$?Y ~ /ٝS{a`9`M^L-qcܺ| 98ob IH( B57=Hy/Ehw8cʅ7i>.}nagu Ӱ-~) {Ɔ[ L`8>wupdjLZ Gҕ7g ݂<ѝ1 l`{6ㆡ==n  BP(^0}*,\Y&Nlr;M;ᡥΟEBP(`|7u!v:c'Oce_cLIEPԐ~BRNj`8BZ FB C BTFIӢVQ'zȔjZ6qc )SP uW)"SBmhnhMlS+!Ҳ&'R B}BR )OqCz! ɐ)T~i 1<7965 6@)$B\?O;K/fHnoj}Ɯcd[T*~6~ d ŰU9aו稕ؾmx_dSa$2CT-kc' Om *֭hnV)/ۺ~*U]WR'"KфO?rO>Ie͟acq,|#GL( 7ď]&Đ006*kSnfNܬT!Z!RC]p!# $W0|b#l{ J {9rxz1 3×5:ҲtYٽpϨxG\]U`Wq<Ixҷ;8Д}f7#q?M[WM}``9ΌD0Fq\e*Xͭ*#*p WƸgB)OvTeG2`晎H;؅sgXX9'!^sKP$eH·6 pGmV7u&7qz>uOőOkʢ8t,._IcϹ8vtmqܹzSaϩ8IJm|Mc2GNwp9:s lØ sKl ص}-ބ/w;{/ [t VbZ[[Geb7 BP>w>(Xs] 3=Izz %,`M\a[?LƓ`껂7o 93az&1A?s-݃cX4o6fڇ O 7^'Xk^i1~>}%,l=sĕ+GqU,\ m`O g1{`i_LhFe=ZBP(ϝ^";o__"t~َ0zS'+&Q/Ӳ|I[2_]ga[r .9{ fNä[qVl?tl;LkՁ㘭7ʼnYYrf?f݈cG醟>SlĦ8 `Jñ%Dt DU1.ApP|Q)Ra| 4>> F^nZ 䣓6ZʯLnTfhRK(V!Fa \r (YghPu:]-ȭl43pO[{U"<{bЯaA~Z,7!X^x_u]=NXVXŠM-Gstۢ(FB^"MWKuEi4b FVvp`%ṩ7աFMs3Js`ɾs#~"X}̦䈪VL%bFZ"/9)NS4ڇ/gj0OB/`;x$8yL5ĥp Ecm, B҄6݄ 7DIP\46TѽwZض A)kB 3!(LK:z>{  ,v*_"*t Wș`;0*$[#3'(;~ ,S8҆K]aBX߸G>:m*;C3I].,=\2#sctVQY'Z^ c@8;ain ~I'X}R:w$A CKt"?Ay|x>||ੱ3Z: a8?@@b>Kh VA gͻ(t"5}&<зW'?,rI "`Ga xFf#+9 Qg8kʩQ($X_`uYk q04z KHZ~`YZ;Xa `)[z;p0^cQzE6,Xm5|2E/zr1Xc@{aY49'#XV`u+ KCn$>4eT.Ex=量-'XQ,|_ 7A뻫cP.! 0n|2 hoxdT# Y-!} nxGUq0tPX( 6CDe= Ӡ*OxSGO x7 6vnT,5,]s=Ԝ; \L.W o^Zn?5DtE045%VO^ CHt2(tMCKYYC,:p5}}6-\SX;hzeϝ!%BV^Z`C6/9[fNaN&Xq-j&F&^yzƮz{sF_ VI(R4тk6 Gۧobs3gCX'OLLZ@E5B#8Q'X( _, +KTii a{?= EA%?46{)lBL<0A```Q(|gV+aiicS[֢ݽzE```Q( BEEEP( BP(,  BP($X$X$X B```Q( BEUP(=*:o B|`K;hE[ AEEEA$X$X$XAAEEEA$X,,  """ ,,,  ``A   AA``}m//Y܂58K[S0yhׇRn7vx;L$Gmq4\wCXUCZ7 bW*4Ch^nii\CP.q.düB-%wDZ,<7 E  "SBU^"LgO3# x'8W՝Ki ƨT`D"۸"!ȬAY7;MC5)76hW܉p.?BD[*XIv+G0A m<#UZ~`u`icl Lgk~"X5 k dj'nPkCXWXF9'XaE2n`ٹ 2asKFKc pßJ9F W, @je5n?b+? .W]%7\WW7#* G'ګr:R%U06C'=4>Q5%??.X0o y/ɂj,%ak%` tž bq& 2<0,36zj o-2Di BͫAY#Q(ZlGU Xps_o\jDDRmU "T)P33+:Q͎\=b8qX 64%pd{ Iu /M%Ep3$>ѩUhW4 6xq0s=XT 2auխt#5ė'xtZTW';q#X{Xhk@PJ9:Ubx/!DNB]Lz¥9vG%7r P!,`A   HHH   H($X$XAAEEEA$X$X$XAAECCC2]]]v( B! RZFc?ZBP(X ਌kBP(;$X$X$X B```Q( BEEEP( BP(,,, BPHHH( B!``Q( BEEEP(  gvi |]u'vH$*!̏@a/@:{RՁNt Lh4}KuO,o@a5Ȏp ~ZDg5d^`uZ:<-rK_+N SjHtb3#QH}_/r#K*Ac?`59㚡<}V&a>j=쀤G`m9pš >u*[ w;hЎ;0rqe^XOr%]\or|h®"rmcugݰ#gUV鄓AQ Bv5n><T"a yԕ!#TH9 FMN$9 c0(:>*Xf.#ݭɰKE{k, b +doM% sp8B,Wo+xKH/q*E\Mp̟g0ƽ[O-nF0~f R]$igxbs (^DY~پIW3rr¡oh[<| l`f0Oa0qfi͵fƸ L\'CE uuCφGx'ۖ Dn-UT)wC.ȇ Z3u|BS=P2rc;d#X.%#4%ܶ >}h*MgwqPVۆ_C;/I2}Y GFpGH nwZ\}ptpUHa57l Y Eom;>m1vK`%T! ށ ýkOQm`RZ?,XFKZGE鰰FqL#"2r`/ʣ`RDARBq i0xdEYpaOs[t6!C#j'61nHH>`K!7%O*Xf@$oGBy#`444W`%Kv Val|QUZ;P2zaaY')pՒjX=G_OD:`ۙ"NVuR V_'M$*' b zK-壂>36[x:z7=azͥ{9!x`q VW_?b5L4bz−*#ϐ֨O '}H{єJDYZ ,L7?u <+SASM%|f OVX< .EZ#PUNݠfemjAD/,+ {H0}_TI݃R*t~R%7ץF@jA6mT oԊ 7%zp;n|X\fi7#D(/ܶUF(a&Y]ˆ` 016y>kBow\"|Kz\_ vT >r+7`['p*GF(*"?&X UMm@*wm?Ez:u>a/ V P+?.X@Ln)_5hQvҺ!"?]R Ѥꅲ rNS^4g=(KOAl~x}m-#egmn")>1y(C`/ͤS)V'q~%ԽR!=)M+j$d;QWBRGDE+Լ8vIU(jD럙W ~-nwIaIhnCyp[%A+Q-׿ ىtr*t@)ADB}íR:n>rٸ(@hG:QU,D :ZP)RsVҸiŧ\ +d믻Mz9l+jQlFDAԮ D$VATB ʖZԈt~U3JUKؾec빭 n_YQG/2$'İu3rIBEEP(/&ZK(:zh`QHhP( BP(,,, BPHHH( B!``Q( BEEEP(  ,RQyP( sZBP(jrK;hAA """ ,,, T"/+ %tEXtdate:create2015-10-14T08:07:03-04:00 N%tEXtdate:modify2015-10-14T08:07:02-04:00&FIENDB`assets/images/accept.png000066600000001415152141651120011263 0ustar00PNG  IHDRagAMA7tEXtSoftwareAdobe ImageReadyqe<IDAT8˥KSa;vvl dD!P{$; ż,Kݽ6cL2r^H)-jsNm֔2qQB̽BatoL#z {q' r=)La8,u%2Rg>ݾW ϛJ߸Pd makD|=G Vn6[Įd桚(Pm.0Q`'Fb#&ܧ6aP׏Q12[+zi; ]C17оpI9̾jD}›?7ayze,hXAK^3*bk @+wQ=!}uXzq:g쯺n= :d+_GTA;Ր Jƣ.!P)5!H:epր"݂"Kyw|{H2!i~3z_X;okBZK* ^R:O(jF*^ȰS诿_ gЬycIENDB`assets/images/pb_menu_icon_bk.png000066600000000455152141651120013140 0ustar00PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxbˀb'4}@쌮l0?bf nH[$>VM?)¢av/`7Hv* qa.xXK!\=yҀ<"E qDh? _䂿@/(&bx4:E;E')-!ĈcLN`J܁ pckۿɲIENDB`assets/images/black_px.png000066600000000154152141651120011606 0ustar00PNG  IHDRwStEXtSoftwareAdobe ImageReadyqe<IDATxbb``0 #rc\IENDB`assets/images/ad_image.png000066600000036501152141651120011556 0ustar00PNG  IHDR,qyotEXtSoftwareAdobe ImageReadyqe<diTXtXML:com.adobe.xmp Wf%9sIDATx]xUמٚM/PZ HQiO,|X@"|t ([ P)Befn2Lvg7ygܹs{h,@ Ž5+"$@ $!@ !$@ $!@ $@ @ @B @ HB@B I@ OTQMZ m VYFmƶD 甄Ve2T*BR$Dtf*daFV2xyd!a"EBf6#WtJHPYeYEi ب񼐐QgZF#eCBqB<1+_Aj5&lWxHQ*``RAS?*#*@4o$*d{9lZxIh2VU6Cy`XR)+⟥Q76.@ q2EWak1w?n23}R`DӔzP[L&E F7$!xI¨ V+T\]Ӂu:([q,wµ&Q/`䝁 Ţf9x8@ 2 q(}>he{|Ufi2]eXx̅M;֩YOV)($!xIH4^s=}צj OoY~.jVWPj4 ?wZAFr>VѲB ijMB/zrV8_GըLܤ)RWl41f%E[Rߏa9`6@ *!N[3*b iڪӹ݌q֪Rʋc=U-[ Pd2`W0UFs_#>0nZ ӏ,5[ݬijw,߾ פglSݭkVF٤f0vOJaZ}rXψoJY>P(wmW禁JȻt\@ኢ-$x4'6f&''OVtZ&'w:))Uƍkp?غc"ڴn O2m^lB#G/\񕿟\ Vpc;JψQ 8̙cY^NF<'$D3<qq L8b1[Nppj#!Z*g\sFaT1q7o4uC@Y4i\֩W~eSW2r WվI5S[}ޘ}i΍ >|YRR*IAͫ?zfv>i_|3X >^͛rr.]9gުIjb e7͘1FiJa)$X+ifvOZ C_j=5)xͫ|Ӣհ?7S~/lq]A_Jc"}w~kF#Q a,aRjla k1S6pX`@RdR< 5,bl7Uctm\,BAwrgcjzRMhsRϤ<Ȉy竅ʝV*ЫGCJhSȯYYYݻ,tT`][, j40#"F*z[ZHޜJwR7l߱cP?1pFB 9SZ1Yٔw~QUNp ׎]cfĨϦL.^^+5m;6|˨Ϭ% ҹFFi`(%jB6duZzPPc3*rdpbBBևk ^5Y-F{H]Elr1{8s6z6mRW+f͚cb$"99M<,< zZ://o@0$d0oL\CEЎsy3`@fMHjiS`[i`ڂ坙e8VbNNRє'}AP2 Q}F3AU*vY&aRQh`Gb{zSRAs0ZT}*[N=z,jժ ]G^{VpW^ij6kFex-!bQ-(w\ hױokփUDf}_OϨ@úfӘLI$NҴ$]&IZ Zvss{XY*U͸_q6ҕ[׮K8&cL{݈`viwuTJc,^5q 6鳷^n}yx̵jZ oݩ [F5xpw7`3;ؾm-HyZСmTVSjkԪQ$!bai ൒ lJjvհ&ߵuZXoTqu` fZM{I#GOqd—_vWHw>[ժ!}iS"10ԡsJ^Wwr~##&KWnue7=񐟟OVVk}sFNWUѨssϬ%GYM33Q8&!acm&MVUSjِq++VOB36P~=Fj'=9~?Y9}Njb<(Bh}S -ظ4-iDGǝp;eYZUz&Ա[򐑑sERyEi]v5&d13[5+Wk~>&-5֭ƍ(9a0_%%-z!-Z/BRjAZl$kJqZ^mlB 鍑ҴYӰb6 Plww jܦ1)+ &`nPƋ/6v/A q$yhQ#{!0w6U*V¾Wcǎ*Wd4 6n^`!!U:uTXӪTAMxI}~S(YB?<<=ut΍?n0*+eԛٽ+]|hM 7c \u )@BfL5i@0ܛ_Vښh`8qfn}Y~v.h~^޵%Ǜ{Hh1gA>ޒ,^tKg}:Tڹ^mU{MO;%̼:{$"򋫕 doEqJ/C[v%ߎHMXhb{ھMPBTku:'!K%Dr(սS {aYO;/ .Aw7&FSm|)̑QwޜqdLy)1ѭ\̜wrc&O{XvNpPI=F!bW[zka1rXg f</s歂Aƈ߉R *Nb/k7۴iޘw $\t.gLW7V5?qOM?NWۭbf|9vs,=!Ոa$A.ѶK_vӖ[>'O[|62fUeS3we]}HBglª%㈄4qKsL1J Th,LNfK7.F*D9!4]F2BTtxx^Voظ&9 ˜_l}_^>].L:m4Y9tTPD%p}GYV[m$\1% 6cڣ˪bYJUEt:(\Ri9ܵ;H]g,W#fB1 +32x6RF# A3eZ$feWðYYY? ӣ4¯~ZMC ~=&--`D[?|uUU& $32/_5n\7_D>`0˭)"n߲SϞ|չsf=۠rwN8T`Eq'1q|5楅-cOEAe3ÆnP}}%8qW-qK 'o+"uwhCЧ~^ZL=tS(`!lCU;tRk(g٤Uk&فs qFQI[=efEQ{1h`[db)//oĈ~H=P5|} ׋I]JӧR% 99mWj7Ȉ/o:F`}6 # HtizOh(+0G#FOCiwwg-NOY(sEx2Ν_ҩtE ?& 1SqIk TP/ۥlِB6:.0-<<<`DT@=ڼޫ,^yݻukjSLMKa 4h` {Lυ%KV,#JZ&LhaIM "JHaSӲ3Xe)c-RR4*_!^}Cn5w). A) N8Ƃ%X*WE-[*hS8ݹHVVaTާkTN-sC ̙s sjxwd|(XFJ0J3zIň۶bkժrG>r#ZEҥFH̲?DTl._m׮>==#**_}cNiSqC$t?F:b م wʞTٽ^iV~umUʇ/弼jy?[f"66 ~(E,@Pݻ֖ph$͘K-+ی9/̵,zazg_7Y\5B^%ǩi pJ8z4J9hJT)AyΝ\)"b=:R ϖzxNcnWbkԨF.wڹ H֍W=+O %\E|dϫܨT|$&"'󳉝zwwrbjemUz5f=յڿXӐkwhoC+b*BA,fY^8) (cӦM֮n' tn2Oɐ&V(y+ܻ*R͛w$zG)II$TyV1jcr 3懕fv2Ԭs7۾=e7w\q 7dff)),58~A#1 >Sj ; ư^M6?]X?-,QUNEI;bҼwLR&jʡեYri7׽kۦM 0gK]e'> `s,PdUCE+^N,ffe[*E|ϖw Xc[YCFR%hg.QAtnP'_ '84XKȶgrR@^.{5z{{kZ0Gi6+&%l`2̔I>\]nnwGN͎KhjHxyK[ӥ*^t!.4'Og6)gR, (ڷk ͺ{VЏo0HJK7lƿe5C}]-BoHHJx@ݿ?!!b<<pVdԅD>.Gbb Z s9n͛rڷkCen@ %TDW/F]ʹt ]l p?~ttt߾}_WVTI:Etҽ+DsޜR>sBu:R3fW_/$9997WQF[޶Ν^ #zզM{toS^(pLttcQ@1$ MmެBvVHX8kҲ={=C;i5ҥ'_m߼v{+@ >Kv瞢z'1113+wf*WǞ 6O˖-/_l)،G$=EhيmWa#Fo}\kݳu!LPj*8(R|썫ҍj 5۫+LhZzӏ#Zm~0rJ6A $s#&nx:uÙ={N0f͚!77R*bbbei6ipJrxӏ& PVV~j9Nϫ>ͳlf;vxaRB8%'eÑc(蘘[wR'ܓ~\ݽبwŒ̷GRK`B^{R2-iΜ?`9?w}fQ#V>ְ?z7eקMJJee[ bΞkk2M䒞βlΝ; D*V6l r˗*w7DZc*.tW o3,VTO%d6 o^'FrٹD}jG5~*cA@c7b,~/M\39|hzjϘ@bH~O&7kVW~YXQgdJtd.9>e{͛sbοBz!!9x9ʕ[ZtfSWlWھ|sv7nTVjWc.\Qbco,v"c}Nppxx3ߝ9+ZjTh~=(]W뮳]rLDY=ŗ%AU`ÇIKKNNNnذ#G:K/tvBxx j\WVRoݰ~Rv1Y%U+xȷ?6(^4(u>]<%1 :E ^nyȎG=HUխS^v*U*FBxY(TC8J jTLW2ټi_G_]:tפIwdr,K@8WV|')^r ߕxĝ;wvԹ׮]{1NWXǥ?^rl+Wbjծ <}Mn _ C,}4=:pd i{y#/mAڍ*UP۽bNX W{xA2Y Hm`GpXJUZ,ЫJ@!WXGj,6,P:Zx sF ,{ɋABP`GG Խ5?ca΁j u r Z:grΞj4wjK+tF2Z(UTxOa- oEFLiPƱid)4R*|臻UғXTiըMJ\QkU:FXn{AVLJgSV(8Ӄ]WWhgG #2[oV*;Wu[jx?C;\@漯tnZmRq@nnn$BK*u۶m8־]{II/?1p.5\=ed)hMGoc Ey*_-[&ݭpdD;N#ijo '4m% B<r yzVm27Q* unuC%[_%6 i1/'7/*8@ s'N^^^$,)0P;L ^t)$$7>gU2fhW-kQϮ=4k~rIcU! ĊēP -6-@]u&eĀ% ݵZFZ^05[ Oa"H11QLfઊՒs"*@ O9r3ym{(MUm߸O rI/#8Nf['xL/'= sCAyCхxHհJ .@< <.@7}z5@;@?d_m k>kǓ]ڜ8KQX'L"=%CkDM2Wj| @ "J! {uO}'lPKh4w ?RM* `a"HIH~*p 0Qjt}+o͉(22#]ءVSO7kU Qq<ƌ|{< թ&6kZsW<\rkhH>AM=L<>E*;i_\ڼP ٟɠ !$ glD>e!'vI8)C5I\2Gꁤ@ԥ7rCzxLB 'IXTp;"76.?Ck[9|lO^aj r5 t,MAّ&jF6V&)XpLD_W0DN }{}J'mCC 5I*s;}A!T KJy69R#GکGӇdZT׎Q/AF*}͖8tF# VB֍0g-J Wh*]p =Iې_9uEGq M$b FK|CCb3"Ƚd ZOSCҩ'2F'?NAn?gI; HO6e88?yQwdBǼ+#`чfIZ(د;56yE6P+V8>~,Ĉ *("WК@V3 +FD ok݅3W*rPb炓rϞ(~-Y8L6D*4\#ZH̯iVMsѤk^B1}F( pʹ+)yD-R;N82 H;-"p⠦ѷ\`Y.q pOr}>)"X]bʏ|I 9)G\t[VxY,OW@A:&e!NYy]IE6*RP:w=BH𸞶A"'v:^Dq_7kVWi/N9B%i7-Nbc^T5P)W϶kdV dEY%n02c@KZ-g 1$yْqlF-BHBI쐧|k<ĔKA@R,=Tlv@B6Ƀ}ߓͭGO>|PoR$8@\86!V tlD˞] 8ɞlȃH'}C|<#-8Vd,(f+Ę;EˈFpk$R_ӬV} #/`a !z6{b7$&H%5d`2MO6]3rC65tyCa |Hb—E>T*Sp !A{'nޱcɴN#(0bSp~/)h'V}IO^Y>KNB"Q4kR3e8QpHC%kȂ4EB la_("!$o#μG2|ZJIsbBNy gIM,$ג~m_T5 4!/IQ#ն|VЉHk@f}Ah~|E8aS' wNj7La'p~J6ﲥuyg<w_!qbr`3p#tBJty;(UvR y~=P~ϒאu%%7⩃ڀXr\y'.v[l,2OB|O"m((>Gl\|Pϛ9a U'hًFR08ʞw 'oFχ*roLH*a8r<Ѿ;,ĀĘ~-ۅeR|[ D J_h-=寲ϧ-;@ %).ӗ,!1@ O HB@B !yYmJ8w_}"x$o+AXŭ)Ŝ/r=?m EC<3n=eΔLz>jf@ey,p3}_XQFb'K…`HPu- .d#2qC'i i@1bzX_A "}\9|"MJ ـ.N 8mJG_mX b1Ə(H9(FR2iֈbRr.dEv'CxFK H/Ȇ5AlFG+c#)R8 ((@8l!E.2YGדaBHIg)ux6x*uzցh# wL@ O#I-!@ !I@ $!@ !$@ $!@ $@ @ @B @ HB@B I@ HBx*1,P(iZ)cJ%@<E(IENDB`assets/images/btn.png000066600000000223152141651120010603 0ustar00PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<5IDATx\9 0 A?طҸV03x2"NfUr?`Tx5hIENDB`assets/images/good.png000066600000001537152141651120010761 0ustar00PNG  IHDRa&IDATxmILQƿ7 t/E)`QAT^Lx1ăF=(ēzrèTDc BbV,PFK;әy>-{{|?$Ir˲`$64c2}j%.EnW}rUjQ nPP<=}7..?܊k`}{@!H'3(*j!+S/( 3xk8*%7&͝pDaj(H?#@t0>tl{B]73{kwW2C[a< P4Se4V0BѮWG1KRN*V9ZV,<Ѝx iG'bl,GjuNw~|pʵpH5v53c(*%s&ӑj'uكs^YBxN#V.nC= (xQO]""N V_B:lg]V崌xP"EG0d.l)m#*P >d@+yy~ZȗrL呝R:n(E\}JKc´m-,Fe]GI1tUct&bZڡ`E)5 &IӤ b) g^4XVg"xq J +}vhcRw/phZIxC4n j2pl#)Lvr"Jϻ#O3k'G`Km<5ȍ#GzF^Lo7 dEkGZ IVIENDB`assets/images/icon_up.png000066600000000317152141651120011460 0ustar00PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<qIDATxڴS 3ͯXs hԨM+Pkk+9Lgssg9?k+BfB0|!o/frJ)jpt"[\lq0T!b2IENDB`assets/images/pms_pb_register_page-600x618.png000066600000113151152141651120015137 0ustar00PNG  IHDRXj>zgAMA asRGB cHRMz&u0`:pQ<bKGD pHYsHHFk>IDATxo#ⶋݿ<߁{5~}js9s9JTH9AkIJ-up{ƋbUUOZU@MفjeafׄEB(X 0, !,aEa`B(X 0, !,aEa`B(X 0, !,aEa`B(X 0, !,a  0 C"0 P!,a  0 C"0 P!,a  0 C"0 P!,a  0 C"0 P!,a  0 Ea`Bba(X 0 Ea`Bba(X 0 Ea`Bba(X 0 Ea`Bba(XPxb`Q`1 P(XPa !,aE`1 P(XPa !,aE`1 P(XPa !,aE`1 P(XPa(X,B(X 0  0 C`Bb`Q`1 0,B(X 0 Bb`Q`1 0,B(X 0 Bb`Q`1 0,B(X 0 Bb`Q`1 P(XPa !,aE`1 P(XPa !,aE`1 P(XPa !,aE`1 P(XPa !,aE`1 P(XPa(X,B(X 0  0 C"Pa(X,B(X 0  0 C"Pa(X,B(X 0  0 C"Pa(X,B(X 0  0 C"Eb`Q`1 P(XPa !,aE`1 P(XPa !,aE`1 P(XPa !,aE`1 P(XPa(X,B(X 0  0 C`Bb`Q`1 0,B(X 0 Bb`Q`1 0,B(X 0 Bb`Q`1 0,B(X 0 Bb`Q`1 P(XPa !,aE`1 P(XPa !,aE`1 P(XPa !,aE`1 P(XPa !,aE`1 P(XPa(X,B(X 0̗GCP`1 0UĹy~~Ea10LPTP(,B(X 0̯:䈿)XPa_S`1 0_١]X[Bj7 0 9::;t:N|b$0 o`;:-nS^8>>Ĕ,ao3eK`vi- fa>;;`B!|oP!B(XB!,B\ OL820voEcq"^?}ggh/+i֠"/=At`, or _Q7p0Vwo^yR t;?E|h:7uZޙ˄ ľ{o_pB7]2>HFHB5'kG(X߹i rpG'`hCZELx&O q*P%MaŹ(82[2m "{-Dя$*L0ubC}ǩEÎ DfVcOJd#[tZ !7&0!rbQܷXnCHZ=zoo?PA=4e`Z}P"+m#HEz4`} c[ٷzEFO~da2Ucwӿk\→hnv'h{5BeA<ܗuXhFVrrK<^!NJrr9Z& qiCgm4>ٝ@AVY2ʚoi02fP]v\\Zڱ{if*6$Jy\l,#LCmĽ/xQ߇(p{$VOǹr^kXqpaXWo[֊yW`FwЬ$7ͳ܌2mjpQ?|4V!Eb8s%돋E4ɯ>:DsgGx_O?9_mb{cY4y\222ѻ =TgDbd KOk0^"Yi ,4Ol`?=~^DN8/WA* x\flJ?evb~mL/Bx:Q1~˿7^* E7E9w㱘{\|tpK_ۿT3m~'bFE}\:T3ǻ/*': &ː,?-uh~EU!J:(p_/=Ahz%gptOϑݹS餘 ,)  _4VJŸ!~} ^UbUbaں b$D ,{+ oCnRs^duJ?U x.Np#,S8NГ5g&N]ҜZGBȾ,S ڋBQ&]L TBdεuKjN>RV`}.5gn_ ҉xU)[~QQY>'3ϯ$E&arF I Ev8|#>}SW{5x E}+ |Lk:T,̫L\w_qZjǠwU+hi^gW-ggpHr? fYT>ck&n 2^CYڔS #<0 !cПН׼>z8 >JCy|TC:PkрHݬKS,!39N.LN(t10kNxZ> ~AIɌݖ+Oʥaߥ~@Er8zٺXlNExL V4a|s0S\krџ O">GRySs]$I1z1x"uoi!!(>giT130x7.[S>b-uK2(ˍ#"K՘dHi_}L&5yݻz_-xQ/SMMƛ ="%T>l$켼?ME{+}.u2ZSwv<!i-[7$cNZÓzH;H?T'q/޾/剐.Z#rxj9vOߓ;_:W_ڿb]>_\}~EelR'+I +?~o+q4Du:k(Ag-IT_Tbk -ʂ"q|/7 1" *yo3_su1qo|7ꁼGUAcuêYGQLy\1o8&Vat6m}L|Hsb?U-"?R[߄$U.:s_:庴Ljbrʿ]Elnw3:/<ذҚg!~-RgXBqv32?CְWD0fai>fiQ$6e}`l8/=Zo?V!,$ۢBOq bJj1U֩mv~qyA`)j%reb)/}[t’##*S01>E/gNCOإݵݵ-'7:}Y&CP \{(IJd$9P =.3xoשbAoв7=V8E_5&aͯNoo?>\r )’}x[0N":,]33ӌ"L>U7Q:dzr+c";RAs3e&:s8}ĩdi(Ĥ~^`jsb`zm+1hÚBw…ND' Gkò%˫*t{ ` ^IۼMtb2/31k(O$if{>rN0/!71 MVIۿD{x[{Ќj OJ˜[B$ EU0{،c~qS`f{x3cè/Di߂穴ki,oWg^[#INEC߰T/cª!*?CXVD}O`&1eZ‘E7)ܺKb}uk?L[WƋ_L.T$>w)8Sޜ|ѧFbس=3#؝wn_{F}33P[Ox_-|_tlB#ou1Y|Svr}F@pR=r1љ=ƂmNjd Lo}p4/,CV^yU>9Wv5"1-]A"bkY5՘i4mӴ LPt׷ `M<?^}x}~o+vgՊvLn7`C}ym: pWߺ_Ⱦ׷bt̺7#O=: Ϲ㾺锶tS'a qMXǍOJa<\@g֮>/ZƤZZG~'DtS@ _w>y~Sv'!2!GK- &11f$ӸV>ToL[79ݍ^yx}׿OZnܛ+bX2Y("F$qܐowmAl_N+vi{wndbos=x{Q ?wc~G>rUhP~Ɏu_-]&ԷvaVT/! `F0䞟+}B~LuW5 Q-!%6k_SOpԌ+LކW# MwTO`c"{O܏~Q!?$2bf) K0n)FGyrv# ׵7/ iz(}8Fwa 1/Gӊe=qum B)XrM HHHZxU0{kljKqY5ނL6n}5aRK' !BB!E!B"B!,B! !?.&t!#>)٨oiAae/TSf/}}VBy=?5Di~F<$wy`³/ 배o!<-yvة n|y ! 5#&K#!8, j^FNR7)/{dRk}*xqlCk6۾:y(~{k~&oMuQR}+Vﭟ XL;8 ||o:⡰D7THy'ߛBZ\:57/O4jI.~kj}OW! s7o]?B(XߠK=lo{:$$Ī(t.85#iAӏ[w2%]L;Xr UIB10KiI*YiZpMY1S|,sDgxZΊ.Lt$to>XEi~*ZfpC!޽LƬ^BȞG0\= f!58i IFl`(gBMSDգҺ^dPy;}e)h؎dEǠaRo;x5 Ao<~~}1dFC"W/;qz NESiz&g0 WtX:C}z8d4asQO$C"ۡ4ߐӠ4 FXkp )NxGe@~vqX4H`XCYS12_aH) ǃ޽?.aao5 JXSHʙqi>|N4!<,BLէOX>[MͻHxϬ#~38*UmN2_kε:Bm\0!,Bo>*v(1ݘAC~2Jƥ}q%92:2l:!)mωBJS&j|,Cg&޼FłIn9ƛq /߅6cxOwOћi Ds,"<[؟8EeX5GnK{\/q$E͂r>-w#!*g-%A HD=ǧ8 <ӊLK !-Jrah]S. _߃zZ֢{Vf@7V_ظ=T yǩ]Cil *<=ޝEd%gJ"qq)4*gќoP;=}Rc#S;d|9ž t {åx S4wOAgw_kiHz S{p~Aݴ}=qx yu6"8 Kƾ/׽<яX9 +Xw+XZQտ?b$^j8rav{jS0u`ևiV=#RF Ϛ:c "(" OfUtё=+.B'.$Eo_}/ w?G鳲Ӂ/ߣ_1FBBt*FùxޤřaliDscH(׾>]rNљ˗. ez#k[ZV4j [Ν2Qf(̎{gtQ W/NG&C^Q0ޡm),XoQ>ѩ-X]G(k| XSY?.A^E=UXCcu]çCH@(;a9Y Oٳ猇hNCZ8t.X \o?ET'|wm4_/b  XXD~(< B"7Ge kdvXé<|zʨȨƱj &*2.#](-&(2t1=>oU8Sc\ }}`u8p8ׂ<,*T8YG[e.Gנ0ژѽ}}"}δk(E ˷`c 0b?j! ox.gzqt&;`r]j7нArB 0ro?!;GW7i=80[t0VO86l-.\n;$X! X׈;j'%~Lky(! hP5 j⫺Pi,IlL+K3Y摙O u^_!r:]YhNtXIJ-ذ9\,eE-aƯfP;F *aY\Q穲S2r$5s죫3HA-}ovY9֌&N߱j$5g.h6PYVa*y6ѿyr]Q(; - P76"jqc]núyJtfI7+pIDi:ȕ  !cG~n~{}V QX}:G`bU. GOK8B228>|.ZL .'6:B(X8XBTzDbBj\(ZuwmA޳'x6S%\iOa@U`9"!,B! !BB!P!B(XB!,B! !B`B!P!B(XB!E!B"B`B! !'& '''j 07^A"{h4b'2ao,|ttZ E"{aooVa#2v ! ;;;<1 |e(XѬcVa`~fTTTȩw-hhhDAOaCba(Xf===X^^EII 666~2, I?P5D= 0 C}O+0z{{t:e!rbY▦՟E( ]C ?0 P BT\\EJTއ!fhw _zSHe@QQ,DbnooNީbb'X:|aaaA[Qڭ_XUE(X 0 w,!8)))Daa,R֝IH'#K*((@ee#Ubs&$KL'immMngff044$2LKK[|gb !>:Vr=q I? a`-X NJJ9 DkU2&DK$ oI$:""@/<X1!f͇"&IvS0 Pu||%N7 %ѺtJKKeDk%%'ZDBDY|g)9<))X,aM M(= Qr$G\|&">+g"/<_ h ]_su`1qQL\O`1 0;?HtPs¶(1s!i3ux;_HbbZCba`Bba(X 0 Ea`Bba(X 0 Ea`Bba(X 0 E$XE<1 |ۂuӋ)X|?Mb6#~qEe ! _D⋫T*ao0-~~N%%0 E.? !BB!E!?&vi%%lNd,L{!O-XRx>sڠ\̦  . mFͰQ1M TfV[\Zw{I-zF9t>\w;Ff`.۰3O\o1޳ )+'s53v鳡i{G1*׆ tyj< !,BXT|UKYq8'H;ݩRDgbP/Fo@_w'FƑu場H{#Ge Q33 )j[\\VQTێqu"5% -\CI֬Du.bb\~Vy`1֭%6TQhD8#Vהܲ.i;1Zxn򍴖#ȊC =>,dTtBR< Ii-a)cM멏H{VуrJCqb {6`uYq9PmǠvQ%mT.ETVQo_z㌇9!Ei¨/Ɔsu*@il)'B3Z>(6p2U,ipcWpfQ QeVSNԡ;9#D N{IAf˜ Ut!%,SJO",20eϷyI$>BZ@:a]4YT4]F& G5JȦ.iƣF{Y !E$29xW 1Nj IȶQ@+jP^3N5O>f^}>X{etPS,kr]v؞JHvfac;CϑѱݭS>j?x#&zxF 20wCâczLԦMT6gR>z^j9P5)Õ>M.eק$JRYeg ɟ~Kyt9+;[3߉4L r1;3R$P B j}B? F`(f E1!(_խC^1&Ƌ2l_u( hf1+PQQ%NڋXtmha>^CgM$L */| Lub Bc+}knEbRZ&ƿ@NBi$GTNjY1~}#K_ h8ZFԳ@O&ɘ;1o+o";*06 4nՉiڒ#Xɨ K??Ahņ[В鋂,!#)pHљ)͸W˴7/B(X!m# mtd#> &JJ-BJ;H@ɭpn>J"׮{BИ(*±K7j]dEJ>~' 9SHoESsDe۽hZFJ [O)Ov/0xŹ ȋF~vhJ>/H>BW`:CN~&w0wX[U|UVHoZ244ل>36Gva"%[g'-CxS]G//z#껼Myar}lHaa(ۄ>!ET-"""{~`AzL^tzӰ|E]-zOg\I {(ǒǻ'o]~f.Mn7`ijs{/ŌIťAOd$IB[<'~xKL,owI, k(B[߾ah{<B"߀ӦH{*.TM`~uN\ɝ?| X17B(XB(Вn{+0PiOBw" !W4k_(6app 7^y)x%3p*'Z^ǧh4+a; iR x:SmF`B! !BB!E!B(XB!,B! !B`B!P!B(XB!E!B"B`B!P! Nah`=a2Z F0 |C棣#.E V+0 aN"{agg'0ao:;;ۮrŸ"4a_> !0 C^EEEr[ *WO4-:B8_+#"KQBtP*ztzzzR$kkk;6!;",bIXX@KȍhIJKKꪼ/R R(v 1+((䤼\Qv!b[ 1b,!R-pNDy}-ob[k#ʗ(X 0 {%^." Ezz:233刿21BX222!Jqqq !HBm21\Kt` $櫨c p.L!0b$Q^B''&dJ|."ZBD6!}BjjjdİhKMM76!XV<_]^eU[s$Fba(X?-B#dHV !UV$n]}ݾ![~R辂߂X/q{O _`vɷ#o=Eg~![bo!kM Z-M7Lv>DkhQv|) 0 O+XG[ȏRajчJ3%"ZDOD&TD{x&-GB"AȖuJQb;D|R622r~ꓐN|u%D0 Pd.ATh!JDHO|6c1B:|"!-GL'E|.,!9$:W8|LI^h-R,!{FGGυOt}|ho1_vn$XN6iE]`1 0WI+D D-.?Kw+wKO }ߚBϷ>-:IJx}#3+Pw ;8Y`o79ܧl/ K(.+Oy uKOnaefij y}'p5}3 kXVzQ~ŃͨĤfh#G\Zw{ `hh[Zx78j({1wF強>sx2Ciz7흔OBiَyڛa:n #uN`q|_ڛkU-EṆۘ;HIDyEU$2B v\Jv&#41O]$]`[JڤDOC%к7V !=<;6搗>4g 4'#1{VϢ ml>ִhˌ@疚ykeh98؉l`ou EaOV? AݢJ41au*KO}fhn,>}86vmաAB}E@5T6zm+H@pd%voLD*߻IH~)!IzH MGj=aךcPMoK~yXՈ!M>Ƌކs5ig{++p[ At Nds`w5=Xϰ7X\BTDuRZarڝ`RiM2I,lb|ګԎ)`q:hذ1PQ1 I| AܑZY `pj :osE1=8>x8].əh:NO ;ia\}4VBa1c>O/`+Ě<޾F,6D=Fb|WS̗ܝ= ҞC3 or,m)A{Љlx}?] zIkSxGkfEyNO`a<ohVQҁuz ac<,==*?=AJ݂4 >Ƨ"n`M]Ь :$ݛZXYۊ / O]x3[Ah<ZܘCC,v>2h j͎īKBP! QG+-xUoKqmTqN̾Ղ718ݢ@E\JlUZEM( D`BZf%f[%"*ׇ0ׇKD@mqBka 3}yOb/aZlƛN`rqzI('먌OEW=o@?Di ӨiZLdCKZBʧ/ [AV3&\jZ_-d? xQI:?{чd6Iv>`80yv|LզXOMf|+PC~`#rvE9(U%:R];5(,+!ZC_#m. Fń[wX4oD]ͅp0Wq(.ÑE^"c e>z|v'({eXg4g>m!UnTMqQ`sdUjGpI%YCqvrbQԽ]5&dUK0 ;zh)By VH±dhi'!1Q^ )x]yO0Sn1ƊV:qTWj#껢١r}([A!]WA X?A7`3 CKapy˻_ iT>h.JËGXXQ)1ߞgYo{ʻ?WPK=;c|!,B~'ӧd]%ubiqhYSy 0qx*jn{ѥZ`"-ʚ]-jgg\A )dc.@W.?%{&bN3;W/Op ""P38oѬv"9.krg8 rɂ.h+1kP?qxַo8f˕f!ϴx*0b|ﲰ|؋G$cXaE1Ċ߻ӯ*G`1YΉK}4OM>:zڪQ?opaND<84_|_@j4n~`B~%*gf#> ̚%Ԥek޾hM#-& JgQ$Dfb!Ebf & ~h+*a$O~yČ:ǫʉ1"0X8÷VxNjYQp;XCh;q LoSD `B! !BB!E!B(XB!,B! !BB!P!B(XB!,B!B"B`B!P!BB!E!B"B!,B! v1k1?3B`{9ٙSc/[;%5i0ܘ|Jᦉ'n@f\mAs47O3 㥑n،,NƇ@ǘ$ ouy. ˷/Rݺj| 2 v I!)-̰@<`6שkhnnB}SQUZ,ׄ o*AmE9aQcixχc6Ar12aVޅcI}ˊjDՇJN X,!.ǫ(HcseYqxr` Z'aj:(D#i_q=ޖsPԲ gڵ^ľ`BBT"++ 8<<[ ֐YƆbu`]cK %TfihĠglio`Y+(cП ߽Fj ծ!?-˧kG۽x"wJO ZWol:BțAeR[򑑑g"y>pVP<~x]\6' ,k؝?g▟nkeyy/?![_?{M{Wcb3!POjkkQ^^ǯ"99w/h )]>ʕ*} v?IR5:NlVj2@d9d}XwݚFzn^y )Gy a[4aAwXC {hI2*hCx :Q:-)xz` 4>;huD`rdzgNǘFȋ7*@|vQO`@9D{&-rIBc>g;H}G/@" ӧOV۰X,BъyPf"&9KwUvl0[4T[˹?X ~rуߦlZ V$X/۱`= jqt |,]wd_!Xk8-rb=KiI&XrM](t7B<?e \|8׿ vO7)nEW-\?mg!B`}筭W \r;db}1+`bg Pߝ2b2w,v*Z; 6*? _8GzR?x"Pݻ,D.KfaSN=cЉD6ʢS0b`9PDcq: WX=6_N_m$`]w0B!߃o%:|`Y ˝=8T+R3KT=#+QÅe.?Pu 6 v̶!, !I-,BYy4;_ba9( /h6%a$y'%]O .ŠJ &$II Ӏ,WӈT+i`]O%uI d`\!B`}FLOOU~{uu,WX-g_)EKݨh )3ˊ!TT{W['68z,Ԡ 5QhǦT6@5"S Q'=0&Gk'v7Hl9EBB 2s󑞕TI6);TkI4-AcE̻K)@OI ʚ~ƒ/( As<}v:޽Żr`"ѳOX?ÿI8v ax+05VF`=/ձx#R`w)1"$ C۞N^כHTtH2˓!PCӂ5KD~.gNtե9֙tzot&3|*5̧.;|UeuXN'V]O8v1߿Mss(=*VfPV}Gu,o~ڀ]ܿx֥zS;R}a994it٠Wz>Si`wdD!,Bǫ B"B!,B! !BB!P!B(XB!,B!B"B`B!P!B(XB!E!B"B`B! !BB!E!B(XB!,B! !B`B!P!B(XB!,B!B"B`B!P!BB!E!B"B!,c8\P B!,uaҪ7ڤ8Vbw.FT'VpB9ޞ#xjTaq%)MX;꼻-j6V}OEJe[fz:6hXkJ{*^=Oʙ#~!}t:qxxjl/^pYz25#=%Mrz*˲cʱԅ3 %B9ՄHħd #%QhRz[ESZ8:XJ//&LGEq5wG`9[y 5)y<Әfѯ)Oƞ98~/.ͷ"KOD!ł -- )))(((@oo/4DS}Z1>>5tf4/q}Âe3(1P̬$5딨}.[pڴ( W>2Rh fl)Fє߃b) ϗGԆo\0󑓖o_w l4ZGx%W; h+ć>@[Ӎ oY[vo)XBCzz:Z[[u"??m{ \9ueYAMj56>, hG`b~o^,I(ZEiŚ$KoSqhאʂ5w :߽u } K { V>rsOڻ||HRܔH~U/)Ճ e\,6.mRg`|KU[-V6H}Gը{v)̺/4ep~=(ˮGwM^S#cz%N6@|A͑t܍7-> K s"qFiY.oz)އCNja \UoYEaDVV,_,fKmf0ZfcۂNtۨxJ}~N߻S! _q#aayy9< [ l@( K0.#'g[ GS( Enn^xJV5 i3cQ #)?PJ ׯ,RB0wlU "mx jn{#SP6qZJ=#rpda!e$XFi@+itC*Lv>_Q!c3խ"bȝ{zzR+؍Fؽ$1s "<5}#X=dh6 xm G(B.O7-`Po$F}@@@^ί,>DGdbF뾳&?=;Fں}s!=[HՂ='љ ;b7 " V:~s0Yd`E!O*XoބxPAP|~AN-F 1rDEPS`JGbr?!N s``PN& Ûc@s$ Y2xk x͛;kgk}+T*wm#aMPy&Qֳ̢@]t ƣZO)XB,}ē`EH\-_;z85*MF~ |o =6`ch A5 ,)B`}kjUQQ~ hlldǒܰl>#rߨ\d%WaV!NF$#eHDDH8R2P7{4RU? zcL7"C*Z>x R4̩~Uh׺o>{i8gKD~C{nuɁ:'bJqu0'cC}X-!K5w ;i8>kwȐ;j!qoiGE!vˋ`iҺ>}¾uvu8Qw/O 5gj?y^>'V;3g?J˫ߛ3/lZ<?zԲ(cB2G{{Q!Yލu{y$s?喖GK]ou,|}v_Q7by wV747]W7{K˕L;ȬlΉ\VW^Tuz&ӛb?ܿE].o^i>Z.շ8FnXo.[Bqdg3+}!B"B`B! !BB!E!B(XB!,B! !B`B!P!B(XB!E!B"B`B!P!BB!E!B"B!,B! !BB!P!B(XB!,B!B"B`B!P!B(XB!E!B"B`6 6XB(X6hhFv}%Op dwcccRf{bC!,Q^^ -wϥY@^f<_ބ}k26', v&Q6òrOEfo^~#]u5㏩Yj?ʳc/Q>}CB(Xv;;;VVVjQPPp95v$ByfzqZ\γ3V8 />OJ8޽+]լBIJշ݀|}/%-cNgP/Z]%j[嗿frԙE\Dиqu`kR5^ؗӢ;ݤ=Vo8"6#4*ԧK66+*PS߁!i|ke:0}di{Žkb]C~[<ӄ<PFGcUŖ낵xMSwOqUPo=@X'H-fS~9zk+x" ַoM-xUYY-XHIϔ,ckj,ާ؝jEjr54u8>Sc('iK~W:3QڼOңQ8_#]ּTMR rf!1;fM=:P1C NNN9\ _{f8/ϙ#UOYÁbyŃ}N쯶!꟏/C!ɍƏoS|~Bg'/|LmĮ ."Zpb`0O0`>J̑`%w_! g{ ֕NeHiy%DNKF':F5{6_˓r#t% .7GI`65P'"Q^MeLq$X9XӈT)XadG ӼtdOhLEy*t/+{Ձa{!拿vm ]X/As!DU_+X:q š'bڿ{]X=(+f !?`utt ??F\W8#==; VRV5mHC%nb{ˆ6UcP}%_]OuŢG"#Lu":;G0.sQy^D=:c>. )ȯ&wV:`:Z@yR ['w,AN xhQ쫥mbh;'_jrȨ ͈{ Xo3Y=޽}'??ۘb(oy;[B4|,n;_ń4>1QRqhp.X!*u rk^C(v+ӇW֢ۈTVyGdS%\Z!Bx6|ۈ}[炕ZK0T ml`/*$gwuoi!9B0g]>{.ކgb^~<0؝^ a2!B`xW~r'QE|dvnw˜ZL2Yp~r;xg*P7|*dB!O XHOOښ-QrPWWJ/o!X!d],9'EqDY;82:5k[N3^?$XNT vCow/\mc{OSQS#cƷ=-V.T5)BB!vѧב]2d/Xwau|U91ND][/LW$j-U9NBi]zZegWnUoiڱ1Z>EDj>jƮ:XhCV'|J-DsG~opZnIǻH-,CMUr0Bʣpx`fo'Ba-W+++`UWW MMMdiZEN\VvG/ˏӤ4~Pe!Nhv/irmsss~ٹapviulW6f40\WVwiVvT;yːBW!!BB!E!B"B!,B! !BB!E!B(XB!,B! !B`B!P!B(XB!E!B"B`B! !BB!E!B"B!,B! !BB!P!B(XB!,B!B"B`B!P!BB!E!B"B`B! !BB!E!B(XB!,B! !B`B)RIDAT!P!B(XB!E!B"B`B!P!BB!E!B"B!,B! !BB!P!B(XB!,B! !B`B!P!B(XB!E!B"B`VSCCBk<.<7f054d9ԘTW#XS!m133sh4{-x0JTz}jTa qIXvIEZâ|S0`ur%1Xw*Бy{ȲfC H _Vo Ґ9ciȮ?Q= #! l~'444ܱ3F[-t:&k[2;%I ]\=I.^[~:sco TV&[pSͯ^`B(X&;F_ؗ#8;;lmaKNS;QBm¤>ŽF>* =y=O,=Fr9,PmM E-~ V:g]RukeQ==5l{lGgu)q3i>_`ǙJy>lz[:|p;a/s`EWyQ[ q5A@z={`m h(?8΅{u]+va9u;/VIn-o@g1C]=?ݯ>/ v}Om`B(X.r`#EؿIȈَZT -eh݀^xÝNEA&z#MS!Qv8 Kˎdg磢]4}uMͽQN-j, #1 Ʌʑ\K128^րjO9j3кel7 *kDE(Է]zl6!#V^VCi2YDAj;1=҃L$A)'UrEynFU~``8ZFKq9jhmAmu#>ZFiʙtGQRW VZTZF4J[au'{ :os(.Ց1(nd$mh2q`mU)HkZgOF|Vt\0L[u7 :z1aE*5qLmON>X:js9\Nv纐SuB${ w\#b:@r^.w:*XqG%~h: V[ڗ;(MB,?OW~\__-o_$4o׹~gg@r:.sYYrQPR!, - ZDħclGyMxl QKi5-Fן\R:+_D pj v ~tG' ֥ KIʼ\6,(uPN&'1!kľ~!D OJB^+g[.W>|hb?q+j'w>C"e @i V7߄h?`v^|z?/XpI0rq~DäQP7tlX~Uyǧٱ-:b4XDZg9iq `B(X,==|~a$)ߺ{ VbFNo~uXTt}IC9yabJ0c Pk/xR|82} Q5Lt/>ŘBqw:`/ 3[;cvJ2szbgv<_V_+X{~)X ֟TΗ.[{qVmǬErM *:;fZo( (*> jZYy>;n9s.^.xo bόi|Mxe{G/N~_Xy[o~soUykqZ}m]%_ڟsH͏ ߦzSa`2u?)*M=89f~@YZGQ}1p,?~>x6oJ uf}'* '^FpXѭNݾS9'f7SsUVT\frТ+"gmǴ7uKm)jokMcuU32eMjo(Wx\'ZóJeY]KƬ,Ex=K┚ku.Rۃ5xDyFߢE= 66JwprF5Ǣ?Q{[ <7zfbvWtk͸}wgKaOq.V|9o#ֻ?2aq]!io 1^S:l>=q>փAE;)S'MLz!j阼zbN{z71~y^{Mxm$#jyxV*VEsOmaDT8FCLkJݬR.Bx|jR-2/=?_oO?n?qTVVt~ڲs>_cKlC.)/f9:0Hh<iFzu[KwL?"46^Herw!:(F'bSjx;zx>6;Jw*_X  ,X  @`X,  @`X, @`X , @`Wz3>kX`GXE`XX,",,E`@`XE`A`@`XE`K[HL?Ss = )%9-?ֿ3.tDb.a]ޝԬ76ߩRp]! Xq?aDӲu_<3[aU;rM~]~`DYq+vc&cF..3րjk]ѭ:o_θ3A;e[]XXg.i4R}_,>{Ԩo]skrdWEWC)G3K˳W2U[_P=INۗ1۸1_.ψrZ]jh:G]~cus`Z<˺{HJj~ lVxSBk-eAڍ%UƲՃIb wr8l:h`EW-GyiZ/~yDD_+ZB𭩥'hV[}O! uוX${¹S 'M}Q\CU4U;ь'F`o +X*l[yQMm9%v 5_>`@`*DXm:ga]h*VBC Uy"ٜ[ .F`,Ƚ)U7XWk}3j] }UDt7mQe.λ*NZ75\؛Q2ǢcY(o>n~$YO5iMuyYc_5XX*ρZм'->x*]܁5ԓB|ݸ-SS1]<X;cۿݟUDX- ɽs)5E5d4l0z:U*yuPxcQ;J{OmZRO_>}kW<\87͇}\zq`A}m&c9k@-| ӌ5LJ\NÃ~~UuqmI.oFWd-5MӺw@`XQ5=[.~eXֿaXXE`XX,",,E`@`5zF ,X  @`X,  @`X, @`M% '%tEXtdate:create2015-10-14T08:10:41-04:00i$%tEXtdate:modify2015-10-14T08:10:40-04:000,IENDB`assets/images/pb-trp-cross-promotion.png000066600000016703152141651120014411 0ustar00PNG  IHDR%, OtEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp n$7IDATxxSj{-iWc TR !w RR!888.ʖmvʽhWB,zX|ͬ%A t A&MDo A&7ADo zA&7A zћ 7A Mћ A Mћ A&MDo A&7ADo zA&7A zћ 7A zћ A Mћ A&AFCsEqlqᢷ#b4MƆkLд!P{:*1H Gȑ(pA74~0TJ_o;VȶH&LI4|)GKQLy 1gjDJrTͰe Tl7;ںznG (cp s~ 3AmÖ n>( :qK9BUm6mwbD,N3<*ls86 UZ'Ca7l̠: qC; AVƴo[J @7 unYRjÙJn=d':дhZnuRt!d2C:6tNӀ*i#ToO.sUFPW)e[xk0Nj^"QdYAM R>xdLi;ꁖ4'=Stiؖ>Rs_TQ^51]Dݮl%5ލff/: vݶ r 1wؑw*al$3+vGsvA-}PݩlZۉ7whkp%-xO-xk7BIX<bSǍLG`kgi( Yۅ(2Ǖ,[Na3ZGsySrb J!Wux7!nIZ)g,hÛmiE| R_e@jxEYtr=븋O,Ésyv+n|}"/ےܷ)\VIE,Ww%7^;L'e[;|sZyY"> Q_ uKWk jw08y!;Cյ]Tpti8so"o1mدֲ m31Uc]7#Skc^q|*Ag=&UtΪNӺ =<لBVu9' 2w".}f<ی q(.\tcم޾׃BSqDZxa'tR"~cL(o7$LǍ+0":2p0zj~/9WVW(?窎fwt'Ƕ\M 젦Wa0s73А zZr̺Ӏ/a7o zN\"oW`N =. y~v^laZX4rK.pS'A^Vk .[fb4?ZۍyG(9Nh :7MYLÓ[ЖG%7Iή818 Om\%Pƥǒ\VuN#*n S\R" ]Qi0xh+$VcInP#n#OmfQNl9ߔ5ZK/ Q,KrM}^Ps66.?J q 4IĖ1)'yzKhJӣaPpOfmٚxjAwػZCsΘ$qRi%v hr0iOnK_&yqkX2!ǖ&_oLYnN4̹OVusj)n &7pzqJڎ)#|7ir!Gtss8 ?]_z%ŖR}z?dzq[21NWAtr|l$~}a&\\njyVupx Nnn#Aaeiph-xtF27%"3L:L3:|%?^wuB; ;Vi~Fo44iuqR-҈ %$ /YgAR"z5 (P2pn >Z1;.қFv2$BQ4р ŠS~K{z/>/ t.u!=,[\l) /Si<[ppqj._]TIlܹ7q3[e-ҍ7"yW^}Ou%f %Mʑ^ ԋ.B"׮'m.g{]#Mϩ‹;QsLXXgًqpz3ҕD7wXӅNDN№Lm96{,^v h&F,i6PNܾU0^9 k㱵(qZnۘU9Mˑ2stߊn=VVjڸc/ԧL276R#|p&<n?oNoOD Kx|xP]W_݉nBa(~Cf~A;OFphċSI(_Q xWv Ϊɀ"^׳s"6s$F[ӧc@#c1"uXԙX*+=R>3;εǎNܵɑevvpZ<CPo$Et\_kyg'p+jQR:N'1Xen]<.GPv(? ^mzwFxF)+ȰE!|m_K7OAGxJ.w:qn38.NN/†.@!H!yn0` gT)k9y1yXL}phlOrCЖyύCsxq+osk}=dN7L7ϫߚQwRmJ|(P]SMcv\' Rt:Ƭ?se+FЍHf[/y.ɕ^5\b}_,\&LdK᝗ާzYjВ'Z&/jxpWYbx|3Ono7@xs79~'8yMv3|m^CrDo]EnQq=ki vBĴ͓#9iLp=rRx`/RL ? ede%B 'GD/ 46&. rIC$.o'({i WUxu*BoeahFPR5:,7%+ jVnWȆld)'i7PmrOPdHQF:3-?{:2Ss |FiK⁇ÿysk;#뗲jǗc6 ١L=L.-l ޚ7ߜs5ZIJ7f\g;>g> [N&R?Qe{V. y8!:) aKW0þR^ 09%FpxWQxOId},i;譧Smx#4T52 +`pSEwEm1@?y©ZDtgTrD[g6/HPWv1ܤGr8TZuxb"1_ZcXNRҫZH:e1ɠ$fi,w U]Fs@,}7!뇑lnmwuF?Й◵*}I'fHԢ[HD)*TB9Ns8}Omk:09)ӉOM!e-ncjoh\5waVzf7XoT7S>JMY&ws+?;3_nׇ5T@.5!*q5Higмză~Z^?B̦x2ze_~nq% MnFG!3J(}M!~6k2vc.T5 c x4/mOg9%Q*f Xky$:_z0 _zH^)[xs{Ќ2?#/$i= OƜ]5n u! j_vLܰ)_/;Dn=7r' 0rɅgh%Id)w;yWm'sU7|r2) ې߫Ps S$.QWr޽aqtJ_tF~fsW'^=]s;X#/uUQ٦ȓ[pB9GݭhÊ\ZaMO^ci(⾁䴽3+:UVA5M+%%LÑL(7QV쬚%S?َǵZf2ժsB瞥iM۶+،26EӪSmZQUboFkG:ƾ3~F}>6]O2շX!+Z{==[{/: *3}KU^E][8 WVS1!j5^0:QJHJW.Q|0hw7'D>k]_m*+bޗ#Mktu'mꙅӂO6o򲃛¹$AoZA6nϧ^%fop[#qo<(֫jx{$t5WPț' cŒlS]O@ }a&4tүOh'@xsJsSޮ <䭾Ye+ѨV$S$KYl/9y+XGLzoFgnr$_v*B=~g{i^.a9#F{?ON*mn*hQ!7!A>JG,!{ћ A p,dRi8ct±2oaH8ò`ZB ˵r5բDo3j'@`]/d .N8(8юhgG& ơ"4LVg 9aݦ* Lo&g; iek棦錦%q~S۶ "D#RVs\I$hU#`~Na΋9 қNҹ@ cׯYei}UF*UQ]3at0 m֮t;!M~!%MPA'U %⺮ꄑ9zSᴴIpd27 ۄ#+G8EE%eOBҲʴ{|#_1m[27HN(m9J9$T*YS;rQX6Y,qzGөL*^n'uh*H$KLs M88ef&~'#7{=ߑÀAy~3*`P_Evqh'rC dÓA.Q'ѣ0,&MDo zA&7ADo zћ 7A zћ A Mћ A MDo A&MDo zA&7ADo zћ 7A zћ 7A Mћ A MDo A&~6c1IENDB`assets/images/trp-recommended.png000066600000034066152141651120013121 0ustar00PNG  IHDRxtEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp lv4IDATx|vuɒl˽6Ƙn0z ҏKBvw!ɓ W%w\r'ܑ.=IȥBo1.[}3]ҮVHZfggI^H6&)+>$wFc\q)W(f&o38%+ضM04 ҩ-/S@`&weN8qu,pf6-`ZLhELC+օY%թd2Leɝ ;YTq-۝ubd 欫քk& fw$dk}{` ,rԞniݳ :iyEʳR‘erBdBrUлf*CJf904tP&S~vG[^V6օ#eMIN6aY+"R则Vr0- dۖd6AĿU90ΪwV|dv&jU:Tb⺲HԵ#r)Wib0@ f"E`A+t;憓Cc;|_Wv `*"hLa)32mRi:fR١E)1&.Z4<zh,Z4ТuP01"+` "hi hB޷H$׻q`*!h:ۿwO4Mñ~u-,TەSS*Fpp&i`7 7 7 7 7 7 7AN`LȒ\̪bQeNF"hLM쪊+ʶ*܆}V4H $]_\6od6>o͙NA%ݣjaY f;6RPҶیLlX Z$*}8o^2QFp@A.uzJ^ULxޙه6v#@nXɋ݄[.6[tJ'HލL~+ 7 wPl V,6TؙzQkV:"J`xTdyg"b|N'WsFŅev=(|U"ke+8psed$Pbhޚ}$U*RSY:Mث޴# Wc]Hr۹>#x|p[cVnޔu [rF5Y .K ϼmw*7|WFjK(f&<:`V ՆUʽYg: ht-nG TJпkzziPT(`dF\h:L>'f8L欵'tqzϊׇЬxzBݚ"\Τ.h-k ~oyFRaPcz ]@+wD*-=}{ jnа?QoXZw>4+r~K\/ߞ\|CK'0꨽:yӏvǧ= Osd ۧyZE4`Ѷn}sKe!f$UEUSUEΝ5΄Deymɨ=yֻL-ۗDG<8m@?ޣlU{R Ao:RY悾vU"0iswQ8X"i40Fi{!S#餣25Ŏ| æJ;9ҪIdI.hWfbXUE@oYZo^[_KqՎqx=U,OGD4۟̉47oԟ-пcy8ƧV-,V2y=0.lIx ˽srkyugoԆmc ޾%K8Y5ڕlA{q=5Bs~ 8KL:rbl(+fV9K|))QV/ɑ.GсPuo~]5--M/mSu8w=ۥ۷`Ko{_n3ˤ NoWU~-ծ}b敉pLpi+:5/RUn\/k5LTCXXf˶ԃ[*ÆQm>f>7>]m߲u.: \47MӝړZ=Nܠ{D7kNYu4̀ewYzh;MCѮb2a(K41ZԄUSCcz?g>޺D\a:P{yYPeM6sSVOttS6h\;M]&/XXvп+zEΛ/>ZM'~\s/oPOD A`&JgŮ{]~$`^S-MoH7S!hboaZX1p ijha:Q-=Yo5zk^guhʣ¼f^gj4?߯%74C'l?J>k>ǓwM?۵'ajԥetsjG ! _Oի7,z2W/ZV;4DmD[MYpāW̛+薸|n9L8\ =d>Ļ~Cǘ+{$dF$1G-dNޮ kcypavڜXmf̝=3l2uBө;u @8F䪛 2""C9a0qL+ ){ET0aLRGDnZP-+Ʈi-gfDKXPo\=[:h0&RrV>MuZOuJ& Kz*c37=`>n(3gzt~lzLԎ83^>Mܝ֩եM]>Ww/=>D;*+^yN\Q"{Z7h!3Xdz:d'1͑ܞ 2 wG[5ڵnN3ZV>Y%`V6Jc4eLSN5Ć#t-Y yS2Q璨WLR}<~Ҍp%Sz{h 3f g@I.p W | *|v+|yxp_&[xKNwwՕw$_#vc<4Rٯ5 敩.Z3Afʌ^'U^Ն{yl3NQ/'&:4x .c+ZcX LM MgۃW3eQ3iV]Vhe>Ѵyɷhy"xE-M}I3f`2wzGL6+b;CB{t~ۦGڵߌ@iڪAcTaϟWjӬ{x=F cmY'ssI yM;  o>Kըٿ߾‘69]ʌh": XFPݽ hM{2w'͌  k/mԅ?NAz}%d#V8UKIYw`oVAޛi}:cs\YN{&PsU-_Xw-[T:iݨgokɰ<Ě᫓o]>ґ0?۬L/͋Lsr9}>v h~n" -ӏ-zBv~>Jq}iUuM~IܳCkVg6UH]Ns0kdϋF~οS26JإLoy0tN=a&<䲹D™xAo٦{GVWzit̅ z@·-׆n}%Y]+b}(be-[ R'}DUSxhЫ8WsLLJ'bϻyÉϻ–g}S@.͛ՏwO:X{'yi>J?H}X1A/;O=YKchq..?#`zx"a;M<[V64<8Bfć[DfK;/v C=zQs>e1/\VoӞNah])8AWTbcwljg%gwZͤ꣦ȡi fr+SO\[=-8C'7/,=eROLTf<εGpr|U~v{v&H"Y36j4`yɯ[t.]9WD?xd0A`sXǜ7ь/)_yyww[ۭꪡ+\'z#_~IS|hU]5Wz-곧blR*7`Q9+gi;U]O+f6SOX{%lԻEz.xʒO k>=Ҧg՞62+ 0RZ7ch9W΂(.3'}?^zqN_Zߞ0*/hKaGL va 7xo 7YRn&[6}4:X=i5fFެi` jΊ~!*gQ~C御?yo􅵺|~<.7VElivjSήeǠezR! eg-^=VCw|Nr拆6|]z1׷ +wۏמ. !76s g&:M帾4:3`=^=cW/Gi6 u.^I׃-AC{O^;+il9V8T"hȋLCVLd:iџV#:l#i)zK:5?6`fq`su,Қ0zٶ,CG| go}9ksy! c+2u{\\w5]\:W$beq ˱T*1>f_Zh4O:LS|Omx-+y&佷ՒԿ/-jSY-VCo;ij)*=z]_]Pվ7Vfզ?p,"gbVEE[gW 5ַk+>=7\yB;:rO~ٱ+0~ڪEJHlV6A Yf~Z~zoBKWjny D ='v t}$Mcodm("_MSJt 3kyn|Zؿ*qUa=z0eh5;vȥMf:W0-dݡ̌|C=Цwkx=bo`l3F v-ҳ=j59\+tnxL_:L]Iك3Oi3 *5UI4)3H cZUo} WkN.؇Ms]$sa|^`7?m֜R7*ta|ٮ=*z˫M;[M? (-}9ըbϗ-Tbnt6K+߽B{-Z\^>?V<:UY>tvx3J⡠z}s_7>3catPԮAN3BոyW!#}%FT Y4TTs ["ʣe&]0 -۟Om2zx옉-j:ֻm;L˚4l‘_5tyǚӘ0+y]gD֞9\-_w{Msǰ{['4bDDV*%:=ӥΝ_9Mz]tO5_Q捫fq§?:zӦ.zhHo>arlsV##M..ö^;uO79痭Pp3RMt@xJՅkyoz޻:n|ڤK̥Eͼ1ϻe4-kB_آlCoSa"{*fN{9'fn'R h* px_ ̮+VRx nѮv}uNY\=6\(]. a[W͏<^ޤ+h ?nzB3>be42#DԆK dPm^q[fʵSoi^P0zBYtsu?Ae}eSVN[S<~x+ȽQ9%kp2N]45Ggssc<4CeMi[cne  3kήOޜm?~fJ@z#6зYԺG+t,u&'wIsJN3 zɘeL爿_=nZjL Z^탺ycqƷ3fKUa`Ƨ_ h Xiאfwu{zF?t9 &xWط$LgaQ88AtWR7DYp,pwoڴV5CqzB+-񚰙 .X^BgR;sUf,A2d-xI_lpѫDg7f5+1JL3@HA m]t䛿 th@Y˴p&QoG&'ՙCH9Mo+,lui8su_iEc4#ѥP0?+[Y7tʚz~k*`3Ĩm`VU#SQotz;' /]u-NnTuV V7Y#pu޳L}LPVY4HH*ֻGj1ҖPx+󎆨obI.. ~߬?hFޖ_ۤ>mxIY4yzceMkxAEj0b"0#VEdd*`p\YYK_p~yܲmJ>.?fђ@R,S /hS֙vVOt~k 6bf|7Xj]AӵB?ܭ-}ziIu@kezӲjSeslSؓnu$&3Hޫ]j(5ie_GVv_6<ZYv:Se\])m64@CqA{т+/+P>:Px# tH>HO>ʊF  *2UWD↪.STG\tkaUJ"=zSg/NvL;o3[ӑiX:pw`^^ԙdL0|72owhs5֣SRcHbu:J_rb}i|CWc 02YdKG.{գWLW^}76/{u󺳽GzM?!g;++rhef:l6L=Ng5<`v%El5uokA9n_Lώ[;:~yֻYϮӪ_1W2Cb ޴37Džsk{U3Ƞ, uV}i}#Zu@UU:"αJ4w{q[{X5,J$̆e>xd2sM36;-twhOQ1G_yKsNUIwi [~-W3*Qc[,`zg|bdp-I~Iz=O>W6\Yi5EKUY2Vf0ɯ&1WW׶,.{8gogH $YV zJpɢVL>Pgw 1J[H`vczoWF_w]YY\G"gz%_5yvm^,ZgWELZR5~_r_JЬxo]m,h_pEh}aWύmm[V|ޚH'}n.oR]t-o2#|k?"epuҎHr͂G;NP=V0乍#]&@9L3BGS\$ٻk瞝;"QSe@9?lM&e_l`vXdv~GHĪ)x9\$_ZA=sSVua$-BUL*P3;T"w$,;h #9n2 *=flŒW6Gl-(/'fyOGLk23\⭹s@ Z{{mfD hwi)x#uH7b&EUQmM*ъ*S6cI=ӫ':Ԝ4{Xt ܄Շz=yYm32܉BHAWTΉ欈bָӥo} d=8&5 fULzC8Yp=#][7 RhuX,f \|ak}"F bJsӐ~dE^] GvԷр7TFBto\ ;PT̽)Wzz EP7 yf?,/ W톓K^fgJvcIY^9þLۤ*t̂d$Df̭} kힷ5m}={`mا\=,`v,\pQАٶ=C;mVU=g+1N%k`T{_dٲ-߆מZ{Fp+bjSu0H`Y2 ( 0@vTGdM0j^UaT,`<|NmVH[z OU!:ٱOXWvH urgԳυלx*g78=vUhJ(Ǚֆpjk~GW ,`&p]#h(bIwQ͝mAg`&HS555@ܦ-Y+Y[LQ 0CXmOv @]q]Z4LQ 0C9(<0 1 -`,e3D<>4gi&`H3UuNXff3يJxALtnV;.l`t:eѪ`z"hP~[V6r)!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h!h ; wC+IDATxڬ 0 wU}Aps`urk].PB>rw.ɥQ5 1 &+4<،)xMLj|;*1|ϧ/65IJ[bnx)RUΰ)+Չɘsub'8ؓIpȀKrzj,=E=㥮m"6.gĜ(saZdlxROe$?F) n & :-b_q?>ﰝ]IENDB`assets/images/icon_delete.png000066600000001313152141651120012273 0ustar00PNG  IHDRagAMA7tEXtSoftwareAdobe ImageReadyqe<]IDAT8˥KSa[nQP2wܦγL[,biaA\Cv_2MlZFjסNMjmkʷ`&.#z<ϓ bVPT3%I{GqRivȅ tz#E6EddJ`DR2<]N ;4Ѿ;m>78ɀQe6LIt殷cq!z |v j/Xi@ %1|hl !|! Y#uUNw]˼ H3u t]E>k%IfoRD:0`~ | (r on3oG0!$V *[W0_-+ dW&2ZfMFVJpiF&B > Rg- ~ CmڴER ឫ p5ްy+21Kawh` #aZ񽞆TZoLѓ`"(?'ˎJvKކ|:G9[aw82 Jw f'ymzsӘTsw__ιIrIENDB`assets/lib/wck-api/images/ajax-loader.gif000066600000010120152141651120014266 0ustar00GIF89a lllDDDNNNLLLꞞ򊊊666zzz<<<(((,,,vvv"""VVV솆  &&&>>>ttt000BBBؤZZZ$$$~~~rrr|||hhhjjj```xxx΂XXX222***bbb^^^ppp! NETSCAPE2.0!Created with ajaxload.info! , ))4)3* 5 A9@ +&<  )KFN!Ƶ҇% "!'ш , D# 6. `xU-TA d 1 _r`AQ'LpH`AQ0BKA 1 F `c.pdld(`b Rp"a=xa!/{6B?6%bRu$`2$..6dCE c!F(CAS%hE̴@ $'rbPI )D vԠnj(wFj2Ѓ3>Xp@ cF<:IˈT#JD'7ݼ-MK %&`@! , TT)I((K/4FFKIAFLFA ( XMDF%$:(NIҠ.<<(06[CIB!$EZ 3Q8$8V+r`B"on)O`0Lދ' "(Hc#  B?081[0  ' B~`+AFB(M;z"D<bC t1J'Uj̉! $ u 8{e#Q%UPN(NңD&$sĶ`GeJ& 8D0 A)жKjE@L:D8'N [ <-\Q'["& /_ %%: M.O%. T :&9A*G,N& J.  T`.sŰBNp! '({XqP zD1@Q6}A&-Th#=BlA!BY @@-=!ɖ2@THUATh AS<@qb`PJ)˖]Xm*phJ#F,;@ :qMZK:@( %5Q4Ѓ5Pa)Pb+JF"lQpE ъ8y3 #$!@'IJ(;#9ޫ&TA#8跟 \{Av%HZ ! , SM[@KD %b`-b%QEA-AN"* Q-)*=Ic0/XG%SE 5 M <5I/5`EЁ (<Т>[UP`(5YPʔxȒ& #(8[tA8a!AR\C.Wp,pe'0 t.LAo-FZ  6\ ` 2%O ,,8@ń# >Ihi !0 zlre,YF8BkPJ+P nF@uX@'KA$<.,l` װ}DL)lFD-H )E !ƒOTAXPFUB/W p-X` ! , ADA@<EAD/%% ] Q#X=2Q?@b C[: VC5=M?2+3ІDNt Gx2Q ("4P J0)BH.~PP 6DAQсTxa`n` zs(LhD,XٷbLdH`1 . ǽbF:t@ \wquD*<$`Н{%I.|0PV*\BHR:0B (?Z՘9P`A҅` !qKf60'iC>,@B-r-=bIW5T'TL#=PAAQBCܥ=PQ $}RPQiۆv! , _/BS]F=@9P&%[D2F/D]WAEf J 3A [ IS)HB  >ԅ %+Zˇ-= UhPeX@R6B֡0XL#!r ` %p & Bf4jvP@` @$'PPAXe]L!">t(DQAѢ P<$ n0|TP Id@S`׀/,!70P PIU fd 0k`aD!@8kE#:&D"5XK L I@LXAB .h-4a % - D(VH ! , ) ("% 4aIFPR N)WZ<] 0.FD͈FG A#!5<*H .&QEA։N$OƋKZ*6 N $JV=pAצNAvDi"1Q .•BeP;Dd8 .xdU/1CwzGC c'  EXeC+a(c Hz|*0RA@qRF`!X!Sjh,A4Tt(uV,bD\TУ yxb2 #.J2".!Cp"!$taa)(X9`@@DP<,WnR0H@ `Ԡh-$}WpЁQ! , _>AO(PD(!O<- ->)C & [-ĈN\M;D̉ $ڊ>V]Bz0K (vx  e %Dȝ>@D" Eđ- E.T:0dE1? Th`¦M"6$`DG B<I J1" u@Rc  HkTHxPE*(etЃ N|T7QEKiDv( Q GlX$QP@e':lP!ETV  UP" #\C TŸGA80D&#`"ʋTl0aCD`@&X0%piAئDl P-"Cw%DC<EX@ph/W\N;assets/lib/wck-api/wordpress-creation-kit.js000066600000030625152141651120015134 0ustar00/* Add width to elements at startup */ jQuery(function(){ jQuery('.mb-table-container tbody td').css('width', function(){ return jQuery(this).width() }); }); /* Add width to labels if the post box is closed at load */ jQuery(function(){ /* Callback version */ /* postboxes.pbshow = function(box){ jQuery('strong, .field-label', jQuery('#'+box)).css( 'width', 'auto' ); } */ jQuery( '.wck-post-box .hndle' ).click( function(){ jQuery('strong, .field-label', jQuery(this).parent() ).css( 'width', 'auto' ); }) }); /* add reccord to the meta */ function addMeta(value, id, nonce){ /* if tinyMCE then trigger save. save puts the content in the hidden textarea */ if( typeof tinyMCE !== 'undefined' ) tinyMCE.triggerSave(); jQuery('#'+value).parent().css({'opacity':'0.4', 'position':'relative'}).append('
        '); /*object to hold the values */ var values = {}; jQuery('#'+value+' .mb-field').each(function(){ var key = jQuery(this).attr('name'); if(jQuery(this).attr('type') == 'checkbox' || jQuery(this).attr('type') == 'radio' ) { if( typeof values[key.toString()] === "undefined" ) values[key.toString()] = ''; if(jQuery(this).is(':checked')){ if( values[key.toString()] == '' ) values[key.toString()] += jQuery(this).val().toString(); else values[key.toString()] += ', ' + jQuery(this).val().toString(); } } else values[key.toString()] = jQuery(this).val().toString(); }); meta = value; if( value.indexOf("-wcknested-") != -1 ){ metaDetails = value.split("-wcknested-"); meta = metaDetails[0]; } jQuery.post( wppbWckAjaxurl , { action:"wck_add_meta"+meta, meta:value, id:id, values:values, _ajax_nonce:nonce}, function(response) { jQuery( '#'+value+' .field-label').removeClass('error'); if( response.error ){ jQuery('#'+value).parent().css('opacity','1'); jQuery('#mb-ajax-loading').remove(); jQuery.each( response.errorfields, function (index, field) { jQuery( '#'+value+' .field-label[for="' + field + '"]' ).addClass('error'); }); alert( response.error ); } else{ /* refresh the list */ jQuery('#container_'+value).replaceWith(response.entry_list); jQuery('.mb-table-container tbody td').css('width', function(){ return jQuery(this).width() }); if( !jQuery( '#'+value ).hasClass('single') ) mb_sortable_elements(); /* restore the add form to the original values */ if( !jQuery( '#'+value ).hasClass('single') ){ jQuery( '#'+value ).replaceWith( response.add_form ); jQuery('#'+value).parent().css('opacity','1'); jQuery('#mb-ajax-loading').remove(); } else{ jQuery('#'+value).parent().css('opacity','1'); jQuery('#mb-ajax-loading').remove(); } jQuery('body').trigger('wck-added-element'); } }); } /* remove reccord from the meta */ function removeMeta(value, id, element_id, nonce){ var response = confirm( "Delete this item ?" ); if( response == true ){ meta = value; if( value.indexOf("-wcknested-") != -1 ){ metaDetails = value.split("-wcknested-"); meta = metaDetails[0]; } jQuery('#'+value).parent().css({'opacity':'0.4', 'position':'relative'}).append('
        '); jQuery.post( wppbWckAjaxurl , { action:"wck_remove_meta"+meta, meta:value, id:id, element_id:element_id, _ajax_nonce:nonce}, function(response) { /* If single add the form */ if( jQuery( '#container_'+value ).hasClass('single') ){ jQuery( '#container_'+value ).before( response.add_form ); jQuery( '#'+value ).addClass('single'); } /* refresh the list */ jQuery('#container_'+value).replaceWith(response.entry_list); jQuery('.mb-table-container tbody td').css('width', function(){ return jQuery(this).width() }); mb_sortable_elements(); jQuery('#'+value).parent().css('opacity','1'); jQuery('#mb-ajax-loading').remove(); }); } } /* swap two reccords */ /*function swapMetaMb(value, id, element_id, swap_with){ jQuery('#'+value).parent().css({'opacity':'0.4', 'position':'relative'}).append('
        '); jQuery.post( wppbWckAjaxurl , { action:"swap_meta_mb", meta:value, id:id, element_id:element_id, swap_with:swap_with}, function(response) { jQuery.post( wppbWckAjaxurl , { action:"refresh_list", meta:value, id:id}, function(response) { jQuery('#container_'+value).replaceWith(response); jQuery('#'+value).parent().css('opacity','1'); jQuery('#mb-ajax-loading').remove(); }); }); } */ /* reorder elements through drag and drop */ function mb_sortable_elements() { jQuery( ".mb-table-container tbody" ).not( jQuery( ".mb-table-container.single tbody, .mb-table-container.not-sortable tbody" ) ).sortable({ placeholder: "wck-state-highlight", update: function(event, ui){ var value = jQuery(this).parent().siblings('.wck-add-form').attr('id'); var id = jQuery(this).parent().attr('post'); var result = jQuery(this).sortable('toArray'); var values = {}; for(var i in result) { values[i] = result[i].replace('element_',''); } jQuery('#'+value).parent().css({'opacity':'0.4', 'position':'relative'}).append('
        '); meta = value; if( value.indexOf("-wcknested-") != -1 ){ metaDetails = value.split("-wcknested-"); meta = metaDetails[0]; } jQuery.post( wppbWckAjaxurl , { action:"wck_reorder_meta"+meta, meta:value, id:id, values:values}, function(response) { jQuery('#container_'+value).replaceWith(response.entry_list); jQuery('.mb-table-container tbody td').css('width', function(){ return jQuery(this).width() }); mb_sortable_elements(); jQuery('#'+value).parent().css('opacity','1'); jQuery('#mb-ajax-loading').remove(); }); }, items: "> tr" }); /*I don't know if this is necessary. Remove when I have more time for tests */ jQuery( "#sortable:not(select)" ).disableSelection(); jQuery('.mb-table-container ul').mousedown( function(e){ e.stopPropagation(); }); } jQuery(mb_sortable_elements); /* show the update form */ function showUpdateFormMeta(value, id, element_id, nonce){ if( jQuery( '#update_container_' + value + '_' + element_id ).length == 0 ){ jQuery('#container_'+value).parent().css({'opacity':'0.4', 'position':'relative'}).append('
        '); if( jQuery( '#container_' + value + " tbody" ).hasClass('ui-sortable') ) jQuery( '#container_' + value + " tbody" ).sortable("disable"); meta = value; if( value.indexOf("-wcknested-") != -1 ){ metaDetails = value.split("-wcknested-"); meta = metaDetails[0]; } jQuery.post( wppbWckAjaxurl , { action:"wck_show_update"+meta, meta:value, id:id, element_id:element_id, _ajax_nonce:nonce}, function(response) { //jQuery('#container_'+value+' #element_'+element_id).append(response); jQuery(response).insertAfter('#container_'+value+' > tbody > #element_'+element_id); jQuery('#container_'+value).parent().css('opacity','1'); jQuery('#mb-ajax-loading').remove(); wckGoToByScroll('update_container_' + value + '_' + element_id); // Allow for extra client-side hooks to be executed. jQuery('html').trigger('wpbFormMetaLoaded', meta); }); } } /* remove the update form */ function removeUpdateForm( id ){ jQuery('html, body').animate({ scrollTop: jQuery( '#'+id).prev().offset().top - 40 }, 700); jQuery( '#'+id).prev().animate({ backgroundColor: '#FFFF9C' }, 700); jQuery( '#'+id).prev().animate({ backgroundColor: 'none' }, 700); if( jQuery( '#'+id).parent('tbody').hasClass('ui-sortable') ) jQuery( '#'+id).parent('tbody').sortable("enable"); jQuery( '#'+id ).remove(); } /* update reccord */ function updateMeta(value, id, element_id, nonce){ /* if tinyMCE then trigger save. save puts the content in the hidden textarea */ if( typeof tinyMCE !== 'undefined' ) tinyMCE.triggerSave(); jQuery('#container_'+value).parent().css({'opacity':'0.4', 'position':'relative'}).append('
        '); var values = {}; jQuery('#update_container_'+value+'_'+element_id+' .mb-field').each(function(){ var key = jQuery(this).attr('name'); if(jQuery(this).attr('type') == 'checkbox' || jQuery(this).attr('type') == 'radio' ) { if( typeof values[key.toString()] === "undefined" ) values[key.toString()] = ''; if(jQuery(this).is(':checked')){ if( values[key.toString()] == '' ) values[key.toString()] += jQuery(this).val().toString(); else values[key.toString()] += ', ' + jQuery(this).val().toString(); } } else values[key.toString()] = jQuery(this).val().toString(); }); meta = value; if( value.indexOf("-wcknested-") != -1 ){ metaDetails = value.split("-wcknested-"); meta = metaDetails[0]; } jQuery.post( wppbWckAjaxurl , { action:"wck_update_meta"+meta, meta:value, id:id, element_id:element_id, values:values, _ajax_nonce:nonce}, function(response) { jQuery( '#update_container_'+value+'_'+element_id + ' .field-label').removeClass('error'); if( response.error ){ jQuery('#container_'+value).parent().css('opacity','1'); jQuery('#mb-ajax-loading').remove(); jQuery.each( response.errorfields, function (index, field) { jQuery( '#update_container_'+value+'_'+element_id + ' .field-label[for="' + field + '"]' ).addClass('error'); }); alert( response.error ); } else{ jQuery('#update_container_'+value+'_'+element_id).remove(); /* refresh the list */ jQuery('#container_'+value+' #element_'+element_id).replaceWith(response.entry_content); jQuery('.mb-table-container tbody td').css('width', function(){ return jQuery(this).width() }); if( jQuery( '#container_' + value + " tbody" ).hasClass('ui-sortable') && jQuery( '#container_' + value + " tbody .wck_update_container" ).length == 0 ) jQuery( '#container_' + value + " tbody" ).sortable("enable"); jQuery('#container_'+value).parent().css('opacity','1'); jQuery('#mb-ajax-loading').remove(); //the scroll works a little bit funny ( it goes way up then down, prob because we remove the update form ) so comment it out for now /*jQuery('html, body').animate({ scrollTop: jQuery('#container_'+value+' #element_' + element_id).offset().top - 40 }, 700);*/ jQuery('#container_'+value+' #element_' + element_id).animate({ backgroundColor: '#FFFF9C' }, 1000); jQuery('#container_'+value+' #element_' + element_id).animate({ backgroundColor: 'none' }, 1000); } }); } /* function syncs the translation */ function wckSyncTranslation(id){ jQuery.post( wppbWckAjaxurl , { action:"wck_sync_translation", id:id}, function(response) { if( response == 'syncsuccess' ) window.location.reload(); }); } function wckGoToByScroll(id){ jQuery('html,body').animate({scrollTop: jQuery("#"+id).offset().top - 28},'slow'); } /* Remove uploaded file */ jQuery(function(){ jQuery(document).on('click', '.wck-remove-upload', function(e){ jQuery(this).parent().parent().parent().children('.mb-field').val(""); jQuery(this).parent().parent('.upload-field-details').html('

        '); }); }); /* Set width for listing "label" equal to the widest */ jQuery( function(){ jQuery('.wck-post-box').css( {visibility: 'visible', height: 'auto'} ); }); function wck_set_to_widest( element, parent ){ if( element == '.field-label' ){ if( jQuery( "#" + parent + ' ' + element ).length != 0 ){ var widest = null; jQuery( "#" + parent + ' ' + element ).each(function() { if (widest == null) widest = jQuery(this); else if ( jQuery(this).width() > widest.width() ) widest = jQuery(this); }); jQuery( "#" + parent ).append(""); } } else if( element == 'strong' ){ if( jQuery( "#container_" + parent + " #element_0 " + element ).length != 0 ){ var widest = null; jQuery( "#container_" + parent + " #element_0 " + element ).each(function() { if (widest == null) widest = jQuery(this); else if ( jQuery(this).width() > widest.width() ) widest = jQuery(this); }); jQuery( "#container_" + parent ).append(""); } } } assets/lib/wck-api/wordpress-creation-kit.php000066600000172136152141651120015313 0ustar00 'text', 'title' => 'Title', 'description' => 'Description for this input' ), array( 'type' => 'textarea', 'title' => 'Description' ), array( 'type' => 'upload', 'title' => 'Image', 'description' => 'Upload a image' ), array( 'type' => 'select', 'title' => 'Select This', 'options' => array( 'Option 1', 'Option 2', 'Option 3' ) ), array( 'type' => 'checkbox', 'title' => 'Check This', 'options' => array( 'Option 1', 'Option 2', 'Option 3' ) ), array( 'type' => 'radio', 'title' => 'Radio This', 'options' => array( 'Radio 1', 'Radio 2', 'Radio 3' ) ), ); $args = array( 'metabox_id' => 'rm_slider_content', 'metabox_title' => 'Slideshow Class', 'post_type' => 'slideshows', 'meta_name' => 'rmscontent', 'meta_array' => $fint ); new Wordpress_Creation_Kit_PB( $args ); On the frontend: $meta = get_post_meta( $post->ID, 'rmscontent', true ); */ class Wordpress_Creation_Kit_PB{ private $defaults = array( 'metabox_id' => '', 'metabox_title' => 'Meta Box', 'post_type' => 'post', 'meta_name' => '', 'meta_array' => array(), 'page_template' => '', 'post_id' => '', 'single' => false, 'unserialize_fields' => false, 'sortable' => true, 'context' => 'post_meta', 'mb_context' => 'normal' ); private $args; /* Constructor method for the class. */ function __construct( $args ) { /* Global that will hold all the arguments for all the custom boxes */ global $wck_objects; /* Merge the input arguments and the defaults. */ $this->args = wp_parse_args( $args, $this->defaults ); /* Add the settings for this box to the global object */ $wck_objects[$this->args['metabox_id']] = $this->args; /*print scripts*/ add_action('admin_enqueue_scripts', array( &$this, 'wck_print_scripts' )); /* add our own ajaxurl because we are going to use the wck script also in frontend and we want to avoid any conflicts */ add_action( 'admin_head', array( &$this, 'wck_print_ajax_url' ) ); // Set up the AJAX hooks add_action("wp_ajax_wck_add_meta".$this->args['meta_name'], array( &$this, 'wck_add_meta') ); add_action("wp_ajax_wck_update_meta".$this->args['meta_name'], array( &$this, 'wck_update_meta') ); add_action("wp_ajax_wck_show_update".$this->args['meta_name'], array( &$this, 'wck_show_update_form') ); add_action("wp_ajax_wck_refresh_list".$this->args['meta_name'], array( &$this, 'wck_refresh_list') ); add_action("wp_ajax_wck_remove_meta".$this->args['meta_name'], array( &$this, 'wck_remove_meta') ); add_action("wp_ajax_wck_reorder_meta".$this->args['meta_name'], array( &$this, 'wck_reorder_meta') ); add_action('add_meta_boxes', array( &$this, 'wck_add_metabox') ); /* For single forms we save them the old fashion way */ if( $this->args['single'] ){ add_action('save_post', array($this, 'wck_save_single_metabox'), 10, 2); /* wp_insert_post executes after save_post so at this point if we have the error global we can redirect the page and add the error message and error fields urlencoded as $_GET */ add_action('wp_insert_post', array($this, 'wck_single_metabox_redirect_if_errors'), 10, 2); /* if we have any $_GET errors alert them with js so we have consistency */ add_action('admin_print_footer_scripts', array($this, 'wck_single_metabox_errors_display') ); } } //add metabox using wordpress api function wck_add_metabox() { global $pb_wck_pages_hooknames; if( $this->args['context'] == 'post_meta' ){ if( $this->args['post_id'] == '' && $this->args['page_template'] == '' ){ add_meta_box($this->args['metabox_id'], $this->args['metabox_title'], array( &$this, 'wck_content' ), $this->args['post_type'], $this->args['mb_context'], 'high', array( 'meta_name' => $this->args['meta_name'], 'meta_array' => $this->args['meta_array']) ); /* add class to meta box */ add_filter( "postbox_classes_".$this->args['post_type']."_".$this->args['metabox_id'], array( &$this, 'wck_add_metabox_classes' ) ); } else{ if( !empty( $_GET['post'] ) ) $post_id = filter_var( $_GET['post'], FILTER_SANITIZE_NUMBER_INT ); else if( !empty( $_POST['post_ID'] ) ) $post_id = filter_var( $_POST['post_ID'], FILTER_SANITIZE_NUMBER_INT ); else $post_id = ''; if( $this->args['post_id'] != '' && $this->args['page_template'] != '' ){ $template_file = get_post_meta($post_id,'_wp_page_template',TRUE); if( $this->args['post_id'] == $post_id && $template_file == $this->args['page_template'] ) add_meta_box($this->args['metabox_id'], $this->args['metabox_title'], array( &$this, 'wck_content' ), 'page', $this->args['mb_context'], 'high', array( 'meta_name' => $this->args['meta_name'], 'meta_array' => $this->args['meta_array'] ) ); /* add class to meta box */ add_filter( "postbox_classes_page_".$this->args['metabox_id'], array( &$this, 'wck_add_metabox_classes' ) ); } else{ if( $this->args['post_id'] != '' ){ if( $this->args['post_id'] == $post_id ){ $post_type = get_post_type( $post_id ); add_meta_box($this->args['metabox_id'], $this->args['metabox_title'], array( &$this, 'wck_content' ), $post_type, $this->args['mb_context'], 'high', array( 'meta_name' => $this->args['meta_name'], 'meta_array' => $this->args['meta_array'] ) ); /* add class to meta box */ add_filter( "postbox_classes_".$post_type."_".$this->args['metabox_id'], array( &$this, 'wck_add_metabox_classes' ) ); } } if( $this->args['page_template'] != '' ){ $template_file = get_post_meta($post_id,'_wp_page_template',TRUE); if ( $template_file == $this->args['page_template'] ){ add_meta_box($this->args['metabox_id'], $this->args['metabox_title'], array( &$this, 'wck_content' ), 'page', $this->args['mb_context'], 'high', array( 'meta_name' => $this->args['meta_name'], 'meta_array' => $this->args['meta_array']) ); /* add class to meta box */ add_filter( "postbox_classes_page_".$this->args['metabox_id'], array( &$this, 'wck_add_metabox_classes' ) ); } } } } } else if( $this->args['context'] == 'option' ){ if( !empty( $pb_wck_pages_hooknames[$this->args['post_type']] ) ) { add_meta_box($this->args['metabox_id'], $this->args['metabox_title'], array(&$this, 'wck_content'), $pb_wck_pages_hooknames[$this->args['post_type']], $this->args['mb_context'], 'high', array('meta_name' => $this->args['meta_name'], 'meta_array' => $this->args['meta_array'])); /* add class to meta box */ add_filter("postbox_classes_" . $pb_wck_pages_hooknames[$this->args['post_type']] . "_" . $this->args['metabox_id'], array(&$this, 'wck_add_metabox_classes')); } } } /* Function used to add classes to the wck meta boxes */ function wck_add_metabox_classes( $classes ){ array_push($classes,'wck-post-box'); return $classes; } function wck_content($post, $metabox){ if( !empty( $post->ID ) ) $post_id = $post->ID; else $post_id = ''; //output the add form self::create_add_form($metabox['args']['meta_array'], $metabox['args']['meta_name'], $post); //output the entries only for repeater fields if( !$this->args['single'] ) echo self::wck_output_meta_content($metabox['args']['meta_name'], $post_id, $metabox['args']['meta_array']); } /** * The function used to create a form element * * @since 1.0.0 * * @param string $meta Meta name. * @param array $details Contains the details for the field. * @param string $value Contains input value; * @param string $context Context where the function is used. Depending on it some actions are preformed.; * @param int $post_id The post ID; * @return string $element input element html string. */ function wck_output_form_field( $meta, $details, $value = '', $context = '', $post_id = '' ){ $element = ''; if( $context == 'edit_form' ){ $edit_class = '.mb-table-container '; $var_prefix = 'edit'; } else if( $context == 'fep' ){ /* id prefix for frontend posting */ $frontend_prefix = 'fep-'; } else{ if( isset( $details['default'] ) && !( $this->args['single'] == true && !is_null( $value ) ) ) { $value = apply_filters("wck_default_value_{$meta}_" . Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ), $details['default']); } } /* for single post meta metaboxes we need a prefix in the name attr of the input because in the case we have multiple single metaboxes on the same post we need to prevent the fields from having the same name attr */ if( $this->args['context'] == 'post_meta' && $this->args['single'] && $context != 'fep' ) $single_prefix = $this->args['meta_name'].'_'; else $single_prefix = ''; $element .= ''; $element .= '
        '; // Allow for appeding custom markup before the element. $element .= apply_filters( 'wck_output_form_field_before_customtype_' . $details['type'], '', $value, $details, $single_prefix ); /* include actual field type possible field types: text, textarea, select, checkbox, radio, upload, wysiwyg editor, datepicker, country select, user select, cpt select */ if( function_exists( 'wck_nr_get_repeater_boxes' ) ){ $cfc_titles = wck_nr_get_repeater_boxes(); if( in_array( $details['type'], $cfc_titles ) ){ $details['type'] = 'nested repeater'; } } if ( isset( $details['options'] ) ) { // Allow to filter the options for specific field slugs. $details = apply_filters( 'wck_output_form_field_options_by_slug', $details, $details['slug'], $value, $single_prefix ); } if( file_exists( dirname( __FILE__ ).'/fields/'.$details['type'].'.php' ) ){ require( dirname( __FILE__ ).'/fields/'.$details['type'].'.php' ); } // Add a filter that allows us to add support for custom field types, not just the ones defined in fields (wck api) $element .= apply_filters('wck_output_form_field_customtype_' . $details['type'], '', $value, $details, $single_prefix); // Allow for appeding custom markup after the element. $element .= apply_filters( 'wck_output_form_field_after_customtype_' . $details['type'], '', $value, $details, $single_prefix ); if( !empty( $details['description'] ) ){ $element .= '

        '. $details['description'].'

        '; } $element .= '
        '; $element = apply_filters( "wck_output_form_field_{$meta}_" . Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ), $element ); return $element; } /** * The function used to create the form for adding records * * @since 1.0.0 * * @param array $fields Contains the desired inputs in the repeater field. Must be like: array('Key:type'). * Key is used for the name attribute of the field, label of the field and as the meta_key. * Supported types: input, textarea, upload * @param string $meta It is used in update_post_meta($id, $meta, $results);. Use '_' prefix if you don't want * the meta to apear in custom fields box. * @param object $post Post object */ function create_add_form($fields, $meta, $post, $context = '' ){ $nonce = wp_create_nonce( 'wck-add-meta' ); if( !empty( $post->ID ) ) $post_id = $post->ID; else $post_id = ''; /* for single forms we need the values that are stored in the meta */ if( $this->args['single'] == true ) { if ($this->args['context'] == 'post_meta') $results = get_post_meta($post_id, $meta, true); else if ($this->args['context'] == 'option') $results = get_option( apply_filters( 'wck_option_meta' , $meta )); /* Filter primary used for CFC/OPC fields in order to show/hide fields based on type */ $wck_update_container_css_class = apply_filters("wck_add_form_class_{$meta}", '', $meta, $results ); } ?>
        args['context'] == 'post_meta' ) $results = get_post_meta($id, $meta, true); else if ( $this->args['context'] == 'option' ) $results = get_option( apply_filters( 'wck_option_meta' , $meta ) ); /* Filter primary used for CFC/OPC fields in order to show/hide fields based on type */ $wck_update_container_css_class = " class='wck_update_container update_container_$meta'"; $wck_update_container_css_class = apply_filters("wck_update_container_class_{$meta}", $wck_update_container_css_class, $meta, $results, $element_id ); $form = ''; $form .= ''; if($results != null){ $i = 0; $form .= ''; } $form .= ''; return $form; } /** * The function used to output the content of a meta * * @since 1.0.0 * * @param string $meta It is used in get_post_meta($id, $meta, $results);. Use '_' prefix if you don't want * the meta to apear in custom fields box. * @param int $id Post id */ function wck_output_meta_content($meta, $id, $fields, $box_args = '' ){ /* in fep $this->args is empty so we need it as a parameter */ if( !empty( $box_args ) ) $this->args = wp_parse_args( $box_args, $this->defaults ); if( $this->args['context'] == 'post_meta' || $this->args['context'] == '' ) $results = get_post_meta($id, $meta, true); else if ( $this->args['context'] == 'option' ) $results = get_option( apply_filters( 'wck_option_meta' , $meta ) ); $list = ''; $list .= ''; if( !empty( $results ) ){ $list .= apply_filters( 'wck_metabox_content_header_'.$meta , '' ); $i=0; foreach ($results as $result){ $list .= self::wck_output_entry_content( $meta, $id, $fields, $results, $i ); $i++; } } $list .= apply_filters( 'wck_metabox_content_footer_'.$meta , '', $id ); $list .= '
        #'. __( 'Content', 'profile-builder' ) .''. __( 'Edit', 'wck' ) .''. __( 'Delete', 'wck' ) .'
        '; $list = apply_filters('wck_metabox_content_'.$meta, $list, $id); return $list; } function wck_output_entry_content( $meta, $id, $fields, $results, $element_id ){ $edit_nonce = wp_create_nonce( 'wck-edit-entry' ); $delete_nonce = wp_create_nonce( 'wck-delete-entry' ); $entry_nr = $element_id +1; $wck_element_class = ''; $wck_element_class = apply_filters( "wck_element_class_{$meta}", $wck_element_class, $meta, $results, $element_id ); $list = ''; $list .= ''; $list .= apply_filters( 'wck_add_content_before_columns', '', $list, $meta ); $list .= ''. $entry_nr .''; $list .= '
          ' . "\r\n"; $j = 0; if( !empty( $fields ) ){ foreach( $fields as $field ){ $details = $field; if( !empty( $results[$element_id][Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details )] ) ) $value = $results[$element_id][Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details )]; else $value =''; /* filter display value */ $value = apply_filters( "wck_displayed_value_{$meta}_element_{$j}", $value ); /* display it differently based on field type*/ if( $details['type'] == 'upload' ){ $display_value = self::wck_get_entry_field_upload($value); } elseif ( $details['type'] == 'user select' ) { $display_value = self::wck_get_entry_field_user_select( $value ) . ''; } elseif ( $details['type'] == 'cpt select' ){ $display_value = self::wck_get_entry_field_cpt_select( $value ) . ''; } elseif ( $details['type'] == 'checkbox' && is_array( $value ) ){ $display_value = implode( ', ', $value ); } elseif ( $details['type'] == 'select' || $details['type'] === 'select-2' ){ $display_value = '
          ' . __(self::wck_get_entry_field_select( $value, $details ), 'profilebuilder') . '
          '; } else { $display_value = '
          '.htmlspecialchars( $value ) . '
          '; } $display_value = apply_filters( "wck_pre_displayed_value_{$meta}_element_{$field['slug']}", $display_value ); $list = apply_filters( "wck_before_listed_{$meta}_element_{$j}", $list, $element_id, $value ); /*check for nested repeater type and set it acordingly */ if( strpos( $details['type'], 'CFC-') === 0 ) $details['type'] = 'nested-repeater'; $list .= '
        • '.$details['title'].': '.$display_value.'
        • ' . "\r\n"; $list = apply_filters( "wck_after_listed_{$meta}_element_{$j}", $list, $element_id, $value ); $j++; /* In CFC/OPC we need the field title. Find it out and output it if found */ if ($meta == 'wck_cfc_fields') { if( !empty( $results[$element_id][Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details )] ) ){ $field_title = $results[$element_id][Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details )]; if ($field_title == "Field Type") $cfc_field_type = $value; } } } } $list .= '
        '; $list = apply_filters( 'wck_after_content_element', $list, $meta, $id, $results, $element_id ); /* check if we have nested repeaters */ if( function_exists( 'wck_nr_check_for_nested_repeaters' ) ){ if( wck_nr_check_for_nested_repeaters( $fields ) === true ){ $list .= wck_nr_handle_repeaters( $meta, $id, $fields, $results, $element_id ); } } if( $element_id === 0 ){ $list .= ""; } $list .= ''; $list .= ''. apply_filters( 'wck_edit_button', __('Edit','wck'), $meta ) .''; $list .= ''. apply_filters( 'wck_delete_button', __( 'Delete', 'wck' ), $meta) .''; $list .= apply_filters( 'wck_add_content_after_columns', '', $list, $meta ); $list .= " \r\n"; return $list; } /* function to generate the output for the select field */ function wck_get_entry_field_select( $value, $field_details ){ if ( (!is_array( $field_details ) && !isset( $field_details['options']) ) || empty( $value )){ return $value; } //convert field_details to single array if option groups are defined. if( Wordpress_Creation_Kit_PB::wck_is_multi( $field_details['options'] ) ){ $select_options = array(); foreach($field_details['options']['optgroups'] as $optgroup) { foreach($optgroup['options'] as $group_option ){ $select_options[] = $group_option; } } $field_details['options'] = $select_options; } foreach( $field_details['options'] as $option ){ if ( strpos( $option, $value ) !== false ){ if( strpos( $option, '%' ) === false ){ return $value; } else { $option_parts = explode( '%', $option ); if( !empty( $option_parts ) ){ if( empty( $option_parts[0] ) && count( $option_parts ) == 3 ){ $label = $option_parts[1]; return $label; } } } } } //this was added for select-2 custom values that do not exist in the defined options return $value; } /* function to generate output for upload field */ function wck_get_entry_field_upload($id){ if( !empty ( $id ) && is_numeric( $id ) ){ $file_src = wp_get_attachment_url($id); $thumbnail = wp_get_attachment_image( $id, array( 80, 60 ), true ); $file_name = get_the_title( $id ); if ( preg_match( '/^.*?\.(\w+)$/', get_attached_file( $id ), $matches ) ) $file_type = esc_html( strtoupper( $matches[1] ) ); else $file_type = strtoupper( str_replace( 'image/', '', get_post_mime_type( $id ) ) ); return $display_value = '
        '. $thumbnail .'

        '. $file_name .''. $file_type . '

        '; } else { return ''; } } /* function to generate output for user select */ function wck_get_entry_field_user_select($id){ if( !empty ( $id ) && is_numeric( $id ) ){ $user = get_user_by( 'id', $id ); if ( $user ) return '
        '.htmlspecialchars( $user->display_name );
        			else
        				return 'Error - User ID not found in database';
        
        		} else {
        			return '';
        		}
        	}
        
        	/* function to generate output for cpt select */
        	function wck_get_entry_field_cpt_select($id){
        		if( !empty ( $id ) && is_numeric( $id ) ){
        			$post = get_post( $id );
        
        			if ( $post != null ){
        				if ( $post->post_title == '' )
        					$post->post_title = 'No title. ID: ' . $id;
        
        				return '
        '.htmlspecialchars( $post->post_title );
        			}
        			else
        				return 'Error - Post ID not found in database';
        
        		} else {
        			return '';
        		}
        	}
        
        	/* enque the js/css */
        	function wck_print_scripts($hook){
        		global $pb_wck_pages_hooknames;
        
        		if( $this->args['context'] == 'post_meta' ) {
        			if( 'post.php' == $hook || 'post-new.php' == $hook){
        
        				/* only add on profile builder custom post types */
        				if( !empty( $_GET['post'] ) )
        					$post_id = filter_var( $_GET['post'], FILTER_SANITIZE_NUMBER_INT );
        				else if( !empty( $_POST['post_ID'] ) )
        					$post_id = filter_var( $_POST['post_ID'], FILTER_SANITIZE_NUMBER_INT );
        				else
        					$post_id = '';
        				if( !empty( $post_id ) ){
        					$current_post_type = get_post_type( $post_id );
        					if( strpos( $current_post_type, 'wppb-' ) === false )
        						return '';
        				}
        
        				self::wck_enqueue();
        			}
        		}
        		elseif( $this->args['context'] == 'option' ){
        			if( $pb_wck_pages_hooknames[$this->args['post_type']] == $hook ){
        				self::wck_enqueue( 'options' );
        			}
        		}
        	}
        
        	/* our own ajaxurl */
        	function wck_print_ajax_url(){
        		echo '';
        	}
        
        
        	/* Helper function for enqueueing scripts and styles */
        	private static function wck_enqueue( $context = '' ){
        
        		wp_enqueue_script( 'jquery-ui-draggable' );
        		wp_enqueue_script( 'jquery-ui-droppable' );
        		wp_enqueue_script( 'jquery-ui-sortable' );
        
        		if( $context == 'options' ){
        			wp_enqueue_script( 'thickbox' );
        			wp_enqueue_style( 'thickbox' );
        		}
        
        		wp_enqueue_script('wordpress-creation-kit', plugins_url('/wordpress-creation-kit.js', __FILE__), array('jquery', 'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-sortable' ), PROFILE_BUILDER_VERSION );
        		wp_register_style('wordpress-creation-kit-css', plugins_url('/wordpress-creation-kit.css', __FILE__), array(), PROFILE_BUILDER_VERSION );
        		wp_enqueue_style('wordpress-creation-kit-css');
        
        		// wysiwyg
        //		wp_register_script( 'wck-tinymce', plugins_url( '/assets/js/tiny_mce/tiny_mce.js', __FILE__ ), array(), '1.0', true );
        //		wp_enqueue_script( 'wck-tinymce' );
        //		wp_register_script( 'wck-tinymce-init', plugins_url( '/assets/js/tiny_mce/wck_tiny_mce_init.js', __FILE__ ), array(), '1.0', true );
        //		wp_enqueue_script( 'wck-tinymce-init' );
        
                //select 2 KEEP the wppb-select2 handle so we don't include it multiple times, seeing we include it from PB as well
                wp_enqueue_script( 'wppb-select2', plugins_url( '/assets/js/select2/select2.min.js', __FILE__ ), array(), PROFILE_BUILDER_VERSION, true );
                wp_enqueue_style( 'wppb-select2-style', plugins_url( '/assets/js/select2/select2.min.css', __FILE__ ), false, PROFILE_BUILDER_VERSION );
        
        		//datepicker
        		wp_enqueue_script('jquery-ui-datepicker');
        		wp_enqueue_style( 'jquery-style', plugins_url( '/assets/datepicker/datepicker.css', __FILE__ ) );
        
        
                /* media upload */
                wp_enqueue_media();
                wp_enqueue_script('wck-upload-field', plugins_url('/fields/upload.js', __FILE__), array('jquery') );
        
        	}
        
        	/* Helper function for required fields */
        	function wck_test_required( $meta_array, $meta, $values, $id ){
                $fields = apply_filters( 'wck_before_test_required', $meta_array, $meta, $values, $id );
        		$required_fields = array();
        		$required_fields_with_errors = array();
        		$required_message = '';
        
        		$errors = '';
        
        		if( !empty( $fields ) ){
        			foreach( $fields as $field ){
        				if( !empty( $field['required'] ) && $field['required'] )
        					$required_fields[Wordpress_Creation_Kit_PB::wck_generate_slug( $field['title'], $field )] = $field['title'];
        			}
        		}
        
        		if( !empty( $values ) ){
        			foreach( $values as $key => $value ){
        				if( array_key_exists( $key, $required_fields ) && apply_filters( "wck_required_test_{$meta}_{$key}", empty( $value ), $value, $id ) ){
        					$required_message .= apply_filters( "wck_required_message_{$meta}_{$key}", __( "Please enter a value for the required field ", "wck" ) . "$required_fields[$key] \n", $value );
        					$required_fields_with_errors[] = $key;
        				}
        			}
        		}
        
        		$required_message .= apply_filters( "wck_extra_message", "", $fields, $required_fields, $meta, $values, $id );
        		$required_fields_with_errors = apply_filters( "wck_required_fields_with_errors", $required_fields_with_errors, $fields, $required_fields, $meta, $value, $id );
        
        		if( $required_message != '' ){
        			$errors = array( 'error' => $required_message, 'errorfields' => $required_fields_with_errors );
        		}
        
        		return $errors;
        	}
        
        	/* Checks to see wether the current user can modify data */
        	function wck_verify_user_capabilities( $context, $meta = '', $id = 0 ) {
        
        		$return = true;
        
        		// Meta is an option
        		if( $context == 'option' && !current_user_can( 'manage_options' ) )
        			$return = false;
        
        		// Meta is post related
        		if( $context == 'post_meta' && is_user_logged_in() ) {
        
        			// Current user must be able to edit posts
        			if( !current_user_can( 'edit_posts' ) )
        				$return = false;
        
        			// If the user can't edit others posts the current post must be his/hers
        			elseif( !current_user_can( 'edit_others_posts' ) ) {
        
        				$current_post = get_post( $id );
        				$current_user = wp_get_current_user();
        
        				if( $current_user->ID != $current_post->post_author )
        					$return = false;
        
        			}
        
        		}
        
        		// Return
        		if( $return )
        			return $return;
        		else
        			return array( 'error' => __( 'You are not allowed to do this.', 'wck' ), 'errorfields' => '' );
        
        	}
        
        
        	/* ajax add a reccord to the meta */
        	function wck_add_meta(){
        		check_ajax_referer( "wck-add-meta" );
        		if( !empty( $_POST['meta'] ) )
        			$meta = sanitize_text_field( $_POST['meta'] );
        		else
        			$meta = '';
        		if( !empty( $_POST['id'] ) )
        			$id = absint($_POST['id']);
        		else
        			$id = '';
        		if( !empty( $_POST['values'] ) && is_array( $_POST['values'] ) )
        			$values = array_map( 'wppb_sanitize_value', $_POST['values'] );
        		else
        			$values = array();
        
        		// Security checks
        		if( true !== ( $error = self::wck_verify_user_capabilities( $this->args['context'], $meta, $id ) ) ) {
        			header( 'Content-type: application/json' );
        			die( json_encode( $error ) );
        		}
        
        		$values = apply_filters( "wck_add_meta_filter_values_{$meta}", $values );
        
        		/* check required fields */
        		$errors = self::wck_test_required( $this->args['meta_array'], $meta, $values, $id );
        		if( $errors != '' ){
        			header( 'Content-type: application/json' );
        			die( json_encode( $errors ) );
        		}
        
        
        		if( $this->args['context'] == 'post_meta' )
        			$results = get_post_meta($id, $meta, true);
        		else if ( $this->args['context'] == 'option' )
        			$results = get_option( apply_filters( 'wck_option_meta' , $meta, $values ) );
        
        		/* we need an array here */
        		if( empty( $results ) && !is_array( $results ) )
        			$results = array();
        
                /* for single metaboxes owerwrite entries each time so we have a maximum of one */
                if( $this->args['single'] )
                    $results = array( $values );
                else
                    $results[] = $values;
        
        		/* make sure this does not output anything so it won't break the json response below
        		will keep it do_action for compatibility reasons
        		 */
        		ob_start();
        			do_action( 'wck_before_add_meta', $meta, $id, $values );
        		$wck_before_add_meta = ob_get_clean(); //don't output it
        
        
        		if( $this->args['context'] == 'post_meta' )
        			update_post_meta($id, $meta, $results);
        		else if ( $this->args['context'] == 'option' )
        			update_option( apply_filters( 'wck_option_meta' , $meta, $results ), wp_unslash( $results ) );
        
        		/* if unserialize_fields is true add for each entry separate post meta for every element of the form  */
        		if( $this->args['unserialize_fields'] && $this->args['context'] == 'post_meta' ){
        
        			$meta_suffix = count( $results );
        			if( !empty( $values ) ){
        				foreach( $values as $name => $value ){
        					update_post_meta($id, $meta.'_'.$name.'_'.$meta_suffix, $value);
        				}
        			}
        		}
        
        		$entry_list = $this->wck_refresh_list( $meta, $id );
        		$add_form = $this->wck_add_form( $meta, $id );
        
        		header( 'Content-type: application/json' );
        		die( json_encode( array( 'entry_list' => $entry_list, 'add_form' => $add_form ) ) );
        
        	}
        
        	/* ajax update a reccord in the meta */
        	function wck_update_meta(){
        		check_ajax_referer( "wck-update-entry" );
        		if( !empty( $_POST['meta'] ) )
        			$meta = sanitize_text_field( $_POST['meta'] );
        		else
        			$meta = '';
        		if( !empty( $_POST['id'] ) )
        			$id = absint($_POST['id']);
        		else
        			$id = '';
        		if( isset( $_POST['element_id'] ) )
        			$element_id = absint( $_POST['element_id'] );
        		else
        			$element_id = 0;
        		if( !empty( $_POST['values'] ) && is_array( $_POST['values']) )
        			$values = array_map( 'wppb_sanitize_value', $_POST['values'] );
        		else
        			$values = array();
        
        		// Security checks
        		if( true !== ( $error = self::wck_verify_user_capabilities( $this->args['context'], $meta, $id ) ) ) {
        			header( 'Content-type: application/json' );
        			die( json_encode( $error ) );
        		}
        
        		$values = apply_filters( "wck_update_meta_filter_values_{$meta}", $values, $element_id );
        
        		/* check required fields */
        		$errors = self::wck_test_required( $this->args['meta_array'], $meta, $values, $id );
        		if( $errors != '' ){
        			header( 'Content-type: application/json' );
        			die( json_encode( $errors ) );
        		}
        
        		if( $this->args['context'] == 'post_meta' )
        			$results = get_post_meta($id, $meta, true);
        		else if ( $this->args['context'] == 'option' )
        			$results = get_option( apply_filters( 'wck_option_meta' , $meta, $values, $element_id ) );
        
        		$results[$element_id] = $values;
        
        		/* make sure this does not output anything so it won't break the json response below
        		will keep it do_action for compatibility reasons
        		 */
        		ob_start();
        			do_action( 'wck_before_update_meta', $meta, $id, $values, $element_id );
        		$wck_before_update_meta = ob_get_clean(); //don't output it
        
        
        		if( $this->args['context'] == 'post_meta' )
        			update_post_meta($id, $meta, $results);
        		else if ( $this->args['context'] == 'option' )
        			update_option( apply_filters( 'wck_option_meta' , $meta, $results, $element_id ), wp_unslash( $results ) );
        
        		/* if unserialize_fields is true update the coresponding post metas for every element of the form  */
        		if( $this->args['unserialize_fields'] && $this->args['context'] == 'post_meta' ){
        
        			$meta_suffix = $element_id + 1;
        			if( !empty( $values ) ){
        				foreach( $values as $name => $value ){
        					update_post_meta($id, $meta.'_'.$name.'_'.$meta_suffix, $value);
        				}
        			}
        		}
        
        		$entry_content = $this->wck_refresh_entry( $meta, $id, $element_id );
        
        		header( 'Content-type: application/json' );
        		die( json_encode( array( 'entry_content' => $entry_content ) ) );
        	}
        
        	/* ajax to refresh the meta content | or used in other function to return the */
        	/* this is used in Repeater Fields as an ajax action so we have to keep it dual purpose */
        	function wck_refresh_list( $meta = '', $id = '' ){
        		if( isset( $_POST['meta'] ) )
        			$meta = sanitize_text_field( $_POST['meta'] );
        
        		if( isset( $_POST['id'] ) )
        			$id = absint($_POST['id']);
        
        		ob_start();
        			echo self::wck_output_meta_content($meta, $id, $this->args['meta_array']);
        			do_action( "wck_refresh_list_{$meta}", $id );
        		$entry_list = ob_get_clean();
        
        		if( strpos( current_filter(), 'wp_ajax_wck_refresh_list') === 0 ){
        			echo $entry_list;
        			exit;
        		}
        		else{
        			return $entry_list;
        		}
        	}
        
        	/* function that returns the content of an entry */
        	function wck_refresh_entry( $meta = '', $id = '', $element_id = '' ){
        
        		if( $this->args['context'] == 'post_meta' )
        			$results = get_post_meta($id, $meta, true);
        		else if ( $this->args['context'] == 'option' )
        			$results = get_option( apply_filters( 'wck_option_meta' , $meta, $element_id ) );
        
        		ob_start();
        			echo self::wck_output_entry_content( $meta, $id, $this->args['meta_array'], $results, $element_id );
        			do_action( "wck_refresh_entry_{$meta}", $id );
        		$entry_content = ob_get_clean();
        
        		return $entry_content;
        	}
        
        	/* function that returns the add the form for single */
        	function wck_add_form( $meta = '', $id = '' ){
        
        		$post = get_post($id);
        
        		ob_start();
        			self::create_add_form($this->args['meta_array'], $meta, $post );
        			do_action( "wck_ajax_add_form_{$meta}", $id );
        		$add_form = ob_get_clean();
        
        		return $add_form;
        	}
        
        
        	/* ajax to show the update form */
        	function wck_show_update_form(){
        		check_ajax_referer( "wck-edit-entry" );
        		$meta = sanitize_text_field( $_POST['meta'] );
        		$id = absint($_POST['id']);
        		$element_id = absint( $_POST['element_id'] );
        
                do_action( "wck_before_adding_form_{$meta}", $id, $element_id );
        
        		echo self::mb_update_form($this->args['meta_array'], $meta, $id, $element_id);
        
        		do_action( "wck_after_adding_form", $meta, $id, $element_id );
                do_action( "wck_after_adding_form_{$meta}", $id, $element_id );
        
        		exit;
        	}
        
        	/* ajax to remove a reccord from the meta */
        	function wck_remove_meta(){
        		check_ajax_referer( "wck-delete-entry" );
        		if( !empty( $_POST['meta'] ) )
        			$meta = sanitize_text_field( $_POST['meta'] );
        		else
        			$meta = '';
        		if( !empty( $_POST['id'] ) )
        			$id = absint( $_POST['id'] );
        		else
        			$id = '';
        		if( isset( $_POST['element_id'] ) )
        			$element_id = absint( $_POST['element_id'] );
        		else
        			$element_id = '';
        
        		// Security checks
        		if( true !== ( $error = self::wck_verify_user_capabilities( $this->args['context'], $meta, $id ) ) ) {
        			header( 'Content-type: application/json' );
        			die( json_encode( $error ) );
        		}
        
        		if( $this->args['context'] == 'post_meta' )
        			$results = get_post_meta($id, $meta, true);
        		else if ( $this->args['context'] == 'option' )
        			$results = get_option( apply_filters( 'wck_option_meta' , $meta, $element_id ) );
        
        		$old_results = $results;
        		unset($results[$element_id]);
        		/* reset the keys for the array */
        		$results = array_values($results);
        
        		/* make sure this does not output anything so it won't break the json response below
        		will keep it do_action for compatibility reasons
        		 */
        		ob_start();
        			do_action( 'wck_before_remove_meta', $meta, $id, $element_id );
        		$wck_before_remove_meta = ob_get_clean(); //don't output it
        
        		if( $this->args['context'] == 'post_meta' )
        			update_post_meta($id, $meta, $results);
        		else if ( $this->args['context'] == 'option' )
        			update_option( apply_filters( 'wck_option_meta' , $meta, $results, $element_id ), wp_unslash( $results ) );
        
        
        
        		/* TODO: optimize so that it updates from the deleted element forward */
        		/* if unserialize_fields is true delete the coresponding post metas */
        		if( $this->args['unserialize_fields'] && $this->args['context'] == 'post_meta' ){
        
        			$meta_suffix = 1;
        
        			if( !empty( $results ) ){
        				foreach( $results as $result ){
        					foreach ( $result as $name => $value){
        						update_post_meta($id, $meta.'_'.$name.'_'.$meta_suffix, $value);
        					}
        					$meta_suffix++;
        				}
        			}
        
        			if( count( $results ) == 0 )
        				$results = $old_results;
        
        			if( !empty( $results ) ){
        				foreach( $results as $result ){
        					foreach ( $result as $name => $value){
        						delete_post_meta( $id, $meta.'_'.$name.'_'.$meta_suffix );
        					}
        					break;
        				}
        			}
        		}
        
        		$entry_list = $this->wck_refresh_list( $meta, $id );
        		$add_form = $this->wck_add_form( $meta, $id );
        
        		header( 'Content-type: application/json' );
        		die( json_encode( array( 'entry_list' => $entry_list, 'add_form' => $add_form ) ) );
        	}
        
        
        	/* ajax to reorder records */
        	function wck_reorder_meta(){
        		if( !empty( $_POST['meta'] ) )
        			$meta = sanitize_text_field( $_POST['meta'] );
        		else
        			$meta = '';
        		if( !empty( $_POST['id'] ) )
        			$id = absint($_POST['id']);
        		else
        			$id = '';
        		if( !empty( $_POST['values'] ) && is_array( $_POST['values'] ) )
        			$elements_id = array_map( 'absint', $_POST['values'] );
        		else
        			$elements_id = array();
        
        		// Security checks
        		if( true !== ( $error = self::wck_verify_user_capabilities( $this->args['context'], $meta, $id ) ) ) {
        			header( 'Content-type: application/json' );
        			die( json_encode( $error ) );
        		}
        
        		/* make sure this does not output anything so it won't break the json response below
        		will keep it do_action for compatibility reasons
        		 */
        		ob_start();
        			do_action( 'wck_before_reorder_meta', $meta, $id, $elements_id );
        		$wck_before_reorder_meta = ob_get_clean(); //don't output it
        
        		if( $this->args['context'] == 'post_meta' )
        			$results = get_post_meta($id, $meta, true);
        		else if ( $this->args['context'] == 'option' )
        			$results = get_option( apply_filters( 'wck_option_meta' , $meta ) );
        
        		$new_results = array();
        		if( !empty( $elements_id ) ){
        			foreach($elements_id as $element_id){
        				$new_results[] = $results[$element_id];
        			}
        		}
        
        		$results = $new_results;
        
        		if( $this->args['context'] == 'post_meta' )
        			update_post_meta($id, $meta, $results);
        		else if ( $this->args['context'] == 'option' )
        			update_option( apply_filters( 'wck_option_meta' , $meta, $results, $element_id ), wp_unslash( $results ) );
        
        
        		/* if unserialize_fields is true reorder all the coresponding post metas  */
        		if( $this->args['unserialize_fields'] && $this->args['context'] == 'post_meta' ){
        
        			$meta_suffix = 1;
        			if( !empty( $new_results ) ){
        				foreach( $new_results as $result ){
        					foreach ( $result as $name => $value){
        						update_post_meta($id, $meta.'_'.$name.'_'.$meta_suffix, $value);
        					}
        					$meta_suffix++;
        				}
        			}
        
        		}
        
        		$entry_list = $this->wck_refresh_list( $meta, $id );
        		header( 'Content-type: application/json' );
        		die( json_encode( array( 'entry_list' => $entry_list ) ) );
        	}
        
            /**
             * Function that saves the entries for single forms on posts(no options). It is hooke on the 'save_post' hook
             * It is executed on each WCK object instance so we need to restrict it on only the ones that are present for that post
             */
            function wck_save_single_metabox( $post_id, $post ){
                if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
                    return $post_id;
        
        		/* only go through for metaboxes defined for this post type */
        		if( get_post_type( $post_id ) != $this->args['post_type'] )
        			return $post_id;
        
                // Check the user's permissions.
                if ( isset( $_POST['post_type'] ) && 'page' == $_POST['post_type'] ) {
                    if ( ! current_user_can( 'edit_page', $post_id ) ) {
                        return $post_id;
                    }
                } else {
                    if ( ! current_user_can( 'edit_posts', $post_id ) ) {
                        return $post_id;
                    }
                }
        
                if( !empty( $_POST ) ){
                    /* for single metaboxes we save a hidden input that contains the meta_name attr as a key so we need to search for it */
                    foreach( $_POST as $request_key => $request_value ){
                        if( strpos( $request_key, '_wckmetaname_' ) !== false && strpos( $request_key, '#wck' ) !== false ){
                            /* found it so now retrieve the meta_name from the key formatted _wckmetaname_actuaname#wck */
                            $request_key = str_replace( '_wckmetaname_', '', $request_key );
                            $meta_name = sanitize_text_field( str_replace( '#wck', '', $request_key ) );
                            /* we have it so go through only on the WCK object instance that has this meta_name */
                            if( $this->args['meta_name'] == $meta_name ){
        
                                /* get the meta values from the $_POST and store them in an array */
                                $meta_values = array();
                                if( !empty( $this->args['meta_array'] ) ){
                                    foreach ($this->args['meta_array'] as $meta_field){
                                        /* in the $_POST the names for the fields are prefixed with the meta_name for the single metaboxes in case there are multiple metaboxes that contain fields wit hthe same name */
                                        $single_field_name = $this->args['meta_name'] .'_'. Wordpress_Creation_Kit_PB::wck_generate_slug( $meta_field['title'],$meta_field );
                                        if (isset($_POST[$single_field_name])) {
                                            /* checkbox needs to be stored as string not array */
                                            if( $meta_field['type'] == 'checkbox' )
                                                $_POST[$single_field_name] = implode( ', ', $_POST[$single_field_name] );
        
                                            $meta_values[Wordpress_Creation_Kit_PB::wck_generate_slug( $meta_field['title'], $meta_field )] = wppb_sanitize_value( $_POST[$single_field_name] );
                                        }
                                        else
                                            $meta_values[Wordpress_Creation_Kit_PB::wck_generate_slug( $meta_field['title'], $meta_field )] = '';
                                    }
                                }
        
                                /* test if we have errors for the required fields */
                                $errors = self::wck_test_required( $this->args['meta_array'], $meta_name, $meta_values, $post_id );
                                if( !empty( $errors ) ){
                                    /* if we have errors then add them in the global. We do this so we get all errors from all single metaboxes that might be on that page */
                                    global $wck_single_forms_errors;
                                    if( !empty( $errors['errorfields'] ) ){
                                        foreach( $errors['errorfields'] as $key => $field_name ){
                                            $errors['errorfields'][$key] = $this->args['meta_name']. '_' .$field_name;
                                        }
                                    }
                                    $wck_single_forms_errors[] = $errors;
                                }
                                else {
                                    /* no errors so we can save */
                                    update_post_meta($post_id, $meta_name, array($meta_values));
                                    /* handle unserialized fields */
                                    if ($this->args['unserialize_fields']) {
                                        if (!empty($this->args['meta_array'])) {
                                            foreach ($this->args['meta_array'] as $meta_field) {
                                                update_post_meta($post_id, $meta_name . '_' . Wordpress_Creation_Kit_PB::wck_generate_slug( $meta_field['title'], $meta_field ) . '_1', $_POST[$this->args['meta_name'] . '_' . Wordpress_Creation_Kit_PB::wck_generate_slug( $meta_field['title'], $meta_field )]);
                                            }
                                        }
                                    }
                                }
                                break;
                            }
                        }
                    }
                }
            }
        
            /**
             * Function that checks if we have any errors in the required fields from the single metaboxes. It is executed on 'wp_insert_post' hook
             * that comes after 'save_post' so we should have the global errors by now. If we have errors perform a redirect and add the error messages and error fields
             * in the url
             */
            function wck_single_metabox_redirect_if_errors( $post_id, $post ){
                global $wck_single_forms_errors;
                if( !empty( $wck_single_forms_errors ) ) {
                    $error_messages = '';
                    $error_fields = '';
                    foreach( $wck_single_forms_errors as $wck_single_forms_error ){
                        $error_messages .= $wck_single_forms_error['error'];
                        $error_fields .= implode( ',', $wck_single_forms_error['errorfields'] ).',';
                    }
                    wp_safe_redirect( add_query_arg( array( 'wckerrormessages' => base64_encode( urlencode( $error_messages ) ), 'wckerrorfields' => base64_encode( urlencode( $error_fields ) ) ), $_SERVER["HTTP_REFERER"] ) );
                    exit;
                }
            }
        
            /** Function that displays the error messages, if we have any, as js alerts and marks the fields with red
             */
            function wck_single_metabox_errors_display(){
                /* only execute for the WCK objects defined for the current post type */
                global $post;
                if( get_post_type( $post ) != $this->args['post_type'] )
                    return;
        
                /* and only do it once */
                global $allready_saved;
                if( isset( $allready_saved ) && $allready_saved == true )
                    return;
                $allready_saved = true;
        
                /* mark the fields */
                if( isset( $_GET['wckerrorfields'] ) && !empty( $_GET['wckerrorfields'] ) ){
                    echo '';
                }
        
                /* alert the error messages */
                if( isset( $_GET['wckerrormessages'] ) ){
                    echo '';
                }
            }
        
        
        	/**
        	 * The function used to generate slugs in WCK
        	 *
        	 * @since 1.1.1
        	 *
        	 * @param string $string The input string from which we generate the slug
        	 * @return string $slug The henerated slug
        	 */
        	static function wck_generate_slug( $string, $details = array() ){
                if( !empty( $details['slug'] ) )
                    $slug = $details['slug'];
                else
        		    $slug = rawurldecode( sanitize_title_with_dashes( remove_accents( $string ) ) );
        		return $slug;
        	}
        
        	static function wck_strip_script_tags(){
        
        	}
        
            static function wck_generate_select_option($option, $values, $i, $current_value){
                if( strpos( $option, '%' ) === false ){
                    $label = $option;
                    if( !empty( $values ) )
                        $value_attr = $values[$i];
                    else
                        $value_attr = $option;
                }
                else{
                    $option_parts = explode( '%', $option );
                    if( !empty( $option_parts ) ){
                        if( empty( $option_parts[0] ) && count( $option_parts ) == 3 ){
                            $label = $option_parts[1];
                            if( !empty( $values ) )
                                $value_attr = $values[$i];
                            else
                                $value_attr = $option_parts[2];
                        }
                    }
                }
        
                $optionOutput = '';
                return $optionOutput;
            }
        
            static function wck_is_multi($a) {
                foreach ($a as $v) {
                    if (is_array($v)) return true;
                }
                return false;
            }
        }
        
        
        /*
        Helper class that creates admin menu pages ( both top level menu pages and submenu pages )
        Default Usage:
        
        $args = array(
        			'page_type' => 'menu_page',
        			'page_title' => '',
        			'menu_title' => '',
        			'capability' => '',
        			'menu_slug' => '',
        			'icon_url' => '',
        			'position' => '',
        			'parent_slug' => ''
        		);
        
        'page_type'		(string) (required) The type of page you want to add. Possible values: 'menu_page', 'submenu_page'
        'page_title' 	(string) (required) The text to be displayed in the title tags and header of
        				the page when the menu is selected
        'menu_title'	(string) (required) The on-screen name text for the menu
        'capability'	(string) (required) The capability required for this menu to be displayed to
        				the user.
        'menu_slug'	    (string) (required) The slug name to refer to this menu by (should be unique
        				for this menu).
        'icon_url'	    (string) (optional for 'page_type' => 'menu_page') The url to the icon to be used for this menu.
        				This parameter is optional. Icons should be fairly small, around 16 x 16 pixels
        				for best results.
        'position'	    (integer) (optional for 'page_type' => 'menu_page') The position in the menu order this menu
        				should appear.
        				By default, if this parameter is omitted, the menu will appear at the bottom
        				of the menu structure. The higher the number, the lower its position in the menu.
        				WARNING: if 2 menu items use the same position attribute, one of the items may be
        				overwritten so that only one item displays!
        'parent_slug' 	(string) (required for 'page_type' => 'submenu_page' ) The slug name for the parent menu
        				(or the file name of a standard WordPress admin page) For examples see http://codex.wordpress.org/Function_Reference/add_submenu_page $parent_slug parameter
        'priority'	    (int) (optional) How important your function is. Alter this to make your function
        				be called before or after other functions. The default is 10, so (for example) setting it to 5 would make it run earlier and setting it to 12 would make it run later.
        
        public $hookname ( for required for 'page_type' => 'menu_page' ) string used internally to
        				 track menu page callbacks for outputting the page inside the global $menu array
        				 ( for required for 'page_type' => 'submenu_page' ) The resulting page's hook_suffix,
        				 or false if the user does not have the capability required.
        */
        
        class WCK_Page_Creator_PB{
        
        	private $defaults = array(
        							'page_type' => 'menu_page',
        							'page_title' => '',
        							'menu_title' => '',
        							'capability' => '',
        							'menu_slug' => '',
        							'icon_url' => '',
        							'position' => '',
        							'parent_slug' => '',
        							'priority' => 10,
        							'network_page' => false
        						);
        	private $args;
        	public $hookname;
        
        
        	/* Constructor method for the class. */
        	function __construct( $args ) {
        
        		/* Global that will hold all the arguments for all the menu pages */
        		global $wck_pages;
        
        		/* Merge the input arguments and the defaults. */
        		$this->args = wp_parse_args( $args, $this->defaults );
        
        		/* Add the settings for this page to the global object */
        		$wck_pages[$this->args['page_title']] = $this->args;
        
        		if( !$this->args['network_page'] ){
        			/* Hook the page function to 'admin_menu'. */
        			add_action( 'admin_menu', array( &$this, 'wck_page_init' ), $this->args['priority'] );
        		}
        		else{
        			/* Hook the page function to 'admin_menu'. */
        			add_action( 'network_admin_menu', array( &$this, 'wck_page_init' ), $this->args['priority'] );
        		}
        	}
        
        	/**
        	 * Function that creates the admin page
        	 */
        	function wck_page_init(){
        		global $pb_wck_pages_hooknames;
        
                /* don't add the page at all if the user doesn't meet the capabilities */
                if( !empty( $this->args['capability'] ) ){
                    if( !current_user_can( $this->args['capability'] ) )
                        return;
                }
        
        		/* Create the page using either add_menu_page or add_submenu_page functions depending on the 'page_type' parameter. */
        		if( $this->args['page_type'] == 'menu_page' ){
        			$this->hookname = add_menu_page( $this->args['page_title'], $this->args['menu_title'], $this->args['capability'], $this->args['menu_slug'], array( &$this, 'wck_page_template' ), $this->args['icon_url'], $this->args['position'] );
        
        			$pb_wck_pages_hooknames[$this->args['menu_slug']] = $this->hookname;
        		}
        		else if( $this->args['page_type'] == 'submenu_page' ){
        			$this->hookname = add_submenu_page( $this->args['parent_slug'], $this->args['page_title'], $this->args['menu_title'], $this->args['capability'], $this->args['menu_slug'], array( &$this, 'wck_page_template' ) );
        
        			$pb_wck_pages_hooknames[$this->args['menu_slug']] = $this->hookname;
        		}
        
        		do_action( 'WCK_Page_Creator_PB_after_init', $this->hookname );
        
        		/* Create a hook for adding meta boxes. */
        		add_action( "load-{$this->hookname}", array( &$this, 'wck_settings_page_add_meta_boxes' ) );
        		/* Load the JavaScript needed for the screen. */
        		add_action( 'admin_enqueue_scripts', array( &$this, 'wck_page_enqueue_scripts' ) );
        		add_action( "admin_head-{$this->hookname}", array( &$this, 'wck_page_load_scripts' ) );
        	}
        
        	/**
        	 * Do action 'add_meta_boxes'. This hook isn't executed by default on a admin page so we have to add it.
        	 */
        	function wck_settings_page_add_meta_boxes() {
                global $post;
        		do_action( 'add_meta_boxes', $this->hookname, $post );
        	}
        
        	/**
        	 * Loads the JavaScript files required for managing the meta boxes on the theme settings
        	 * page, which allows users to arrange the boxes to their liking.
        	 *
        	 * @global string $bareskin_settings_page. The global setting page (returned by add_theme_page in function
        	 * bareskin_settings_page_init ).
        	 * @since 1.0.0
        	 * @param string $hook The current page being viewed.
        	 */
        	function wck_page_enqueue_scripts( $hook ) {
        		if ( $hook == $this->hookname ) {
        			wp_enqueue_script( 'common' );
        			wp_enqueue_script( 'wp-lists' );
        			wp_enqueue_script( 'postbox' );
        		}
        	}
        
        	/**
        	 * Loads the JavaScript required for toggling the meta boxes on the theme settings page.
        	 *
        	 * @global string $bareskin_settings_page. The global setting page (returned by add_theme_page in function
        	 * bareskin_settings_page_init ).
        	 * @since 1.0.0
        	 */
        	function wck_page_load_scripts() {
        		?>
        		
        		
        args['page_icon'] ) ): ?>

        args['page_title'] ?>

        hookname ); ?>
        hookname ); ?> hookname, 'normal', null ); ?> hookname ); ?>
        hookname ); ?> hookname, 'advanced', null ); ?> hookname ); ?>
        hookname, 'side', null ); ?>
        hookname ); ?>
        assets/lib/wck-api/wordpress-creation-kit.css000066600000013640152141651120015306 0ustar00.wck-post-box{ visibility:hidden; height:0; } .mb-list-entry-fields li{ margin-bottom:15px; clear:both; overflow:hidden; } .mb-right-column{ overflow:hidden; } .field-label{ max-width:200px; float:left; min-height:30px; font-weight:bold; padding-right:10px; } .field-label.error{ color:#ff0000; } .field-label .required{ color:#ff0000; padding:0 2px; } .mb-table-container strong{ max-width:200px; } .mb-right-column label{ padding:0 6px 0 0; } .mb-right-column input[type="checkbox"], .mb-right-column input[type="radio"]{ margin-right:3px; } #mb-ajax-loading{ position:absolute; top:0; left:0; width:100%; height:100%; background:url(../../../../../../wp-admin/images/spinner-2x.gif) center center no-repeat; z-index:999; } .mb-table-container pre{ display:inline-block; vertical-align:top; margin:0; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; white-space: pre-wrap; word-wrap: break-word; } .wck-edit, .wck-delete, .wck-number{ width:50px; text-align:center !important; } td.wck-number{ cursor:move; } .wck-content > ul{ margin:0; } .not-sortable td.wck-number{ cursor:auto; } .wck-edit .button-secondary{ padding:0 15px; } .mbdelete, .wck-remove-upload{ color:#BC0B0B; cursor:pointer; } .mbdelete:hover, .wck-remove-upload:hover{ color:#FF0000; } .mb-list-entry-fields{ list-style:none; } .mb-table-container tr:nth-child(2n+1) { background-color:#FCFCFC; } .mb-table-container tr:last-child td { border-bottom: 0 none; } .mb-table-container tr td { background: none repeat scroll 0 0 transparent; border-bottom: 1px solid #EDEDED; border-right: 1px solid #EDEDED; padding: 8px; position: relative; } .mb-table-container tr td:last-child { border-right: 0 none; } .mb-table-container thead > tr > th { border-right: 1px solid #E1E1E1; } .mb-table-container tr > th:last-child { border-right: 0 none; } .mb-textarea{ width:60%; max-width:600px; height:130px; } .mb-text-input{ width:60%; max-width:600px; } .mb-select, .mb-select-2{ min-width:250px; } .mb-table-container .wck-state-highlight{ background-color: #f0fbff !important; } /* upload field */ .upload-field-details{ display:inline-block; vertical-align:middle; min-height:24px; padding:2px 0; } .upload-field-details p{ margin:2px 0 0; } .upload-field-details img{ margin:0 5px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); } .upload-field-details > *{ float:left; } .upload-field-details span{ display:block; } .upload-field-details .file-name{ font-weight:bold; color:#21759B; } /* Settings page. */ .side .form-table th { width: 20%; font-weight: bold; text-align: left; padding-left: 0; } .wck-post-body{ clear: left; float: left; margin-right: -2000px; width: 100%; } .metabox-holder .column-1 { margin-right:300px; } .metabox-holder .column-2 { float: right; width: 280px; clear:right; position:relative; } .metabox-holder .column-3 { clear: both; margin-right:300px; } /* wysiwyg */ .mb-right-column .wp_themeSkin table.mceLayout{ border-color: #CCCCCC #CCCCCC #DFDFDF; border-style: solid; border-top-left-radius: 3px; border-top-right-radius: 3px; border-width: 1px; background-color:#fff; } /* nested repeater */ .mb-table-container .wck-nested{ background:#F5F5F5; border:1px solid #DFDFDF; box-shadow: 0 1px 0 #FFFFFF; } .mb-table-container .wck-nested > div{ padding:10px; } .mb-table-container li[data-type="nested-repeater"]{ display:none; } .wck_page_cptc-page #contextual-help-link-wrap, .wck_page_ctc-page #contextual-help-link-wrap, .wck_page_cfc-page #contextual-help-link-wrap, .wck_page_fep-page #contextual-help-link-wrap, .wck_page_opc-page #contextual-help-link-wrap{ background: rgb(248,79,79); /* Old browsers */ background: -moz-linear-gradient(top, rgba(248,79,79,1) 0%, rgba(210,11,11,1) 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(248,79,79,1)), color-stop(100%,rgba(210,11,11,1))); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, rgba(248,79,79,1) 0%,rgba(210,11,11,1) 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, rgba(248,79,79,1) 0%,rgba(210,11,11,1) 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, rgba(248,79,79,1) 0%,rgba(210,11,11,1) 100%); /* IE10+ */ background: linear-gradient(to bottom, rgba(248,79,79,1) 0%,rgba(210,11,11,1) 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f84f4f', endColorstr='#d20b0b',GradientType=0 ); /* IE6-9 */ } .wck_page_cptc-page #contextual-help-link-wrap #contextual-help-link, .wck_page_ctc-page #contextual-help-link-wrap #contextual-help-link, .wck_page_cfc-page #contextual-help-link-wrap #contextual-help-link, .wck_page_fep-page #contextual-help-link-wrap #contextual-help-link, .wck_page_opc-page #contextual-help-link-wrap #contextual-help-link{ padding-left:55px; color: #FFFFFF; text-shadow: 0 1px 0 rgba(0, 0, 0, 0.7); } .wck_page_cptc-page #contextual-help-link-wrap #contextual-help-link:before, .wck_page_ctc-page #contextual-help-link-wrap #contextual-help-link:before, .wck_page_cfc-page #contextual-help-link-wrap #contextual-help-link:before, .wck_page_fep-page #contextual-help-link-wrap #contextual-help-link:before, .wck_page_opc-page #contextual-help-link-wrap #contextual-help-link:before{ content:"WCK"; width:15px; height:20px; background:url( ../images/wck-icon-dark.png ) no-repeat 0 0; position:absolute; top:4px; left:4px; line-height: 16px; padding-left: 18px; } /*-------------------------------------------------------------- Media Queries --------------------------------------------------------------*/ @media screen and ( max-width: 878px ) { .wck-post-body{ float:none; margin-right: 0; } .metabox-holder .column-2{ float:none; width:100%; } .metabox-holder .column-1{ margin-right:0; } }assets/lib/wck-api/fields/nested repeater.php000066600000000662152141651120015206 0ustar00assets/lib/wck-api/fields/textarea.php000066600000001333152141651120013745 0ustar00'. esc_html( $value ) .''; ?>assets/lib/wck-api/fields/cpt select.php000066600000002507152141651120014162 0ustar00 $details['cpt'], 'orderby' => 'menu_order title', 'order' => 'ASC', 'posts_per_page' => '200', 'post_status' => 'publish' ), $details ); $cpt_query = new WP_Query($args); if( !empty( $cpt_query->posts ) ){ $element .= ''; } ?>assets/lib/wck-api/fields/user select.php000066600000002215152141651120014346 0ustar00 'display_name' ) ); $user_query = new WP_User_Query($args); if( !empty( $user_query->results ) ){ $element .= ''; } ?>assets/lib/wck-api/fields/number.php000066600000001642152141651120013423 0ustar00'; assets/lib/wck-api/fields/text.php000066600000001473152141651120013121 0ustar00'; ?>assets/lib/wck-api/fields/select.php000066600000004273152141651120013415 0ustar00'; if( !empty( $details['default-option'] ) && $details['default-option'] ) $element .= ''; $field_name = Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ); // we're passing this further to a function. Need to make sure it exists so we don't get a notice. if( empty( $details['value'] ) ){ $details['value'] = false; } $options = ''; if( !empty( $details['options'] ) && !Wordpress_Creation_Kit_PB::wck_is_multi( $details['options'] ) ){ $i = 0; foreach( $details['options'] as $option ){ $optionOutput = Wordpress_Creation_Kit_PB::wck_generate_select_option($option, $details['value'], $i, $value); $options .= apply_filters( "wck_select_{$meta}_{$field_name}_option_{$i}", $optionOutput, $i); $i++; } } elseif( !empty( $details['options'] ) ){ $i = 0; foreach($details['options']['optgroups'] as $optgroup){ if(!empty($optgroup['options'])) { $options .= ''; foreach($optgroup['options'] as $option ){ $optionOutput = Wordpress_Creation_Kit_PB::wck_generate_select_option($option, $details['value'], $i, $value); $options .= apply_filters( "wck_select_{$meta}_{$field_name}_option_{$i}", $optionOutput, $i); $i++; } $options .= ''; } } } $element .= apply_filters( "wck_select_{$meta}_{$field_name}_options", $options ); $element .= ''; assets/lib/wck-api/fields/checkbox.php000066600000003724152141651120013724 0ustar00'; foreach( $details['options'] as $option ){ $found = false; if( !is_array( $value ) ) $values = explode( ', ', $value ); else $values = $value; if( strpos( $option, '%' ) === false ){ $label = $option; $value_attr = $option; if ( in_array( $option, $values ) ) $found = true; } else{ $option_parts = explode( '%', $option ); if( !empty( $option_parts ) ){ if( empty( $option_parts[0] ) && count( $option_parts ) == 3 ){ $label = $option_parts[1]; $value_attr = $option_parts[2]; if ( in_array( $option_parts[2], $values ) ) $found = true; } } } $element .= '
        ' ; } $element .= ''; } ?>assets/lib/wck-api/fields/select-2.php000066600000004663152141651120013557 0ustar00'; if( !empty( $details['default-option'] ) && $details['default-option'] ) $element .= ''; $field_name = Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ); // we're passing this further to a function. Need to make sure it exists so we don't get a notice. if( empty( $details['value'] ) ){ $details['value'] = false; } $options = ''; if( !empty( $details['options'] ) ){ $new_nonexisting_value = true; $i = 0; foreach( $details['options'] as $option ){ $optionOutput = Wordpress_Creation_Kit_PB::wck_generate_select_option($option, $details['value'], $i, $value); $options .= apply_filters("wck_select_{$meta}_{$field_name}_option_{$i}", $optionOutput, $i); $i++; if( !empty( $value ) && ( $option === $value || strpos( $option, '%'.$value, -(strlen($value) + 1) ) !== false ) )//it is not a custom value because it is present in the options $new_nonexisting_value = false; } //display the custom value that was inserted with select 2 that was not present in options if( $new_nonexisting_value ) $options .= ''; } $element .= apply_filters( "wck_select_{$meta}_{$field_name}_options", $options ); $element .= ''; $element .= ''; assets/lib/wck-api/fields/upload.js000066600000012113152141651120013237 0ustar00jQuery(document).ready(function(){ if( typeof wp != "undefined" ){ // Uploading files var wp_media_post_id = wp.media.model.settings.post.id; // Store the old id jQuery(document).on( 'click', '.wck_upload_button', function( event ){ event.preventDefault(); var set_to_post_id = jQuery( this ).data( 'post_id' ); // Set this var file_frame; var uploadInputId = jQuery( this ).data( 'upload_input' ); var uploadInFront = jQuery( this ).data( 'upload_in_backend' ); var attachToPost = jQuery( this ).data( 'attach_to_post' ); var uploadButton = jQuery( this ); /* remove set_to_post_id value if we do not want to attach to post */ if( attachToPost != true ){ set_to_post_id = ''; } /* set default tab to upload file */ wp.media.controller.Library.prototype.defaults.contentUserSetting = false; if( uploadInFront != true ) wp.media.controller.Library.prototype.defaults.router = false; wp.media.controller.Library.prototype.defaults.searchable = true; wp.media.controller.Library.prototype.defaults.sortable = false; // If the media frame already exists, reopen it. if ( file_frame ) { // Set the post ID to what we want file_frame.uploader.uploader.param( 'post_id', set_to_post_id ); // Open frame file_frame.open(); return; } else { // Set the wp.media post id so the uploader grabs the ID we want when initialised wp.media.model.settings.post.id = set_to_post_id; } // Create the media frame. file_frame = wp.media.frames.file_frame = wp.media({ title: jQuery( this ).data( 'uploader_title' ), button: { text: jQuery( this ).data( 'uploader_button_text' ), }, multiple: jQuery( this ).data( 'multiple_upload' ) // Set to true to allow multiple files to be selected }); /* restrict allowed file types if we have to */ allowedTypes = jQuery( this ).data( 'allowed_types' ); if( allowedTypes != undefined ) file_frame.uploader.options.uploader['params']['allowed_type'] = allowedTypes; // When an image is selected, run a callback. file_frame.on( 'select', function() { // We set multiple to false so only get one image from the uploader attachments = file_frame.state().get('selection').toJSON(); var attids = []; for( var i=0;i < attachments.length; i++ ){ // Do something with attachment.id and/or attachment.url here attids.push( attachments[i].id ); result = '
        '; if( attachments[i].sizes != undefined ){ if( attachments[i].sizes.thumbnail != undefined ) thumb = attachments[i].sizes.thumbnail; else thumb = attachments[i].sizes.full; thumbnailUrl = thumb.url; } else{ thumbnailUrl = attachments[i].icon; } result += '
        '; result += '

        '+attachments[i].filename+''+attachments[i].mime +'Remove

        '; /* if multiple upload false remove previous upload details */ if( uploadButton.data( 'multiple_upload' ) == false ){ jQuery( '.upload-field-details', uploadButton.parent() ).remove(); } uploadButton.before( result ); } /* turn into comma separated string */ attids = attids.join(','); jQuery( 'input[id="'+uploadInputId+'"]', uploadButton.parent() ).val( attids ); // Restore the main post ID wp.media.model.settings.post.id = wp_media_post_id; }); // Finally, open the modal file_frame.open(); // remove tabs from the top ( this is done higher in the code when setting router to false ) //jQuery('.media-frame-router').remove(); if( jQuery( this ).data( 'uploader_logged_in' ) == undefined ){ jQuery('.media-frame-title').append(''); } }); // Restore the main ID when the add media button is pressed jQuery('a.add_media').on('click', function() { wp.media.model.settings.post.id = wp_media_post_id; }); jQuery(document).on('click', '.wck-remove-upload', function(e){ /* update hidden input */ removedAttachement = jQuery(this).parent().parent('.upload-field-details').data('attachment_id'); upload_input = jQuery(this).parent().parent().parent().children('input[type="hidden"]'); uploadAttachemnts = upload_input.val(); uploadAttachemntsArray = uploadAttachemnts.split( ',' ); newuploadAttachments = []; for( var i=0;i < uploadAttachemntsArray.length; i++ ){ if( uploadAttachemntsArray[i] != removedAttachement ) newuploadAttachments.push(uploadAttachemntsArray[i]); } newuploadAttachments = newuploadAttachments.join(','); upload_input.val(newuploadAttachments); /* remove the attachment details */ jQuery(this).parent().parent('.upload-field-details').remove(); }); } });assets/lib/wck-api/fields/wysiwyg editor.php000066600000001600152141651120015116 0ustar00'. esc_html( $value ) .''; $element .= ''; ?>assets/lib/wck-api/fields/upload.php000066600000006755152141651120013431 0ustar00'; /* container for the image preview (or file ico) and name and file type */ if( !empty ( $value ) ){ /* it can hold multiple attachments separated by comma */ $values = explode( ',', $value ); foreach( $values as $value ){ $file_src = wp_get_attachment_url($value); $thumbnail = wp_get_attachment_image( $value, array( 80, 80 ), true ); $file_name = get_the_title( $value ); $file_type = get_post_mime_type( $value ); $attachment_url = admin_url( "post.php?post={$value}&action=edit" ); $element.= '
        '; $element.= '
        '; $element.= "" . $thumbnail . ""; $element.= '
        '; $element.= '

        '; $element.= $file_name; $element.= ''; $element.= $file_type; $element.= ''; if( !empty ( $value ) ) $element.= ''.__( 'Remove', 'core' ).''; $element.= '

        '; } } $element.= ''; ?>assets/lib/wck-api/fields/radio.php000066600000003431152141651120013227 0ustar00'; foreach( $details['options'] as $option ){ $found = false; $values = explode( ', ', $value ); if( strpos( $option, '%' ) === false ){ $label = $option; $value_attr = $option; if ( in_array( $option, $values ) ) $found = true; } else{ $option_parts = explode( '%', $option ); if( !empty( $option_parts ) ){ if( empty( $option_parts[0] ) && count( $option_parts ) == 3 ){ $label = $option_parts[1]; $value_attr = $option_parts[2]; if ( in_array( $option_parts[2], $values ) ) $found = true; } } } $element .= '
        '; } $element .= ''; } ?>assets/lib/wck-api/fields/datepicker.php000066600000001651152141651120014246 0ustar00'; $element .= ''; ?>assets/lib/wck-api/fields/country select.php000066600000002225152141651120015074 0ustar00'; $element .= ''; if( !empty( $country_list ) ){ foreach( $country_list as $option ){ $element .= ''; } } $element .= ''; ?>assets/lib/wck-api/readme.txt000066600000011125152141651120012147 0ustar00Usage Example 1 'text', 'title' => 'Title', 'description' => 'Description for this input' ), array( 'type' => 'textarea', 'title' => 'Description' ), array( 'type' => 'upload', 'title' => 'Image', 'description' => 'Upload a image' ), array( 'type' => 'select', 'title' => 'Select This', 'options' => array( 'Option 1', 'Option 2', 'Option 3' ) ), array( 'type' => 'checkbox', 'title' => 'Check This', 'options' => array( 'Option 1', 'Option 2', 'Option 3' ) ), array( 'type' => 'radio', 'title' => 'Radio This', 'options' => array( 'Radio 1', 'Radio 2', 'Radio 3' ) ), ); $args = array( 'metabox_id' => 'rm_slider_content', 'metabox_title' => 'Slideshow Class', 'post_type' => 'slideshows', 'meta_name' => 'rmscontent', 'meta_array' => $fint ); new Wordpress_Creation_Kit_PB( $args ); ?> For Frontend use like this: ID, 'rmscontent', true ); ?> Default Parameters '', 'metabox_title' => 'Meta Box', 'post_type' => 'post', 'meta_name' => '', 'meta_array' => array(), 'page_template' => '', 'post_id' => '', 'single' => false, 'unserialize_fields' => false, 'sortable' => true, 'context' => 'post_meta' ) ?> Parameters $metabox_id (string) (required) HTML 'id' attribute of the edit screen section Default: None $metabox_title (string) (required) Title of the edit screen section, visible to user Default: 'Meta Box' $post_type (string) (required) The type of Write screen on which to show the edit screen section ('post', 'page', 'link', or 'custom_post_type' where custom_post_type is the custom post type slug) Default: 'post' $meta_name (string) (required) The name of the meta key used to query for data Default: None $meta_array (array) (required) The array of fields used to create the form. See example above. Must be array( array() ). Type and Title are required. Default: None $page_template (string) (optional) The name of the page template on wich you want the meta box to appear. If this is set than $post_type can be omitted. Default: None $post_id (string) (optional) The id of the post you want the meta box to appear. If this is set than $post_type can be omitted. Default: None $single (boolean) (optional) Set this to true if you don't want a repeater box and you will be able to enter just one value. Default: false $unserialize_fields (boolean) (optional) Set this to true if you want to enable wpml compatibility $sortable (boolean) (optional) Wheater or not the fields in a repeater box are sortable. Default: true $context (string) (optional) WCK API can add data as meta or as option depending on the context. Using 'post_meta' will add data as post meta and using 'option' will add data as option Default: 'post_meta' Parameters for meta_array 'title' (string) Title of the field. 'type' (string) The field type. Possible values: 'text', 'textarea', 'select', 'checkbox', 'radio', 'upload'. 'description' (string) The description of the field. 'required' (boolean) true if the field is required. 'default' (string) If you want the string to have a default value enter it here. For Checkboxes if there are multiple values separate them with a ",". 'default-option' (boolean) true if you want Select to have a default option. 'options' (array) Options for field types "select", "checkbox" and "radio". How to add into a plugin: 1. Copy the foldder "wordpress-creation-kit-api" into the plugin dir 2. Change the class name "Wordpress_Creation_Kit_PB" if multiple plugins use wordpress-creation-kit-api on the same site. 3. Include "wordpress-creation-kit.php" into the plugin file /* include Custom Fields Creator API */ require_once('wordpress-creation-kit/wordpress-creation-kit.php'); 4. Use the API as in Exampe 1, in your plugin file or functions or whatever fits the situation. WPML Compatibility When unserialize_fields is true on a meta box, besides saving the contents of the box in one serialized custom field, we create automatically a custom field for every field in every entry. We do this because WPML can't handle serialized custom fields and also we will get good control on what actions we want to perform (don't translate, copy, translate ) on each of the fields. After the fields are translated with Icanlcalize and we have the translated post in our system, we can go on the translated post and press the "Syncronize WCK Translation" button which will create the serialized array from the individual custom fields.assets/lib/wck-api/assets/datepicker/datepicker.css000066600000064066152141651120016427 0ustar00/*! jQuery UI - v1.10.3 - 2013-09-23 * http://jqueryui.com * Includes: jquery.ui.core.css, jquery.ui.datepicker.css, jquery.ui.theme.css * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ /* Layout helpers ----------------------------------*/ .ui-helper-hidden { display: none; } .ui-helper-hidden-accessible { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } .ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; border-collapse: collapse; } .ui-helper-clearfix:after { clear: both; } .ui-helper-clearfix { min-height: 0; /* support: IE7 */ } .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } .ui-front { z-index: 100; } /* Interaction Cues ----------------------------------*/ .ui-state-disabled { cursor: default !important; } /* Icons ----------------------------------*/ /* states and images */ .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } /* Misc visuals ----------------------------------*/ /* Overlays */ .ui-widget-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; } .ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; } .ui-datepicker .ui-datepicker-header { position: relative; padding: .2em 0; } .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position: absolute; top: 2px; width: 1.8em; height: 1.8em; } .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; } .ui-datepicker .ui-datepicker-prev { left: 2px; } .ui-datepicker .ui-datepicker-next { right: 2px; } .ui-datepicker .ui-datepicker-prev-hover { left: 1px; } .ui-datepicker .ui-datepicker-next-hover { right: 1px; } .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; } .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; } .ui-datepicker .ui-datepicker-title select { font-size: 1em; margin: 1px 0; } .ui-datepicker select.ui-datepicker-month-year { width: 100%; } .ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year { width: 49%; } .ui-datepicker table { width: 100%; font-size: .9em; border-collapse: collapse; margin: 0 0 .4em; } .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; } .ui-datepicker td { border: 0; padding: 1px; } .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; } .ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding: 0 .2em; border-left: 0; border-right: 0; border-bottom: 0; } .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width: auto; overflow: visible; } .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float: left; } /* with multiple calendars */ .ui-datepicker.ui-datepicker-multi { width: auto; } .ui-datepicker-multi .ui-datepicker-group { float: left; } .ui-datepicker-multi .ui-datepicker-group table { width: 95%; margin: 0 auto .4em; } .ui-datepicker-multi-2 .ui-datepicker-group { width: 50%; } .ui-datepicker-multi-3 .ui-datepicker-group { width: 33.3%; } .ui-datepicker-multi-4 .ui-datepicker-group { width: 25%; } .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width: 0; } .ui-datepicker-multi .ui-datepicker-buttonpane { clear: left; } .ui-datepicker-row-break { clear: both; width: 100%; font-size: 0; } /* RTL support */ .ui-datepicker-rtl { direction: rtl; } .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; } .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; } .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; } .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; } .ui-datepicker-rtl .ui-datepicker-buttonpane { clear: right; } .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; } .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-rtl .ui-datepicker-group { float: right; } .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width: 0; border-left-width: 1px; } /* Component containers ----------------------------------*/ #ui-datepicker-div.ui-widget { font-family: Verdana,Arial,sans-serif; font-size: 1.1em; } #ui-datepicker-div.ui-widget .ui-widget { font-size: 1em; } #ui-datepicker-div.ui-widget input, #ui-datepicker-div.ui-widget select, #ui-datepicker-div.ui-widget textarea, #ui-datepicker-div.ui-widget button { font-family: Verdana,Arial,sans-serif; font-size: 1em; } #ui-datepicker-div.ui-widget-content { border: 1px solid #aaaaaa; background: #ffffff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #222222; } #ui-datepicker-div.ui-widget-content a { color: #222222; } #ui-datepicker-div .ui-widget-header { border: 1px solid #aaaaaa; background: #cccccc url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x; color: #222222; font-weight: bold; } #ui-datepicker-div .ui-widget-header a { color: #222222; } /* Interaction states ----------------------------------*/ #ui-datepicker-div .ui-state-default, #ui-datepicker-div.ui-widget-content .ui-state-default, #ui-datepicker-div .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3; background: #e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #555555; } #ui-datepicker-div .ui-state-default a, #ui-datepicker-div .ui-state-default a:link, #ui-datepicker-div .ui-state-default a:visited { color: #555555; text-decoration: none; } #ui-datepicker-div .ui-state-hover, #ui-datepicker-div.ui-widget-content .ui-state-hover, #ui-datepicker-div .ui-widget-header .ui-state-hover, #ui-datepicker-div .ui-state-focus, #ui-datepicker-div.ui-widget-content .ui-state-focus, #ui-datepicker-div .ui-widget-header .ui-state-focus { border: 1px solid #999999; background: #dadada url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; } #ui-datepicker-div .ui-state-hover a, #ui-datepicker-div .ui-state-hover a:hover, #ui-datepicker-div .ui-state-hover a:link, #ui-datepicker-div .ui-state-hover a:visited { color: #212121; text-decoration: none; } #ui-datepicker-div .ui-state-active, #ui-datepicker-div.ui-widget-content .ui-state-active, #ui-datepicker-div .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa; background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; } #ui-datepicker-div .ui-state-active a, #ui-datepicker-div .ui-state-active a:link, #ui-datepicker-div .ui-state-active a:visited { color: #212121; text-decoration: none; } /* Interaction Cues ----------------------------------*/ #ui-datepicker-div .ui-state-highlight, #ui-datepicker-div.ui-widget-content .ui-state-highlight, #ui-datepicker-div .ui-widget-header .ui-state-highlight { border: 1px solid #fcefa1; background: #fbf9ee url(images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x; color: #363636; } #ui-datepicker-div .ui-state-highlight a, #ui-datepicker-div.ui-widget-content .ui-state-highlight a, #ui-datepicker-div .ui-widget-header .ui-state-highlight a { color: #363636; } #ui-datepicker-div .ui-state-error, #ui-datepicker-div.ui-widget-content .ui-state-error, #ui-datepicker-div .ui-widget-header .ui-state-error { border: 1px solid #cd0a0a; background: #fef1ec url(images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x; color: #cd0a0a; } #ui-datepicker-div .ui-state-error a, #ui-datepicker-div.ui-widget-content .ui-state-error a, #ui-datepicker-div .ui-widget-header .ui-state-error a { color: #cd0a0a; } #ui-datepicker-div .ui-state-error-text, #ui-datepicker-div.ui-widget-content .ui-state-error-text, #ui-datepicker-div .ui-widget-header .ui-state-error-text { color: #cd0a0a; } #ui-datepicker-div .ui-priority-primary, #ui-datepicker-div.ui-widget-content .ui-priority-primary, #ui-datepicker-div .ui-widget-header .ui-priority-primary { font-weight: bold; } #ui-datepicker-div .ui-priority-secondary, #ui-datepicker-div.ui-widget-content .ui-priority-secondary, #ui-datepicker-div .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; } #ui-datepicker-div .ui-state-disabled, #ui-datepicker-div.ui-widget-content .ui-state-disabled, #ui-datepicker-div .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } #ui-datepicker-div .ui-state-disabled .ui-icon { filter:Alpha(Opacity=35); /* For IE8 - See #6059 */ } /* Icons ----------------------------------*/ /* states and images */ #ui-datepicker-div .ui-icon { width: 16px; height: 16px; } #ui-datepicker-div .ui-icon, #ui-datepicker-div.ui-widget-content .ui-icon { background-image: url(images/ui-icons_222222_256x240.png); } #ui-datepicker-div .ui-widget-header .ui-icon { background-image: url(images/ui-icons_222222_256x240.png); } #ui-datepicker-div .ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png); } #ui-datepicker-div .ui-state-hover .ui-icon, #ui-datepicker-div .ui-state-focus .ui-icon { background-image: url(images/ui-icons_454545_256x240.png); } #ui-datepicker-div .ui-state-active .ui-icon { background-image: url(images/ui-icons_454545_256x240.png); } #ui-datepicker-div .ui-state-highlight .ui-icon { background-image: url(images/ui-icons_2e83ff_256x240.png); } #ui-datepicker-div .ui-state-error .ui-icon, #ui-datepicker-div .ui-state-error-text .ui-icon { background-image: url(images/ui-icons_cd0a0a_256x240.png); } /* positioning */ #ui-datepicker-div .ui-icon-blank { background-position: 16px 16px; } #ui-datepicker-div .ui-icon-carat-1-n { background-position: 0 0; } #ui-datepicker-div .ui-icon-carat-1-ne { background-position: -16px 0; } #ui-datepicker-div .ui-icon-carat-1-e { background-position: -32px 0; } #ui-datepicker-div .ui-icon-carat-1-se { background-position: -48px 0; } #ui-datepicker-div .ui-icon-carat-1-s { background-position: -64px 0; } #ui-datepicker-div .ui-icon-carat-1-sw { background-position: -80px 0; } #ui-datepicker-div .ui-icon-carat-1-w { background-position: -96px 0; } #ui-datepicker-div .ui-icon-carat-1-nw { background-position: -112px 0; } #ui-datepicker-div .ui-icon-carat-2-n-s { background-position: -128px 0; } #ui-datepicker-div .ui-icon-carat-2-e-w { background-position: -144px 0; } #ui-datepicker-div .ui-icon-triangle-1-n { background-position: 0 -16px; } #ui-datepicker-div .ui-icon-triangle-1-ne { background-position: -16px -16px; } #ui-datepicker-div .ui-icon-triangle-1-e { background-position: -32px -16px; } #ui-datepicker-div .ui-icon-triangle-1-se { background-position: -48px -16px; } #ui-datepicker-div .ui-icon-triangle-1-s { background-position: -64px -16px; } #ui-datepicker-div .ui-icon-triangle-1-sw { background-position: -80px -16px; } #ui-datepicker-div .ui-icon-triangle-1-w { background-position: -96px -16px; } #ui-datepicker-div .ui-icon-triangle-1-nw { background-position: -112px -16px; } #ui-datepicker-div .ui-icon-triangle-2-n-s { background-position: -128px -16px; } #ui-datepicker-div .ui-icon-triangle-2-e-w { background-position: -144px -16px; } #ui-datepicker-div .ui-icon-arrow-1-n { background-position: 0 -32px; } #ui-datepicker-div .ui-icon-arrow-1-ne { background-position: -16px -32px; } #ui-datepicker-div .ui-icon-arrow-1-e { background-position: -32px -32px; } #ui-datepicker-div .ui-icon-arrow-1-se { background-position: -48px -32px; } #ui-datepicker-div .ui-icon-arrow-1-s { background-position: -64px -32px; } #ui-datepicker-div .ui-icon-arrow-1-sw { background-position: -80px -32px; } #ui-datepicker-div .ui-icon-arrow-1-w { background-position: -96px -32px; } #ui-datepicker-div .ui-icon-arrow-1-nw { background-position: -112px -32px; } #ui-datepicker-div .ui-icon-arrow-2-n-s { background-position: -128px -32px; } #ui-datepicker-div .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } #ui-datepicker-div .ui-icon-arrow-2-e-w { background-position: -160px -32px; } #ui-datepicker-div .ui-icon-arrow-2-se-nw { background-position: -176px -32px; } #ui-datepicker-div .ui-icon-arrowstop-1-n { background-position: -192px -32px; } #ui-datepicker-div .ui-icon-arrowstop-1-e { background-position: -208px -32px; } #ui-datepicker-div .ui-icon-arrowstop-1-s { background-position: -224px -32px; } #ui-datepicker-div .ui-icon-arrowstop-1-w { background-position: -240px -32px; } #ui-datepicker-div .ui-icon-arrowthick-1-n { background-position: 0 -48px; } #ui-datepicker-div .ui-icon-arrowthick-1-ne { background-position: -16px -48px; } #ui-datepicker-div .ui-icon-arrowthick-1-e { background-position: -32px -48px; } #ui-datepicker-div .ui-icon-arrowthick-1-se { background-position: -48px -48px; } #ui-datepicker-div .ui-icon-arrowthick-1-s { background-position: -64px -48px; } #ui-datepicker-div .ui-icon-arrowthick-1-sw { background-position: -80px -48px; } #ui-datepicker-div .ui-icon-arrowthick-1-w { background-position: -96px -48px; } #ui-datepicker-div .ui-icon-arrowthick-1-nw { background-position: -112px -48px; } #ui-datepicker-div .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } #ui-datepicker-div .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } #ui-datepicker-div .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } #ui-datepicker-div .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } #ui-datepicker-div .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } #ui-datepicker-div .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } #ui-datepicker-div .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } #ui-datepicker-div .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } #ui-datepicker-div .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } #ui-datepicker-div .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } #ui-datepicker-div .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } #ui-datepicker-div .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } #ui-datepicker-div .ui-icon-arrowreturn-1-w { background-position: -64px -64px; } #ui-datepicker-div .ui-icon-arrowreturn-1-n { background-position: -80px -64px; } #ui-datepicker-div .ui-icon-arrowreturn-1-e { background-position: -96px -64px; } #ui-datepicker-div .ui-icon-arrowreturn-1-s { background-position: -112px -64px; } #ui-datepicker-div .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } #ui-datepicker-div .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } #ui-datepicker-div .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } #ui-datepicker-div .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } #ui-datepicker-div .ui-icon-arrow-4 { background-position: 0 -80px; } #ui-datepicker-div .ui-icon-arrow-4-diag { background-position: -16px -80px; } #ui-datepicker-div .ui-icon-extlink { background-position: -32px -80px; } #ui-datepicker-div .ui-icon-newwin { background-position: -48px -80px; } #ui-datepicker-div .ui-icon-refresh { background-position: -64px -80px; } #ui-datepicker-div .ui-icon-shuffle { background-position: -80px -80px; } #ui-datepicker-div .ui-icon-transfer-e-w { background-position: -96px -80px; } #ui-datepicker-div .ui-icon-transferthick-e-w { background-position: -112px -80px; } #ui-datepicker-div .ui-icon-folder-collapsed { background-position: 0 -96px; } #ui-datepicker-div .ui-icon-folder-open { background-position: -16px -96px; } #ui-datepicker-div .ui-icon-document { background-position: -32px -96px; } #ui-datepicker-div .ui-icon-document-b { background-position: -48px -96px; } #ui-datepicker-div .ui-icon-note { background-position: -64px -96px; } #ui-datepicker-div .ui-icon-mail-closed { background-position: -80px -96px; } #ui-datepicker-div .ui-icon-mail-open { background-position: -96px -96px; } #ui-datepicker-div .ui-icon-suitcase { background-position: -112px -96px; } #ui-datepicker-div .ui-icon-comment { background-position: -128px -96px; } #ui-datepicker-div .ui-icon-person { background-position: -144px -96px; } #ui-datepicker-div .ui-icon-print { background-position: -160px -96px; } #ui-datepicker-div .ui-icon-trash { background-position: -176px -96px; } #ui-datepicker-div .ui-icon-locked { background-position: -192px -96px; } #ui-datepicker-div .ui-icon-unlocked { background-position: -208px -96px; } #ui-datepicker-div .ui-icon-bookmark { background-position: -224px -96px; } #ui-datepicker-div .ui-icon-tag { background-position: -240px -96px; } #ui-datepicker-div .ui-icon-home { background-position: 0 -112px; } #ui-datepicker-div .ui-icon-flag { background-position: -16px -112px; } #ui-datepicker-div .ui-icon-calendar { background-position: -32px -112px; } #ui-datepicker-div .ui-icon-cart { background-position: -48px -112px; } #ui-datepicker-div .ui-icon-pencil { background-position: -64px -112px; } #ui-datepicker-div .ui-icon-clock { background-position: -80px -112px; } #ui-datepicker-div .ui-icon-disk { background-position: -96px -112px; } #ui-datepicker-div .ui-icon-calculator { background-position: -112px -112px; } #ui-datepicker-div .ui-icon-zoomin { background-position: -128px -112px; } #ui-datepicker-div .ui-icon-zoomout { background-position: -144px -112px; } #ui-datepicker-div .ui-icon-search { background-position: -160px -112px; } #ui-datepicker-div .ui-icon-wrench { background-position: -176px -112px; } #ui-datepicker-div .ui-icon-gear { background-position: -192px -112px; } #ui-datepicker-div .ui-icon-heart { background-position: -208px -112px; } #ui-datepicker-div .ui-icon-star { background-position: -224px -112px; } #ui-datepicker-div .ui-icon-link { background-position: -240px -112px; } #ui-datepicker-div .ui-icon-cancel { background-position: 0 -128px; } #ui-datepicker-div .ui-icon-plus { background-position: -16px -128px; } #ui-datepicker-div .ui-icon-plusthick { background-position: -32px -128px; } #ui-datepicker-div .ui-icon-minus { background-position: -48px -128px; } #ui-datepicker-div .ui-icon-minusthick { background-position: -64px -128px; } #ui-datepicker-div .ui-icon-close { background-position: -80px -128px; } #ui-datepicker-div .ui-icon-closethick { background-position: -96px -128px; } #ui-datepicker-div .ui-icon-key { background-position: -112px -128px; } #ui-datepicker-div .ui-icon-lightbulb { background-position: -128px -128px; } #ui-datepicker-div .ui-icon-scissors { background-position: -144px -128px; } #ui-datepicker-div .ui-icon-clipboard { background-position: -160px -128px; } #ui-datepicker-div .ui-icon-copy { background-position: -176px -128px; } #ui-datepicker-div .ui-icon-contact { background-position: -192px -128px; } #ui-datepicker-div .ui-icon-image { background-position: -208px -128px; } #ui-datepicker-div .ui-icon-video { background-position: -224px -128px; } #ui-datepicker-div .ui-icon-script { background-position: -240px -128px; } #ui-datepicker-div .ui-icon-alert { background-position: 0 -144px; } #ui-datepicker-div .ui-icon-info { background-position: -16px -144px; } #ui-datepicker-div .ui-icon-notice { background-position: -32px -144px; } #ui-datepicker-div .ui-icon-help { background-position: -48px -144px; } #ui-datepicker-div .ui-icon-check { background-position: -64px -144px; } #ui-datepicker-div .ui-icon-bullet { background-position: -80px -144px; } #ui-datepicker-div .ui-icon-radio-on { background-position: -96px -144px; } #ui-datepicker-div .ui-icon-radio-off { background-position: -112px -144px; } #ui-datepicker-div .ui-icon-pin-w { background-position: -128px -144px; } #ui-datepicker-div .ui-icon-pin-s { background-position: -144px -144px; } #ui-datepicker-div .ui-icon-play { background-position: 0 -160px; } #ui-datepicker-div .ui-icon-pause { background-position: -16px -160px; } #ui-datepicker-div .ui-icon-seek-next { background-position: -32px -160px; } #ui-datepicker-div .ui-icon-seek-prev { background-position: -48px -160px; } #ui-datepicker-div .ui-icon-seek-end { background-position: -64px -160px; } #ui-datepicker-div .ui-icon-seek-start { background-position: -80px -160px; } /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ #ui-datepicker-div .ui-icon-seek-first { background-position: -80px -160px; } #ui-datepicker-div .ui-icon-stop { background-position: -96px -160px; } #ui-datepicker-div .ui-icon-eject { background-position: -112px -160px; } #ui-datepicker-div .ui-icon-volume-off { background-position: -128px -160px; } #ui-datepicker-div .ui-icon-volume-on { background-position: -144px -160px; } #ui-datepicker-div .ui-icon-power { background-position: 0 -176px; } #ui-datepicker-div .ui-icon-signal-diag { background-position: -16px -176px; } #ui-datepicker-div .ui-icon-signal { background-position: -32px -176px; } #ui-datepicker-div .ui-icon-battery-0 { background-position: -48px -176px; } #ui-datepicker-div .ui-icon-battery-1 { background-position: -64px -176px; } #ui-datepicker-div .ui-icon-battery-2 { background-position: -80px -176px; } #ui-datepicker-div .ui-icon-battery-3 { background-position: -96px -176px; } #ui-datepicker-div .ui-icon-circle-plus { background-position: 0 -192px; } #ui-datepicker-div .ui-icon-circle-minus { background-position: -16px -192px; } #ui-datepicker-div .ui-icon-circle-close { background-position: -32px -192px; } #ui-datepicker-div .ui-icon-circle-triangle-e { background-position: -48px -192px; } #ui-datepicker-div .ui-icon-circle-triangle-s { background-position: -64px -192px; } #ui-datepicker-div .ui-icon-circle-triangle-w { background-position: -80px -192px; } #ui-datepicker-div .ui-icon-circle-triangle-n { background-position: -96px -192px; } #ui-datepicker-div .ui-icon-circle-arrow-e { background-position: -112px -192px; } #ui-datepicker-div .ui-icon-circle-arrow-s { background-position: -128px -192px; } #ui-datepicker-div .ui-icon-circle-arrow-w { background-position: -144px -192px; } #ui-datepicker-div .ui-icon-circle-arrow-n { background-position: -160px -192px; } #ui-datepicker-div .ui-icon-circle-zoomin { background-position: -176px -192px; } #ui-datepicker-div .ui-icon-circle-zoomout { background-position: -192px -192px; } #ui-datepicker-div .ui-icon-circle-check { background-position: -208px -192px; } #ui-datepicker-div .ui-icon-circlesmall-plus { background-position: 0 -208px; } #ui-datepicker-div .ui-icon-circlesmall-minus { background-position: -16px -208px; } #ui-datepicker-div .ui-icon-circlesmall-close { background-position: -32px -208px; } #ui-datepicker-div .ui-icon-squaresmall-plus { background-position: -48px -208px; } #ui-datepicker-div .ui-icon-squaresmall-minus { background-position: -64px -208px; } #ui-datepicker-div .ui-icon-squaresmall-close { background-position: -80px -208px; } #ui-datepicker-div .ui-icon-grip-dotted-vertical { background-position: 0 -224px; } #ui-datepicker-div .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } #ui-datepicker-div .ui-icon-grip-solid-vertical { background-position: -32px -224px; } #ui-datepicker-div .ui-icon-grip-solid-horizontal { background-position: -48px -224px; } #ui-datepicker-div .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } #ui-datepicker-div .ui-icon-grip-diagonal-se { background-position: -80px -224px; } /* Misc visuals ----------------------------------*/ /* Corner radius */ #ui-datepicker-div .ui-corner-all, #ui-datepicker-div .ui-corner-top, #ui-datepicker-div .ui-corner-left, #ui-datepicker-div .ui-corner-tl { border-top-left-radius: 4px; } #ui-datepicker-div .ui-corner-all, #ui-datepicker-div .ui-corner-top, #ui-datepicker-div .ui-corner-right, #ui-datepicker-div .ui-corner-tr { border-top-right-radius: 4px; } #ui-datepicker-div .ui-corner-all, #ui-datepicker-div .ui-corner-bottom, #ui-datepicker-div .ui-corner-left, #ui-datepicker-div .ui-corner-bl { border-bottom-left-radius: 4px; } #ui-datepicker-div .ui-corner-all, #ui-datepicker-div .ui-corner-bottom, #ui-datepicker-div .ui-corner-right, #ui-datepicker-div .ui-corner-br { border-bottom-right-radius: 4px; } /* Overlays */ #ui-datepicker-div .ui-widget-overlay { background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .3; filter: Alpha(Opacity=30); } #ui-datepicker-div .ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .3; filter: Alpha(Opacity=30); border-radius: 8px; } assets/lib/wck-api/assets/datepicker/images/ui-bg_glass_75_dadada_1x400.png000066600000000406152141651120022362 0ustar00PNG  IHDRDbKGD1 pHYsHHFk>HIDAT8cxa"[n{1qcpo"? 3}`xR1s?^^bxuu)뉣hW%R|%tEXtdate:create2013-09-22T19:55:20-07:00J%tEXtdate:modify2013-09-22T19:55:20-07:00;2 IENDB`assets/lib/wck-api/assets/datepicker/images/ui-icons_888888_256x240.png000066600000015527152141651120021172 0ustar00PNG  IHDREr@bKGDI( pHYsHHFk>tIDATx{le}?g kuJ>DC^QMH*MU h(*$HR*j D])Ż(M6F6!6- xIi- HN8suιgf73ƣ7 x ^/2&v&v^DL l6I-o?cnD Iye#d0+03~0g'LV[RC:B~()$qvXuB@E@`HNG`TA%=]qAwJ)u)9:e9d`V0A{=BS*ڦ SgF A -(DR˷@"g'U,eSwʿj*)l[.HLyϰ9jaI6MR~~ nGٕ3  @pxh84~=@>(mE3a\`~=uQ[f3WAioK}3wէgV,jn2*ߕmM] y=xn"co.L"7]EC:dHzE@W.f+^eƦ6vռE4O`̴.)l :7){_Я~"pxh84^/ / #\@S^T0sZs1J1Pr hwVEgSTQ5[ \BO `+˾>}\6/0kg1[ KhlXʿ_Z^IA^N4vOW=%i^<9tf 2СBHg6!u\ҭZ&蒶 2s U]iT ]Uaq;]A :rG-3<Fn*ݴTݯ 4< ; @pxh84^ysh,ux$\j"Z-moSJ9{ e˹[ \fָұy2LT0K@9ԼŢ=?ХB=c"vT6 Tokza9Ts&6ոv }3':[5),xU!҃@}U kc ꈡY,]`&߬('u*^v Owu?}2&CȖr}ݾ^g[`yc*9s"f_b uuT?Mf  eۏ0evbcJEM%6PolM`n ~Esչdj|z)miO q/{کJqAGpxh84^a+ ʥ5݃F+Y&{˾I z\eXoJ}HȯiW)~nm߮ɞhl*7TP3kXJ7R""NXU}ٔއA/(qW\v6$2 -˶E zdj0u]PT{[:>>LDkZYֺ14ZCWUbd12zBY$i".~Ai=Œ ۪>EAIb\Ϋ c6OSB\ɅJ#" REȰ_'I.aluI YX^/  @=h$i37[d:Qu!ZtwUl~FŻbkK"$-c.3@,y;i-JӉR޽H!ɷjN;LdwEdp fO,jTq+ 򩸹h[@Vef6KVx\b|l}_$U+W!?o[yB(p3 r_5P2ݚla˱ *xGXG$`W~9?r+y -kd.@ <]#U\Z, W4Ig9L1s aRO^.P(>K\c6m^um Qlg"y[өD/[V*3谨Xm@[qX#r,a5 kLK"0񢐻(qAOVPU j(iJlWq li xS T!sXD@s 9ky8\aY"rv֗u- v!H 4<@(B$"PdVZ5Ɯ ߦs0kB5h$=dpϪ_@0+4@"hOtcky5vzK\1@ޒZ]B_.܋ؿ!IXdWpW0Z%y9s9jaK0hsN,lUX!hf!2.)0 6B|Iq/Ӽ0jDF[,5 !m`-$J~1wWQJD#"YO  6hVQ5Ct/7 8-*"_EUy 0x+Cxgh|+`6HiA|]Z=^JE\`20 ~]f 5X`?S0Q^?J1%[Gxh84^/{ S"rؘɛnRZԧ[v-POI'Z~ttONzqgآ4X ԃ,seq9 ,2)^Ķ/(rS?=# (9a:,وK x R. B%f6nϻ V/Σ %O+|!I 63eHWO vXIKOrZ8gg8=C29Ǫ[PB' rAmK"zʻ! m6뱾3y5ܓ"[< JsϏU9Z^8_fD!Zq_\- -`)Dg鲔iqIb.JXTbjk$M1^K6<˿9C_frEM~8]TxXu5_<t_0PA𶀆 @p4O"qGA餦vGbQprzE33U 6+$q?W 1XK<8 [sC!}E~5C~=Cn 1[xLO gUX=̪yhsl(&U'/qgv|^8Sx(o(Bxe\ӑľUs:҅ͅ2k W!BԜi VEOfX6gA5kOد2jS6ۼ[JSjQ:(Z0Ne Z]L2$4@8B,,Nj(t'8.JCLKUi5#Xx#|U:@m??d,^q5L!]MrI4pZ;>g@MFK)(}fU .{]~55>"$c +ן?Qc# mK-6)࿁_YnG+:|a "~ϯٯbq~=+,j?My 9"yDʍng6-z<,+tKxW"'l˾H[yJ&a@~/9"a%$iѣ6.S8ظ+y+*ojom p-k1 u%=-" 4wq-ՐEK |UfG -Ua]Xrx.\˅h:"LFdF5pf覊)nYͣnFh 1{'\<ϫlik)$H 䇙5%yknib /OEOjZ<,bP p+ @<[/ #/Zwp6$5DE |6w^>7{ԇNĭPwf>k7/c͗=cMﴯ߁AE`q:N*NQbUG`ʟƳCᨉ"5w5.&v;.ܱ7e$$yKYE<[y8M nm%U4@[&EC(./bC>Z1_PO^;Ф!Nwcl^]`C1L8GO{ >.|mO9QHN P{;=YJ7'[ɂ-b< Xӌ2@}޺PwaŨM lqG{R\pDxsT3Xؓ @pxh8ѱxe l TZBHaect*ZHFb52iiS[:DHS ))%_rpSeUӮ@ *I3*C 3 =&&5CB`Ê,o]~]3tحjXex0CTA3œy 5{t!k@QV+Vr 3e!̰BːۓOA԰‰ # U4VDчD*Oݕ<:XlBxh8L`pxh84y0؃Jk5#;ǮD"-鞺#tLn3ã|ÁysɩqvA2t>}XJx8c&G)jI}@5V&J? Y!\=jb<hj o%tEXtdate:create2013-02-01T05:33:10-08:00)`%tEXtdate:modify2013-02-01T05:33:10-08:00X=x.tEXtSoftwareAdobe ImageReadyqe<IENDB`assets/lib/wck-api/assets/datepicker/images/ui-bg_glass_95_fef1ec_1x400.png000066600000000514152141651120022317 0ustar00PNG  IHDRAbKGD X pHYsHHFk>IDATHϱ a\!VJ#XЋD} .f>>Pկxxqжuɚqf+6[\‡כWT4r6:]V:, (Ŵ8yG-(d H%tEXtdate:create2013-09-22T19:55:19-07:00Qȇ%tEXtdate:modify2013-09-22T19:55:19-07:00 p;IENDB`assets/lib/wck-api/assets/datepicker/images/ui-bg_flat_0_aaaaaa_40x100.png000066600000000324152141651120022151 0ustar00PNG  IHDR(d5bKGD3r pHYsHHFk>IDAT8cX Q(sI. I/ZW%tEXtdate:create2013-09-22T19:55:20-07:00J%tEXtdate:modify2013-09-22T19:55:20-07:00;2 IENDB`assets/lib/wck-api/assets/datepicker/images/animated-overlay.gif000066600000003312152141651120020762 0ustar00GIF89a((! NETSCAPE2.0! ,(( z KNY#7)zɭv[3ӵϰxPwEa؁FOfVYeΛ||/X\Wr݅o$m^K0>'$uf6G'Xg5Ȩ5)9):ZiYJyڪY! ,((}Q6Úa_y#ʩijK-|˱K3^Pw&KOә=7IfTzLMYhcdX\1iea }wl5CgGB)'hY9IHyȗ ʹYjZGh'j85P! ,(( mQ6,@o-`u$>Iz/ 69~[ޢՄ^Ot6Ac:vN?cUX|f&6ẍ́哲_~G(b8X%x7IXI9x(I:Y*XYvʚP! ,((oˁ;MZY|ƍ舝([99ږ1`P2!H>oQW^dsc2*Siy x[s^ݶVGWwgǸإx舙Y8IIyIZj)Xf):R! ,((CqMZYm5W(F~٩'-:Õ|ڒ1p?X1dFSLӨqne^ACjTpfԷUp|%ƌn]z~mHXx6X9)Hyi9ƈר)Z *Y! ,((˜CMZ5Yo}6-ʕz㒽h1C&'EfrtF9z&ۭ*V:&Tjeu~_}W5hbG6(iV((x:蹊JYY* P! ,((CMZՅl}'vexVZk 򮯱$bR3ƒHPGkBjymhXklvYvֻf7HXH(((9x3%txiY 9i*ZJzWP! ,((CMZՅl}'vexVZ%;ӨU{ZbQ0G͹SSRƆШ 2kYEV}v]xTpg7gvHX'㖨9)רe&) ji:hIZT;assets/lib/wck-api/assets/datepicker/images/ui-bg_highlight-soft_75_cccccc_1x100.png000066600000000430152141651120024166 0ustar00PNG  IHDRd2bKGD1 pHYsHHFk>ZIDATcx|Nhã 2'IDATx{he}?g{1)]K&qqU4kbiKR(HBP(IvJ_ӮIV@nB5iNiGjq& ~A#QrX'9:ܫ{3E{=yo~3g~Mp& 1Xxh8<#dlЅMx1&$5 ~V c$ױ, ƹiN:Z ߊY>"BH!-Cu8t}8!B *OF.[aͲlB&1h>M]hN4MAb̐!(hE15jձcO<6e7,eS(fo16+3y JR|{^3^{88 ~' pxh8<4 g2n6e̘{QpӀPAiۺߖfS(D'L6=T:sfq羀l.cI ǧ=iM>ڠLN{U&&{uo..4~# pxh8<4 gÛp^i/0TWcQ @)yu}`LUc%Tȥ AR@?P-`BKl bZ}Ш͢uJ%U]K2e tsY@,ee豅rjcܭsMn0 AmPy DK(5,lN&bDmrwYDVte$謷 L[C0O P&0+; g3@ pxh8<4Y`OFZ!x#~ Gk @3K@:>PRMA|e]KgF.BtlOY d!(vVX%m#I[RR`2T HwYu=bYPEcU%&@Ĺ]}qo7*GL eQX5U-³8| _ݟ5\5pVH^\ Fآaa5l14[#boP1EiswMJ'5T06B|I,b`ՈPXkB$[-EOHt |3D(id9N6@x/ؠm(#wjPt/Zobq%[:3^~a55 |E닃^E$L-_s, ߫㕔Ņ& _,# F}&.<4 gOrdh9M7L(5꓂.?M(stզ-?:[ڧCr]'YB2lC| leXSpG0KcI~u L0/yLtrI?R%-wǷh$LJV ͿӢ ,g x_7l4* uM+@x<}ãq><#`i :=*ۿ{)_8hspCWғK`B]H"}_PNtQl1YQh+&?x5: ֘aYҭ=\En.YʸJE%uTj5F'b;[vט4u6]lkw3÷, : %& [|||Yiq`:qXc2+u|~/wrz[j-I># ,9Q:#,25@@%S@@6ÅJ{6{)hW~q]t<+|'0Oa 63UHWl;'Z9Z\oO嵁eeƢ[odarEm&ʧ3m6=g^Sx Hjmi(v ۈ{.h_%8nF7y{OFS5:/աWPH+bGx/9IYy.MtTeە,ѿ- Red ;Ә:9kT5mEG|\Wuǣ@^LE 4 gy ; J'U䐎N׷< p2mӫ.ZZ5< V ,p3w=~3jǿě#ʭ|Sfyk=Cn 1]C'I_O*,J՞D\\I}E\$M(E\߮?ƫw NJEb6tz:-?Bp ?XJ $xQJ}!#Ո2Ht!VɽV\'Y366YuJOAa[5e]p9=7t_y?OS_iT<͛32N묳}jHQ RTȢ nfݮ~+ciQ < Ma=|* $@'ԌǕqUO;5~@eI29w" O~ssk{‰$m>v z^2vow` a4cM Cb>q:o=-p`_2 ng:6KXV,2Ǿ6 g3@ śsaR WWB g-N;F[ՒaAVLF<-m VbMC 7K)XPy s~=<ܒ{x!=ÃqRl]/ 0l)'}#^tX孋t8FCY$)PUBE(~ҞV2^*SLHlS'IA[ Zx-V"ȥJ+ \|5uWnLJkܟ(00JyꞄafg6 g3@Ñg[}ZQk?ҳ=zI$ Т:9FWmx:\(W+eF9,*!GhDL8[vo)AaK5S/)^c(WHNW8Tr=opp]MCO?* D΢Ob/hs0ڜb91C9-oۿԗuQFc|W%@HB29/DxD`U:Ƈgi"`%ᄽ t E`t62k)PEѿO,?k_yh(/=@u g3@v@]<]~WD`.f~oʈNVA߈եM ^yMQ|ߛ^-{o~>wЃ (gXץi&X uDU͕l  ғޥߞkPHHCJ~S@O ׋ѓy7 k {25ofϫo{'!'Z%q*)gC\#\'0 P_WL7&AlJ\ Zp, Yxjc O(6zIV u:גTDO9ׄQ<*y =2~/?J,WJQW>Wu?#G/4"K{㧏',Iҟ综E;|Rݠ~W7i86 pxh8<4 r<}8 kGo;uCPv)A<$ց;{l #`FC!f Ӆ/`7(0R!99z@%!/m]AdhvG3@ pxh8<4{P/ 3@} B&^16{. ߠaQo 2lmt!\%@X?5ճa~ ʠM65wka)TF_ 2$x5_9!VxRd1!}'`$Uԇr? Q `7`.k_VzԄp]]GOLXCk3%tEXtdate:create2013-02-01T05:33:10-08:00)`%tEXtdate:modify2013-02-01T05:33:10-08:00X=x.tEXtSoftwareAdobe ImageReadyqe<IENDB`assets/lib/wck-api/assets/datepicker/images/ui-icons_cd0a0a_256x240.png000066600000010705152141651120021414 0ustar00PNG  IHDRIJPLTE 4vYtRNS3P/"Uq@f`2 !<BHK Z#'1S,4j8E|)Q$ bJmߜGc?oh@^bKGDH pHYsHHFk>dIDATx] c۶H阒]Kd%٫뺮lmw]|pXm-}X:+iĆQV9\e'AtOS:72YsxMہB&z>nC@r@*aӝ%MFDDDDDDTߖH,ERUn ب\f͹:}4ᦋ{)n[ ̰E K Y Dۇ- +Kl=ӃL`љ|%n a N#5 (4?EDDDD\oWFfq;\E_,W!%zE!F¶. (USHQ0dw)T 8#p,xBK *xXEe K솎%mKX~sFE~tdcaI1Af4dHcGSB`0wev`"{ .GDDDD,dO6k"qkMefS_UKŌ&g~>n H}) LF%8()r![4统qQk0m[Le_70@>1 X0AZVcEV Ltk3EJ44ZﮊN`rt>`˥  AHBLH@cUq=jcM2sJCLiR NQ0=Yi-|4V ]]B^ޞ_H$<$ a=d@ (ZAp_}~s:N{DC>m^ƒS&, ;N&B} <_AB]HuN(B0{h1IKDs j' M8.ӫ1h3df}mq nU{Lo z \=?@ ((e|=ơ麄Ci1r<|OO; `HpQyzԈuZVƲ!)5mC2Lyg;֑RjWa@@VL&Wru=Z ̥=U5} 7;b(nP&sk48ͥ01U Wvk18dqTՌE]qH8 GF K'rOrŗ6"fpT^3c"nMم-/W=tJ,X){P Rm|K>mX8v5h<_{ꘀYF|&_G;&>^W⁃&K(81EB@F&;"L'wfwE-6o&/̫'Xe,>~ee|A=) dQ`}P[KN˂/~)O[dO=3El5'Y$?7mTzզ.\.` WE"""""v)V#]L;zqJr²[\-tҽ5 @ͷϟnT@+;cQhC*TڙAVr?f? Q1T`} Hk,{VZˋTϛ?I̯uQKLMe͆~qym09 S;j5 iQ]7k0UޭGkX3#lY_Цxj޶9`# M [z KuO_z˿Dܭ*kOJ(7n\e ITƨl/U߶uw.~;#r.8 o# 5Lh>1i pVM?/u70 X@L+M+{Fkt{ŧ890`. ĀCR+\/t R; TӲ]aL|efđ >ۣG|P`P8C1K՛A̍<2ۂKrl@L L 8@E>`nPNԍ,p EƆZF lÎ; F7Ȯ; swSz)g7{rsSgȋ(߄~AWytX$NVR_<6p.O8O[OdDk>_OO}JSdmV?W(_m j~=H IԁF>T/{*]IGJ@iqamNF|Q50+ ES8:v`p~vj:Bp96oys% |@H]+@t]Wk}}7FʮrAB\m-_2PY8xՎN.h~@+7z5t_//?0S>)zi0n/B`{DW#`Bo[,gFVЁpP߾C]Bz ,XXfԃA:H k7dZ9oc}o]0vd:R]0ve]刈jу| ? +(OǍ+ #ysߍnpFru<.HȺotM3h}߆P}˗vP}mǀ?WZ@}@@FDl%tEXtdate:create2013-02-01T05:33:10-08:00)`%tEXtdate:modify2013-02-01T05:33:10-08:00X=x.tEXtSoftwareAdobe ImageReadyqe<IENDB`assets/lib/wck-api/assets/datepicker/images/ui-bg_glass_65_ffffff_1x400.png000066600000000317152141651120022407 0ustar00PNG  IHDRG#7vbKGD݊ pHYsHHFk>IDAT(ch`ph4i%tEXtdate:create2013-09-22T19:55:03-07:009\W%tEXtdate:modify2013-09-22T19:55:03-07:00H/IENDB`assets/lib/wck-api/assets/datepicker/images/ui-bg_glass_55_fbf9ee_1x400.png000066600000000517152141651120022325 0ustar00PNG  IHDRAbKGD X pHYsHHFk>IDATH! AblA1{VY0ixxvDK_O9 aՔ}^JaȌ0bvBA$,Q"_44=SqcyEIW mIDATx{leG}?gK$U!>T؈Ji6A"VR%;"*UP) /zRJFQP zBQHVU5sμ9^3ߕ{~7s7<.` cAb/@[VD03AX90N_B &>~> c;abDߎEQz'kMayԉ 6!:u::@RŤByDD'L-f]Sq!f SQ&S7MCr==3dJ{fZS0Ms:0K٦gʿ&HU=mc4i?UĔGU4hcQb]!hLW/  @pxh8~|AQf?ێ1f¸=uQGJHpPϠIw״m췥ԧ>2"WÓP&{nT:sfqH@.cI ~Ss+^|Bn29 dH]v-ˌ-meh>q&تg 9x#cn~!pxh84^/ o #Z@S^4 KZKPd9C@F[,a+]8vKqHlw9ק84KBץ|&#[\C`R!:F zC6)AT1wU.Iҗ!4ig3wE:q7n0uAmPy TK(5ͬlNæbTrwDV]te47 L[C0P&0++  @pxh84Y`OEZj,*-E)e{U, \uoV: `omKet_WOdW3Z Քrv|~^g`jycp*fb]M59.LNq+%ۯ0vccJEM5kk#I<x_ I#0Dw4xh84^/ ^c drDM{wQte{^`br./M:0գ*z`]|SB(e)h͎/Vܮ"aO!o ,u^Љ^=zt`WeCCM Qϱo0q%Uo?<@6HG/uAQ-_u||ִ*2lٍuG@ j !Br qL!*)h.V{3-!w$dP*/P[ t1l3hlyp0bgL} 3$%\/.)TwQ"uK7d+2! @pxh84'aY$mf6lB'.D Рx7SxtIe We}d0RW^ݢ0](U݋Tx|T|@v^Df׹Lb(2H0n8;_QO}D&3{YWw5*e˗?̖G :H iZӖ)/MP(:!/|B[i:Gf L`~:z$aa^ʭ|P- kbݞ<ەL&xJAABȼHvᑢ[ySəwNJuy %pw0_a"zx 3i1|= @%JWAm\ lXm9+()S orro*E`Z1&=ޗg!Rt<bfa?qh'y'ry#\& o+Ԫ|Y%_Hp"k1*ɫU[&x9xAsmfe<_7;y6mi :[)EB7̰8fCH`⾿h)}(%m'& ;(ݚ!{:^R@NKү"*<V敡=oh~q+`6IiI<#Z=^IE\`0]1%DA^a0f,c %[Gxh84^/rdh9M7L)-ӂ-?K(stբh-?:[ڧCr]G(YB3|C| leXW_xV8ƊbbQ7V4J]l!= D ?'a`^aq8:-OYPxۀ֝X5Q"GִW} I>ȓclpVZM_gڰCveG{<_d0՗eN%NyƍȄp~Ú/kn|(G#.s9Jۇl [6ɻ&.X{SDf†< y?O~ƅDP*~bgcos{;'Z9Z.O孁e U~?Ӆ1N3ڶD(1GxxkSHI~ی?Ok,i(ׁۈ{.h_5؋nF70QOS5:'/աJr .KNwuer>n-U$U`Iv%.AUed ;Ә:+a&XĎ y Gс "4pxh84^ @d6((Ԕ{C::[>H, ɴNVNhr.~NZ`3᝼KQ|$%t!Vn%=*7fg(m!f y"kI6Y/eZٳ+zg6W8ɦbQ%y{9Ï*ŕ#7b-tX͕8ynO{]!ټ*\ (p2.Hٙd.^Z(N &l2&k U&ף#~.7658A7}P:BlkU[8)jw0$W !s\ QFn(qRK:'X@=$ x|5:@]2Si.& $` 8tS =&[#߫U3Wҳq ^H{➇Z4"AH#U0+̱1Ɏ;O9"DE C+nU:|a ɔM|?HW1$~=kUџVVl{7 ^;<,t[T"3SU9l˾Hx^&a@)E&<I?U7xG4c *i 5)ñ>wHf5[qO.d&J_~W\`G{ |-e/Чkd E( Niv=C` ̲Z+%m )s!ī6FeiN%O*㪞v,s@%4tS/Ѓ (gX7i&X 5WJ"*V J6s{IwoO_5~YXw(R!m)^'Dɸ5=@+~jyQ`O`$D`H_BT#%].XxDѫOR2E\K"R\T|:mO x*y =2~/?J,+%q Wޛ3?ܕ? ^e +RoҎ5س~oBo l84^/  @!/ONGۮ2t]С8cݮ5z=7ˮg@/aE[y#3#z7L.| (cRcSmQ$6ץ{ Da{T_j84^/  @ñ`/_g "d`ɾ0 { Cj_9jDՋa~? dc[0*a,& 0&+ OB4!1~Ix>8c&G)jI=@5@v&J?QlÇ@Q?^%tEXtdate:create2013-02-01T05:33:10-08:00)`%tEXtdate:modify2013-02-01T05:33:10-08:00X=x.tEXtSoftwareAdobe ImageReadyqe<IENDB`assets/lib/wck-api/assets/datepicker/images/ui-bg_flat_75_ffffff_40x100.png000066600000000320152141651120022277 0ustar00PNG  IHDR(dObKGD݊ pHYsHHFk>IDAT(c (IUʑ.{%tEXtdate:create2013-09-22T19:55:18-07:003%tEXtdate:modify2013-09-22T19:55:18-07:00{IENDB`assets/lib/wck-api/assets/datepicker/images/ui-icons_2e83ff_256x240.png000066600000010705152141651120021361 0ustar00PNG  IHDRIJPLTE..........................................................................................oYtRNS3P/"Uq@f`2 !<BHK Z#'1S,4j8E|)Q$ bJmߜGc?oh@^bKGDH pHYsHHFk>dIDATx] c۶H阒]Kd%٫뺮lmw]|pXm-}X:+iĆQV9\e'AtOS:72YsxMہB&z>nC@r@*aӝ%MFDDDDDDTߖH,ERUn ب\f͹:}4ᦋ{)n[ ̰E K Y Dۇ- +Kl=ӃL`љ|%n a N#5 (4?EDDDD\oWFfq;\E_,W!%zE!F¶. (USHQ0dw)T 8#p,xBK *xXEe K솎%mKX~sFE~tdcaI1Af4dHcGSB`0wev`"{ .GDDDD,dO6k"qkMefS_UKŌ&g~>n H}) LF%8()r![4统qQk0m[Le_70@>1 X0AZVcEV Ltk3EJ44ZﮊN`rt>`˥  AHBLH@cUq=jcM2sJCLiR NQ0=Yi-|4V ]]B^ޞ_H$<$ a=d@ (ZAp_}~s:N{DC>m^ƒS&, ;N&B} <_AB]HuN(B0{h1IKDs j' M8.ӫ1h3df}mq nU{Lo z \=?@ ((e|=ơ麄Ci1r<|OO; `HpQyzԈuZVƲ!)5mC2Lyg;֑RjWa@@VL&Wru=Z ̥=U5} 7;b(nP&sk48ͥ01U Wvk18dqTՌE]qH8 GF K'rOrŗ6"fpT^3c"nMم-/W=tJ,X){P Rm|K>mX8v5h<_{ꘀYF|&_G;&>^W⁃&K(81EB@F&;"L'wfwE-6o&/̫'Xe,>~ee|A=) dQ`}P[KN˂/~)O[dO=3El5'Y$?7mTzզ.\.` WE"""""v)V#]L;zqJr²[\-tҽ5 @ͷϟnT@+;cQhC*TڙAVr?f? Q1T`} Hk,{VZˋTϛ?I̯uQKLMe͆~qym09 S;j5 iQ]7k0UޭGkX3#lY_Цxj޶9`# M [z KuO_z˿Dܭ*kOJ(7n\e ITƨl/U߶uw.~;#r.8 o# 5Lh>1i pVM?/u70 X@L+M+{Fkt{ŧ890`. ĀCR+\/t R; TӲ]aL|efđ >ۣG|P`P8C1K՛A̍<2ۂKrl@L L 8@E>`nPNԍ,p EƆZF lÎ; F7Ȯ; swSz)g7{rsSgȋ(߄~AWytX$NVR_<6p.O8O[OdDk>_OO}JSdmV?W(_m j~=H IԁF>T/{*]IGJ@iqamNF|Q50+ ES8:v`p~vj:Bp96oys% |@H]+@t]Wk}}7FʮrAB\m-_2PY8xՎN.h~@+7z5t_//?0S>)zi0n/B`{DW#`Bo[,gFVЁpP߾C]Bz ,XXfԃA:H k7dZ9oc}o]0vd:R]0ve]刈jу| ? +(OǍ+ #ysߍnpFru<.HȺotM3h}߆P}˗vP}mǀ?WZ@}@@FDl%tEXtdate:create2013-02-01T05:33:10-08:00)`%tEXtdate:modify2013-02-01T05:33:10-08:00X=x.tEXtSoftwareAdobe ImageReadyqe<IENDB`assets/lib/wck-api/assets/datepicker/images/ui-bg_glass_75_e6e6e6_1x400.png000066600000000406152141651120022164 0ustar00PNG  IHDRDbKGD1 pHYsHHFk>HIDAT8cx0Fѳg ύax1e&ë8! obަ2fx#3ǵ >QD @$.5o%tEXtdate:create2013-09-22T19:55:19-07:00Qȇ%tEXtdate:modify2013-09-22T19:55:19-07:00 p;IENDB`assets/lib/wck-api/assets/js/tiny_mce/plugins/wordcount/editor_plugin_src.js000066600000006211152141651120023454 0ustar00/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.WordCount', { block : 0, id : null, countre : null, cleanre : null, init : function(ed, url) { var t = this, last = 0, VK = tinymce.VK; t.countre = ed.getParam('wordcount_countregex', /[\w\u2019\'-]+/g); // u2019 == ’ t.cleanre = ed.getParam('wordcount_cleanregex', /[0-9.(),;:!?%#$?\'\"_+=\\\/-]*/g); t.update_rate = ed.getParam('wordcount_update_rate', 2000); t.update_on_delete = ed.getParam('wordcount_update_on_delete', false); t.id = ed.id + '-word-count'; ed.onPostRender.add(function(ed, cm) { var row, id; // Add it to the specified id or the theme advanced path id = ed.getParam('wordcount_target_id'); if (!id) { row = tinymce.DOM.get(ed.id + '_path_row'); if (row) tinymce.DOM.add(row.parentNode, 'div', {'style': 'float: right'}, ed.getLang('wordcount.words', 'Words: ') + '0'); } else { tinymce.DOM.add(id, 'span', {}, '0'); } }); ed.onInit.add(function(ed) { ed.selection.onSetContent.add(function() { t._count(ed); }); t._count(ed); }); ed.onSetContent.add(function(ed) { t._count(ed); }); function checkKeys(key) { return key !== last && (key === VK.ENTER || last === VK.SPACEBAR || checkDelOrBksp(last)); } function checkDelOrBksp(key) { return key === VK.DELETE || key === VK.BACKSPACE; } ed.onKeyUp.add(function(ed, e) { if (checkKeys(e.keyCode) || t.update_on_delete && checkDelOrBksp(e.keyCode)) { t._count(ed); } last = e.keyCode; }); }, _getCount : function(ed) { var tc = 0; var tx = ed.getContent({ format: 'raw' }); if (tx) { tx = tx.replace(/\.\.\./g, ' '); // convert ellipses to spaces tx = tx.replace(/<.[^<>]*?>/g, ' ').replace(/ | /gi, ' '); // remove html tags and space chars // deal with html entities tx = tx.replace(/(\w+)(&.+?;)+(\w+)/, "$1$3").replace(/&.+?;/g, ' '); tx = tx.replace(this.cleanre, ''); // remove numbers and punctuation var wordArray = tx.match(this.countre); if (wordArray) { tc = wordArray.length; } } return tc; }, _count : function(ed) { var t = this; // Keep multiple calls from happening at the same time if (t.block) return; t.block = 1; setTimeout(function() { if (!ed.destroyed) { var tc = t._getCount(ed); tinymce.DOM.setHTML(t.id, tc.toString()); setTimeout(function() {t.block = 0;}, t.update_rate); } }, 1); }, getInfo: function() { return { longname : 'Word Count plugin', author : 'Moxiecode Systems AB', authorurl : 'http://tinymce.moxiecode.com', infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/wordcount', version : tinymce.majorVersion + "." + tinymce.minorVersion }; } }); tinymce.PluginManager.add('wordcount', tinymce.plugins.WordCount); })(); assets/lib/wck-api/assets/js/tiny_mce/plugins/wordcount/editor_plugin.js000066600000003650152141651120022611 0ustar00(function(){tinymce.create("tinymce.plugins.WordCount",{block:0,id:null,countre:null,cleanre:null,init:function(c,d){var e=this,f=0,g=tinymce.VK;e.countre=c.getParam("wordcount_countregex",/[\w\u2019\'-]+/g);e.cleanre=c.getParam("wordcount_cleanregex",/[0-9.(),;:!?%#$?\'\"_+=\\\/-]*/g);e.update_rate=c.getParam("wordcount_update_rate",2000);e.update_on_delete=c.getParam("wordcount_update_on_delete",false);e.id=c.id+"-word-count";c.onPostRender.add(function(i,h){var j,k;k=i.getParam("wordcount_target_id");if(!k){j=tinymce.DOM.get(i.id+"_path_row");if(j){tinymce.DOM.add(j.parentNode,"div",{style:"float: right"},i.getLang("wordcount.words","Words: ")+'0')}}else{tinymce.DOM.add(k,"span",{},'0')}});c.onInit.add(function(h){h.selection.onSetContent.add(function(){e._count(h)});e._count(h)});c.onSetContent.add(function(h){e._count(h)});function b(h){return h!==f&&(h===g.ENTER||f===g.SPACEBAR||a(f))}function a(h){return h===g.DELETE||h===g.BACKSPACE}c.onKeyUp.add(function(h,i){if(b(i.keyCode)||e.update_on_delete&&a(i.keyCode)){e._count(h)}f=i.keyCode})},_getCount:function(c){var a=0;var b=c.getContent({format:"raw"});if(b){b=b.replace(/\.\.\./g," ");b=b.replace(/<.[^<>]*?>/g," ").replace(/ | /gi," ");b=b.replace(/(\w+)(&.+?;)+(\w+)/,"$1$3").replace(/&.+?;/g," ");b=b.replace(this.cleanre,"");var d=b.match(this.countre);if(d){a=d.length}}return a},_count:function(a){var b=this;if(b.block){return}b.block=1;setTimeout(function(){if(!a.destroyed){var c=b._getCount(a);tinymce.DOM.setHTML(b.id,c.toString());setTimeout(function(){b.block=0},b.update_rate)}},1)},getInfo:function(){return{longname:"Word Count plugin",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/wordcount",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("wordcount",tinymce.plugins.WordCount)})();assets/lib/wck-api/assets/js/tiny_mce/plugins/fullscreen/editor_plugin_src.js000066600000012527152141651120023601 0ustar00/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { var DOM = tinymce.DOM; tinymce.create('tinymce.plugins.FullScreenPlugin', { init : function(ed, url) { var t = this, s = {}, vp, posCss; t.editor = ed; // Register commands ed.addCommand('mceFullScreen', function() { var win, de = DOM.doc.documentElement; if (ed.getParam('fullscreen_is_enabled')) { if (ed.getParam('fullscreen_new_window')) closeFullscreen(); // Call to close in new window else { DOM.win.setTimeout(function() { tinymce.dom.Event.remove(DOM.win, 'resize', t.resizeFunc); tinyMCE.get(ed.getParam('fullscreen_editor_id')).setContent(ed.getContent()); tinyMCE.remove(ed); DOM.remove('mce_fullscreen_container'); de.style.overflow = ed.getParam('fullscreen_html_overflow'); DOM.setStyle(DOM.doc.body, 'overflow', ed.getParam('fullscreen_overflow')); DOM.win.scrollTo(ed.getParam('fullscreen_scrollx'), ed.getParam('fullscreen_scrolly')); tinyMCE.settings = tinyMCE.oldSettings; // Restore old settings }, 10); } return; } if (ed.getParam('fullscreen_new_window')) { win = DOM.win.open(url + "/fullscreen.htm", "mceFullScreenPopup", "fullscreen=yes,menubar=no,toolbar=no,scrollbars=no,resizable=yes,left=0,top=0,width=" + screen.availWidth + ",height=" + screen.availHeight); try { win.resizeTo(screen.availWidth, screen.availHeight); } catch (e) { // Ignore } } else { tinyMCE.oldSettings = tinyMCE.settings; // Store old settings s.fullscreen_overflow = DOM.getStyle(DOM.doc.body, 'overflow', 1) || 'auto'; s.fullscreen_html_overflow = DOM.getStyle(de, 'overflow', 1); vp = DOM.getViewPort(); s.fullscreen_scrollx = vp.x; s.fullscreen_scrolly = vp.y; // Fixes an Opera bug where the scrollbars doesn't reappear if (tinymce.isOpera && s.fullscreen_overflow == 'visible') s.fullscreen_overflow = 'auto'; // Fixes an IE bug where horizontal scrollbars would appear if (tinymce.isIE && s.fullscreen_overflow == 'scroll') s.fullscreen_overflow = 'auto'; // Fixes an IE bug where the scrollbars doesn't reappear if (tinymce.isIE && (s.fullscreen_html_overflow == 'visible' || s.fullscreen_html_overflow == 'scroll')) s.fullscreen_html_overflow = 'auto'; if (s.fullscreen_overflow == '0px') s.fullscreen_overflow = ''; DOM.setStyle(DOM.doc.body, 'overflow', 'hidden'); de.style.overflow = 'hidden'; //Fix for IE6/7 vp = DOM.getViewPort(); DOM.win.scrollTo(0, 0); if (tinymce.isIE) vp.h -= 1; // Use fixed position if it exists if (tinymce.isIE6 || document.compatMode == 'BackCompat') posCss = 'absolute;top:' + vp.y; else posCss = 'fixed;top:0'; n = DOM.add(DOM.doc.body, 'div', { id : 'mce_fullscreen_container', style : 'position:' + posCss + ';left:0;width:' + vp.w + 'px;height:' + vp.h + 'px;z-index:200000;'}); DOM.add(n, 'div', {id : 'mce_fullscreen'}); tinymce.each(ed.settings, function(v, n) { s[n] = v; }); s.id = 'mce_fullscreen'; s.width = n.clientWidth; s.height = n.clientHeight - 15; s.fullscreen_is_enabled = true; s.fullscreen_editor_id = ed.id; s.theme_advanced_resizing = false; s.save_onsavecallback = function() { ed.setContent(tinyMCE.get(s.id).getContent()); ed.execCommand('mceSave'); }; tinymce.each(ed.getParam('fullscreen_settings'), function(v, k) { s[k] = v; }); if (s.theme_advanced_toolbar_location === 'external') s.theme_advanced_toolbar_location = 'top'; t.fullscreenEditor = new tinymce.Editor('mce_fullscreen', s); t.fullscreenEditor.onInit.add(function() { t.fullscreenEditor.setContent(ed.getContent()); t.fullscreenEditor.focus(); }); t.fullscreenEditor.render(); t.fullscreenElement = new tinymce.dom.Element('mce_fullscreen_container'); t.fullscreenElement.update(); //document.body.overflow = 'hidden'; t.resizeFunc = tinymce.dom.Event.add(DOM.win, 'resize', function() { var vp = tinymce.DOM.getViewPort(), fed = t.fullscreenEditor, outerSize, innerSize; // Get outer/inner size to get a delta size that can be used to calc the new iframe size outerSize = fed.dom.getSize(fed.getContainer().firstChild); innerSize = fed.dom.getSize(fed.getContainer().getElementsByTagName('iframe')[0]); fed.theme.resizeTo(vp.w - outerSize.w + innerSize.w, vp.h - outerSize.h + innerSize.h); }); } }); // Register buttons ed.addButton('fullscreen', {title : 'fullscreen.desc', cmd : 'mceFullScreen'}); ed.onNodeChange.add(function(ed, cm) { cm.setActive('fullscreen', ed.getParam('fullscreen_is_enabled')); }); }, getInfo : function() { return { longname : 'Fullscreen', author : 'Moxiecode Systems AB', authorurl : 'http://tinymce.moxiecode.com', infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/fullscreen', version : tinymce.majorVersion + "." + tinymce.minorVersion }; } }); // Register plugin tinymce.PluginManager.add('fullscreen', tinymce.plugins.FullScreenPlugin); })();assets/lib/wck-api/assets/js/tiny_mce/plugins/fullscreen/fullscreen.htm000066600000006276152141651120022410 0ustar00
        assets/lib/wck-api/assets/js/tiny_mce/plugins/fullscreen/editor_plugin.js000066600000007014152141651120022725 0ustar00(function(){var a=tinymce.DOM;tinymce.create("tinymce.plugins.FullScreenPlugin",{init:function(d,e){var f=this,g={},c,b;f.editor=d;d.addCommand("mceFullScreen",function(){var i,j=a.doc.documentElement;if(d.getParam("fullscreen_is_enabled")){if(d.getParam("fullscreen_new_window")){closeFullscreen()}else{a.win.setTimeout(function(){tinymce.dom.Event.remove(a.win,"resize",f.resizeFunc);tinyMCE.get(d.getParam("fullscreen_editor_id")).setContent(d.getContent());tinyMCE.remove(d);a.remove("mce_fullscreen_container");j.style.overflow=d.getParam("fullscreen_html_overflow");a.setStyle(a.doc.body,"overflow",d.getParam("fullscreen_overflow"));a.win.scrollTo(d.getParam("fullscreen_scrollx"),d.getParam("fullscreen_scrolly"));tinyMCE.settings=tinyMCE.oldSettings},10)}return}if(d.getParam("fullscreen_new_window")){i=a.win.open(e+"/fullscreen.htm","mceFullScreenPopup","fullscreen=yes,menubar=no,toolbar=no,scrollbars=no,resizable=yes,left=0,top=0,width="+screen.availWidth+",height="+screen.availHeight);try{i.resizeTo(screen.availWidth,screen.availHeight)}catch(h){}}else{tinyMCE.oldSettings=tinyMCE.settings;g.fullscreen_overflow=a.getStyle(a.doc.body,"overflow",1)||"auto";g.fullscreen_html_overflow=a.getStyle(j,"overflow",1);c=a.getViewPort();g.fullscreen_scrollx=c.x;g.fullscreen_scrolly=c.y;if(tinymce.isOpera&&g.fullscreen_overflow=="visible"){g.fullscreen_overflow="auto"}if(tinymce.isIE&&g.fullscreen_overflow=="scroll"){g.fullscreen_overflow="auto"}if(tinymce.isIE&&(g.fullscreen_html_overflow=="visible"||g.fullscreen_html_overflow=="scroll")){g.fullscreen_html_overflow="auto"}if(g.fullscreen_overflow=="0px"){g.fullscreen_overflow=""}a.setStyle(a.doc.body,"overflow","hidden");j.style.overflow="hidden";c=a.getViewPort();a.win.scrollTo(0,0);if(tinymce.isIE){c.h-=1}if(tinymce.isIE6||document.compatMode=="BackCompat"){b="absolute;top:"+c.y}else{b="fixed;top:0"}n=a.add(a.doc.body,"div",{id:"mce_fullscreen_container",style:"position:"+b+";left:0;width:"+c.w+"px;height:"+c.h+"px;z-index:200000;"});a.add(n,"div",{id:"mce_fullscreen"});tinymce.each(d.settings,function(k,l){g[l]=k});g.id="mce_fullscreen";g.width=n.clientWidth;g.height=n.clientHeight-15;g.fullscreen_is_enabled=true;g.fullscreen_editor_id=d.id;g.theme_advanced_resizing=false;g.save_onsavecallback=function(){d.setContent(tinyMCE.get(g.id).getContent());d.execCommand("mceSave")};tinymce.each(d.getParam("fullscreen_settings"),function(m,l){g[l]=m});if(g.theme_advanced_toolbar_location==="external"){g.theme_advanced_toolbar_location="top"}f.fullscreenEditor=new tinymce.Editor("mce_fullscreen",g);f.fullscreenEditor.onInit.add(function(){f.fullscreenEditor.setContent(d.getContent());f.fullscreenEditor.focus()});f.fullscreenEditor.render();f.fullscreenElement=new tinymce.dom.Element("mce_fullscreen_container");f.fullscreenElement.update();f.resizeFunc=tinymce.dom.Event.add(a.win,"resize",function(){var o=tinymce.DOM.getViewPort(),l=f.fullscreenEditor,k,m;k=l.dom.getSize(l.getContainer().firstChild);m=l.dom.getSize(l.getContainer().getElementsByTagName("iframe")[0]);l.theme.resizeTo(o.w-k.w+m.w,o.h-k.h+m.h)})}});d.addButton("fullscreen",{title:"fullscreen.desc",cmd:"mceFullScreen"});d.onNodeChange.add(function(i,h){h.setActive("fullscreen",i.getParam("fullscreen_is_enabled"))})},getInfo:function(){return{longname:"Fullscreen",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/fullscreen",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("fullscreen",tinymce.plugins.FullScreenPlugin)})();assets/lib/wck-api/assets/js/tiny_mce/plugins/paste/editor_plugin.js000066600000032214152141651130021700 0ustar00(function(){var c=tinymce.each,a={paste_auto_cleanup_on_paste:true,paste_enable_default_filters:true,paste_block_drop:false,paste_retain_style_properties:"none",paste_strip_class_attributes:"mso",paste_remove_spans:false,paste_remove_styles:false,paste_remove_styles_if_webkit:true,paste_convert_middot_lists:true,paste_convert_headers_to_strong:false,paste_dialog_width:"450",paste_dialog_height:"400",paste_text_use_dialog:false,paste_text_sticky:false,paste_text_sticky_default:false,paste_text_notifyalways:false,paste_text_linebreaktype:"combined",paste_text_replacements:[[/\u2026/g,"..."],[/[\x93\x94\u201c\u201d]/g,'"'],[/[\x60\x91\x92\u2018\u2019]/g,"'"]]};function b(d,e){return d.getParam(e,a[e])}tinymce.create("tinymce.plugins.PastePlugin",{init:function(d,e){var f=this;f.editor=d;f.url=e;f.onPreProcess=new tinymce.util.Dispatcher(f);f.onPostProcess=new tinymce.util.Dispatcher(f);f.onPreProcess.add(f._preProcess);f.onPostProcess.add(f._postProcess);f.onPreProcess.add(function(i,j){d.execCallback("paste_preprocess",i,j)});f.onPostProcess.add(function(i,j){d.execCallback("paste_postprocess",i,j)});d.onKeyDown.addToTop(function(i,j){if(((tinymce.isMac?j.metaKey:j.ctrlKey)&&j.keyCode==86)||(j.shiftKey&&j.keyCode==45)){return false}});d.pasteAsPlainText=b(d,"paste_text_sticky_default");function h(l,j){var k=d.dom,i;f.onPreProcess.dispatch(f,l);l.node=k.create("div",0,l.content);if(tinymce.isGecko){i=d.selection.getRng(true);if(i.startContainer==i.endContainer&&i.startContainer.nodeType==3){if(l.node.childNodes.length===1&&/^(p|h[1-6]|pre)$/i.test(l.node.firstChild.nodeName)&&l.content.indexOf("__MCE_ITEM__")===-1){k.remove(l.node.firstChild,true)}}}f.onPostProcess.dispatch(f,l);l.content=d.serializer.serialize(l.node,{getInner:1,forced_root_block:""});if((!j)&&(d.pasteAsPlainText)){f._insertPlainText(l.content);if(!b(d,"paste_text_sticky")){d.pasteAsPlainText=false;d.controlManager.setActive("pastetext",false)}}else{f._insert(l.content)}}d.addCommand("mceInsertClipboardContent",function(i,j){h(j,true)});if(!b(d,"paste_text_use_dialog")){d.addCommand("mcePasteText",function(j,i){var k=tinymce.util.Cookie;d.pasteAsPlainText=!d.pasteAsPlainText;d.controlManager.setActive("pastetext",d.pasteAsPlainText);if((d.pasteAsPlainText)&&(!k.get("tinymcePasteText"))){if(b(d,"paste_text_sticky")){d.windowManager.alert(d.translate("paste.plaintext_mode_sticky"))}else{d.windowManager.alert(d.translate("paste.plaintext_mode"))}if(!b(d,"paste_text_notifyalways")){k.set("tinymcePasteText","1",new Date(new Date().getFullYear()+1,12,31))}}})}d.addButton("pastetext",{title:"paste.paste_text_desc",cmd:"mcePasteText"});d.addButton("selectall",{title:"paste.selectall_desc",cmd:"selectall"});function g(s){var l,p,j,t,k=d.selection,o=d.dom,q=d.getBody(),i,r;if(s.clipboardData||o.doc.dataTransfer){r=(s.clipboardData||o.doc.dataTransfer).getData("Text");if(d.pasteAsPlainText){s.preventDefault();h({content:o.encode(r).replace(/\r?\n/g,"
        ")});return}}if(o.get("_mcePaste")){return}l=o.add(q,"div",{id:"_mcePaste","class":"mcePaste","data-mce-bogus":"1"},"\uFEFF\uFEFF");if(q!=d.getDoc().body){i=o.getPos(d.selection.getStart(),q).y}else{i=q.scrollTop+o.getViewPort(d.getWin()).y}o.setStyles(l,{position:"absolute",left:tinymce.isGecko?-40:0,top:i-25,width:1,height:1,overflow:"hidden"});if(tinymce.isIE){t=k.getRng();j=o.doc.body.createTextRange();j.moveToElementText(l);j.execCommand("Paste");o.remove(l);if(l.innerHTML==="\uFEFF\uFEFF"){d.execCommand("mcePasteWord");s.preventDefault();return}k.setRng(t);k.setContent("");setTimeout(function(){h({content:l.innerHTML})},0);return tinymce.dom.Event.cancel(s)}else{function m(n){n.preventDefault()}o.bind(d.getDoc(),"mousedown",m);o.bind(d.getDoc(),"keydown",m);p=d.selection.getRng();l=l.firstChild;j=d.getDoc().createRange();j.setStart(l,0);j.setEnd(l,2);k.setRng(j);window.setTimeout(function(){var u="",n;if(!o.select("div.mcePaste > div.mcePaste").length){n=o.select("div.mcePaste");c(n,function(w){var v=w.firstChild;if(v&&v.nodeName=="DIV"&&v.style.marginTop&&v.style.backgroundColor){o.remove(v,1)}c(o.select("span.Apple-style-span",w),function(x){o.remove(x,1)});c(o.select("br[data-mce-bogus]",w),function(x){o.remove(x)});if(w.parentNode.className!="mcePaste"){u+=w.innerHTML}})}else{u="

        "+o.encode(r).replace(/\r?\n\r?\n/g,"

        ").replace(/\r?\n/g,"
        ")+"

        "}c(o.select("div.mcePaste"),function(v){o.remove(v)});if(p){k.setRng(p)}h({content:u});o.unbind(d.getDoc(),"mousedown",m);o.unbind(d.getDoc(),"keydown",m)},0)}}if(b(d,"paste_auto_cleanup_on_paste")){if(tinymce.isOpera||/Firefox\/2/.test(navigator.userAgent)){d.onKeyDown.addToTop(function(i,j){if(((tinymce.isMac?j.metaKey:j.ctrlKey)&&j.keyCode==86)||(j.shiftKey&&j.keyCode==45)){g(j)}})}else{d.onPaste.addToTop(function(i,j){return g(j)})}}d.onInit.add(function(){d.controlManager.setActive("pastetext",d.pasteAsPlainText);if(b(d,"paste_block_drop")){d.dom.bind(d.getBody(),["dragend","dragover","draggesture","dragdrop","drop","drag"],function(i){i.preventDefault();i.stopPropagation();return false})}});f._legacySupport()},getInfo:function(){return{longname:"Paste text/word",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/paste",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_preProcess:function(g,e){var k=this.editor,j=e.content,p=tinymce.grep,n=tinymce.explode,f=tinymce.trim,l,i;function d(h){c(h,function(o){if(o.constructor==RegExp){j=j.replace(o,"")}else{j=j.replace(o[0],o[1])}})}if(k.settings.paste_enable_default_filters==false){return}if(tinymce.isIE&&document.documentMode>=9&&/<(h[1-6r]|p|div|address|pre|form|table|tbody|thead|tfoot|th|tr|td|li|ol|ul|caption|blockquote|center|dl|dt|dd|dir|fieldset)/.test(e.content)){d([[/(?:
         [\s\r\n]+|
        )*(<\/?(h[1-6r]|p|div|address|pre|form|table|tbody|thead|tfoot|th|tr|td|li|ol|ul|caption|blockquote|center|dl|dt|dd|dir|fieldset)[^>]*>)(?:
         [\s\r\n]+|
        )*/g,"$1"]]);d([[/

        /g,"

        "],[/
        /g," "],[/

        /g,"
        "]])}if(/class="?Mso|style="[^"]*\bmso-|w:WordDocument/i.test(j)||e.wordContent){e.wordContent=true;d([/^\s*( )+/gi,/( |]*>)+\s*$/gi]);if(b(k,"paste_convert_headers_to_strong")){j=j.replace(/

        ]*class="?MsoHeading"?[^>]*>(.*?)<\/p>/gi,"

        $1

        ")}if(b(k,"paste_convert_middot_lists")){d([[//gi,"$&__MCE_ITEM__"],[/(]+(?:mso-list:|:\s*symbol)[^>]+>)/gi,"$1__MCE_ITEM__"],[/(]+(?:MsoListParagraph)[^>]+>)/gi,"$1__MCE_ITEM__"]])}d([//gi,/<(!|script[^>]*>.*?<\/script(?=[>\s])|\/?(\?xml(:\w+)?|img|meta|link|style|\w:\w+)(?=[\s\/>]))[^>]*>/gi,[/<(\/?)s>/gi,"<$1strike>"],[/ /gi,"\u00a0"]]);do{l=j.length;j=j.replace(/(<[a-z][^>]*\s)(?:id|name|language|type|on\w+|\w+:\w+)=(?:"[^"]*"|\w+)\s?/gi,"$1")}while(l!=j.length);if(b(k,"paste_retain_style_properties").replace(/^none$/i,"").length==0){j=j.replace(/<\/?span[^>]*>/gi,"")}else{d([[/([\s\u00a0]*)<\/span>/gi,function(o,h){return(h.length>0)?h.replace(/./," ").slice(Math.floor(h.length/2)).split("").join("\u00a0"):""}],[/(<[a-z][^>]*)\sstyle="([^"]*)"/gi,function(t,h,r){var u=[],o=0,q=n(f(r).replace(/"/gi,"'"),";");c(q,function(s){var w,y,z=n(s,":");function x(A){return A+((A!=="0")&&(/\d$/.test(A)))?"px":""}if(z.length==2){w=z[0].toLowerCase();y=z[1].toLowerCase();switch(w){case"mso-padding-alt":case"mso-padding-top-alt":case"mso-padding-right-alt":case"mso-padding-bottom-alt":case"mso-padding-left-alt":case"mso-margin-alt":case"mso-margin-top-alt":case"mso-margin-right-alt":case"mso-margin-bottom-alt":case"mso-margin-left-alt":case"mso-table-layout-alt":case"mso-height":case"mso-width":case"mso-vertical-align-alt":u[o++]=w.replace(/^mso-|-alt$/g,"")+":"+x(y);return;case"horiz-align":u[o++]="text-align:"+y;return;case"vert-align":u[o++]="vertical-align:"+y;return;case"font-color":case"mso-foreground":u[o++]="color:"+y;return;case"mso-background":case"mso-highlight":u[o++]="background:"+y;return;case"mso-default-height":u[o++]="min-height:"+x(y);return;case"mso-default-width":u[o++]="min-width:"+x(y);return;case"mso-padding-between-alt":u[o++]="border-collapse:separate;border-spacing:"+x(y);return;case"text-line-through":if((y=="single")||(y=="double")){u[o++]="text-decoration:line-through"}return;case"mso-zero-height":if(y=="yes"){u[o++]="display:none"}return}if(/^(mso|column|font-emph|lang|layout|line-break|list-image|nav|panose|punct|row|ruby|sep|size|src|tab-|table-border|text-(?!align|decor|indent|trans)|top-bar|version|vnd|word-break)/.test(w)){return}u[o++]=w+":"+z[1]}});if(o>0){return h+' style="'+u.join(";")+'"'}else{return h}}]])}}if(b(k,"paste_convert_headers_to_strong")){d([[/]*>/gi,"

        "],[/<\/h[1-6][^>]*>/gi,"

        "]])}d([[/Version:[\d.]+\nStartHTML:\d+\nEndHTML:\d+\nStartFragment:\d+\nEndFragment:\d+/gi,""]]);i=b(k,"paste_strip_class_attributes");if(i!=="none"){function m(q,o){if(i==="all"){return""}var h=p(n(o.replace(/^(["'])(.*)\1$/,"$2")," "),function(r){return(/^(?!mso)/i.test(r))});return h.length?' class="'+h.join(" ")+'"':""}j=j.replace(/ class="([^"]+)"/gi,m);j=j.replace(/ class=([\-\w]+)/gi,m)}if(b(k,"paste_remove_spans")){j=j.replace(/<\/?span[^>]*>/gi,"")}e.content=j},_postProcess:function(g,i){var f=this,e=f.editor,h=e.dom,d;if(e.settings.paste_enable_default_filters==false){return}if(i.wordContent){c(h.select("a",i.node),function(j){if(!j.href||j.href.indexOf("#_Toc")!=-1){h.remove(j,1)}});if(b(e,"paste_convert_middot_lists")){f._convertLists(g,i)}d=b(e,"paste_retain_style_properties");if((tinymce.is(d,"string"))&&(d!=="all")&&(d!=="*")){d=tinymce.explode(d.replace(/^none$/i,""));c(h.select("*",i.node),function(m){var n={},k=0,l,o,j;if(d){for(l=0;l0){h.setStyles(m,n)}else{if(m.nodeName=="SPAN"&&!m.className){h.remove(m,true)}}})}}if(b(e,"paste_remove_styles")||(b(e,"paste_remove_styles_if_webkit")&&tinymce.isWebKit)){c(h.select("*[style]",i.node),function(j){j.removeAttribute("style");j.removeAttribute("data-mce-style")})}else{if(tinymce.isWebKit){c(h.select("*",i.node),function(j){j.removeAttribute("data-mce-style")})}}},_convertLists:function(g,e){var i=g.editor.dom,h,l,d=-1,f,m=[],k,j;c(i.select("p",e.node),function(t){var q,u="",s,r,n,o;for(q=t.firstChild;q&&q.nodeType==3;q=q.nextSibling){u+=q.nodeValue}u=t.innerHTML.replace(/<\/?\w+[^>]*>/gi,"").replace(/ /g,"\u00a0");if(/^(__MCE_ITEM__)+[\u2022\u00b7\u00a7\u00d8o\u25CF]\s*\u00a0*/.test(u)){s="ul"}if(/^__MCE_ITEM__\s*\w+\.\s*\u00a0+/.test(u)){s="ol"}if(s){f=parseFloat(t.style.marginLeft||0);if(f>d){m.push(f)}if(!h||s!=k){h=i.create(s);i.insertAfter(h,t)}else{if(f>d){h=l.appendChild(i.create(s))}else{if(f]*>/gi,"");if(s=="ul"&&/^__MCE_ITEM__[\u2022\u00b7\u00a7\u00d8o\u25CF]/.test(p)){i.remove(v)}else{if(/^__MCE_ITEM__[\s\S]*\w+\.( |\u00a0)*\s*/.test(p)){i.remove(v)}}});r=t.innerHTML;if(s=="ul"){r=t.innerHTML.replace(/__MCE_ITEM__/g,"").replace(/^[\u2022\u00b7\u00a7\u00d8o\u25CF]\s*( |\u00a0)+\s*/,"")}else{r=t.innerHTML.replace(/__MCE_ITEM__/g,"").replace(/^\s*\w+\.( |\u00a0)+\s*/,"")}l=h.appendChild(i.create("li",0,r));i.remove(t);d=f;k=s}else{h=d=0}});j=e.node.innerHTML;if(j.indexOf("__MCE_ITEM__")!=-1){e.node.innerHTML=j.replace(/__MCE_ITEM__/g,"")}},_insert:function(f,d){var e=this.editor,g=e.selection.getRng();if(!e.selection.isCollapsed()&&g.startContainer!=g.endContainer){e.getDoc().execCommand("Delete",false,null)}e.execCommand("mceInsertContent",false,f,{skip_undo:d})},_insertPlainText:function(g){var d=this.editor,e=b(d,"paste_text_linebreaktype"),i=b(d,"paste_text_replacements"),f=tinymce.is;function h(j){c(j,function(k){if(k.constructor==RegExp){g=g.replace(k,"")}else{g=g.replace(k[0],k[1])}})}if((typeof(g)==="string")&&(g.length>0)){if(/<(?:p|br|h[1-6]|ul|ol|dl|table|t[rdh]|div|blockquote|fieldset|pre|address|center)[^>]*>/i.test(g)){h([/[\n\r]+/g])}else{h([/\r+/g])}h([[/<\/(?:p|h[1-6]|ul|ol|dl|table|div|blockquote|fieldset|pre|address|center)>/gi,"\n\n"],[/]*>|<\/tr>/gi,"\n"],[/<\/t[dh]>\s*]*>/gi,"\t"],/<[a-z!\/?][^>]*>/gi,[/ /gi," "],[/(?:(?!\n)\s)*(\n+)(?:(?!\n)\s)*/gi,"$1"],[/\n{3,}/g,"\n\n"]]);g=d.dom.decode(tinymce.html.Entities.encodeRaw(g));if(f(i,"array")){h(i)}else{if(f(i,"string")){h(new RegExp(i,"gi"))}}if(e=="none"){h([[/\n+/g," "]])}else{if(e=="br"){h([[/\n/g,"
        "]])}else{if(e=="p"){h([[/\n+/g,"

        "],[/^(.*<\/p>)(

        )$/,"

        $1"]])}else{h([[/\n\n/g,"

        "],[/^(.*<\/p>)(

        )$/,"

        $1"],[/\n/g,"
        "]])}}}d.execCommand("mceInsertContent",false,g)}},_legacySupport:function(){var e=this,d=e.editor;d.addCommand("mcePasteWord",function(){d.windowManager.open({file:e.url+"/pasteword.htm",width:parseInt(b(d,"paste_dialog_width")),height:parseInt(b(d,"paste_dialog_height")),inline:1})});if(b(d,"paste_text_use_dialog")){d.addCommand("mcePasteText",function(){d.windowManager.open({file:e.url+"/pastetext.htm",width:parseInt(b(d,"paste_dialog_width")),height:parseInt(b(d,"paste_dialog_height")),inline:1})})}d.addButton("pasteword",{title:"paste.paste_word_desc",cmd:"mcePasteWord"})}});tinymce.PluginManager.add("paste",tinymce.plugins.PastePlugin)})();assets/lib/wck-api/assets/js/tiny_mce/plugins/paste/pastetext.htm000066600000002237152141651130021233 0ustar00 {#paste.paste_text_desc}

        {#paste.paste_text_desc}

        {#paste_dlg.text_title}
        assets/lib/wck-api/assets/js/tiny_mce/plugins/paste/langs/en_dlg.js000066600000000342152141651130021365 0ustar00tinyMCE.addI18n('en.paste_dlg',{"word_title":"Use Ctrl+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep Linebreaks","text_title":"Use Ctrl+V on your keyboard to paste the text into the window."});assets/lib/wck-api/assets/js/tiny_mce/plugins/paste/js/pasteword.js000066600000003074152141651130021462 0ustar00tinyMCEPopup.requireLangPack(); var PasteWordDialog = { init : function() { var ed = tinyMCEPopup.editor, el = document.getElementById('iframecontainer'), ifr, doc, css, cssHTML = ''; // Create iframe el.innerHTML = ''; ifr = document.getElementById('iframe'); doc = ifr.contentWindow.document; // Force absolute CSS urls css = [ed.baseURI.toAbsolute("themes/" + ed.settings.theme + "/skins/" + ed.settings.skin + "/content.css")]; css = css.concat(tinymce.explode(ed.settings.content_css) || []); tinymce.each(css, function(u) { cssHTML += ''; }); // Write content into iframe doc.open(); doc.write('' + cssHTML + ''); doc.close(); doc.designMode = 'on'; this.resize(); window.setTimeout(function() { ifr.contentWindow.focus(); }, 10); }, insert : function() { var h = document.getElementById('iframe').contentWindow.document.body.innerHTML; tinyMCEPopup.editor.execCommand('mceInsertClipboardContent', false, {content : h, wordContent : true}); tinyMCEPopup.close(); }, resize : function() { var vp = tinyMCEPopup.dom.getViewPort(window), el; el = document.getElementById('iframe'); if (el) { el.style.width = (vp.w - 20) + 'px'; el.style.height = (vp.h - 90) + 'px'; } } }; tinyMCEPopup.onInit.add(PasteWordDialog.init, PasteWordDialog); assets/lib/wck-api/assets/js/tiny_mce/plugins/paste/js/pastetext.js000066600000001520152141651130021465 0ustar00tinyMCEPopup.requireLangPack(); var PasteTextDialog = { init : function() { this.resize(); }, insert : function() { var h = tinyMCEPopup.dom.encode(document.getElementById('content').value), lines; // Convert linebreaks into paragraphs if (document.getElementById('linebreaks').checked) { lines = h.split(/\r?\n/); if (lines.length > 1) { h = ''; tinymce.each(lines, function(row) { h += '

        ' + row + '

        '; }); } } tinyMCEPopup.editor.execCommand('mceInsertClipboardContent', false, {content : h}); tinyMCEPopup.close(); }, resize : function() { var vp = tinyMCEPopup.dom.getViewPort(window), el; el = document.getElementById('content'); el.style.width = (vp.w - 20) + 'px'; el.style.height = (vp.h - 90) + 'px'; } }; tinyMCEPopup.onInit.add(PasteTextDialog.init, PasteTextDialog); assets/lib/wck-api/assets/js/tiny_mce/plugins/paste/pasteword.htm000066600000001372152141651130021221 0ustar00 {#paste.paste_word_desc}
        {#paste.paste_word_desc}
        {#paste_dlg.word_title}
        assets/lib/wck-api/assets/js/tiny_mce/plugins/paste/editor_plugin_src.js000066600000072723152141651130022560 0ustar00/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { var each = tinymce.each, defs = { paste_auto_cleanup_on_paste : true, paste_enable_default_filters : true, paste_block_drop : false, paste_retain_style_properties : "none", paste_strip_class_attributes : "mso", paste_remove_spans : false, paste_remove_styles : false, paste_remove_styles_if_webkit : true, paste_convert_middot_lists : true, paste_convert_headers_to_strong : false, paste_dialog_width : "450", paste_dialog_height : "400", paste_text_use_dialog : false, paste_text_sticky : false, paste_text_sticky_default : false, paste_text_notifyalways : false, paste_text_linebreaktype : "combined", paste_text_replacements : [ [/\u2026/g, "..."], [/[\x93\x94\u201c\u201d]/g, '"'], [/[\x60\x91\x92\u2018\u2019]/g, "'"] ] }; function getParam(ed, name) { return ed.getParam(name, defs[name]); } tinymce.create('tinymce.plugins.PastePlugin', { init : function(ed, url) { var t = this; t.editor = ed; t.url = url; // Setup plugin events t.onPreProcess = new tinymce.util.Dispatcher(t); t.onPostProcess = new tinymce.util.Dispatcher(t); // Register default handlers t.onPreProcess.add(t._preProcess); t.onPostProcess.add(t._postProcess); // Register optional preprocess handler t.onPreProcess.add(function(pl, o) { ed.execCallback('paste_preprocess', pl, o); }); // Register optional postprocess t.onPostProcess.add(function(pl, o) { ed.execCallback('paste_postprocess', pl, o); }); ed.onKeyDown.addToTop(function(ed, e) { // Block ctrl+v from adding an undo level since the default logic in tinymce.Editor will add that if (((tinymce.isMac ? e.metaKey : e.ctrlKey) && e.keyCode == 86) || (e.shiftKey && e.keyCode == 45)) return false; // Stop other listeners }); // Initialize plain text flag ed.pasteAsPlainText = getParam(ed, 'paste_text_sticky_default'); // This function executes the process handlers and inserts the contents // force_rich overrides plain text mode set by user, important for pasting with execCommand function process(o, force_rich) { var dom = ed.dom, rng; // Execute pre process handlers t.onPreProcess.dispatch(t, o); // Create DOM structure o.node = dom.create('div', 0, o.content); // If pasting inside the same element and the contents is only one block // remove the block and keep the text since Firefox will copy parts of pre and h1-h6 as a pre element if (tinymce.isGecko) { rng = ed.selection.getRng(true); if (rng.startContainer == rng.endContainer && rng.startContainer.nodeType == 3) { // Is only one block node and it doesn't contain word stuff if (o.node.childNodes.length === 1 && /^(p|h[1-6]|pre)$/i.test(o.node.firstChild.nodeName) && o.content.indexOf('__MCE_ITEM__') === -1) dom.remove(o.node.firstChild, true); } } // Execute post process handlers t.onPostProcess.dispatch(t, o); // Serialize content o.content = ed.serializer.serialize(o.node, {getInner : 1, forced_root_block : ''}); // Plain text option active? if ((!force_rich) && (ed.pasteAsPlainText)) { t._insertPlainText(o.content); if (!getParam(ed, "paste_text_sticky")) { ed.pasteAsPlainText = false; ed.controlManager.setActive("pastetext", false); } } else { t._insert(o.content); } } // Add command for external usage ed.addCommand('mceInsertClipboardContent', function(u, o) { process(o, true); }); if (!getParam(ed, "paste_text_use_dialog")) { ed.addCommand('mcePasteText', function(u, v) { var cookie = tinymce.util.Cookie; ed.pasteAsPlainText = !ed.pasteAsPlainText; ed.controlManager.setActive('pastetext', ed.pasteAsPlainText); if ((ed.pasteAsPlainText) && (!cookie.get("tinymcePasteText"))) { if (getParam(ed, "paste_text_sticky")) { ed.windowManager.alert(ed.translate('paste.plaintext_mode_sticky')); } else { ed.windowManager.alert(ed.translate('paste.plaintext_mode')); } if (!getParam(ed, "paste_text_notifyalways")) { cookie.set("tinymcePasteText", "1", new Date(new Date().getFullYear() + 1, 12, 31)) } } }); } ed.addButton('pastetext', {title: 'paste.paste_text_desc', cmd: 'mcePasteText'}); ed.addButton('selectall', {title: 'paste.selectall_desc', cmd: 'selectall'}); // This function grabs the contents from the clipboard by adding a // hidden div and placing the caret inside it and after the browser paste // is done it grabs that contents and processes that function grabContent(e) { var n, or, rng, oldRng, sel = ed.selection, dom = ed.dom, body = ed.getBody(), posY, textContent; // Check if browser supports direct plaintext access if (e.clipboardData || dom.doc.dataTransfer) { textContent = (e.clipboardData || dom.doc.dataTransfer).getData('Text'); if (ed.pasteAsPlainText) { e.preventDefault(); process({content : dom.encode(textContent).replace(/\r?\n/g, '
        ')}); return; } } if (dom.get('_mcePaste')) return; // Create container to paste into n = dom.add(body, 'div', {id : '_mcePaste', 'class' : 'mcePaste', 'data-mce-bogus' : '1'}, '\uFEFF\uFEFF'); // If contentEditable mode we need to find out the position of the closest element if (body != ed.getDoc().body) posY = dom.getPos(ed.selection.getStart(), body).y; else posY = body.scrollTop + dom.getViewPort(ed.getWin()).y; // Styles needs to be applied after the element is added to the document since WebKit will otherwise remove all styles // If also needs to be in view on IE or the paste would fail dom.setStyles(n, { position : 'absolute', left : tinymce.isGecko ? -40 : 0, // Need to move it out of site on Gecko since it will othewise display a ghost resize rect for the div top : posY - 25, width : 1, height : 1, overflow : 'hidden' }); if (tinymce.isIE) { // Store away the old range oldRng = sel.getRng(); // Select the container rng = dom.doc.body.createTextRange(); rng.moveToElementText(n); rng.execCommand('Paste'); // Remove container dom.remove(n); // Check if the contents was changed, if it wasn't then clipboard extraction failed probably due // to IE security settings so we pass the junk though better than nothing right if (n.innerHTML === '\uFEFF\uFEFF') { ed.execCommand('mcePasteWord'); e.preventDefault(); return; } // Restore the old range and clear the contents before pasting sel.setRng(oldRng); sel.setContent(''); // For some odd reason we need to detach the the mceInsertContent call from the paste event // It's like IE has a reference to the parent element that you paste in and the selection gets messed up // when it tries to restore the selection setTimeout(function() { // Process contents process({content : n.innerHTML}); }, 0); // Block the real paste event return tinymce.dom.Event.cancel(e); } else { function block(e) { e.preventDefault(); }; // Block mousedown and click to prevent selection change dom.bind(ed.getDoc(), 'mousedown', block); dom.bind(ed.getDoc(), 'keydown', block); or = ed.selection.getRng(); // Move select contents inside DIV n = n.firstChild; rng = ed.getDoc().createRange(); rng.setStart(n, 0); rng.setEnd(n, 2); sel.setRng(rng); // Wait a while and grab the pasted contents window.setTimeout(function() { var h = '', nl; // Paste divs duplicated in paste divs seems to happen when you paste plain text so lets first look for that broken behavior in WebKit if (!dom.select('div.mcePaste > div.mcePaste').length) { nl = dom.select('div.mcePaste'); // WebKit will split the div into multiple ones so this will loop through then all and join them to get the whole HTML string each(nl, function(n) { var child = n.firstChild; // WebKit inserts a DIV container with lots of odd styles if (child && child.nodeName == 'DIV' && child.style.marginTop && child.style.backgroundColor) { dom.remove(child, 1); } // Remove apply style spans each(dom.select('span.Apple-style-span', n), function(n) { dom.remove(n, 1); }); // Remove bogus br elements each(dom.select('br[data-mce-bogus]', n), function(n) { dom.remove(n); }); // WebKit will make a copy of the DIV for each line of plain text pasted and insert them into the DIV if (n.parentNode.className != 'mcePaste') h += n.innerHTML; }); } else { // Found WebKit weirdness so force the content into paragraphs this seems to happen when you paste plain text from Nodepad etc // So this logic will replace double enter with paragraphs and single enter with br so it kind of looks the same h = '

        ' + dom.encode(textContent).replace(/\r?\n\r?\n/g, '

        ').replace(/\r?\n/g, '
        ') + '

        '; } // Remove the nodes each(dom.select('div.mcePaste'), function(n) { dom.remove(n); }); // Restore the old selection if (or) sel.setRng(or); process({content : h}); // Unblock events ones we got the contents dom.unbind(ed.getDoc(), 'mousedown', block); dom.unbind(ed.getDoc(), 'keydown', block); }, 0); } } // Check if we should use the new auto process method if (getParam(ed, "paste_auto_cleanup_on_paste")) { // Is it's Opera or older FF use key handler if (tinymce.isOpera || /Firefox\/2/.test(navigator.userAgent)) { ed.onKeyDown.addToTop(function(ed, e) { if (((tinymce.isMac ? e.metaKey : e.ctrlKey) && e.keyCode == 86) || (e.shiftKey && e.keyCode == 45)) grabContent(e); }); } else { // Grab contents on paste event on Gecko and WebKit ed.onPaste.addToTop(function(ed, e) { return grabContent(e); }); } } ed.onInit.add(function() { ed.controlManager.setActive("pastetext", ed.pasteAsPlainText); // Block all drag/drop events if (getParam(ed, "paste_block_drop")) { ed.dom.bind(ed.getBody(), ['dragend', 'dragover', 'draggesture', 'dragdrop', 'drop', 'drag'], function(e) { e.preventDefault(); e.stopPropagation(); return false; }); } }); // Add legacy support t._legacySupport(); }, getInfo : function() { return { longname : 'Paste text/word', author : 'Moxiecode Systems AB', authorurl : 'http://tinymce.moxiecode.com', infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/paste', version : tinymce.majorVersion + "." + tinymce.minorVersion }; }, _preProcess : function(pl, o) { var ed = this.editor, h = o.content, grep = tinymce.grep, explode = tinymce.explode, trim = tinymce.trim, len, stripClass; //console.log('Before preprocess:' + o.content); function process(items) { each(items, function(v) { // Remove or replace if (v.constructor == RegExp) h = h.replace(v, ''); else h = h.replace(v[0], v[1]); }); } if (ed.settings.paste_enable_default_filters == false) { return; } // IE9 adds BRs before/after block elements when contents is pasted from word or for example another browser if (tinymce.isIE && document.documentMode >= 9 && /<(h[1-6r]|p|div|address|pre|form|table|tbody|thead|tfoot|th|tr|td|li|ol|ul|caption|blockquote|center|dl|dt|dd|dir|fieldset)/.test(o.content)) { // IE9 adds BRs before/after block elements when contents is pasted from word or for example another browser process([[/(?:
         [\s\r\n]+|
        )*(<\/?(h[1-6r]|p|div|address|pre|form|table|tbody|thead|tfoot|th|tr|td|li|ol|ul|caption|blockquote|center|dl|dt|dd|dir|fieldset)[^>]*>)(?:
         [\s\r\n]+|
        )*/g, '$1']]); // IE9 also adds an extra BR element for each soft-linefeed and it also adds a BR for each word wrap break process([ [/

        /g, '

        '], // Replace multiple BR elements with uppercase BR to keep them intact [/
        /g, ' '], // Replace single br elements with space since they are word wrap BR:s [/

        /g, '
        '] // Replace back the double brs but into a single BR ]); } // Detect Word content and process it more aggressive if (/class="?Mso|style="[^"]*\bmso-|w:WordDocument/i.test(h) || o.wordContent) { o.wordContent = true; // Mark the pasted contents as word specific content //console.log('Word contents detected.'); // Process away some basic content process([ /^\s*( )+/gi, //   entities at the start of contents /( |]*>)+\s*$/gi //   entities at the end of contents ]); if (getParam(ed, "paste_convert_headers_to_strong")) { h = h.replace(/

        ]*class="?MsoHeading"?[^>]*>(.*?)<\/p>/gi, "

        $1

        "); } if (getParam(ed, "paste_convert_middot_lists")) { process([ [//gi, '$&__MCE_ITEM__'], // Convert supportLists to a list item marker [/(]+(?:mso-list:|:\s*symbol)[^>]+>)/gi, '$1__MCE_ITEM__'], // Convert mso-list and symbol spans to item markers [/(]+(?:MsoListParagraph)[^>]+>)/gi, '$1__MCE_ITEM__'] // Convert mso-list and symbol paragraphs to item markers (FF) ]); } process([ // Word comments like conditional comments etc //gi, // Remove comments, scripts (e.g., msoShowComment), XML tag, VML content, MS Office namespaced tags, and a few other tags /<(!|script[^>]*>.*?<\/script(?=[>\s])|\/?(\?xml(:\w+)?|img|meta|link|style|\w:\w+)(?=[\s\/>]))[^>]*>/gi, // Convert into for line-though [/<(\/?)s>/gi, "<$1strike>"], // Replace nsbp entites to char since it's easier to handle [/ /gi, "\u00a0"] ]); // Remove bad attributes, with or without quotes, ensuring that attribute text is really inside a tag. // If JavaScript had a RegExp look-behind, we could have integrated this with the last process() array and got rid of the loop. But alas, it does not, so we cannot. do { len = h.length; h = h.replace(/(<[a-z][^>]*\s)(?:id|name|language|type|on\w+|\w+:\w+)=(?:"[^"]*"|\w+)\s?/gi, "$1"); } while (len != h.length); // Remove all spans if no styles is to be retained if (getParam(ed, "paste_retain_style_properties").replace(/^none$/i, "").length == 0) { h = h.replace(/<\/?span[^>]*>/gi, ""); } else { // We're keeping styles, so at least clean them up. // CSS Reference: http://msdn.microsoft.com/en-us/library/aa155477.aspx process([ // Convert ___ to string of alternating breaking/non-breaking spaces of same length [/([\s\u00a0]*)<\/span>/gi, function(str, spaces) { return (spaces.length > 0)? spaces.replace(/./, " ").slice(Math.floor(spaces.length/2)).split("").join("\u00a0") : ""; } ], // Examine all styles: delete junk, transform some, and keep the rest [/(<[a-z][^>]*)\sstyle="([^"]*)"/gi, function(str, tag, style) { var n = [], i = 0, s = explode(trim(style).replace(/"/gi, "'"), ";"); // Examine each style definition within the tag's style attribute each(s, function(v) { var name, value, parts = explode(v, ":"); function ensureUnits(v) { return v + ((v !== "0") && (/\d$/.test(v)))? "px" : ""; } if (parts.length == 2) { name = parts[0].toLowerCase(); value = parts[1].toLowerCase(); // Translate certain MS Office styles into their CSS equivalents switch (name) { case "mso-padding-alt": case "mso-padding-top-alt": case "mso-padding-right-alt": case "mso-padding-bottom-alt": case "mso-padding-left-alt": case "mso-margin-alt": case "mso-margin-top-alt": case "mso-margin-right-alt": case "mso-margin-bottom-alt": case "mso-margin-left-alt": case "mso-table-layout-alt": case "mso-height": case "mso-width": case "mso-vertical-align-alt": n[i++] = name.replace(/^mso-|-alt$/g, "") + ":" + ensureUnits(value); return; case "horiz-align": n[i++] = "text-align:" + value; return; case "vert-align": n[i++] = "vertical-align:" + value; return; case "font-color": case "mso-foreground": n[i++] = "color:" + value; return; case "mso-background": case "mso-highlight": n[i++] = "background:" + value; return; case "mso-default-height": n[i++] = "min-height:" + ensureUnits(value); return; case "mso-default-width": n[i++] = "min-width:" + ensureUnits(value); return; case "mso-padding-between-alt": n[i++] = "border-collapse:separate;border-spacing:" + ensureUnits(value); return; case "text-line-through": if ((value == "single") || (value == "double")) { n[i++] = "text-decoration:line-through"; } return; case "mso-zero-height": if (value == "yes") { n[i++] = "display:none"; } return; } // Eliminate all MS Office style definitions that have no CSS equivalent by examining the first characters in the name if (/^(mso|column|font-emph|lang|layout|line-break|list-image|nav|panose|punct|row|ruby|sep|size|src|tab-|table-border|text-(?!align|decor|indent|trans)|top-bar|version|vnd|word-break)/.test(name)) { return; } // If it reached this point, it must be a valid CSS style n[i++] = name + ":" + parts[1]; // Lower-case name, but keep value case } }); // If style attribute contained any valid styles the re-write it; otherwise delete style attribute. if (i > 0) { return tag + ' style="' + n.join(';') + '"'; } else { return tag; } } ] ]); } } // Replace headers with if (getParam(ed, "paste_convert_headers_to_strong")) { process([ [/]*>/gi, "

        "], [/<\/h[1-6][^>]*>/gi, "

        "] ]); } process([ // Copy paste from Java like Open Office will produce this junk on FF [/Version:[\d.]+\nStartHTML:\d+\nEndHTML:\d+\nStartFragment:\d+\nEndFragment:\d+/gi, ''] ]); // Class attribute options are: leave all as-is ("none"), remove all ("all"), or remove only those starting with mso ("mso"). // Note:- paste_strip_class_attributes: "none", verify_css_classes: true is also a good variation. stripClass = getParam(ed, "paste_strip_class_attributes"); if (stripClass !== "none") { function removeClasses(match, g1) { if (stripClass === "all") return ''; var cls = grep(explode(g1.replace(/^(["'])(.*)\1$/, "$2"), " "), function(v) { return (/^(?!mso)/i.test(v)); } ); return cls.length ? ' class="' + cls.join(" ") + '"' : ''; }; h = h.replace(/ class="([^"]+)"/gi, removeClasses); h = h.replace(/ class=([\-\w]+)/gi, removeClasses); } // Remove spans option if (getParam(ed, "paste_remove_spans")) { h = h.replace(/<\/?span[^>]*>/gi, ""); } //console.log('After preprocess:' + h); o.content = h; }, /** * Various post process items. */ _postProcess : function(pl, o) { var t = this, ed = t.editor, dom = ed.dom, styleProps; if (ed.settings.paste_enable_default_filters == false) { return; } if (o.wordContent) { // Remove named anchors or TOC links each(dom.select('a', o.node), function(a) { if (!a.href || a.href.indexOf('#_Toc') != -1) dom.remove(a, 1); }); if (getParam(ed, "paste_convert_middot_lists")) { t._convertLists(pl, o); } // Process styles styleProps = getParam(ed, "paste_retain_style_properties"); // retained properties // Process only if a string was specified and not equal to "all" or "*" if ((tinymce.is(styleProps, "string")) && (styleProps !== "all") && (styleProps !== "*")) { styleProps = tinymce.explode(styleProps.replace(/^none$/i, "")); // Retains some style properties each(dom.select('*', o.node), function(el) { var newStyle = {}, npc = 0, i, sp, sv; // Store a subset of the existing styles if (styleProps) { for (i = 0; i < styleProps.length; i++) { sp = styleProps[i]; sv = dom.getStyle(el, sp); if (sv) { newStyle[sp] = sv; npc++; } } } // Remove all of the existing styles dom.setAttrib(el, 'style', ''); if (styleProps && npc > 0) dom.setStyles(el, newStyle); // Add back the stored subset of styles else // Remove empty span tags that do not have class attributes if (el.nodeName == 'SPAN' && !el.className) dom.remove(el, true); }); } } // Remove all style information or only specifically on WebKit to avoid the style bug on that browser if (getParam(ed, "paste_remove_styles") || (getParam(ed, "paste_remove_styles_if_webkit") && tinymce.isWebKit)) { each(dom.select('*[style]', o.node), function(el) { el.removeAttribute('style'); el.removeAttribute('data-mce-style'); }); } else { if (tinymce.isWebKit) { // We need to compress the styles on WebKit since if you paste it will become // Removing the mce_style that contains the real value will force the Serializer engine to compress the styles each(dom.select('*', o.node), function(el) { el.removeAttribute('data-mce-style'); }); } } }, /** * Converts the most common bullet and number formats in Office into a real semantic UL/LI list. */ _convertLists : function(pl, o) { var dom = pl.editor.dom, listElm, li, lastMargin = -1, margin, levels = [], lastType, html; // Convert middot lists into real semantic lists each(dom.select('p', o.node), function(p) { var sib, val = '', type, html, idx, parents; // Get text node value at beginning of paragraph for (sib = p.firstChild; sib && sib.nodeType == 3; sib = sib.nextSibling) val += sib.nodeValue; val = p.innerHTML.replace(/<\/?\w+[^>]*>/gi, '').replace(/ /g, '\u00a0'); // Detect unordered lists look for bullets if (/^(__MCE_ITEM__)+[\u2022\u00b7\u00a7\u00d8o\u25CF]\s*\u00a0*/.test(val)) type = 'ul'; // Detect ordered lists 1., a. or ixv. if (/^__MCE_ITEM__\s*\w+\.\s*\u00a0+/.test(val)) type = 'ol'; // Check if node value matches the list pattern: o   if (type) { margin = parseFloat(p.style.marginLeft || 0); if (margin > lastMargin) levels.push(margin); if (!listElm || type != lastType) { listElm = dom.create(type); dom.insertAfter(listElm, p); } else { // Nested list element if (margin > lastMargin) { listElm = li.appendChild(dom.create(type)); } else if (margin < lastMargin) { // Find parent level based on margin value idx = tinymce.inArray(levels, margin); parents = dom.getParents(listElm.parentNode, type); listElm = parents[parents.length - 1 - idx] || listElm; } } // Remove middot or number spans if they exists each(dom.select('span', p), function(span) { var html = span.innerHTML.replace(/<\/?\w+[^>]*>/gi, ''); // Remove span with the middot or the number if (type == 'ul' && /^__MCE_ITEM__[\u2022\u00b7\u00a7\u00d8o\u25CF]/.test(html)) dom.remove(span); else if (/^__MCE_ITEM__[\s\S]*\w+\.( |\u00a0)*\s*/.test(html)) dom.remove(span); }); html = p.innerHTML; // Remove middot/list items if (type == 'ul') html = p.innerHTML.replace(/__MCE_ITEM__/g, '').replace(/^[\u2022\u00b7\u00a7\u00d8o\u25CF]\s*( |\u00a0)+\s*/, ''); else html = p.innerHTML.replace(/__MCE_ITEM__/g, '').replace(/^\s*\w+\.( |\u00a0)+\s*/, ''); // Create li and add paragraph data into the new li li = listElm.appendChild(dom.create('li', 0, html)); dom.remove(p); lastMargin = margin; lastType = type; } else listElm = lastMargin = 0; // End list element }); // Remove any left over makers html = o.node.innerHTML; if (html.indexOf('__MCE_ITEM__') != -1) o.node.innerHTML = html.replace(/__MCE_ITEM__/g, ''); }, /** * Inserts the specified contents at the caret position. */ _insert : function(h, skip_undo) { var ed = this.editor, r = ed.selection.getRng(); // First delete the contents seems to work better on WebKit when the selection spans multiple list items or multiple table cells. if (!ed.selection.isCollapsed() && r.startContainer != r.endContainer) ed.getDoc().execCommand('Delete', false, null); ed.execCommand('mceInsertContent', false, h, {skip_undo : skip_undo}); }, /** * Instead of the old plain text method which tried to re-create a paste operation, the * new approach adds a plain text mode toggle switch that changes the behavior of paste. * This function is passed the same input that the regular paste plugin produces. * It performs additional scrubbing and produces (and inserts) the plain text. * This approach leverages all of the great existing functionality in the paste * plugin, and requires minimal changes to add the new functionality. * Speednet - June 2009 */ _insertPlainText : function(content) { var ed = this.editor, linebr = getParam(ed, "paste_text_linebreaktype"), rl = getParam(ed, "paste_text_replacements"), is = tinymce.is; function process(items) { each(items, function(v) { if (v.constructor == RegExp) content = content.replace(v, ""); else content = content.replace(v[0], v[1]); }); }; if ((typeof(content) === "string") && (content.length > 0)) { // If HTML content with line-breaking tags, then remove all cr/lf chars because only tags will break a line if (/<(?:p|br|h[1-6]|ul|ol|dl|table|t[rdh]|div|blockquote|fieldset|pre|address|center)[^>]*>/i.test(content)) { process([ /[\n\r]+/g ]); } else { // Otherwise just get rid of carriage returns (only need linefeeds) process([ /\r+/g ]); } process([ [/<\/(?:p|h[1-6]|ul|ol|dl|table|div|blockquote|fieldset|pre|address|center)>/gi, "\n\n"], // Block tags get a blank line after them [/]*>|<\/tr>/gi, "\n"], // Single linebreak for
        tags and table rows [/<\/t[dh]>\s*]*>/gi, "\t"], // Table cells get tabs betweem them /<[a-z!\/?][^>]*>/gi, // Delete all remaining tags [/ /gi, " "], // Convert non-break spaces to regular spaces (remember, *plain text*) [/(?:(?!\n)\s)*(\n+)(?:(?!\n)\s)*/gi, "$1"],// Cool little RegExp deletes whitespace around linebreak chars. [/\n{3,}/g, "\n\n"] // Max. 2 consecutive linebreaks ]); content = ed.dom.decode(tinymce.html.Entities.encodeRaw(content)); // Perform default or custom replacements if (is(rl, "array")) { process(rl); } else if (is(rl, "string")) { process(new RegExp(rl, "gi")); } // Treat paragraphs as specified in the config if (linebr == "none") { // Convert all line breaks to space process([ [/\n+/g, " "] ]); } else if (linebr == "br") { // Convert all line breaks to
        process([ [/\n/g, "
        "] ]); } else if (linebr == "p") { // Convert all line breaks to

        ...

        process([ [/\n+/g, "

        "], [/^(.*<\/p>)(

        )$/, '

        $1'] ]); } else { // defaults to "combined" // Convert single line breaks to
        and double line breaks to

        ...

        process([ [/\n\n/g, "

        "], [/^(.*<\/p>)(

        )$/, '

        $1'], [/\n/g, "
        "] ]); } ed.execCommand('mceInsertContent', false, content); } }, /** * This method will open the old style paste dialogs. Some users might want the old behavior but still use the new cleanup engine. */ _legacySupport : function() { var t = this, ed = t.editor; // Register command(s) for backwards compatibility ed.addCommand("mcePasteWord", function() { ed.windowManager.open({ file: t.url + "/pasteword.htm", width: parseInt(getParam(ed, "paste_dialog_width")), height: parseInt(getParam(ed, "paste_dialog_height")), inline: 1 }); }); if (getParam(ed, "paste_text_use_dialog")) { ed.addCommand("mcePasteText", function() { ed.windowManager.open({ file : t.url + "/pastetext.htm", width: parseInt(getParam(ed, "paste_dialog_width")), height: parseInt(getParam(ed, "paste_dialog_height")), inline : 1 }); }); } // Register button for backwards compatibility ed.addButton("pasteword", {title : "paste.paste_word_desc", cmd : "mcePasteWord"}); } }); // Register plugin tinymce.PluginManager.add("paste", tinymce.plugins.PastePlugin); })(); assets/lib/wck-api/assets/js/tiny_mce/plugins/spellchecker/editor_plugin.js000066600000015334152141651130023234 0ustar00(function(){var a=tinymce.util.JSONRequest,c=tinymce.each,b=tinymce.DOM;tinymce.create("tinymce.plugins.SpellcheckerPlugin",{getInfo:function(){return{longname:"Spellchecker",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/spellchecker",version:tinymce.majorVersion+"."+tinymce.minorVersion}},init:function(e,f){var g=this,d;g.url=f;g.editor=e;g.rpcUrl=e.getParam("spellchecker_rpc_url","{backend}");if(g.rpcUrl=="{backend}"){if(tinymce.isIE){return}g.hasSupport=true;e.onContextMenu.addToTop(function(h,i){if(g.active){return false}})}e.addCommand("mceSpellCheck",function(){if(g.rpcUrl=="{backend}"){g.editor.getBody().spellcheck=g.active=!g.active;return}if(!g.active){e.setProgressState(1);g._sendRPC("checkWords",[g.selectedLang,g._getWords()],function(h){if(h.length>0){g.active=1;g._markWords(h);e.setProgressState(0);e.nodeChanged()}else{e.setProgressState(0);if(e.getParam("spellchecker_report_no_misspellings",true)){e.windowManager.alert("spellchecker.no_mpell")}}})}else{g._done()}});if(e.settings.content_css!==false){e.contentCSS.push(f+"/css/content.css")}e.onClick.add(g._showMenu,g);e.onContextMenu.add(g._showMenu,g);e.onBeforeGetContent.add(function(){if(g.active){g._removeWords()}});e.onNodeChange.add(function(i,h){h.setActive("spellchecker",g.active)});e.onSetContent.add(function(){g._done()});e.onBeforeGetContent.add(function(){g._done()});e.onBeforeExecCommand.add(function(h,i){if(i=="mceFullScreen"){g._done()}});g.languages={};c(e.getParam("spellchecker_languages","+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv","hash"),function(i,h){if(h.indexOf("+")===0){h=h.substring(1);g.selectedLang=i}g.languages[h]=i})},createControl:function(h,d){var f=this,g,e=f.editor;if(h=="spellchecker"){if(f.rpcUrl=="{backend}"){if(f.hasSupport){g=d.createButton(h,{title:"spellchecker.desc",cmd:"mceSpellCheck",scope:f})}return g}g=d.createSplitButton(h,{title:"spellchecker.desc",cmd:"mceSpellCheck",scope:f});g.onRenderMenu.add(function(j,i){i.add({title:"spellchecker.langs","class":"mceMenuItemTitle"}).setDisabled(1);c(f.languages,function(n,m){var p={icon:1},l;p.onclick=function(){if(n==f.selectedLang){return}l.setSelected(1);f.selectedItem.setSelected(0);f.selectedItem=l;f.selectedLang=n};p.title=m;l=i.add(p);l.setSelected(n==f.selectedLang);if(n==f.selectedLang){f.selectedItem=l}})});return g}},_walk:function(i,g){var h=this.editor.getDoc(),e;if(h.createTreeWalker){e=h.createTreeWalker(i,NodeFilter.SHOW_TEXT,null,false);while((i=e.nextNode())!=null){g.call(this,i)}}else{tinymce.walk(i,g,"childNodes")}},_getSeparators:function(){var e="",d,f=this.editor.getParam("spellchecker_word_separator_chars",'\\s!"#$%&()*+,-./:;<=>?@[]^_{|}\u201d\u201c');for(d=0;d$2");while((s=p.indexOf(""))!=-1){o=p.substring(0,s);if(o.length){r=j.createTextNode(g.decode(o));q.appendChild(r)}p=p.substring(s+10);s=p.indexOf("");o=p.substring(0,s);p=p.substring(s+11);q.appendChild(g.create("span",{"class":"mceItemHiddenSpellWord"},o))}if(p.length){r=j.createTextNode(g.decode(p));q.appendChild(r)}}else{q.innerHTML=p.replace(f,'$1$2')}g.replace(q,t)}});i.setRng(d)},_showMenu:function(h,j){var i=this,h=i.editor,d=i._menu,l,k=h.dom,g=k.getViewPort(h.getWin()),f=j.target;j=0;if(!d){d=h.controlManager.createDropMenu("spellcheckermenu",{"class":"mceNoIcons"});i._menu=d}if(k.hasClass(f,"mceItemHiddenSpellWord")){d.removeAll();d.add({title:"spellchecker.wait","class":"mceMenuItemTitle"}).setDisabled(1);i._sendRPC("getSuggestions",[i.selectedLang,k.decode(f.innerHTML)],function(m){var e;d.removeAll();if(m.length>0){d.add({title:"spellchecker.sug","class":"mceMenuItemTitle"}).setDisabled(1);c(m,function(n){d.add({title:n,onclick:function(){k.replace(h.getDoc().createTextNode(n),f);i._checkDone()}})});d.addSeparator()}else{d.add({title:"spellchecker.no_sug","class":"mceMenuItemTitle"}).setDisabled(1)}if(h.getParam("show_ignore_words",true)){e=i.editor.getParam("spellchecker_enable_ignore_rpc","");d.add({title:"spellchecker.ignore_word",onclick:function(){var n=f.innerHTML;k.remove(f,1);i._checkDone();if(e){h.setProgressState(1);i._sendRPC("ignoreWord",[i.selectedLang,n],function(o){h.setProgressState(0)})}}});d.add({title:"spellchecker.ignore_words",onclick:function(){var n=f.innerHTML;i._removeWords(k.decode(n));i._checkDone();if(e){h.setProgressState(1);i._sendRPC("ignoreWords",[i.selectedLang,n],function(o){h.setProgressState(0)})}}})}if(i.editor.getParam("spellchecker_enable_learn_rpc")){d.add({title:"spellchecker.learn_word",onclick:function(){var n=f.innerHTML;k.remove(f,1);i._checkDone();h.setProgressState(1);i._sendRPC("learnWord",[i.selectedLang,n],function(o){h.setProgressState(0)})}})}d.update()});l=b.getPos(h.getContentAreaContainer());d.settings.offset_x=l.x;d.settings.offset_y=l.y;h.selection.select(f);l=k.getPos(f);d.showMenu(l.x,l.y+f.offsetHeight-g.y);return tinymce.dom.Event.cancel(j)}else{d.hideMenu()}},_checkDone:function(){var e=this,d=e.editor,g=d.dom,f;c(g.select("span"),function(h){if(h&&g.hasClass(h,"mceItemHiddenSpellWord")){f=true;return false}});if(!f){e._done()}},_done:function(){var d=this,e=d.active;if(d.active){d.active=0;d._removeWords();if(d._menu){d._menu.hideMenu()}if(e){d.editor.nodeChanged()}}},_sendRPC:function(e,g,d){var f=this;a.sendRPC({url:f.rpcUrl,method:e,params:g,success:d,error:function(i,h){f.editor.setProgressState(0);f.editor.windowManager.alert(i.errstr||("Error response: "+h.responseText))}})}});tinymce.PluginManager.add("spellchecker",tinymce.plugins.SpellcheckerPlugin)})();assets/lib/wck-api/assets/js/tiny_mce/plugins/spellchecker/css/content.css000066600000000141152141651130022774 0ustar00.mceItemHiddenSpellWord {background:url(../img/wline.gif) repeat-x bottom left; cursor:default;} assets/lib/wck-api/assets/js/tiny_mce/plugins/spellchecker/editor_plugin_src.js000066600000026522152141651130024104 0ustar00/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { var JSONRequest = tinymce.util.JSONRequest, each = tinymce.each, DOM = tinymce.DOM; tinymce.create('tinymce.plugins.SpellcheckerPlugin', { getInfo : function() { return { longname : 'Spellchecker', author : 'Moxiecode Systems AB', authorurl : 'http://tinymce.moxiecode.com', infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/spellchecker', version : tinymce.majorVersion + "." + tinymce.minorVersion }; }, init : function(ed, url) { var t = this, cm; t.url = url; t.editor = ed; t.rpcUrl = ed.getParam("spellchecker_rpc_url", "{backend}"); if (t.rpcUrl == '{backend}') { // Sniff if the browser supports native spellchecking (Don't know of a better way) if (tinymce.isIE) return; t.hasSupport = true; // Disable the context menu when spellchecking is active ed.onContextMenu.addToTop(function(ed, e) { if (t.active) return false; }); } // Register commands ed.addCommand('mceSpellCheck', function() { if (t.rpcUrl == '{backend}') { // Enable/disable native spellchecker t.editor.getBody().spellcheck = t.active = !t.active; return; } if (!t.active) { ed.setProgressState(1); t._sendRPC('checkWords', [t.selectedLang, t._getWords()], function(r) { if (r.length > 0) { t.active = 1; t._markWords(r); ed.setProgressState(0); ed.nodeChanged(); } else { ed.setProgressState(0); if (ed.getParam('spellchecker_report_no_misspellings', true)) ed.windowManager.alert('spellchecker.no_mpell'); } }); } else t._done(); }); if (ed.settings.content_css !== false) ed.contentCSS.push(url + '/css/content.css'); ed.onClick.add(t._showMenu, t); ed.onContextMenu.add(t._showMenu, t); ed.onBeforeGetContent.add(function() { if (t.active) t._removeWords(); }); ed.onNodeChange.add(function(ed, cm) { cm.setActive('spellchecker', t.active); }); ed.onSetContent.add(function() { t._done(); }); ed.onBeforeGetContent.add(function() { t._done(); }); ed.onBeforeExecCommand.add(function(ed, cmd) { if (cmd == 'mceFullScreen') t._done(); }); // Find selected language t.languages = {}; each(ed.getParam('spellchecker_languages', '+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv', 'hash'), function(v, k) { if (k.indexOf('+') === 0) { k = k.substring(1); t.selectedLang = v; } t.languages[k] = v; }); }, createControl : function(n, cm) { var t = this, c, ed = t.editor; if (n == 'spellchecker') { // Use basic button if we use the native spellchecker if (t.rpcUrl == '{backend}') { // Create simple toggle button if we have native support if (t.hasSupport) c = cm.createButton(n, {title : 'spellchecker.desc', cmd : 'mceSpellCheck', scope : t}); return c; } c = cm.createSplitButton(n, {title : 'spellchecker.desc', cmd : 'mceSpellCheck', scope : t}); c.onRenderMenu.add(function(c, m) { m.add({title : 'spellchecker.langs', 'class' : 'mceMenuItemTitle'}).setDisabled(1); each(t.languages, function(v, k) { var o = {icon : 1}, mi; o.onclick = function() { if (v == t.selectedLang) { return; } mi.setSelected(1); t.selectedItem.setSelected(0); t.selectedItem = mi; t.selectedLang = v; }; o.title = k; mi = m.add(o); mi.setSelected(v == t.selectedLang); if (v == t.selectedLang) t.selectedItem = mi; }) }); return c; } }, // Internal functions _walk : function(n, f) { var d = this.editor.getDoc(), w; if (d.createTreeWalker) { w = d.createTreeWalker(n, NodeFilter.SHOW_TEXT, null, false); while ((n = w.nextNode()) != null) f.call(this, n); } else tinymce.walk(n, f, 'childNodes'); }, _getSeparators : function() { var re = '', i, str = this.editor.getParam('spellchecker_word_separator_chars', '\\s!"#$%&()*+,-./:;<=>?@[\]^_{|}\u201d\u201c'); // Build word separator regexp for (i=0; i elements content is broken after spellchecking. // Bug #1408: Preceding whitespace characters are removed // @TODO: I'm not sure that both are still issues on IE9. if (tinymce.isIE) { // Enclose mispelled words with temporal tag v = v.replace(rx, '$1$2'); // Loop over the content finding mispelled words while ((pos = v.indexOf('')) != -1) { // Add text node for the content before the word txt = v.substring(0, pos); if (txt.length) { node = doc.createTextNode(dom.decode(txt)); elem.appendChild(node); } v = v.substring(pos+10); pos = v.indexOf(''); txt = v.substring(0, pos); v = v.substring(pos+11); // Add span element for the word elem.appendChild(dom.create('span', {'class' : 'mceItemHiddenSpellWord'}, txt)); } // Add text node for the rest of the content if (v.length) { node = doc.createTextNode(dom.decode(v)); elem.appendChild(node); } } else { // Other browsers preserve whitespace characters on innerHTML usage elem.innerHTML = v.replace(rx, '$1$2'); } // Finally, replace the node with the container dom.replace(elem, n); } }); se.setRng(r); }, _showMenu : function(ed, e) { var t = this, ed = t.editor, m = t._menu, p1, dom = ed.dom, vp = dom.getViewPort(ed.getWin()), wordSpan = e.target; e = 0; // Fixes IE memory leak if (!m) { m = ed.controlManager.createDropMenu('spellcheckermenu', {'class' : 'mceNoIcons'}); t._menu = m; } if (dom.hasClass(wordSpan, 'mceItemHiddenSpellWord')) { m.removeAll(); m.add({title : 'spellchecker.wait', 'class' : 'mceMenuItemTitle'}).setDisabled(1); t._sendRPC('getSuggestions', [t.selectedLang, dom.decode(wordSpan.innerHTML)], function(r) { var ignoreRpc; m.removeAll(); if (r.length > 0) { m.add({title : 'spellchecker.sug', 'class' : 'mceMenuItemTitle'}).setDisabled(1); each(r, function(v) { m.add({title : v, onclick : function() { dom.replace(ed.getDoc().createTextNode(v), wordSpan); t._checkDone(); }}); }); m.addSeparator(); } else m.add({title : 'spellchecker.no_sug', 'class' : 'mceMenuItemTitle'}).setDisabled(1); if (ed.getParam('show_ignore_words', true)) { ignoreRpc = t.editor.getParam("spellchecker_enable_ignore_rpc", ''); m.add({ title : 'spellchecker.ignore_word', onclick : function() { var word = wordSpan.innerHTML; dom.remove(wordSpan, 1); t._checkDone(); // tell the server if we need to if (ignoreRpc) { ed.setProgressState(1); t._sendRPC('ignoreWord', [t.selectedLang, word], function(r) { ed.setProgressState(0); }); } } }); m.add({ title : 'spellchecker.ignore_words', onclick : function() { var word = wordSpan.innerHTML; t._removeWords(dom.decode(word)); t._checkDone(); // tell the server if we need to if (ignoreRpc) { ed.setProgressState(1); t._sendRPC('ignoreWords', [t.selectedLang, word], function(r) { ed.setProgressState(0); }); } } }); } if (t.editor.getParam("spellchecker_enable_learn_rpc")) { m.add({ title : 'spellchecker.learn_word', onclick : function() { var word = wordSpan.innerHTML; dom.remove(wordSpan, 1); t._checkDone(); ed.setProgressState(1); t._sendRPC('learnWord', [t.selectedLang, word], function(r) { ed.setProgressState(0); }); } }); } m.update(); }); p1 = DOM.getPos(ed.getContentAreaContainer()); m.settings.offset_x = p1.x; m.settings.offset_y = p1.y; ed.selection.select(wordSpan); p1 = dom.getPos(wordSpan); m.showMenu(p1.x, p1.y + wordSpan.offsetHeight - vp.y); return tinymce.dom.Event.cancel(e); } else m.hideMenu(); }, _checkDone : function() { var t = this, ed = t.editor, dom = ed.dom, o; each(dom.select('span'), function(n) { if (n && dom.hasClass(n, 'mceItemHiddenSpellWord')) { o = true; return false; } }); if (!o) t._done(); }, _done : function() { var t = this, la = t.active; if (t.active) { t.active = 0; t._removeWords(); if (t._menu) t._menu.hideMenu(); if (la) t.editor.nodeChanged(); } }, _sendRPC : function(m, p, cb) { var t = this; JSONRequest.sendRPC({ url : t.rpcUrl, method : m, params : p, success : cb, error : function(e, x) { t.editor.setProgressState(0); t.editor.windowManager.alert(e.errstr || ('Error response: ' + x.responseText)); } }); } }); // Register plugin tinymce.PluginManager.add('spellchecker', tinymce.plugins.SpellcheckerPlugin); })(); assets/lib/wck-api/assets/js/tiny_mce/plugins/spellchecker/img/wline.gif000066600000000056152141651130022406 0ustar00GIF89a**!,Df;assets/lib/wck-api/assets/js/tiny_mce/plugins/directionality/editor_plugin_src.js000066600000003712152141651130024457 0ustar00/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.Directionality', { init : function(ed, url) { var t = this; t.editor = ed; ed.addCommand('mceDirectionLTR', function() { var e = ed.dom.getParent(ed.selection.getNode(), ed.dom.isBlock); if (e) { if (ed.dom.getAttrib(e, "dir") != "ltr") ed.dom.setAttrib(e, "dir", "ltr"); else ed.dom.setAttrib(e, "dir", ""); } ed.nodeChanged(); }); ed.addCommand('mceDirectionRTL', function() { var e = ed.dom.getParent(ed.selection.getNode(), ed.dom.isBlock); if (e) { if (ed.dom.getAttrib(e, "dir") != "rtl") ed.dom.setAttrib(e, "dir", "rtl"); else ed.dom.setAttrib(e, "dir", ""); } ed.nodeChanged(); }); ed.addButton('ltr', {title : 'directionality.ltr_desc', cmd : 'mceDirectionLTR'}); ed.addButton('rtl', {title : 'directionality.rtl_desc', cmd : 'mceDirectionRTL'}); ed.onNodeChange.add(t._nodeChange, t); }, getInfo : function() { return { longname : 'Directionality', author : 'Moxiecode Systems AB', authorurl : 'http://tinymce.moxiecode.com', infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/directionality', version : tinymce.majorVersion + "." + tinymce.minorVersion }; }, // Private methods _nodeChange : function(ed, cm, n) { var dom = ed.dom, dir; n = dom.getParent(n, dom.isBlock); if (!n) { cm.setDisabled('ltr', 1); cm.setDisabled('rtl', 1); return; } dir = dom.getAttrib(n, 'dir'); cm.setActive('ltr', dir == "ltr"); cm.setDisabled('ltr', 0); cm.setActive('rtl', dir == "rtl"); cm.setDisabled('rtl', 0); } }); // Register plugin tinymce.PluginManager.add('directionality', tinymce.plugins.Directionality); })();assets/lib/wck-api/assets/js/tiny_mce/plugins/directionality/editor_plugin.js000066600000002465152141651130023614 0ustar00(function(){tinymce.create("tinymce.plugins.Directionality",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceDirectionLTR",function(){var d=a.dom.getParent(a.selection.getNode(),a.dom.isBlock);if(d){if(a.dom.getAttrib(d,"dir")!="ltr"){a.dom.setAttrib(d,"dir","ltr")}else{a.dom.setAttrib(d,"dir","")}}a.nodeChanged()});a.addCommand("mceDirectionRTL",function(){var d=a.dom.getParent(a.selection.getNode(),a.dom.isBlock);if(d){if(a.dom.getAttrib(d,"dir")!="rtl"){a.dom.setAttrib(d,"dir","rtl")}else{a.dom.setAttrib(d,"dir","")}}a.nodeChanged()});a.addButton("ltr",{title:"directionality.ltr_desc",cmd:"mceDirectionLTR"});a.addButton("rtl",{title:"directionality.rtl_desc",cmd:"mceDirectionRTL"});a.onNodeChange.add(c._nodeChange,c)},getInfo:function(){return{longname:"Directionality",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/directionality",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_nodeChange:function(b,a,e){var d=b.dom,c;e=d.getParent(e,d.isBlock);if(!e){a.setDisabled("ltr",1);a.setDisabled("rtl",1);return}c=d.getAttrib(e,"dir");a.setActive("ltr",c=="ltr");a.setDisabled("ltr",0);a.setActive("rtl",c=="rtl");a.setDisabled("rtl",0)}});tinymce.PluginManager.add("directionality",tinymce.plugins.Directionality)})();assets/lib/wck-api/assets/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif000066600000001615152141651130026375 0ustar00GIF89a'I=:8 }݂~ދ釚uù볧η̴%+ҭٴ!I,'@II)HH)H#@G 9 G@91, 1,I4%C$%4$CƯ##H/./.ĭH-D /yX%Sb B"h(EIb SB>(P "(pBaJ &=Ip03HUt`SgfAV UUa" ݹqe+o߽(] *!n@AY)@ ڊч ؈:j> `#} ܀B g FFrWwPNSرrԭ+N| q yC:j(SMu! C@k+S&YI6[1!x a$mXT6>GX@CKR$9OƄc'#X FE ys=@…&łܭra ֱÉ}Up-H"FčI;assets/lib/wck-api/assets/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif000066600000000420152141651130026226 0ustar00GIF87aPccc,PPC8;qdihjLm,tJxpH<H1ɜ-P@ZجvvoްxL΂贚z^6|>~vz"w7ħ/! ;assets/lib/wck-api/assets/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif000066600000001452152141651130026030 0ustar00GIF87a {nn \\ܣ<<66CCJJ888CCdd--QQ33yyWWiivvkj<<llbb$$uuEE׎ڴMLpp++$$eeKKRRÌͳ==AAdd::))::JJjjWWPP((;;ħɣп%%%ƪ00ccIIϺ̱֘~ȟ^]עUU,,ڌyy||٭QPNNđƘBB__??mm 㺺߀bbսwv, z{k1q1/r6#n0Sw((E{0*44<:{l y$W 7za=t^ LZf]y[dD'L1t%oAU' &6 >Uc-ܴ#K%QlÆs%(Ñ"<88Cpj":)Fj$&s_xS-*B",d yj9HǬ[4iuG  HhACvfCˀZ-aH˻xtfBŃ|1 vPBݑѶɣA B(CӨH倠4r A!+r=ąب !üЛ fЙ?$ν?f ӧG@;assets/lib/wck-api/assets/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif000066600000001401152141651130027104 0ustar00GIF89a-P$%'êu}~鳧ùȿǵ=:8!.,-PpH,$el:ШtJVSجvzxL.hznhN% !$"HNXȰÇ#J\@ŋ3jܨǏ CI2ɓ(S\ɲ%0cʜI8sɳ JѣH (]ʴӧPJJիXjׯ`Ê۠ٳhӪ]˶۷o!ȝKݻx˗ LÈ'vǐ#KL˘3kyϠCMӨQ3Xͺװc@۸s޽ Nȓ+_μУK>݄سkν;ËOӫ_Ͼ_˟Ͽ(h& 6 „Vhfyv!x.($h(,0(.;assets/lib/wck-api/assets/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif000066600000000124152141651130026525 0ustar00GIF87a , @!(AK( 8vu)~*F ;assets/lib/wck-api/assets/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif000066600000002253152141651130026417 0ustar00GIF89at0n{Q[c787k|`r~WdpZiu^n|\kyy{x!,t0Fdi&l;nr-bA|c#B,< Ak6LTL9:z:9D;{>9u|ͻ߿u}Ả?5سk^}{ޱw߾u?~˟?*&{P5 6蠃 >@ '>HaJ] Thpb*B/17X\60DbHNUF7ALdP"YeS2 ې[F))iPyfd)fn&`&w U|矀g~G(,ꨟP 餔Vj^馒f駔z *Q)`ꩨ*R 묧J[+XfkU T*`&.6 JK-k\n+W޺njعƞXnټλY^oڿ Zy\[fE-'1ʕMpƲ'2v!{{%ww) (s|57\ l2+ b!^hv F@$T#;5,v>v5xyƪLMep')q7)fy ~>*yz(/y 0~>j(Jz{+Ȯ>k뮿 {F{l/{j;assets/lib/wck-api/assets/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css000066600000014741152141651130025504 0ustar00/* Clearlooks 2 */ /* Reset */ .clearlooks2, .clearlooks2 div, .clearlooks2 span, .clearlooks2 a {vertical-align:baseline; text-align:left; position:absolute; border:0; padding:0; margin:0; background:transparent; font-family:Arial,Verdana; font-size:11px; color:#000; text-decoration:none; font-weight:normal; width:auto; height:auto; overflow:hidden; display:block} /* General */ .clearlooks2 {position:absolute; direction:ltr} .clearlooks2 .mceWrapper {position:static} .mceEventBlocker {position:fixed; left:0; top:0; background:url(img/horizontal.gif) no-repeat 0 -75px; width:100%; height:100%} .clearlooks2 .mcePlaceHolder {border:1px solid #000; background:#888; top:0; left:0; opacity:0.5; -ms-filter:'alpha(opacity=50)'; filter:alpha(opacity=50)} .clearlooks2_modalBlocker {position:fixed; left:0; top:0; width:100%; height:100%; background:#FFF; opacity:0.6; -ms-filter:'alpha(opacity=60)'; filter:alpha(opacity=60); display:none} /* Top */ .clearlooks2 .mceTop, .clearlooks2 .mceTop div {top:0; width:100%; height:23px} .clearlooks2 .mceTop .mceLeft {width:6px; background:url(img/corners.gif)} .clearlooks2 .mceTop .mceCenter {right:6px; width:100%; height:23px; background:url(img/horizontal.gif) 12px 0; clip:rect(auto auto auto 12px)} .clearlooks2 .mceTop .mceRight {right:0; width:6px; height:23px; background:url(img/corners.gif) -12px 0} .clearlooks2 .mceTop span {width:100%; text-align:center; vertical-align:middle; line-height:23px; font-weight:bold} .clearlooks2 .mceFocus .mceTop .mceLeft {background:url(img/corners.gif) -6px 0} .clearlooks2 .mceFocus .mceTop .mceCenter {background:url(img/horizontal.gif) 0 -23px} .clearlooks2 .mceFocus .mceTop .mceRight {background:url(img/corners.gif) -18px 0} .clearlooks2 .mceFocus .mceTop span {color:#FFF} /* Middle */ .clearlooks2 .mceMiddle, .clearlooks2 .mceMiddle div {top:0} .clearlooks2 .mceMiddle {width:100%; height:100%; clip:rect(23px auto auto auto)} .clearlooks2 .mceMiddle .mceLeft {left:0; width:5px; height:100%; background:url(img/vertical.gif) -5px 0} .clearlooks2 .mceMiddle span {top:23px; left:5px; width:100%; height:100%; background:#FFF} .clearlooks2 .mceMiddle .mceRight {right:0; width:5px; height:100%; background:url(img/vertical.gif)} /* Bottom */ .clearlooks2 .mceBottom, .clearlooks2 .mceBottom div {height:6px} .clearlooks2 .mceBottom {left:0; bottom:0; width:100%} .clearlooks2 .mceBottom div {top:0} .clearlooks2 .mceBottom .mceLeft {left:0; width:5px; background:url(img/corners.gif) -34px -6px} .clearlooks2 .mceBottom .mceCenter {left:5px; width:100%; background:url(img/horizontal.gif) 0 -46px} .clearlooks2 .mceBottom .mceRight {right:0; width:5px; background: url(img/corners.gif) -34px 0} .clearlooks2 .mceBottom span {display:none} .clearlooks2 .mceStatusbar .mceBottom, .clearlooks2 .mceStatusbar .mceBottom div {height:23px} .clearlooks2 .mceStatusbar .mceBottom .mceLeft {background:url(img/corners.gif) -29px 0} .clearlooks2 .mceStatusbar .mceBottom .mceCenter {background:url(img/horizontal.gif) 0 -52px} .clearlooks2 .mceStatusbar .mceBottom .mceRight {background:url(img/corners.gif) -24px 0} .clearlooks2 .mceStatusbar .mceBottom span {display:block; left:7px; font-family:Arial, Verdana; font-size:11px; line-height:23px} /* Actions */ .clearlooks2 a {width:29px; height:16px; top:3px;} .clearlooks2 .mceClose {right:6px; background:url(img/buttons.gif) -87px 0} .clearlooks2 .mceMin {display:none; right:68px; background:url(img/buttons.gif) 0 0} .clearlooks2 .mceMed {display:none; right:37px; background:url(img/buttons.gif) -29px 0} .clearlooks2 .mceMax {display:none; right:37px; background:url(img/buttons.gif) -58px 0} .clearlooks2 .mceMove {display:none;width:100%;cursor:move;background:url(img/corners.gif) no-repeat -100px -100px} .clearlooks2 .mceMovable .mceMove {display:block} .clearlooks2 .mceFocus .mceClose {right:6px; background:url(img/buttons.gif) -87px -16px} .clearlooks2 .mceFocus .mceMin {right:68px; background:url(img/buttons.gif) 0 -16px} .clearlooks2 .mceFocus .mceMed {right:37px; background:url(img/buttons.gif) -29px -16px} .clearlooks2 .mceFocus .mceMax {right:37px; background:url(img/buttons.gif) -58px -16px} .clearlooks2 .mceFocus .mceClose:hover {right:6px; background:url(img/buttons.gif) -87px -32px} .clearlooks2 .mceFocus .mceClose:hover {right:6px; background:url(img/buttons.gif) -87px -32px} .clearlooks2 .mceFocus .mceMin:hover {right:68px; background:url(img/buttons.gif) 0 -32px} .clearlooks2 .mceFocus .mceMed:hover {right:37px; background:url(img/buttons.gif) -29px -32px} .clearlooks2 .mceFocus .mceMax:hover {right:37px; background:url(img/buttons.gif) -58px -32px} /* Resize */ .clearlooks2 .mceResize {top:auto; left:auto; display:none; width:5px; height:5px; background:url(img/horizontal.gif) no-repeat 0 -75px} .clearlooks2 .mceResizable .mceResize {display:block} .clearlooks2 .mceResizable .mceMin, .clearlooks2 .mceMax {display:none} .clearlooks2 .mceMinimizable .mceMin {display:block} .clearlooks2 .mceMaximizable .mceMax {display:block} .clearlooks2 .mceMaximized .mceMed {display:block} .clearlooks2 .mceMaximized .mceMax {display:none} .clearlooks2 a.mceResizeN {top:0; left:0; width:100%; cursor:n-resize} .clearlooks2 a.mceResizeNW {top:0; left:0; cursor:nw-resize} .clearlooks2 a.mceResizeNE {top:0; right:0; cursor:ne-resize} .clearlooks2 a.mceResizeW {top:0; left:0; height:100%; cursor:w-resize;} .clearlooks2 a.mceResizeE {top:0; right:0; height:100%; cursor:e-resize} .clearlooks2 a.mceResizeS {bottom:0; left:0; width:100%; cursor:s-resize} .clearlooks2 a.mceResizeSW {bottom:0; left:0; cursor:sw-resize} .clearlooks2 a.mceResizeSE {bottom:0; right:0; cursor:se-resize} /* Alert/Confirm */ .clearlooks2 .mceButton {font-weight:bold; bottom:10px; width:80px; height:30px; background:url(img/button.gif); line-height:30px; vertical-align:middle; text-align:center; outline:0} .clearlooks2 .mceMiddle .mceIcon {left:15px; top:35px; width:32px; height:32px} .clearlooks2 .mceAlert .mceMiddle span, .clearlooks2 .mceConfirm .mceMiddle span {background:transparent;left:60px; top:35px; width:320px; height:50px; font-weight:bold; overflow:auto; white-space:normal} .clearlooks2 a:hover {font-weight:bold;} .clearlooks2 .mceAlert .mceMiddle, .clearlooks2 .mceConfirm .mceMiddle {background:#D6D7D5} .clearlooks2 .mceAlert .mceOk {left:50%; top:auto; margin-left: -40px} .clearlooks2 .mceAlert .mceIcon {background:url(img/alert.gif)} .clearlooks2 .mceConfirm .mceOk {left:50%; top:auto; margin-left: -90px} .clearlooks2 .mceConfirm .mceCancel {left:50%; top:auto} .clearlooks2 .mceConfirm .mceIcon {background:url(img/confirm.gif)} assets/lib/wck-api/assets/js/tiny_mce/plugins/inlinepopups/editor_plugin.js000066600000027205152141651130023315 0ustar00(function(){var d=tinymce.DOM,b=tinymce.dom.Element,a=tinymce.dom.Event,e=tinymce.each,c=tinymce.is;tinymce.create("tinymce.plugins.InlinePopups",{init:function(f,g){f.onBeforeRenderUI.add(function(){f.windowManager=new tinymce.InlineWindowManager(f);d.loadCSS(g+"/skins/"+(f.settings.inlinepopups_skin||"clearlooks2")+"/window.css")})},getInfo:function(){return{longname:"InlinePopups",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/inlinepopups",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.create("tinymce.InlineWindowManager:tinymce.WindowManager",{InlineWindowManager:function(f){var g=this;g.parent(f);g.zIndex=300000;g.count=0;g.windows={}},open:function(s,j){var z=this,i,k="",r=z.editor,g=0,v=0,h,m,o,q,l,x,y,n;s=s||{};j=j||{};if(!s.inline){return z.parent(s,j)}n=z._frontWindow();if(n&&d.get(n.id+"_ifr")){n.focussedElement=d.get(n.id+"_ifr").contentWindow.document.activeElement}if(!s.type){z.bookmark=r.selection.getBookmark(1)}i=d.uniqueId();h=d.getViewPort();s.width=parseInt(s.width||320);s.height=parseInt(s.height||240)+(tinymce.isIE?8:0);s.min_width=parseInt(s.min_width||150);s.min_height=parseInt(s.min_height||100);s.max_width=parseInt(s.max_width||2000);s.max_height=parseInt(s.max_height||2000);s.left=s.left||Math.round(Math.max(h.x,h.x+(h.w/2)-(s.width/2)));s.top=s.top||Math.round(Math.max(h.y,h.y+(h.h/2)-(s.height/2)));s.movable=s.resizable=true;j.mce_width=s.width;j.mce_height=s.height;j.mce_inline=true;j.mce_window_id=i;j.mce_auto_focus=s.auto_focus;z.features=s;z.params=j;z.onOpen.dispatch(z,s,j);if(s.type){k+=" mceModal";if(s.type){k+=" mce"+s.type.substring(0,1).toUpperCase()+s.type.substring(1)}s.resizable=false}if(s.statusbar){k+=" mceStatusbar"}if(s.resizable){k+=" mceResizable"}if(s.minimizable){k+=" mceMinimizable"}if(s.maximizable){k+=" mceMaximizable"}if(s.movable){k+=" mceMovable"}z._addAll(d.doc.body,["div",{id:i,role:"dialog","aria-labelledby":s.type?i+"_content":i+"_title","class":(r.settings.inlinepopups_skin||"clearlooks2")+(tinymce.isIE&&window.getSelection?" ie9":""),style:"width:100px;height:100px"},["div",{id:i+"_wrapper","class":"mceWrapper"+k},["div",{id:i+"_top","class":"mceTop"},["div",{"class":"mceLeft"}],["div",{"class":"mceCenter"}],["div",{"class":"mceRight"}],["span",{id:i+"_title"},s.title||""]],["div",{id:i+"_middle","class":"mceMiddle"},["div",{id:i+"_left","class":"mceLeft",tabindex:"0"}],["span",{id:i+"_content"}],["div",{id:i+"_right","class":"mceRight",tabindex:"0"}]],["div",{id:i+"_bottom","class":"mceBottom"},["div",{"class":"mceLeft"}],["div",{"class":"mceCenter"}],["div",{"class":"mceRight"}],["span",{id:i+"_status"},"Content"]],["a",{"class":"mceMove",tabindex:"-1",href:"javascript:;"}],["a",{"class":"mceMin",tabindex:"-1",href:"javascript:;",onmousedown:"return false;"}],["a",{"class":"mceMax",tabindex:"-1",href:"javascript:;",onmousedown:"return false;"}],["a",{"class":"mceMed",tabindex:"-1",href:"javascript:;",onmousedown:"return false;"}],["a",{"class":"mceClose",tabindex:"-1",href:"javascript:;",onmousedown:"return false;"}],["a",{id:i+"_resize_n","class":"mceResize mceResizeN",tabindex:"-1",href:"javascript:;"}],["a",{id:i+"_resize_s","class":"mceResize mceResizeS",tabindex:"-1",href:"javascript:;"}],["a",{id:i+"_resize_w","class":"mceResize mceResizeW",tabindex:"-1",href:"javascript:;"}],["a",{id:i+"_resize_e","class":"mceResize mceResizeE",tabindex:"-1",href:"javascript:;"}],["a",{id:i+"_resize_nw","class":"mceResize mceResizeNW",tabindex:"-1",href:"javascript:;"}],["a",{id:i+"_resize_ne","class":"mceResize mceResizeNE",tabindex:"-1",href:"javascript:;"}],["a",{id:i+"_resize_sw","class":"mceResize mceResizeSW",tabindex:"-1",href:"javascript:;"}],["a",{id:i+"_resize_se","class":"mceResize mceResizeSE",tabindex:"-1",href:"javascript:;"}]]]);d.setStyles(i,{top:-10000,left:-10000});if(tinymce.isGecko){d.setStyle(i,"overflow","auto")}if(!s.type){g+=d.get(i+"_left").clientWidth;g+=d.get(i+"_right").clientWidth;v+=d.get(i+"_top").clientHeight;v+=d.get(i+"_bottom").clientHeight}d.setStyles(i,{top:s.top,left:s.left,width:s.width+g,height:s.height+v});y=s.url||s.file;if(y){if(tinymce.relaxedDomain){y+=(y.indexOf("?")==-1?"?":"&")+"mce_rdomain="+tinymce.relaxedDomain}y=tinymce._addVer(y)}if(!s.type){d.add(i+"_content","iframe",{id:i+"_ifr",src:'javascript:""',frameBorder:0,style:"border:0;width:10px;height:10px"});d.setStyles(i+"_ifr",{width:s.width,height:s.height});d.setAttrib(i+"_ifr","src",y)}else{d.add(i+"_wrapper","a",{id:i+"_ok","class":"mceButton mceOk",href:"javascript:;",onmousedown:"return false;"},"Ok");if(s.type=="confirm"){d.add(i+"_wrapper","a",{"class":"mceButton mceCancel",href:"javascript:;",onmousedown:"return false;"},"Cancel")}d.add(i+"_middle","div",{"class":"mceIcon"});d.setHTML(i+"_content",s.content.replace("\n","
        "));a.add(i,"keyup",function(f){var p=27;if(f.keyCode===p){s.button_func(false);return a.cancel(f)}});a.add(i,"keydown",function(f){var t,p=9;if(f.keyCode===p){t=d.select("a.mceCancel",i+"_wrapper")[0];if(t&&t!==f.target){t.focus()}else{d.get(i+"_ok").focus()}return a.cancel(f)}})}o=a.add(i,"mousedown",function(t){var u=t.target,f,p;f=z.windows[i];z.focus(i);if(u.nodeName=="A"||u.nodeName=="a"){if(u.className=="mceClose"){z.close(null,i);return a.cancel(t)}else{if(u.className=="mceMax"){f.oldPos=f.element.getXY();f.oldSize=f.element.getSize();p=d.getViewPort();p.w-=2;p.h-=2;f.element.moveTo(p.x,p.y);f.element.resizeTo(p.w,p.h);d.setStyles(i+"_ifr",{width:p.w-f.deltaWidth,height:p.h-f.deltaHeight});d.addClass(i+"_wrapper","mceMaximized")}else{if(u.className=="mceMed"){f.element.moveTo(f.oldPos.x,f.oldPos.y);f.element.resizeTo(f.oldSize.w,f.oldSize.h);f.iframeElement.resizeTo(f.oldSize.w-f.deltaWidth,f.oldSize.h-f.deltaHeight);d.removeClass(i+"_wrapper","mceMaximized")}else{if(u.className=="mceMove"){return z._startDrag(i,t,u.className)}else{if(d.hasClass(u,"mceResize")){return z._startDrag(i,t,u.className.substring(13))}}}}}}});q=a.add(i,"click",function(f){var p=f.target;z.focus(i);if(p.nodeName=="A"||p.nodeName=="a"){switch(p.className){case"mceClose":z.close(null,i);return a.cancel(f);case"mceButton mceOk":case"mceButton mceCancel":s.button_func(p.className=="mceButton mceOk");return a.cancel(f)}}});a.add([i+"_left",i+"_right"],"focus",function(p){var t=d.get(i+"_ifr");if(t){var f=t.contentWindow.document.body;var u=d.select(":input:enabled,*[tabindex=0]",f);if(p.target.id===(i+"_left")){u[u.length-1].focus()}else{u[0].focus()}}else{d.get(i+"_ok").focus()}});x=z.windows[i]={id:i,mousedown_func:o,click_func:q,element:new b(i,{blocker:1,container:r.getContainer()}),iframeElement:new b(i+"_ifr"),features:s,deltaWidth:g,deltaHeight:v};x.iframeElement.on("focus",function(){z.focus(i)});if(z.count==0&&z.editor.getParam("dialog_type","modal")=="modal"){d.add(d.doc.body,"div",{id:"mceModalBlocker","class":(z.editor.settings.inlinepopups_skin||"clearlooks2")+"_modalBlocker",style:{zIndex:z.zIndex-1}});d.show("mceModalBlocker");d.setAttrib(d.doc.body,"aria-hidden","true")}else{d.setStyle("mceModalBlocker","z-index",z.zIndex-1)}if(tinymce.isIE6||/Firefox\/2\./.test(navigator.userAgent)||(tinymce.isIE&&!d.boxModel)){d.setStyles("mceModalBlocker",{position:"absolute",left:h.x,top:h.y,width:h.w-2,height:h.h-2})}d.setAttrib(i,"aria-hidden","false");z.focus(i);z._fixIELayout(i,1);if(d.get(i+"_ok")){d.get(i+"_ok").focus()}z.count++;return x},focus:function(h){var g=this,f;if(f=g.windows[h]){f.zIndex=this.zIndex++;f.element.setStyle("zIndex",f.zIndex);f.element.update();h=h+"_wrapper";d.removeClass(g.lastId,"mceFocus");d.addClass(h,"mceFocus");g.lastId=h;if(f.focussedElement){f.focussedElement.focus()}else{if(d.get(h+"_ok")){d.get(f.id+"_ok").focus()}else{if(d.get(f.id+"_ifr")){d.get(f.id+"_ifr").focus()}}}}},_addAll:function(k,h){var g,l,f=this,j=tinymce.DOM;if(c(h,"string")){k.appendChild(j.doc.createTextNode(h))}else{if(h.length){k=k.appendChild(j.create(h[0],h[1]));for(g=2;gf){g=h;f=h.zIndex}});return g},setTitle:function(f,g){var h;f=this._findId(f);if(h=d.get(f+"_title")){h.innerHTML=d.encode(g)}},alert:function(g,f,j){var i=this,h;h=i.open({title:i,type:"alert",button_func:function(k){if(f){f.call(k||i,k)}i.close(null,h.id)},content:d.encode(i.editor.getLang(g,g)),inline:1,width:400,height:130})},confirm:function(g,f,j){var i=this,h;h=i.open({title:i,type:"confirm",button_func:function(k){if(f){f.call(k||i,k)}i.close(null,h.id)},content:d.encode(i.editor.getLang(g,g)),inline:1,width:400,height:130})},_findId:function(f){var g=this;if(typeof(f)=="string"){return f}e(g.windows,function(h){var i=d.get(h.id+"_ifr");if(i&&f==i.contentWindow){f=h.id;return false}});return f},_fixIELayout:function(i,h){var f,g;if(!tinymce.isIE6){return}e(["n","s","w","e","nw","ne","sw","se"],function(j){var k=d.get(i+"_resize_"+j);d.setStyles(k,{width:h?k.clientWidth:"",height:h?k.clientHeight:"",cursor:d.getStyle(k,"cursor",1)});d.setStyle(i+"_bottom","bottom","-1px");k=0});if(f=this.windows[i]){f.element.hide();f.element.show();e(d.select("div,a",i),function(k,j){if(k.currentStyle.backgroundImage!="none"){g=new Image();g.src=k.currentStyle.backgroundImage.replace(/url\(\"(.+)\"\)/,"$1")}});d.get(i).style.filter=""}}});tinymce.PluginManager.add("inlinepopups",tinymce.plugins.InlinePopups)})();assets/lib/wck-api/assets/js/tiny_mce/plugins/inlinepopups/editor_plugin_src.js000066600000044736152141651130024174 0ustar00/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { var DOM = tinymce.DOM, Element = tinymce.dom.Element, Event = tinymce.dom.Event, each = tinymce.each, is = tinymce.is; tinymce.create('tinymce.plugins.InlinePopups', { init : function(ed, url) { // Replace window manager ed.onBeforeRenderUI.add(function() { ed.windowManager = new tinymce.InlineWindowManager(ed); DOM.loadCSS(url + '/skins/' + (ed.settings.inlinepopups_skin || 'clearlooks2') + "/window.css"); }); }, getInfo : function() { return { longname : 'InlinePopups', author : 'Moxiecode Systems AB', authorurl : 'http://tinymce.moxiecode.com', infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/inlinepopups', version : tinymce.majorVersion + "." + tinymce.minorVersion }; } }); tinymce.create('tinymce.InlineWindowManager:tinymce.WindowManager', { InlineWindowManager : function(ed) { var t = this; t.parent(ed); t.zIndex = 300000; t.count = 0; t.windows = {}; }, open : function(f, p) { var t = this, id, opt = '', ed = t.editor, dw = 0, dh = 0, vp, po, mdf, clf, we, w, u, parentWindow; f = f || {}; p = p || {}; // Run native windows if (!f.inline) return t.parent(f, p); parentWindow = t._frontWindow(); if (parentWindow && DOM.get(parentWindow.id + '_ifr')) { parentWindow.focussedElement = DOM.get(parentWindow.id + '_ifr').contentWindow.document.activeElement; } // Only store selection if the type is a normal window if (!f.type) t.bookmark = ed.selection.getBookmark(1); id = DOM.uniqueId(); vp = DOM.getViewPort(); f.width = parseInt(f.width || 320); f.height = parseInt(f.height || 240) + (tinymce.isIE ? 8 : 0); f.min_width = parseInt(f.min_width || 150); f.min_height = parseInt(f.min_height || 100); f.max_width = parseInt(f.max_width || 2000); f.max_height = parseInt(f.max_height || 2000); f.left = f.left || Math.round(Math.max(vp.x, vp.x + (vp.w / 2.0) - (f.width / 2.0))); f.top = f.top || Math.round(Math.max(vp.y, vp.y + (vp.h / 2.0) - (f.height / 2.0))); f.movable = f.resizable = true; p.mce_width = f.width; p.mce_height = f.height; p.mce_inline = true; p.mce_window_id = id; p.mce_auto_focus = f.auto_focus; // Transpose // po = DOM.getPos(ed.getContainer()); // f.left -= po.x; // f.top -= po.y; t.features = f; t.params = p; t.onOpen.dispatch(t, f, p); if (f.type) { opt += ' mceModal'; if (f.type) opt += ' mce' + f.type.substring(0, 1).toUpperCase() + f.type.substring(1); f.resizable = false; } if (f.statusbar) opt += ' mceStatusbar'; if (f.resizable) opt += ' mceResizable'; if (f.minimizable) opt += ' mceMinimizable'; if (f.maximizable) opt += ' mceMaximizable'; if (f.movable) opt += ' mceMovable'; // Create DOM objects t._addAll(DOM.doc.body, ['div', {id : id, role : 'dialog', 'aria-labelledby': f.type ? id + '_content' : id + '_title', 'class' : (ed.settings.inlinepopups_skin || 'clearlooks2') + (tinymce.isIE && window.getSelection ? ' ie9' : ''), style : 'width:100px;height:100px'}, ['div', {id : id + '_wrapper', 'class' : 'mceWrapper' + opt}, ['div', {id : id + '_top', 'class' : 'mceTop'}, ['div', {'class' : 'mceLeft'}], ['div', {'class' : 'mceCenter'}], ['div', {'class' : 'mceRight'}], ['span', {id : id + '_title'}, f.title || ''] ], ['div', {id : id + '_middle', 'class' : 'mceMiddle'}, ['div', {id : id + '_left', 'class' : 'mceLeft', tabindex : '0'}], ['span', {id : id + '_content'}], ['div', {id : id + '_right', 'class' : 'mceRight', tabindex : '0'}] ], ['div', {id : id + '_bottom', 'class' : 'mceBottom'}, ['div', {'class' : 'mceLeft'}], ['div', {'class' : 'mceCenter'}], ['div', {'class' : 'mceRight'}], ['span', {id : id + '_status'}, 'Content'] ], ['a', {'class' : 'mceMove', tabindex : '-1', href : 'javascript:;'}], ['a', {'class' : 'mceMin', tabindex : '-1', href : 'javascript:;', onmousedown : 'return false;'}], ['a', {'class' : 'mceMax', tabindex : '-1', href : 'javascript:;', onmousedown : 'return false;'}], ['a', {'class' : 'mceMed', tabindex : '-1', href : 'javascript:;', onmousedown : 'return false;'}], ['a', {'class' : 'mceClose', tabindex : '-1', href : 'javascript:;', onmousedown : 'return false;'}], ['a', {id : id + '_resize_n', 'class' : 'mceResize mceResizeN', tabindex : '-1', href : 'javascript:;'}], ['a', {id : id + '_resize_s', 'class' : 'mceResize mceResizeS', tabindex : '-1', href : 'javascript:;'}], ['a', {id : id + '_resize_w', 'class' : 'mceResize mceResizeW', tabindex : '-1', href : 'javascript:;'}], ['a', {id : id + '_resize_e', 'class' : 'mceResize mceResizeE', tabindex : '-1', href : 'javascript:;'}], ['a', {id : id + '_resize_nw', 'class' : 'mceResize mceResizeNW', tabindex : '-1', href : 'javascript:;'}], ['a', {id : id + '_resize_ne', 'class' : 'mceResize mceResizeNE', tabindex : '-1', href : 'javascript:;'}], ['a', {id : id + '_resize_sw', 'class' : 'mceResize mceResizeSW', tabindex : '-1', href : 'javascript:;'}], ['a', {id : id + '_resize_se', 'class' : 'mceResize mceResizeSE', tabindex : '-1', href : 'javascript:;'}] ] ] ); DOM.setStyles(id, {top : -10000, left : -10000}); // Fix gecko rendering bug, where the editors iframe messed with window contents if (tinymce.isGecko) DOM.setStyle(id, 'overflow', 'auto'); // Measure borders if (!f.type) { dw += DOM.get(id + '_left').clientWidth; dw += DOM.get(id + '_right').clientWidth; dh += DOM.get(id + '_top').clientHeight; dh += DOM.get(id + '_bottom').clientHeight; } // Resize window DOM.setStyles(id, {top : f.top, left : f.left, width : f.width + dw, height : f.height + dh}); u = f.url || f.file; if (u) { if (tinymce.relaxedDomain) u += (u.indexOf('?') == -1 ? '?' : '&') + 'mce_rdomain=' + tinymce.relaxedDomain; u = tinymce._addVer(u); } if (!f.type) { DOM.add(id + '_content', 'iframe', {id : id + '_ifr', src : 'javascript:""', frameBorder : 0, style : 'border:0;width:10px;height:10px'}); DOM.setStyles(id + '_ifr', {width : f.width, height : f.height}); DOM.setAttrib(id + '_ifr', 'src', u); } else { DOM.add(id + '_wrapper', 'a', {id : id + '_ok', 'class' : 'mceButton mceOk', href : 'javascript:;', onmousedown : 'return false;'}, 'Ok'); if (f.type == 'confirm') DOM.add(id + '_wrapper', 'a', {'class' : 'mceButton mceCancel', href : 'javascript:;', onmousedown : 'return false;'}, 'Cancel'); DOM.add(id + '_middle', 'div', {'class' : 'mceIcon'}); DOM.setHTML(id + '_content', f.content.replace('\n', '
        ')); Event.add(id, 'keyup', function(evt) { var VK_ESCAPE = 27; if (evt.keyCode === VK_ESCAPE) { f.button_func(false); return Event.cancel(evt); } }); Event.add(id, 'keydown', function(evt) { var cancelButton, VK_TAB = 9; if (evt.keyCode === VK_TAB) { cancelButton = DOM.select('a.mceCancel', id + '_wrapper')[0]; if (cancelButton && cancelButton !== evt.target) { cancelButton.focus(); } else { DOM.get(id + '_ok').focus(); } return Event.cancel(evt); } }); } // Register events mdf = Event.add(id, 'mousedown', function(e) { var n = e.target, w, vp; w = t.windows[id]; t.focus(id); if (n.nodeName == 'A' || n.nodeName == 'a') { if (n.className == 'mceClose') { t.close(null, id); return Event.cancel(e); } else if (n.className == 'mceMax') { w.oldPos = w.element.getXY(); w.oldSize = w.element.getSize(); vp = DOM.getViewPort(); // Reduce viewport size to avoid scrollbars vp.w -= 2; vp.h -= 2; w.element.moveTo(vp.x, vp.y); w.element.resizeTo(vp.w, vp.h); DOM.setStyles(id + '_ifr', {width : vp.w - w.deltaWidth, height : vp.h - w.deltaHeight}); DOM.addClass(id + '_wrapper', 'mceMaximized'); } else if (n.className == 'mceMed') { // Reset to old size w.element.moveTo(w.oldPos.x, w.oldPos.y); w.element.resizeTo(w.oldSize.w, w.oldSize.h); w.iframeElement.resizeTo(w.oldSize.w - w.deltaWidth, w.oldSize.h - w.deltaHeight); DOM.removeClass(id + '_wrapper', 'mceMaximized'); } else if (n.className == 'mceMove') return t._startDrag(id, e, n.className); else if (DOM.hasClass(n, 'mceResize')) return t._startDrag(id, e, n.className.substring(13)); } }); clf = Event.add(id, 'click', function(e) { var n = e.target; t.focus(id); if (n.nodeName == 'A' || n.nodeName == 'a') { switch (n.className) { case 'mceClose': t.close(null, id); return Event.cancel(e); case 'mceButton mceOk': case 'mceButton mceCancel': f.button_func(n.className == 'mceButton mceOk'); return Event.cancel(e); } } }); // Make sure the tab order loops within the dialog. Event.add([id + '_left', id + '_right'], 'focus', function(evt) { var iframe = DOM.get(id + '_ifr'); if (iframe) { var body = iframe.contentWindow.document.body; var focusable = DOM.select(':input:enabled,*[tabindex=0]', body); if (evt.target.id === (id + '_left')) { focusable[focusable.length - 1].focus(); } else { focusable[0].focus(); } } else { DOM.get(id + '_ok').focus(); } }); // Add window w = t.windows[id] = { id : id, mousedown_func : mdf, click_func : clf, element : new Element(id, {blocker : 1, container : ed.getContainer()}), iframeElement : new Element(id + '_ifr'), features : f, deltaWidth : dw, deltaHeight : dh }; w.iframeElement.on('focus', function() { t.focus(id); }); // Setup blocker if (t.count == 0 && t.editor.getParam('dialog_type', 'modal') == 'modal') { DOM.add(DOM.doc.body, 'div', { id : 'mceModalBlocker', 'class' : (t.editor.settings.inlinepopups_skin || 'clearlooks2') + '_modalBlocker', style : {zIndex : t.zIndex - 1} }); DOM.show('mceModalBlocker'); // Reduces flicker in IE DOM.setAttrib(DOM.doc.body, 'aria-hidden', 'true'); } else DOM.setStyle('mceModalBlocker', 'z-index', t.zIndex - 1); if (tinymce.isIE6 || /Firefox\/2\./.test(navigator.userAgent) || (tinymce.isIE && !DOM.boxModel)) DOM.setStyles('mceModalBlocker', {position : 'absolute', left : vp.x, top : vp.y, width : vp.w - 2, height : vp.h - 2}); DOM.setAttrib(id, 'aria-hidden', 'false'); t.focus(id); t._fixIELayout(id, 1); // Focus ok button if (DOM.get(id + '_ok')) DOM.get(id + '_ok').focus(); t.count++; return w; }, focus : function(id) { var t = this, w; if (w = t.windows[id]) { w.zIndex = this.zIndex++; w.element.setStyle('zIndex', w.zIndex); w.element.update(); id = id + '_wrapper'; DOM.removeClass(t.lastId, 'mceFocus'); DOM.addClass(id, 'mceFocus'); t.lastId = id; if (w.focussedElement) { w.focussedElement.focus(); } else if (DOM.get(id + '_ok')) { DOM.get(w.id + '_ok').focus(); } else if (DOM.get(w.id + '_ifr')) { DOM.get(w.id + '_ifr').focus(); } } }, _addAll : function(te, ne) { var i, n, t = this, dom = tinymce.DOM; if (is(ne, 'string')) te.appendChild(dom.doc.createTextNode(ne)); else if (ne.length) { te = te.appendChild(dom.create(ne[0], ne[1])); for (i=2; i ix) { fw = w; ix = w.zIndex; } }); return fw; }, setTitle : function(w, ti) { var e; w = this._findId(w); if (e = DOM.get(w + '_title')) e.innerHTML = DOM.encode(ti); }, alert : function(txt, cb, s) { var t = this, w; w = t.open({ title : t, type : 'alert', button_func : function(s) { if (cb) cb.call(s || t, s); t.close(null, w.id); }, content : DOM.encode(t.editor.getLang(txt, txt)), inline : 1, width : 400, height : 130 }); }, confirm : function(txt, cb, s) { var t = this, w; w = t.open({ title : t, type : 'confirm', button_func : function(s) { if (cb) cb.call(s || t, s); t.close(null, w.id); }, content : DOM.encode(t.editor.getLang(txt, txt)), inline : 1, width : 400, height : 130 }); }, // Internal functions _findId : function(w) { var t = this; if (typeof(w) == 'string') return w; each(t.windows, function(wo) { var ifr = DOM.get(wo.id + '_ifr'); if (ifr && w == ifr.contentWindow) { w = wo.id; return false; } }); return w; }, _fixIELayout : function(id, s) { var w, img; if (!tinymce.isIE6) return; // Fixes the bug where hover flickers and does odd things in IE6 each(['n','s','w','e','nw','ne','sw','se'], function(v) { var e = DOM.get(id + '_resize_' + v); DOM.setStyles(e, { width : s ? e.clientWidth : '', height : s ? e.clientHeight : '', cursor : DOM.getStyle(e, 'cursor', 1) }); DOM.setStyle(id + "_bottom", 'bottom', '-1px'); e = 0; }); // Fixes graphics glitch if (w = this.windows[id]) { // Fixes rendering bug after resize w.element.hide(); w.element.show(); // Forced a repaint of the window //DOM.get(id).style.filter = ''; // IE has a bug where images used in CSS won't get loaded // sometimes when the cache in the browser is disabled // This fix tries to solve it by loading the images using the image object each(DOM.select('div,a', id), function(e, i) { if (e.currentStyle.backgroundImage != 'none') { img = new Image(); img.src = e.currentStyle.backgroundImage.replace(/url\(\"(.+)\"\)/, '$1'); } }); DOM.get(id).style.filter = ''; } } }); // Register plugin tinymce.PluginManager.add('inlinepopups', tinymce.plugins.InlinePopups); })(); assets/lib/wck-api/assets/js/tiny_mce/plugins/inlinepopups/template.htm000066600000030313152141651130022432 0ustar00 Template for dialogs

        assets/lib/wck-api/assets/js/tiny_mce/plugins/tabfocus/editor_plugin_src.js000066600000005567152141651130023254 0ustar00/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { var DOM = tinymce.DOM, Event = tinymce.dom.Event, each = tinymce.each, explode = tinymce.explode; tinymce.create('tinymce.plugins.TabFocusPlugin', { init : function(ed, url) { function tabCancel(ed, e) { if (e.keyCode === 9) return Event.cancel(e); } function tabHandler(ed, e) { var x, i, f, el, v; function find(d) { el = DOM.select(':input:enabled,*[tabindex]:not(iframe)'); function canSelectRecursive(e) { return e.nodeName==="BODY" || (e.type != 'hidden' && !(e.style.display == "none") && !(e.style.visibility == "hidden") && canSelectRecursive(e.parentNode)); } function canSelectInOldIe(el) { return el.attributes["tabIndex"].specified || el.nodeName == "INPUT" || el.nodeName == "TEXTAREA"; } function isOldIe() { return tinymce.isIE6 || tinymce.isIE7; } function canSelect(el) { return ((!isOldIe() || canSelectInOldIe(el))) && el.getAttribute("tabindex") != '-1' && canSelectRecursive(el); } each(el, function(e, i) { if (e.id == ed.id) { x = i; return false; } }); if (d > 0) { for (i = x + 1; i < el.length; i++) { if (canSelect(el[i])) return el[i]; } } else { for (i = x - 1; i >= 0; i--) { if (canSelect(el[i])) return el[i]; } } return null; } if (e.keyCode === 9) { v = explode(ed.getParam('tab_focus', ed.getParam('tabfocus_elements', ':prev,:next'))); if (v.length == 1) { v[1] = v[0]; v[0] = ':prev'; } // Find element to focus if (e.shiftKey) { if (v[0] == ':prev') el = find(-1); else el = DOM.get(v[0]); } else { if (v[1] == ':next') el = find(1); else el = DOM.get(v[1]); } if (el) { if (el.id && (ed = tinymce.get(el.id || el.name))) ed.focus(); else window.setTimeout(function() { if (!tinymce.isWebKit) window.focus(); el.focus(); }, 10); return Event.cancel(e); } } } ed.onKeyUp.add(tabCancel); if (tinymce.isGecko) { ed.onKeyPress.add(tabHandler); ed.onKeyDown.add(tabCancel); } else ed.onKeyDown.add(tabHandler); }, getInfo : function() { return { longname : 'Tabfocus', author : 'Moxiecode Systems AB', authorurl : 'http://tinymce.moxiecode.com', infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/tabfocus', version : tinymce.majorVersion + "." + tinymce.minorVersion }; } }); // Register plugin tinymce.PluginManager.add('tabfocus', tinymce.plugins.TabFocusPlugin); })(); assets/lib/wck-api/assets/js/tiny_mce/plugins/tabfocus/editor_plugin.js000066600000003202152141651130022365 0ustar00(function(){var c=tinymce.DOM,a=tinymce.dom.Event,d=tinymce.each,b=tinymce.explode;tinymce.create("tinymce.plugins.TabFocusPlugin",{init:function(f,g){function e(i,j){if(j.keyCode===9){return a.cancel(j)}}function h(l,p){var j,m,o,n,k;function q(t){n=c.select(":input:enabled,*[tabindex]:not(iframe)");function s(v){return v.nodeName==="BODY"||(v.type!="hidden"&&!(v.style.display=="none")&&!(v.style.visibility=="hidden")&&s(v.parentNode))}function i(v){return v.attributes.tabIndex.specified||v.nodeName=="INPUT"||v.nodeName=="TEXTAREA"}function u(){return tinymce.isIE6||tinymce.isIE7}function r(v){return((!u()||i(v)))&&v.getAttribute("tabindex")!="-1"&&s(v)}d(n,function(w,v){if(w.id==l.id){j=v;return false}});if(t>0){for(m=j+1;m=0;m--){if(r(n[m])){return n[m]}}}return null}if(p.keyCode===9){k=b(l.getParam("tab_focus",l.getParam("tabfocus_elements",":prev,:next")));if(k.length==1){k[1]=k[0];k[0]=":prev"}if(p.shiftKey){if(k[0]==":prev"){n=q(-1)}else{n=c.get(k[0])}}else{if(k[1]==":next"){n=q(1)}else{n=c.get(k[1])}}if(n){if(n.id&&(l=tinymce.get(n.id||n.name))){l.focus()}else{window.setTimeout(function(){if(!tinymce.isWebKit){window.focus()}n.focus()},10)}return a.cancel(p)}}}f.onKeyUp.add(e);if(tinymce.isGecko){f.onKeyPress.add(h);f.onKeyDown.add(e)}else{f.onKeyDown.add(h)}},getInfo:function(){return{longname:"Tabfocus",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/tabfocus",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("tabfocus",tinymce.plugins.TabFocusPlugin)})();assets/lib/wck-api/assets/js/tiny_mce/plugins/media/css/media.css000066600000002474152141651130021027 0ustar00#id, #name, #hspace, #vspace, #class_name, #align { width: 100px } #hspace, #vspace { width: 50px } #flash_quality, #flash_align, #flash_scale, #flash_salign, #flash_wmode { width: 100px } #flash_base, #flash_flashvars, #html5_altsource1, #html5_altsource2, #html5_poster { width: 240px } #width, #height { width: 40px } #src, #media_type { width: 250px } #class { width: 120px } #prev { margin: 0; border: 1px solid black; width: 380px; height: 260px; overflow: auto } .panel_wrapper div.current { height: 420px; overflow: auto } #flash_options, #shockwave_options, #qt_options, #wmp_options, #rmp_options { display: none } .mceAddSelectValue { background-color: #DDDDDD } #qt_starttime, #qt_endtime, #qt_fov, #qt_href, #qt_moveid, #qt_moviename, #qt_node, #qt_pan, #qt_qtsrc, #qt_qtsrcchokespeed, #qt_target, #qt_tilt, #qt_urlsubstituten, #qt_volume { width: 70px } #wmp_balance, #wmp_baseurl, #wmp_captioningid, #wmp_currentmarker, #wmp_currentposition, #wmp_defaultframe, #wmp_playcount, #wmp_rate, #wmp_uimode, #wmp_volume { width: 70px } #rmp_console, #rmp_numloop, #rmp_controls, #rmp_scriptcallbacks { width: 70px } #shockwave_swvolume, #shockwave_swframe, #shockwave_swurl, #shockwave_swstretchvalign, #shockwave_swstretchhalign, #shockwave_swstretchstyle { width: 90px } #qt_qtsrc { width: 200px } iframe {border: 1px solid gray} assets/lib/wck-api/assets/js/tiny_mce/plugins/media/langs/en_dlg.js000066600000005376152141651130021344 0ustar00tinyMCE.addI18n('en.media_dlg',{list:"List",file:"File/URL",advanced:"Advanced",general:"General",title:"Insert/Edit Embedded Media","align_top_left":"Top Left","align_center":"Center","align_left":"Left","align_bottom":"Bottom","align_right":"Right","align_top":"Top","qt_stream_warn":"Streamed RTSP resources should be added to the QT Source field under the Advanced tab.\nYou should also add a non-streamed version to the Source field.",qtsrc:"QT Source",progress:"Progress",sound:"Sound",swstretchvalign:"Stretch V-Align",swstretchhalign:"Stretch H-Align",swstretchstyle:"Stretch Style",scriptcallbacks:"Script Callbacks","align_top_right":"Top Right",uimode:"UI Mode",rate:"Rate",playcount:"Play Count",defaultframe:"Default Frame",currentposition:"Current Position",currentmarker:"Current Marker",captioningid:"Captioning ID",baseurl:"Base URL",balance:"Balance",windowlessvideo:"Windowless Video",stretchtofit:"Stretch to Fit",mute:"Mute",invokeurls:"Invoke URLs",fullscreen:"Full Screen",enabled:"Enabled",autostart:"Auto Start",volume:"Volume",target:"Target",qtsrcchokespeed:"Choke Speed",href:"HREF",endtime:"End Time",starttime:"Start Time",enablejavascript:"Enable JavaScript",correction:"No Correction",targetcache:"Target Cache",playeveryframe:"Play Every Frame",kioskmode:"Kiosk Mode",controller:"Controller",menu:"Show Menu",loop:"Loop",play:"Auto Play",hspace:"H-Space",vspace:"V-Space","class_name":"Class",name:"Name",id:"ID",type:"Type",size:"Dimensions",preview:"Preview","constrain_proportions":"Constrain Proportions",controls:"Controls",numloop:"Num Loops",console:"Console",cache:"Cache",autohref:"Auto HREF",liveconnect:"SWLiveConnect",flashvars:"Flash Vars",base:"Base",bgcolor:"Background",wmode:"WMode",salign:"SAlign",align:"Align",scale:"Scale",quality:"Quality",shuffle:"Shuffle",prefetch:"Prefetch",nojava:"No Java",maintainaspect:"Maintain Aspect",imagestatus:"Image Status",center:"Center",autogotourl:"Auto Goto URL","shockwave_options":"Shockwave Options","rmp_options":"Real Media Player Options","wmp_options":"Windows Media Player Options","qt_options":"QuickTime Options","flash_options":"Flash Options",hidden:"Hidden","align_bottom_left":"Bottom Left","align_bottom_right":"Bottom Right","html5_video_options":"HTML5 Video Options",altsource1:"Alternative source 1",altsource2:"Alternative source 2",preload:"Preload",poster:"Poster",source:"Source","html5_audio_options":"Audio Options","preload_none":"Don\'t Preload","preload_metadata":"Preload video metadata","preload_auto":"Let user\'s browser decide", "embedded_audio_options":"Embedded Audio Options", video:"HTML5 Video", audio:"HTML5 Audio", flash:"Flash", quicktime:"QuickTime", shockwave:"Shockwave", windowsmedia:"Windows Media", realmedia:"Real Media", iframe:"Iframe", embeddedaudio:"Embedded Audio" }); assets/lib/wck-api/assets/js/tiny_mce/plugins/media/media.htm000066600000112052152141651130020231 0ustar00 {#media_dlg.title}
        {#media_dlg.general}
         
        x   
        {#media_dlg.preview}
        {#media_dlg.advanced}
         
        {#media_dlg.html5_video_options}
         
         
         
        {#media_dlg.embedded_audio_options}
        {#media_dlg.html5_audio_options}
         
         
        {#media_dlg.flash_options}
        {#media_dlg.qt_options}
         
         
        {#media_dlg.wmp_options}
        {#media_dlg.rmp_options}
         
        {#media_dlg.shockwave_options}
        {#media_dlg.source}
        assets/lib/wck-api/assets/js/tiny_mce/plugins/media/editor_plugin.js000066600000030557152141651130021653 0ustar00(function(){var b=tinymce.explode("id,name,width,height,style,align,class,hspace,vspace,bgcolor,type"),a=tinymce.makeMap(b.join(",")),f=tinymce.html.Node,d,i,h=tinymce.util.JSON,g;d=[["Flash","d27cdb6e-ae6d-11cf-96b8-444553540000","application/x-shockwave-flash","http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"],["ShockWave","166b1bca-3f9c-11cf-8075-444553540000","application/x-director","http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=8,5,1,0"],["WindowsMedia","6bf52a52-394a-11d3-b153-00c04f79faa6,22d6f312-b0f6-11d0-94ab-0080c74c7e95,05589fa1-c356-11ce-bf01-00aa0055595a","application/x-mplayer2","http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"],["QuickTime","02bf25d5-8c17-4b23-bc80-d3488abddc6b","video/quicktime","http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0"],["RealMedia","cfcdaa03-8be4-11cf-b84b-0020afbbccfa","audio/x-pn-realaudio-plugin","http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"],["Java","8ad9c840-044e-11d1-b3e9-00805f499d93","application/x-java-applet","http://java.sun.com/products/plugin/autodl/jinstall-1_5_0-windows-i586.cab#Version=1,5,0,0"],["Silverlight","dfeaf541-f3e1-4c24-acac-99c30715084a","application/x-silverlight-2"],["Iframe"],["Video"],["EmbeddedAudio"],["Audio"]];function e(j){return typeof(j)=="string"?j.replace(/[^0-9%]/g,""):j}function c(m){var l,j,k;if(m&&!m.splice){j=[];for(k=0;true;k++){if(m[k]){j[k]=m[k]}else{break}}return j}return m}tinymce.create("tinymce.plugins.MediaPlugin",{init:function(n,j){var r=this,l={},m,p,q,k;function o(s){return s&&s.nodeName==="IMG"&&n.dom.hasClass(s,"mceItemMedia")}r.editor=n;r.url=j;i="";for(m=0;m0){O+=(O?"&":"")+P+"="+escape(Q)}});if(O.length){G.params.flashvars=O}L=p.getParam("flash_video_player_params",{allowfullscreen:true,allowscriptaccess:true});tinymce.each(L,function(Q,P){G.params[P]=""+Q})}}G=z.attr("data-mce-json");if(!G){return}G=h.parse(G);q=this.getType(z.attr("class"));B=z.attr("data-mce-style");if(!B){B=z.attr("style");if(B){B=p.dom.serializeStyle(p.dom.parseStyle(B,"img"))}}G.width=z.attr("width")||G.width;G.height=z.attr("height")||G.height;if(q.name==="Iframe"){x=new f("iframe",1);tinymce.each(b,function(n){var J=z.attr(n);if(n=="class"&&J){J=J.replace(/mceItem.+ ?/g,"")}if(J&&J.length>0){x.attr(n,J)}});for(I in G.params){x.attr(I,G.params[I])}x.attr({style:B,src:G.params.src});z.replace(x);return}if(this.editor.settings.media_use_script){x=new f("script",1).attr("type","text/javascript");y=new f("#text",3);y.value="write"+q.name+"("+h.serialize(tinymce.extend(G.params,{width:z.attr("width"),height:z.attr("height")}))+");";x.append(y);z.replace(x);return}if(q.name==="Video"&&G.video.sources[0]){C=new f("video",1).attr(tinymce.extend({id:z.attr("id"),width:e(z.attr("width")),height:e(z.attr("height")),style:B},G.video.attrs));if(G.video.attrs){l=G.video.attrs.poster}k=G.video.sources=c(G.video.sources);for(A=0;A'); function get(id) { return document.getElementById(id); } function clone(obj) { var i, len, copy, attr; if (null == obj || "object" != typeof obj) return obj; // Handle Array if ('length' in obj) { copy = []; for (i = 0, len = obj.length; i < len; ++i) { copy[i] = clone(obj[i]); } return copy; } // Handle Object copy = {}; for (attr in obj) { if (obj.hasOwnProperty(attr)) copy[attr] = clone(obj[attr]); } return copy; } function getVal(id) { var elm = get(id); if (elm.nodeName == "SELECT") return elm.options[elm.selectedIndex].value; if (elm.type == "checkbox") return elm.checked; return elm.value; } function setVal(id, value, name) { if (typeof(value) != 'undefined' && value != null) { var elm = get(id); if (elm.nodeName == "SELECT") selectByValue(document.forms[0], id, value); else if (elm.type == "checkbox") { if (typeof(value) == 'string') { value = value.toLowerCase(); value = (!name && value === 'true') || (name && value === name.toLowerCase()); } elm.checked = !!value; } else elm.value = value; } } window.Media = { init : function() { var html, editor, self = this; self.editor = editor = tinyMCEPopup.editor; // Setup file browsers and color pickers get('filebrowsercontainer').innerHTML = getBrowserHTML('filebrowser','src','media','media'); get('qtsrcfilebrowsercontainer').innerHTML = getBrowserHTML('qtsrcfilebrowser','quicktime_qtsrc','media','media'); get('bgcolor_pickcontainer').innerHTML = getColorPickerHTML('bgcolor_pick','bgcolor'); get('video_altsource1_filebrowser').innerHTML = getBrowserHTML('video_filebrowser_altsource1','video_altsource1','media','media'); get('video_altsource2_filebrowser').innerHTML = getBrowserHTML('video_filebrowser_altsource2','video_altsource2','media','media'); get('audio_altsource1_filebrowser').innerHTML = getBrowserHTML('audio_filebrowser_altsource1','audio_altsource1','media','media'); get('audio_altsource2_filebrowser').innerHTML = getBrowserHTML('audio_filebrowser_altsource2','audio_altsource2','media','media'); get('video_poster_filebrowser').innerHTML = getBrowserHTML('filebrowser_poster','video_poster','media','image'); html = self.getMediaListHTML('medialist', 'src', 'media', 'media'); if (html == "") get("linklistrow").style.display = 'none'; else get("linklistcontainer").innerHTML = html; if (isVisible('filebrowser')) get('src').style.width = '230px'; if (isVisible('video_filebrowser_altsource1')) get('video_altsource1').style.width = '220px'; if (isVisible('video_filebrowser_altsource2')) get('video_altsource2').style.width = '220px'; if (isVisible('audio_filebrowser_altsource1')) get('audio_altsource1').style.width = '220px'; if (isVisible('audio_filebrowser_altsource2')) get('audio_altsource2').style.width = '220px'; if (isVisible('filebrowser_poster')) get('video_poster').style.width = '220px'; editor.dom.setOuterHTML(get('media_type'), self.getMediaTypeHTML(editor)); self.setDefaultDialogSettings(editor); self.data = clone(tinyMCEPopup.getWindowArg('data')); self.dataToForm(); self.preview(); updateColor('bgcolor_pick', 'bgcolor'); }, insert : function() { var editor = tinyMCEPopup.editor; this.formToData(); editor.execCommand('mceRepaint'); tinyMCEPopup.restoreSelection(); editor.selection.setNode(editor.plugins.media.dataToImg(this.data)); tinyMCEPopup.close(); }, preview : function() { get('prev').innerHTML = this.editor.plugins.media.dataToHtml(this.data, true); }, moveStates : function(to_form, field) { var data = this.data, editor = this.editor, mediaPlugin = editor.plugins.media, ext, src, typeInfo, defaultStates, src; defaultStates = { // QuickTime quicktime_autoplay : true, quicktime_controller : true, // Flash flash_play : true, flash_loop : true, flash_menu : true, // WindowsMedia windowsmedia_autostart : true, windowsmedia_enablecontextmenu : true, windowsmedia_invokeurls : true, // RealMedia realmedia_autogotourl : true, realmedia_imagestatus : true }; function parseQueryParams(str) { var out = {}; if (str) { tinymce.each(str.split('&'), function(item) { var parts = item.split('='); out[unescape(parts[0])] = unescape(parts[1]); }); } return out; }; function setOptions(type, names) { var i, name, formItemName, value, list; if (type == data.type || type == 'global') { names = tinymce.explode(names); for (i = 0; i < names.length; i++) { name = names[i]; formItemName = type == 'global' ? name : type + '_' + name; if (type == 'global') list = data; else if (type == 'video' || type == 'audio') { list = data.video.attrs; if (!list && !to_form) data.video.attrs = list = {}; } else list = data.params; if (list) { if (to_form) { setVal(formItemName, list[name], type == 'video' || type == 'audio' ? name : ''); } else { delete list[name]; value = getVal(formItemName); if ((type == 'video' || type == 'audio') && value === true) value = name; if (defaultStates[formItemName]) { if (value !== defaultStates[formItemName]) { value = "" + value; list[name] = value; } } else if (value) { value = "" + value; list[name] = value; } } } } } } if (!to_form) { data.type = get('media_type').options[get('media_type').selectedIndex].value; data.width = getVal('width'); data.height = getVal('height'); // Switch type based on extension src = getVal('src'); if (field == 'src') { ext = src.replace(/^.*\.([^.]+)$/, '$1'); if (typeInfo = mediaPlugin.getType(ext)) data.type = typeInfo.name.toLowerCase(); setVal('media_type', data.type); } if (data.type == "video" || data.type == "audio") { if (!data.video.sources) data.video.sources = []; data.video.sources[0] = {src: getVal('src')}; } } // Hide all fieldsets and show the one active get('video_options').style.display = 'none'; get('audio_options').style.display = 'none'; get('flash_options').style.display = 'none'; get('quicktime_options').style.display = 'none'; get('shockwave_options').style.display = 'none'; get('windowsmedia_options').style.display = 'none'; get('realmedia_options').style.display = 'none'; get('embeddedaudio_options').style.display = 'none'; if (get(data.type + '_options')) get(data.type + '_options').style.display = 'block'; setVal('media_type', data.type); setOptions('flash', 'play,loop,menu,swliveconnect,quality,scale,salign,wmode,base,flashvars'); setOptions('quicktime', 'loop,autoplay,cache,controller,correction,enablejavascript,kioskmode,autohref,playeveryframe,targetcache,scale,starttime,endtime,target,qtsrcchokespeed,volume,qtsrc'); setOptions('shockwave', 'sound,progress,autostart,swliveconnect,swvolume,swstretchstyle,swstretchhalign,swstretchvalign'); setOptions('windowsmedia', 'autostart,enabled,enablecontextmenu,fullscreen,invokeurls,mute,stretchtofit,windowlessvideo,balance,baseurl,captioningid,currentmarker,currentposition,defaultframe,playcount,rate,uimode,volume'); setOptions('realmedia', 'autostart,loop,autogotourl,center,imagestatus,maintainaspect,nojava,prefetch,shuffle,console,controls,numloop,scriptcallbacks'); setOptions('video', 'poster,autoplay,loop,muted,preload,controls'); setOptions('audio', 'autoplay,loop,preload,controls'); setOptions('embeddedaudio', 'autoplay,loop,controls'); setOptions('global', 'id,name,vspace,hspace,bgcolor,align,width,height'); if (to_form) { if (data.type == 'video') { if (data.video.sources[0]) setVal('src', data.video.sources[0].src); src = data.video.sources[1]; if (src) setVal('video_altsource1', src.src); src = data.video.sources[2]; if (src) setVal('video_altsource2', src.src); } else if (data.type == 'audio') { if (data.video.sources[0]) setVal('src', data.video.sources[0].src); src = data.video.sources[1]; if (src) setVal('audio_altsource1', src.src); src = data.video.sources[2]; if (src) setVal('audio_altsource2', src.src); } else { // Check flash vars if (data.type == 'flash') { tinymce.each(editor.getParam('flash_video_player_flashvars', {url : '$url', poster : '$poster'}), function(value, name) { if (value == '$url') data.params.src = parseQueryParams(data.params.flashvars)[name] || data.params.src || ''; }); } setVal('src', data.params.src); } } else { src = getVal("src"); // YouTube *NEW* if (src.match(/youtu.be\/[a-z1-9.-_]+/)) { data.width = 425; data.height = 350; data.params.frameborder = '0'; data.type = 'iframe'; src = 'http://www.youtube.com/embed/' + src.match(/youtu.be\/([a-z1-9.-_]+)/)[1]; setVal('src', src); setVal('media_type', data.type); } // YouTube if (src.match(/youtube.com(.+)v=([^&]+)/)) { data.width = 425; data.height = 350; data.params.frameborder = '0'; data.type = 'iframe'; src = 'http://www.youtube.com/embed/' + src.match(/v=([^&]+)/)[1]; setVal('src', src); setVal('media_type', data.type); } // Google video if (src.match(/video.google.com(.+)docid=([^&]+)/)) { data.width = 425; data.height = 326; data.type = 'flash'; src = 'http://video.google.com/googleplayer.swf?docId=' + src.match(/docid=([^&]+)/)[1] + '&hl=en'; setVal('src', src); setVal('media_type', data.type); } if (data.type == 'video') { if (!data.video.sources) data.video.sources = []; data.video.sources[0] = {src : src}; src = getVal("video_altsource1"); if (src) data.video.sources[1] = {src : src}; src = getVal("video_altsource2"); if (src) data.video.sources[2] = {src : src}; } else if (data.type == 'audio') { if (!data.video.sources) data.video.sources = []; data.video.sources[0] = {src : src}; src = getVal("audio_altsource1"); if (src) data.video.sources[1] = {src : src}; src = getVal("audio_altsource2"); if (src) data.video.sources[2] = {src : src}; } else data.params.src = src; // Set default size setVal('width', data.width || (data.type == 'audio' ? 300 : 320)); setVal('height', data.height || (data.type == 'audio' ? 32 : 240)); } }, dataToForm : function() { this.moveStates(true); }, formToData : function(field) { if (field == "width" || field == "height") this.changeSize(field); if (field == 'source') { this.moveStates(false, field); setVal('source', this.editor.plugins.media.dataToHtml(this.data)); this.panel = 'source'; } else { if (this.panel == 'source') { this.data = clone(this.editor.plugins.media.htmlToData(getVal('source'))); this.dataToForm(); this.panel = ''; } this.moveStates(false, field); this.preview(); } }, beforeResize : function() { this.width = parseInt(getVal('width') || (this.data.type == 'audio' ? "300" : "320"), 10); this.height = parseInt(getVal('height') || (this.data.type == 'audio' ? "32" : "240"), 10); }, changeSize : function(type) { var width, height, scale, size; if (get('constrain').checked) { width = parseInt(getVal('width') || (this.data.type == 'audio' ? "300" : "320"), 10); height = parseInt(getVal('height') || (this.data.type == 'audio' ? "32" : "240"), 10); if (type == 'width') { this.height = Math.round((width / this.width) * height); setVal('height', this.height); } else { this.width = Math.round((height / this.height) * width); setVal('width', this.width); } } }, getMediaListHTML : function() { if (typeof(tinyMCEMediaList) != "undefined" && tinyMCEMediaList.length > 0) { var html = ""; html += ''; return html; } return ""; }, getMediaTypeHTML : function(editor) { function option(media_type, element) { if (!editor.schema.getElementRule(element || media_type)) { return ''; } return '' } var html = ""; html += ''; return html; }, setDefaultDialogSettings : function(editor) { var defaultDialogSettings = editor.getParam("media_dialog_defaults", {}); tinymce.each(defaultDialogSettings, function(v, k) { setVal(k, v); }); } }; tinyMCEPopup.requireLangPack(); tinyMCEPopup.onInit.add(function() { Media.init(); }); })(); assets/lib/wck-api/assets/js/tiny_mce/plugins/media/js/embed.js000066600000003511152141651130020465 0ustar00/** * This script contains embed functions for common plugins. This scripts are complety free to use for any purpose. */ function writeFlash(p) { writeEmbed( 'D27CDB6E-AE6D-11cf-96B8-444553540000', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0', 'application/x-shockwave-flash', p ); } function writeShockWave(p) { writeEmbed( '166B1BCA-3F9C-11CF-8075-444553540000', 'http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=8,5,1,0', 'application/x-director', p ); } function writeQuickTime(p) { writeEmbed( '02BF25D5-8C17-4B23-BC80-D3488ABDDC6B', 'http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0', 'video/quicktime', p ); } function writeRealMedia(p) { writeEmbed( 'CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0', 'audio/x-pn-realaudio-plugin', p ); } function writeWindowsMedia(p) { p.url = p.src; writeEmbed( '6BF52A52-394A-11D3-B153-00C04F79FAA6', 'http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701', 'application/x-mplayer2', p ); } function writeEmbed(cls, cb, mt, p) { var h = '', n; h += ''; h += '*:Ӓ36 .ϰEYh4wΒkO :w$r2&Q= 2HrZ,Q]YxQ]-Mԁ\a-/ uPZRRR򩂃 xb?~-皚)MY9f}`Y;DJ*j| u[س|}跩84v>[g4ekS;9)Qm<([[mC@Sfy6%v Sئv5M67h䴩 uau6Ҭ6b n@\K^v&H}ͳ/=bҧO&l^ɐg6Чqx9$Kg4Xam{s3ځVP=Yځ:ْۦv8$-f)7O؆& Pgfx;FeY2Ek)W9Z Fϵ N+9pblL$2, 9Yee)͸TCSqvo#o 9:TrthVۿyϦAEm&mCʙ?r1̬\VRٹU1 mnJ\(:hUV4ꄳl,]f%({DV^745!u:Nh>-zw>I[8m~FCN?J*:gS})}v/^L5w>>yww[>mwVor,0/B^?40geq3:%}w3qz-ι0ϟ0J/ѠRD:7s~|zԃktPC{z_QCj8w3_9Drگ=d_ߟe;qYџ^j׮]'׳KSj ۴yKz|IoOOh&=D̩'Yk;:sܝewݓԊU[<{pyca{D`F߹{WG]{~v2y[[^G-=1yy_s]>r5V֫d}W_IJ-Ϭؙz+U7^XcիWl߳ڛӸ!5ӂwo=[?qЪ4m/}Ǖ ۾ #Q}nTzkhȩE7'?i2;ꋙ]nu䧒ޟ|es3Y~ScLﶶz"ɶGa߸8/~U7.vN]'W^4%k[A(:5bec Kskf\T{>ù9G{,02VLkY\2мDXcݫ +Vg6;u֢ Qc|dGXj~bq3ac8yŻZd]yɟd既Çmi}kۘO//#Q/ |t\ٝS|vq;}{/x|UovY\ӳF;?&TsCtJҋ7#Ok;o+_}x“ٕ/rJ7Z[6./fly钺ͬv~ɼעcwD m?V}ŭGG++|-?ڞgj?Zs|U :ϦW_ŻD\L+z`uﮎ Դ˖cTjb}K>>E cTP=N?M:/D^gفVUIʂA͟|wpMƜ}Jv.{ѩ&ܻ_nT^~W\=!~mΛEi sׯl}n==%jI/Z_dph|?fW|pu7>TVmNɾۃ^~V+˅ǷmѢEjTpyL:'\7<^ rryV/~#œgo?MW/=68Ǜ=jCCpy COE)T>tWx2Ou:6pǭaEr:}lSsۤ\3`◱C^MzkMG۷Ov ~VOMƎ¤z&}w;:큺ie1*ϞwoeCTL͙}$̜~e͒ si_ye)vlxkuHD|]#7=3dtzo+cw86=̣IFX`BBրIܮsy;K|Wu}Mc-?筛g%Og70Sڼx;tdQp͞[o5ol[ߧy*%=\W5b~^#R;Oxf5ͭ?Bs۶=Rr&YK_/>n?L~zf8s=&4!I7eV\i:64MWjO/ۼ5?1KՌL ^uIи™!m<ЁeOP}˔k{ϛ6muˊ~5xgҲ%lmSG.zAJ +a6ozVz +)aπ+OpbY؃S|O;ں/\ٔ{ݚ(†Y恵OxCdZ~޼Oݫ_MO'5 wǩnbw_P빗ϊO[30&쵫?m:;aգU5ڞ ϝ+o5=dӵLɎ_ngft>*g̾fl뗾tO7n?_>+<~=QnT`+qOm36%yj'+[g`y87N|JBH/YI7a+-ZgmWt+sG^|^[AKjKN=5j#n|Wc}}AZ{/T8t rNg>0#3g=@l%7~ckf|z 7O%-̹F6\n ͿO=kp&߀gooS4O<&wj4믯&9s?U؞jڨc4uquo]:\M[-(K U撃ϓ_4pu/[卟|XMPZ]ҼU.aaھ{*4o ,}cBHVn̜A=#>bT B!XζY%l ao=cAh˅ R*^H5:WW-Ѧ8qyfs"G`eY\^6AYL6>i׼ Bd dCJۛlYWΊ.<#ED"rMkl"1 pO_NGkX!Ooɒw/\yR6J?t;s ?V[ dR)ڽ-גϵV!Q =()Xk劃˓ 3͙7RqޒD6G/,M:YCu\w|wvύ1`|>A*H` XtUr\&ق'l3^mjkliNYmf&&MeUXuZqkNth,xga,C҃Y PDKE!Wϔw>˒6Y8PI }hl~p[a=~wZ-{|OewCjodTL(֦3sF/k$V|l?m.=YZ Cl{޲\Dk1j%R*^AzAUPeӷw]kI1S.LfЅV9\nsvkgdhI44ґUm)Y9JTavOɖ*[(1QI[UkyN\Şt<= :[֜C%?皻׉JX.*[W!av.S irʝK˕}*Χ3r`"= ձљl>Xr2ݪuJ+5K^3%f2[&׊A\>a0oCI2#Huץ"2oli0< ܹ68UZn9 #-n~ʩlU-GM;SiJŗPnn^WYdNQ]A3{\ZJs(wی`Ta٫SohVF]v{]p. J,3Ĭz&,*ptz6PSΥz++e bLd]AQqD:ka9'MON/dzdp^ޥOʼW^SXNdֽ۽D{IdmA!CVe͵ʨ˙+Ϧ{tuDQJ% ryjc9l +*Īut(x:5ztN:EwtbĦn~Η䬟JlUl.p@DK91{l jw)P1roξf[5 =b'kz4 mڸyx*?f[xz0XYCUOrỲWC{$1){x>$vd:Չ'&i)X @^A\m͊~Iӡݑ= `g2)6jiΉJŘOܽS`2yic$E?z6KPP]y^;fuդ%Dw[U :4OODTB',pcr`js&DzLfzB,Vxde1>!qy,zɻk@"`\rY0Yn4(JT{}"  9?06bN~d 5b,'8Rf [bX+h3?Z$)2\p9zsb6ho[ 4RY+,P`˥!X4n(YfD?W8k9:ĐaҚK!tX4ڒf1i3: ,w,#CdYOS<9`zx oɵraTC=8,ֲ! aPF]/vptZmd>}Ii A[7~ RBDumנcE76IOj:}RB5JENPFdyz0t9zҷ!Zד~l :P}ϑn<(|+Mz b@-wEa2g&o %v ~*2e?A?HU/a]q=~DoD*keO+xd H>R~_Ery&b\9MXQp|@` v ,ZBN$쏛xN<&R<3QuO蚔yFgLR)#k {::fg QR)8`T !IjN_T?IlB\*~ ({X 32RѾA$XLDgks:KΐnTKYUܞLӝ!t>k$Rk^C pPsc@m8 !)}S6NzPqp,2ol:k0@OKŐ?%>_?, H i@ DzX6Pڍ{q>hbp〿C˞Ddl9}Ҹ)RN*EJ1" -VJ)%UR*ᠸW~@Uh𸏫!bTM6kޢe+TḵMX2maYOFs1 :'2;WRk+,Q.&[VemZ=lL TQCJ{ KV RA |%,U . ZPGY= .D5x m$HCE |l"ংl.([ʖgHl-(^me;e (ce((; xA (?eAUAMP~"( 8I% %#ྂ_S.M_s2?)?O3 ~&7@3 ~Y_gr,Wq &< ~ ~gB_ 0,XP|@[,4V,`DI|0`tf0`\y,X` Re?,X`jk ɿŜk 7 0t&xx3v1vx”1 a S0v0,TP<BQc?Ϗ8 p \!T8r u u[uCE_o|w?\:  p.0v z ,x 5J!d8F|-(cA=L BÉDh4` SAtX` 2" B*P^`z!l;<]Dws `/>h@t1>D#P> p qx'9/xD49"?Ox$(^_q \;PT?tM[D ; p><x )PK":CD_KP5"f 0N P F 0`<'qB$D>'$K699W )|ϩsB8y=P38wD&@dpel9sX`b%K9!fz`Mfo `;Oqh90 bwɇ(`?WU琎 Gy z`PS$'_zb7> } V \9(n pP'o({ \"% '`r^8/sP5/!-]j)5p`% ㅘVy3_I@jd#! 0`L9Oɼ| }N{aL)82.ė.]_/#T+1-r?X3HUH?Tf*gRבʐC+rQP*l*Å9?ked'%6, Ͽ!ʔ'u »d)a91_HH  )j@C\5TI ԤI $\-^B,eBr"PxxP OJyP| "(yz ƨ$!C?NP/%A)_r(+҆IiC.c8t# 9r!gH 9Hș ׿r[HFA= ,Ѣѐ8rc g 9X千\8 !7; rM D}9r_M0=94OF@ʡ!h$ę੐~A-D?@~4Drhx69:υt"mJ|/a*!]R8yS!ʩei3 f吟i4b]*+fļu\xkyA!@Z-k :0Z/ ~!:hA q M0Րrh DXucbp6nĀ6n;!݂wvv=X^ Ѹڃ/X"`'b0h]hD;c#>A6O@I1:Bj*"1=JtTŨf=yt@t$K)(zB_8ElYz9Xgo,9H/@U+%HĿAz_M;Bz_һ:p ,MP/1G]`v7J-#oâT*ƐT!%h$i܇[HAȏ1FEc!%hyG)AcO @J)BJ4 !%3 %h&yY4ty\yrh>yrh!y Erh1y%ҥj5yCHsEJ0ɫא&#!]C`yY!h=)uɷnC(oC[h U!R@X"%L)&x<\#R ? D* MϢ n!x6epg0:ѯ= F/Iw\ ¯| h9kTu9\W7VIG8GdH axrPh0 $x3?Sy_0= 1iOx g}5<}q&a|Ux!Y-AMEX%_ *Dp\c,sp/=җ ]IWjbXC손8(?\n YRpaB:N 롽a İʑa3IDE$a.ҷVFt>~EN"i N"*BvM$@k+@+*텆a1$ mhxG!g0 S،i]$ RLAOQȹY85X]u&{Bf$ДhW.!9LPj`c@AFІzfP'!"~696(sQzA0lqAR[@Ezh N=I,="(S3vP:H,{Q}S:h:0Y=E v-=>h)rxӹVPLۃЂ4IB=,0I'>x!aMR&z7!g7`7Ԃpt5㦳jI:gX|q F R^w[ <$l9-<糪D8{J* A 90cY:o9Db"9XN% H;0 ߑv Wai*L$픮$ULy9 p vCK=[ |!Ƃ\6J@Q5H/eW<AB,AqIAO]G,4\!!g-dD"T;1AԯHCA@.#4&z&(bBU JQJ G+ьoll *P NiiқTjh ,s@r, \9PFR9;COz'kotCӥ[C<v~PHiWAUEP6&GC|-",wEqw ɣ]Kl/\w$l9.\K)-^/y).i{Z2."XkLO[`'bִ>TEae 5 JPw|L*KuUl jv}o:vC -RIE)Y!@cJrֵQ$<$O OD+׃^:1j": 1$u,Q$Ʊ$uQ&q$u7B=ʋ%/9\Y4VEꙘVpaURI I{C(3'u#ގcI5qM1Z[ 'Ɂ"f ơf jʪxKƚ,Kʩ_'NVO'cvf͞)*NcW^gH4g1oG)aBtzo Yv\ ь3xV֌P1d7 > PܵzT(tY(RR80rNZU |yF]щBK?1:ZV!lBr IK 6$pQQ7Q9Y Z%ԃJf M(D7Bm8e[KTn-map_9хZAF}Q v*m`lLR|P)Iȵk/ZĵkI 9!Q^<OƱkM}(Dݯd7$I,'2F_t_5T۵ S?2Zekh=톞XH6SCta&U_uY"\l7$zRޒv9V="B8^vC/ƉRn-"DOz3^QD׈}j-tXvېhF1 5f ; "3Mdڻ-qn1`5IL$Q)JThehNG Z*SqS9Tz @k?vZԊէƪ> hłv1zqD[WwbAQ B-WnLEcFڻ WŢ&E*ȍPoj>C6L1$"鄤`h:l!Nfp5L}4CRH ^0]"Y=UUꄩLX1t_BxVN +WdOIh@N t=&8c{Jf]wN$F`:N@;9};"<[ $&)ASŀ| ] ~C>1$00(. zRG<^üm(BۘF5WwzMWzEWP )q`/ U *N!8J'T@VLJ;dJNqǖ:x.u.%8[g镏N|$q&-q{7G\R r; bt '!V>O~{I٬lesVZP)}L&cgh@LG|oC"Po`1!(ҿ'X3,D[a 1ORgeNz=Q ?R*C4iD9 TF&N7|1@uK:1y"0!2b-Ņ؅ P-/XvrDi.؂Ey*"3}bx?02'+sÝ(+ax%V5 KSٹUn; ;tV3*{"ҫH?b^]nH/*7ҏťהCz.K!KKI-rI/+:7OX!j9I?aUͅTN-/gn=eí`ñ Ӌq8ұ6Tc,g nc=cc*] 匵m՞HF6Rkd/"BF2|? 9vJ }וӶѶL>kaΨ oͣlmā+! fF_ VN?[J^`05M%1"kqN:!{P|X1R_RSۀ H KHPk\Ik7eԥe36L%E]LڙBqѢQ%>+̸SVfW>!"ٛJ( ՛JY?HX 3k2"*ET(x=OpdaUD"j2*QEMe?*ER0-LZ8ϯC^b Kv-G/]5v%:J681lK.zOPpvL/\??Q*@eTa OlK|{R.JyOzyݔn.RgUR ntu͠3 x^%p0)NmԅSsӜ >˩qHبzx ?SƵ6q 6sxOF$:INnK3 a G$CR*-!>KJ2 `@8Ϥ\ٔ"m0wNמrq8R'} cptZ Dqި`fqTKQlJ& I⦒"t?(Poȇ"8MX5-W 5%}:HS9%<{s^ > 'n؋<;8l<5pP 2e£+02Ψ_0L}'fALŮ T(性l8d܋}j 1`ãZA켢*AJ88Ѯ)5pX{+|ωٸAtl#߽{J 6KFH q?N银iŭA{WiwL@y2d0}y'4vbCy`Nj2ŎJW ӱKE;#]80 Qwwt@$54G0*3Ec<& 胰PؓL:AK_;9enT]XRuuhP"0lw*:vt |;om3.ELBAqIIԛq&IE[qIMۈq6e4S`ݕ7 3nlY}ΥUctVLJE9/6>.ʛXq*N  =t;dMcjL\E"UOQn47O"ewiq!fF@7B6ph˘v?!_яyBp^VЏ6 8qv0}Fp4!`7ر7xN~SG=jdBxAC1B|˃^89z_(ǃZfdboS1_I]b0!}NXKd|̩DFƩ#}7 8.n q!/kxP2a<)7 KbLōz&Zfif}oaH#h\ @-Lx4Ǹ\`ǃ@yākncB"-\`(RlR7ʟ~s@0U1hHZhD#2 PԹ W\9[Q2SaElGZ0R\oRY"EPTZ_l;;;AEXC.KxyzX .cPط2#CRmہb8ߴO,7vG~%jǥ쇼z9^AWPH\*vlEڄI<=7Лn@ɐWҳjt 8Dŵ"zԟq" V2G:R)Dո(~:gQZI΢\΢B5SEH(w<(NĎiV/UODώU(T8߉C1諪 ŽQ׉Ѡ u WB%-mɷ%7#/ƻt_w%П07H=M!vQ.RO.SLȦGN'A 4TfGm.]ї΀j-I0NaTC2VC! {38[*ePztz CS1խȋ7#wI| 8?7\|Itv_ ?ØH.C؉p);!E<qq gځ0[(wJsR⢼((Y%hiШ}ӏ#i< YaWAP h{l 7y<{j FQ_YSds+H!|BY? Qhϟ_$i3V@߽0 0) flashVarsOutput += (flashVarsOutput ? '&' : '') + name + '=' + escape(value); }); if (flashVarsOutput.length) data.params.flashvars = flashVarsOutput; params = editor.getParam('flash_video_player_params', { allowfullscreen: true, allowscriptaccess: true }); tinymce.each(params, function(value, name) { data.params[name] = "" + value; }); } }; data = node.attr('data-mce-json'); if (!data) return; data = JSON.parse(data); typeItem = this.getType(node.attr('class')); style = node.attr('data-mce-style') if (!style) { style = node.attr('style'); if (style) style = editor.dom.serializeStyle(editor.dom.parseStyle(style, 'img')); } // Use node width/height to override the data width/height when the placeholder is resized data.width = node.attr('width') || data.width; data.height = node.attr('height') || data.height; // Handle iframe if (typeItem.name === 'Iframe') { replacement = new Node('iframe', 1); tinymce.each(rootAttributes, function(name) { var value = node.attr(name); if (name == 'class' && value) value = value.replace(/mceItem.+ ?/g, ''); if (value && value.length > 0) replacement.attr(name, value); }); for (name in data.params) replacement.attr(name, data.params[name]); replacement.attr({ style: style, src: data.params.src }); node.replace(replacement); return; } // Handle scripts if (this.editor.settings.media_use_script) { replacement = new Node('script', 1).attr('type', 'text/javascript'); value = new Node('#text', 3); value.value = 'write' + typeItem.name + '(' + JSON.serialize(tinymce.extend(data.params, { width: node.attr('width'), height: node.attr('height') })) + ');'; replacement.append(value); node.replace(replacement); return; } // Add HTML5 video element if (typeItem.name === 'Video' && data.video.sources[0]) { // Create new object element video = new Node('video', 1).attr(tinymce.extend({ id : node.attr('id'), width: normalizeSize(node.attr('width')), height: normalizeSize(node.attr('height')), style : style }, data.video.attrs)); // Get poster source and use that for flash fallback if (data.video.attrs) posterSrc = data.video.attrs.poster; sources = data.video.sources = toArray(data.video.sources); for (i = 0; i < sources.length; i++) { if (/\.mp4$/.test(sources[i].src)) mp4Source = sources[i].src; } if (!sources[0].type) { video.attr('src', sources[0].src); sources.splice(0, 1); } for (i = 0; i < sources.length; i++) { source = new Node('source', 1).attr(sources[i]); source.shortEnded = true; video.append(source); } // Create flash fallback for video if we have a mp4 source if (mp4Source) { addPlayer(mp4Source, posterSrc); typeItem = self.getType('flash'); } else data.params.src = ''; } // Add HTML5 audio element if (typeItem.name === 'Audio' && data.video.sources[0]) { // Create new object element audio = new Node('audio', 1).attr(tinymce.extend({ id : node.attr('id'), width: normalizeSize(node.attr('width')), height: normalizeSize(node.attr('height')), style : style }, data.video.attrs)); // Get poster source and use that for flash fallback if (data.video.attrs) posterSrc = data.video.attrs.poster; sources = data.video.sources = toArray(data.video.sources); if (!sources[0].type) { audio.attr('src', sources[0].src); sources.splice(0, 1); } for (i = 0; i < sources.length; i++) { source = new Node('source', 1).attr(sources[i]); source.shortEnded = true; audio.append(source); } data.params.src = ''; } if (typeItem.name === 'EmbeddedAudio') { embed = new Node('embed', 1); embed.shortEnded = true; embed.attr({ id: node.attr('id'), width: normalizeSize(node.attr('width')), height: normalizeSize(node.attr('height')), style : style, type: node.attr('type') }); for (name in data.params) embed.attr(name, data.params[name]); tinymce.each(rootAttributes, function(name) { if (data[name] && name != 'type') embed.attr(name, data[name]); }); data.params.src = ''; } // Do we have a params src then we can generate object if (data.params.src) { // Is flv movie add player for it if (/\.flv$/i.test(data.params.src)) addPlayer(data.params.src, ''); if (args && args.force_absolute) data.params.src = editor.documentBaseURI.toAbsolute(data.params.src); // Create new object element object = new Node('object', 1).attr({ id : node.attr('id'), width: normalizeSize(node.attr('width')), height: normalizeSize(node.attr('height')), style : style }); tinymce.each(rootAttributes, function(name) { var value = data[name]; if (name == 'class' && value) value = value.replace(/mceItem.+ ?/g, ''); if (value && name != 'type') object.attr(name, value); }); // Add params for (name in data.params) { param = new Node('param', 1); param.shortEnded = true; value = data.params[name]; // Windows media needs to use url instead of src for the media URL if (name === 'src' && typeItem.name === 'WindowsMedia') name = 'url'; param.attr({name: name, value: value}); object.append(param); } // Setup add type and classid if strict is disabled if (this.editor.getParam('media_strict', true)) { object.attr({ data: data.params.src, type: typeItem.mimes[0] }); } else { object.attr({ classid: "clsid:" + typeItem.clsids[0], codebase: typeItem.codebase }); embed = new Node('embed', 1); embed.shortEnded = true; embed.attr({ id: node.attr('id'), width: normalizeSize(node.attr('width')), height: normalizeSize(node.attr('height')), style : style, type: typeItem.mimes[0] }); for (name in data.params) embed.attr(name, data.params[name]); tinymce.each(rootAttributes, function(name) { if (data[name] && name != 'type') embed.attr(name, data[name]); }); object.append(embed); } // Insert raw HTML if (data.object_html) { value = new Node('#text', 3); value.raw = true; value.value = data.object_html; object.append(value); } // Append object to video element if it exists if (video) video.append(object); } if (video) { // Insert raw HTML if (data.video_html) { value = new Node('#text', 3); value.raw = true; value.value = data.video_html; video.append(value); } } if (audio) { // Insert raw HTML if (data.video_html) { value = new Node('#text', 3); value.raw = true; value.value = data.video_html; audio.append(value); } } var n = video || audio || object || embed; if (n) node.replace(n); else node.remove(); }, /** * Converts a tinymce.html.Node video/object/embed to an img element. * * The video/object/embed will be converted into an image placeholder with a JSON data attribute like this: * * * The JSON structure will be like this: * {'params':{'flashvars':'something','quality':'high','src':'someurl'}, 'video':{'sources':[{src: 'someurl', type: 'video/mp4'}]}} */ objectToImg : function(node) { var object, embed, video, iframe, img, name, id, width, height, style, i, html, param, params, source, sources, data, type, lookup = this.lookup, matches, attrs, urlConverter = this.editor.settings.url_converter, urlConverterScope = this.editor.settings.url_converter_scope, hspace, vspace, align, bgcolor; function getInnerHTML(node) { return new tinymce.html.Serializer({ inner: true, validate: false }).serialize(node); }; function lookupAttribute(o, attr) { return lookup[(o.attr(attr) || '').toLowerCase()]; } function lookupExtension(src) { var ext = src.replace(/^.*\.([^.]+)$/, '$1'); return lookup[ext.toLowerCase() || '']; } // If node isn't in document if (!node.parent) return; // Handle media scripts if (node.name === 'script') { if (node.firstChild) matches = scriptRegExp.exec(node.firstChild.value); if (!matches) return; type = matches[1]; data = {video : {}, params : JSON.parse(matches[2])}; width = data.params.width; height = data.params.height; } // Setup data objects data = data || { video : {}, params : {} }; // Setup new image object img = new Node('img', 1); img.attr({ src : this.editor.theme.url + '/img/trans.gif' }); // Video element name = node.name; if (name === 'video' || name == 'audio') { video = node; object = node.getAll('object')[0]; embed = node.getAll('embed')[0]; width = video.attr('width'); height = video.attr('height'); id = video.attr('id'); data.video = {attrs : {}, sources : []}; // Get all video attributes attrs = data.video.attrs; for (name in video.attributes.map) attrs[name] = video.attributes.map[name]; source = node.attr('src'); if (source) data.video.sources.push({src : urlConverter.call(urlConverterScope, source, 'src', node.name)}); // Get all sources sources = video.getAll("source"); for (i = 0; i < sources.length; i++) { source = sources[i].remove(); data.video.sources.push({ src: urlConverter.call(urlConverterScope, source.attr('src'), 'src', 'source'), type: source.attr('type'), media: source.attr('media') }); } // Convert the poster URL if (attrs.poster) attrs.poster = urlConverter.call(urlConverterScope, attrs.poster, 'poster', node.name); } // Object element if (node.name === 'object') { object = node; embed = node.getAll('embed')[0]; } // Embed element if (node.name === 'embed') embed = node; // Iframe element if (node.name === 'iframe') { iframe = node; type = 'Iframe'; } if (object) { // Get width/height width = width || object.attr('width'); height = height || object.attr('height'); style = style || object.attr('style'); id = id || object.attr('id'); hspace = hspace || object.attr('hspace'); vspace = vspace || object.attr('vspace'); align = align || object.attr('align'); bgcolor = bgcolor || object.attr('bgcolor'); data.name = object.attr('name'); // Get all object params params = object.getAll("param"); for (i = 0; i < params.length; i++) { param = params[i]; name = param.remove().attr('name'); if (!excludedAttrs[name]) data.params[name] = param.attr('value'); } data.params.src = data.params.src || object.attr('data'); } if (embed) { // Get width/height width = width || embed.attr('width'); height = height || embed.attr('height'); style = style || embed.attr('style'); id = id || embed.attr('id'); hspace = hspace || embed.attr('hspace'); vspace = vspace || embed.attr('vspace'); align = align || embed.attr('align'); bgcolor = bgcolor || embed.attr('bgcolor'); // Get all embed attributes for (name in embed.attributes.map) { if (!excludedAttrs[name] && !data.params[name]) data.params[name] = embed.attributes.map[name]; } } if (iframe) { // Get width/height width = normalizeSize(iframe.attr('width')); height = normalizeSize(iframe.attr('height')); style = style || iframe.attr('style'); id = iframe.attr('id'); hspace = iframe.attr('hspace'); vspace = iframe.attr('vspace'); align = iframe.attr('align'); bgcolor = iframe.attr('bgcolor'); tinymce.each(rootAttributes, function(name) { img.attr(name, iframe.attr(name)); }); // Get all iframe attributes for (name in iframe.attributes.map) { if (!excludedAttrs[name] && !data.params[name]) data.params[name] = iframe.attributes.map[name]; } } // Use src not movie if (data.params.movie) { data.params.src = data.params.src || data.params.movie; delete data.params.movie; } // Convert the URL to relative/absolute depending on configuration if (data.params.src) data.params.src = urlConverter.call(urlConverterScope, data.params.src, 'src', 'object'); if (video) { if (node.name === 'video') type = lookup.video.name; else if (node.name === 'audio') type = lookup.audio.name; } if (object && !type) type = (lookupAttribute(object, 'clsid') || lookupAttribute(object, 'classid') || lookupAttribute(object, 'type') || {}).name; if (embed && !type) type = (lookupAttribute(embed, 'type') || lookupExtension(data.params.src) || {}).name; // for embedded audio we preserve the original specified type if (embed && type == 'EmbeddedAudio') { data.params.type = embed.attr('type'); } // Replace the video/object/embed element with a placeholder image containing the data node.replace(img); // Remove embed if (embed) embed.remove(); // Serialize the inner HTML of the object element if (object) { html = getInnerHTML(object.remove()); if (html) data.object_html = html; } // Serialize the inner HTML of the video element if (video) { html = getInnerHTML(video.remove()); if (html) data.video_html = html; } data.hspace = hspace; data.vspace = vspace; data.align = align; data.bgcolor = bgcolor; // Set width/height of placeholder img.attr({ id : id, 'class' : 'mceItemMedia mceItem' + (type || 'Flash'), style : style, width : width || (node.name == 'audio' ? "300" : "320"), height : height || (node.name == 'audio' ? "32" : "240"), hspace : hspace, vspace : vspace, align : align, bgcolor : bgcolor, "data-mce-json" : JSON.serialize(data, "'") }); } }); // Register plugin tinymce.PluginManager.add('media', tinymce.plugins.MediaPlugin); })(); assets/lib/wck-api/assets/js/tiny_mce/tiny_mce_popup.js000066600000011250152141651130017266 0ustar00 // Uncomment and change this document.domain value if you are loading the script cross subdomains // document.domain = 'moxiecode.com'; var tinymce=null,tinyMCEPopup,tinyMCE;tinyMCEPopup={init:function(){var b=this,a,c;a=b.getWin();tinymce=a.tinymce;tinyMCE=a.tinyMCE;b.editor=tinymce.EditorManager.activeEditor;b.params=b.editor.windowManager.params;b.features=b.editor.windowManager.features;b.dom=b.editor.windowManager.createInstance("tinymce.dom.DOMUtils",document,{ownEvents:true,proxy:tinyMCEPopup._eventProxy});b.dom.bind(window,"ready",b._onDOMLoaded,b);if(b.features.popup_css!==false){b.dom.loadCSS(b.features.popup_css||b.editor.settings.popup_css)}b.listeners=[];b.onInit={add:function(e,d){b.listeners.push({func:e,scope:d})}};b.isWindow=!b.getWindowArg("mce_inline");b.id=b.getWindowArg("mce_window_id");b.editor.windowManager.onOpen.dispatch(b.editor.windowManager,window)},getWin:function(){return(!window.frameElement&&window.dialogArguments)||opener||parent||top},getWindowArg:function(c,b){var a=this.params[c];return tinymce.is(a)?a:b},getParam:function(b,a){return this.editor.getParam(b,a)},getLang:function(b,a){return this.editor.getLang(b,a)},execCommand:function(d,c,e,b){b=b||{};b.skip_focus=1;this.restoreSelection();return this.editor.execCommand(d,c,e,b)},resizeToInnerSize:function(){var a=this;setTimeout(function(){var b=a.dom.getViewPort(window);a.editor.windowManager.resizeBy(a.getWindowArg("mce_width")-b.w,a.getWindowArg("mce_height")-b.h,a.id||window)},10)},executeOnLoad:function(s){this.onInit.add(function(){eval(s)})},storeSelection:function(){this.editor.windowManager.bookmark=tinyMCEPopup.editor.selection.getBookmark(1)},restoreSelection:function(){var a=tinyMCEPopup;if(!a.isWindow&&tinymce.isIE){a.editor.selection.moveToBookmark(a.editor.windowManager.bookmark)}},requireLangPack:function(){var b=this,a=b.getWindowArg("plugin_url")||b.getWindowArg("theme_url");if(a&&b.editor.settings.language&&b.features.translate_i18n!==false&&b.editor.settings.language_load!==false){a+="/langs/"+b.editor.settings.language+"_dlg.js";if(!tinymce.ScriptLoader.isDone(a)){document.write('
        {#advanced_dlg.colorpicker_picker_title}

        {#advanced_dlg.colorpicker_palette_title}

        {#advanced_dlg.colorpicker_named_title}

        {#advanced_dlg.colorpicker_name}
        assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/charmap.htm000066600000004224152141651130021060 0ustar00 {#advanced_dlg.charmap_title}
         
         
         
         
         
        {#advanced_dlg.charmap_usage}
        assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/image.htm000066600000007566152141651130020543 0ustar00 {#advanced_dlg.image_title}
         
        x
        assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/about.htm000066600000005131152141651130020555 0ustar00 {#advanced_dlg.about_title}

        {#advanced_dlg.about_title}

        Version: ()

        TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control released as Open Source under LGPL by Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances.

        Copyright © 2003-2008, Moxiecode Systems AB, All rights reserved.

        For more information about this software visit the TinyMCE website.

        Got Moxie?

        {#advanced_dlg.about_loaded}

         

        assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/skins/default/dialog.css000066600000013013152141651140023454 0ustar00/* Generic */ body { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; scrollbar-3dlight-color:#F0F0EE; scrollbar-arrow-color:#676662; scrollbar-base-color:#F0F0EE; scrollbar-darkshadow-color:#DDDDDD; scrollbar-face-color:#E0E0DD; scrollbar-highlight-color:#F0F0EE; scrollbar-shadow-color:#F0F0EE; scrollbar-track-color:#F5F5F5; background:#F0F0EE; padding:0; margin:8px 8px 0 8px; } html {background:#F0F0EE;} td {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} textarea {resize:none;outline:none;} a:link, a:visited {color:black;} a:hover {color:#2B6FB6;} .nowrap {white-space: nowrap} /* Forms */ fieldset {margin:0; padding:4px; border:1px solid #919B9C; font-family:Verdana, Arial; font-size:10px;} legend {color:#2B6FB6; font-weight:bold;} label.msg {display:none;} label.invalid {color:#EE0000; display:inline;} input.invalid {border:1px solid #EE0000;} input {background:#FFF; border:1px solid #CCC;} input, select, textarea {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} input, select, textarea {border:1px solid #808080;} input.radio {border:1px none #000000; background:transparent; vertical-align:middle;} input.checkbox {border:1px none #000000; background:transparent; vertical-align:middle;} .input_noborder {border:0;} /* Buttons */ #insert, #cancel, input.button, .updateButton { border:0; margin:0; padding:0; font-weight:bold; width:94px; height:26px; background:url(img/buttons.png) 0 -26px; cursor:pointer; padding-bottom:2px; float:left; } #insert {background:url(img/buttons.png) 0 -52px} #cancel {background:url(img/buttons.png) 0 0; float:right} /* Browse */ a.pickcolor, a.browse {text-decoration:none} a.browse span {display:block; width:20px; height:18px; background:url(../../img/icons.gif) -860px 0; border:1px solid #FFF; margin-left:1px;} .mceOldBoxModel a.browse span {width:22px; height:20px;} a.browse:hover span {border:1px solid #0A246A; background-color:#B2BBD0;} a.browse span.disabled {border:1px solid white; opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)} a.browse:hover span.disabled {border:1px solid white; background-color:transparent;} a.pickcolor span {display:block; width:20px; height:16px; background:url(../../img/icons.gif) -840px 0; margin-left:2px;} .mceOldBoxModel a.pickcolor span {width:21px; height:17px;} a.pickcolor:hover span {background-color:#B2BBD0;} a.pickcolor:hover span.disabled {} /* Charmap */ table.charmap {border:1px solid #AAA; text-align:center} td.charmap, #charmap a {width:18px; height:18px; color:#000; border:1px solid #AAA; text-align:center; font-size:12px; vertical-align:middle; line-height: 18px;} #charmap a {display:block; color:#000; text-decoration:none; border:0} #charmap a:hover {background:#CCC;color:#2B6FB6} #charmap #codeN {font-size:10px; font-family:Arial,Helvetica,sans-serif; text-align:center} #charmap #codeV {font-size:40px; height:80px; border:1px solid #AAA; text-align:center} /* Source */ .wordWrapCode {vertical-align:middle; border:1px none #000000; background:transparent;} .mceActionPanel {margin-top:5px;} /* Tabs classes */ .tabs {width:100%; height:18px; line-height:normal; background:url(img/tabs.gif) repeat-x 0 -72px;} .tabs ul {margin:0; padding:0; list-style:none;} .tabs li {float:left; background:url(img/tabs.gif) no-repeat 0 0; margin:0 2px 0 0; padding:0 0 0 10px; line-height:17px; height:18px; display:block;} .tabs li.current {background:url(img/tabs.gif) no-repeat 0 -18px; margin-right:2px;} .tabs span {float:left; display:block; background:url(img/tabs.gif) no-repeat right -36px; padding:0px 10px 0 0;} .tabs .current span {background:url(img/tabs.gif) no-repeat right -54px;} .tabs a {text-decoration:none; font-family:Verdana, Arial; font-size:10px;} .tabs a:link, .tabs a:visited, .tabs a:hover {color:black;} /* Panels */ .panel_wrapper div.panel {display:none;} .panel_wrapper div.current {display:block; width:100%; height:300px; overflow:visible;} .panel_wrapper {border:1px solid #919B9C; border-top:0px; padding:10px; padding-top:5px; clear:both; background:white;} /* Columns */ .column {float:left;} .properties {width:100%;} .properties .column1 {} .properties .column2 {text-align:left;} /* Titles */ h1, h2, h3, h4 {color:#2B6FB6; margin:0; padding:0; padding-top:5px;} h3 {font-size:14px;} .title {font-size:12px; font-weight:bold; color:#2B6FB6;} /* Dialog specific */ #link .panel_wrapper, #link div.current {height:125px;} #image .panel_wrapper, #image div.current {height:200px;} #plugintable thead {font-weight:bold; background:#DDD;} #plugintable, #about #plugintable td {border:1px solid #919B9C;} #plugintable {width:96%; margin-top:10px;} #pluginscontainer {height:290px; overflow:auto;} #colorpicker #preview {display:inline-block; padding-left:40px; height:14px; border:1px solid black; margin-left:5px; margin-right: 5px} #colorpicker #previewblock {position: relative; top: -3px; padding-left:5px; padding-top: 0px; display:inline} #colorpicker #preview_wrapper { text-align:center; padding-top:4px; white-space: nowrap} #colorpicker #colors {float:left; border:1px solid gray; cursor:crosshair;} #colorpicker #light {border:1px solid gray; margin-left:5px; float:left;width:15px; height:150px; cursor:crosshair;} #colorpicker #light div {overflow:hidden;} #colorpicker .panel_wrapper div.current {height:175px;} #colorpicker #namedcolors {width:150px;} #colorpicker #namedcolors a {display:block; float:left; width:10px; height:10px; margin:1px 1px 0 0; overflow:hidden;} #colorpicker #colornamecontainer {margin-top:5px;} #colorpicker #picker_panel fieldset {margin:auto;width:325px;} assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/skins/default/img/tabs.gif000066600000002452152141651140023704 0ustar00GIF89a,Z62Jb͑󡳻!6,,Z@@CQ(Ȥrl:ШtJZج6[XxL.zn|N(~562*(, H*\ #JHŋ3jȱǏ CI$"HXɲ˗0cʜI͛8sɳ@}GѣH*]ʴӧPJJիXƢ`ÊKóhӶKЀڷpVSܻxk®޿ Lp+^̸d ̘L˘3k̹ϠCMӨOaװc˞M۸sͻ  +_μУKNسkνwVNOӫ_Ͼ˟O3p (h& 6F(a[ue$eevJZ$hb/ Չ,⋞4h8.n:Aԁ ZFn;1P圫杇 un:;R~`:?cB_nG %Cg{3|™ ,bLv|?4BvʛPu9+& 2x& k& U] vo opraT&!,{ 'e7\l-)S7@&4+`yTSL\:=Jk:;eĈ8cA8Oj@b/+:{ tyt#|- mN qK!,lI+8b̠y h*Zp=3`C`B"pX 9bPB`Z= 8>u,St"ΦOT\um|; 8~*!,xIA]GeAPb)"!s BI М V 5q((X2=,I n#&AVq5t sny\)_g|r5!,gD+8[{`&y_hI)(L "+gN8l5"LA .%@%O@8NgL+Ƀpus/ jȩjVj c7 I!,\0t p hQm6Tqmx( 6'sa@`]-lz0 _g ir!` !,s ءXP\|)pWʄQ稊G.}!*1p v;Tݩ2 X )|f%9`}0PFd~ezGw);assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/skins/default/img/menu_check.gif000066600000000106152141651140025046 0ustar00GIF89a!,;i#~ʶ{;assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/skins/default/img/buttons.png000066600000006075152141651140024475 0ustar00PNG  IHDR^NQOPLTE! 𴳲[[[^žu\ apī' xxxlllHHH»***kkkܻĽǿ޾444JJJ׷ĻٹyyyzzzKKK߿]]]ȿvvvü^0}#999UUUBBB111KYYYᑢ9```nnnDY>>>rrrMMMӿtttgggċ%%%bq慅쑐1M IDATxڵ_SWor0[3 i 0 f$A8"ʦ -Uu[8֥>mgKJ |sJ?W(..^P W _n LӦ?QxXXx)wT5k֬=T0SKcPJ^Yh3yp "%C_J,`NNNj LXZJlY<Ճjqԡ$w(0QjCpr^v?fTJP@'ի8",QZKIIQCCHڒ,cYCԮSJjuzYR~uD\&\KCv&srh/T](שԚ.3 Nb7RYjen1jlhn6\ǩihpnl`u :͌hC/F3ڠ KW 75560. ̧X #l5.dҤW5M&[{Z\L*M2ԈؐlE{ИQ"[mJ2bTvuu ;`dD4 Gts?qVnf& B Mf5 WG/Mh Hu=M/~!gƍW^piJ}܁}O;/XOQ#rqj8mË9!|}1k^߬7k8޾s*eifsmpp9' w.[^; &O0PQSSLzzRc3Ka)6 bfr` +ZT`&EE+T@/E mUоx&Xe1J딕'bXY,vEekb#B ++ke*+?sU8wEih$:)~/@,YYXLZp9*+&~>hnx''b 3uSN׳(ݴXP|sqf3&KISG=+W/Ds{񱱱q!m8tZ8n{cc86{Ibӿ:9|>e˖*Bibq2 u-><6333nw|R-Yx-0^36#GG:70dyݛGK{L--Үᵻ-P2U$ΤOeBܳܛ>JQd\g{J[8$$k'{=I Ç;r>XQW.}`Qy]z;@q)C`n_MЧi!OG|4GPs02!Yqф??Ws}}?NۏFg'UJ\#dCf!cDfu+7n ?-*Y`b{圪xn;蛞Ue#ŋ Nq?Satr!\{ ʗwyN\_V9n'̷9#^|8]az[]X4똼vYF:΄q+V>Y~ =nueYsl-x3(,l Lm9q&XmgϮgVl[j߾Ukn.-ӆʕRFD1e ,)h2H}9'[6BF_.ۧ43+Sn{Mpfka#wi)>햭|[87=s%w*IjCd*fFTcJ6?.mQXC /B"Ja%?*儏.m⡁.MTקui)ڥY nJV&:8<Tqs 046tH.դo.MҐA0j4.Mz%bBv{NHGJ@=K3 'xXo@q&[O9#hE#`ؖ6lp+NIENDB`assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/skins/default/ui.css000066600000036574152141651140022653 0ustar00/* Reset */ .defaultSkin table, .defaultSkin tbody, .defaultSkin a, .defaultSkin img, .defaultSkin tr, .defaultSkin div, .defaultSkin td, .defaultSkin iframe, .defaultSkin span, .defaultSkin *, .defaultSkin .mceText {border:0; margin:0; padding:0; background:transparent; white-space:nowrap; text-decoration:none; font-weight:normal; cursor:default; color:#000; vertical-align:baseline; width:auto; border-collapse:separate; text-align:left} .defaultSkin a:hover, .defaultSkin a:link, .defaultSkin a:visited, .defaultSkin a:active {text-decoration:none; font-weight:normal; cursor:default; color:#000} .defaultSkin table td {vertical-align:middle} /* Containers */ .defaultSkin table {direction:ltr;background:transparent} .defaultSkin iframe {display:block;} .defaultSkin .mceToolbar {height:26px} .defaultSkin .mceLeft {text-align:left} .defaultSkin .mceRight {text-align:right} /* External */ .defaultSkin .mceExternalToolbar {position:absolute; border:1px solid #CCC; border-bottom:0; display:none;} .defaultSkin .mceExternalToolbar td.mceToolbar {padding-right:13px;} .defaultSkin .mceExternalClose {position:absolute; top:3px; right:3px; width:7px; height:7px; background:url(../../img/icons.gif) -820px 0} /* Layout */ .defaultSkin table.mceLayout {border:0; border-left:1px solid #CCC; border-right:1px solid #CCC} .defaultSkin table.mceLayout tr.mceFirst td {border-top:1px solid #CCC} .defaultSkin table.mceLayout tr.mceLast td {border-bottom:1px solid #CCC} .defaultSkin table.mceToolbar, .defaultSkin tr.mceFirst .mceToolbar tr td, .defaultSkin tr.mceLast .mceToolbar tr td {border:0; margin:0; padding:0;} .defaultSkin td.mceToolbar {background:#F0F0EE; padding-top:1px; vertical-align:top} .defaultSkin .mceIframeContainer {border-top:1px solid #CCC; border-bottom:1px solid #CCC} .defaultSkin .mceStatusbar {background:#F0F0EE; font-family:'MS Sans Serif',sans-serif,Verdana,Arial; font-size:9pt; line-height:16px; overflow:visible; color:#000; display:block; height:20px} .defaultSkin .mceStatusbar div {float:left; margin:2px} .defaultSkin .mceStatusbar a.mceResize {display:block; float:right; background:url(../../img/icons.gif) -800px 0; width:20px; height:20px; cursor:se-resize; outline:0} .defaultSkin .mceStatusbar a:hover {text-decoration:underline} .defaultSkin table.mceToolbar {margin-left:3px} .defaultSkin span.mceIcon, .defaultSkin img.mceIcon {display:block; width:20px; height:20px} .defaultSkin .mceIcon {background:url(../../img/icons.gif) no-repeat 20px 20px} .defaultSkin td.mceCenter {text-align:center;} .defaultSkin td.mceCenter table {margin:0 auto; text-align:left;} .defaultSkin td.mceRight table {margin:0 0 0 auto;} /* Button */ .defaultSkin .mceButton {display:block; border:1px solid #F0F0EE; width:20px; height:20px; margin-right:1px} .defaultSkin a.mceButtonEnabled:hover {border:1px solid #0A246A; background-color:#B2BBD0} .defaultSkin a.mceButtonActive, .defaultSkin a.mceButtonSelected {border:1px solid #0A246A; background-color:#C2CBE0} .defaultSkin .mceButtonDisabled .mceIcon {opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)} .defaultSkin .mceButtonLabeled {width:auto} .defaultSkin .mceButtonLabeled span.mceIcon {float:left} .defaultSkin span.mceButtonLabel {display:block; font-size:10px; padding:4px 6px 0 22px; font-family:Tahoma,Verdana,Arial,Helvetica} .defaultSkin .mceButtonDisabled .mceButtonLabel {color:#888} /* Separator */ .defaultSkin .mceSeparator {display:block; background:url(../../img/icons.gif) -180px 0; width:2px; height:20px; margin:2px 2px 0 4px} /* ListBox */ .defaultSkin .mceListBox, .defaultSkin .mceListBox a {display:block} .defaultSkin .mceListBox .mceText {padding-left:4px; width:70px; text-align:left; border:1px solid #CCC; border-right:0; background:#FFF; font-family:Tahoma,Verdana,Arial,Helvetica; font-size:11px; height:20px; line-height:20px; overflow:hidden} .defaultSkin .mceListBox .mceOpen {width:9px; height:20px; background:url(../../img/icons.gif) -741px 0; margin-right:2px; border:1px solid #CCC;} .defaultSkin table.mceListBoxEnabled:hover .mceText, .defaultSkin .mceListBoxHover .mceText, .defaultSkin .mceListBoxSelected .mceText {border:1px solid #A2ABC0; border-right:0; background:#FFF} .defaultSkin table.mceListBoxEnabled:hover .mceOpen, .defaultSkin .mceListBoxHover .mceOpen, .defaultSkin .mceListBoxSelected .mceOpen {background-color:#FFF; border:1px solid #A2ABC0} .defaultSkin .mceListBoxDisabled a.mceText {color:gray; background-color:transparent;} .defaultSkin .mceListBoxMenu {overflow:auto; overflow-x:hidden} .defaultSkin .mceOldBoxModel .mceListBox .mceText {height:22px} .defaultSkin .mceOldBoxModel .mceListBox .mceOpen {width:11px; height:22px;} .defaultSkin select.mceNativeListBox {font-family:'MS Sans Serif',sans-serif,Verdana,Arial; font-size:7pt; background:#F0F0EE; border:1px solid gray; margin-right:2px;} /* SplitButton */ .defaultSkin .mceSplitButton {width:32px; height:20px; direction:ltr} .defaultSkin .mceSplitButton a, .defaultSkin .mceSplitButton span {height:20px; display:block} .defaultSkin .mceSplitButton a.mceAction {width:20px; border:1px solid #F0F0EE; border-right:0;} .defaultSkin .mceSplitButton span.mceAction {width:20px; background-image:url(../../img/icons.gif);} .defaultSkin .mceSplitButton a.mceOpen {width:9px; background:url(../../img/icons.gif) -741px 0; border:1px solid #F0F0EE;} .defaultSkin .mceSplitButton span.mceOpen {display:none} .defaultSkin table.mceSplitButtonEnabled:hover a.mceAction, .defaultSkin .mceSplitButtonHover a.mceAction, .defaultSkin .mceSplitButtonSelected a.mceAction {border:1px solid #0A246A; border-right:0; background-color:#B2BBD0} .defaultSkin table.mceSplitButtonEnabled:hover a.mceOpen, .defaultSkin .mceSplitButtonHover a.mceOpen, .defaultSkin .mceSplitButtonSelected a.mceOpen {background-color:#B2BBD0; border:1px solid #0A246A;} .defaultSkin .mceSplitButtonDisabled .mceAction, .defaultSkin .mceSplitButtonDisabled a.mceOpen {opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)} .defaultSkin .mceSplitButtonActive a.mceAction {border:1px solid #0A246A; background-color:#C2CBE0} .defaultSkin .mceSplitButtonActive a.mceOpen {border-left:0;} /* ColorSplitButton */ .defaultSkin div.mceColorSplitMenu table {background:#FFF; border:1px solid gray} .defaultSkin .mceColorSplitMenu td {padding:2px} .defaultSkin .mceColorSplitMenu a {display:block; width:9px; height:9px; overflow:hidden; border:1px solid #808080} .defaultSkin .mceColorSplitMenu td.mceMoreColors {padding:1px 3px 1px 1px} .defaultSkin .mceColorSplitMenu a.mceMoreColors {width:100%; height:auto; text-align:center; font-family:Tahoma,Verdana,Arial,Helvetica; font-size:11px; line-height:20px; border:1px solid #FFF} .defaultSkin .mceColorSplitMenu a.mceMoreColors:hover {border:1px solid #0A246A; background-color:#B6BDD2} .defaultSkin a.mceMoreColors:hover {border:1px solid #0A246A} .defaultSkin .mceColorPreview {margin-left:2px; width:16px; height:4px; overflow:hidden; background:#9a9b9a} .defaultSkin .mce_forecolor span.mceAction, .defaultSkin .mce_backcolor span.mceAction {overflow:hidden; height:16px} /* Menu */ .defaultSkin .mceMenu {position:absolute; left:0; top:0; z-index:1000; border:1px solid #D4D0C8; direction:ltr} .defaultSkin .mceNoIcons span.mceIcon {width:0;} .defaultSkin .mceNoIcons a .mceText {padding-left:10px} .defaultSkin .mceMenu table {background:#FFF} .defaultSkin .mceMenu a, .defaultSkin .mceMenu span, .defaultSkin .mceMenu {display:block} .defaultSkin .mceMenu td {height:20px} .defaultSkin .mceMenu a {position:relative;padding:3px 0 4px 0} .defaultSkin .mceMenu .mceText {position:relative; display:block; font-family:Tahoma,Verdana,Arial,Helvetica; color:#000; cursor:default; margin:0; padding:0 25px 0 25px; display:block} .defaultSkin .mceMenu span.mceText, .defaultSkin .mceMenu .mcePreview {font-size:11px} .defaultSkin .mceMenu pre.mceText {font-family:Monospace} .defaultSkin .mceMenu .mceIcon {position:absolute; top:0; left:0; width:22px;} .defaultSkin .mceMenu .mceMenuItemEnabled a:hover, .defaultSkin .mceMenu .mceMenuItemActive {background-color:#dbecf3} .defaultSkin td.mceMenuItemSeparator {background:#DDD; height:1px} .defaultSkin .mceMenuItemTitle a {border:0; background:#EEE; border-bottom:1px solid #DDD} .defaultSkin .mceMenuItemTitle span.mceText {color:#000; font-weight:bold; padding-left:4px} .defaultSkin .mceMenuItemDisabled .mceText {color:#888} .defaultSkin .mceMenuItemSelected .mceIcon {background:url(img/menu_check.gif)} .defaultSkin .mceNoIcons .mceMenuItemSelected a {background:url(img/menu_arrow.gif) no-repeat -6px center} .defaultSkin .mceMenu span.mceMenuLine {display:none} .defaultSkin .mceMenuItemSub a {background:url(img/menu_arrow.gif) no-repeat top right;} .defaultSkin .mceMenuItem td, .defaultSkin .mceMenuItem th {line-height: normal} /* Progress,Resize */ .defaultSkin .mceBlocker {position:absolute; left:0; top:0; z-index:1000; opacity:0.5; -ms-filter:'alpha(opacity=50)'; filter:alpha(opacity=50); background:#FFF} .defaultSkin .mceProgress {position:absolute; left:0; top:0; z-index:1001; background:url(img/progress.gif) no-repeat; width:32px; height:32px; margin:-16px 0 0 -16px} /* Rtl */ .mceRtl .mceListBox .mceText {text-align: right; padding: 0 4px 0 0} .mceRtl .mceMenuItem .mceText {text-align: right} /* Formats */ .defaultSkin .mce_formatPreview a {font-size:10px} .defaultSkin .mce_p span.mceText {} .defaultSkin .mce_address span.mceText {font-style:italic} .defaultSkin .mce_pre span.mceText {font-family:monospace} .defaultSkin .mce_h1 span.mceText {font-weight:bolder; font-size: 2em} .defaultSkin .mce_h2 span.mceText {font-weight:bolder; font-size: 1.5em} .defaultSkin .mce_h3 span.mceText {font-weight:bolder; font-size: 1.17em} .defaultSkin .mce_h4 span.mceText {font-weight:bolder; font-size: 1em} .defaultSkin .mce_h5 span.mceText {font-weight:bolder; font-size: .83em} .defaultSkin .mce_h6 span.mceText {font-weight:bolder; font-size: .75em} /* Theme */ .defaultSkin span.mce_bold {background-position:0 0} .defaultSkin span.mce_italic {background-position:-60px 0} .defaultSkin span.mce_underline {background-position:-140px 0} .defaultSkin span.mce_strikethrough {background-position:-120px 0} .defaultSkin span.mce_undo {background-position:-160px 0} .defaultSkin span.mce_redo {background-position:-100px 0} .defaultSkin span.mce_cleanup {background-position:-40px 0} .defaultSkin span.mce_bullist {background-position:-20px 0} .defaultSkin span.mce_numlist {background-position:-80px 0} .defaultSkin span.mce_justifyleft {background-position:-460px 0} .defaultSkin span.mce_justifyright {background-position:-480px 0} .defaultSkin span.mce_justifycenter {background-position:-420px 0} .defaultSkin span.mce_justifyfull {background-position:-440px 0} .defaultSkin span.mce_anchor {background-position:-200px 0} .defaultSkin span.mce_indent {background-position:-400px 0} .defaultSkin span.mce_outdent {background-position:-540px 0} .defaultSkin span.mce_link {background-position:-500px 0} .defaultSkin span.mce_unlink {background-position:-640px 0} .defaultSkin span.mce_sub {background-position:-600px 0} .defaultSkin span.mce_sup {background-position:-620px 0} .defaultSkin span.mce_removeformat {background-position:-580px 0} .defaultSkin span.mce_newdocument {background-position:-520px 0} .defaultSkin span.mce_image {background-position:-380px 0} .defaultSkin span.mce_help {background-position:-340px 0} .defaultSkin span.mce_code {background-position:-260px 0} .defaultSkin span.mce_hr {background-position:-360px 0} .defaultSkin span.mce_visualaid {background-position:-660px 0} .defaultSkin span.mce_charmap {background-position:-240px 0} .defaultSkin span.mce_paste {background-position:-560px 0} .defaultSkin span.mce_copy {background-position:-700px 0} .defaultSkin span.mce_cut {background-position:-680px 0} .defaultSkin span.mce_blockquote {background-position:-220px 0} .defaultSkin .mce_forecolor span.mceAction {background-position:-720px 0} .defaultSkin .mce_backcolor span.mceAction {background-position:-760px 0} .defaultSkin span.mce_forecolorpicker {background-position:-720px 0} .defaultSkin span.mce_backcolorpicker {background-position:-760px 0} /* Plugins */ .defaultSkin span.mce_advhr {background-position:-0px -20px} .defaultSkin span.mce_ltr {background-position:-20px -20px} .defaultSkin span.mce_rtl {background-position:-40px -20px} .defaultSkin span.mce_emotions {background-position:-60px -20px} .defaultSkin span.mce_fullpage {background-position:-80px -20px} .defaultSkin span.mce_fullscreen {background-position:-100px -20px} .defaultSkin span.mce_iespell {background-position:-120px -20px} .defaultSkin span.mce_insertdate {background-position:-140px -20px} .defaultSkin span.mce_inserttime {background-position:-160px -20px} .defaultSkin span.mce_absolute {background-position:-180px -20px} .defaultSkin span.mce_backward {background-position:-200px -20px} .defaultSkin span.mce_forward {background-position:-220px -20px} .defaultSkin span.mce_insert_layer {background-position:-240px -20px} .defaultSkin span.mce_insertlayer {background-position:-260px -20px} .defaultSkin span.mce_movebackward {background-position:-280px -20px} .defaultSkin span.mce_moveforward {background-position:-300px -20px} .defaultSkin span.mce_media {background-position:-320px -20px} .defaultSkin span.mce_nonbreaking {background-position:-340px -20px} .defaultSkin span.mce_pastetext {background-position:-360px -20px} .defaultSkin span.mce_pasteword {background-position:-380px -20px} .defaultSkin span.mce_selectall {background-position:-400px -20px} .defaultSkin span.mce_preview {background-position:-420px -20px} .defaultSkin span.mce_print {background-position:-440px -20px} .defaultSkin span.mce_cancel {background-position:-460px -20px} .defaultSkin span.mce_save {background-position:-480px -20px} .defaultSkin span.mce_replace {background-position:-500px -20px} .defaultSkin span.mce_search {background-position:-520px -20px} .defaultSkin span.mce_styleprops {background-position:-560px -20px} .defaultSkin span.mce_table {background-position:-580px -20px} .defaultSkin span.mce_cell_props {background-position:-600px -20px} .defaultSkin span.mce_delete_table {background-position:-620px -20px} .defaultSkin span.mce_delete_col {background-position:-640px -20px} .defaultSkin span.mce_delete_row {background-position:-660px -20px} .defaultSkin span.mce_col_after {background-position:-680px -20px} .defaultSkin span.mce_col_before {background-position:-700px -20px} .defaultSkin span.mce_row_after {background-position:-720px -20px} .defaultSkin span.mce_row_before {background-position:-740px -20px} .defaultSkin span.mce_merge_cells {background-position:-760px -20px} .defaultSkin span.mce_table_props {background-position:-980px -20px} .defaultSkin span.mce_row_props {background-position:-780px -20px} .defaultSkin span.mce_split_cells {background-position:-800px -20px} .defaultSkin span.mce_template {background-position:-820px -20px} .defaultSkin span.mce_visualchars {background-position:-840px -20px} .defaultSkin span.mce_abbr {background-position:-860px -20px} .defaultSkin span.mce_acronym {background-position:-880px -20px} .defaultSkin span.mce_attribs {background-position:-900px -20px} .defaultSkin span.mce_cite {background-position:-920px -20px} .defaultSkin span.mce_del {background-position:-940px -20px} .defaultSkin span.mce_ins {background-position:-960px -20px} .defaultSkin span.mce_pagebreak {background-position:0 -40px} .defaultSkin span.mce_restoredraft {background-position:-20px -40px} .defaultSkin span.mce_spellchecker {background-position:-540px -20px} .defaultSkin span.mce_visualblocks {background-position: -40px -40px} assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/skins/default/content.css000066600000004775152141651140023706 0ustar00body, td, pre {color:#000; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; margin:8px;} body {background:#FFF;} body.mceForceColors {background:#FFF; color:#000;} body.mceBrowserDefaults {background:transparent; color:inherit; font-size:inherit; font-family:inherit;} h1 {font-size: 2em} h2 {font-size: 1.5em} h3 {font-size: 1.17em} h4 {font-size: 1em} h5 {font-size: .83em} h6 {font-size: .75em} .mceItemTable, .mceItemTable td, .mceItemTable th, .mceItemTable caption, .mceItemVisualAid {border: 1px dashed #BBB;} a.mceItemAnchor {display:inline-block; -webkit-user-select:all; -webkit-user-modify:read-only; -moz-user-select:all; -moz-user-modify:read-only; width:11px !important; height:11px !important; background:url(img/items.gif) no-repeat center center} span.mceItemNbsp {background: #DDD} td.mceSelected, th.mceSelected {background-color:#3399ff !important} img {border:0;} table, img, hr, .mceItemAnchor {cursor:default} table td, table th {cursor:text} ins {border-bottom:1px solid green; text-decoration: none; color:green} del {color:red; text-decoration:line-through} cite {border-bottom:1px dashed blue} acronym {border-bottom:1px dotted #CCC; cursor:help} abbr {border-bottom:1px dashed #CCC; cursor:help} /* IE */ * html body { scrollbar-3dlight-color:#F0F0EE; scrollbar-arrow-color:#676662; scrollbar-base-color:#F0F0EE; scrollbar-darkshadow-color:#DDD; scrollbar-face-color:#E0E0DD; scrollbar-highlight-color:#F0F0EE; scrollbar-shadow-color:#F0F0EE; scrollbar-track-color:#F5F5F5; } img:-moz-broken {-moz-force-broken-image-icon:1; width:24px; height:24px} font[face=mceinline] {font-family:inherit !important} *[contentEditable]:focus {outline:0} .mceItemMedia {border:1px dotted #cc0000; background-position:center; background-repeat:no-repeat; background-color:#ffffcc} .mceItemShockWave {background-image:url(../../img/shockwave.gif)} .mceItemFlash {background-image:url(../../img/flash.gif)} .mceItemQuickTime {background-image:url(../../img/quicktime.gif)} .mceItemWindowsMedia {background-image:url(../../img/windowsmedia.gif)} .mceItemRealMedia {background-image:url(../../img/realmedia.gif)} .mceItemVideo {background-image:url(../../img/video.gif)} .mceItemAudio {background-image:url(../../img/video.gif)} .mceItemEmbeddedAudio {background-image:url(../../img/video.gif)} .mceItemIframe {background-image:url(../../img/iframe.gif)} .mcePageBreak {display:block;border:0;width:100%;height:12px;border-top:1px dotted #ccc;margin-top:15px;background:#fff url(../../img/pagebreak.gif) no-repeat center top;} assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/skins/wp_theme/ui.css000066600000125552152141651140023032 0ustar00.wp_themeSkin table,.wp_themeSkin tbody,.wp_themeSkin a,.wp_themeSkin img,.wp_themeSkin tr,.wp_themeSkin div,.wp_themeSkin td,.wp_themeSkin iframe,.wp_themeSkin span,.wp_themeSkin *,.wp_themeSkin .mceText{border:0;margin:0;padding:0;white-space:nowrap;text-decoration:none;font-weight:normal;cursor:default;vertical-align:baseline;width:auto;border-collapse:separate}.wp_themeSkin a:hover,.wp_themeSkin a:link,.wp_themeSkin a:visited,.wp_themeSkin a:active{text-decoration:none;font-weight:normal;cursor:default}.wp_themeSkin table td{vertical-align:middle}.wp_themeSkin *,.wp_themeSkin a:hover,.wp_themeSkin a:link,.wp_themeSkin a:visited,.wp_themeSkin a:active{color:#000}.wp_themeSkin iframe{display:block}.wp_themeSkin #mce_fullscreen_ifr{background-color:#fff}.wp_themeSkin .mceToolbar{padding:1px}.wp_themeSkin .mceExternalToolbar{position:absolute;border-bottom:0;display:none}.wp_themeSkin .mceExternalToolbar td.mceToolbar{padding-right:13px}.wp_themeSkin .mceExternalClose{position:absolute;top:3px;right:3px;width:7px;height:7px;background:url("../../img/icons.gif") -820px 0}.wp_themeSkin table.mceToolbar,.wp_themeSkin tr.mceFirst .mceToolbar tr td,.wp_themeSkin tr.mceLast .mceToolbar tr td{border:0;margin:0;padding:0}.wp_themeSkin table.mceLayout{border-color: #CCCCCC #CCCCCC #DFDFDF;border-style: solid;border-top-left-radius: 3px; border-top-right-radius: 3px; border-width: 1px;}.wp_themeSkin .mceStatusbar{display:block;font-family:Arial,"Bitstream Vera Sans",Helvetica,Verdana,sans-serif;font-size:12px;line-height:16px;padding:0 0 0 8px;overflow:visible;height:20px;border-top:1px solid #dfdfdf;color:#000;background-color:#f5f5f5}.rtl .wp_themeSkin .mceStatusbar{padding:0 8px 0 0}.wp_themeSkin .mceStatusbar *{color:#555}.wp_themeSkin .mceStatusbar div{float:left;padding:2px}.rtl .wp_themeSkin .mceStatusbar div{float:right}.wp_themeSkin .mceStatusbar a.mceResize{display:block;float:right;background:url("../../img/icons.gif") -800px 0;width:20px;height:20px;cursor:se-resize}.rtl .wp_themeSkin .mceStatusbar a.mceResize{float:left}.wp_themeSkin .mceStatusbar a:hover{text-decoration:underline}.wp_themeSkin table.mceToolbar{margin:0 6px 2px}.wp_themeSkin #content_toolbar1{margin-top:2px}.wp_themeSkin .mceToolbar .mceToolbarEndListBox span{display:none}.wp_themeSkin span.mceIcon,.wp_themeSkin img.mceIcon{display:block;width:20px;height:20px}.wp_themeSkin .mceIcon{background:url("../../img/icons.gif") no-repeat 20px 20px}.wp_themeSkin .mceButton{display:block;width:20px;height:20px;cursor:default;padding:1px 2px;margin:1px;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff}.wp_themeSkin a.mceButtonEnabled:hover{background-image:inherit 0 -10px}.wp_themeSkin .mceOldBoxModel a.mceButton span,.wp_themeSkin .mceOldBoxModel a.mceButton img{margin:0 0 0 1px}.wp_themeSkin a.mceButton:active,.wp_themeSkin a.mceButtonActive,.wp_themeSkin a.mceButtonActive:hover,.wp_themeSkin a.mceButtonSelected{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff}.wp_themeSkin .mceButtonDisabled .mceIcon{opacity:.5;filter:alpha(opacity=50)}.wp_themeSkin .mceSeparator{height:24px;width:1px;display:block;background:transparent;overflow:hidden;margin:0 2px}.wp_themeSkin .mceListBox,.wp_themeSkin .mceListBox a{display:block}.wp_themeSkin .mceListBox .mceText{padding:1px 2px 1px 5px;text-align:left;text-decoration:none;width:70px;-webkit-border-bottom-left-radius:2px;-webkit-border-top-left-radius:2px;border-bottom-left-radius:2px;border-top-left-radius:2px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;font-family:Arial,"Bitstream Vera Sans",Helvetica,Verdana,sans-serif;font-size:12px;height:20px;line-height:20px;overflow:hidden}.wp_themeSkin .mceListBox{margin:1px;direction:ltr}.wp_themeSkin .mceListBox .mceOpen{width:14px;height:20px;border-collapse:separate;padding:1px;-webkit-border-bottom-left-radius:0;-webkit-border-top-left-radius:0;border-bottom-left-radius:0;border-top-left-radius:0;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff}.wp_themeSkin .mceListBox .mceOpen span{display:block;width:14px;height:20px;background-image:url("./img/down_arrow.gif");background-position:2px 1px;background-repeat:no-repeat}.wp_themeSkin table.mceListBoxEnabled:hover .mceText,.wp_themeSkin .mceListBoxHover .mceText,.wp_themeSkin .mceListBoxSelected .mceText,.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,.wp_themeSkin .mceListBoxHover .mceOpen,.wp_themeSkin .mceListBoxSelected .mceOpen{background-image:none}.wp_themeSkin .mceListBoxDisabled .mceText{color:gray}.wp_themeSkin .mceListBoxMenu{overflow:auto;overflow-x:hidden}.wp_themeSkin .mceOldBoxModel .mceListBox .mceText{height:22px}.wp_themeSkin select.mceListBox{font-family:Arial,"Bitstream Vera Sans",Helvetica,Verdana,sans-serif;font-size:12px;border-color:#b2b2b2;background-color:#fff}.wp_themeSkin .mceSplitButton a,.wp_themeSkin .mceSplitButton span{display:block;height:20px}.wp_themeSkin .mceSplitButton{display:block;margin:1px;direction:ltr}.wp_themeSkin table.mceSplitButton td{padding:2px;-webkit-border-radius:2px;border-radius:2px}.wp_themeSkin table.mceSplitButton td a{-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff}.wp_themeSkin table.mceSplitButton:hover td{background-image:inherit 0 -10px}.wp_themeSkin .mceSplitButton a.mceAction{height:20px;width:20px;padding:1px 2px}.wp_themeSkin .mceSplitButton span.mceAction{background-image:url("../../img/icons.gif");background-repeat:no-repeat;background-color:transparent;width:20px}.wp_themeSkin .mceSplitButton a.mceOpen{width:10px;height:20px;background-image:url("./img/down_arrow.gif");background-position:1px 2px;background-repeat:no-repeat;padding:1px;border-left:0 none!important}.wp_themeSkin .mceSplitButton span.mceOpen{display:none}.wp_themeSkin .mceSplitButtonDisabled .mceAction{opacity:.3;filter:alpha(opacity=30)}.wp_themeSkin .mceListBox a.mceText,.wp_themeSkin .mceSplitButton a.mceAction{-webkit-border-bottom-left-radius:2px;-webkit-border-top-left-radius:2px;border-bottom-left-radius:2px;border-top-left-radius:2px}.wp_themeSkin .mceSplitButton a.mceOpen,.wp_themeSkin .mceListBox a.mceOpen{-webkit-border-bottom-right-radius:2px;-webkit-border-top-right-radius:2px;border-bottom-right-radius:2px;border-top-right-radius:2px}.wp_themeSkin span.mce_undo,.wp_themeSkin span.mce_redo,.wp_themeSkin span.mce_bullist,.wp_themeSkin span.mce_numlist,.wp_themeSkin span.mce_blockquote,.wp_themeSkin span.mce_charmap,.wp_themeSkin span.mce_bold,.wp_themeSkin span.mce_italic,.wp_themeSkin span.mce_underline,.wp_themeSkin span.mce_justifyleft,.wp_themeSkin span.mce_justifyright,.wp_themeSkin span.mce_justifycenter,.wp_themeSkin span.mce_justifyfull,.wp_themeSkin span.mce_indent,.wp_themeSkin span.mce_outdent,.wp_themeSkin span.mce_link,.wp_themeSkin span.mce_unlink,.wp_themeSkin span.mce_help,.wp_themeSkin span.mce_removeformat,.wp_themeSkin span.mce_fullscreen,.wp_themeSkin span.mce_wp_fullscreen,.wp_themeSkin span.mce_media,.wp_themeSkin span.mce_pastetext,.wp_themeSkin span.mce_pasteword,.wp_themeSkin span.mce_wp_help,.wp_themeSkin span.mce_wp_adv,.wp_themeSkin span.mce_wp_more,.wp_themeSkin span.mce_strikethrough,.wp_themeSkin span.mce_spellchecker,.wp_themeSkin span.mce_forecolor,.wp_themeSkin .mce_forecolorpicker,.wp_themeSkin .mceSplitButton .mce_spellchecker span.mce_spellchecker,.wp_themeSkin .mceSplitButton .mce_forecolor span.mce_forecolor,.wp_themeSkin .mceSplitButton span.mce_numlist,.wp_themeSkin .mceSplitButton span.mce_bullist{background-image:url(./img/wpicons.png)}.wp_themeSkin div.mceColorSplitMenu table{background-color:#ebebeb;border-color:#b2b2b2}.wp_themeSkin .mceColorSplitMenu td{padding:2px}.wp_themeSkin .mceColorSplitMenu a{display:block;width:9px;height:9px;overflow:hidden;border-color:#b2b2b2}.wp_themeSkin .mceColorSplitMenu td.mceMoreColors{padding:1px 3px 1px 1px}.wp_themeSkin .mceColorSplitMenu a.mceMoreColors{width:100%;height:auto;text-align:center;font-family:Tahoma,Verdana,Arial,Helvetica;font-size:11px;line-height:20px;border-color:#fff}.wp_themeSkin .mceColorPreview{margin:-5px 0 0 2px;width:16px;height:4px;overflow:hidden}.wp_themeSkin .mceMenu{position:absolute;left:0;top:0;z-index:1000;border-color:#ddd}.wp_themeSkin .mceNoIcons span.mceIcon{width:0}.wp_themeSkin .mceNoIcons a .mceText{padding-left:10px}.wp_themeSkin .mceMenu table{background-color:#ebeaeb}.wp_themeSkin .mceMenu a,.wp_themeSkin .mceMenu span,.wp_themeSkin .mceMenu{display:block}.wp_themeSkin .mceMenu td{height:20px;overflow:hidden}.wp_themeSkin .mceMenu a{position:relative;padding:3px 0 4px 0;text-decoration:none!important}.wp_themeSkin .mceMenu .mceText{position:relative;display:block;font-family:Tahoma,Verdana,Arial,Helvetica;cursor:default;margin:0;padding:0 25px;color:#000}.wp_themeSkin .mceMenu span.mceText,.wp_themeSkin .mceMenu .mcePreview{font-size:12px}.wp_themeSkin .mceMenu pre.mceText{font-family:Monospace}.wp_themeSkin .mceMenu .mceIcon{position:absolute;top:0;left:0;width:22px}.wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,.wp_themeSkin .mceMenu .mceMenuItemActive{background-color:#f5f5f5}.wp_themeSkin td.mceMenuItemSeparator{height:1px;background-color:#aaa}.wp_themeSkin .mceMenuItemTitle a{border-top:0;border-right:0;border-left:0;border-bottom:1px solid #aaa;text-decoration:none!important;background-color:#ccc}.wp_themeSkin .mceMenuItemTitle span.mceText{font-weight:bold;padding-left:4px;color:#000}.wp_themeSkin .mceMenuItemSelected .mceIcon{background:url("../js/tinymce/themes/advanced/skins/default/img/menu_check.gif");color:#888}.wp_themeSkin .mceNoIcons .mceMenuItemSelected a{background:url("../js/tinymce/themes/advanced/skins/default/img/menu_arrow.gif") no-repeat -6px center}.wp_themeSkin .mceMenu span.mceMenuLine{display:none}.wp_themeSkin .mceMenuItemSub a{background:url("../js/tinymce/themes/advanced/skins/default/img/menu_arrow.gif") no-repeat top right}.wp_themeSkin .mceBlocker{position:absolute;left:0;top:0;z-index:1000;opacity:.5;filter:alpha(opacity=50);background:#FFF}.wp_themeSkin .mceProgress{position:absolute;left:0;top:0;z-index:1001;background:url("../js/tinymce/themes/advanced/skins/default/img/progress.gif") no-repeat;width:32px;height:32px;margin:-16px 0 0 -16px}.wp_themeSkin .mcePlaceHolder{border:1px dotted gray}.wp_themeSkin .mce_address span.mceText{font-style:italic}.wp_themeSkin .mce_pre span.mceText{font-family:monospace}.wp_themeSkin .mce_h1 span.mceText{font-weight:bolder;font-size:17px}.wp_themeSkin .mce_h2 span.mceText{font-weight:bolder;font-size:16px}.wp_themeSkin .mce_h3 span.mceText{font-weight:bolder;font-size:15px}.wp_themeSkin .mce_h4 span.mceText{font-weight:bolder;font-size:14px}.wp_themeSkin .mce_h5 span.mceText{font-weight:bolder;font-size:13px}.wp_themeSkin .mce_h6 span.mceText{font-weight:bolder;font-size:12px}.wp_themeSkin span.mce_undo{background-position:-500px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_undo,.wp_themeSkin .mceButtonActive span.mce_undo{background-position:-500px 0}.wp_themeSkin span.mce_redo{background-position:-480px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_redo,.wp_themeSkin .mceButtonActive span.mce_redo{background-position:-480px 0}.wp_themeSkin span.mce_bullist{background-position:-40px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_bullist,.wp_themeSkin .mceButtonActive span.mce_bullist,.wp_themeSkin .mceSplitButton:hover span.mce_bullist{background-position:-40px 0}.wp_themeSkin span.mce_numlist{background-position:-61px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_numlist,.wp_themeSkin .mceButtonActive span.mce_numlist,.wp_themeSkin .mceSplitButton:hover span.mce_numlist{background-position:-61px 0}.wp_themeSkin span.mce_blockquote{background-position:-80px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_blockquote,.wp_themeSkin .mceButtonActive span.mce_blockquote{background-position:-80px 0}.wp_themeSkin span.mce_charmap{background-position:-420px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_charmap,.wp_themeSkin .mceButtonActive span.mce_charmap{background-position:-420px 0}.wp_themeSkin span.mce_bold{background-position:-1px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_bold,.wp_themeSkin .mceButtonActive span.mce_bold{background-position:-1px 0}.wp_themeSkin span.mce_italic{background-position:-21px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_italic,.wp_themeSkin .mceButtonActive span.mce_italic{background-position:-21px 0}.wp_themeSkin span.mce_underline{background-position:-280px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_underline,.wp_themeSkin .mceButtonActive span.mce_underline{background-position:-280px 1px}.wp_themeSkin span.mce_justifyleft{background-position:-100px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_justifyleft,.wp_themeSkin .mceButtonActive span.mce_justifyleft{background-position:-100px 1px}.wp_themeSkin span.mce_justifyright{background-position:-141px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_justifyright,.wp_themeSkin .mceButtonActive span.mce_justifyright{background-position:-141px 1px}.wp_themeSkin span.mce_justifycenter{background-position:-120px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_justifycenter,.wp_themeSkin .mceButtonActive span.mce_justifycenter{background-position:-120px 1px}.wp_themeSkin span.mce_justifyfull{background-position:-300px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_justifyfull,.wp_themeSkin .mceButtonActive span.mce_justifyfull{background-position:-300px 1px}.wp_themeSkin span.mce_indent{background-position:-461px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_indent,.wp_themeSkin .mceButtonActive span.mce_indent{background-position:-461px 1px}.wp_themeSkin span.mce_outdent{background-position:-440px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_outdent,.wp_themeSkin .mceButtonActive span.mce_outdent{background-position:-440px 1px}.wp_themeSkin span.mce_link{background-position:-161px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_link,.wp_themeSkin .mceButtonActive span.mce_link{background-position:-161px 0}.wp_themeSkin span.mce_unlink{background-position:-180px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_unlink,.wp_themeSkin .mceButtonActive span.mce_unlink{background-position:-180px 0}.wp_themeSkin span.mce_help{background-position:-521px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_help,.wp_themeSkin .mceButtonActive span.mce_help{background-position:-521px 0}.wp_themeSkin span.mce_removeformat{background-position:-381px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_removeformat,.wp_themeSkin .mceButtonActive span.mce_removeformat{background-position:-381px 0}.wp_themeSkin span.mce_strikethrough{background-position:-540px -18px}.wp_themeSkin .mceButtonEnabled:hover span.mce_strikethrough,.wp_themeSkin .mceButtonActive span.mce_strikethrough{background-position:-540px 0}.wp_themeSkin .mceSplitButton .mce_forecolor span.mce_forecolor{background-position:-321px -22px}.wp_themeSkin .mceSplitButtonEnabled:hover span.mce_forecolor,.wp_themeSkin .mceSplitButtonActive span.mce_forecolor{background-position:-321px -2px}.wp_themeSkin .mce_forecolorpicker{background-position:-320px -20px}.wp_themeSkin span.mce_fullscreen{background-position:-240px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_fullscreen,.wp_themeSkin .mceButtonActive span.mce_fullscreen{background-position:-240px 0}.wp_themeSkin span.mce_wp_fullscreen{background-position:-240px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_wp_fullscreen,.wp_themeSkin .mceButtonActive span.mce_wp_fullscreen{background-position:-240px 0}.wp_themeSkin span.mce_media{background-position:-401px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_media,.wp_themeSkin .mceButtonActive span.mce_media{background-position:-401px 0}.wp_themeSkin span.mce_pastetext{background-position:-340px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_pastetext,.wp_themeSkin .mceButtonActive span.mce_pastetext{background-position:-340px 0}.wp_themeSkin span.mce_pasteword{background-position:-360px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_pasteword,.wp_themeSkin .mceButtonActive span.mce_pasteword{background-position:-360px 0}.wp_themeSkin span.mce_spellchecker{background-position:-220px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_spellchecker,.wp_themeSkin .mceSplitButtonEnabled:hover span.mce_spellchecker,.wp_themeSkin .mceButtonActive span.mce_spellchecker,.wp_themeSkin .mceSplitButtonActive span.mce_spellchecker{background-position:-220px 1px}.wp_themeSkin span.mce_wp_help{background-position:-521px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_wp_help,.wp_themeSkin .mceButtonActive span.mce_wp_help{background-position:-521px 0}.wp_themeSkin span.mce_wp_adv{background-position:-260px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_wp_adv,.wp_themeSkin .mceButtonActive span.mce_wp_adv{background-position:-260px 0}.wp_themeSkin span.mce_wp_more{background-position:-201px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_wp_more,.wp_themeSkin .mceButtonActive span.mce_wp_more{background-position:-201px 0}.wp_themeSkin span.mce_cleanup{background-position:-380px -20px}.wp_themeSkin span.mce_anchor{background-position:-200px 0}.wp_themeSkin span.mce_sub{background-position:-600px 0}.wp_themeSkin span.mce_sup{background-position:-620px 0}.wp_themeSkin span.mce_newdocument{background-position:-520px 0}.wp_themeSkin span.mce_image{background-position:-380px 0}.wp_themeSkin span.mce_code{background-position:-260px 0}.wp_themeSkin span.mce_hr{background-position:-360px 0}.wp_themeSkin span.mce_visualaid{background-position:-660px 0}.wp_themeSkin span.mce_paste{background-position:-560px 0}.wp_themeSkin span.mce_copy{background-position:-700px 0}.wp_themeSkin span.mce_cut{background-position:-680px 0}.wp_themeSkin .mce_backcolor span.mceAction{background-position:-760px 0}.wp_themeSkin .mce_backcolorpicker{background-position:-760px 0}.wp_themeSkin span.mce_advhr{background-position:-0px -20px}.wp_themeSkin span.mce_ltr{background-position:-20px -20px}.wp_themeSkin span.mce_rtl{background-position:-40px -20px}.wp_themeSkin span.mce_emotions{background-position:-60px -20px}.wp_themeSkin span.mce_fullpage{background-position:-80px -20px}.wp_themeSkin span.mce_iespell{background-position:-120px -20px}.wp_themeSkin span.mce_insertdate{background-position:-140px -20px}.wp_themeSkin span.mce_inserttime{background-position:-160px -20px}.wp_themeSkin span.mce_absolute{background-position:-180px -20px}.wp_themeSkin span.mce_backward{background-position:-200px -20px}.wp_themeSkin span.mce_forward{background-position:-220px -20px}.wp_themeSkin span.mce_insert_layer{background-position:-240px -20px}.wp_themeSkin span.mce_insertlayer{background-position:-260px -20px}.wp_themeSkin span.mce_movebackward{background-position:-280px -20px}.wp_themeSkin span.mce_moveforward{background-position:-300px -20px}.wp_themeSkin span.mce_nonbreaking{background-position:-340px -20px}.wp_themeSkin span.mce_selectall{background-position:-400px -20px}.wp_themeSkin span.mce_preview{background-position:-420px -20px}.wp_themeSkin span.mce_print{background-position:-440px -20px}.wp_themeSkin span.mce_cancel{background-position:-460px -20px}.wp_themeSkin span.mce_save{background-position:-480px -20px}.wp_themeSkin span.mce_replace{background-position:-500px -20px}.wp_themeSkin span.mce_search{background-position:-520px -20px}.wp_themeSkin span.mce_styleprops{background-position:-560px -20px}.wp_themeSkin span.mce_table{background-position:-580px -20px}.wp_themeSkin span.mce_cell_props{background-position:-600px -20px}.wp_themeSkin span.mce_delete_table{background-position:-620px -20px}.wp_themeSkin span.mce_delete_col{background-position:-640px -20px}.wp_themeSkin span.mce_delete_row{background-position:-660px -20px}.wp_themeSkin span.mce_col_after{background-position:-680px -20px}.wp_themeSkin span.mce_col_before{background-position:-700px -20px}.wp_themeSkin span.mce_row_after{background-position:-720px -20px}.wp_themeSkin span.mce_row_before{background-position:-740px -20px}.wp_themeSkin span.mce_merge_cells{background-position:-760px -20px}.wp_themeSkin span.mce_table_props{background-position:-980px -20px}.wp_themeSkin span.mce_row_props{background-position:-780px -20px}.wp_themeSkin span.mce_split_cells{background-position:-800px -20px}.wp_themeSkin span.mce_template{background-position:-820px -20px}.wp_themeSkin span.mce_visualchars{background-position:-840px -20px}.wp_themeSkin span.mce_abbr{background-position:-860px -20px}.wp_themeSkin span.mce_acronym{background-position:-880px -20px}.wp_themeSkin span.mce_attribs{background-position:-900px -20px}.wp_themeSkin span.mce_cite{background-position:-920px -20px}.wp_themeSkin span.mce_del{background-position:-940px -20px}.wp_themeSkin span.mce_ins{background-position:-960px -20px}.wp_themeSkin span.mce_pagebreak{background-position:0 -40px}.wp_themeSkin .mceExternalToolbar,.wp_themeSkin .mceButton,.wp_themeSkin a.mceButtonEnabled:hover,.wp_themeSkin a.mceButtonActive,.wp_themeSkin a.mceButtonSelected,.wp_themeSkin .mceListBox .mceText,.wp_themeSkin .mceListBox .mceOpen,.wp_themeSkin table.mceListBoxEnabled:hover .mceText,.wp_themeSkin .mceListBoxHover .mceText,.wp_themeSkin .mceListBoxSelected .mceText,.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,.wp_themeSkin .mceListBoxHover .mceOpen,.wp_themeSkin .mceListBoxSelected .mceOpen,.wp_themeSkin select.mceListBox,.wp_themeSkin .mceSplitButton a.mceAction,.wp_themeSkin .mceSplitButton a.mceOpen,.wp_themeSkin .mceSplitButton a.mceOpen:hover,.wp_themeSkin .mceSplitButtonSelected a.mceOpen,.wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,.wp_themeSkin .mceSplitButton a.mceAction:hover,.wp_themeSkin div.mceColorSplitMenu table,.wp_themeSkin .mceColorSplitMenu a,.wp_themeSkin .mceColorSplitMenu a.mceMoreColors,.wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover,.wp_themeSkin a.mceMoreColors:hover,.wp_themeSkin .mceMenu{border-style:solid;border-width:1px}.wp_themeSkin iframe{background:transparent}.wp_themeSkin .mceButton,.wp_themeSkin .mceListBox .mceText,.wp_themeSkin .mceListBox .mceOpen{border-color:#ccc;background-color:#eee;background-image:-ms-linear-gradient(bottom,#ddd,#fff);background-image:-moz-linear-gradient(bottom,#ddd,#fff);background-image:-o-linear-gradient(bottom,#ddd,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ddd),to(#fff));background-image:-webkit-linear-gradient(bottom,#ddd,#fff);background-image:linear-gradient(bottom,#ddd,#fff)}.wp_themeSkin a.mceButtonEnabled:hover{border-color:#a0a0a0;background:#ddd;background-image:-ms-linear-gradient(bottom,#ccc,#fff);background-image:-moz-linear-gradient(bottom,#ccc,#fff);background-image:-o-linear-gradient(bottom,#ccc,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ccc),to(#fff));background-image:-webkit-linear-gradient(bottom,#ccc,#fff);background-image:linear-gradient(bottom,#ccc,#fff)}.wp_themeSkin a.mceButton:active,.wp_themeSkin a.mceButtonEnabled:active,.wp_themeSkin a.mceButtonSelected:active,.wp_themeSkin a.mceButtonActive,.wp_themeSkin a.mceButtonActive:active,.wp_themeSkin a.mceButtonActive:hover{background-color:#ddd;background-image:-ms-linear-gradient(bottom,#eee,#bbb);background-image:-moz-linear-gradient(bottom,#eee,#bbb);background-image:-o-linear-gradient(bottom,#eee,#bbb);background-image:-webkit-gradient(linear,left bottom,left top,from(#eee),to(#bbb));background-image:-webkit-linear-gradient(bottom,#eee,#bbb);background-image:linear-gradient(bottom,#eee,#bbb);border-color:#909090}.wp_themeSkin .mceButtonDisabled{border-color:#ccc!important}.wp_themeSkin .mceListBox .mceOpen{border-left:0!important}.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,.wp_themeSkin .mceListBoxHover .mceOpen,.wp_themeSkin .mceListBoxHover:active .mceOpen,.wp_themeSkin .mceListBoxSelected .mceOpen,.wp_themeSkin .mceListBoxSelected .mceText,.wp_themeSkin table.mceListBoxEnabled:active .mceText{background:#ccc;border-color:#999}.wp_themeSkin table.mceListBoxEnabled:hover .mceText,.wp_themeSkin .mceListBoxHover .mceText,.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,.wp_themeSkin .mceListBoxHover .mceOpen{border-color:#909090;background-color:#eee;background-image:-ms-linear-gradient(bottom,#ccc,#fff);background-image:-moz-linear-gradient(bottom,#ccc,#fff);background-image:-o-linear-gradient(bottom,#ccc,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ccc),to(#fff));background-image:-webkit-linear-gradient(bottom,#ccc,#fff);background-image:linear-gradient(bottom,#ccc,#fff)}.wp_themeSkin .mceSplitButton a.mceAction,.wp_themeSkin .mceSplitButton a.mceOpen{border-color:#ccc}.wp_themeSkin .mceSplitButton a.mceOpen:hover,.wp_themeSkin .mceSplitButtonSelected a.mceOpen,.wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,.wp_themeSkin .mceSplitButton a.mceAction:hover{border-color:#909090}.wp_themeSkin table.mceSplitButton td{background-color:#eee;background-image:-ms-linear-gradient(bottom,#ddd,#fff);background-image:-moz-linear-gradient(bottom,#ddd,#fff);background-image:-o-linear-gradient(bottom,#ddd,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ddd),to(#fff));background-image:-webkit-linear-gradient(bottom,#ddd,#fff);background-image:linear-gradient(bottom,#ddd,#fff)}.wp_themeSkin table.mceSplitButton:hover td{background-image:-ms-linear-gradient(bottom,#ccc,#fff);background-image:-moz-linear-gradient(bottom,#ccc,#fff);background-image:-o-linear-gradient(bottom,#ccc,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ccc),to(#fff));background-image:-webkit-linear-gradient(bottom,#ccc,#fff);background-image:linear-gradient(bottom,#ccc,#fff)}.wp_themeSkin .mceSplitButtonActive{background-color:#b2b2b2}.wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover{border-color:#0a246a;background-color:#b6bdd2}.wp_themeSkin a.mceMoreColors:hover{border-color:#0a246a}.wp_themeSkin .mceMenuItemDisabled .mceText{color:#888}#mceModalBlocker{background:#000}.wp-editor-area{font-family:Consolas,Monaco,monospace;padding:10px;line-height:150%;border:0 none;outline:0;resize:vertical;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.wp-editor-tools{height:30px;padding:0 10px}.wp-editor-container{border-width:1px;border-style:solid;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px;border-color:#ccc #ccc #dfdfdf}.wp-editor-container textarea.wp-editor-area{width:99.9%}.quicktags-toolbar,.wp_themeSkin tr.mceFirst td.mceToolbar{border-bottom:1px solid #ccc;background-color:#e9e9e9;background-image:-ms-linear-gradient(bottom,#ddd,#e9e9e9);background-image:-moz-linear-gradient(bottom,#ddd,#e9e9e9);background-image:-o-linear-gradient(bottom,#ddd,#e9e9e9);background-image:-webkit-linear-gradient(bottom,#ddd,#e9e9e9);background-image:linear-gradient(bottom,#ddd,#e9e9e9)}.wp-switch-editor{height:18px;font:13px/18px Arial,Helvetica,sans-serif normal;margin:5px 5px 0 0;padding:4px 5px 2px;float:right;cursor:pointer;border-width:1px;border-style:solid;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px;background-color:#f1f1f1;border-color:#dfdfdf #dfdfdf #ccc;color:#999}html[dir="rtl"] .wp-switch-editor{float:left}.wp-switch-editor:hover{text-decoration:none!important}.js .tmce-active .wp-editor-area{color:white}.tmce-active .quicktags-toolbar{display:none}.tmce-active .switch-tmce,.html-active .switch-html{border-color:#ccc #ccc #e9e9e9;background-color:#e9e9e9;color:#333}.wp-media-buttons{line-height:1;padding:9px 0 0}.wp-media-buttons a{text-decoration:none;color:#333;font-size:12px;vertical-align:bottom}.wp-media-buttons img{padding:0 4px;vertical-align:middle}.quicktags-toolbar{border-bottom-style:solid;border-bottom-width:1px;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px;padding:2px 8px 0;min-height:29px}.quicktags-toolbar>div{padding:2px 4px 0}.quicktags-toolbar input{margin:2px 1px 4px;line-height:18px;display:inline-block;min-width:26px;padding:2px 4px;font:12px/18px Arial,Helvetica,sans-serif normal;color:#464646;border:1px solid #c3c3c3;-webkit-border-radius:3px;border-radius:3px;background-color:#eee;background-image:-ms-linear-gradient(bottom,#e3e3e3,#fff);background-image:-moz-linear-gradient(bottom,#e3e3e3,#fff);background-image:-o-linear-gradient(bottom,#e3e3e3,#fff);background-image:-webkit-linear-gradient(bottom,#e3e3e3,#fff);background-image:linear-gradient(bottom,#e3e3e3,#fff)}.quicktags-toolbar input:hover{border-color:#aaa;background:#ddd}.quicktags-toolbar input[value="link"]{text-decoration:underline}.quicktags-toolbar input[value="del"]{text-decoration:line-through}.quicktags-toolbar input[value="i"]{font-style:italic}.quicktags-toolbar input[value="b"]{font-weight:bold}#wp_editbtns,#wp_gallerybtns{padding:2px;position:absolute;display:none;z-index:999998}#wp_editimgbtn,#wp_delimgbtn,#wp_editgallery,#wp_delgallery{border-color:#999;background-color:#eee;margin:2px;padding:2px;border-width:1px;border-style:solid;-webkit-border-radius:3px;border-radius:3px}#wp_editimgbtn:hover,#wp_delimgbtn:hover,#wp_editgallery:hover,#wp_delgallery:hover{border-color:#555;background-color:#ccc}#wp-link{background-color:#f5f5f5;line-height:1.4em;font-size:12px}#wp-link ol,#wp-link ul{list-style:none;margin:0;padding:0}#wp-link input[type="text"]{-webkit-box-sizing:border-box}#wp-link input[type="text"],#wp-link textarea{border-width:1px;border-style:solid;-webkit-border-radius:4px;border-radius:4px;font-size:12px;margin:1px;padding:3px}#wp-link #link-options{padding:10px 0 14px;border-bottom:1px solid #dfdfdf;margin:0 6px 14px}#wp-link p.howto{margin:3px}#wp-link #internal-toggle{display:inline-block;cursor:pointer;padding-left:18px}#wp-link .toggle-arrow{background:transparent url('../images/toggle-arrow.png') top left no-repeat;height:23px;line-height:23px}#wp-link .toggle-arrow-active{background-position:center left}#wp-link label input[type="text"]{width:360px;margin-top:5px}#wp-link label span{display:inline-block;width:80px;text-align:right;padding-right:5px}#wp-link .link-search-wrapper{margin:5px 6px 9px;display:block;overflow:hidden}#wp-link .link-search-wrapper span{float:left;margin-top:6px}#wp-link .link-search-wrapper input[type="text"]{float:left;width:220px}#wp-link .link-search-wrapper img.waiting{margin:8px 1px 0 4px;float:left;display:none}#wp-link .link-target{width:auto;padding:3px 0 0;margin:0 0 0 87px;font-size:11px}#wp-link .query-results{border:1px #dfdfdf solid;margin:0 5px 5px;background:#fff;height:185px;overflow:auto;position:relative}#wp-link li,#wp-link .query-notice{clear:both;margin-bottom:0;border-bottom:1px solid #f1f1f1;color:#333;padding:4px 6px;cursor:pointer;position:relative}#wp-link li:hover{background:#eaf2fa;color:#151515}#wp-link li.unselectable{border-bottom:1px solid #dfdfdf}#wp-link li.unselectable:hover{background:#fff;cursor:auto;color:#333}#wp-link li.selected{background:#ddd;color:#333}#wp-link li.selected .item-title{font-weight:bold}#wp-link .item-title{display:inline-block;width:80%}#wp-link .item-info{text-transform:uppercase;color:#666;font-size:11px;position:absolute;right:5px;top:4px;bottom:0}#wp-link #search-results{display:none}#wp-link #search-panel{float:left;width:100%}#wp-link .river-waiting{display:none;padding:10px 0}#wp-link .river-waiting img.waiting{margin:0 auto;display:block}#wp-link .submitbox{padding:5px 10px;font-size:11px;overflow:auto;height:29px}#wp-link-cancel{line-height:25px;float:left}#wp-link-update{line-height:23px;float:right}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute;left:-99999999px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui-helper-clearfix{display:inline-block}/*\*/* html .ui-helper-clearfix{height:1%}.ui-helper-clearfix{display:block}/**/.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;z-index:99999;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.wp-dialog{position:absolute;width:300px;overflow:hidden}.wp-dialog .ui-dialog-titlebar{position:relative}.wp-dialog .ui-dialog-titlebar-close span{display:block;margin:1px}.wp-dialog .ui-dialog-content{position:relative;border:0;padding:0;background:0;overflow:auto;zoom:1}.wp-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.wp-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.wp-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.wp-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move}.wp-dialog{border:1px solid #999;-moz-box-shadow:0 0 16px rgba(0,0,0,0.3);-webkit-box-shadow:0 0 16px rgba(0,0,0,0.3);box-shadow:0 0 16px rgba(0,0,0,0.3)}.wp-dialog .ui-dialog-title{display:block;text-align:center;padding:1px 0 2px}.wp-dialog .ui-dialog-titlebar{padding:0 1em;background-color:#444;font-weight:bold;font-size:11px;line-height:18px;color:#e5e5e5}.wp-dialog{background-color:#fff;-webkit-border-top-left-radius:4px;-webkit-border-top-right-radius:4px;border-top-left-radius:4px;border-top-right-radius:4px}.wp-dialog .ui-dialog-titlebar{-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.wp-dialog .ui-dialog-titlebar-close{position:absolute;width:29px;height:16px;top:2px;right:6px;background:url('../js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif') no-repeat -87px -16px;padding:0}.wp-dialog .ui-dialog-titlebar-close:hover,.wp-dialog .ui-dialog-titlebar-close:focus{background-position:-87px -32px}.ui-widget-overlay{background-color:#000;opacity:.6;filter:alpha(opacity=60)}.rtl #wp-link #internal-toggle{padding-right:18px;padding-left:0}.rtl #wp-link label span{text-align:left;padding-left:5px;padding-right:0}.rtl #wp-link .link-search-wrapper span{float:right}.rtl #wp-link .link-search-wrapper input[type="text"]{float:right}.rtl #wp-link .link-search-wrapper img.waiting{margin:8px 4px 0 1px;float:right}.rtl #wp-link .link-target{margin:0 87px 0 0}.rtl #wp-link .item-info{left:5px;right:auto;top:4px;bottom:0}.rtl #wp-link #search-panel{float:right}.rtl #wp-link-cancel{float:right}.rtl #wp-link-update{float:left}.rtl #wp-link .toggle-arrow{background-position:top right}.rtl #wp-link .toggle-arrow-active{background-position:center right}.rtl .wp_themeSkin .mceListBox .mceText{text-align:right}.rtl .wp_themeSkin .mceNoIcons a .mceText{padding-right:10px;padding-left:25px}.rtl .mceListBoxMenu.mceNoIcons{margin-left:-14px}.clearlooks2 .mceFocus .mceTop .mceLeft{background:#444;border-left:1px solid #999;border-top:1px solid #999;-webkit-border-top-left-radius:3px;border-top-left-radius:3px}.clearlooks2 .mceFocus .mceTop .mceRight{background:#444;border-right:1px solid #999;border-top:1px solid #999;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.clearlooks2 .mceMiddle .mceLeft{background:#f1f1f1;border-left:1px solid #999}.clearlooks2 .mceMiddle .mceRight{background:#f1f1f1;border-right:1px solid #999}.clearlooks2 .mceBottom{background:#f1f1f1;border-bottom:1px solid #999}.clearlooks2 .mceBottom .mceLeft{background:#f1f1f1;border-bottom:1px solid #999;border-left:1px solid #999}.clearlooks2 .mceBottom .mceCenter{background:#f1f1f1;border-bottom:1px solid #999}.clearlooks2 .mceBottom .mceRight{background:#f1f1f1;border-bottom:1px solid #999;border-right:1px solid #999}.clearlooks2 .mceFocus .mceTop span{color:#e5e5e5}.fullscreen-overlay{z-index:149999;display:none;position:fixed;top:0;bottom:0;left:0;right:0;filter:inherit}.fullscreen-active .fullscreen-overlay,.fullscreen-active #wp-fullscreen-body{display:block}.fullscreen-fader{z-index:200000}.fullscreen-active .fullscreen-fader{display:none}#wp-fullscreen-body{width:100%;z-index:150005;display:none;position:absolute;top:0;left:0;font-size:12px}#wp-fullscreen-wrap{margin:0 auto 50px;position:relative;padding-top:60px}#wp-fullscreen-title{font-size:1.7em;line-height:100%;outline:medium none;padding:6px 7px;width:100%;margin-bottom:30px}#wp-fullscreen-container{padding:4px 10px 50px}#wp-fullscreen-title,#wp-fullscreen-container{-webkit-border-radius:0;border-radius:0;border:1px dashed transparent;background:transparent;-moz-transition-property:border-color;-moz-transition-duration:.6s;-webkit-transition-property:border-color;-webkit-transition-duration:.6s;-o-transition-property:border-color;-o-transition-duration:.6s;transition-property:border-color;transition-duration:.6s}#wp_mce_fullscreen{width:100%;min-height:300px;border:0;background:transparent;font-family:Consolas,Monaco,monospace;line-height:1.6em;padding:0;overflow-y:hidden;outline:0;resize:none}#wp-fullscreen-tagline{color:#bbb;font-size:18px;float:right;padding-top:5px}#fullscreen-topbar{position:fixed;top:0;left:0;z-index:150050;border-bottom-style:solid;border-bottom-width:1px;min-width:800px;width:100%;height:40px}#wp-fullscreen-toolbar{padding:6px 10px 0;clear:both;max-width:1100px;min-width:820px;margin:0 auto}#wp-fullscreen-mode-bar,#wp-fullscreen-button-bar,#wp-fullscreen-close,#wp-fullscreen-count{float:left}#wp-fullscreen-save{float:right;padding:2px 2px 0 5px}#wp-fullscreen-count,#wp-fullscreen-close{padding-top:5px}#wp-fullscreen-central-toolbar{margin:auto;padding:0}#wp-fullscreen-buttons>div{float:left}#wp-fullscreen-mode-bar{padding:1px 14px 0 0}#wp-fullscreen-modes a{display:block;font-size:11px;text-decoration:none;float:left;margin:1px 0 0 0;padding:2px 6px 2px;border-width:1px 1px 1px 0;border-style:solid;border-color:#bbb;color:#777;text-shadow:0 1px 0 #fff;background-color:#f4f4f4;background-image:-moz-linear-gradient(bottom,#e4e4e4,#f9f9f9);background-image:-webkit-gradient(linear,left bottom,left top,from(#e4e4e4),to(#f9f9f9))}#wp-fullscreen-modes a:hover,.wp-html-mode #wp-fullscreen-modes a:last-child,.wp-tmce-mode #wp-fullscreen-modes a:first-child{color:#333;border-color:#999;background-color:#eee;background-image:-moz-linear-gradient(bottom,#f9f9f9,#e0e0e0);background-image:-webkit-gradient(linear,left bottom,left top,from(#f9f9f9),to(#e0e0e0))}#wp-fullscreen-modes a:first-child{border-width:1px;-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:3px}#wp-fullscreen-modes a:last-child{-webkit-border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px}#wp-fullscreen-buttons .active a{background:inherit}#wp-fullscreen-buttons .hidden{display:none}#wp-fullscreen-buttons .disabled{opacity:.5}.wp-html-mode #wp-fullscreen-buttons div{display:none}.wp-html-mode #wp-fullscreen-buttons div.wp-fullscreen-both{display:block}#fullscreen-topbar.fullscreen-make-sticky{display:block!important}#wp-fullscreen-save img{vertical-align:middle}#wp-fullscreen-save img,#wp-fullscreen-save span{padding-right:4px;display:none}#wp-fullscreen-buttons .mce_image .mce_image{background-image:url('../../wp-admin/images/media-button.png?ver=20120201');background-position:3px 3px}.fullscreen-active #TB_overlay{z-index:150100}.fullscreen-active #TB_window{z-index:150102}#wp_mce_fullscreen_ifr{background:transparent}#wp_mce_fullscreen_parent #wp_mce_fullscreen_tbl tr.mceFirst{display:none}#wp-fullscreen-container .wp_themeSkin table td{vertical-align:top}.fullscreen-overlay{background:#fff}.wp-fullscreen-focus #wp-fullscreen-title,.wp-fullscreen-focus #wp-fullscreen-container{border-color:#ccc}#fullscreen-topbar{border-bottom-color:#dfdfdf;background-color:#f1f1f1;background-image:-ms-linear-gradient(top,#f9f9f9,#ececec);background-image:-moz-linear-gradient(top,#f9f9f9,#ececec);background-image:-o-linear-gradient(top,#f9f9f9,#ececec);background-image:-webkit-gradient(linear,left top,left bottom,from(#f9f9f9),to(#ececec));background-image:-webkit-linear-gradient(top,#f9f9f9,#ececec);background-image:linear-gradient(top,#f9f9f9,#ececec)}.fade-1000,.fade-600,.fade-400,.fade-300{opacity:0;-moz-transition-property:opacity;-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.fade-1000{-moz-transition-duration:1s;-webkit-transition-duration:1s;-o-transition-duration:1s;transition-duration:1s}.fade-600{-moz-transition-duration:.6s;-webkit-transition-duration:.6s;-o-transition-duration:.6s;transition-duration:.6s}.fade-400{-moz-transition-duration:.4s;-webkit-transition-duration:.4s;-o-transition-duration:.4s;transition-duration:.4s}.fade-300{-moz-transition-duration:.3s;-webkit-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s}.fade-trigger{opacity:1}.rtl #wp-fullscreen-tagline{float:left}.rtl #fullscreen-topbar{left:auto;right:0}.rtl #wp-fullscreen-mode-bar,.rtl #wp-fullscreen-button-bar,.rtl #wp-fullscreen-close,.rtl #wp-fullscreen-count{float:right}.rtl #wp-fullscreen-save{float:left}.rtl #wp-fullscreen-save{padding:2px 5px 0 2px}.rtl #wp-fullscreen-buttons>div{float:right}.rtl #wp-fullscreen-mode-bar{padding:1px 0 0 14px}.rtl #wp-fullscreen-modes a{float:right;border-width:1px 0 1px 1px}.rtl #wp-fullscreen-modes a:first-child{-webkit-border-top-left-radius:0;-webkit-border-top-right-radius:3px;-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:3px;border-width:1px;border-top-left-radius:0;border-top-right-radius:3px;border-bottom-right-left:0;border-bottom-right-radius:3px}.rtl #wp-fullscreen-modes a:last-child{-webkit-border-top-right-radius:0;-webkit-border-top-left-radius:3px;-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:3px;border-top-right-radius:0;border-top-left-radius:3px;border-bottom-right-radius:0;border-bottom-left-radius:3px}.rtl #wp-fullscreen-save img,.rtl #wp-fullscreen-save span{padding-right:0;padding-left:4px} assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/skins/wp_theme/img/page_bug.gif000066600000000264152141651140024707 0ustar00GIF89a !, -ڋHY['rLfk< 5̭Jndiêx1EL܎={,ª'0l=ŧbvHȨri @Yiy) *P;assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/skins/wp_theme/img/wpicons.png000066600000051103152141651140024635 0ustar00PNG  IHDR0(tEXtSoftwareAdobe ImageReadyqe<QIDATx]\ *JGQbW-(KKbĂX@{=rFm{wʛǓH$jjjjDj5UPC5TC5TC5TC6޵/vŝaÆ=ԩ'8uŽy'w^+\JyUMV5p*>I1o {WVUy*)KTȸq,f:҇¶ĉ-~~&11ڎq]?cƌJ+8f]ؾ8p-Z]{ܹsTE׫W,^xk}N<˩SfggGGǴTg[zuuʕZ eNV>$-ee[:#nz-:X̾~?ß^^^7 5;ڵkS\F74˳϶btAkڹBӛ'mʕ+FRRR?33kzzz[& , cǎ%b%,,!4͛7ɖ|Pغ"V\\`=8@HES[G,QK$ښѴ+̼wh.:l)(T Ư ^Ÿ= IB{=lvCZA, ByCHXxr KhA?V6lRcLVPjeHO.2licnVoy>;O-"JoIq1wH>sy UVNFb)Y<Qlujȸ&<55bkc3Fz$B) hp Z,`!:9)u=,O0qEZIAOSZ ßu4v6!Rc2[EpplgU̡|vaQq^PhjI4ZMApb=z&rRS-m&m h67ʮ*KI+ԂLD“mmM3!@4>8,ܟn i6 JUh5[fS!;|-C]Ș CG~'|񙰍-~k{`XS_onG.!s|¾އԭנ / )0i`@ y᠑#G@+ %۶m#n444LܠUx.Z̸mcǎ y苗!ٓ{HD$*"_8BM&b2}rf+IeHulp/[/]>7Mq_gs:Ŷڲ'wzԿoKGs;B c-7ԧBa h܃aE}"1l%"GYE~/X=D @zVwY*:綋XD>y±bcM*r-.JȜ6ǯGMʷ)P#Vİlh>Z( b ÀI>7TUa_eц#?P$`BՈ]^]<5glz5樨E]έspgמ|\yT]LTڲió?@ɑ.lk듳CɖOɧhiY!=;ؓSh?}xq`0/ZF;"a~fm1##nȕޣ} } RɓL2;lP%jρƿ'ִL| DٝG ˖?|uboմI{N?%sLy2VYSY Svdl+$'K`P/[>ن' ^^^Is7d`C"#ώSg-ZwVTwwoC_ &+VZ꡿'߰aC sv=a+WS1]e(ߑ+LģiL=H.?֩^.ƚLrs;''R挌I^FfPǓ`g|{e0@@O="Ke]0G[z?i)((ilK) o~%s{mW0hNə[''ij DC[Vhamá&x#0,s~NC+X=(a&C(0a`c*YZ~EHT84Z^:/ygz#z7y:stjp٧>bS8{~k1r 21+lYYEXq;十(eVz'f5 %w/luo)- \Z9 ,n٦8OOR)i745^cǎ5T Yppٳ'&&rss uF֭+С%[[[`ue]wJU)`yns/B__e)/_o w^W^_8}-}W{;^v-^ ˤ$y$Vߚ8ZyWS} Hr-N6[ ~t2+֩[QS4D:矔ZH QŅeU؅:<@EX<~q|seo͔5>6x4Fcsm]/{3zE'Bt ٯ555 ӄDXTl Ƚ Du;Fi0@±y@S 2ڳgψ7/{%Ogyִ@L4i#lj;;;kAD̙3/†A9VnرQ,wDq!oqT ^.2O!YbH,rYckY`RSSMo< K>n?0rG(^lP>&+~UYڼ׸n:;u.s^G dکIh"u>}0a@oV>ҹ<]7@{Gcoe!NsIô"Z&CI!$L Luwh{Uhj맯:`=QAӴ5:"q{g'$z=luA0|5_-}߲n36DDbN^{o e5wBҎIq/Eյ_վf! :mv0~Ⳑ"{y=|Ȳa6D{ofhO?G " Ko4]_"eVX\,\PNźH۷w4JCi秷);yJ szjmbt>sgbc@SeXWJה%K(dSۤO1|C+Gyt0j/*?aiI:FhTla@HBGFdYHq4uZSMF,$k-E Qljl߰Ɔڂ۾a3tr8 91D#JJ7CC*90 bSrQfNaQi{yH>#=~pTl[g+2}L;qnڳpGIv.3p5leBgϞ]w.u {+b۳7~=6+ W^I7$‚/ `LZ8蕺//[Rח[5ȏ3?mw=?^7^DlǨTt? Nn~)!b8eAlݺUs͛,ԘlpV{-~2obYƸG'))DKCtz,L\|>Xܡ) É~ge0o)䧳.@cdw{A^J<ң qMA͗2e/Hiy68y:\[ B,bq1+%FQ$F\\2hyCѸi'7튲) ށ|f-K6&F:X_SS]$n꒖([k (R€ӣj Oﬧ*׆9ρV F8p"J0 ,`9/B&+!6M|VhdޔqC{F4(YHReOٵlxӥ& U2uBc>MGKnLYrZ61.f'^xah_\L*ѣ^n~! TLі/nIR2Ӌ#rpyeӟ>>0qps^6"nfq)-^F Dw~zl&;u>e00BY"lc̽2āH}$NFGqn6U\<҆ *Ԇ?%ס)ƒ!czf %VtqZ6`mеU\XdD\D#%QHb8P@ƧEBH,!}ژȷ^ӝkQ_=̦DrѸqn{kSWbmf]4yzdf !$2)>('U*F jTIX5Ǿƺ'yP10fU51Ϣp_-GwHAD:CoJyo3] g%I)(./0K?N9gk\gBYxMqgtziYb*C'CDr?5Q,*]ԯErH_&;MːzLj]00 K;*Ӈ7|/:șq('.+ԪAU=Dq3C1 cMud߅/C3;?j-KԠdV|H^P C-ajF^IۏFbFЊ xJcW7sȲI6lR+uxu1s:, IZ&um)% --[FZPH7 >ωM,;!᱙Mxv\رyg7>ꯢFQ[e2 hST NVo>&Qڼi:ybYH1wtCypVM,nu>09I-,}[7a`ea,oڶ?sB?KC>_:>I&肋SΫRǏ/X'ދ[q\,)8vwĮ޾ o(0F.L](84Z"'PMV˦nֿi 0׋ћeێOHvGddG>~Χb]zwT2φr)HOH&ydiD!"x+6hJ< f݁gmq 좕sG/kJnݙ~vO?yOBGOhw6˭BV;iX؂=XQ{E_Y.*</b_ rfeRזkk'Ɠ ҲqKxAasOG#xtUO,zشJg!j$W{kG׼z1V0 b( m+F wz)3wWk>'6!qB2;Rpz:M{_*nB#[! .l9 ʘ|`A+VS#F`>O[Z"é(5b>DwnimtT~ o~k׶A/7鯾tՓEb-`a0( |Xo>[wCxAW60ldW+Jp/S$YH+Wնc1ٽJX_~ީCt8w3-u2fLjMn^GhkFm10;53!KAo;} ٤i}/Ry[tT䇭yNܱcBBb(ZbBB]R/( 0LD1ӆ*sΜIVr4Ed LH6V"r GHNۡedjv),=ȄrxC`#Kx,(4G4jFQȝF^л6ꝐkWkf=wÿi0,0[z_p|vV Iں~lE̍-JO,>([aHT"1!CԆd˒H[=B8Y6!/)6gU2ϏS_ħēgPΓʯBq!}K{,$0e>Ě>3.ݺ3n&\}iP@HBZLۮA@H| u)=ٖ1n:bbлfg e!ϑ]H2R+Gvum9a:*u\08,8[X;0,.\z4eB#u52!15@3U;su2Y!2R 쥭1M.m(+}ho|ʃ'1hC{+wO߆%Rz3N}sbiiϳ v?Ffgl_~n CuBe ;n;-MyD*> +=adP-X56旷-f K*,0Sy`h^m.PM`AR2)a"xӣsF9#I-b:z$3MKVX*xգ5<6r A¸؄Ea;'Zy4f((( ~:Ar=3HϾRwUh@Ƈ'j:K*-0w֙={vs]֊ЈD7avב]_ecfv$iwg~Rft\)0#Bѵ óȚoq$ΝK:t߫W;8t:euy+]pa[yd:imiJ%KM#Qcnp}ش^m&_O52F/gZ˺4[?/Qg!#&nŌK_{H,o^?nS{t-gRH .ӽUʙǖ 43[-gMAAa;-a<"ll& QWxDˤ@LG]A /&Cc!ٷrlCY~3uȒrxvHZL}Z1Dyj4 6 GX~TbYHب^^Z:.'J]B˽6k!}:t{}r+Rg k9J#KKǯ2-kK6 }sG#X($ǯt>i`.5p{ p$"Z[G" {9KAw̭]ƣJ1"B@# j8*`I',X'$-]j}KU2d* 1R .^t\uY`p]2WlX; cN'3w"#MBBh ¬̸ t9W,P k/ڔH {Cbjj}>݂m͹r"wS/2 ɤd]*BjlSlgt/tK׽#|b5ϾT*dF^yW J[d쿸s|~>mVu ?2 㩩%'8ٚ[8ɹ<ǂ߆zh 1Iݴ( ffEM,W6b,e߶c ĥ,)i9fTPXTf]Z74 "19f nwe\Ш QH;ݡ=cH\J<1ߏ6wbJVdw\ZZxs6Ǽd%92,ȶ(+P?= Oju}06!|#kAkjbVMPǏL `u3b[ϒ&ll'5Tm1b9t'ö~^VXX蒒iEFEMNNFf!-t X}i,FvII'(y:7o|=Д96o޼CGfUώtb;v^bmΆ= EepSU.QY;wn ڹs'QFIpNeta[j' ׯаi\\\FzzWy0PfC~˓nݺ5뺾}^:::ŋ'{MeMEV п`Hy=/#@XZ<2`K ,Ha)똪@ԿӴ2y`Ξ=J2338lVP䪯ͪ6j##U+<,*bC"hVܲ 0J `o 8pw- ׮]S{ܹs\zŋom޼ɓ'9uTl蘶~xWԷ\+A-ĤD`dzӗ9&=\'kSUbs9Ui…s`;\*a֭[?eX`_Z`p| Tƙ=\D/[ b$D" Հt-\>QWW'AAAжnF,ciC80-i~/TYFk^TWR' b_@]eɶq+WL'III̮Y`B c8.aaa 7?xРAo޼L+VWd7۶mB* ~ڲQ|>_yf/2ipn4 Z[^^^&|w.3x`*׸|/8qwΝMLLHjj'OzSe)T΀`-Tgp'OGZ4ՠ!$_fF ϕg8q2eJc9O.]J/?i$ =O N7l%>> M&M4hI"]/F(cb)ps[Ͱ8Unݺ!X56*FFKKk>Y l!A٭?}իC\. Wx]>H$/((橩5uaФ 4(\"E(}]vl] s,奣YxCРx[0- $Nۋ<0tlpݝ3!@ihPdže1B~ZH&&<U+o" `6ÇS} =ǏdqL`pe`(Xsb?bV0CƌSRڵk;r~F[AIs+8ÇF} n=$m]hQqf\`]߹s' +0RoC߫V"6m"̴5kְFEy*яk!O^x:)/DJ_hѼ>m$bYnw4*nӦM Glho7o5k!̣}{VwY*L=p|' <<"NYyu_'::ͭ['''[Q_`|G@:<6棅ma9vO,@x܎;^f>1*j2EׁskSNcVC!6C&O1],p)5}.wɭM6X@!~~D`"?&=%ui$ͣ|-NyF<`O@w $Obb{߹so켝)LE 4O*Rx٥ QQ۷$ jV7oޤ7ussLy g5.ͯNܮ]} WӍb j==''GvLe$৲.0U~cuFN>ޒ%K-_X^XI f)TzXS,2`[~}IY\m Z{>םB'Ua:>fhEv=0+W)@ \%ߟtujc3)ExK+3ٱʰiaa0E4Gm]{S~{DPT^G ~շUVWF_t \'Qd~գO>ߟ RyONK߾}@Ay]e^p{ 755m !ki/S~KCiil @Vo==}t' [c"kĉН9r;ru>rmk6l8X2ȓ'O`h r9"`;K̃ۈ\J6,C?~ |t"{IFMQtރ4oޜ*_J(qݏrͲ~Z6f؃A/^LS$;7kYf>luap_ H_b -AtN6 @<&ƛqLC/'%feԩ=P ը *`~G޽׵kק A``'NLSN65t9|$US[fe7 Dt!viW Ӱͦ &3:a`]JCDʚ<l<{Ơ rss㠏 $dkk.۷o!J5*^P'5T?Յ!(2TϓƘ%A[dA&@,0r0fy @t ,WRʦ,U37<<܈NKeW.ݻey9 t~?WvـѣxQ|-`,\0\'h=s߽sG~~v 7@;qܹM!!!1Ѿ/ptrz@("lw $*,A@ kkkdR!l%:VV\4 {{,{Ù3g6àF3Q 2|Рq9_y-剨D^tyTH޹_c;c QN~'Ԉmٲ0C0SJřʸd&0 :;uTj)YfUh)Y4iҤ?-2H9sEpQQ}ZC0v(z͛M ,ǔIh,usx h<7ՐĴTPؑV 0dSP8AX `ѣo(Sg[Ns}T0UQ|{ '9r>}Eq`u\-!W bd \/piРAV*CM078GP2BQ Vrlo<P*Nqcy扰 ?hKW^LY) -<7o}*-Aa'$.駱4}ܹ[%2֗7o3_"TET@TvUb1סZ7~h۶YGA^Vs Lj%ӛ]t1CH йs{5ZZ4CԎX, !vAiSNe3eq/=u7{쒓w.u {-%māfi>f\y #vl FהSk M˖-u<]PAC-0TBBBz3ٴiӽ(c`0o^n>Y"Jxpu MҲpxUo(/(,(H(s޽{k-'(8)~NHF`7e,Nk`|`{lag'"mš q2{g cJB+%<kY` M6MIh׮]9ck?0G=幻ZPXXNwJp$ɖ"P]\\wxtVFiر AҵkWty&feeQ@q浪9$les8c_|⓼~?hfPU,z Uxd.cڌꁢ5,bX/GQ~()]vފ+fBp,6`>j X @`fͨ~:`p@ʟ}#(зЍ6lcxe,0})0̇Kw19-=~SRɝwq,'=2ob¢OU,0(B^~]*34U93UHeeZc v/fPp h b40._*=|=D;6x)1 @IPewlߎjm'Lf98wzS*Ѫ+k~ =۠]g ՛pnh/7nܠH=̤Ef416[ǞF@:u6@=iJNn9sf<(R?|P·k) Uips``0͢9sg 0 [\'..0`yY:8fh+,^c.^HBBB"o p `{q9p@e (t1:K <`TTbRѳ!LM_ 177С*\J_ߴWU&]N70g+s0޷3._hqHE߿%a7cʂ--pC0PYPo "Pob/,1S*5kp^zƌsVa V]pj+X5 ^$_|b$L1C; tD PĨr7a#*ꘅ3l0^QUF!Z( X|S dMpa]v%A"<}4 ^!02ƍQH.oeV[0jM0P(9Ƒ2 *2u`0S>hРbeu`9F`x֜8  vmr1/HMg `ӨmEw)q<9sqP&i@6 &ң%J4++??[ -HUaC3\쬬44fdDfU3}}|P0-bd ޹̡q 4z4?oټy,HkS ^5E&</ \(߹sR`,1Jɓ'U/>zѦ,Bj޽[xOK,qEnnnDD1eK.?tPWݎ1׆Y2aYfF0E)]h8+MKݖ\1]|=fOk ?V޺,$5y;wܷxMbc'y ٱcR .gh⼬GQ&ꞅTxiӦ-۷o9s.(Z޳gO! .P/,VP:NvhҿcbbZAk@QߺHp-) A<ē >1XGt_/fx랭[j Dv#GD@1H i }eDq׻wO!AΘShӫ,$Q sP#L[UN i`B7szSJu62<4Sȼ=Z2UZEA,* BZXjP6 Ε_D鵮@մ{ŚA _#keP5GȂEt]2/ƍ&d]HOTYZpɹxT@\-siV8t2yar@#f` Fxce0+3Z;P`ʩRe102~110Ϗ*m}<Ǹ(6::\rT+ *; k\SL1F ,X`Z2B:|p-2|D,$~>زe˨/u8```ߋƍW މ'{:nu3337xI k޽ uhnhh|EM4Y%92,KVB!Z0ȑ#ً9R`@"*f>rH,$h`"={,88xCTTdCm!c,Ax.{g V~7Co|Yܰ+2aE".6:\2[li h VTxUt[aH jjjjF'$MiSmIENDB`assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/skins/wp_theme/img/down_arrow.gif000066600000000074152141651140025316 0ustar00GIF89a !, je9L;assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/skins/wp_theme/img/embedded.png000066600000070105152141651140024707 0ustar00PNG  IHDR|\шsBIT|d pHYs B4!tEXtSoftwareMacromedia Fireworks 4.0&'u IDATxy$Wuƒ{VeUuRon֖"1`gƃm0=6gf>cb] @;W3nĽgyoϓOFeFdDssKM/"aC2P* aHTZ$0!q!F!FmB!Ơ q1$!Bt0RL(C\& pE!Av X*QQ W (P(<(֠$ J!ށhP Ji V*F*/ Ej."( x#"F xΈR T9Vϥt0@E!>#Rߘh(P PhQZFk5Z"4JI s +3V0|~q@PsJ {ƘRjJ] *r!: D̳6#<~ǹkV B@9wߐ!JW.SOS)?,)Q{^y0xg!8"Q! @χXD;/:T$CRh/stx?mU^ r"hC<T9?p~׃wBjys$!q ):yAo} w+>/+^?&>x/?n 'ρ也JТ@Id8t@+PzVgglCoEބ{xyH#!J5<,pBCΝ ΋ @p|_7c.06f-`hṿp=dB WhXX峟~Qw_}gX-<(V97z8ÃE>d1 D)=/zVZyD "?Zcte(q}(~o>>`QF5^q:S^i6WAZ m4Ac}PdrέN"M@=RG&QZDʧb&ǀ59O%gm`S$4&>|1Zzv2z-6L,+624!6FeC7N4s3LkͱǮ|șk.j0'9so6tܱ0~.DYQx\NR!8) ^<\Pix牣K.D C__!P!Gg9Jf6{'4X2sb߇2EQܐ4 xqo敌eQ<^L-R,xxUb:? 9G Zt$ɬ[.ؖOQ'PТ^AN҆,CV(dȌ97.J!hd.g4B@)^ ]\.پ G+T %…[V.s,6[.>OeKK " WBR"ށJjw⁇>;@!"$Dm_4Wͫg-CEY.XҮGlf n qHsx =uD G^Sԫڍ7_HZZz~^\X8eqJG ed"C)2<d$`QmZ8cr7L`FK(%dV8pdru+Iza@b.tϵ{uy㒦9Cϔ!h;R0^AJ=;D.l5eN]g-DyR 8|o}7ql_=\hu0i4ğLZȜ;+"~1p]&ʅ?A=rP 0 ¨VE##j톉,ᝤnK.--LVA?k֋GēytЧZ\irK SЪCcz |~ywNYѨ1R+bJB3 JѢsZr1C8sf00l۲r^ir"&,D#aAL8pR?cQ.2O!c aZ 򢝫Y>D{~^׬ńB4(ID9Zb"رi旳b8Di :Zcx's?Onl) CAIV<^9?sN8*(.TeX.XNLLl[qӶ^kZE^XLty۝>\JVJg_6̦6!Xˈ}uBf,% h(\X3?d^E s6X0H3 mQlw{t; vfE?q*( ^B . UetTj‘'3-YvWcRc|46Z9Oje8>taI l /t'/ZV KEf=JiD\cKGDxf''<[+RTR§PP(>+Fk 2Ȳc]s`ފdN8"Rb23r4VZ]c8n^Zfy/5??;{0M+#iS BgE+Ei Whvr 0Bb3ڋ"1L=,IQ|ߦ*"5Cs§=Ggf)0V,P(1>6ʚF 1 1Fk|#0XWDq' f4*.M[hٳ _}) &dIf[iZ?8xįNPBZb Kt 鍗{JqF)* Wq "Q\#8wf0X8A}D(1R=YX3-h{|ggπYJ##JeP)AVe*vcwdSP.;NP+)a17?_x(* 3\%EWuN8P>BSP*udجP*BUcK&2M}da~vz.:ɀA'# bT"y"0)+z cD :Tn'v^Mq26<}liw{YR!uzabtcQF\w1c56n[oyT Ij- u| A xeدRJ$oqcZif8eX!V^cJO3leWNw9DFb* VO]̶: X,T,pfqx-:]L$ 暄"dg! Cj*(\~$=E), i2۝9>bZX+w`t,XeTݤ²Z /CԁQl4Hu~?v|zrzf OWnrˮ+7.tafwWۿ~'JS+Q ,^Tľ Ȭz!1~TiDQ {P;Ι>|bJfVvmڌkqw>ÓGߊs3/փ3^}VGcKp#QGP(ABMBN#J!ֈGk+t[I[ƹ` Yс*4DZI.^PU#4^<V =Z=KBT/0R,Sh0T#p\B3׾$FFu٥^ [4s 'rXH** &),P#~rG~rzYΡSZ,gS Qdز^߰*3W۶Nb7hOm/cm7MUV)'a V{eɂb~kb\+3gտkW'$Ak[}8>쉹N!RɴR71Q*qdc4A =zR>PA@?d &Ͱ(Ld dYFGti`j!Φ$H?&vEml5gMiwX(v/chE}dY{Mi'fYP9nOz/EԳR)cA`U΃m̆Q`J`'l?5?U1¦Y:l`Dz!'| jRxZGKlK-/f3sg>M{HMמ|_wXꋖMt߾|[m99:W|sWHHG  JFIH!ŢH;Zv@傡CE(o#JdA?|k=.qh0ޑꈫ.2ħ(>В" w`q|N$SrE)2W]Ͼ / yk}%.̍줔 diIcTⱥ0K1J|x?o u$ h?t;R,۹fϖufGGm!* 6Oڝ\`{UV;9esÔ}$m؍S#ZFĚPY#X6ݮd 3'蚩eVKUB˷zyݿ?tBcm߸.ٰNTlކ21apD IDATmVU":ؙǎ.B S/u6r%=JPT6+7o~<ؓ<~֬_) z't1#ۏ&žcl˜\|9>@gϫ^=S0Vp #@c.,@#ꅖGϵ獞 .Γe>ÆkHt̉xbTF;mv7\kUDWp=x"+&ٯ~vJNwIjY]jI$(eَ&u6xL+#ExQ)P&]r:FUG 4 OD\}O{-SK߷@q*`9v˩&ECCtک휙,=VOL;n|=W_-;/r)Jzǁi o@U_:a;7)))GٶqQ$} ,gdC{ךšVД Z(:?|f2~` ob=AR^3b7oxu{L|'l~*-Fh땵yԆ: ƊҺiZ%_F*3EeTwF^BmXTXRO~S=|Y )*ZTdFqjԃLS%S0d*AyEc9k,GpSJe>7qM/\k0a7WgOQ &cġ1txڀ$;~KZ@>Ty?qO8q(6N˧n Vm5/e^]dĨQɂKy~_+xgz`!gĖQh{j:N^uz  Ng'GxO=EҠZX1:cy)n;ĞbSQJ~eYh)=IB"Bt**::V?oOt dN$I NI (֯(QY˹x鍗IKa(_AEz+Cd& <#gY)RfFg 8{Y L|ɛJ6Kz=F Nα:^ڃ;VsUt9.VB Աiκ6EkAyMx0Ę^!VbE("cs#f S<$|uO{aŦ V.TkVmp_y ϼ4<=7sCxISV.[G\E\m͛^V>7_a*yL44[#G>ɀdw[%2}^K-{% }۷X'**kU. .M!(7XeaaaCg :^rWR8z ;v+Xe aϿw\B2߷ &1BI!AKơm i /=zʋcsD#hڽ'N _2/[U|'󖷾 q+d㶛 ?>w;[4yj\d*LQ)*  Q=&s= 5`ʠ̞ #57@RϦxG?5n~pݷ[>fw2{M[I :6PcQ,Jt$J}_txƃV ȣRWވ)ٰ|=R\kɱ꩕NUJe=ٮ{)v? k7n`0ǔ!jLEP| ^+RbD.FS^j5O1+o|=3Ǐ;AD)~t/jB79c궍ٯI JE<¾Sml˷e~Nqv2Z),>O?U Yf=XǯlZQ[UEW^|} =ZgNqqY.}%o~9Qe=d8YP CV AZ'ss2z/V KRD^[Z+?s1:uV+?Ԫ֊꽿}KwUSՈ_{9ABڣUC7yC7J}1yW.ET^H.==q !7 *frѮ >C#_?rlP+h3L)T=u<).0J =^vfLDD ":o2Yœz|Y'!jpxō70RokbJ :&ҭ\q e'\sݚ:_4H}2 **m6_Fx[_Ow*e2)L?W*]9zv sեw_4߼6@S)gvM ٧OG]}f=njV˟&4YMGq}}Q˂W\{Ag^39a;8uWadr'wlj'o)?ѓMs?ٷZnSߺm7~m15xH(|jȶ L $!xN#FK>nm??9{U]ś_6j۾ؿo?L,[|^b,.S 5!E=ar]ڭL{ȼAdepۋ[VOMWܨN<Νk. bUUD{y eӡ?%d6IQC#j"z|TP365~٤oy:4e~%e t.rǗ?(m}  a7?; $<28E[W05U'M.CDL,>k_n'R*2O~[o*ؙ.{(4ϳioyU_6_ԒfTr ǧ[ uƗQ2RޛŹ~w_#E.h'YD$=gi|%xAA!LĞ9)w7;nqӋw;~Տ'? ~|b"xkwql":Qĥa)4 l&:@gYM#Q$%uL4*WS)m5y/,:Ky^qkYj&~J{n 7]gny[Ѕ>w)S"*%QBP ^r8?,O`qOd4ևW\wGOF%vۗoɜpGu~o{y@؈SM9rwe}]<zt/!ܰqBTz]pB2?*_̏#YK/JyIəP(=h%%.d[Ej oR5#2Q ,) MplZoHdJ wМ$,XMҵ裴.ּ{oCGG>AȻoPDhN"%.lszbxRJ9pjg8`,yQҼ(^p_fjRݔ{31.y% OXVmEDr.ÎKְeBYZ0y8={OauQ.01H.ozA=^GU1pXro汧fCQ]-DsXAOEw >U[D>bhR֌J;L{2u{CEA vDUmETl˱Xq'q$n'v$K$Ѳ:%N A.}wv[?Yt_y.fg޹z~{; ,;P&X_衳, Z;Cz9?|@71:w(wt+aVK|J_ 2K],06]#X5|)qd-tw9h )C 6wbΙ *Gə)_ρDGy%}K4)33hp͡Dqٚ)f*t9Xj|ኵ71P+n;@.Zåіf3yvvuzKGC oK'%u{8'- 6thEg֌bC -tfOp_58ހ_ŗk;k9=~nFy׍^? eWNgJxi8+z*%(I֭pdNRDEnny߯dytptt$ɿ7Oaj?-NUAK@ =(%NL1>"nӧɅS'|m Fe#iqrtw<O21٤wY%~Q(u13w$6j 9Mȩb-5X I"pGAQؔ+ \?9ţ 95Q4CB k8cٸfwScocbq3'{&@n5@Gqh=r[s`(xtG4΂F\W/c[.x+ Y7iOrZdƭC _| X onScIkԓ/<~ﱂi< Sv _{č:Qxk&J-W0U!FŌ,_﹇_U`pJkGb~fONOS u/ 4v[VB+Gh4~=kVv;s mxNie)Jc[j{=a59AA\qE<ǘ͓~LͽǰIW]}%B/ƴTg" /0pt=.^ Gdcgri"Cզ:tc5!~?z#A Pwy'"gk#_{ϻr# KK_p^=4Gh<_Kgm8;`)\(J/yeٝ)jI̳12<+/o~+geFr;[`i㧸d5I%W81Fx GXP/ ?ϐ\b˿{o ς*{.5 +~6)BW!:HREIӴf^u:&nz'.&#!j)ww;8B+IE}eS/+S#z;4/rj|*r9FʘVB+,_Udu{O [y@qVE[M]{C0^ʆurqoyG U17oac&V]bxhj#ǘoZylH. QZhbfSV #cNо!U)܄kl=)~{7{?ᜥ~=|3_\Mn޾q²^D^~}fŚ՝G>0\iHdF#nz [.]w B=Wךry 6?\|'%:JB Q¡S5蒢ZOaM|ec5v>@o'DG·G(ԤDz9y{x|?;|ӬTD{86 Ups҈UV,Tk 3{oѴ TNɅEN=ݰKMyl[*|;/`A^x3\RwsŰ>w1+x^ T[4gԫXt|?1J-Vk "ZMG_G'7]{9{ZWCL6X{ *phng͆aA'"Zi:,Tv%Egwޜ{ǎ8#xoߴQz%P8`o_Rt拼~Ͼ,_=HP^֭Y>E >;O_^Y2׉;}|83-ˑ #˻ O|ygOk0ʒ4[auTO?;:m.x}.o~o}ڭڿ "/<9J,4Зv˻(=jrՌ\T,T‚e ~ $ɴVgOs;B#?zU;SG&uh^NOlDQZgŚ/ ^grȖM"{pkoi&tuѾ-2/SfԐߛn!VqѺKсqˇXP%jCgΣ\<+)*VֻW qcX";o >V=U q{dnfX [ IDAT̀$xK|~'W?.nݶmmϡ儢u]8;LAgs$\6FHoĨB*+;|'ۮƫl97>{:5~G)!xDv/līOv]{vQ'q>Nwg/{wPY8K:]!zJNOpf>9s&X'(V×b҈<'H-N'sVuGy5F֭; kπu` R)W}}?[кUIˆ#(]QVcl wih ?ω3z՝t<G˯~;_]]:KZ7 ::=֌y>a ! v2~ʱS3MKGXlygEi* 3DRcaq+/'z|]đJYK6I/Sz!ֈ{"PM_Oey/) RҌ'x[pΘ /[s~&+')tS(tt~>cuٽVczuzsLz=? RK0LWRX%pHELMM)gwǞyjs/|5w 7>OwcZߋ/xmUNhVZ.2sz:M30EE <R8zlc 91C+I s>KGZى3,[ǟ~=0J*\z*>rdb4W]~ +,#:aՊeL @5H$>Gs%y5LO&k4Ni6~F!b 15݅0J?ʢ58v$I+nӳjm#'ǘ;ˡ#|77 ZYOk6^NwjbLGoRkJ4h#(<<-NCS92j9D0tWoLrGȭHJ>_E{>{`f7 lŖTѴ9NzGǙkfUFǪ[W-_})W1CfT'~36X̵۷s\}Oj Sql\s%|B$iOOs{~ Vv|fE+/ /V8Vm* 2++5O5Xl]Ԗ+7oh7ua68tGQns9֬;֮}E(X*z"l[Á}o(%| `as<'H%CBB)Pru)v)͋=M@!zȳ/=Ʀ-^~}7=]Efg|Wik9KPQn@gpZXblPl;НK/Η^noK]§gee˝wH3k1iYzwI0y? ZÖk32P"j@>Ё a$+#'5Ɖvq)Υ+?PΔ7`:^8z%`źeڳ 4ۼSo_%&oNHX(h^E 4:iUBWG!2 b#tmc<͉S(a|8wIs$/?"Yf*gqvFGQr\f5U#W=$l|<k_)|/ 3y\)FU3;w(=ۖmsSc::7]i5+' =sJuuujtWMo[.[ng?q=C=]tr-vv|hq¨ RZBbM'ڣM]""JYtzϯR*<⁻~>`^?yBqGvo3oȚ}#t|(`S]yͣG?~&鐓'W裧Ƅ4I5WXk jӦƩ-V,*v0&rgi0JyMɩ3^@:[Y6TdaGֳy]dg\|ߧ\C)3_AXQ(DyX-Y`BQIc%x<.nnr"VedEl&N=M2tlr].ZqxE.lE"(2k W,80Z?05o߯::¡5kVs+W^w6Vf[5ʽ3{r*?=*a).[9d:8Q8xU<WdM7^c;OgPND`7O o:ȍϥ\FeyǞ"Wwc֬VMb@HրڭCDf4P6ɨr".=nVRXPZu\. 8-8Ʈ>!~@a۶ zZI6 Uë^yi#kzODjDҪ;UdwSsLiclꁶ8!g_ffx<Ğor} w>(O<=>O0;z%wl^/wlTՠ"lHUQsE4fG9qhÏMFw]dLfɤ+q=-Ez1̥m-spdemТ(vt.'S8j27q⋨/|QBN_z^zUӿ#ؾ 6jB^}g_b^icS*ձpjv\J\*^m^٩ԝŗ~oN #̗yY<|A`b/\IuQg `J<5?|8vj/_"po%ό=}{$i~;pm#jiNrǝ2:E u\ys#Ve_׿weëH"͊A@o[s@cɤ%ĺ, " 6 %Ӟ-WL=iI',N7;V-[ń^.tVe(VG1݄/Btw<ł?rZknxU#Yh*~%U{p7zwjL_},+k.a 5khOx\ ~.e_Cfv."(5c\"$ơسM{>iXw (˿xgxoosmpXfr ,[ Sswt;2IX1)^|?> slڰ&2Jζv/ɍMjBA{ŕ]FIEms-]zhkMi$\i(uAߨYwq?XׇkbЉh NgC=~0q#f>V.Y1⺋]J咟~gT/^aYW^q2ab\/3yDA0;]-hqB4fu}Dq/~o}{<93Q:k5oZGh 1FҢE Bp4RIJeaaBߢ>4|tj(J[{V[.}Y->B3'5Z.Jkj2NΑS}sz`ySZu A\>:P֐XK;47cM{&c)|HOw+*1va.`hY?QY5LLҊmv2~+ܶi5clW4IqN{ukcԵCGHdoSuv}Q*YG;Oq2OdclE7T Fj&Rw=u<(j((PŧkhkyBrо@VyJ zMRyѾwkQ֛߫Q51!8M2(lZiz"t{1 TM%\p^@£uV ΰTq(%ı%r-lb6͘j!f,dS%m&rV}Mw|)li}JLe+XQY;Um|qR9|H]EJba7h,I"_-(vY9ÁgR(ԛ1WR51WM:tdrQH-:A PʁC0"Wa8'BƖhmSv~^kѱPЪ #"M\vݨ5|j:yZQ Y/&3'syVt 7MʽD,t˴^rZZӲJC@ P"'ғAO{]\gS`uor'kK]:l*N\GL"6 97͡tJǭZ5Z Q׭;3%f* 1m<\N4,b,6XadaHA İ L/4YpUZF 296 q^EY9a"jP9BZJBb{u1 5/<ܶ#bZ⨛mo! 6Ĺٚ4'i*Eh'=$l"+@mVU cfρcmj5vDMKP'W]6Bu!Bġ}QKRgvĜ+Z;h->R'דú&62$ VʲAjS J$HY (P <cj͘əT@yRGhOFIr6$t-<^h*%uښ_s pDFY;[vg(pK܀NOd ˅º \^ BYFVܚofӺ HՙZR p>(s@g|` 2'YNIQYXde k4z: (<*iD.UMp*4R, =yp6O, Rgm P.˅$ tըz(T4𙹅7E%[](p$P."KS:gq$.*u%-o_\ZXKdd38jfkEv6Pr9_w+r=D1Z$*ȤƠ2vıevfD5Ձ94Y hT% Xn-6KDF/mC4q+Kj30$$h.rV)4!btP*6Fвrb!XbkS'f檧5uwýUÓ%1__J)UhZIƹBԎ4!roW~F|J_ e&p5ײZa/`#9OB?Z$5{!ɓbt ˺e8pJr)⒤Դjq}!8S͙P,Be[85l('}ɹE2"M2,L\bP% `]B#rJL!|Qȳcq 3'SgTTiv/"q4Z;ۥC'eZbb8m5N9kqĹfP;]f5/4ֳsAҿ^"8=ÒҺ3՗b.6R*c=f:/+U:CdҬEHS $jI>(J3F+вa4-l5qCa\ڐ/tʥ~)4n2ݬ7Zf3p!3Fۂž9Xw:kEQ"vhW䭵&FM-|.P֊/@YTb*XgsNv)MUP_r K/o?_r#R0d ;t!aPҢB/~ZtVi [*`qH06HsIDAT!\f?s(hGI8 Bl SZ:\`v.cfN8Gk\^a4m )89%f!L{ (M˻=CX)ٱq[V4X <J-ձbuZYsZuqZsκ }m!P/|-o RڹTSթx\'U1P~Ӟټ8Z rץª|PUT Ά8E*EjeiJj a.JֺF[6R\pK|߮fT(֢49[kbݪNT.gĪǏsgWN)qN V .PJ8ITpNƪ*X $[) &͈}y{Kgsxa爷.TK9Ra)x;|*ۈiB<\Kq#}/0--_jC}\p_RڼO/ 85OQ~T,Q<]5.{ 8yڳd)ÁۼmF3 fttM(%-˧;YX^K9R@8n=VMOZ90\ DV~T*b!93>95} <;:p8gEՌ0?_gz˗eȰKm"=}jHL=]G^~G/M;_3ɢRR*U_9yZd2ڵGvqZq*5XتS* CRYw.{.[Y?WʷΪf'c :Ts{6v$ ǑQT xKQ65I#*➎RZ.lZ$89Fs.]Xh:D֯]FG urqYf۸"FV ZqYnr宿?=uʝ(I^r`GY_+)r@r(HZqb"IukDF |PkMOsNYp8U)evΉ(241jd[*g EYsF+QΉ:qE$KV+xD5X%cS}`Y[(t۳gnŢMWGؙuUawUuC<$npp8$@;"$$$6H ,ٰ`ǿ B n;]=UU{aؼU-ޫg=>uAK.W/5xSꁇdhs~sq6p!ֺBt]yYсlIgeo]S;^џ3 A7}:WEL2$;Sㄨ` /IT*TPC/%$eEEUHŪ#/^xģxqc #A W(|ND zE%ZXI|4o]yMu X RjqJ .Fئ8Q΋9ƀsJZ^=q$I%zg*iHZMr8i&QZN;i6Et}WoRUkD1d~fg#{1ٜ,`ᄒpIk~_Ze:Hf/BԸ] % I`0 %d)MKW*vaU.ؔ"%#ꭓP}wWZtIgF9ya1*WO7}lZ"Hjz/t F8ZkjEG1cÕ&WŜ'5q=˫TPܽ K5'!'ӐW!4,U.l,WeF\ri nth,WIh̅nw\Y'0w]ⵗorBGLfS3wt$]w7\>e:Gd C5dsmZ.l݇Θ \յZ߾*ly5{У4!sԷdEyAP!c"R2j}zr,''Nј(hlHZ5V8G{mdJv˷}{$NW +Mp*, EiD 'g#A۝NY 61tgt&X͘OFZg2YvI򇴖8/x-|c[_&!NԖ AB`n> w~fCĻ6;4sڲrug[UQ+ipn)?;1˙;߽GUpJa 6ͥGcNz}=ٹvMM{T8i`w-㐠w(Tj VE u*cKM'DirjVF98b'vi]9KEAoX`Bq< YŔ<$Du++ڹxW&A1LWx& 9{PX%Ź);׈㐗_~;fT6;Wx6z8DHe$Haa\KP|;;tV;\l_"-5K ))%e}Wڜs&4W5LY5q ^,y ٴ(1AX2:lTz^Y]Ai/E4fl(,+ 8UIiv%`Ih2/ jq#B XQlיώ90 ~9>&óF$7:G(![$!+yO 4\!.xgeIuk=ncxUG{(9r&Q sI$)ly\G!^r=:UFS4d^Ufd>ƹ|sQfs"uX,$/=1`#qd2jUCZq:nsB*YA4.4dU?Cej=8[C%@Vi54 NsVܸ~i7I{aLVxgc#D{]~!M^sfyQ, Fܖw޿/ uu@BSIENDB`assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/skins/wp_theme/img/more_bug.gif000066600000000222152141651140024727 0ustar00GIF89a !, cڋB"U@`n։ $z] ؂ALz~V*nʪ5>8d'' Z.ns}R;assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/skins/wp_theme/img/tabs.gif000066600000002456152141651140024074 0ustar00GIF89a,Z2Jb͑󡳻둛!8,,Z@da(Ȥrl:ШtJZج )xL.zn|N~""6#7$% !! H*\ȰÇ#JHQ 0hȱǏ CIɓ(S\ɲ˗- h@͛8sɳ@ JѣH5@SӧPJJիXjʵׯ`Êր Ҫ]˶۷pʝKݻx˷_RLÈ+^̸ǐ#KL˘-ذϠCMӨS^ͺװc˞ sͻ Nȓ+_μr-HNسkνËO X˟OϿh& JD(Vhfv ($hb,0(4h8<>DiH&6 PF)TJiǕXf\v%NV)V~ihkIU)tign©'w矀bzj衈&裐F&)饘f*Ʃ駠N)ꩨFJjQꫀꓰjz뮼z++lj&6,>+Vk öv+k覫&ko l'|p ,G,@gwL w,$| *l, /412۬atEXtSoftwareAdobe ImageReadyqe<kIDATxdWu&s*ǛsQ-r ` o<{ό=i6``06@%(nunso}>gU+{ҽ]USg_k?}0,kh৷_STT*tuu LLLmӭP(FB%`?xײMdr2JMtttGnz^_)qt~?>X=== x<{ p8l!ڢj H$sss'Ii^uT+#k!s?}h=NImt\Ym3/ :H,W~||VNtd㽽IGnz&IRl6ِǴC@2uMT ,k$jyشiӔg <%H$2I?7/ _1Mπ0D펅]h!L‚,!Wk:ȔkXհb1SRB K])| <Ըp0nBɒ'M7/{"_BRӓd,6 IX!*U,װ`N :S!ehY6V@tDx $P-7$sБ#tOW_}}w# $W=IB8=@/ IdRO@Yu\zDy1C^`9[^ +wP '1p!B$d+b#PkhrU8)HDe&wU|#,#NBLOYd}"!D\~釾lCuJudIke,d*mg5rJ̙ ! cq&c U'Sg$io?rc/eK@X(9gP__x +',+\(p13_ D]$'rxkAHVB񮮮%L'M|ܤӜk ѩW`*YZ,eJ,$FV(ܶ@!TX%enbR2^;+"%ݸ&nmלm8RoGy-8]$`W,*tHtpfI?gtttl0e(x$u ! E g"9@u3%w%v)<ɑ5P\^'A/R\YMtJ6@6ݬea0 ךy[gkeL!qAmkޓA;+0 boU; )6c' W,`"W">jZ=2D $IZeM,x!!;Wl#JMY0gš[I%E[3v[R" 53KNm\)ǽ73K KXbv23eu6}ܳ`EkT0,J\)-Q-}h%t達b(1!8>z @:] i ".Kk?ᱣG\mݺu{(Jr˿Bmڑȸ\)M+$*YrU"Sd͕:@na;F, Q\S.['D :v-K b*'t7*͕--@&:3Î'\),y%|+^WhxҺ6OSwE, ZPS^Hdw>xu,Hc7P5u7Z=8kęWU, L].. EZU5t*p2R[Zq˻ӎJ/!}?sf,Kz5%TGoJSyez?G@H#QH$VQg˨|)E¶ HFun+Gj6)s.r5{,-=fӼ9{A-Hڦ=EkPEڼRشLy J-i~H pkaOeH}桴"[Lၘ(.n ̉, v.,#<{9yp$!,TIenٖ7I,- } #ҫzjLۊb?\aK[=Q۽YM܉U ^X,Sg-@+,X) (p%ú-zNWylu 0wK}QJ/ aK >Ե3lDU9kKzًq%&͖E 7XHmL} W-V4ո h:6* #S^B|Z7-AV2[^,?7k Ȳsg*XGߞ[*KlIPʨwd`J&z]Yµl7bx%@P)9|#'0Q8UU5 DPuQ: :C8X. 4 s! \/3pJ@#]͞Oڙ;O@ O("Tի.\| sEҚlmݖoX׮K%ڙ[ShymUtTO[ϣ0iӦIyͩZV9wzjK`J(i׎_0#5<@UΌ4O83S*6^b~ZKx%S3gib(uJWrp T=FRI[F_К$2 tAǒ|cI73s v櫢(4u =ZĒ"A .ݬtA%qݖJ:^={/h7An8נ8,g+߶,_F)aQ>3YmCW )Iupuۦx3pqt72X\%l')7, aDTʾR. 785NC C0΄hĦ0rQ&OF~b~1ݿ^>r` O-rL6gK5kphϡ3 ={:Ƈ~ ~hbb/R(OʢZqڨV/EDw $WP 7v%  ;J 4g2 PJĬo^ks4]4*1sNTWXY@2sX`Mu)-S̯)x!SdUf'1R.6R O#N'I^ y.豶'  "AtKyǻ6׹wK=?q"c~=w-C)`R33=~h %lc,=N~>y~#l /g$LZfH}E%E4-0*AOF"hy5T0`Tʊ`Aur+vlumÔ5ôcc7ŸQ0.q!ö^Yww m P5+Ү {>7(UeF_*X^3UItY{J`F }2قa4V_yE͛70ᰛfʼnrH H/m:՟ rG{UN\uՍQMr҅j wkx }^W\uhecWX0Y*6K) 3Qޅ馘u7K{:ȩtQR'?ip $w,]V_^ @E))vxG mJ50$I61a[^ǎv3D0=amyFײdTX\%t_a:WYqT4:ce| uL>>}zhlaFs[zi 뗂mo{o+>mh4k sINSttt :tHWT & ŵjh iźsu,mcce \`S2$Sp2]a8v.B[N_3 >Žtג-?dŜo'󳍺 ʌ߹P<tVxK7BFvi3o_K!|QAW0ro*[3-'lrY*Hu %pDҾ:Cb%V2 X_kskLoF/VE!<@R) %IW(zDMd<\i\IP%\5]Xy@@K<ᚍ3/Q˥eW˙ϕvfqmOeun7L1 hd r:ɤ͸ᐵ`+` x R2cSJZ0i8t)tO8JYq8k1W(:uNkqMv[u-!na*m5}^ڇmu31[;e1)@ .5RaWb`D%B/rΝ;7S@-E b,;yM9fkKgT H8ܞ4`vrⒶ9댺~5z9\?j~ ~{m,˜y 7ZhD#{oK(.`u8/!^'p^&pA w΋PwwwJ̠JU4][/2\>ηZnUo/HXa}wAWV$ r/T%纹{mLe H %kXоj{fg>>~ӽV+5|ZVqPd?˔b٫Db26}2sԘaf,#Hvݜݶ^~`BT vy C(=׿@/QY7x lyxk/R ,q6u>x^mC'\| JK^EsTάMn&eie#e9ˠmXi,K1 -cAY(#*}nΓKgMtt"0v7!Yn|y2LbaqssE=@[^^^|9T\(* t.Pmwzi&Yv^O2LwzMױ=:T!ls@hk $CA\)|OK~sN5"b#7;X{0\,@1[\%b-C^Z1n4@r}/pD Nw#.CZ:z*8]G0@g<@H.ť:WW=*Hl.<`qΟ?T*5BPIt*NOEܪ`skbKҪŀ:p#?XNOP?FӨbX_YB*N@zm#q7<ڍ=Ƀ w$hg ^5%oo+3W %[m3uC?;!x~=/9(> u#aZ !7mXȷo'S:%KYNcfyVtDUP ?r)d+++F DCg.xDX@$v5r@~)al2Lv5#%Xfѓ{P!:'Bf1ޗ/.Ds Wn3id`6r?oQq [qcѨ$էs7IJb'؇~3CQE@dnv):^(WpIv/Jb~xZTxnHy K8pWDQhrrrV ]PT{!*:>>ޯz5aa%ө;JkȸLS+^_3H۲c';Mq;R@C@z5#!mH#/ēOHz'Wlx۰QhkoDmD:Z ~"sǎ/ N<vnA ٳ}=}ұIt |d;E~{`{54PrΝ[kwAZq#̶m]־D1ky_lvXj6$G(#H1,Dbe 'Tx# ^+Xiɝ6Jه }}uJ^-W4=]94[ɸ'xc ];wIܑy_DPlG j%$|^E~[!{LBupymX[0]ǢZWP~-S8A)y;¶tg R:[[enxLoUW0̡>G6JKgD43|b,fƓAz7LIM-\k+2>?>dQh_HjxQ?ݫW6\Ն.&?~f` <_ĉ}w;S FRԎ1#ALVl u Gq<$s%retu00y|pr7>N0yC#렴 ^zҦ 8( L MO찌ڛA̺JX~{o:d9O rd[!zDc~;74"lnv~oP`۽|/WBo.!Rj{x;^΁QWh5 `ψ[#4C-LϐkࢱnL^Eމp 1$1@DOs5Zʡ<ӧN+4%*IXzIಕMVA*ʙ?0A7>gm[{Brn$S5m]MVBi8BӰ)4u"@ܬ%oDI_L4w%S2h"L)%qߗ+oCrX?,v򨔪[y# +wt1.[ajޑKI!{.P*PmV09XBӧWQ:I+*䰷m5nfqLn60AmF3tm@xa9%iy}L*Q t񦛶cu;􁳨ty.Ӷ$Q:=33X>E,06O"?^/;ίgbb>\A=Ջk ,as&Fd"Nnb}ݩ)%ԜuHT5{nHa W] _ROB~.KIɏl@x>Dhѭxۈ':#(~LFd 8y^iX&Hj4DM B.2(3`YM_4a+p,j݉(j)=Z>pۆG߀2 W!1PP*kX.у/ GX?­[UעL9˄/FSdurϱǯYik"V5!/'n߃F ݟ:!T#XkFe@m#MN4ޡc1R̬a Y>Qűͧރֵ"@ o,)Ma)gI[':y'鑡^1N:#ѸrjXFXzܑ9QwU ܜ(Ҿb s%"q &c D-8A7Z Mqy~e z! I3'=rM"$t &:ִg!zW0( kQE!I\*3jvD ,aSphY7M*X_m de[¢FGlK=X;K'LxW&E) bA|#%3O PrtIqVrX_^訔coo( _hNxbsJ)Ǒ$Ue3-|3&XX9q$e ?KJ,wʗ%@Y%C9|(Ze>1 SYXpOǎ/%J~R"!e(>BYԭ=YΣD9_ZD-[#07M.ۨ:db%qK20]l_:)7k<^\{I~p8 HPDE(i;3Oh+hHw܋¹OТtMZ8Ngv½DD#ZX$j  tuu%GFF6 xYs(nX gaA\*6a5u5Z`EWHn vϖ5vQıR,+%ZS[ gp%#%vЋΞ 'd/(5I,EcbvlKH_C75lGmy\$벐[z/r_?[7goLN Yg8f2HLK)\ l |Tk _blh?6u&ʒߣ{ry_8jOZ5v8&zvW0JvN͔Pu9OTjf9B FPOVڞ kqǡq gLyeb^QZ?{ȝ玢rD4w&,j[ib9@_teSyz`j)dyؖ^9 w`r0Lx*:@ʹz@K% bQ%< M#(Ʊ"pԲ1?q\{*RA^PR\$aep퍓(nϞ=[xo$TEsw2d.X7>.+eY"wuZu@t:Gw2S3KR߇5T蓬ʤU5*(FJ\{ ։͵8ϕЕ$`hboBYpQMے$2:F-Veص-ر}  쬆qP?ʐ!_> x(bK'f놋p31Փ^cuYs-Q/#jŧј koy?<_]RbӟEw5Wpsd_ZiWëLMMMWTeUۡTJ8,1ş<ߖ%$ twM$M]+'7!=0FT&M<4^\ S 0j Qrd˫EL⇏@!_E7;.; &\!GwY˶))rk(ꍍJPwzff6%tNA"͓)nk!ܓrnU,ܳh*9gsm _7~@1I\l獒IX]Y +|]&\Nj5ȅ AZeȝ>†.B6w{ۣ b >Hi."_dANU/1MLm #z%twry@`ZVf=5<;B)v&XfQa-G>\`tIr0sƑee[p\|qgP`?cHXr=" ;~ށgcc6_؋adE\r>nƯ}⿠A ތŹ J-k9E4qWNr<'B}sss^[&,,,B{6 D«yc韎\YwRTۨ "KzVu}](*s$ k-;yƉs35zj՚#^ǖܮe% nU!-71a+RGO  ]\?w"1R #YP81?W0RC0wbP~Sy<1^0 }=[p߂K{{p')uQ$zCh2Q#wv% P(Tnw=3?[/-Lki6 x,dg̿r<&Zs蔵xe>tH[2  Ť)L5V\;m[fͰD{(IiVPLXb_v]q9tݎb +yηClE(t_}{IN!+M @fgG c&5A4!Cc@\ |)lH!#b*KX%w'/ )^B8[zUQh K'1V.997BB8i[5&VLq.#8`a|;PNu]/5:{{%V +ر|7?!k?fgK#uUWabjSDSj%)Va&{+5f"FqͷK.t43m;v?Ex׭?"|͝E/rFQsqkU@(VɴQpRpJO e{,-,|I|T*[A[Yq!ỮQB A|N'aI>$t"a M: _tZ[LI `aqSn BAZ{Z6o `8(6Sgpqq!Y>xCX/+O:R:X2M\:VE&+{v'ytO/ &-=,Dn kpQ0koc/;&ڕ@wuFҸ1bnq3k$)]C*2#hŞE)7R 0rgn]^ 1~M{X?3p0'4lIY87OqI5dPo72.dao )\|N%)&8!)"wbϕWpthD4elۺ+յIb%Pi8:1u;Y^R*L(^@n{*"ѱE̝;i${0L (C4-|i`nf ^v7@O+X':]_-j׋Y8ES"^}!j51h!-HC۱XX:O ` W ,C$, øُR_ލgR_"k=G7R@&Vbv](ө488*b..zIvL DH.㻍S'qΝ\V]6H*|زc+N9@ѿ;cǎb2n,RH8A aǞHbXrUå ]CP-Ye FgO^|128rYJE8}(]pB AX-Jm97rM)V&-J~/`E;(Pjղo~@$ ,(w$RKxU{dl1unL^]Zk!!K:EXLZX_G>.`!<2g@QQ$%J7VIϞ~x/.uqOa_jX%wEwX#Q&O4qv>C@a\3IZS-b g]&VC/#X4y7[X̵p[6_-AJ{I~AxKa-%ѿI7"`P*َt'~7>5rLҕ{H[rVI7xS*OS$w] [Ԭ\.[)7)NNL]lX·GQI˜?wxފVd :L "e;s#O&E9<GBtqlbZw׶K (v]y:yƯ7cv9Os,p"<: Qh3D9B[I6Oկa菑ǫpުbDw=İD dܑS/]&)?K ~@ݻw!\˲^{!CL1XGP( Lʬ!w# Dkng*<1C;s 9M $0+d"DnNB$isq=޹!Fto}L4w4$"qk n?n^6~T9s MN<{շU b?s/bznveafO^'BtOL:i)D֚̋$@OWUD,7HRHD_nk5 ssvVlv |F,x H^[R]дNL O!̌8{)EEtG)4&tsY@"=wa/V~v} wJ'Z<-Ec'!S\NڄCO=ˮz9u;2Ż@[ >&(o}?x}E`ڍ~pSX\G>뮽ww:}HbMu cytu``bpI ]BD6aQ%Go] HBn-87*4{uqt _>:זqN;%)@$h/J7Y67C7V^c#H5G ),]u[kXMw [=j zWSG2)GmXB@dD9_}DZwߣ.|o=f) (tO/+[!N%ƾ;nv~\w2{X%B݋-\B ;:;7+TMO'l2G>@wbL=}8ubvQl ԔXc ?M"JOY+`DsHEp7esZuvZ꥓'7?k׿I#dh7 <.ز+.Y}OOO,Y{Jv jXK-U #DC'X_y#P$jL N䴗=s$z{9YWۺE(7s䑕9ګ TJwK@ǙiOupge:P, DߴZΣv gz0KL)\[0YljEC= WieQ zeb$)R)HdX;p"Yӧ y?OH$z: cÖ1(^GϼזY=3<+Ϥ:If3{es^?hsҊu΂soΏvJ"`16VE- y­n޺]r-c,U4 tbw7܉{#ىztpDj_Y 4!]«6wX@T,%׊/|7>!RHnrG[Vo>r5-<NjzU֖>6J8TM=sEx)r>Mq @d?`0mi`=]RzÓS\DHs7v&qٽH<ײ`ɘ`Ev7.n) %y1 y[ʸB@H4HlH;/3KϪ?_k;jRcfONR{XXTs 2ƍƜ31 &\z5=nqr[ |w:24  -N1ӁU!]Fx$`VyS-佽=DsvȆwL[&cw2#޵?G4Tn[곭K$n؅*fN_V[\s;z_!G{%_7*:tuk~ܳފ 0cۖm8zyD K%a:;zP}5rˇw}V VU9k'Rxqy` (Dw_o])4u嗳4hgư TFς7PdJ֠{wTk8=c4VMr N)s7RN{cxK; =x\✥,Pl=xǤun߼> F@?9:`5ݳO#e-!4 .l)`N#+4։\筑6/7LUWsx[(kAqBH1o, ڭkWtn8c@U\!±(rD^(YlNtsj>we(L:Q.imCpF!fC`Ke y n9Fw}[q:'V$K"˚/$ͬD p! czGkE6K)oYmiׅzH_f5{T Y~\vPmbU_G>gyFwv^|IRDG(RcqćH v;% Qn B,deume L/,uy$Roqy(S#n֡Qr2 eqT9 0$=Y[a:P[R} 4gSɊ'oO=S[NvGȓ5 U+amubuZKF%{KyJ'7[qٵ'7U:Vir]}8w$Ʒl%W%;tXv e0?;%?OJ^qE܏:>8ti[-m}9JȎ GDBvTUi8m J9ļd\Ѝnw߂U`~̧K7ñ'/ [4ctapd CCb#>3+dm`tjg5PaFA. K9wY(@Ы\5hXsm?"-.:۫›myUi 覛Qi^G)wK=]UnB|l9qbHyXUCa c7Icb5ށU o ^Cs~|6 2N<%4==r7tb%N R0zz٘:=}R'hSl!tmY^Οmeol zB t e@&gssGwOl>C+"̎/=:N8~m[PW?-bt|sfF!W.!1p^ދj[\P(ޕY9׋kc{!v &R)jZiTU*G*EڴBiSBAHiQ\ IMm̮]{ٝ;޷o/FmUμ{n@ѻ-R`/7!Gtەd 0</FdLSU L{'Ԭm3EN0q;p:qz?S[֕>Kȁ6㿆:{V4(&yv& tZq4N\,E(X`9ύ?‹߯^5A58@ -@AדA3^># Fn@]Jͦ˖Ѯm辇3 dfI3Z|^ki/`oSt\szEsI t!([ů)n>ڽs}?ٿ2WD9Q}t[h l taٶh$|5Ť.GYf'aZTaNk۷O'hN6}5&~6iI/QAqK]r$/4ض^z%d?4-2<6B)l>_OO}SK^655Ic#ct¸tLȤ$(ߧL6C]=Xo:=hHϏ+Y_cX|_Π9~Y&D+4`(X ejs,`Oʕ4jOoMgGXUV¨AJΜ'OambZp <32B;:_:3e$N6֍mJU\@ΎݶHjt=¹q.@L\i|@A4dӔ 0M1!0M3(YЏ3L$ uyQ}{ŭ3e"־ Yi+XgiggkE~-F4)J+ޚaՕ`X~#UH! ^LK߼n5ꑺ_&Ӕj7l.q ` N }ZcD2sa)k491A#Tb PGp/[*bClKCNO<7v8in75S6WΎLփ@&e<=J><]eo0jZu<Sf)'&"sE5ys*۶;?|gi#_ţU(VtT-cK{Œ_|1VD~a…-<˗41Fx)>m۶y}}lVGM7}_{[WCWGTIzPRN)]+Il+)Nqf/4h0MM974`L %#tkį3Mh i2 I 7;$"x RC!hoCZ{-VZk:0>+2ʿ }_~}p$4s]p3֭[3v _gjؗ<}( a[f1vE\RM]lmt/؃쉳Z6_d Ҭ-οV7md/LHƿNcLW5ueElUE¢ vtvNݰ~34qe!zBx{ |\^x-{<$ƃ:,Yxkb;g={vn!/` 9&|Lr-v-bLjUtXj5:S9ɟo\b O.Dc 7ŷ5Bv pСC--[f-{ݽf_{_}͵lx[.=U^XSnͯzea1 3OFcFa0pYEM$[f~Z-nFI%Y>bT=wI%7Dfĭ)Y ᅥ*c1e3G2ov`+ }fRjX-| H;?.r14|֚Ϸ%L?K{X;Q(`/ X0+jP*Obٱ FQ4BT{l p}GB5LY`hKlЮ0kX U/TU!2#$ؼ6( 2墄46ǵ cp3o1#0!l"Cu^Ϋ9"VS95znYaO*J[Ofm)qOFD|!a "KFUk5=2# .^AK *6$8:f-l0YYҕ0X,,`+ a#\ϓ1d{#O !ma`ΰ.H)k-?N{pIB̪D k,Vv}cA x (:聁Ѫk=?{0b1@GgTfz2:v=4ۨbЮU\Vم"&L:35<V@M &AZj%8J$Ԃ'HaIAض(zu։GiSw+VYT$|˷iVؔUUQ"v5&@WDٛQ!sKP@ ۷Q[{;(tmaU5yfAkŝ;_Qx5ڠO fm<>8ؤ)Dа܁Uv@} 3UT\j:oelׄ [m1 Y"H 0hL~S*N8MB2>J&o3\6bmd De1st̙`@yp(&G9L6d31@}6g陳fl#t|>aۏ5 &QO-EfH`W*c,Ah0o@J6=!PJ {`b%yfW Cތ;gf6a fܹ"ŋ K_dp&kH˘v# E>wbIgNn|pZ:W{MPXX("}'>)bl˸W%GFXilM=U x0 lm,8Nf)Bd(PC h"V1( d~0N \ߡo hռ9q0_VaE3gE 7.3{~=wNf"ݼ> ^obʅ"9Kl͟OkoSX?c3z_/OG*.7ߠo6W ڏ~>dx9"{0T>KXFYK&5qSK@Fqie+"'BbӒB ;+i4U*]BE)+=kiB: mpvN#K$ޣEm~X2{f2ԐF7~qP~K`efqjv*zܛ0Úa<8 2!$p@8v(=7];vBa_΄-\)k-ݻ%y|rZ)YogXhѧqlK R?oL+(]`j=#CxRk'~( $C\3Z /wO s5sp=]Կb9f:Z9\}O𭰱 j4sLwͻs9Y@mp_4L}Ӵ^=.k%WsC&= '}}g4>Mx:o/|oIENDB`assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/skins/wp_theme/editor.css000066600000125525152141651140023703 0ustar00.wp_themeSkin table,.wp_themeSkin tbody,.wp_themeSkin a,.wp_themeSkin img,.wp_themeSkin tr,.wp_themeSkin div,.wp_themeSkin td,.wp_themeSkin iframe,.wp_themeSkin span,.wp_themeSkin *,.wp_themeSkin .mceText{border:0;margin:0;padding:0;white-space:nowrap;text-decoration:none;font-weight:normal;cursor:default;vertical-align:baseline;width:auto;border-collapse:separate}.wp_themeSkin a:hover,.wp_themeSkin a:link,.wp_themeSkin a:visited,.wp_themeSkin a:active{text-decoration:none;font-weight:normal;cursor:default}.wp_themeSkin table td{vertical-align:middle}.wp_themeSkin *,.wp_themeSkin a:hover,.wp_themeSkin a:link,.wp_themeSkin a:visited,.wp_themeSkin a:active{color:#000}.wp_themeSkin iframe{display:block}.wp_themeSkin #mce_fullscreen_ifr{background-color:#fff}.wp_themeSkin .mceToolbar{padding:1px}.wp_themeSkin .mceExternalToolbar{position:absolute;border-bottom:0;display:none}.wp_themeSkin .mceExternalToolbar td.mceToolbar{padding-right:13px}.wp_themeSkin .mceExternalClose{position:absolute;top:3px;right:3px;width:7px;height:7px;background:url("../js/tinymce/themes/advanced/img/icons.gif") -820px 0}.wp_themeSkin table.mceToolbar,.wp_themeSkin tr.mceFirst .mceToolbar tr td,.wp_themeSkin tr.mceLast .mceToolbar tr td{border:0;margin:0;padding:0}.wp_themeSkin table.mceLayout{border:0}.wp_themeSkin .mceStatusbar{display:block;font-family:Arial,"Bitstream Vera Sans",Helvetica,Verdana,sans-serif;font-size:12px;line-height:16px;padding:0 0 0 8px;overflow:visible;height:20px;border-top:1px solid #dfdfdf;color:#000;background-color:#f5f5f5}.rtl .wp_themeSkin .mceStatusbar{padding:0 8px 0 0}.wp_themeSkin .mceStatusbar *{color:#555}.wp_themeSkin .mceStatusbar div{float:left;padding:2px}.rtl .wp_themeSkin .mceStatusbar div{float:right}.wp_themeSkin .mceStatusbar a.mceResize{display:block;float:right;background:url("../js/tinymce/themes/advanced/img/icons.gif") -800px 0;width:20px;height:20px;cursor:se-resize}.rtl .wp_themeSkin .mceStatusbar a.mceResize{float:left}.wp_themeSkin .mceStatusbar a:hover{text-decoration:underline}.wp_themeSkin table.mceToolbar{margin:0 6px 2px}.wp_themeSkin #content_toolbar1{margin-top:2px}.wp_themeSkin .mceToolbar .mceToolbarEndListBox span{display:none}.wp_themeSkin span.mceIcon,.wp_themeSkin img.mceIcon{display:block;width:20px;height:20px}.wp_themeSkin .mceIcon{background:url("../js/tinymce/themes/advanced/img/icons.gif") no-repeat 20px 20px}.wp_themeSkin .mceButton{display:block;width:20px;height:20px;cursor:default;padding:1px 2px;margin:1px;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff}.wp_themeSkin a.mceButtonEnabled:hover{background-image:inherit 0 -10px}.wp_themeSkin .mceOldBoxModel a.mceButton span,.wp_themeSkin .mceOldBoxModel a.mceButton img{margin:0 0 0 1px}.wp_themeSkin a.mceButton:active,.wp_themeSkin a.mceButtonActive,.wp_themeSkin a.mceButtonActive:hover,.wp_themeSkin a.mceButtonSelected{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff}.wp_themeSkin .mceButtonDisabled .mceIcon{opacity:.5;filter:alpha(opacity=50)}.wp_themeSkin .mceSeparator{height:24px;width:1px;display:block;background:transparent;overflow:hidden;margin:0 2px}.wp_themeSkin .mceListBox,.wp_themeSkin .mceListBox a{display:block}.wp_themeSkin .mceListBox .mceText{padding:1px 2px 1px 5px;text-align:left;text-decoration:none;width:70px;-webkit-border-bottom-left-radius:2px;-webkit-border-top-left-radius:2px;border-bottom-left-radius:2px;border-top-left-radius:2px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;font-family:Arial,"Bitstream Vera Sans",Helvetica,Verdana,sans-serif;font-size:12px;height:20px;line-height:20px;overflow:hidden}.wp_themeSkin .mceListBox{margin:1px;direction:ltr}.wp_themeSkin .mceListBox .mceOpen{width:14px;height:20px;border-collapse:separate;padding:1px;-webkit-border-bottom-left-radius:0;-webkit-border-top-left-radius:0;border-bottom-left-radius:0;border-top-left-radius:0;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff}.wp_themeSkin .mceListBox .mceOpen span{display:block;width:14px;height:20px;background-image:url("../images/down_arrow.gif");background-position:2px 1px;background-repeat:no-repeat}.wp_themeSkin table.mceListBoxEnabled:hover .mceText,.wp_themeSkin .mceListBoxHover .mceText,.wp_themeSkin .mceListBoxSelected .mceText,.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,.wp_themeSkin .mceListBoxHover .mceOpen,.wp_themeSkin .mceListBoxSelected .mceOpen{background-image:none}.wp_themeSkin .mceListBoxDisabled .mceText{color:gray}.wp_themeSkin .mceListBoxMenu{overflow:auto;overflow-x:hidden}.wp_themeSkin .mceOldBoxModel .mceListBox .mceText{height:22px}.wp_themeSkin select.mceListBox{font-family:Arial,"Bitstream Vera Sans",Helvetica,Verdana,sans-serif;font-size:12px;border-color:#b2b2b2;background-color:#fff}.wp_themeSkin .mceSplitButton a,.wp_themeSkin .mceSplitButton span{display:block;height:20px}.wp_themeSkin .mceSplitButton{display:block;margin:1px;direction:ltr}.wp_themeSkin table.mceSplitButton td{padding:2px;-webkit-border-radius:2px;border-radius:2px}.wp_themeSkin table.mceSplitButton td a{-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff}.wp_themeSkin table.mceSplitButton:hover td{background-image:inherit 0 -10px}.wp_themeSkin .mceSplitButton a.mceAction{height:20px;width:20px;padding:1px 2px}.wp_themeSkin .mceSplitButton span.mceAction{background-image:url("../js/tinymce/themes/advanced/img/icons.gif");background-repeat:no-repeat;background-color:transparent;width:20px}.wp_themeSkin .mceSplitButton a.mceOpen{width:10px;height:20px;background-image:url("../images/down_arrow.gif");background-position:1px 2px;background-repeat:no-repeat;padding:1px;border-left:0 none!important}.wp_themeSkin .mceSplitButton span.mceOpen{display:none}.wp_themeSkin .mceSplitButtonDisabled .mceAction{opacity:.3;filter:alpha(opacity=30)}.wp_themeSkin .mceListBox a.mceText,.wp_themeSkin .mceSplitButton a.mceAction{-webkit-border-bottom-left-radius:2px;-webkit-border-top-left-radius:2px;border-bottom-left-radius:2px;border-top-left-radius:2px}.wp_themeSkin .mceSplitButton a.mceOpen,.wp_themeSkin .mceListBox a.mceOpen{-webkit-border-bottom-right-radius:2px;-webkit-border-top-right-radius:2px;border-bottom-right-radius:2px;border-top-right-radius:2px}.wp_themeSkin span.mce_undo,.wp_themeSkin span.mce_redo,.wp_themeSkin span.mce_bullist,.wp_themeSkin span.mce_numlist,.wp_themeSkin span.mce_blockquote,.wp_themeSkin span.mce_charmap,.wp_themeSkin span.mce_bold,.wp_themeSkin span.mce_italic,.wp_themeSkin span.mce_underline,.wp_themeSkin span.mce_justifyleft,.wp_themeSkin span.mce_justifyright,.wp_themeSkin span.mce_justifycenter,.wp_themeSkin span.mce_justifyfull,.wp_themeSkin span.mce_indent,.wp_themeSkin span.mce_outdent,.wp_themeSkin span.mce_link,.wp_themeSkin span.mce_unlink,.wp_themeSkin span.mce_help,.wp_themeSkin span.mce_removeformat,.wp_themeSkin span.mce_fullscreen,.wp_themeSkin span.mce_wp_fullscreen,.wp_themeSkin span.mce_media,.wp_themeSkin span.mce_pastetext,.wp_themeSkin span.mce_pasteword,.wp_themeSkin span.mce_wp_help,.wp_themeSkin span.mce_wp_adv,.wp_themeSkin span.mce_wp_more,.wp_themeSkin span.mce_strikethrough,.wp_themeSkin span.mce_spellchecker,.wp_themeSkin span.mce_forecolor,.wp_themeSkin .mce_forecolorpicker,.wp_themeSkin .mceSplitButton .mce_spellchecker span.mce_spellchecker,.wp_themeSkin .mceSplitButton .mce_forecolor span.mce_forecolor,.wp_themeSkin .mceSplitButton span.mce_numlist,.wp_themeSkin .mceSplitButton span.mce_bullist{background-image:url(../images/wpicons.png)}.wp_themeSkin div.mceColorSplitMenu table{background-color:#ebebeb;border-color:#b2b2b2}.wp_themeSkin .mceColorSplitMenu td{padding:2px}.wp_themeSkin .mceColorSplitMenu a{display:block;width:9px;height:9px;overflow:hidden;border-color:#b2b2b2}.wp_themeSkin .mceColorSplitMenu td.mceMoreColors{padding:1px 3px 1px 1px}.wp_themeSkin .mceColorSplitMenu a.mceMoreColors{width:100%;height:auto;text-align:center;font-family:Tahoma,Verdana,Arial,Helvetica;font-size:11px;line-height:20px;border-color:#fff}.wp_themeSkin .mceColorPreview{margin:-5px 0 0 2px;width:16px;height:4px;overflow:hidden}.wp_themeSkin .mceMenu{position:absolute;left:0;top:0;z-index:1000;border-color:#ddd}.wp_themeSkin .mceNoIcons span.mceIcon{width:0}.wp_themeSkin .mceNoIcons a .mceText{padding-left:10px}.wp_themeSkin .mceMenu table{background-color:#ebeaeb}.wp_themeSkin .mceMenu a,.wp_themeSkin .mceMenu span,.wp_themeSkin .mceMenu{display:block}.wp_themeSkin .mceMenu td{height:20px;overflow:hidden}.wp_themeSkin .mceMenu a{position:relative;padding:3px 0 4px 0;text-decoration:none!important}.wp_themeSkin .mceMenu .mceText{position:relative;display:block;font-family:Tahoma,Verdana,Arial,Helvetica;cursor:default;margin:0;padding:0 25px;color:#000}.wp_themeSkin .mceMenu span.mceText,.wp_themeSkin .mceMenu .mcePreview{font-size:12px}.wp_themeSkin .mceMenu pre.mceText{font-family:Monospace}.wp_themeSkin .mceMenu .mceIcon{position:absolute;top:0;left:0;width:22px}.wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,.wp_themeSkin .mceMenu .mceMenuItemActive{background-color:#f5f5f5}.wp_themeSkin td.mceMenuItemSeparator{height:1px;background-color:#aaa}.wp_themeSkin .mceMenuItemTitle a{border-top:0;border-right:0;border-left:0;border-bottom:1px solid #aaa;text-decoration:none!important;background-color:#ccc}.wp_themeSkin .mceMenuItemTitle span.mceText{font-weight:bold;padding-left:4px;color:#000}.wp_themeSkin .mceMenuItemSelected .mceIcon{background:url("../js/tinymce/themes/advanced/skins/default/img/menu_check.gif");color:#888}.wp_themeSkin .mceNoIcons .mceMenuItemSelected a{background:url("../js/tinymce/themes/advanced/skins/default/img/menu_arrow.gif") no-repeat -6px center}.wp_themeSkin .mceMenu span.mceMenuLine{display:none}.wp_themeSkin .mceMenuItemSub a{background:url("../js/tinymce/themes/advanced/skins/default/img/menu_arrow.gif") no-repeat top right}.wp_themeSkin .mceBlocker{position:absolute;left:0;top:0;z-index:1000;opacity:.5;filter:alpha(opacity=50);background:#FFF}.wp_themeSkin .mceProgress{position:absolute;left:0;top:0;z-index:1001;background:url("../js/tinymce/themes/advanced/skins/default/img/progress.gif") no-repeat;width:32px;height:32px;margin:-16px 0 0 -16px}.wp_themeSkin .mcePlaceHolder{border:1px dotted gray}.wp_themeSkin .mce_address span.mceText{font-style:italic}.wp_themeSkin .mce_pre span.mceText{font-family:monospace}.wp_themeSkin .mce_h1 span.mceText{font-weight:bolder;font-size:17px}.wp_themeSkin .mce_h2 span.mceText{font-weight:bolder;font-size:16px}.wp_themeSkin .mce_h3 span.mceText{font-weight:bolder;font-size:15px}.wp_themeSkin .mce_h4 span.mceText{font-weight:bolder;font-size:14px}.wp_themeSkin .mce_h5 span.mceText{font-weight:bolder;font-size:13px}.wp_themeSkin .mce_h6 span.mceText{font-weight:bolder;font-size:12px}.wp_themeSkin span.mce_undo{background-position:-500px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_undo,.wp_themeSkin .mceButtonActive span.mce_undo{background-position:-500px 0}.wp_themeSkin span.mce_redo{background-position:-480px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_redo,.wp_themeSkin .mceButtonActive span.mce_redo{background-position:-480px 0}.wp_themeSkin span.mce_bullist{background-position:-40px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_bullist,.wp_themeSkin .mceButtonActive span.mce_bullist,.wp_themeSkin .mceSplitButton:hover span.mce_bullist{background-position:-40px 0}.wp_themeSkin span.mce_numlist{background-position:-61px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_numlist,.wp_themeSkin .mceButtonActive span.mce_numlist,.wp_themeSkin .mceSplitButton:hover span.mce_numlist{background-position:-61px 0}.wp_themeSkin span.mce_blockquote{background-position:-80px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_blockquote,.wp_themeSkin .mceButtonActive span.mce_blockquote{background-position:-80px 0}.wp_themeSkin span.mce_charmap{background-position:-420px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_charmap,.wp_themeSkin .mceButtonActive span.mce_charmap{background-position:-420px 0}.wp_themeSkin span.mce_bold{background-position:-1px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_bold,.wp_themeSkin .mceButtonActive span.mce_bold{background-position:-1px 0}.wp_themeSkin span.mce_italic{background-position:-21px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_italic,.wp_themeSkin .mceButtonActive span.mce_italic{background-position:-21px 0}.wp_themeSkin span.mce_underline{background-position:-280px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_underline,.wp_themeSkin .mceButtonActive span.mce_underline{background-position:-280px 1px}.wp_themeSkin span.mce_justifyleft{background-position:-100px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_justifyleft,.wp_themeSkin .mceButtonActive span.mce_justifyleft{background-position:-100px 1px}.wp_themeSkin span.mce_justifyright{background-position:-141px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_justifyright,.wp_themeSkin .mceButtonActive span.mce_justifyright{background-position:-141px 1px}.wp_themeSkin span.mce_justifycenter{background-position:-120px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_justifycenter,.wp_themeSkin .mceButtonActive span.mce_justifycenter{background-position:-120px 1px}.wp_themeSkin span.mce_justifyfull{background-position:-300px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_justifyfull,.wp_themeSkin .mceButtonActive span.mce_justifyfull{background-position:-300px 1px}.wp_themeSkin span.mce_indent{background-position:-461px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_indent,.wp_themeSkin .mceButtonActive span.mce_indent{background-position:-461px 1px}.wp_themeSkin span.mce_outdent{background-position:-440px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_outdent,.wp_themeSkin .mceButtonActive span.mce_outdent{background-position:-440px 1px}.wp_themeSkin span.mce_link{background-position:-161px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_link,.wp_themeSkin .mceButtonActive span.mce_link{background-position:-161px 0}.wp_themeSkin span.mce_unlink{background-position:-180px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_unlink,.wp_themeSkin .mceButtonActive span.mce_unlink{background-position:-180px 0}.wp_themeSkin span.mce_help{background-position:-521px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_help,.wp_themeSkin .mceButtonActive span.mce_help{background-position:-521px 0}.wp_themeSkin span.mce_removeformat{background-position:-381px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_removeformat,.wp_themeSkin .mceButtonActive span.mce_removeformat{background-position:-381px 0}.wp_themeSkin span.mce_strikethrough{background-position:-540px -18px}.wp_themeSkin .mceButtonEnabled:hover span.mce_strikethrough,.wp_themeSkin .mceButtonActive span.mce_strikethrough{background-position:-540px 0}.wp_themeSkin .mceSplitButton .mce_forecolor span.mce_forecolor{background-position:-321px -22px}.wp_themeSkin .mceSplitButtonEnabled:hover span.mce_forecolor,.wp_themeSkin .mceSplitButtonActive span.mce_forecolor{background-position:-321px -2px}.wp_themeSkin .mce_forecolorpicker{background-position:-320px -20px}.wp_themeSkin span.mce_fullscreen{background-position:-240px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_fullscreen,.wp_themeSkin .mceButtonActive span.mce_fullscreen{background-position:-240px 0}.wp_themeSkin span.mce_wp_fullscreen{background-position:-240px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_wp_fullscreen,.wp_themeSkin .mceButtonActive span.mce_wp_fullscreen{background-position:-240px 0}.wp_themeSkin span.mce_media{background-position:-401px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_media,.wp_themeSkin .mceButtonActive span.mce_media{background-position:-401px 0}.wp_themeSkin span.mce_pastetext{background-position:-340px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_pastetext,.wp_themeSkin .mceButtonActive span.mce_pastetext{background-position:-340px 0}.wp_themeSkin span.mce_pasteword{background-position:-360px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_pasteword,.wp_themeSkin .mceButtonActive span.mce_pasteword{background-position:-360px 0}.wp_themeSkin span.mce_spellchecker{background-position:-220px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_spellchecker,.wp_themeSkin .mceSplitButtonEnabled:hover span.mce_spellchecker,.wp_themeSkin .mceButtonActive span.mce_spellchecker,.wp_themeSkin .mceSplitButtonActive span.mce_spellchecker{background-position:-220px 1px}.wp_themeSkin span.mce_wp_help{background-position:-521px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_wp_help,.wp_themeSkin .mceButtonActive span.mce_wp_help{background-position:-521px 0}.wp_themeSkin span.mce_wp_adv{background-position:-260px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_wp_adv,.wp_themeSkin .mceButtonActive span.mce_wp_adv{background-position:-260px 0}.wp_themeSkin span.mce_wp_more{background-position:-201px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_wp_more,.wp_themeSkin .mceButtonActive span.mce_wp_more{background-position:-201px 0}.wp_themeSkin span.mce_cleanup{background-position:-380px -20px}.wp_themeSkin span.mce_anchor{background-position:-200px 0}.wp_themeSkin span.mce_sub{background-position:-600px 0}.wp_themeSkin span.mce_sup{background-position:-620px 0}.wp_themeSkin span.mce_newdocument{background-position:-520px 0}.wp_themeSkin span.mce_image{background-position:-380px 0}.wp_themeSkin span.mce_code{background-position:-260px 0}.wp_themeSkin span.mce_hr{background-position:-360px 0}.wp_themeSkin span.mce_visualaid{background-position:-660px 0}.wp_themeSkin span.mce_paste{background-position:-560px 0}.wp_themeSkin span.mce_copy{background-position:-700px 0}.wp_themeSkin span.mce_cut{background-position:-680px 0}.wp_themeSkin .mce_backcolor span.mceAction{background-position:-760px 0}.wp_themeSkin .mce_backcolorpicker{background-position:-760px 0}.wp_themeSkin span.mce_advhr{background-position:-0px -20px}.wp_themeSkin span.mce_ltr{background-position:-20px -20px}.wp_themeSkin span.mce_rtl{background-position:-40px -20px}.wp_themeSkin span.mce_emotions{background-position:-60px -20px}.wp_themeSkin span.mce_fullpage{background-position:-80px -20px}.wp_themeSkin span.mce_iespell{background-position:-120px -20px}.wp_themeSkin span.mce_insertdate{background-position:-140px -20px}.wp_themeSkin span.mce_inserttime{background-position:-160px -20px}.wp_themeSkin span.mce_absolute{background-position:-180px -20px}.wp_themeSkin span.mce_backward{background-position:-200px -20px}.wp_themeSkin span.mce_forward{background-position:-220px -20px}.wp_themeSkin span.mce_insert_layer{background-position:-240px -20px}.wp_themeSkin span.mce_insertlayer{background-position:-260px -20px}.wp_themeSkin span.mce_movebackward{background-position:-280px -20px}.wp_themeSkin span.mce_moveforward{background-position:-300px -20px}.wp_themeSkin span.mce_nonbreaking{background-position:-340px -20px}.wp_themeSkin span.mce_selectall{background-position:-400px -20px}.wp_themeSkin span.mce_preview{background-position:-420px -20px}.wp_themeSkin span.mce_print{background-position:-440px -20px}.wp_themeSkin span.mce_cancel{background-position:-460px -20px}.wp_themeSkin span.mce_save{background-position:-480px -20px}.wp_themeSkin span.mce_replace{background-position:-500px -20px}.wp_themeSkin span.mce_search{background-position:-520px -20px}.wp_themeSkin span.mce_styleprops{background-position:-560px -20px}.wp_themeSkin span.mce_table{background-position:-580px -20px}.wp_themeSkin span.mce_cell_props{background-position:-600px -20px}.wp_themeSkin span.mce_delete_table{background-position:-620px -20px}.wp_themeSkin span.mce_delete_col{background-position:-640px -20px}.wp_themeSkin span.mce_delete_row{background-position:-660px -20px}.wp_themeSkin span.mce_col_after{background-position:-680px -20px}.wp_themeSkin span.mce_col_before{background-position:-700px -20px}.wp_themeSkin span.mce_row_after{background-position:-720px -20px}.wp_themeSkin span.mce_row_before{background-position:-740px -20px}.wp_themeSkin span.mce_merge_cells{background-position:-760px -20px}.wp_themeSkin span.mce_table_props{background-position:-980px -20px}.wp_themeSkin span.mce_row_props{background-position:-780px -20px}.wp_themeSkin span.mce_split_cells{background-position:-800px -20px}.wp_themeSkin span.mce_template{background-position:-820px -20px}.wp_themeSkin span.mce_visualchars{background-position:-840px -20px}.wp_themeSkin span.mce_abbr{background-position:-860px -20px}.wp_themeSkin span.mce_acronym{background-position:-880px -20px}.wp_themeSkin span.mce_attribs{background-position:-900px -20px}.wp_themeSkin span.mce_cite{background-position:-920px -20px}.wp_themeSkin span.mce_del{background-position:-940px -20px}.wp_themeSkin span.mce_ins{background-position:-960px -20px}.wp_themeSkin span.mce_pagebreak{background-position:0 -40px}.wp_themeSkin .mceExternalToolbar,.wp_themeSkin .mceButton,.wp_themeSkin a.mceButtonEnabled:hover,.wp_themeSkin a.mceButtonActive,.wp_themeSkin a.mceButtonSelected,.wp_themeSkin .mceListBox .mceText,.wp_themeSkin .mceListBox .mceOpen,.wp_themeSkin table.mceListBoxEnabled:hover .mceText,.wp_themeSkin .mceListBoxHover .mceText,.wp_themeSkin .mceListBoxSelected .mceText,.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,.wp_themeSkin .mceListBoxHover .mceOpen,.wp_themeSkin .mceListBoxSelected .mceOpen,.wp_themeSkin select.mceListBox,.wp_themeSkin .mceSplitButton a.mceAction,.wp_themeSkin .mceSplitButton a.mceOpen,.wp_themeSkin .mceSplitButton a.mceOpen:hover,.wp_themeSkin .mceSplitButtonSelected a.mceOpen,.wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,.wp_themeSkin .mceSplitButton a.mceAction:hover,.wp_themeSkin div.mceColorSplitMenu table,.wp_themeSkin .mceColorSplitMenu a,.wp_themeSkin .mceColorSplitMenu a.mceMoreColors,.wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover,.wp_themeSkin a.mceMoreColors:hover,.wp_themeSkin .mceMenu{border-style:solid;border-width:1px}.wp_themeSkin iframe{background:transparent}.wp_themeSkin .mceButton,.wp_themeSkin .mceListBox .mceText,.wp_themeSkin .mceListBox .mceOpen{border-color:#ccc;background-color:#eee;background-image:-ms-linear-gradient(bottom,#ddd,#fff);background-image:-moz-linear-gradient(bottom,#ddd,#fff);background-image:-o-linear-gradient(bottom,#ddd,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ddd),to(#fff));background-image:-webkit-linear-gradient(bottom,#ddd,#fff);background-image:linear-gradient(bottom,#ddd,#fff)}.wp_themeSkin a.mceButtonEnabled:hover{border-color:#a0a0a0;background:#ddd;background-image:-ms-linear-gradient(bottom,#ccc,#fff);background-image:-moz-linear-gradient(bottom,#ccc,#fff);background-image:-o-linear-gradient(bottom,#ccc,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ccc),to(#fff));background-image:-webkit-linear-gradient(bottom,#ccc,#fff);background-image:linear-gradient(bottom,#ccc,#fff)}.wp_themeSkin a.mceButton:active,.wp_themeSkin a.mceButtonEnabled:active,.wp_themeSkin a.mceButtonSelected:active,.wp_themeSkin a.mceButtonActive,.wp_themeSkin a.mceButtonActive:active,.wp_themeSkin a.mceButtonActive:hover{background-color:#ddd;background-image:-ms-linear-gradient(bottom,#eee,#bbb);background-image:-moz-linear-gradient(bottom,#eee,#bbb);background-image:-o-linear-gradient(bottom,#eee,#bbb);background-image:-webkit-gradient(linear,left bottom,left top,from(#eee),to(#bbb));background-image:-webkit-linear-gradient(bottom,#eee,#bbb);background-image:linear-gradient(bottom,#eee,#bbb);border-color:#909090}.wp_themeSkin .mceButtonDisabled{border-color:#ccc!important}.wp_themeSkin .mceListBox .mceOpen{border-left:0!important}.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,.wp_themeSkin .mceListBoxHover .mceOpen,.wp_themeSkin .mceListBoxHover:active .mceOpen,.wp_themeSkin .mceListBoxSelected .mceOpen,.wp_themeSkin .mceListBoxSelected .mceText,.wp_themeSkin table.mceListBoxEnabled:active .mceText{background:#ccc;border-color:#999}.wp_themeSkin table.mceListBoxEnabled:hover .mceText,.wp_themeSkin .mceListBoxHover .mceText,.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,.wp_themeSkin .mceListBoxHover .mceOpen{border-color:#909090;background-color:#eee;background-image:-ms-linear-gradient(bottom,#ccc,#fff);background-image:-moz-linear-gradient(bottom,#ccc,#fff);background-image:-o-linear-gradient(bottom,#ccc,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ccc),to(#fff));background-image:-webkit-linear-gradient(bottom,#ccc,#fff);background-image:linear-gradient(bottom,#ccc,#fff)}.wp_themeSkin .mceSplitButton a.mceAction,.wp_themeSkin .mceSplitButton a.mceOpen{border-color:#ccc}.wp_themeSkin .mceSplitButton a.mceOpen:hover,.wp_themeSkin .mceSplitButtonSelected a.mceOpen,.wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,.wp_themeSkin .mceSplitButton a.mceAction:hover{border-color:#909090}.wp_themeSkin table.mceSplitButton td{background-color:#eee;background-image:-ms-linear-gradient(bottom,#ddd,#fff);background-image:-moz-linear-gradient(bottom,#ddd,#fff);background-image:-o-linear-gradient(bottom,#ddd,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ddd),to(#fff));background-image:-webkit-linear-gradient(bottom,#ddd,#fff);background-image:linear-gradient(bottom,#ddd,#fff)}.wp_themeSkin table.mceSplitButton:hover td{background-image:-ms-linear-gradient(bottom,#ccc,#fff);background-image:-moz-linear-gradient(bottom,#ccc,#fff);background-image:-o-linear-gradient(bottom,#ccc,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ccc),to(#fff));background-image:-webkit-linear-gradient(bottom,#ccc,#fff);background-image:linear-gradient(bottom,#ccc,#fff)}.wp_themeSkin .mceSplitButtonActive{background-color:#b2b2b2}.wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover{border-color:#0a246a;background-color:#b6bdd2}.wp_themeSkin a.mceMoreColors:hover{border-color:#0a246a}.wp_themeSkin .mceMenuItemDisabled .mceText{color:#888}#mceModalBlocker{background:#000}.wp-editor-area{font-family:Consolas,Monaco,monospace;padding:10px;line-height:150%;border:0 none;outline:0;resize:vertical;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.wp-editor-tools{height:30px;padding:0 10px}.wp-editor-container{border-width:1px;border-style:solid;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px;border-color:#ccc #ccc #dfdfdf}.wp-editor-container textarea.wp-editor-area{width:99.9%}.quicktags-toolbar,.wp_themeSkin tr.mceFirst td.mceToolbar{border-bottom:1px solid #ccc;background-color:#e9e9e9;background-image:-ms-linear-gradient(bottom,#ddd,#e9e9e9);background-image:-moz-linear-gradient(bottom,#ddd,#e9e9e9);background-image:-o-linear-gradient(bottom,#ddd,#e9e9e9);background-image:-webkit-linear-gradient(bottom,#ddd,#e9e9e9);background-image:linear-gradient(bottom,#ddd,#e9e9e9)}.wp-switch-editor{height:18px;font:13px/18px Arial,Helvetica,sans-serif normal;margin:5px 5px 0 0;padding:4px 5px 2px;float:right;cursor:pointer;border-width:1px;border-style:solid;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px;background-color:#f1f1f1;border-color:#dfdfdf #dfdfdf #ccc;color:#999}html[dir="rtl"] .wp-switch-editor{float:left}.wp-switch-editor:hover{text-decoration:none!important}.js .tmce-active .wp-editor-area{color:white}.tmce-active .quicktags-toolbar{display:none}.tmce-active .switch-tmce,.html-active .switch-html{border-color:#ccc #ccc #e9e9e9;background-color:#e9e9e9;color:#333}.wp-media-buttons{line-height:1;padding:9px 0 0}.wp-media-buttons a{text-decoration:none;color:#333;font-size:12px;vertical-align:bottom}.wp-media-buttons img{padding:0 4px;vertical-align:middle}.quicktags-toolbar{border-bottom-style:solid;border-bottom-width:1px;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px;padding:2px 8px 0;min-height:29px}.quicktags-toolbar>div{padding:2px 4px 0}.quicktags-toolbar input{margin:2px 1px 4px;line-height:18px;display:inline-block;min-width:26px;padding:2px 4px;font:12px/18px Arial,Helvetica,sans-serif normal;color:#464646;border:1px solid #c3c3c3;-webkit-border-radius:3px;border-radius:3px;background-color:#eee;background-image:-ms-linear-gradient(bottom,#e3e3e3,#fff);background-image:-moz-linear-gradient(bottom,#e3e3e3,#fff);background-image:-o-linear-gradient(bottom,#e3e3e3,#fff);background-image:-webkit-linear-gradient(bottom,#e3e3e3,#fff);background-image:linear-gradient(bottom,#e3e3e3,#fff)}.quicktags-toolbar input:hover{border-color:#aaa;background:#ddd}.quicktags-toolbar input[value="link"]{text-decoration:underline}.quicktags-toolbar input[value="del"]{text-decoration:line-through}.quicktags-toolbar input[value="i"]{font-style:italic}.quicktags-toolbar input[value="b"]{font-weight:bold}#wp_editbtns,#wp_gallerybtns{padding:2px;position:absolute;display:none;z-index:999998}#wp_editimgbtn,#wp_delimgbtn,#wp_editgallery,#wp_delgallery{border-color:#999;background-color:#eee;margin:2px;padding:2px;border-width:1px;border-style:solid;-webkit-border-radius:3px;border-radius:3px}#wp_editimgbtn:hover,#wp_delimgbtn:hover,#wp_editgallery:hover,#wp_delgallery:hover{border-color:#555;background-color:#ccc}#wp-link{background-color:#f5f5f5;line-height:1.4em;font-size:12px}#wp-link ol,#wp-link ul{list-style:none;margin:0;padding:0}#wp-link input[type="text"]{-webkit-box-sizing:border-box}#wp-link input[type="text"],#wp-link textarea{border-width:1px;border-style:solid;-webkit-border-radius:4px;border-radius:4px;font-size:12px;margin:1px;padding:3px}#wp-link #link-options{padding:10px 0 14px;border-bottom:1px solid #dfdfdf;margin:0 6px 14px}#wp-link p.howto{margin:3px}#wp-link #internal-toggle{display:inline-block;cursor:pointer;padding-left:18px}#wp-link .toggle-arrow{background:transparent url('../images/toggle-arrow.png') top left no-repeat;height:23px;line-height:23px}#wp-link .toggle-arrow-active{background-position:center left}#wp-link label input[type="text"]{width:360px;margin-top:5px}#wp-link label span{display:inline-block;width:80px;text-align:right;padding-right:5px}#wp-link .link-search-wrapper{margin:5px 6px 9px;display:block;overflow:hidden}#wp-link .link-search-wrapper span{float:left;margin-top:6px}#wp-link .link-search-wrapper input[type="text"]{float:left;width:220px}#wp-link .link-search-wrapper img.waiting{margin:8px 1px 0 4px;float:left;display:none}#wp-link .link-target{width:auto;padding:3px 0 0;margin:0 0 0 87px;font-size:11px}#wp-link .query-results{border:1px #dfdfdf solid;margin:0 5px 5px;background:#fff;height:185px;overflow:auto;position:relative}#wp-link li,#wp-link .query-notice{clear:both;margin-bottom:0;border-bottom:1px solid #f1f1f1;color:#333;padding:4px 6px;cursor:pointer;position:relative}#wp-link li:hover{background:#eaf2fa;color:#151515}#wp-link li.unselectable{border-bottom:1px solid #dfdfdf}#wp-link li.unselectable:hover{background:#fff;cursor:auto;color:#333}#wp-link li.selected{background:#ddd;color:#333}#wp-link li.selected .item-title{font-weight:bold}#wp-link .item-title{display:inline-block;width:80%}#wp-link .item-info{text-transform:uppercase;color:#666;font-size:11px;position:absolute;right:5px;top:4px;bottom:0}#wp-link #search-results{display:none}#wp-link #search-panel{float:left;width:100%}#wp-link .river-waiting{display:none;padding:10px 0}#wp-link .river-waiting img.waiting{margin:0 auto;display:block}#wp-link .submitbox{padding:5px 10px;font-size:11px;overflow:auto;height:29px}#wp-link-cancel{line-height:25px;float:left}#wp-link-update{line-height:23px;float:right}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute;left:-99999999px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui-helper-clearfix{display:inline-block}/*\*/* html .ui-helper-clearfix{height:1%}.ui-helper-clearfix{display:block}/**/.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;z-index:99999;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.wp-dialog{position:absolute;width:300px;overflow:hidden}.wp-dialog .ui-dialog-titlebar{position:relative}.wp-dialog .ui-dialog-titlebar-close span{display:block;margin:1px}.wp-dialog .ui-dialog-content{position:relative;border:0;padding:0;background:0;overflow:auto;zoom:1}.wp-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.wp-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.wp-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.wp-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move}.wp-dialog{border:1px solid #999;-moz-box-shadow:0 0 16px rgba(0,0,0,0.3);-webkit-box-shadow:0 0 16px rgba(0,0,0,0.3);box-shadow:0 0 16px rgba(0,0,0,0.3)}.wp-dialog .ui-dialog-title{display:block;text-align:center;padding:1px 0 2px}.wp-dialog .ui-dialog-titlebar{padding:0 1em;background-color:#444;font-weight:bold;font-size:11px;line-height:18px;color:#e5e5e5}.wp-dialog{background-color:#fff;-webkit-border-top-left-radius:4px;-webkit-border-top-right-radius:4px;border-top-left-radius:4px;border-top-right-radius:4px}.wp-dialog .ui-dialog-titlebar{-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.wp-dialog .ui-dialog-titlebar-close{position:absolute;width:29px;height:16px;top:2px;right:6px;background:url('../js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif') no-repeat -87px -16px;padding:0}.wp-dialog .ui-dialog-titlebar-close:hover,.wp-dialog .ui-dialog-titlebar-close:focus{background-position:-87px -32px}.ui-widget-overlay{background-color:#000;opacity:.6;filter:alpha(opacity=60)}.rtl #wp-link #internal-toggle{padding-right:18px;padding-left:0}.rtl #wp-link label span{text-align:left;padding-left:5px;padding-right:0}.rtl #wp-link .link-search-wrapper span{float:right}.rtl #wp-link .link-search-wrapper input[type="text"]{float:right}.rtl #wp-link .link-search-wrapper img.waiting{margin:8px 4px 0 1px;float:right}.rtl #wp-link .link-target{margin:0 87px 0 0}.rtl #wp-link .item-info{left:5px;right:auto;top:4px;bottom:0}.rtl #wp-link #search-panel{float:right}.rtl #wp-link-cancel{float:right}.rtl #wp-link-update{float:left}.rtl #wp-link .toggle-arrow{background-position:top right}.rtl #wp-link .toggle-arrow-active{background-position:center right}.rtl .wp_themeSkin .mceListBox .mceText{text-align:right}.rtl .wp_themeSkin .mceNoIcons a .mceText{padding-right:10px;padding-left:25px}.rtl .mceListBoxMenu.mceNoIcons{margin-left:-14px}.clearlooks2 .mceFocus .mceTop .mceLeft{background:#444;border-left:1px solid #999;border-top:1px solid #999;-webkit-border-top-left-radius:3px;border-top-left-radius:3px}.clearlooks2 .mceFocus .mceTop .mceRight{background:#444;border-right:1px solid #999;border-top:1px solid #999;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.clearlooks2 .mceMiddle .mceLeft{background:#f1f1f1;border-left:1px solid #999}.clearlooks2 .mceMiddle .mceRight{background:#f1f1f1;border-right:1px solid #999}.clearlooks2 .mceBottom{background:#f1f1f1;border-bottom:1px solid #999}.clearlooks2 .mceBottom .mceLeft{background:#f1f1f1;border-bottom:1px solid #999;border-left:1px solid #999}.clearlooks2 .mceBottom .mceCenter{background:#f1f1f1;border-bottom:1px solid #999}.clearlooks2 .mceBottom .mceRight{background:#f1f1f1;border-bottom:1px solid #999;border-right:1px solid #999}.clearlooks2 .mceFocus .mceTop span{color:#e5e5e5}.fullscreen-overlay{z-index:149999;display:none;position:fixed;top:0;bottom:0;left:0;right:0;filter:inherit}.fullscreen-active .fullscreen-overlay,.fullscreen-active #wp-fullscreen-body{display:block}.fullscreen-fader{z-index:200000}.fullscreen-active .fullscreen-fader{display:none}#wp-fullscreen-body{width:100%;z-index:150005;display:none;position:absolute;top:0;left:0;font-size:12px}#wp-fullscreen-wrap{margin:0 auto 50px;position:relative;padding-top:60px}#wp-fullscreen-title{font-size:1.7em;line-height:100%;outline:medium none;padding:6px 7px;width:100%;margin-bottom:30px}#wp-fullscreen-container{padding:4px 10px 50px}#wp-fullscreen-title,#wp-fullscreen-container{-webkit-border-radius:0;border-radius:0;border:1px dashed transparent;background:transparent;-moz-transition-property:border-color;-moz-transition-duration:.6s;-webkit-transition-property:border-color;-webkit-transition-duration:.6s;-o-transition-property:border-color;-o-transition-duration:.6s;transition-property:border-color;transition-duration:.6s}#wp_mce_fullscreen{width:100%;min-height:300px;border:0;background:transparent;font-family:Consolas,Monaco,monospace;line-height:1.6em;padding:0;overflow-y:hidden;outline:0;resize:none}#wp-fullscreen-tagline{color:#bbb;font-size:18px;float:right;padding-top:5px}#fullscreen-topbar{position:fixed;top:0;left:0;z-index:150050;border-bottom-style:solid;border-bottom-width:1px;min-width:800px;width:100%;height:40px}#wp-fullscreen-toolbar{padding:6px 10px 0;clear:both;max-width:1100px;min-width:820px;margin:0 auto}#wp-fullscreen-mode-bar,#wp-fullscreen-button-bar,#wp-fullscreen-close,#wp-fullscreen-count{float:left}#wp-fullscreen-save{float:right;padding:2px 2px 0 5px}#wp-fullscreen-count,#wp-fullscreen-close{padding-top:5px}#wp-fullscreen-central-toolbar{margin:auto;padding:0}#wp-fullscreen-buttons>div{float:left}#wp-fullscreen-mode-bar{padding:1px 14px 0 0}#wp-fullscreen-modes a{display:block;font-size:11px;text-decoration:none;float:left;margin:1px 0 0 0;padding:2px 6px 2px;border-width:1px 1px 1px 0;border-style:solid;border-color:#bbb;color:#777;text-shadow:0 1px 0 #fff;background-color:#f4f4f4;background-image:-moz-linear-gradient(bottom,#e4e4e4,#f9f9f9);background-image:-webkit-gradient(linear,left bottom,left top,from(#e4e4e4),to(#f9f9f9))}#wp-fullscreen-modes a:hover,.wp-html-mode #wp-fullscreen-modes a:last-child,.wp-tmce-mode #wp-fullscreen-modes a:first-child{color:#333;border-color:#999;background-color:#eee;background-image:-moz-linear-gradient(bottom,#f9f9f9,#e0e0e0);background-image:-webkit-gradient(linear,left bottom,left top,from(#f9f9f9),to(#e0e0e0))}#wp-fullscreen-modes a:first-child{border-width:1px;-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:3px}#wp-fullscreen-modes a:last-child{-webkit-border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px}#wp-fullscreen-buttons .active a{background:inherit}#wp-fullscreen-buttons .hidden{display:none}#wp-fullscreen-buttons .disabled{opacity:.5}.wp-html-mode #wp-fullscreen-buttons div{display:none}.wp-html-mode #wp-fullscreen-buttons div.wp-fullscreen-both{display:block}#fullscreen-topbar.fullscreen-make-sticky{display:block!important}#wp-fullscreen-save img{vertical-align:middle}#wp-fullscreen-save img,#wp-fullscreen-save span{padding-right:4px;display:none}#wp-fullscreen-buttons .mce_image .mce_image{background-image:url('../../wp-admin/images/media-button.png?ver=20120201');background-position:3px 3px}.fullscreen-active #TB_overlay{z-index:150100}.fullscreen-active #TB_window{z-index:150102}#wp_mce_fullscreen_ifr{background:transparent}#wp_mce_fullscreen_parent #wp_mce_fullscreen_tbl tr.mceFirst{display:none}#wp-fullscreen-container .wp_themeSkin table td{vertical-align:top}.fullscreen-overlay{background:#fff}.wp-fullscreen-focus #wp-fullscreen-title,.wp-fullscreen-focus #wp-fullscreen-container{border-color:#ccc}#fullscreen-topbar{border-bottom-color:#dfdfdf;background-color:#f1f1f1;background-image:-ms-linear-gradient(top,#f9f9f9,#ececec);background-image:-moz-linear-gradient(top,#f9f9f9,#ececec);background-image:-o-linear-gradient(top,#f9f9f9,#ececec);background-image:-webkit-gradient(linear,left top,left bottom,from(#f9f9f9),to(#ececec));background-image:-webkit-linear-gradient(top,#f9f9f9,#ececec);background-image:linear-gradient(top,#f9f9f9,#ececec)}.fade-1000,.fade-600,.fade-400,.fade-300{opacity:0;-moz-transition-property:opacity;-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.fade-1000{-moz-transition-duration:1s;-webkit-transition-duration:1s;-o-transition-duration:1s;transition-duration:1s}.fade-600{-moz-transition-duration:.6s;-webkit-transition-duration:.6s;-o-transition-duration:.6s;transition-duration:.6s}.fade-400{-moz-transition-duration:.4s;-webkit-transition-duration:.4s;-o-transition-duration:.4s;transition-duration:.4s}.fade-300{-moz-transition-duration:.3s;-webkit-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s}.fade-trigger{opacity:1}.rtl #wp-fullscreen-tagline{float:left}.rtl #fullscreen-topbar{left:auto;right:0}.rtl #wp-fullscreen-mode-bar,.rtl #wp-fullscreen-button-bar,.rtl #wp-fullscreen-close,.rtl #wp-fullscreen-count{float:right}.rtl #wp-fullscreen-save{float:left}.rtl #wp-fullscreen-save{padding:2px 5px 0 2px}.rtl #wp-fullscreen-buttons>div{float:right}.rtl #wp-fullscreen-mode-bar{padding:1px 0 0 14px}.rtl #wp-fullscreen-modes a{float:right;border-width:1px 0 1px 1px}.rtl #wp-fullscreen-modes a:first-child{-webkit-border-top-left-radius:0;-webkit-border-top-right-radius:3px;-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:3px;border-width:1px;border-top-left-radius:0;border-top-right-radius:3px;border-bottom-right-left:0;border-bottom-right-radius:3px}.rtl #wp-fullscreen-modes a:last-child{-webkit-border-top-right-radius:0;-webkit-border-top-left-radius:3px;-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:3px;border-top-right-radius:0;border-top-left-radius:3px;border-bottom-right-radius:0;border-bottom-left-radius:3px}.rtl #wp-fullscreen-save img,.rtl #wp-fullscreen-save span{padding-right:0;padding-left:4px}assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/skins/wp_theme/content.css000066600000007426152141651140024066 0ustar00 body.mceForceColors {background:#FFF; color:#000;} body.mceBrowserDefaults {background:transparent; color:inherit; font-size:inherit; font-family:inherit;} td {color:#000; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; margin:8px;} h1 {font-size: 2em} h2 {font-size: 1.5em} h3 {font-size: 1.17em} h4 {font-size: 1em} h5 {font-size: .83em} h6 {font-size: .75em} .mceItemTable, .mceItemTable td, .mceItemTable th, .mceItemTable caption, .mceItemVisualAid {border: 1px dashed #BBB;} a.mceItemAnchor {display:inline-block; -webkit-user-select:all; -webkit-user-modify:read-only; -moz-user-select:all; -moz-user-modify:read-only; width:11px !important; height:11px !important; background:url(../default/img/items.gif) no-repeat center center} span.mceItemNbsp {background: #DDD} td.mceSelected, th.mceSelected {background-color:#3399ff !important} img {border:0;} table, img, hr, .mceItemAnchor {cursor:default} table td, table th {cursor:text} ins {border-bottom:1px solid green; text-decoration: none; color:green} del {color:red; text-decoration:line-through} cite {border-bottom:1px dashed blue} acronym {border-bottom:1px dotted #CCC; cursor:help} abbr {border-bottom:1px dashed #CCC; cursor:help} img:-moz-broken {-moz-force-broken-image-icon:1; width:24px; height:24px} font[face=mceinline] {font-family:inherit !important} *[contentEditable]:focus {outline:0} .mceItemMedia {border:1px dotted #cc0000; background-position:center; background-repeat:no-repeat; background-color:#ffffcc} .mceItemShockWave {background-image:url(../../img/shockwave.gif)} .mceItemFlash {background-image:url(../../img/flash.gif)} .mceItemQuickTime {background-image:url(../../img/quicktime.gif)} .mceItemWindowsMedia {background-image:url(../../img/windowsmedia.gif)} .mceItemRealMedia {background-image:url(../../img/realmedia.gif)} .mceItemVideo {background-image:url(../../img/video.gif)} .mceItemAudio {background-image:url(../../img/video.gif)} .mceItemIframe {background-image:url(../../img/iframe.gif)} .mcePageBreak {display:block;border:0;width:100%;height:12px;border-top:1px dotted #ccc;margin-top:15px;background:#fff url(../../img/pagebreak.gif) no-repeat center top;} /* WordPress styles */ body { font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; font-size: 13px; line-height: 19px; color: #333; margin: 10px; min-height: 100%; } br[data-mce-bogus] { line-height: 1em; margin-top: -1em; } br[data-mce-bogus]:only-child { line-height: inherit; margin-top: inherit; } .aligncenter, dl.aligncenter { display: block; margin-left: auto; margin-right: auto; } .alignleft { float: left; } .alignright { float: right; } .wp-caption { border: 1px solid #ddd; text-align: center; background-color: #f3f3f3; padding-top: 4px; margin: 10px 0; -webkit-border-radius: 3px; border-radius: 3px; } .mceIEcenter { text-align: center; } .wp-caption img { margin: 0; padding: 0; border: 0 none; -webkit-user-drag: none; } .wp-caption-dd { font-size: 11px; line-height: 17px; padding: 0 4px 5px; margin: 0; } pre { font: 12px/18px Consolas, Monaco, monospace; } td { color: #000; font-size: 11px; margin: 8px; } /* Styles for the WordPress plugins */ img.mceWPnextpage, img.mceWPmore { border: 0; border-top: 1px dotted #cccccc; display: block; width: 95%; height: 12px; margin: 15px auto 0; } img.mceWPmore { background: transparent url("img/more_bug.gif") no-repeat right top; } img.mceWPnextpage { background: transparent url("img/page_bug.gif") no-repeat right top; } img.wpGallery { border: 1px dashed #888; background: #f2f8ff url("img/gallery.png") no-repeat scroll center center; width: 99%; height: 250px; } img.wp-oembed { border: 1px dashed #888; background: #f7f5f2 url("img/embedded.png") no-repeat scroll center center; width: 300px; height: 250px; } assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/skins/wp_theme/dialog.css000066600000013470152141651140023647 0ustar00/* Generic */ body { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; background:#f1f1f1; padding:0; margin:8px 8px 0 8px; } html {background:#f1f1f1;} td {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} textarea {resize:none;outline:none;} a:link, a:visited {color:black;} a:hover {color:#2B6FB6;} .nowrap {white-space: nowrap} /* Forms */ fieldset {margin:0; padding:4px; border:1px solid #dfdfdf; font-family:Verdana, Arial; font-size:10px;} legend {color:#2B6FB6; font-weight:bold;} label.msg {display:none;} label.invalid {color:#EE0000; display:inline;} input.invalid {border:1px solid #EE0000;} input {background:#FFF; border:1px solid #dfdfdf;} input, select, textarea {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} input, select, textarea {border:1px solid #dfdfdf;} input.radio {border:1px none #000000; background:transparent; vertical-align:middle;} input.checkbox {border:1px none #000000; background:transparent; vertical-align:middle;} .input_noborder {border:0;} /* Buttons */ #insert, #cancel, #apply, .mceActionPanel .button, input.mceButton, .updateButton { border: 1px solid #bbb; margin:0; padding:0 0 1px; font-weight:bold; font-size: 11px; width:94px; height:24px; color:#000; cursor:pointer; -webkit-border-radius: 3px; border-radius: 3px; background-color: #eee; /* Fallback */ background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */ background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */ background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */ background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */ background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */ background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */ } #insert:hover, #cancel:hover, input.mceButton:hover, .updateButton:hover, #insert:focus, #cancel:focus, input.mceButton:focus, .updateButton:focus { border: 1px solid #555; } /* Browse */ a.browse span {display:block; width:20px; height:18px; background:url(../../img/icons.gif) -860px 0; border:1px solid #FFF; margin-left:1px;} .mceOldBoxModel a.browse span {width:22px; height:20px;} a.browse:hover span {border:1px solid #0A246A; background-color:#B2BBD0;} a.browse span.disabled {border:1px solid white; -moz-opacity:0.3; opacity:0.3; filter:progid:DXImageTransform.Microsoft.Alpha(opacity=30);} a.browse:hover span.disabled {border:1px solid white; background-color:transparent;} a.pickcolor span {display:block; width:20px; height:16px; background:url(../../img/icons.gif) -840px 0; margin-left:2px;} .mceOldBoxModel a.pickcolor span {width:21px; height:17px;} a.pickcolor:hover span {background-color:#B2BBD0;} a.pickcolor, a.browse {text-decoration:none} /* Charmap */ table.charmap {border:1px solid #AAA; text-align:center} td.charmap, #charmap a {width:18px; height:18px; color:#000; border:1px solid #AAA; text-align:center; font-size:12px; vertical-align:middle; line-height: 18px;} #charmap a {display:block; color:#000; text-decoration:none; border:0} #charmap a:hover {background:#CCC;color:#2B6FB6} #charmap #codeN {font-size:10px; font-family:Arial,Helvetica,sans-serif; text-align:center} #charmap #codeV {font-size:40px; height:80px; border:1px solid #AAA; text-align:center} #charmap #charmapView {background-color:#fff;} /* Source */ .wordWrapCode {vertical-align:middle; border:1px none #000000; background:transparent;} .mceActionPanel {margin-top:5px;} /* Tabs classes */ .tabs {width:100%; height:18px; line-height:normal; background:url(img/tabs.gif) repeat-x 0 -72px;} .tabs ul {margin:0; padding:0; list-style:none;} .tabs li {float:left; background:url(img/tabs.gif) no-repeat 0 0; margin:0 2px 0 0; padding:0 0 0 10px; line-height:17px; height:18px; display:block;} .tabs li.current {background:url(img/tabs.gif) no-repeat 0 -18px; margin-right:2px;} .tabs span {float:left; display:block; background:url(img/tabs.gif) no-repeat right -36px; padding:0px 10px 0 0;} .tabs .current span {background:url(img/tabs.gif) no-repeat right -54px;} .tabs a {text-decoration:none; font-family:Verdana, Arial; font-size:10px;} .tabs a:link, .tabs a:visited, .tabs a:hover {color:black;} /* Panels */ .panel_wrapper div.panel {display:none;} .panel_wrapper div.current {display:block; width:100%; height:300px; overflow:visible;} .panel_wrapper {border:1px solid #919B9C; border-top:0px; padding:10px; padding-top:5px; clear:both; background:white;} /* Columns */ .column {float:left;} .properties {width:100%;} .properties .column1 {} .properties .column2 {text-align:left;} /* Titles */ h1, h2, h3, h4 {color:#2B6FB6; margin:0; padding:0; padding-top:5px;} h3 {font-size:14px;} .title {font-size:12px; font-weight:bold; color:#2B6FB6;} /* Dialog specific */ #link .panel_wrapper, #link div.current {height:125px;} #image .panel_wrapper, #image div.current {height:200px;} #plugintable thead {font-weight:bold; background:#DDD;} #plugintable, #about #plugintable td {border:1px solid #919B9C;} #plugintable {width:96%; margin-top:10px;} #pluginscontainer {height:290px; overflow:auto;} #colorpicker #preview {float:right; width:50px; height:14px;line-height:1px; border:1px solid black; margin-left:5px;} #colorpicker #colors {float:left; border:1px solid gray; cursor:crosshair;} #colorpicker #light {border:1px solid gray; margin-left:5px; float:left;width:15px; height:150px; cursor:crosshair;} #colorpicker #light div {overflow:hidden;} #colorpicker #previewblock {float:right; padding-left:10px; height:20px;} #colorpicker .panel_wrapper div.current {height:175px;} #colorpicker #namedcolors {width:150px;} #colorpicker #namedcolors a {display:block; float:left; width:10px; height:10px; margin:1px 1px 0 0; overflow:hidden;} #colorpicker #colornamecontainer {margin-top:5px;} #colorpicker #picker_panel fieldset {margin:auto;width:325px;} assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/img/trans.gif000066600000000053152141651140021322 0ustar00GIF89a!,D;assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/img/pagebreak.gif000066600000000505152141651140022116 0ustar00GIF89ad t]Othh[QB!,d I8ͻ`(d Y8#9.aBp8Uck<AtBU5qC n`U8k u-z 0Ck S@BNNVf7NK_NhJ k =?h  {}ʇ:dYx&sH\ bRN OO 5@`@siL‡#J;assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/img/shockwave.gif000066600000000600152141651140022163 0ustar00GIF89a)-Ŝ՟lfwh|Ŝӽ;Ģ̵Yf$$33..77ll~~꟟2!),@@*H$@Q#!iDS&TD)T(6MDrU,x̄6"!&m' R'!!$Y y''B (xmllI M UE P!$#G !Q$Gp ''$E'xxA;assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/img/windowsmedia.gif000066600000000637152141651140022675 0ustar00GIF89a?uS-ѩaY0@G愅p+fҎG,LWKqxwwV&^qKNCiiimKx+tnV^K~3fp!BWuWr(a;vTHo9!?," %lhhD 4],G:jͤ\fఄTs5 !*$/  ;-!&1/<'9;=7+; :78(3.2 "+%?>))'=., ? ., B 2%3cB(  ~;assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/img/video.gif000066600000001125152141651140021302 0ustar00GIF89afWWWKKKwww:::eeehhh888nnn|||iii^p,K}?ccc\OEO`جˮ\\\6pbbb---lllzWMMMtttPeibgjBNNNhBBBlm555n%%%y[[[ZQ```Usss mmmLLL̈́999xvvv؄qqq===^^^|owr____ؘHHHVVVrfffcsq䙅AAAtQQQ///VPPP222xzzz!f,f'D;_V9, %Y1X*@EH]3  "&6 [e !IQ# 2 .UJBW47S8˂ GcA=/LM)PZ$-\'R>N(?b@hKxy<б$C"A T` ;assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/img/icons.gif000066600000027316152141651140021321 0ustar00GIF89a<`n%4O8*opqyn4Kcpz1QﮏХX̣XݹpQQRԚ=8)؊Ssb/i䴕T|ՍxY.-Y]fr[vOmAwl𑣹tlaUOPhĸ5f-M97ϰQϨ˴g急ٺO5`pˑ6MGYur虙Rkƴq*KKzBRc򅊝򨩶suRyMFH|lOf>봱0ChBgd}ΓR{kW@Ks@`A8?g..<QkܱS"X^Sp%cWnNX 9Lp𨸸Jvc"Zڎr̦PUg2Rr6[[Z?ː()'Р9c!,< H*\ȰÇ#JHŋ3jȱǏ CIɓ(}ԨeC0cʜ)ʛ8sɳϟ@ JѣH;x`iӗJJUͤXjpQ.I((ٳhܥKۋ*6ݻx~vu^~ LÈzM3]u؉\*-z(g 0.ti ? ĺHlጐ򉧏%|*s|z > dF萑ą6J{kL8dD.\ {=VѷGhqK. rp Vham. 6f@H A C$aD TleB j<~GV}I 9I 5>jT #dIq1CD, af`fjV"p gDP5Yt?'B!(!ߠUFޑ G]]GFtX %`d;^ڑ38HD(q m4fH뭺jPkFt &aH. @A# 1o enB,l 0A@i3%PG?P L0ލNN5\s^S].jB"D$#rwBPChD?W2{ѳq&D@FfE}E~!&sq.$zԉD G TDjB=#61J*k__$%H-CvI|FXK&bBV/K3I:'@0BGG\8K 7+D5tLP/r}iܕH 6.*T'5C)F(@ 7 I-n@@"' D$(Qq$`p^_! ^Vt/r=MӘב&4A|R!PG'"LPUޔ+V|\ߠ| Yr?1:cI7M?CN.S 2e@}D BRL0A38H!*y.`PC2$v1)y悞-sfvxĢ״EAD 0/X}ַx2Fw %:O tq&.MLSzp@6(n?h8Qr+~T2[i$Eg? -((Dla0B q2 2S dI bM"fE7 1#F&$ 405 W[6E Xv\2UI'ZcփTK8!=[5H0ZiF0ъr 0nKQ%i.Ep7PB.p̲Zfsl!x@J0!, \#8*N:&[@}G ڙM6A҅2b ,gq喅<A"Hs`9W2j]Aq:XxDBV&f,D|?&'fĺ풡e3EEɵa3Zط64aNho,d@>CnKNg4A;dD qB[6fjD\7!T0]\H1TkZú ` R=1$=mBqB46\!EMC"tU Ә(H"$-1q!XWMT4%5v)JiKfz[/{ɴ."]P"1Vm#FOLr?ιdOsdr31d1#r B.ApfXlL)HMxlWe8NzSa^rsVV_ [jS5̎]@ºw_2aE@8Cͺ(ebY͠sA"GdfC"9SH$4H b7JSֈX ]SĦ Vԉ7JJ(]=QIO"$g!լ5rEY]#8 $ q@ AT^3Y?gE{K#tA5.g9OS"FPtZ@t$Fr PVr"d^".ufPh@Pj6yJ 1zL y!kqwNc'waTt93x$ (b |FāGEPzpWPsAG@ 7'8h wW7 qaaL !6${gX6|T0s37drUuV>{ W}AqG+}'Aq+s(gc7|#vG@Bt tQ3]g> uǘ>Y',Udt^cŅlUR(j!hP ).rn $jv@Q<\-Cl1&yEHG͐ f $p S`2b&iXexquA1!`cacsov8W#wMp-%6p ͕SUOX#lc(l1# =7W=wWhwsK\P4xAPkE8sTiH`1C.W]vQ8R{YGų G (XY8S@ 4ё U!i8{qTUӅry&.@qNh>4y&H&f W3U^@٩:Zz:|:Zzګ++Zj Țo`(X]7zκC0P"8W`lmpqml0Dd0 pAЯ:! : GP ; K >*p21۱ pP *aIC.O2;28г0 U0UF{p[0p  SЊԚb O0n]` px{ZP  J06pTWp\ p;S '@P@`@ @d >cpI! ۹+ Z%++ePؓ;`c ˼K;Q{ + 8[`:%r"_"@@{` BPl ` ¬.b  p š@ ;{=[*נ[88*%8P:5 aYpzPZxPVl/Z `@` +l< n0 b7q<q6`nP1 0 rRLȃRLrѷQ`'$7>pW05.>pP RRRP2Ygk"@Y ']+  pO0 Vpl <-`@`@1 ƀE H`4}pÛpZ`]rP>5 pl0vx q 8+aL hl a Nj]"- e œž=^ϐAﲵqUkȭ` P ?mp9m-0Sb(qQ'@v!]lOn@P Mk Թ=;[JP?  < /;P;`6 ]0ί3"^j ϟa 2>;rt&6a_]+AQ L1!R^0 ?t ֽ&.`ow-NP  LpWP |nې0VP[r0`/p ` n H NA 1p#&0:٭ ps0@i9߿OHdx0C< t3PXO2|c^zEV2BEdg /6K#`L_A}!kQ&LpӠƥM&ݸUYvj#M ,$H.hc/RFJ{r#Xc!z Zl*x`a!%N!% tQ ~r HR'OiGN a5Ҏjas(>ܫn ԆR{:Buތ"'Lɑc|WlN?]=OR8RUX 8  `' & 0v!(>5Fh +pE*)$6/sܱG>x 5"#| %|HuǤrˬ$tJA`G 0`Ǖj@ `2h83G xk^hKأx^!6zo "tv`>@j J\9ܠu4 Xa0dڨcX4V $$lAMgOQ OiѢ[8PVK $ZYhFe. &| $H2I"y+C:L$Cxv؃n2x'{'`23^1|-XI}#>jS)eZ҂h &>&C^3"߈&IY$ B_}eUz/{}OGJ-A 46ax T;y/Gg04 (aH3xC B1Q pؔ.dp`jd 0DatAr t0Jկ^TXoA$2BA[xHȭʴc@ (ĺ6. FfND -C'"2 W-`bIiF1vBE\)1EIe*bj2B.^d'vHJRd"IԌd<$@c6gMp(ZdGd87gǃ!QC6 6lh;9v 'VФ@ pZĥ2ԡHy2!mC 4nwpa!(HсqHaG8'8r3Y`9 kHցϩ&T1<ZCU50( E5o2$7ܲyX܄J8`+a a:Ba7N kC%G@V  Le1{ЯelaKFA=8Z~`&(vTNv“JpP e`T( B"fIE#a/8uxjYhF!# A+`!Z䢯`" a5DźF_4^C3adQs(Gp Ex=#-8h`H{.8H"Gz-zZԢ0J)R'.@X%ɕkK\2IL:eSDrLK◴gpMNęf8 G4p[@zD @15ORcèFBFZX$(1hi!V2OtvIxp0Ci0Bq Àf4pIMq't#V Tc3De!CɈL $h? pGՂ d2\ H@C V!h]2?= hO şpFaw82T\^W>xF8Ab[n.@-н@BN06 !`QZ ^. 7U 7OpEhDr ^0ӨBpx$\C ̂@DlDR /pAGkA9)` ?dp(?NlR56Na-ؗ?| d y'?fQiZRZQ>rB}X*Ie1—f#d1 @ b`Np3O5uO /tuj'D9byj Y1i`K KK@@_4MxS#( .H5]^^akhb66?`)hh;1i*UlSnCbp7ۈ+`P`K`H5>F V7!7 ?>09>C*E\#D\7PĊ'9? A,ęD\Fřߑ:9"SSZ`X p./h+YAHX<_􂧋:Dp1'^:Jh˅0ӆ$;+x/+0s`)ʻ" xIWZ@i <.P<%@1 Ppp#3H0xo: K.#1"8ט E#cH {8AHR[A3Ky# ,fϚ JɆ` X;0JHJ (>02#R k ˙I1xbzs?lBӃ73N?:ӿz>4>0C+@M}X r@dw:4dQC p0< 耰y+V0->>'( ;!@hC}݀EP&7xgU ͨ NTP%zP{p5HHBx"`Уm@ Q WXpCfxJd$ҧC>H:l0j܈m ^7h'h@4Xǃp p/+sdGZ0z ,K!%Xٔ׬ՠ`([=dfݿ `a4H\ & ?mʮJ pVr^&\yso?]Y}}0lL;ၚA[,JYm/c\`x<'ciɄ6BhL8h :S`S** > ݂Kd7uՊ [@"[M[7X[&lexeǒ@,[`¥%Z XmBf\!H$ uFhe݈odh؃o]G \ph8(@`-ph|LE $(<(qPHMITK=s6C#(uQCՆ`~cm~1iI#>vc~{8&֊_%0p"~.P^Ra"Fj'aQ>#p&K|?#"#Y>: ;p@TTH, J[KpVu}(&Ug [k֊;h XB(F`N{JP ŐNli$ʙv,ߖI ʣ8قׂPB Wn x8g'o,0MGɨ~n7-)SSjZ@ZHThG]<@䂐 Tf_ 8H0(NM|MM&Ԏʖl %Ȋ Pj^Gfqpq^᪶j>EpJ r&Snr[m)Ͻ!x^,r-r2i L Ӟr~m s9s:7٪9ݨs>7js:J}AVHtE_DU/4ɰk| L LPCuR/uS?R/CuVouWuXuYuZu[u\u]u^u_u`vavb/vc?vdOve_vfovgvhvivjguvljvnvovpwq#3XxW7wxwywzw{@s?_xHB@Y͙Xͅ h7Xwwxxx7}to$h+WxG"xyyzG_xwpB|x7"7ȃ@ZyXC_zozzwrxt$|x$x(/z/z?{O{_p{{w{`BHx1_Wy4e{/|?|_$BHKN+D$|>؆}}/}^YG}_g}?$XU݇!{?W)SI?~O~_~X/`UG Y`:"w":">t~?~/]fTKO0[;,h „ 2l!Ĉ'Rh"6rرA3bR .h{#Μ:w'РB-j(ҤJ2miSPjMb4i)YX|ax-ܸrҭk.޼z틴T{< [e\4h3ТG.m4jƗ RPh\|k8B͎ʗ3o9ҧjabp5 ǏoA8Qo=ӯV_g 8 x zV* J8!Zx!j!;assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/img/iframe.gif000066600000001130152141651140021433 0ustar00GIF89a[{ܒfyuvնZ|X{z`yooSssVvaSs\~psҀTuzڒ\~XzlWychlQqQrdrTupn_z^![,[[76 3P2'>4[VU[[Y@[% EG:#$I.![A OH08=Z[ ,1Q;[ NL[)9F <[&R Ɩ+<݂BdETKXr ,/*d % \rP ;assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/img/realmedia.gif000066600000000667152141651140022131 0ustar00GIF89a%RPM@kű@=;.+)c5xHVusq}$pX Jfff!,%' * G4ac eg7j#BG&-ier]0H =G48}x;assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/img/quicktime.gif000066600000000455152141651140022174 0ustar00GIF89aM6nX brt |)t7 !,@'Ga1pxLtd iCY(D08)d b2HJd#w |yON*#d x x"Bil-/"hj. #;8 > " R  G+D !;assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/img/colorpicker.jpg000066600000005030152141651140022522 0ustar00JFIF>CREATOR: gd-jpeg v1.0 (using IJG JPEG v62), default quality C    $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222,"1A!"2!" ?4xzu!^Y:5xo(D\;>5ӭF"3F_fX(˦>ZY9(r֮JFDw&m_YcƟD343^*晚FiE1/}K_oC~?G+?]#}7‡\y8Ly3۳OnO=cg?L#2Ŗ(ǖ8\SGlq=\Qq-kZ+PByL2lNZiv,yBYǞO=:| Nu<}9^?O+DWקu85h΍4e4`IYy)rQVJEy2g 4ХǟD34G)ddc'b/93Ng>\ 9^Dyۯ=|ٮ6:N?dq峟>ɌuC Wcv>\p8]hW?M+B %䰥bu : 䚫]X ^5pON?ztx~E[Yp_NgG-E;Qྜྷ. zr/G^uF]1Cay? W&)ۢb'rSYD 9'Wr\pEUr)qѓ)2S92sm2g8ǧ;sCLdsno_>}oǖ8V2ьqqƜBqqU?C x9KaG!+av`,$+`,6XKYzt8XwM$W]q7HZ:<5ק3h,՛F+0/ut7[ 6BYNg0(E_b(gmGeJ9MFn9JRftLy9fc ci掗,`Rs9V2͒Z1Fuc|XFBV6‡b1 =׃lv, {0b 64V*tmUuf(8hٳq6qPzHJ7qV-9u@~u.iPw7G`YF麤귘k"RQ9HG%)LE r(3ȣӻ#f鏕ntyc,o|fv0\/iyȵ~ 2Ac'b9;1X!Ƭg 33 wh,.՛+`,6YubFXt^V?5qƮ6Yqз zQqAnf]~3PZjTV4@ꕪ=RZ@(oJ?4QE)rQp3y)GC$ǦnFNF 63rAQaɇ%-r!_g'f+979Q~e s;΃35A~`l2Fl]a~=bh؍'3v? ?=H-ѫd?aP lu h?LzjhZh% _mA*T")K}vV/tT2Lz'l?dDDIqqpaQ&Mf[+&Yə2d; L3!(.(,t*, X[4V`K,]ΕKE ʭU٤̲rcT?44铃f*‚ڲ D6u%Z2pkiy93Wu["z'F5Tm2'PFB6fC2vfҁ;7 QD$Hto6J}+4}ҺJt> H@( UGC%2iGt_WO;Uhһw͢U]Q;_a;YIO_a;]#vha]'TUUeE `l]Yu"nU2uʿ˿e2)W}&]'N}TT}/~t>ҍt>>]DDXE'DӴG:8O'D'i#:9:'H:D;DCڑ'DWHވ(:ND퐝/D;'dDG 'I"N"assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/editor_template.js000066600000064132152141651140022457 0ustar00(function(h){var i=h.DOM,g=h.dom.Event,c=h.extend,f=h.each,a=h.util.Cookie,e,d=h.explode;function b(m,k){var q,p=m.dom,n="",o,l;previewStyles=m.settings.preview_styles;if(previewStyles===false){return""}if(!previewStyles){previewStyles="font-family font-size font-weight text-decoration text-transform color background-color"}function j(r){return r.replace(/%(\w+)/g,"")}name=k.block||k.inline||"span";q=p.create(name);f(k.styles,function(s,r){s=j(s);if(s){p.setStyle(q,r,s)}});f(k.attributes,function(s,r){s=j(s);if(s){p.setAttrib(q,r,s)}});f(k.classes,function(r){r=j(r);if(!p.hasClass(q,r)){p.addClass(q,r)}});p.setStyles(q,{position:"absolute",left:-65535});m.getBody().appendChild(q);o=p.getStyle(m.getBody(),"fontSize",true);o=/px$/.test(o)?parseInt(o,10):0;f(previewStyles.split(" "),function(r){var s=p.getStyle(q,r,true);if(r=="background-color"&&/transparent|rgba\s*\([^)]+,\s*0\)/.test(s)){s=p.getStyle(m.getBody(),r,true);if(p.toHex(s).toLowerCase()=="#ffffff"){return}}if(r=="font-size"){if(/em|%$/.test(s)){if(o===0){return}s=parseFloat(s,10)/(/%$/.test(s)?100:1);s=(s*o)+"px"}}n+=r+":"+s+";"});p.remove(q);return n}h.ThemeManager.requireLangPack("advanced");h.create("tinymce.themes.AdvancedTheme",{sizes:[8,10,12,14,18,24,36],controls:{bold:["bold_desc","Bold"],italic:["italic_desc","Italic"],underline:["underline_desc","Underline"],strikethrough:["striketrough_desc","Strikethrough"],justifyleft:["justifyleft_desc","JustifyLeft"],justifycenter:["justifycenter_desc","JustifyCenter"],justifyright:["justifyright_desc","JustifyRight"],justifyfull:["justifyfull_desc","JustifyFull"],bullist:["bullist_desc","InsertUnorderedList"],numlist:["numlist_desc","InsertOrderedList"],outdent:["outdent_desc","Outdent"],indent:["indent_desc","Indent"],cut:["cut_desc","Cut"],copy:["copy_desc","Copy"],paste:["paste_desc","Paste"],undo:["undo_desc","Undo"],redo:["redo_desc","Redo"],link:["link_desc","mceLink"],unlink:["unlink_desc","unlink"],image:["image_desc","mceImage"],cleanup:["cleanup_desc","mceCleanup"],help:["help_desc","mceHelp"],code:["code_desc","mceCodeEditor"],hr:["hr_desc","InsertHorizontalRule"],removeformat:["removeformat_desc","RemoveFormat"],sub:["sub_desc","subscript"],sup:["sup_desc","superscript"],forecolor:["forecolor_desc","ForeColor"],forecolorpicker:["forecolor_desc","mceForeColor"],backcolor:["backcolor_desc","HiliteColor"],backcolorpicker:["backcolor_desc","mceBackColor"],charmap:["charmap_desc","mceCharMap"],visualaid:["visualaid_desc","mceToggleVisualAid"],anchor:["anchor_desc","mceInsertAnchor"],newdocument:["newdocument_desc","mceNewDocument"],blockquote:["blockquote_desc","mceBlockQuote"]},stateControls:["bold","italic","underline","strikethrough","bullist","numlist","justifyleft","justifycenter","justifyright","justifyfull","sub","sup","blockquote"],init:function(k,l){var m=this,n,j,p;m.editor=k;m.url=l;m.onResolveName=new h.util.Dispatcher(this);n=k.settings;k.forcedHighContrastMode=k.settings.detect_highcontrast&&m._isHighContrast();k.settings.skin=k.forcedHighContrastMode?"highcontrast":k.settings.skin;if(!n.theme_advanced_buttons1){n=c({theme_advanced_buttons1:"bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect",theme_advanced_buttons2:"bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code",theme_advanced_buttons3:"hr,removeformat,visualaid,|,sub,sup,|,charmap"},n)}m.settings=n=c({theme_advanced_path:true,theme_advanced_toolbar_location:"top",theme_advanced_blockformats:"p,address,pre,h1,h2,h3,h4,h5,h6",theme_advanced_toolbar_align:"left",theme_advanced_statusbar_location:"bottom",theme_advanced_fonts:"Andale Mono=andale mono,times;Arial=arial,helvetica,sans-serif;Arial Black=arial black,avant garde;Book Antiqua=book antiqua,palatino;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier;Georgia=georgia,palatino;Helvetica=helvetica;Impact=impact,chicago;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco;Times New Roman=times new roman,times;Trebuchet MS=trebuchet ms,geneva;Verdana=verdana,geneva;Webdings=webdings;Wingdings=wingdings,zapf dingbats",theme_advanced_more_colors:1,theme_advanced_row_height:23,theme_advanced_resize_horizontal:1,theme_advanced_resizing_use_cookie:1,theme_advanced_font_sizes:"1,2,3,4,5,6,7",theme_advanced_font_selector:"span",theme_advanced_show_current_color:0,readonly:k.settings.readonly},n);if(!n.font_size_style_values){n.font_size_style_values="8pt,10pt,12pt,14pt,18pt,24pt,36pt"}if(h.is(n.theme_advanced_font_sizes,"string")){n.font_size_style_values=h.explode(n.font_size_style_values);n.font_size_classes=h.explode(n.font_size_classes||"");p={};k.settings.theme_advanced_font_sizes=n.theme_advanced_font_sizes;f(k.getParam("theme_advanced_font_sizes","","hash"),function(r,q){var o;if(q==r&&r>=1&&r<=7){q=r+" ("+m.sizes[r-1]+"pt)";o=n.font_size_classes[r-1];r=n.font_size_style_values[r-1]||(m.sizes[r-1]+"pt")}if(/^\s*\./.test(r)){o=r.replace(/\./g,"")}p[q]=o?{"class":o}:{fontSize:r}});n.theme_advanced_font_sizes=p}if((j=n.theme_advanced_path_location)&&j!="none"){n.theme_advanced_statusbar_location=n.theme_advanced_path_location}if(n.theme_advanced_statusbar_location=="none"){n.theme_advanced_statusbar_location=0}if(k.settings.content_css!==false){k.contentCSS.push(k.baseURI.toAbsolute(l+"/skins/"+k.settings.skin+"/content.css"))}k.onInit.add(function(){if(!k.settings.readonly){k.onNodeChange.add(m._nodeChanged,m);k.onKeyUp.add(m._updateUndoStatus,m);k.onMouseUp.add(m._updateUndoStatus,m);k.dom.bind(k.dom.getRoot(),"dragend",function(){m._updateUndoStatus(k)})}});k.onSetProgressState.add(function(r,o,s){var t,u=r.id,q;if(o){m.progressTimer=setTimeout(function(){t=r.getContainer();t=t.insertBefore(i.create("DIV",{style:"position:relative"}),t.firstChild);q=i.get(r.id+"_tbl");i.add(t,"div",{id:u+"_blocker","class":"mceBlocker",style:{width:q.clientWidth+2,height:q.clientHeight+2}});i.add(t,"div",{id:u+"_progress","class":"mceProgress",style:{left:q.clientWidth/2,top:q.clientHeight/2}})},s||0)}else{i.remove(u+"_blocker");i.remove(u+"_progress");clearTimeout(m.progressTimer)}});i.loadCSS(n.editor_css?k.documentBaseURI.toAbsolute(n.editor_css):l+"/skins/"+k.settings.skin+"/ui.css");if(n.skin_variant){i.loadCSS(l+"/skins/"+k.settings.skin+"/ui_"+n.skin_variant+".css")}},_isHighContrast:function(){var j,k=i.add(i.getRoot(),"div",{style:"background-color: rgb(171,239,86);"});j=(i.getStyle(k,"background-color",true)+"").toLowerCase().replace(/ /g,"");i.remove(k);return j!="rgb(171,239,86)"&&j!="#abef56"},createControl:function(m,j){var k,l;if(l=j.createControl(m)){return l}switch(m){case"styleselect":return this._createStyleSelect();case"formatselect":return this._createBlockFormats();case"fontselect":return this._createFontSelect();case"fontsizeselect":return this._createFontSizeSelect();case"forecolor":return this._createForeColorMenu();case"backcolor":return this._createBackColorMenu()}if((k=this.controls[m])){return j.createButton(m,{title:"advanced."+k[0],cmd:k[1],ui:k[2],value:k[3]})}},execCommand:function(l,k,m){var j=this["_"+l];if(j){j.call(this,k,m);return true}return false},_importClasses:function(l){var j=this.editor,k=j.controlManager.get("styleselect");if(k.getLength()==0){f(j.dom.getClasses(),function(q,m){var p="style_"+m,n;n={inline:"span",attributes:{"class":q["class"]},selector:"*"};j.formatter.register(p,n);k.add(q["class"],p,{style:function(){return b(j,n)}})})}},_createStyleSelect:function(o){var l=this,j=l.editor,k=j.controlManager,m;m=k.createListBox("styleselect",{title:"advanced.style_select",onselect:function(q){var r,n=[],p;f(m.items,function(s){n.push(s.value)});j.focus();j.undoManager.add();r=j.formatter.matchAll(n);h.each(r,function(s){if(!q||s==q){if(s){j.formatter.remove(s)}p=true}});if(!p){j.formatter.apply(q)}j.undoManager.add();j.nodeChanged();return false}});j.onPreInit.add(function(){var p=0,n=j.getParam("style_formats");if(n){f(n,function(q){var r,s=0;f(q,function(){s++});if(s>1){r=q.name=q.name||"style_"+(p++);j.formatter.register(r,q);m.add(q.title,r,{style:function(){return b(j,q)}})}else{m.add(q.title)}})}else{f(j.getParam("theme_advanced_styles","","hash"),function(t,s){var r,q;if(t){r="style_"+(p++);q={inline:"span",classes:t,selector:"*"};j.formatter.register(r,q);m.add(l.editor.translate(s),r,{style:function(){return b(j,q)}})}})}});if(m.getLength()==0){m.onPostRender.add(function(p,q){if(!m.NativeListBox){g.add(q.id+"_text","focus",l._importClasses,l);g.add(q.id+"_text","mousedown",l._importClasses,l);g.add(q.id+"_open","focus",l._importClasses,l);g.add(q.id+"_open","mousedown",l._importClasses,l)}else{g.add(q.id,"focus",l._importClasses,l)}})}return m},_createFontSelect:function(){var l,k=this,j=k.editor;l=j.controlManager.createListBox("fontselect",{title:"advanced.fontdefault",onselect:function(m){var n=l.items[l.selectedIndex];if(!m&&n){j.execCommand("FontName",false,n.value);return}j.execCommand("FontName",false,m);l.select(function(o){return m==o});if(n&&n.value==m){l.select(null)}return false}});if(l){f(j.getParam("theme_advanced_fonts",k.settings.theme_advanced_fonts,"hash"),function(n,m){l.add(j.translate(m),n,{style:n.indexOf("dings")==-1?"font-family:"+n:""})})}return l},_createFontSizeSelect:function(){var m=this,k=m.editor,n,l=0,j=[];n=k.controlManager.createListBox("fontsizeselect",{title:"advanced.font_size",onselect:function(o){var p=n.items[n.selectedIndex];if(!o&&p){p=p.value;if(p["class"]){k.formatter.toggle("fontsize_class",{value:p["class"]});k.undoManager.add();k.nodeChanged()}else{k.execCommand("FontSize",false,p.fontSize)}return}if(o["class"]){k.focus();k.undoManager.add();k.formatter.toggle("fontsize_class",{value:o["class"]});k.undoManager.add();k.nodeChanged()}else{k.execCommand("FontSize",false,o.fontSize)}n.select(function(q){return o==q});if(p&&(p.value.fontSize==o.fontSize||p.value["class"]&&p.value["class"]==o["class"])){n.select(null)}return false}});if(n){f(m.settings.theme_advanced_font_sizes,function(p,o){var q=p.fontSize;if(q>=1&&q<=7){q=m.sizes[parseInt(q)-1]+"pt"}n.add(o,p,{style:"font-size:"+q,"class":"mceFontSize"+(l++)+(" "+(p["class"]||""))})})}return n},_createBlockFormats:function(){var l,j={p:"advanced.paragraph",address:"advanced.address",pre:"advanced.pre",h1:"advanced.h1",h2:"advanced.h2",h3:"advanced.h3",h4:"advanced.h4",h5:"advanced.h5",h6:"advanced.h6",div:"advanced.div",blockquote:"advanced.blockquote",code:"advanced.code",dt:"advanced.dt",dd:"advanced.dd",samp:"advanced.samp"},k=this;l=k.editor.controlManager.createListBox("formatselect",{title:"advanced.block",onselect:function(m){k.editor.execCommand("FormatBlock",false,m);return false}});if(l){f(k.editor.getParam("theme_advanced_blockformats",k.settings.theme_advanced_blockformats,"hash"),function(n,m){l.add(k.editor.translate(m!=n?m:j[n]),n,{"class":"mce_formatPreview mce_"+n,style:function(){return b(k.editor,{block:n})}})})}return l},_createForeColorMenu:function(){var n,k=this,l=k.settings,m={},j;if(l.theme_advanced_more_colors){m.more_colors_func=function(){k._mceColorPicker(0,{color:n.value,func:function(o){n.setColor(o)}})}}if(j=l.theme_advanced_text_colors){m.colors=j}if(l.theme_advanced_default_foreground_color){m.default_color=l.theme_advanced_default_foreground_color}m.title="advanced.forecolor_desc";m.cmd="ForeColor";m.scope=this;n=k.editor.controlManager.createColorSplitButton("forecolor",m);return n},_createBackColorMenu:function(){var n,k=this,l=k.settings,m={},j;if(l.theme_advanced_more_colors){m.more_colors_func=function(){k._mceColorPicker(0,{color:n.value,func:function(o){n.setColor(o)}})}}if(j=l.theme_advanced_background_colors){m.colors=j}if(l.theme_advanced_default_background_color){m.default_color=l.theme_advanced_default_background_color}m.title="advanced.backcolor_desc";m.cmd="HiliteColor";m.scope=this;n=k.editor.controlManager.createColorSplitButton("backcolor",m);return n},renderUI:function(l){var q,m,r,w=this,u=w.editor,x=w.settings,v,k,j;if(u.settings){u.settings.aria_label=x.aria_label+u.getLang("advanced.help_shortcut")}q=k=i.create("span",{role:"application","aria-labelledby":u.id+"_voice",id:u.id+"_parent","class":"mceEditor "+u.settings.skin+"Skin"+(x.skin_variant?" "+u.settings.skin+"Skin"+w._ufirst(x.skin_variant):"")+(u.settings.directionality=="rtl"?" mceRtl":"")});i.add(q,"span",{"class":"mceVoiceLabel",style:"display:none;",id:u.id+"_voice"},x.aria_label);if(!i.boxModel){q=i.add(q,"div",{"class":"mceOldBoxModel"})}q=v=i.add(q,"table",{role:"presentation",id:u.id+"_tbl","class":"mceLayout",cellSpacing:0,cellPadding:0});q=r=i.add(q,"tbody");switch((x.theme_advanced_layout_manager||"").toLowerCase()){case"rowlayout":m=w._rowLayout(x,r,l);break;case"customlayout":m=u.execCallback("theme_advanced_custom_layout",x,r,l,k);break;default:m=w._simpleLayout(x,r,l,k)}q=l.targetNode;j=v.rows;i.addClass(j[0],"mceFirst");i.addClass(j[j.length-1],"mceLast");f(i.select("tr",r),function(o){i.addClass(o.firstChild,"mceFirst");i.addClass(o.childNodes[o.childNodes.length-1],"mceLast")});if(i.get(x.theme_advanced_toolbar_container)){i.get(x.theme_advanced_toolbar_container).appendChild(k)}else{i.insertAfter(k,q)}g.add(u.id+"_path_row","click",function(n){n=n.target;if(n.nodeName=="A"){w._sel(n.className.replace(/^.*mcePath_([0-9]+).*$/,"$1"));return false}});if(!u.getParam("accessibility_focus")){g.add(i.add(k,"a",{href:"#"},""),"focus",function(){tinyMCE.get(u.id).focus()})}if(x.theme_advanced_toolbar_location=="external"){l.deltaHeight=0}w.deltaHeight=l.deltaHeight;l.targetNode=null;u.onKeyDown.add(function(p,n){var s=121,o=122;if(n.altKey){if(n.keyCode===s){if(h.isWebKit){window.focus()}w.toolbarGroup.focus();return g.cancel(n)}else{if(n.keyCode===o){i.get(p.id+"_path_row").focus();return g.cancel(n)}}}});u.addShortcut("alt+0","","mceShortcuts",w);return{iframeContainer:m,editorContainer:u.id+"_parent",sizeContainer:v,deltaHeight:l.deltaHeight}},getInfo:function(){return{longname:"Advanced theme",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",version:h.majorVersion+"."+h.minorVersion}},resizeBy:function(j,k){var l=i.get(this.editor.id+"_ifr");this.resizeTo(l.clientWidth+j,l.clientHeight+k)},resizeTo:function(j,n,l){var k=this.editor,m=this.settings,o=i.get(k.id+"_tbl"),p=i.get(k.id+"_ifr");j=Math.max(m.theme_advanced_resizing_min_width||100,j);n=Math.max(m.theme_advanced_resizing_min_height||100,n);j=Math.min(m.theme_advanced_resizing_max_width||65535,j);n=Math.min(m.theme_advanced_resizing_max_height||65535,n);i.setStyle(o,"height","");i.setStyle(p,"height",n);if(m.theme_advanced_resize_horizontal){i.setStyle(o,"width","");i.setStyle(p,"width",j);if(j"));i.setHTML(l,r.join(""))},_addStatusBar:function(p,k){var l,w=this,q=w.editor,x=w.settings,j,u,v,m;l=i.add(p,"tr");l=m=i.add(l,"td",{"class":"mceStatusbar"});l=i.add(l,"div",{id:q.id+"_path_row",role:"group","aria-labelledby":q.id+"_path_voice"});if(x.theme_advanced_path){i.add(l,"span",{id:q.id+"_path_voice"},q.translate("advanced.path"));i.add(l,"span",{},": ")}else{i.add(l,"span",{}," ")}if(x.theme_advanced_resizing){i.add(m,"a",{id:q.id+"_resize",href:"javascript:;",onclick:"return false;","class":"mceResize",tabIndex:"-1"});if(x.theme_advanced_resizing_use_cookie){q.onPostRender.add(function(){var n=a.getHash("TinyMCE_"+q.id+"_size"),r=i.get(q.id+"_tbl");if(!n){return}w.resizeTo(n.cw,n.ch)})}q.onPostRender.add(function(){g.add(q.id+"_resize","click",function(n){n.preventDefault()});g.add(q.id+"_resize","mousedown",function(E){var t,r,s,o,D,A,B,G,n,F,y;function z(H){H.preventDefault();n=B+(H.screenX-D);F=G+(H.screenY-A);w.resizeTo(n,F)}function C(H){g.remove(i.doc,"mousemove",t);g.remove(q.getDoc(),"mousemove",r);g.remove(i.doc,"mouseup",s);g.remove(q.getDoc(),"mouseup",o);n=B+(H.screenX-D);F=G+(H.screenY-A);w.resizeTo(n,F,true)}E.preventDefault();D=E.screenX;A=E.screenY;y=i.get(w.editor.id+"_ifr");B=n=y.clientWidth;G=F=y.clientHeight;t=g.add(i.doc,"mousemove",z);r=g.add(q.getDoc(),"mousemove",z);s=g.add(i.doc,"mouseup",C);o=g.add(q.getDoc(),"mouseup",C)})})}k.deltaHeight-=21;l=p=null},_updateUndoStatus:function(k){var j=k.controlManager,l=k.undoManager;j.setDisabled("undo",!l.hasUndo()&&!l.typing);j.setDisabled("redo",!l.hasRedo())},_nodeChanged:function(o,u,E,r,F){var z=this,D,G=0,y,H,A=z.settings,x,l,w,C,m,k,j;h.each(z.stateControls,function(n){u.setActive(n,o.queryCommandState(z.controls[n][1]))});function q(p){var s,n=F.parents,t=p;if(typeof(p)=="string"){t=function(v){return v.nodeName==p}}for(s=0;s0){H.mark(p)}})}if(H=u.get("formatselect")){D=q(o.dom.isBlock);if(D){H.select(D.nodeName.toLowerCase())}}q(function(p){if(p.nodeName==="SPAN"){if(!x&&p.className){x=p.className}}if(o.dom.is(p,A.theme_advanced_font_selector)){if(!l&&p.style.fontSize){l=p.style.fontSize}if(!w&&p.style.fontFamily){w=p.style.fontFamily.replace(/[\"\']+/g,"").replace(/^([^,]+).*/,"$1").toLowerCase()}if(!C&&p.style.color){C=p.style.color}if(!m&&p.style.backgroundColor){m=p.style.backgroundColor}}return false});if(H=u.get("fontselect")){H.select(function(n){return n.replace(/^([^,]+).*/,"$1").toLowerCase()==w})}if(H=u.get("fontsizeselect")){if(A.theme_advanced_runtime_fontsize&&!l&&!x){l=o.dom.getStyle(E,"fontSize",true)}H.select(function(n){if(n.fontSize&&n.fontSize===l){return true}if(n["class"]&&n["class"]===x){return true}})}if(A.theme_advanced_show_current_color){function B(p,n){if(H=u.get(p)){if(!n){n=H.settings.default_color}if(n!==H.value){H.displayColor(n)}}}B("forecolor",C);B("backcolor",m)}if(A.theme_advanced_show_current_color){function B(p,n){if(H=u.get(p)){if(!n){n=H.settings.default_color}if(n!==H.value){H.displayColor(n)}}}B("forecolor",C);B("backcolor",m)}if(A.theme_advanced_path&&A.theme_advanced_statusbar_location){D=i.get(o.id+"_path")||i.add(o.id+"_path_row","span",{id:o.id+"_path"});if(z.statusKeyboardNavigation){z.statusKeyboardNavigation.destroy();z.statusKeyboardNavigation=null}i.setHTML(D,"");q(function(I){var p=I.nodeName.toLowerCase(),s,v,t="";if(I.nodeType!=1||p==="br"||I.getAttribute("data-mce-bogus")||i.hasClass(I,"mceItemHidden")||i.hasClass(I,"mceItemRemoved")){return}if(h.isIE&&I.scopeName!=="HTML"&&I.scopeName){p=I.scopeName+":"+p}p=p.replace(/mce\:/g,"");switch(p){case"b":p="strong";break;case"i":p="em";break;case"img":if(y=i.getAttrib(I,"src")){t+="src: "+y+" "}break;case"a":if(y=i.getAttrib(I,"name")){t+="name: "+y+" ";p+="#"+y}if(y=i.getAttrib(I,"href")){t+="href: "+y+" "}break;case"font":if(y=i.getAttrib(I,"face")){t+="font: "+y+" "}if(y=i.getAttrib(I,"size")){t+="size: "+y+" "}if(y=i.getAttrib(I,"color")){t+="color: "+y+" "}break;case"span":if(y=i.getAttrib(I,"style")){t+="style: "+y+" "}break}if(y=i.getAttrib(I,"id")){t+="id: "+y+" "}if(y=I.className){y=y.replace(/\b\s*(webkit|mce|Apple-)\w+\s*\b/g,"");if(y){t+="class: "+y+" ";if(o.dom.isBlock(I)||p=="img"||p=="span"){p+="."+y}}}p=p.replace(/(html:)/g,"");p={name:p,node:I,title:t};z.onResolveName.dispatch(z,p);t=p.title;p=p.name;v=i.create("a",{href:"javascript:;",role:"button",onmousedown:"return false;",title:t,"class":"mcePath_"+(G++)},p);if(D.hasChildNodes()){D.insertBefore(i.create("span",{"aria-hidden":"true"},"\u00a0\u00bb "),D.firstChild);D.insertBefore(v,D.firstChild)}else{D.appendChild(v)}},o.getBody());if(i.select("a",D).length>0){z.statusKeyboardNavigation=new h.ui.KeyboardNavigation({root:o.id+"_path_row",items:i.select("a",D),excludeFromTabOrder:true,onCancel:function(){o.focus()}},i)}}},_sel:function(j){this.editor.execCommand("mceSelectNodeDepth",false,j)},_mceInsertAnchor:function(l,k){var j=this.editor;j.windowManager.open({url:this.url+"/anchor.htm",width:320+parseInt(j.getLang("advanced.anchor_delta_width",0)),height:90+parseInt(j.getLang("advanced.anchor_delta_height",0)),inline:true},{theme_url:this.url})},_mceCharMap:function(){var j=this.editor;j.windowManager.open({url:this.url+"/charmap.htm",width:550+parseInt(j.getLang("advanced.charmap_delta_width",0)),height:265+parseInt(j.getLang("advanced.charmap_delta_height",0)),inline:true},{theme_url:this.url})},_mceHelp:function(){var j=this.editor;j.windowManager.open({url:this.url+"/about.htm",width:480,height:380,inline:true},{theme_url:this.url})},_mceShortcuts:function(){var j=this.editor;j.windowManager.open({url:this.url+"/shortcuts.htm",width:480,height:380,inline:true},{theme_url:this.url})},_mceColorPicker:function(l,k){var j=this.editor;k=k||{};j.windowManager.open({url:this.url+"/color_picker.htm",width:375+parseInt(j.getLang("advanced.colorpicker_delta_width",0)),height:250+parseInt(j.getLang("advanced.colorpicker_delta_height",0)),close_previous:false,inline:true},{input_color:k.color,func:k.func,theme_url:this.url})},_mceCodeEditor:function(k,l){var j=this.editor;j.windowManager.open({url:this.url+"/source_editor.htm",width:parseInt(j.getParam("theme_advanced_source_editor_width",720)),height:parseInt(j.getParam("theme_advanced_source_editor_height",580)),inline:true,resizable:true,maximizable:true},{theme_url:this.url})},_mceImage:function(k,l){var j=this.editor;if(j.dom.getAttrib(j.selection.getNode(),"class","").indexOf("mceItem")!=-1){return}j.windowManager.open({url:this.url+"/image.htm",width:355+parseInt(j.getLang("advanced.image_delta_width",0)),height:275+parseInt(j.getLang("advanced.image_delta_height",0)),inline:true},{theme_url:this.url})},_mceLink:function(k,l){var j=this.editor;j.windowManager.open({url:this.url+"/link.htm",width:310+parseInt(j.getLang("advanced.link_delta_width",0)),height:200+parseInt(j.getLang("advanced.link_delta_height",0)),inline:true},{theme_url:this.url})},_mceNewDocument:function(){var j=this.editor;j.windowManager.confirm("advanced.newdocument",function(k){if(k){j.execCommand("mceSetContent",false,"")}})},_mceForeColor:function(){var j=this;this._mceColorPicker(0,{color:j.fgColor,func:function(k){j.fgColor=k;j.editor.execCommand("ForeColor",false,k)}})},_mceBackColor:function(){var j=this;this._mceColorPicker(0,{color:j.bgColor,func:function(k){j.bgColor=k;j.editor.execCommand("HiliteColor",false,k)}})},_ufirst:function(j){return j.substring(0,1).toUpperCase()+j.substring(1)}});h.ThemeManager.add("advanced",h.themes.AdvancedTheme)}(tinymce));assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/langs/en_dlg.js000066600000003674152141651140021636 0ustar00tinyMCE.addI18n('en.advanced_dlg', {"link_list":"Link List","link_is_external":"The URL you entered seems to be an external link. Do you want to add the required http:// prefix?","link_is_email":"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?","link_titlefield":"Title","link_target_blank":"Open Link in a New Window","link_target_same":"Open Link in the Same Window","link_target":"Target","link_url":"Link URL","link_title":"Insert/Edit Link","image_align_right":"Right","image_align_left":"Left","image_align_textbottom":"Text Bottom","image_align_texttop":"Text Top","image_align_bottom":"Bottom","image_align_middle":"Middle","image_align_top":"Top","image_align_baseline":"Baseline","image_align":"Alignment","image_hspace":"Horizontal Space","image_vspace":"Vertical Space","image_dimensions":"Dimensions","image_alt":"Image Description","image_list":"Image List","image_border":"Border","image_src":"Image URL","image_title":"Insert/Edit Image","charmap_title":"Select Special Character", "charmap_usage":"Use left and right arrows to navigate.","colorpicker_name":"Name:","colorpicker_color":"Color:","colorpicker_named_title":"Named Colors","colorpicker_named_tab":"Named","colorpicker_palette_title":"Palette Colors","colorpicker_palette_tab":"Palette","colorpicker_picker_title":"Color Picker","colorpicker_picker_tab":"Picker","colorpicker_title":"Select a Color","code_wordwrap":"Word Wrap","code_title":"HTML Source Editor","anchor_name":"Anchor Name","anchor_title":"Insert/Edit Anchor","about_loaded":"Loaded Plugins","about_version":"Version","about_author":"Author","about_plugin":"Plugin","about_plugins":"Plugins","about_license":"License","about_help":"Help","about_general":"About","about_title":"About TinyMCE","anchor_invalid":"Please specify a valid anchor name.","accessibility_help":"Accessibility Help","accessibility_usage_title":"General Usage","invalid_color_value":"Invalid color value","":""}); assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/langs/en.js000066600000004445152141651140021005 0ustar00tinyMCE.addI18n('en.advanced',{"underline_desc":"Underline (Ctrl+U)","italic_desc":"Italic (Ctrl+I)","bold_desc":"Bold (Ctrl+B)",dd:"Definition Description",dt:"Definition Term ",samp:"Code Sample",code:"Code",blockquote:"Block Quote",h6:"Heading 6",h5:"Heading 5",h4:"Heading 4",h3:"Heading 3",h2:"Heading 2",h1:"Heading 1",pre:"Preformatted",address:"Address",div:"DIV",paragraph:"Paragraph",block:"Format",fontdefault:"Font Family","font_size":"Font Size","style_select":"Styles","anchor_delta_height":"","anchor_delta_width":"","charmap_delta_height":"","charmap_delta_width":"","colorpicker_delta_height":"","colorpicker_delta_width":"","link_delta_height":"","link_delta_width":"","image_delta_height":"","image_delta_width":"","more_colors":"More Colors...","toolbar_focus":"Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X",newdocument:"Are you sure you want clear all contents?",path:"Path","clipboard_msg":"Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?","blockquote_desc":"Block Quote","help_desc":"Help","newdocument_desc":"New Document","image_props_desc":"Image Properties","paste_desc":"Paste (Ctrl+V)","copy_desc":"Copy (Ctrl+C)","cut_desc":"Cut (Ctrl+X)","anchor_desc":"Insert/Edit Anchor","visualaid_desc":"show/Hide Guidelines/Invisible Elements","charmap_desc":"Insert Special Character","backcolor_desc":"Select Background Color","forecolor_desc":"Select Text Color","custom1_desc":"Your Custom Description Here","removeformat_desc":"Remove Formatting","hr_desc":"Insert Horizontal Line","sup_desc":"Superscript","sub_desc":"Subscript","code_desc":"Edit HTML Source","cleanup_desc":"Cleanup Messy Code","image_desc":"Insert/Edit Image","unlink_desc":"Unlink","link_desc":"Insert/Edit Link","redo_desc":"Redo (Ctrl+Y)","undo_desc":"Undo (Ctrl+Z)","indent_desc":"Increase Indent","outdent_desc":"Decrease Indent","numlist_desc":"Insert/Remove Numbered List","bullist_desc":"Insert/Remove Bulleted List","justifyfull_desc":"Align Full","justifyright_desc":"Align Right","justifycenter_desc":"Align Center","justifyleft_desc":"Align Left","striketrough_desc":"Strikethrough","help_shortcut":"Press ALT-F10 for toolbar. Press ALT-0 for help","rich_text_area":"Rich Text Area","shortcuts_desc":"Accessability Help",toolbar:"Toolbar"});assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/source_editor.htm000066600000002334152141651140022314 0ustar00 {#advanced_dlg.code_title}

        assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/js/image.js000066600000013772152141651140021000 0ustar00var ImageDialog = { preInit : function() { var url; tinyMCEPopup.requireLangPack(); if (url = tinyMCEPopup.getParam("external_image_list_url")) document.write(''); }, init : function() { var f = document.forms[0], ed = tinyMCEPopup.editor; // Setup browse button document.getElementById('srcbrowsercontainer').innerHTML = getBrowserHTML('srcbrowser','src','image','theme_advanced_image'); if (isVisible('srcbrowser')) document.getElementById('src').style.width = '180px'; e = ed.selection.getNode(); this.fillFileList('image_list', tinyMCEPopup.getParam('external_image_list', 'tinyMCEImageList')); if (e.nodeName == 'IMG') { f.src.value = ed.dom.getAttrib(e, 'src'); f.alt.value = ed.dom.getAttrib(e, 'alt'); f.border.value = this.getAttrib(e, 'border'); f.vspace.value = this.getAttrib(e, 'vspace'); f.hspace.value = this.getAttrib(e, 'hspace'); f.width.value = ed.dom.getAttrib(e, 'width'); f.height.value = ed.dom.getAttrib(e, 'height'); f.insert.value = ed.getLang('update'); this.styleVal = ed.dom.getAttrib(e, 'style'); selectByValue(f, 'image_list', f.src.value); selectByValue(f, 'align', this.getAttrib(e, 'align')); this.updateStyle(); } }, fillFileList : function(id, l) { var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl; l = typeof(l) === 'function' ? l() : window[l]; if (l && l.length > 0) { lst.options[lst.options.length] = new Option('', ''); tinymce.each(l, function(o) { lst.options[lst.options.length] = new Option(o[0], o[1]); }); } else dom.remove(dom.getParent(id, 'tr')); }, update : function() { var f = document.forms[0], nl = f.elements, ed = tinyMCEPopup.editor, args = {}, el; tinyMCEPopup.restoreSelection(); if (f.src.value === '') { if (ed.selection.getNode().nodeName == 'IMG') { ed.dom.remove(ed.selection.getNode()); ed.execCommand('mceRepaint'); } tinyMCEPopup.close(); return; } if (!ed.settings.inline_styles) { args = tinymce.extend(args, { vspace : nl.vspace.value, hspace : nl.hspace.value, border : nl.border.value, align : getSelectValue(f, 'align') }); } else args.style = this.styleVal; tinymce.extend(args, { src : f.src.value.replace(/ /g, '%20'), alt : f.alt.value, width : f.width.value, height : f.height.value }); el = ed.selection.getNode(); if (el && el.nodeName == 'IMG') { ed.dom.setAttribs(el, args); tinyMCEPopup.editor.execCommand('mceRepaint'); tinyMCEPopup.editor.focus(); } else { tinymce.each(args, function(value, name) { if (value === "") { delete args[name]; } }); ed.execCommand('mceInsertContent', false, tinyMCEPopup.editor.dom.createHTML('img', args), {skip_undo : 1}); ed.undoManager.add(); } tinyMCEPopup.close(); }, updateStyle : function() { var dom = tinyMCEPopup.dom, st = {}, v, f = document.forms[0]; if (tinyMCEPopup.editor.settings.inline_styles) { tinymce.each(tinyMCEPopup.dom.parseStyle(this.styleVal), function(value, key) { st[key] = value; }); // Handle align v = getSelectValue(f, 'align'); if (v) { if (v == 'left' || v == 'right') { st['float'] = v; delete st['vertical-align']; } else { st['vertical-align'] = v; delete st['float']; } } else { delete st['float']; delete st['vertical-align']; } // Handle border v = f.border.value; if (v || v == '0') { if (v == '0') st['border'] = '0'; else st['border'] = v + 'px solid black'; } else delete st['border']; // Handle hspace v = f.hspace.value; if (v) { delete st['margin']; st['margin-left'] = v + 'px'; st['margin-right'] = v + 'px'; } else { delete st['margin-left']; delete st['margin-right']; } // Handle vspace v = f.vspace.value; if (v) { delete st['margin']; st['margin-top'] = v + 'px'; st['margin-bottom'] = v + 'px'; } else { delete st['margin-top']; delete st['margin-bottom']; } // Merge st = tinyMCEPopup.dom.parseStyle(dom.serializeStyle(st), 'img'); this.styleVal = dom.serializeStyle(st, 'img'); } }, getAttrib : function(e, at) { var ed = tinyMCEPopup.editor, dom = ed.dom, v, v2; if (ed.settings.inline_styles) { switch (at) { case 'align': if (v = dom.getStyle(e, 'float')) return v; if (v = dom.getStyle(e, 'vertical-align')) return v; break; case 'hspace': v = dom.getStyle(e, 'margin-left') v2 = dom.getStyle(e, 'margin-right'); if (v && v == v2) return parseInt(v.replace(/[^0-9]/g, '')); break; case 'vspace': v = dom.getStyle(e, 'margin-top') v2 = dom.getStyle(e, 'margin-bottom'); if (v && v == v2) return parseInt(v.replace(/[^0-9]/g, '')); break; case 'border': v = 0; tinymce.each(['top', 'right', 'bottom', 'left'], function(sv) { sv = dom.getStyle(e, 'border-' + sv + '-width'); // False or not the same as prev if (!sv || (sv != v && v !== 0)) { v = 0; return false; } if (sv) v = sv; }); if (v) return parseInt(v.replace(/[^0-9]/g, '')); break; } } if (v = dom.getAttrib(e, at)) return v; return ''; }, resetImageData : function() { var f = document.forms[0]; f.width.value = f.height.value = ""; }, updateImageData : function() { var f = document.forms[0], t = ImageDialog; if (f.width.value == "") f.width.value = t.preloadImg.width; if (f.height.value == "") f.height.value = t.preloadImg.height; }, getImageData : function() { var f = document.forms[0]; this.preloadImg = new Image(); this.preloadImg.onload = this.updateImageData; this.preloadImg.onerror = this.resetImageData; this.preloadImg.src = tinyMCEPopup.editor.documentBaseURI.toAbsolute(f.src.value); } }; ImageDialog.preInit(); tinyMCEPopup.onInit.add(ImageDialog.init, ImageDialog); assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/js/about.js000066600000004122152141651140021015 0ustar00tinyMCEPopup.requireLangPack(); function init() { var ed, tcont; tinyMCEPopup.resizeToInnerSize(); ed = tinyMCEPopup.editor; // Give FF some time window.setTimeout(insertHelpIFrame, 10); tcont = document.getElementById('plugintablecontainer'); document.getElementById('plugins_tab').style.display = 'none'; var html = ""; html += ''; html += ''; html += ''; html += ''; html += ''; html += ''; html += ''; html += ''; html += ''; tinymce.each(ed.plugins, function(p, n) { var info; if (!p.getInfo) return; html += ''; info = p.getInfo(); if (info.infourl != null && info.infourl != '') html += ''; else html += ''; if (info.authorurl != null && info.authorurl != '') html += ''; else html += ''; html += ''; html += ''; document.getElementById('plugins_tab').style.display = ''; }); html += ''; html += '
        ' + ed.getLang('advanced_dlg.about_plugin') + '' + ed.getLang('advanced_dlg.about_author') + '' + ed.getLang('advanced_dlg.about_version') + '
        ' + info.longname + '' + info.longname + '' + info.author + '' + info.author + '' + info.version + '
        '; tcont.innerHTML = html; tinyMCEPopup.dom.get('version').innerHTML = tinymce.majorVersion + "." + tinymce.minorVersion; tinyMCEPopup.dom.get('date').innerHTML = tinymce.releaseDate; } function insertHelpIFrame() { var html; if (tinyMCEPopup.getParam('docs_url')) { html = ''; document.getElementById('iframecontainer').innerHTML = html; document.getElementById('help_tab').style.display = 'block'; document.getElementById('help_tab').setAttribute("aria-hidden", "false"); } } tinyMCEPopup.onInit.add(init); assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/js/charmap.js000066600000036106152141651140021325 0ustar00/** * charmap.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ tinyMCEPopup.requireLangPack(); var charmap = [ [' ', ' ', true, 'no-break space'], ['&', '&', true, 'ampersand'], ['"', '"', true, 'quotation mark'], // finance ['¢', '¢', true, 'cent sign'], ['€', '€', true, 'euro sign'], ['£', '£', true, 'pound sign'], ['¥', '¥', true, 'yen sign'], // signs ['©', '©', true, 'copyright sign'], ['®', '®', true, 'registered sign'], ['™', '™', true, 'trade mark sign'], ['‰', '‰', true, 'per mille sign'], ['µ', 'µ', true, 'micro sign'], ['·', '·', true, 'middle dot'], ['•', '•', true, 'bullet'], ['…', '…', true, 'three dot leader'], ['′', '′', true, 'minutes / feet'], ['″', '″', true, 'seconds / inches'], ['§', '§', true, 'section sign'], ['¶', '¶', true, 'paragraph sign'], ['ß', 'ß', true, 'sharp s / ess-zed'], // quotations ['‹', '‹', true, 'single left-pointing angle quotation mark'], ['›', '›', true, 'single right-pointing angle quotation mark'], ['«', '«', true, 'left pointing guillemet'], ['»', '»', true, 'right pointing guillemet'], ['‘', '‘', true, 'left single quotation mark'], ['’', '’', true, 'right single quotation mark'], ['“', '“', true, 'left double quotation mark'], ['”', '”', true, 'right double quotation mark'], ['‚', '‚', true, 'single low-9 quotation mark'], ['„', '„', true, 'double low-9 quotation mark'], ['<', '<', true, 'less-than sign'], ['>', '>', true, 'greater-than sign'], ['≤', '≤', true, 'less-than or equal to'], ['≥', '≥', true, 'greater-than or equal to'], ['–', '–', true, 'en dash'], ['—', '—', true, 'em dash'], ['¯', '¯', true, 'macron'], ['‾', '‾', true, 'overline'], ['¤', '¤', true, 'currency sign'], ['¦', '¦', true, 'broken bar'], ['¨', '¨', true, 'diaeresis'], ['¡', '¡', true, 'inverted exclamation mark'], ['¿', '¿', true, 'turned question mark'], ['ˆ', 'ˆ', true, 'circumflex accent'], ['˜', '˜', true, 'small tilde'], ['°', '°', true, 'degree sign'], ['−', '−', true, 'minus sign'], ['±', '±', true, 'plus-minus sign'], ['÷', '÷', true, 'division sign'], ['⁄', '⁄', true, 'fraction slash'], ['×', '×', true, 'multiplication sign'], ['¹', '¹', true, 'superscript one'], ['²', '²', true, 'superscript two'], ['³', '³', true, 'superscript three'], ['¼', '¼', true, 'fraction one quarter'], ['½', '½', true, 'fraction one half'], ['¾', '¾', true, 'fraction three quarters'], // math / logical ['ƒ', 'ƒ', true, 'function / florin'], ['∫', '∫', true, 'integral'], ['∑', '∑', true, 'n-ary sumation'], ['∞', '∞', true, 'infinity'], ['√', '√', true, 'square root'], ['∼', '∼', false,'similar to'], ['≅', '≅', false,'approximately equal to'], ['≈', '≈', true, 'almost equal to'], ['≠', '≠', true, 'not equal to'], ['≡', '≡', true, 'identical to'], ['∈', '∈', false,'element of'], ['∉', '∉', false,'not an element of'], ['∋', '∋', false,'contains as member'], ['∏', '∏', true, 'n-ary product'], ['∧', '∧', false,'logical and'], ['∨', '∨', false,'logical or'], ['¬', '¬', true, 'not sign'], ['∩', '∩', true, 'intersection'], ['∪', '∪', false,'union'], ['∂', '∂', true, 'partial differential'], ['∀', '∀', false,'for all'], ['∃', '∃', false,'there exists'], ['∅', '∅', false,'diameter'], ['∇', '∇', false,'backward difference'], ['∗', '∗', false,'asterisk operator'], ['∝', '∝', false,'proportional to'], ['∠', '∠', false,'angle'], // undefined ['´', '´', true, 'acute accent'], ['¸', '¸', true, 'cedilla'], ['ª', 'ª', true, 'feminine ordinal indicator'], ['º', 'º', true, 'masculine ordinal indicator'], ['†', '†', true, 'dagger'], ['‡', '‡', true, 'double dagger'], // alphabetical special chars ['À', 'À', true, 'A - grave'], ['Á', 'Á', true, 'A - acute'], ['Â', 'Â', true, 'A - circumflex'], ['Ã', 'Ã', true, 'A - tilde'], ['Ä', 'Ä', true, 'A - diaeresis'], ['Å', 'Å', true, 'A - ring above'], ['Æ', 'Æ', true, 'ligature AE'], ['Ç', 'Ç', true, 'C - cedilla'], ['È', 'È', true, 'E - grave'], ['É', 'É', true, 'E - acute'], ['Ê', 'Ê', true, 'E - circumflex'], ['Ë', 'Ë', true, 'E - diaeresis'], ['Ì', 'Ì', true, 'I - grave'], ['Í', 'Í', true, 'I - acute'], ['Î', 'Î', true, 'I - circumflex'], ['Ï', 'Ï', true, 'I - diaeresis'], ['Ð', 'Ð', true, 'ETH'], ['Ñ', 'Ñ', true, 'N - tilde'], ['Ò', 'Ò', true, 'O - grave'], ['Ó', 'Ó', true, 'O - acute'], ['Ô', 'Ô', true, 'O - circumflex'], ['Õ', 'Õ', true, 'O - tilde'], ['Ö', 'Ö', true, 'O - diaeresis'], ['Ø', 'Ø', true, 'O - slash'], ['Œ', 'Œ', true, 'ligature OE'], ['Š', 'Š', true, 'S - caron'], ['Ù', 'Ù', true, 'U - grave'], ['Ú', 'Ú', true, 'U - acute'], ['Û', 'Û', true, 'U - circumflex'], ['Ü', 'Ü', true, 'U - diaeresis'], ['Ý', 'Ý', true, 'Y - acute'], ['Ÿ', 'Ÿ', true, 'Y - diaeresis'], ['Þ', 'Þ', true, 'THORN'], ['à', 'à', true, 'a - grave'], ['á', 'á', true, 'a - acute'], ['â', 'â', true, 'a - circumflex'], ['ã', 'ã', true, 'a - tilde'], ['ä', 'ä', true, 'a - diaeresis'], ['å', 'å', true, 'a - ring above'], ['æ', 'æ', true, 'ligature ae'], ['ç', 'ç', true, 'c - cedilla'], ['è', 'è', true, 'e - grave'], ['é', 'é', true, 'e - acute'], ['ê', 'ê', true, 'e - circumflex'], ['ë', 'ë', true, 'e - diaeresis'], ['ì', 'ì', true, 'i - grave'], ['í', 'í', true, 'i - acute'], ['î', 'î', true, 'i - circumflex'], ['ï', 'ï', true, 'i - diaeresis'], ['ð', 'ð', true, 'eth'], ['ñ', 'ñ', true, 'n - tilde'], ['ò', 'ò', true, 'o - grave'], ['ó', 'ó', true, 'o - acute'], ['ô', 'ô', true, 'o - circumflex'], ['õ', 'õ', true, 'o - tilde'], ['ö', 'ö', true, 'o - diaeresis'], ['ø', 'ø', true, 'o slash'], ['œ', 'œ', true, 'ligature oe'], ['š', 'š', true, 's - caron'], ['ù', 'ù', true, 'u - grave'], ['ú', 'ú', true, 'u - acute'], ['û', 'û', true, 'u - circumflex'], ['ü', 'ü', true, 'u - diaeresis'], ['ý', 'ý', true, 'y - acute'], ['þ', 'þ', true, 'thorn'], ['ÿ', 'ÿ', true, 'y - diaeresis'], ['Α', 'Α', true, 'Alpha'], ['Β', 'Β', true, 'Beta'], ['Γ', 'Γ', true, 'Gamma'], ['Δ', 'Δ', true, 'Delta'], ['Ε', 'Ε', true, 'Epsilon'], ['Ζ', 'Ζ', true, 'Zeta'], ['Η', 'Η', true, 'Eta'], ['Θ', 'Θ', true, 'Theta'], ['Ι', 'Ι', true, 'Iota'], ['Κ', 'Κ', true, 'Kappa'], ['Λ', 'Λ', true, 'Lambda'], ['Μ', 'Μ', true, 'Mu'], ['Ν', 'Ν', true, 'Nu'], ['Ξ', 'Ξ', true, 'Xi'], ['Ο', 'Ο', true, 'Omicron'], ['Π', 'Π', true, 'Pi'], ['Ρ', 'Ρ', true, 'Rho'], ['Σ', 'Σ', true, 'Sigma'], ['Τ', 'Τ', true, 'Tau'], ['Υ', 'Υ', true, 'Upsilon'], ['Φ', 'Φ', true, 'Phi'], ['Χ', 'Χ', true, 'Chi'], ['Ψ', 'Ψ', true, 'Psi'], ['Ω', 'Ω', true, 'Omega'], ['α', 'α', true, 'alpha'], ['β', 'β', true, 'beta'], ['γ', 'γ', true, 'gamma'], ['δ', 'δ', true, 'delta'], ['ε', 'ε', true, 'epsilon'], ['ζ', 'ζ', true, 'zeta'], ['η', 'η', true, 'eta'], ['θ', 'θ', true, 'theta'], ['ι', 'ι', true, 'iota'], ['κ', 'κ', true, 'kappa'], ['λ', 'λ', true, 'lambda'], ['μ', 'μ', true, 'mu'], ['ν', 'ν', true, 'nu'], ['ξ', 'ξ', true, 'xi'], ['ο', 'ο', true, 'omicron'], ['π', 'π', true, 'pi'], ['ρ', 'ρ', true, 'rho'], ['ς', 'ς', true, 'final sigma'], ['σ', 'σ', true, 'sigma'], ['τ', 'τ', true, 'tau'], ['υ', 'υ', true, 'upsilon'], ['φ', 'φ', true, 'phi'], ['χ', 'χ', true, 'chi'], ['ψ', 'ψ', true, 'psi'], ['ω', 'ω', true, 'omega'], // symbols ['ℵ', 'ℵ', false,'alef symbol'], ['ϖ', 'ϖ', false,'pi symbol'], ['ℜ', 'ℜ', false,'real part symbol'], ['ϑ','ϑ', false,'theta symbol'], ['ϒ', 'ϒ', false,'upsilon - hook symbol'], ['℘', '℘', false,'Weierstrass p'], ['ℑ', 'ℑ', false,'imaginary part'], // arrows ['←', '←', true, 'leftwards arrow'], ['↑', '↑', true, 'upwards arrow'], ['→', '→', true, 'rightwards arrow'], ['↓', '↓', true, 'downwards arrow'], ['↔', '↔', true, 'left right arrow'], ['↵', '↵', false,'carriage return'], ['⇐', '⇐', false,'leftwards double arrow'], ['⇑', '⇑', false,'upwards double arrow'], ['⇒', '⇒', false,'rightwards double arrow'], ['⇓', '⇓', false,'downwards double arrow'], ['⇔', '⇔', false,'left right double arrow'], ['∴', '∴', false,'therefore'], ['⊂', '⊂', false,'subset of'], ['⊃', '⊃', false,'superset of'], ['⊄', '⊄', false,'not a subset of'], ['⊆', '⊆', false,'subset of or equal to'], ['⊇', '⊇', false,'superset of or equal to'], ['⊕', '⊕', false,'circled plus'], ['⊗', '⊗', false,'circled times'], ['⊥', '⊥', false,'perpendicular'], ['⋅', '⋅', false,'dot operator'], ['⌈', '⌈', false,'left ceiling'], ['⌉', '⌉', false,'right ceiling'], ['⌊', '⌊', false,'left floor'], ['⌋', '⌋', false,'right floor'], ['⟨', '〈', false,'left-pointing angle bracket'], ['⟩', '〉', false,'right-pointing angle bracket'], ['◊', '◊', true, 'lozenge'], ['♠', '♠', true, 'black spade suit'], ['♣', '♣', true, 'black club suit'], ['♥', '♥', true, 'black heart suit'], ['♦', '♦', true, 'black diamond suit'], [' ', ' ', false,'en space'], [' ', ' ', false,'em space'], [' ', ' ', false,'thin space'], ['‌', '‌', false,'zero width non-joiner'], ['‍', '‍', false,'zero width joiner'], ['‎', '‎', false,'left-to-right mark'], ['‏', '‏', false,'right-to-left mark'], ['­', '­', false,'soft hyphen'] ]; tinyMCEPopup.onInit.add(function() { tinyMCEPopup.dom.setHTML('charmapView', renderCharMapHTML()); addKeyboardNavigation(); }); function addKeyboardNavigation(){ var tableElm, cells, settings; cells = tinyMCEPopup.dom.select("a.charmaplink", "charmapgroup"); settings ={ root: "charmapgroup", items: cells }; cells[0].tabindex=0; tinyMCEPopup.dom.addClass(cells[0], "mceFocus"); if (tinymce.isGecko) { cells[0].focus(); } else { setTimeout(function(){ cells[0].focus(); }, 100); } tinyMCEPopup.editor.windowManager.createInstance('tinymce.ui.KeyboardNavigation', settings, tinyMCEPopup.dom); } function renderCharMapHTML() { var charsPerRow = 20, tdWidth=20, tdHeight=20, i; var html = '
        '+ ''; var cols=-1; for (i=0; i' + '' + charmap[i][1] + ''; if ((cols+1) % charsPerRow == 0) html += ''; } } if (cols % charsPerRow > 0) { var padd = charsPerRow - (cols % charsPerRow); for (var i=0; i '; } html += '
        '; html = html.replace(/<\/tr>/g, ''); return html; } function insertChar(chr) { tinyMCEPopup.execCommand('mceInsertContent', false, '&#' + chr + ';'); // Refocus in window if (tinyMCEPopup.isWindow) window.focus(); tinyMCEPopup.editor.focus(); tinyMCEPopup.close(); } function previewChar(codeA, codeB, codeN) { var elmA = document.getElementById('codeA'); var elmB = document.getElementById('codeB'); var elmV = document.getElementById('codeV'); var elmN = document.getElementById('codeN'); if (codeA=='#160;') { elmV.innerHTML = '__'; } else { elmV.innerHTML = '&' + codeA; } elmB.innerHTML = '&' + codeA; elmA.innerHTML = '&' + codeB; elmN.innerHTML = codeN; } assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/js/link.js000066600000011264152141651140020645 0ustar00tinyMCEPopup.requireLangPack(); var LinkDialog = { preInit : function() { var url; if (url = tinyMCEPopup.getParam("external_link_list_url")) document.write(''); }, init : function() { var f = document.forms[0], ed = tinyMCEPopup.editor; // Setup browse button document.getElementById('hrefbrowsercontainer').innerHTML = getBrowserHTML('hrefbrowser', 'href', 'file', 'theme_advanced_link'); if (isVisible('hrefbrowser')) document.getElementById('href').style.width = '180px'; this.fillClassList('class_list'); this.fillFileList('link_list', 'tinyMCELinkList'); this.fillTargetList('target_list'); if (e = ed.dom.getParent(ed.selection.getNode(), 'A')) { f.href.value = ed.dom.getAttrib(e, 'href'); f.linktitle.value = ed.dom.getAttrib(e, 'title'); f.insert.value = ed.getLang('update'); selectByValue(f, 'link_list', f.href.value); selectByValue(f, 'target_list', ed.dom.getAttrib(e, 'target')); selectByValue(f, 'class_list', ed.dom.getAttrib(e, 'class')); } }, update : function() { var f = document.forms[0], ed = tinyMCEPopup.editor, e, b, href = f.href.value.replace(/ /g, '%20'); tinyMCEPopup.restoreSelection(); e = ed.dom.getParent(ed.selection.getNode(), 'A'); // Remove element if there is no href if (!f.href.value) { if (e) { b = ed.selection.getBookmark(); ed.dom.remove(e, 1); ed.selection.moveToBookmark(b); tinyMCEPopup.execCommand("mceEndUndoLevel"); tinyMCEPopup.close(); return; } } // Create new anchor elements if (e == null) { ed.getDoc().execCommand("unlink", false, null); tinyMCEPopup.execCommand("mceInsertLink", false, "#mce_temp_url#", {skip_undo : 1}); tinymce.each(ed.dom.select("a"), function(n) { if (ed.dom.getAttrib(n, 'href') == '#mce_temp_url#') { e = n; ed.dom.setAttribs(e, { href : href, title : f.linktitle.value, target : f.target_list ? getSelectValue(f, "target_list") : null, 'class' : f.class_list ? getSelectValue(f, "class_list") : null }); } }); } else { ed.dom.setAttribs(e, { href : href, title : f.linktitle.value }); if (f.target_list) { ed.dom.setAttrib(e, 'target', getSelectValue(f, "target_list")); } if (f.class_list) { ed.dom.setAttrib(e, 'class', getSelectValue(f, "class_list")); } } // Don't move caret if selection was image if (e.childNodes.length != 1 || e.firstChild.nodeName != 'IMG') { ed.focus(); ed.selection.select(e); ed.selection.collapse(0); tinyMCEPopup.storeSelection(); } tinyMCEPopup.execCommand("mceEndUndoLevel"); tinyMCEPopup.close(); }, checkPrefix : function(n) { if (n.value && Validator.isEmail(n) && !/^\s*mailto:/i.test(n.value) && confirm(tinyMCEPopup.getLang('advanced_dlg.link_is_email'))) n.value = 'mailto:' + n.value; if (/^\s*www\./i.test(n.value) && confirm(tinyMCEPopup.getLang('advanced_dlg.link_is_external'))) n.value = 'http://' + n.value; }, fillFileList : function(id, l) { var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl; l = window[l]; if (l && l.length > 0) { lst.options[lst.options.length] = new Option('', ''); tinymce.each(l, function(o) { lst.options[lst.options.length] = new Option(o[0], o[1]); }); } else dom.remove(dom.getParent(id, 'tr')); }, fillClassList : function(id) { var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl; if (v = tinyMCEPopup.getParam('theme_advanced_styles')) { cl = []; tinymce.each(v.split(';'), function(v) { var p = v.split('='); cl.push({'title' : p[0], 'class' : p[1]}); }); } else cl = tinyMCEPopup.editor.dom.getClasses(); if (cl.length > 0) { lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang('not_set'), ''); tinymce.each(cl, function(o) { lst.options[lst.options.length] = new Option(o.title || o['class'], o['class']); }); } else dom.remove(dom.getParent(id, 'tr')); }, fillTargetList : function(id) { var dom = tinyMCEPopup.dom, lst = dom.get(id), v; lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang('not_set'), ''); lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang('advanced_dlg.link_target_same'), '_self'); lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang('advanced_dlg.link_target_blank'), '_blank'); if (v = tinyMCEPopup.getParam('theme_advanced_link_targets')) { tinymce.each(v.split(','), function(v) { v = v.split('='); lst.options[lst.options.length] = new Option(v[0], v[1]); }); } } }; LinkDialog.preInit(); tinyMCEPopup.onInit.add(LinkDialog.init, LinkDialog); assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/js/color_picker.js000066600000033606152141651140022367 0ustar00tinyMCEPopup.requireLangPack(); var detail = 50, strhex = "0123456789abcdef", i, isMouseDown = false, isMouseOver = false; var colors = [ "#000000","#000033","#000066","#000099","#0000cc","#0000ff","#330000","#330033", "#330066","#330099","#3300cc","#3300ff","#660000","#660033","#660066","#660099", "#6600cc","#6600ff","#990000","#990033","#990066","#990099","#9900cc","#9900ff", "#cc0000","#cc0033","#cc0066","#cc0099","#cc00cc","#cc00ff","#ff0000","#ff0033", "#ff0066","#ff0099","#ff00cc","#ff00ff","#003300","#003333","#003366","#003399", "#0033cc","#0033ff","#333300","#333333","#333366","#333399","#3333cc","#3333ff", "#663300","#663333","#663366","#663399","#6633cc","#6633ff","#993300","#993333", "#993366","#993399","#9933cc","#9933ff","#cc3300","#cc3333","#cc3366","#cc3399", "#cc33cc","#cc33ff","#ff3300","#ff3333","#ff3366","#ff3399","#ff33cc","#ff33ff", "#006600","#006633","#006666","#006699","#0066cc","#0066ff","#336600","#336633", "#336666","#336699","#3366cc","#3366ff","#666600","#666633","#666666","#666699", "#6666cc","#6666ff","#996600","#996633","#996666","#996699","#9966cc","#9966ff", "#cc6600","#cc6633","#cc6666","#cc6699","#cc66cc","#cc66ff","#ff6600","#ff6633", "#ff6666","#ff6699","#ff66cc","#ff66ff","#009900","#009933","#009966","#009999", "#0099cc","#0099ff","#339900","#339933","#339966","#339999","#3399cc","#3399ff", "#669900","#669933","#669966","#669999","#6699cc","#6699ff","#999900","#999933", "#999966","#999999","#9999cc","#9999ff","#cc9900","#cc9933","#cc9966","#cc9999", "#cc99cc","#cc99ff","#ff9900","#ff9933","#ff9966","#ff9999","#ff99cc","#ff99ff", "#00cc00","#00cc33","#00cc66","#00cc99","#00cccc","#00ccff","#33cc00","#33cc33", "#33cc66","#33cc99","#33cccc","#33ccff","#66cc00","#66cc33","#66cc66","#66cc99", "#66cccc","#66ccff","#99cc00","#99cc33","#99cc66","#99cc99","#99cccc","#99ccff", "#cccc00","#cccc33","#cccc66","#cccc99","#cccccc","#ccccff","#ffcc00","#ffcc33", "#ffcc66","#ffcc99","#ffcccc","#ffccff","#00ff00","#00ff33","#00ff66","#00ff99", "#00ffcc","#00ffff","#33ff00","#33ff33","#33ff66","#33ff99","#33ffcc","#33ffff", "#66ff00","#66ff33","#66ff66","#66ff99","#66ffcc","#66ffff","#99ff00","#99ff33", "#99ff66","#99ff99","#99ffcc","#99ffff","#ccff00","#ccff33","#ccff66","#ccff99", "#ccffcc","#ccffff","#ffff00","#ffff33","#ffff66","#ffff99","#ffffcc","#ffffff" ]; var named = { '#F0F8FF':'Alice Blue','#FAEBD7':'Antique White','#00FFFF':'Aqua','#7FFFD4':'Aquamarine','#F0FFFF':'Azure','#F5F5DC':'Beige', '#FFE4C4':'Bisque','#000000':'Black','#FFEBCD':'Blanched Almond','#0000FF':'Blue','#8A2BE2':'Blue Violet','#A52A2A':'Brown', '#DEB887':'Burly Wood','#5F9EA0':'Cadet Blue','#7FFF00':'Chartreuse','#D2691E':'Chocolate','#FF7F50':'Coral','#6495ED':'Cornflower Blue', '#FFF8DC':'Cornsilk','#DC143C':'Crimson','#00FFFF':'Cyan','#00008B':'Dark Blue','#008B8B':'Dark Cyan','#B8860B':'Dark Golden Rod', '#A9A9A9':'Dark Gray','#A9A9A9':'Dark Grey','#006400':'Dark Green','#BDB76B':'Dark Khaki','#8B008B':'Dark Magenta','#556B2F':'Dark Olive Green', '#FF8C00':'Darkorange','#9932CC':'Dark Orchid','#8B0000':'Dark Red','#E9967A':'Dark Salmon','#8FBC8F':'Dark Sea Green','#483D8B':'Dark Slate Blue', '#2F4F4F':'Dark Slate Gray','#2F4F4F':'Dark Slate Grey','#00CED1':'Dark Turquoise','#9400D3':'Dark Violet','#FF1493':'Deep Pink','#00BFFF':'Deep Sky Blue', '#696969':'Dim Gray','#696969':'Dim Grey','#1E90FF':'Dodger Blue','#B22222':'Fire Brick','#FFFAF0':'Floral White','#228B22':'Forest Green', '#FF00FF':'Fuchsia','#DCDCDC':'Gainsboro','#F8F8FF':'Ghost White','#FFD700':'Gold','#DAA520':'Golden Rod','#808080':'Gray','#808080':'Grey', '#008000':'Green','#ADFF2F':'Green Yellow','#F0FFF0':'Honey Dew','#FF69B4':'Hot Pink','#CD5C5C':'Indian Red','#4B0082':'Indigo','#FFFFF0':'Ivory', '#F0E68C':'Khaki','#E6E6FA':'Lavender','#FFF0F5':'Lavender Blush','#7CFC00':'Lawn Green','#FFFACD':'Lemon Chiffon','#ADD8E6':'Light Blue', '#F08080':'Light Coral','#E0FFFF':'Light Cyan','#FAFAD2':'Light Golden Rod Yellow','#D3D3D3':'Light Gray','#D3D3D3':'Light Grey','#90EE90':'Light Green', '#FFB6C1':'Light Pink','#FFA07A':'Light Salmon','#20B2AA':'Light Sea Green','#87CEFA':'Light Sky Blue','#778899':'Light Slate Gray','#778899':'Light Slate Grey', '#B0C4DE':'Light Steel Blue','#FFFFE0':'Light Yellow','#00FF00':'Lime','#32CD32':'Lime Green','#FAF0E6':'Linen','#FF00FF':'Magenta','#800000':'Maroon', '#66CDAA':'Medium Aqua Marine','#0000CD':'Medium Blue','#BA55D3':'Medium Orchid','#9370D8':'Medium Purple','#3CB371':'Medium Sea Green','#7B68EE':'Medium Slate Blue', '#00FA9A':'Medium Spring Green','#48D1CC':'Medium Turquoise','#C71585':'Medium Violet Red','#191970':'Midnight Blue','#F5FFFA':'Mint Cream','#FFE4E1':'Misty Rose','#FFE4B5':'Moccasin', '#FFDEAD':'Navajo White','#000080':'Navy','#FDF5E6':'Old Lace','#808000':'Olive','#6B8E23':'Olive Drab','#FFA500':'Orange','#FF4500':'Orange Red','#DA70D6':'Orchid', '#EEE8AA':'Pale Golden Rod','#98FB98':'Pale Green','#AFEEEE':'Pale Turquoise','#D87093':'Pale Violet Red','#FFEFD5':'Papaya Whip','#FFDAB9':'Peach Puff', '#CD853F':'Peru','#FFC0CB':'Pink','#DDA0DD':'Plum','#B0E0E6':'Powder Blue','#800080':'Purple','#FF0000':'Red','#BC8F8F':'Rosy Brown','#4169E1':'Royal Blue', '#8B4513':'Saddle Brown','#FA8072':'Salmon','#F4A460':'Sandy Brown','#2E8B57':'Sea Green','#FFF5EE':'Sea Shell','#A0522D':'Sienna','#C0C0C0':'Silver', '#87CEEB':'Sky Blue','#6A5ACD':'Slate Blue','#708090':'Slate Gray','#708090':'Slate Grey','#FFFAFA':'Snow','#00FF7F':'Spring Green', '#4682B4':'Steel Blue','#D2B48C':'Tan','#008080':'Teal','#D8BFD8':'Thistle','#FF6347':'Tomato','#40E0D0':'Turquoise','#EE82EE':'Violet', '#F5DEB3':'Wheat','#FFFFFF':'White','#F5F5F5':'White Smoke','#FFFF00':'Yellow','#9ACD32':'Yellow Green' }; var namedLookup = {}; function init() { var inputColor = convertRGBToHex(tinyMCEPopup.getWindowArg('input_color')), key, value; tinyMCEPopup.resizeToInnerSize(); generatePicker(); generateWebColors(); generateNamedColors(); if (inputColor) { changeFinalColor(inputColor); col = convertHexToRGB(inputColor); if (col) updateLight(col.r, col.g, col.b); } for (key in named) { value = named[key]; namedLookup[value.replace(/\s+/, '').toLowerCase()] = key.replace(/#/, '').toLowerCase(); } } function toHexColor(color) { var matches, red, green, blue, toInt = parseInt; function hex(value) { value = parseInt(value).toString(16); return value.length > 1 ? value : '0' + value; // Padd with leading zero }; color = tinymce.trim(color); color = color.replace(/^[#]/, '').toLowerCase(); // remove leading '#' color = namedLookup[color] || color; matches = /^rgb\((\d{1,3}),(\d{1,3}),(\d{1,3})\)$/.exec(color); if (matches) { red = toInt(matches[1]); green = toInt(matches[2]); blue = toInt(matches[3]); } else { matches = /^([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/.exec(color); if (matches) { red = toInt(matches[1], 16); green = toInt(matches[2], 16); blue = toInt(matches[3], 16); } else { matches = /^([0-9a-f])([0-9a-f])([0-9a-f])$/.exec(color); if (matches) { red = toInt(matches[1] + matches[1], 16); green = toInt(matches[2] + matches[2], 16); blue = toInt(matches[3] + matches[3], 16); } else { return ''; } } } return '#' + hex(red) + hex(green) + hex(blue); } function insertAction() { var color = document.getElementById("color").value, f = tinyMCEPopup.getWindowArg('func'); var hexColor = toHexColor(color); if (hexColor === '') { var text = tinyMCEPopup.editor.getLang('advanced_dlg.invalid_color_value'); tinyMCEPopup.alert(text + ': ' + color); } else { tinyMCEPopup.restoreSelection(); if (f) f(hexColor); tinyMCEPopup.close(); } } function showColor(color, name) { if (name) document.getElementById("colorname").innerHTML = name; document.getElementById("preview").style.backgroundColor = color; document.getElementById("color").value = color.toUpperCase(); } function convertRGBToHex(col) { var re = new RegExp("rgb\\s*\\(\\s*([0-9]+).*,\\s*([0-9]+).*,\\s*([0-9]+).*\\)", "gi"); if (!col) return col; var rgb = col.replace(re, "$1,$2,$3").split(','); if (rgb.length == 3) { r = parseInt(rgb[0]).toString(16); g = parseInt(rgb[1]).toString(16); b = parseInt(rgb[2]).toString(16); r = r.length == 1 ? '0' + r : r; g = g.length == 1 ? '0' + g : g; b = b.length == 1 ? '0' + b : b; return "#" + r + g + b; } return col; } function convertHexToRGB(col) { if (col.indexOf('#') != -1) { col = col.replace(new RegExp('[^0-9A-F]', 'gi'), ''); r = parseInt(col.substring(0, 2), 16); g = parseInt(col.substring(2, 4), 16); b = parseInt(col.substring(4, 6), 16); return {r : r, g : g, b : b}; } return null; } function generatePicker() { var el = document.getElementById('light'), h = '', i; for (i = 0; i < detail; i++){ h += '
        '; } el.innerHTML = h; } function generateWebColors() { var el = document.getElementById('webcolors'), h = '', i; if (el.className == 'generated') return; // TODO: VoiceOver doesn't seem to support legend as a label referenced by labelledby. h += ''; el.innerHTML = h; el.className = 'generated'; paintCanvas(el); enableKeyboardNavigation(el.firstChild); } function paintCanvas(el) { tinyMCEPopup.getWin().tinymce.each(tinyMCEPopup.dom.select('canvas.mceColorSwatch', el), function(canvas) { var context; if (canvas.getContext && (context = canvas.getContext("2d"))) { context.fillStyle = canvas.getAttribute('data-color'); context.fillRect(0, 0, 10, 10); } }); } function generateNamedColors() { var el = document.getElementById('namedcolors'), h = '', n, v, i = 0; if (el.className == 'generated') return; for (n in named) { v = named[n]; h += ''; if (tinyMCEPopup.editor.forcedHighContrastMode) { h += ''; } h += ''; h += ''; i++; } el.innerHTML = h; el.className = 'generated'; paintCanvas(el); enableKeyboardNavigation(el); } function enableKeyboardNavigation(el) { tinyMCEPopup.editor.windowManager.createInstance('tinymce.ui.KeyboardNavigation', { root: el, items: tinyMCEPopup.dom.select('a', el) }, tinyMCEPopup.dom); } function dechex(n) { return strhex.charAt(Math.floor(n / 16)) + strhex.charAt(n % 16); } function computeColor(e) { var x, y, partWidth, partDetail, imHeight, r, g, b, coef, i, finalCoef, finalR, finalG, finalB, pos = tinyMCEPopup.dom.getPos(e.target); x = e.offsetX ? e.offsetX : (e.target ? e.clientX - pos.x : 0); y = e.offsetY ? e.offsetY : (e.target ? e.clientY - pos.y : 0); partWidth = document.getElementById('colors').width / 6; partDetail = detail / 2; imHeight = document.getElementById('colors').height; r = (x >= 0)*(x < partWidth)*255 + (x >= partWidth)*(x < 2*partWidth)*(2*255 - x * 255 / partWidth) + (x >= 4*partWidth)*(x < 5*partWidth)*(-4*255 + x * 255 / partWidth) + (x >= 5*partWidth)*(x < 6*partWidth)*255; g = (x >= 0)*(x < partWidth)*(x * 255 / partWidth) + (x >= partWidth)*(x < 3*partWidth)*255 + (x >= 3*partWidth)*(x < 4*partWidth)*(4*255 - x * 255 / partWidth); b = (x >= 2*partWidth)*(x < 3*partWidth)*(-2*255 + x * 255 / partWidth) + (x >= 3*partWidth)*(x < 5*partWidth)*255 + (x >= 5*partWidth)*(x < 6*partWidth)*(6*255 - x * 255 / partWidth); coef = (imHeight - y) / imHeight; r = 128 + (r - 128) * coef; g = 128 + (g - 128) * coef; b = 128 + (b - 128) * coef; changeFinalColor('#' + dechex(r) + dechex(g) + dechex(b)); updateLight(r, g, b); } function updateLight(r, g, b) { var i, partDetail = detail / 2, finalCoef, finalR, finalG, finalB, color; for (i=0; i=0) && (i {#advanced_dlg.accessibility_help}

        {#advanced_dlg.accessibility_usage_title}

        Toolbars

        Press ALT-F10 to move focus to the toolbars. Navigate through the buttons using the arrow keys. Press enter to activate a button and return focus to the editor. Press escape to return focus to the editor without performing any actions.

        Status Bar

        To access the editor status bar, press ALT-F11. Use the left and right arrow keys to navigate between elements in the path. Press enter or space to select an element. Press escape to return focus to the editor without changing the selection.

        Context Menu

        Press shift-F10 to activate the context menu. Use the up and down arrow keys to move between menu items. To open sub-menus press the right arrow key. To close submenus press the left arrow key. Press escape to close the context menu.

        Keyboard Shortcuts

        Keystroke Function
        Control-BBold
        Control-IItalic
        Control-ZUndo
        Control-YRedo
        assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/editor_template_src.js000066600000121650152141651140023325 0ustar00/** * editor_template_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function(tinymce) { var DOM = tinymce.DOM, Event = tinymce.dom.Event, extend = tinymce.extend, each = tinymce.each, Cookie = tinymce.util.Cookie, lastExtID, explode = tinymce.explode; // Generates a preview for a format function getPreviewCss(ed, fmt) { var previewElm, dom = ed.dom, previewCss = '', parentFontSize, previewStylesName; previewStyles = ed.settings.preview_styles; // No preview forced if (previewStyles === false) return ''; // Default preview if (!previewStyles) previewStyles = 'font-family font-size font-weight text-decoration text-transform color background-color'; // Removes any variables since these can't be previewed function removeVars(val) { return val.replace(/%(\w+)/g, ''); }; // Create block/inline element to use for preview name = fmt.block || fmt.inline || 'span'; previewElm = dom.create(name); // Add format styles to preview element each(fmt.styles, function(value, name) { value = removeVars(value); if (value) dom.setStyle(previewElm, name, value); }); // Add attributes to preview element each(fmt.attributes, function(value, name) { value = removeVars(value); if (value) dom.setAttrib(previewElm, name, value); }); // Add classes to preview element each(fmt.classes, function(value) { value = removeVars(value); if (!dom.hasClass(previewElm, value)) dom.addClass(previewElm, value); }); // Add the previewElm outside the visual area dom.setStyles(previewElm, {position: 'absolute', left: -0xFFFF}); ed.getBody().appendChild(previewElm); // Get parent container font size so we can compute px values out of em/% for older IE:s parentFontSize = dom.getStyle(ed.getBody(), 'fontSize', true); parentFontSize = /px$/.test(parentFontSize) ? parseInt(parentFontSize, 10) : 0; each(previewStyles.split(' '), function(name) { var value = dom.getStyle(previewElm, name, true); // If background is transparent then check if the body has a background color we can use if (name == 'background-color' && /transparent|rgba\s*\([^)]+,\s*0\)/.test(value)) { value = dom.getStyle(ed.getBody(), name, true); // Ignore white since it's the default color, not the nicest fix if (dom.toHex(value).toLowerCase() == '#ffffff') { return; } } // Old IE won't calculate the font size so we need to do that manually if (name == 'font-size') { if (/em|%$/.test(value)) { if (parentFontSize === 0) { return; } // Convert font size from em/% to px value = parseFloat(value, 10) / (/%$/.test(value) ? 100 : 1); value = (value * parentFontSize) + 'px'; } } previewCss += name + ':' + value + ';'; }); dom.remove(previewElm); return previewCss; }; // Tell it to load theme specific language pack(s) tinymce.ThemeManager.requireLangPack('advanced'); tinymce.create('tinymce.themes.AdvancedTheme', { sizes : [8, 10, 12, 14, 18, 24, 36], // Control name lookup, format: title, command controls : { bold : ['bold_desc', 'Bold'], italic : ['italic_desc', 'Italic'], underline : ['underline_desc', 'Underline'], strikethrough : ['striketrough_desc', 'Strikethrough'], justifyleft : ['justifyleft_desc', 'JustifyLeft'], justifycenter : ['justifycenter_desc', 'JustifyCenter'], justifyright : ['justifyright_desc', 'JustifyRight'], justifyfull : ['justifyfull_desc', 'JustifyFull'], bullist : ['bullist_desc', 'InsertUnorderedList'], numlist : ['numlist_desc', 'InsertOrderedList'], outdent : ['outdent_desc', 'Outdent'], indent : ['indent_desc', 'Indent'], cut : ['cut_desc', 'Cut'], copy : ['copy_desc', 'Copy'], paste : ['paste_desc', 'Paste'], undo : ['undo_desc', 'Undo'], redo : ['redo_desc', 'Redo'], link : ['link_desc', 'mceLink'], unlink : ['unlink_desc', 'unlink'], image : ['image_desc', 'mceImage'], cleanup : ['cleanup_desc', 'mceCleanup'], help : ['help_desc', 'mceHelp'], code : ['code_desc', 'mceCodeEditor'], hr : ['hr_desc', 'InsertHorizontalRule'], removeformat : ['removeformat_desc', 'RemoveFormat'], sub : ['sub_desc', 'subscript'], sup : ['sup_desc', 'superscript'], forecolor : ['forecolor_desc', 'ForeColor'], forecolorpicker : ['forecolor_desc', 'mceForeColor'], backcolor : ['backcolor_desc', 'HiliteColor'], backcolorpicker : ['backcolor_desc', 'mceBackColor'], charmap : ['charmap_desc', 'mceCharMap'], visualaid : ['visualaid_desc', 'mceToggleVisualAid'], anchor : ['anchor_desc', 'mceInsertAnchor'], newdocument : ['newdocument_desc', 'mceNewDocument'], blockquote : ['blockquote_desc', 'mceBlockQuote'] }, stateControls : ['bold', 'italic', 'underline', 'strikethrough', 'bullist', 'numlist', 'justifyleft', 'justifycenter', 'justifyright', 'justifyfull', 'sub', 'sup', 'blockquote'], init : function(ed, url) { var t = this, s, v, o; t.editor = ed; t.url = url; t.onResolveName = new tinymce.util.Dispatcher(this); s = ed.settings; ed.forcedHighContrastMode = ed.settings.detect_highcontrast && t._isHighContrast(); ed.settings.skin = ed.forcedHighContrastMode ? 'highcontrast' : ed.settings.skin; // Setup default buttons if (!s.theme_advanced_buttons1) { s = extend({ theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect", theme_advanced_buttons2 : "bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code", theme_advanced_buttons3 : "hr,removeformat,visualaid,|,sub,sup,|,charmap" }, s); } // Default settings t.settings = s = extend({ theme_advanced_path : true, theme_advanced_toolbar_location : 'top', theme_advanced_blockformats : "p,address,pre,h1,h2,h3,h4,h5,h6", theme_advanced_toolbar_align : "left", theme_advanced_statusbar_location : "bottom", theme_advanced_fonts : "Andale Mono=andale mono,times;Arial=arial,helvetica,sans-serif;Arial Black=arial black,avant garde;Book Antiqua=book antiqua,palatino;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier;Georgia=georgia,palatino;Helvetica=helvetica;Impact=impact,chicago;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco;Times New Roman=times new roman,times;Trebuchet MS=trebuchet ms,geneva;Verdana=verdana,geneva;Webdings=webdings;Wingdings=wingdings,zapf dingbats", theme_advanced_more_colors : 1, theme_advanced_row_height : 23, theme_advanced_resize_horizontal : 1, theme_advanced_resizing_use_cookie : 1, theme_advanced_font_sizes : "1,2,3,4,5,6,7", theme_advanced_font_selector : "span", theme_advanced_show_current_color: 0, readonly : ed.settings.readonly }, s); // Setup default font_size_style_values if (!s.font_size_style_values) s.font_size_style_values = "8pt,10pt,12pt,14pt,18pt,24pt,36pt"; if (tinymce.is(s.theme_advanced_font_sizes, 'string')) { s.font_size_style_values = tinymce.explode(s.font_size_style_values); s.font_size_classes = tinymce.explode(s.font_size_classes || ''); // Parse string value o = {}; ed.settings.theme_advanced_font_sizes = s.theme_advanced_font_sizes; each(ed.getParam('theme_advanced_font_sizes', '', 'hash'), function(v, k) { var cl; if (k == v && v >= 1 && v <= 7) { k = v + ' (' + t.sizes[v - 1] + 'pt)'; cl = s.font_size_classes[v - 1]; v = s.font_size_style_values[v - 1] || (t.sizes[v - 1] + 'pt'); } if (/^\s*\./.test(v)) cl = v.replace(/\./g, ''); o[k] = cl ? {'class' : cl} : {fontSize : v}; }); s.theme_advanced_font_sizes = o; } if ((v = s.theme_advanced_path_location) && v != 'none') s.theme_advanced_statusbar_location = s.theme_advanced_path_location; if (s.theme_advanced_statusbar_location == 'none') s.theme_advanced_statusbar_location = 0; if (ed.settings.content_css !== false) ed.contentCSS.push(ed.baseURI.toAbsolute(url + "/skins/" + ed.settings.skin + "/content.css")); // Init editor ed.onInit.add(function() { if (!ed.settings.readonly) { ed.onNodeChange.add(t._nodeChanged, t); ed.onKeyUp.add(t._updateUndoStatus, t); ed.onMouseUp.add(t._updateUndoStatus, t); ed.dom.bind(ed.dom.getRoot(), 'dragend', function() { t._updateUndoStatus(ed); }); } }); ed.onSetProgressState.add(function(ed, b, ti) { var co, id = ed.id, tb; if (b) { t.progressTimer = setTimeout(function() { co = ed.getContainer(); co = co.insertBefore(DOM.create('DIV', {style : 'position:relative'}), co.firstChild); tb = DOM.get(ed.id + '_tbl'); DOM.add(co, 'div', {id : id + '_blocker', 'class' : 'mceBlocker', style : {width : tb.clientWidth + 2, height : tb.clientHeight + 2}}); DOM.add(co, 'div', {id : id + '_progress', 'class' : 'mceProgress', style : {left : tb.clientWidth / 2, top : tb.clientHeight / 2}}); }, ti || 0); } else { DOM.remove(id + '_blocker'); DOM.remove(id + '_progress'); clearTimeout(t.progressTimer); } }); DOM.loadCSS(s.editor_css ? ed.documentBaseURI.toAbsolute(s.editor_css) : url + "/skins/" + ed.settings.skin + "/ui.css"); if (s.skin_variant) DOM.loadCSS(url + "/skins/" + ed.settings.skin + "/ui_" + s.skin_variant + ".css"); }, _isHighContrast : function() { var actualColor, div = DOM.add(DOM.getRoot(), 'div', {'style': 'background-color: rgb(171,239,86);'}); actualColor = (DOM.getStyle(div, 'background-color', true) + '').toLowerCase().replace(/ /g, ''); DOM.remove(div); return actualColor != 'rgb(171,239,86)' && actualColor != '#abef56'; }, createControl : function(n, cf) { var cd, c; if (c = cf.createControl(n)) return c; switch (n) { case "styleselect": return this._createStyleSelect(); case "formatselect": return this._createBlockFormats(); case "fontselect": return this._createFontSelect(); case "fontsizeselect": return this._createFontSizeSelect(); case "forecolor": return this._createForeColorMenu(); case "backcolor": return this._createBackColorMenu(); } if ((cd = this.controls[n])) return cf.createButton(n, {title : "advanced." + cd[0], cmd : cd[1], ui : cd[2], value : cd[3]}); }, execCommand : function(cmd, ui, val) { var f = this['_' + cmd]; if (f) { f.call(this, ui, val); return true; } return false; }, _importClasses : function(e) { var ed = this.editor, ctrl = ed.controlManager.get('styleselect'); if (ctrl.getLength() == 0) { each(ed.dom.getClasses(), function(o, idx) { var name = 'style_' + idx, fmt; fmt = { inline : 'span', attributes : {'class' : o['class']}, selector : '*' }; ed.formatter.register(name, fmt); ctrl.add(o['class'], name, { style: function() { return getPreviewCss(ed, fmt); } }); }); } }, _createStyleSelect : function(n) { var t = this, ed = t.editor, ctrlMan = ed.controlManager, ctrl; // Setup style select box ctrl = ctrlMan.createListBox('styleselect', { title : 'advanced.style_select', onselect : function(name) { var matches, formatNames = [], removedFormat; each(ctrl.items, function(item) { formatNames.push(item.value); }); ed.focus(); ed.undoManager.add(); // Toggle off the current format(s) matches = ed.formatter.matchAll(formatNames); tinymce.each(matches, function(match) { if (!name || match == name) { if (match) ed.formatter.remove(match); removedFormat = true; } }); if (!removedFormat) ed.formatter.apply(name); ed.undoManager.add(); ed.nodeChanged(); return false; // No auto select } }); // Handle specified format ed.onPreInit.add(function() { var counter = 0, formats = ed.getParam('style_formats'); if (formats) { each(formats, function(fmt) { var name, keys = 0; each(fmt, function() {keys++;}); if (keys > 1) { name = fmt.name = fmt.name || 'style_' + (counter++); ed.formatter.register(name, fmt); ctrl.add(fmt.title, name, { style: function() { return getPreviewCss(ed, fmt); } }); } else ctrl.add(fmt.title); }); } else { each(ed.getParam('theme_advanced_styles', '', 'hash'), function(val, key) { var name, fmt; if (val) { name = 'style_' + (counter++); fmt = { inline : 'span', classes : val, selector : '*' }; ed.formatter.register(name, fmt); ctrl.add(t.editor.translate(key), name, { style: function() { return getPreviewCss(ed, fmt); } }); } }); } }); // Auto import classes if the ctrl box is empty if (ctrl.getLength() == 0) { ctrl.onPostRender.add(function(ed, n) { if (!ctrl.NativeListBox) { Event.add(n.id + '_text', 'focus', t._importClasses, t); Event.add(n.id + '_text', 'mousedown', t._importClasses, t); Event.add(n.id + '_open', 'focus', t._importClasses, t); Event.add(n.id + '_open', 'mousedown', t._importClasses, t); } else Event.add(n.id, 'focus', t._importClasses, t); }); } return ctrl; }, _createFontSelect : function() { var c, t = this, ed = t.editor; c = ed.controlManager.createListBox('fontselect', { title : 'advanced.fontdefault', onselect : function(v) { var cur = c.items[c.selectedIndex]; if (!v && cur) { ed.execCommand('FontName', false, cur.value); return; } ed.execCommand('FontName', false, v); // Fake selection, execCommand will fire a nodeChange and update the selection c.select(function(sv) { return v == sv; }); if (cur && cur.value == v) { c.select(null); } return false; // No auto select } }); if (c) { each(ed.getParam('theme_advanced_fonts', t.settings.theme_advanced_fonts, 'hash'), function(v, k) { c.add(ed.translate(k), v, {style : v.indexOf('dings') == -1 ? 'font-family:' + v : ''}); }); } return c; }, _createFontSizeSelect : function() { var t = this, ed = t.editor, c, i = 0, cl = []; c = ed.controlManager.createListBox('fontsizeselect', {title : 'advanced.font_size', onselect : function(v) { var cur = c.items[c.selectedIndex]; if (!v && cur) { cur = cur.value; if (cur['class']) { ed.formatter.toggle('fontsize_class', {value : cur['class']}); ed.undoManager.add(); ed.nodeChanged(); } else { ed.execCommand('FontSize', false, cur.fontSize); } return; } if (v['class']) { ed.focus(); ed.undoManager.add(); ed.formatter.toggle('fontsize_class', {value : v['class']}); ed.undoManager.add(); ed.nodeChanged(); } else ed.execCommand('FontSize', false, v.fontSize); // Fake selection, execCommand will fire a nodeChange and update the selection c.select(function(sv) { return v == sv; }); if (cur && (cur.value.fontSize == v.fontSize || cur.value['class'] && cur.value['class'] == v['class'])) { c.select(null); } return false; // No auto select }}); if (c) { each(t.settings.theme_advanced_font_sizes, function(v, k) { var fz = v.fontSize; if (fz >= 1 && fz <= 7) fz = t.sizes[parseInt(fz) - 1] + 'pt'; c.add(k, v, {'style' : 'font-size:' + fz, 'class' : 'mceFontSize' + (i++) + (' ' + (v['class'] || ''))}); }); } return c; }, _createBlockFormats : function() { var c, fmts = { p : 'advanced.paragraph', address : 'advanced.address', pre : 'advanced.pre', h1 : 'advanced.h1', h2 : 'advanced.h2', h3 : 'advanced.h3', h4 : 'advanced.h4', h5 : 'advanced.h5', h6 : 'advanced.h6', div : 'advanced.div', blockquote : 'advanced.blockquote', code : 'advanced.code', dt : 'advanced.dt', dd : 'advanced.dd', samp : 'advanced.samp' }, t = this; c = t.editor.controlManager.createListBox('formatselect', {title : 'advanced.block', onselect : function(v) { t.editor.execCommand('FormatBlock', false, v); return false; }}); if (c) { each(t.editor.getParam('theme_advanced_blockformats', t.settings.theme_advanced_blockformats, 'hash'), function(v, k) { c.add(t.editor.translate(k != v ? k : fmts[v]), v, {'class' : 'mce_formatPreview mce_' + v, style: function() { return getPreviewCss(t.editor, {block: v}); }}); }); } return c; }, _createForeColorMenu : function() { var c, t = this, s = t.settings, o = {}, v; if (s.theme_advanced_more_colors) { o.more_colors_func = function() { t._mceColorPicker(0, { color : c.value, func : function(co) { c.setColor(co); } }); }; } if (v = s.theme_advanced_text_colors) o.colors = v; if (s.theme_advanced_default_foreground_color) o.default_color = s.theme_advanced_default_foreground_color; o.title = 'advanced.forecolor_desc'; o.cmd = 'ForeColor'; o.scope = this; c = t.editor.controlManager.createColorSplitButton('forecolor', o); return c; }, _createBackColorMenu : function() { var c, t = this, s = t.settings, o = {}, v; if (s.theme_advanced_more_colors) { o.more_colors_func = function() { t._mceColorPicker(0, { color : c.value, func : function(co) { c.setColor(co); } }); }; } if (v = s.theme_advanced_background_colors) o.colors = v; if (s.theme_advanced_default_background_color) o.default_color = s.theme_advanced_default_background_color; o.title = 'advanced.backcolor_desc'; o.cmd = 'HiliteColor'; o.scope = this; c = t.editor.controlManager.createColorSplitButton('backcolor', o); return c; }, renderUI : function(o) { var n, ic, tb, t = this, ed = t.editor, s = t.settings, sc, p, nl; if (ed.settings) { ed.settings.aria_label = s.aria_label + ed.getLang('advanced.help_shortcut'); } // TODO: ACC Should have an aria-describedby attribute which is user-configurable to describe what this field is actually for. // Maybe actually inherit it from the original textara? n = p = DOM.create('span', {role : 'application', 'aria-labelledby' : ed.id + '_voice', id : ed.id + '_parent', 'class' : 'mceEditor ' + ed.settings.skin + 'Skin' + (s.skin_variant ? ' ' + ed.settings.skin + 'Skin' + t._ufirst(s.skin_variant) : '') + (ed.settings.directionality == "rtl" ? ' mceRtl' : '')}); DOM.add(n, 'span', {'class': 'mceVoiceLabel', 'style': 'display:none;', id: ed.id + '_voice'}, s.aria_label); if (!DOM.boxModel) n = DOM.add(n, 'div', {'class' : 'mceOldBoxModel'}); n = sc = DOM.add(n, 'table', {role : "presentation", id : ed.id + '_tbl', 'class' : 'mceLayout', cellSpacing : 0, cellPadding : 0}); n = tb = DOM.add(n, 'tbody'); switch ((s.theme_advanced_layout_manager || '').toLowerCase()) { case "rowlayout": ic = t._rowLayout(s, tb, o); break; case "customlayout": ic = ed.execCallback("theme_advanced_custom_layout", s, tb, o, p); break; default: ic = t._simpleLayout(s, tb, o, p); } n = o.targetNode; // Add classes to first and last TRs nl = sc.rows; DOM.addClass(nl[0], 'mceFirst'); DOM.addClass(nl[nl.length - 1], 'mceLast'); // Add classes to first and last TDs each(DOM.select('tr', tb), function(n) { DOM.addClass(n.firstChild, 'mceFirst'); DOM.addClass(n.childNodes[n.childNodes.length - 1], 'mceLast'); }); if (DOM.get(s.theme_advanced_toolbar_container)) DOM.get(s.theme_advanced_toolbar_container).appendChild(p); else DOM.insertAfter(p, n); Event.add(ed.id + '_path_row', 'click', function(e) { e = e.target; if (e.nodeName == 'A') { t._sel(e.className.replace(/^.*mcePath_([0-9]+).*$/, '$1')); return false; } }); /* if (DOM.get(ed.id + '_path_row')) { Event.add(ed.id + '_tbl', 'mouseover', function(e) { var re; e = e.target; if (e.nodeName == 'SPAN' && DOM.hasClass(e.parentNode, 'mceButton')) { re = DOM.get(ed.id + '_path_row'); t.lastPath = re.innerHTML; DOM.setHTML(re, e.parentNode.title); } }); Event.add(ed.id + '_tbl', 'mouseout', function(e) { if (t.lastPath) { DOM.setHTML(ed.id + '_path_row', t.lastPath); t.lastPath = 0; } }); } */ if (!ed.getParam('accessibility_focus')) Event.add(DOM.add(p, 'a', {href : '#'}, ''), 'focus', function() {tinyMCE.get(ed.id).focus();}); if (s.theme_advanced_toolbar_location == 'external') o.deltaHeight = 0; t.deltaHeight = o.deltaHeight; o.targetNode = null; ed.onKeyDown.add(function(ed, evt) { var DOM_VK_F10 = 121, DOM_VK_F11 = 122; if (evt.altKey) { if (evt.keyCode === DOM_VK_F10) { // Make sure focus is given to toolbar in Safari. // We can't do this in IE as it prevents giving focus to toolbar when editor is in a frame if (tinymce.isWebKit) { window.focus(); } t.toolbarGroup.focus(); return Event.cancel(evt); } else if (evt.keyCode === DOM_VK_F11) { DOM.get(ed.id + '_path_row').focus(); return Event.cancel(evt); } } }); // alt+0 is the UK recommended shortcut for accessing the list of access controls. ed.addShortcut('alt+0', '', 'mceShortcuts', t); return { iframeContainer : ic, editorContainer : ed.id + '_parent', sizeContainer : sc, deltaHeight : o.deltaHeight }; }, getInfo : function() { return { longname : 'Advanced theme', author : 'Moxiecode Systems AB', authorurl : 'http://tinymce.moxiecode.com', version : tinymce.majorVersion + "." + tinymce.minorVersion } }, resizeBy : function(dw, dh) { var e = DOM.get(this.editor.id + '_ifr'); this.resizeTo(e.clientWidth + dw, e.clientHeight + dh); }, resizeTo : function(w, h, store) { var ed = this.editor, s = this.settings, e = DOM.get(ed.id + '_tbl'), ifr = DOM.get(ed.id + '_ifr'); // Boundery fix box w = Math.max(s.theme_advanced_resizing_min_width || 100, w); h = Math.max(s.theme_advanced_resizing_min_height || 100, h); w = Math.min(s.theme_advanced_resizing_max_width || 0xFFFF, w); h = Math.min(s.theme_advanced_resizing_max_height || 0xFFFF, h); // Resize iframe and container DOM.setStyle(e, 'height', ''); DOM.setStyle(ifr, 'height', h); if (s.theme_advanced_resize_horizontal) { DOM.setStyle(e, 'width', ''); DOM.setStyle(ifr, 'width', w); // Make sure that the size is never smaller than the over all ui if (w < e.clientWidth) { w = e.clientWidth; DOM.setStyle(ifr, 'width', e.clientWidth); } } // Store away the size if (store && s.theme_advanced_resizing_use_cookie) { Cookie.setHash("TinyMCE_" + ed.id + "_size", { cw : w, ch : h }); } }, destroy : function() { var id = this.editor.id; Event.clear(id + '_resize'); Event.clear(id + '_path_row'); Event.clear(id + '_external_close'); }, // Internal functions _simpleLayout : function(s, tb, o, p) { var t = this, ed = t.editor, lo = s.theme_advanced_toolbar_location, sl = s.theme_advanced_statusbar_location, n, ic, etb, c; if (s.readonly) { n = DOM.add(tb, 'tr'); n = ic = DOM.add(n, 'td', {'class' : 'mceIframeContainer'}); return ic; } // Create toolbar container at top if (lo == 'top') t._addToolbars(tb, o); // Create external toolbar if (lo == 'external') { n = c = DOM.create('div', {style : 'position:relative'}); n = DOM.add(n, 'div', {id : ed.id + '_external', 'class' : 'mceExternalToolbar'}); DOM.add(n, 'a', {id : ed.id + '_external_close', href : 'javascript:;', 'class' : 'mceExternalClose'}); n = DOM.add(n, 'table', {id : ed.id + '_tblext', cellSpacing : 0, cellPadding : 0}); etb = DOM.add(n, 'tbody'); if (p.firstChild.className == 'mceOldBoxModel') p.firstChild.appendChild(c); else p.insertBefore(c, p.firstChild); t._addToolbars(etb, o); ed.onMouseUp.add(function() { var e = DOM.get(ed.id + '_external'); DOM.show(e); DOM.hide(lastExtID); var f = Event.add(ed.id + '_external_close', 'click', function() { DOM.hide(ed.id + '_external'); Event.remove(ed.id + '_external_close', 'click', f); }); DOM.show(e); DOM.setStyle(e, 'top', 0 - DOM.getRect(ed.id + '_tblext').h - 1); // Fixes IE rendering bug DOM.hide(e); DOM.show(e); e.style.filter = ''; lastExtID = ed.id + '_external'; e = null; }); } if (sl == 'top') t._addStatusBar(tb, o); // Create iframe container if (!s.theme_advanced_toolbar_container) { n = DOM.add(tb, 'tr'); n = ic = DOM.add(n, 'td', {'class' : 'mceIframeContainer'}); } // Create toolbar container at bottom if (lo == 'bottom') t._addToolbars(tb, o); if (sl == 'bottom') t._addStatusBar(tb, o); return ic; }, _rowLayout : function(s, tb, o) { var t = this, ed = t.editor, dc, da, cf = ed.controlManager, n, ic, to, a; dc = s.theme_advanced_containers_default_class || ''; da = s.theme_advanced_containers_default_align || 'center'; each(explode(s.theme_advanced_containers || ''), function(c, i) { var v = s['theme_advanced_container_' + c] || ''; switch (c.toLowerCase()) { case 'mceeditor': n = DOM.add(tb, 'tr'); n = ic = DOM.add(n, 'td', {'class' : 'mceIframeContainer'}); break; case 'mceelementpath': t._addStatusBar(tb, o); break; default: a = (s['theme_advanced_container_' + c + '_align'] || da).toLowerCase(); a = 'mce' + t._ufirst(a); n = DOM.add(DOM.add(tb, 'tr'), 'td', { 'class' : 'mceToolbar ' + (s['theme_advanced_container_' + c + '_class'] || dc) + ' ' + a || da }); to = cf.createToolbar("toolbar" + i); t._addControls(v, to); DOM.setHTML(n, to.renderHTML()); o.deltaHeight -= s.theme_advanced_row_height; } }); return ic; }, _addControls : function(v, tb) { var t = this, s = t.settings, di, cf = t.editor.controlManager; if (s.theme_advanced_disable && !t._disabled) { di = {}; each(explode(s.theme_advanced_disable), function(v) { di[v] = 1; }); t._disabled = di; } else di = t._disabled; each(explode(v), function(n) { var c; if (di && di[n]) return; // Compatiblity with 2.x if (n == 'tablecontrols') { each(["table","|","row_props","cell_props","|","row_before","row_after","delete_row","|","col_before","col_after","delete_col","|","split_cells","merge_cells"], function(n) { n = t.createControl(n, cf); if (n) tb.add(n); }); return; } c = t.createControl(n, cf); if (c) tb.add(c); }); }, _addToolbars : function(c, o) { var t = this, i, tb, ed = t.editor, s = t.settings, v, cf = ed.controlManager, di, n, h = [], a, toolbarGroup, toolbarsExist = false; toolbarGroup = cf.createToolbarGroup('toolbargroup', { 'name': ed.getLang('advanced.toolbar'), 'tab_focus_toolbar':ed.getParam('theme_advanced_tab_focus_toolbar') }); t.toolbarGroup = toolbarGroup; a = s.theme_advanced_toolbar_align.toLowerCase(); a = 'mce' + t._ufirst(a); n = DOM.add(DOM.add(c, 'tr', {role: 'presentation'}), 'td', {'class' : 'mceToolbar ' + a, "role":"presentation"}); // Create toolbar and add the controls for (i=1; (v = s['theme_advanced_buttons' + i]); i++) { toolbarsExist = true; tb = cf.createToolbar("toolbar" + i, {'class' : 'mceToolbarRow' + i}); if (s['theme_advanced_buttons' + i + '_add']) v += ',' + s['theme_advanced_buttons' + i + '_add']; if (s['theme_advanced_buttons' + i + '_add_before']) v = s['theme_advanced_buttons' + i + '_add_before'] + ',' + v; t._addControls(v, tb); toolbarGroup.add(tb); o.deltaHeight -= s.theme_advanced_row_height; } // Handle case when there are no toolbar buttons and ensure editor height is adjusted accordingly if (!toolbarsExist) o.deltaHeight -= s.theme_advanced_row_height; h.push(toolbarGroup.renderHTML()); h.push(DOM.createHTML('a', {href : '#', accesskey : 'z', title : ed.getLang("advanced.toolbar_focus"), onfocus : 'tinyMCE.getInstanceById(\'' + ed.id + '\').focus();'}, '')); DOM.setHTML(n, h.join('')); }, _addStatusBar : function(tb, o) { var n, t = this, ed = t.editor, s = t.settings, r, mf, me, td; n = DOM.add(tb, 'tr'); n = td = DOM.add(n, 'td', {'class' : 'mceStatusbar'}); n = DOM.add(n, 'div', {id : ed.id + '_path_row', 'role': 'group', 'aria-labelledby': ed.id + '_path_voice'}); if (s.theme_advanced_path) { DOM.add(n, 'span', {id: ed.id + '_path_voice'}, ed.translate('advanced.path')); DOM.add(n, 'span', {}, ': '); } else { DOM.add(n, 'span', {}, ' '); } if (s.theme_advanced_resizing) { DOM.add(td, 'a', {id : ed.id + '_resize', href : 'javascript:;', onclick : "return false;", 'class' : 'mceResize', tabIndex:"-1"}); if (s.theme_advanced_resizing_use_cookie) { ed.onPostRender.add(function() { var o = Cookie.getHash("TinyMCE_" + ed.id + "_size"), c = DOM.get(ed.id + '_tbl'); if (!o) return; t.resizeTo(o.cw, o.ch); }); } ed.onPostRender.add(function() { Event.add(ed.id + '_resize', 'click', function(e) { e.preventDefault(); }); Event.add(ed.id + '_resize', 'mousedown', function(e) { var mouseMoveHandler1, mouseMoveHandler2, mouseUpHandler1, mouseUpHandler2, startX, startY, startWidth, startHeight, width, height, ifrElm; function resizeOnMove(e) { e.preventDefault(); width = startWidth + (e.screenX - startX); height = startHeight + (e.screenY - startY); t.resizeTo(width, height); }; function endResize(e) { // Stop listening Event.remove(DOM.doc, 'mousemove', mouseMoveHandler1); Event.remove(ed.getDoc(), 'mousemove', mouseMoveHandler2); Event.remove(DOM.doc, 'mouseup', mouseUpHandler1); Event.remove(ed.getDoc(), 'mouseup', mouseUpHandler2); width = startWidth + (e.screenX - startX); height = startHeight + (e.screenY - startY); t.resizeTo(width, height, true); }; e.preventDefault(); // Get the current rect size startX = e.screenX; startY = e.screenY; ifrElm = DOM.get(t.editor.id + '_ifr'); startWidth = width = ifrElm.clientWidth; startHeight = height = ifrElm.clientHeight; // Register envent handlers mouseMoveHandler1 = Event.add(DOM.doc, 'mousemove', resizeOnMove); mouseMoveHandler2 = Event.add(ed.getDoc(), 'mousemove', resizeOnMove); mouseUpHandler1 = Event.add(DOM.doc, 'mouseup', endResize); mouseUpHandler2 = Event.add(ed.getDoc(), 'mouseup', endResize); }); }); } o.deltaHeight -= 21; n = tb = null; }, _updateUndoStatus : function(ed) { var cm = ed.controlManager, um = ed.undoManager; cm.setDisabled('undo', !um.hasUndo() && !um.typing); cm.setDisabled('redo', !um.hasRedo()); }, _nodeChanged : function(ed, cm, n, co, ob) { var t = this, p, de = 0, v, c, s = t.settings, cl, fz, fn, fc, bc, formatNames, matches; tinymce.each(t.stateControls, function(c) { cm.setActive(c, ed.queryCommandState(t.controls[c][1])); }); function getParent(name) { var i, parents = ob.parents, func = name; if (typeof(name) == 'string') { func = function(node) { return node.nodeName == name; }; } for (i = 0; i < parents.length; i++) { if (func(parents[i])) return parents[i]; } }; cm.setActive('visualaid', ed.hasVisual); t._updateUndoStatus(ed); cm.setDisabled('outdent', !ed.queryCommandState('Outdent')); p = getParent('A'); if (c = cm.get('link')) { c.setDisabled((!p && co) || (p && !p.href)); c.setActive(!!p && (!p.name && !p.id)); } if (c = cm.get('unlink')) { c.setDisabled(!p && co); c.setActive(!!p && !p.name && !p.id); } if (c = cm.get('anchor')) { c.setActive(!co && !!p && (p.name || (p.id && !p.href))); } p = getParent('IMG'); if (c = cm.get('image')) c.setActive(!co && !!p && n.className.indexOf('mceItem') == -1); if (c = cm.get('styleselect')) { t._importClasses(); formatNames = []; each(c.items, function(item) { formatNames.push(item.value); }); matches = ed.formatter.matchAll(formatNames); c.select(matches[0]); tinymce.each(matches, function(match, index) { if (index > 0) { c.mark(match); } }); } if (c = cm.get('formatselect')) { p = getParent(ed.dom.isBlock); if (p) c.select(p.nodeName.toLowerCase()); } // Find out current fontSize, fontFamily and fontClass getParent(function(n) { if (n.nodeName === 'SPAN') { if (!cl && n.className) cl = n.className; } if (ed.dom.is(n, s.theme_advanced_font_selector)) { if (!fz && n.style.fontSize) fz = n.style.fontSize; if (!fn && n.style.fontFamily) fn = n.style.fontFamily.replace(/[\"\']+/g, '').replace(/^([^,]+).*/, '$1').toLowerCase(); if (!fc && n.style.color) fc = n.style.color; if (!bc && n.style.backgroundColor) bc = n.style.backgroundColor; } return false; }); if (c = cm.get('fontselect')) { c.select(function(v) { return v.replace(/^([^,]+).*/, '$1').toLowerCase() == fn; }); } // Select font size if (c = cm.get('fontsizeselect')) { // Use computed style if (s.theme_advanced_runtime_fontsize && !fz && !cl) fz = ed.dom.getStyle(n, 'fontSize', true); c.select(function(v) { if (v.fontSize && v.fontSize === fz) return true; if (v['class'] && v['class'] === cl) return true; }); } if (s.theme_advanced_show_current_color) { function updateColor(controlId, color) { if (c = cm.get(controlId)) { if (!color) color = c.settings.default_color; if (color !== c.value) { c.displayColor(color); } } } updateColor('forecolor', fc); updateColor('backcolor', bc); } if (s.theme_advanced_show_current_color) { function updateColor(controlId, color) { if (c = cm.get(controlId)) { if (!color) color = c.settings.default_color; if (color !== c.value) { c.displayColor(color); } } }; updateColor('forecolor', fc); updateColor('backcolor', bc); } if (s.theme_advanced_path && s.theme_advanced_statusbar_location) { p = DOM.get(ed.id + '_path') || DOM.add(ed.id + '_path_row', 'span', {id : ed.id + '_path'}); if (t.statusKeyboardNavigation) { t.statusKeyboardNavigation.destroy(); t.statusKeyboardNavigation = null; } DOM.setHTML(p, ''); getParent(function(n) { var na = n.nodeName.toLowerCase(), u, pi, ti = ''; // Ignore non element and bogus/hidden elements if (n.nodeType != 1 || na === 'br' || n.getAttribute('data-mce-bogus') || DOM.hasClass(n, 'mceItemHidden') || DOM.hasClass(n, 'mceItemRemoved')) return; // Handle prefix if (tinymce.isIE && n.scopeName !== 'HTML' && n.scopeName) na = n.scopeName + ':' + na; // Remove internal prefix na = na.replace(/mce\:/g, ''); // Handle node name switch (na) { case 'b': na = 'strong'; break; case 'i': na = 'em'; break; case 'img': if (v = DOM.getAttrib(n, 'src')) ti += 'src: ' + v + ' '; break; case 'a': if (v = DOM.getAttrib(n, 'name')) { ti += 'name: ' + v + ' '; na += '#' + v; } if (v = DOM.getAttrib(n, 'href')) ti += 'href: ' + v + ' '; break; case 'font': if (v = DOM.getAttrib(n, 'face')) ti += 'font: ' + v + ' '; if (v = DOM.getAttrib(n, 'size')) ti += 'size: ' + v + ' '; if (v = DOM.getAttrib(n, 'color')) ti += 'color: ' + v + ' '; break; case 'span': if (v = DOM.getAttrib(n, 'style')) ti += 'style: ' + v + ' '; break; } if (v = DOM.getAttrib(n, 'id')) ti += 'id: ' + v + ' '; if (v = n.className) { v = v.replace(/\b\s*(webkit|mce|Apple-)\w+\s*\b/g, '') if (v) { ti += 'class: ' + v + ' '; if (ed.dom.isBlock(n) || na == 'img' || na == 'span') na += '.' + v; } } na = na.replace(/(html:)/g, ''); na = {name : na, node : n, title : ti}; t.onResolveName.dispatch(t, na); ti = na.title; na = na.name; //u = "javascript:tinymce.EditorManager.get('" + ed.id + "').theme._sel('" + (de++) + "');"; pi = DOM.create('a', {'href' : "javascript:;", role: 'button', onmousedown : "return false;", title : ti, 'class' : 'mcePath_' + (de++)}, na); if (p.hasChildNodes()) { p.insertBefore(DOM.create('span', {'aria-hidden': 'true'}, '\u00a0\u00bb '), p.firstChild); p.insertBefore(pi, p.firstChild); } else p.appendChild(pi); }, ed.getBody()); if (DOM.select('a', p).length > 0) { t.statusKeyboardNavigation = new tinymce.ui.KeyboardNavigation({ root: ed.id + "_path_row", items: DOM.select('a', p), excludeFromTabOrder: true, onCancel: function() { ed.focus(); } }, DOM); } } }, // Commands gets called by execCommand _sel : function(v) { this.editor.execCommand('mceSelectNodeDepth', false, v); }, _mceInsertAnchor : function(ui, v) { var ed = this.editor; ed.windowManager.open({ url : this.url + '/anchor.htm', width : 320 + parseInt(ed.getLang('advanced.anchor_delta_width', 0)), height : 90 + parseInt(ed.getLang('advanced.anchor_delta_height', 0)), inline : true }, { theme_url : this.url }); }, _mceCharMap : function() { var ed = this.editor; ed.windowManager.open({ url : this.url + '/charmap.htm', width : 550 + parseInt(ed.getLang('advanced.charmap_delta_width', 0)), height : 265 + parseInt(ed.getLang('advanced.charmap_delta_height', 0)), inline : true }, { theme_url : this.url }); }, _mceHelp : function() { var ed = this.editor; ed.windowManager.open({ url : this.url + '/about.htm', width : 480, height : 380, inline : true }, { theme_url : this.url }); }, _mceShortcuts : function() { var ed = this.editor; ed.windowManager.open({ url: this.url + '/shortcuts.htm', width: 480, height: 380, inline: true }, { theme_url: this.url }); }, _mceColorPicker : function(u, v) { var ed = this.editor; v = v || {}; ed.windowManager.open({ url : this.url + '/color_picker.htm', width : 375 + parseInt(ed.getLang('advanced.colorpicker_delta_width', 0)), height : 250 + parseInt(ed.getLang('advanced.colorpicker_delta_height', 0)), close_previous : false, inline : true }, { input_color : v.color, func : v.func, theme_url : this.url }); }, _mceCodeEditor : function(ui, val) { var ed = this.editor; ed.windowManager.open({ url : this.url + '/source_editor.htm', width : parseInt(ed.getParam("theme_advanced_source_editor_width", 720)), height : parseInt(ed.getParam("theme_advanced_source_editor_height", 580)), inline : true, resizable : true, maximizable : true }, { theme_url : this.url }); }, _mceImage : function(ui, val) { var ed = this.editor; // Internal image object like a flash placeholder if (ed.dom.getAttrib(ed.selection.getNode(), 'class', '').indexOf('mceItem') != -1) return; ed.windowManager.open({ url : this.url + '/image.htm', width : 355 + parseInt(ed.getLang('advanced.image_delta_width', 0)), height : 275 + parseInt(ed.getLang('advanced.image_delta_height', 0)), inline : true }, { theme_url : this.url }); }, _mceLink : function(ui, val) { var ed = this.editor; ed.windowManager.open({ url : this.url + '/link.htm', width : 310 + parseInt(ed.getLang('advanced.link_delta_width', 0)), height : 200 + parseInt(ed.getLang('advanced.link_delta_height', 0)), inline : true }, { theme_url : this.url }); }, _mceNewDocument : function() { var ed = this.editor; ed.windowManager.confirm('advanced.newdocument', function(s) { if (s) ed.execCommand('mceSetContent', false, ''); }); }, _mceForeColor : function() { var t = this; this._mceColorPicker(0, { color: t.fgColor, func : function(co) { t.fgColor = co; t.editor.execCommand('ForeColor', false, co); } }); }, _mceBackColor : function() { var t = this; this._mceColorPicker(0, { color: t.bgColor, func : function(co) { t.bgColor = co; t.editor.execCommand('HiliteColor', false, co); } }); }, _ufirst : function(s) { return s.substring(0, 1).toUpperCase() + s.substring(1); } }); tinymce.ThemeManager.add('advanced', tinymce.themes.AdvancedTheme); }(tinymce)); assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/link.htm000066600000004646152141651140020413 0ustar00 {#advanced_dlg.link_title}
         
        assets/lib/wck-api/assets/js/tiny_mce/themes/advanced/anchor.htm000066600000002165152141651140020722 0ustar00 {#advanced_dlg.anchor_title}
        {#advanced_dlg.anchor_title}
        assets/lib/wck-api/assets/js/tiny_mce/utils/form_utils.js000066600000013225152141651140017564 0ustar00/** * form_utils.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ var themeBaseURL = tinyMCEPopup.editor.baseURI.toAbsolute('themes/' + tinyMCEPopup.getParam("theme")); function getColorPickerHTML(id, target_form_element) { var h = "", dom = tinyMCEPopup.dom; if (label = dom.select('label[for=' + target_form_element + ']')[0]) { label.id = label.id || dom.uniqueId(); } h += ''; h += ' '; return h; } function updateColor(img_id, form_element_id) { document.getElementById(img_id).style.backgroundColor = document.forms[0].elements[form_element_id].value; } function setBrowserDisabled(id, state) { var img = document.getElementById(id); var lnk = document.getElementById(id + "_link"); if (lnk) { if (state) { lnk.setAttribute("realhref", lnk.getAttribute("href")); lnk.removeAttribute("href"); tinyMCEPopup.dom.addClass(img, 'disabled'); } else { if (lnk.getAttribute("realhref")) lnk.setAttribute("href", lnk.getAttribute("realhref")); tinyMCEPopup.dom.removeClass(img, 'disabled'); } } } function getBrowserHTML(id, target_form_element, type, prefix) { var option = prefix + "_" + type + "_browser_callback", cb, html; cb = tinyMCEPopup.getParam(option, tinyMCEPopup.getParam("file_browser_callback")); if (!cb) return ""; html = ""; html += ''; html += ' '; return html; } function openBrowser(img_id, target_form_element, type, option) { var img = document.getElementById(img_id); if (img.className != "mceButtonDisabled") tinyMCEPopup.openBrowser(target_form_element, type, option); } function selectByValue(form_obj, field_name, value, add_custom, ignore_case) { if (!form_obj || !form_obj.elements[field_name]) return; if (!value) value = ""; var sel = form_obj.elements[field_name]; var found = false; for (var i=0; i parseInt(v)) st = this.mark(f, n); } } return st; }, hasClass : function(n, c, d) { return new RegExp('\\b' + c + (d ? '[0-9]+' : '') + '\\b', 'g').test(n.className); }, getNum : function(n, c) { c = n.className.match(new RegExp('\\b' + c + '([0-9]+)\\b', 'g'))[0]; c = c.replace(/[^0-9]/g, ''); return c; }, addClass : function(n, c, b) { var o = this.removeClass(n, c); n.className = b ? c + (o != '' ? (' ' + o) : '') : (o != '' ? (o + ' ') : '') + c; }, removeClass : function(n, c) { c = n.className.replace(new RegExp("(^|\\s+)" + c + "(\\s+|$)"), ' '); return n.className = c != ' ' ? c : ''; }, tags : function(f, s) { return f.getElementsByTagName(s); }, mark : function(f, n) { var s = this.settings; this.addClass(n, s.invalid_cls); n.setAttribute('aria-invalid', 'true'); this.markLabels(f, n, s.invalid_cls); return false; }, markLabels : function(f, n, ic) { var nl, i; nl = this.tags(f, "label"); for (i=0; i=534;if(e.tinyMCEPreInit){s.suffix=tinyMCEPreInit.suffix;s.baseURL=tinyMCEPreInit.base;s.query=tinyMCEPreInit.query;return}s.suffix="";f=q.getElementsByTagName("base");for(m=0;m0?b:[f.scope]);if(e===false){break}}a.inDispatch=false;return e}});(function(){var a=tinymce.each;tinymce.create("tinymce.util.URI",{URI:function(e,g){var f=this,i,d,c,h;e=tinymce.trim(e);g=f.settings=g||{};if(/^([\w\-]+):([^\/]{2})/i.test(e)||/^\s*#/.test(e)){f.source=e;return}if(e.indexOf("/")===0&&e.indexOf("//")!==0){e=(g.base_uri?g.base_uri.protocol||"http":"http")+"://mce_host"+e}if(!/^[\w\-]*:?\/\//.test(e)){h=g.base_uri?g.base_uri.path:new tinymce.util.URI(location.href).directory;e=((g.base_uri&&g.base_uri.protocol)||"http")+"://mce_host"+f.toAbsPath(h,e)}e=e.replace(/@@/g,"(mce_at)");e=/^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@\/]*):?([^:@\/]*))?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/.exec(e);a(["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"],function(b,j){var k=e[j];if(k){k=k.replace(/\(mce_at\)/g,"@@")}f[b]=k});c=g.base_uri;if(c){if(!f.protocol){f.protocol=c.protocol}if(!f.userInfo){f.userInfo=c.userInfo}if(!f.port&&f.host==="mce_host"){f.port=c.port}if(!f.host||f.host==="mce_host"){f.host=c.host}f.source=""}},setPath:function(c){var b=this;c=/^(.*?)\/?(\w+)?$/.exec(c);b.path=c[0];b.directory=c[1];b.file=c[2];b.source="";b.getURI()},toRelative:function(b){var d=this,f;if(b==="./"){return b}b=new tinymce.util.URI(b,{base_uri:d});if((b.host!="mce_host"&&d.host!=b.host&&b.host)||d.port!=b.port||d.protocol!=b.protocol){return b.getURI()}var c=d.getURI(),e=b.getURI();if(c==e||(c.charAt(c.length-1)=="/"&&c.substr(0,c.length-1)==e)){return c}f=d.toRelPath(d.path,b.path);if(b.query){f+="?"+b.query}if(b.anchor){f+="#"+b.anchor}return f},toAbsolute:function(b,c){b=new tinymce.util.URI(b,{base_uri:this});return b.getURI(this.host==b.host&&this.protocol==b.protocol?c:0)},toRelPath:function(g,h){var c,f=0,d="",e,b;g=g.substring(0,g.lastIndexOf("/"));g=g.split("/");c=h.split("/");if(g.length>=c.length){for(e=0,b=g.length;e=c.length||g[e]!=c[e]){f=e+1;break}}}if(g.length=g.length||g[e]!=c[e]){f=e+1;break}}}if(f===1){return h}for(e=0,b=g.length-(f-1);e=0;c--){if(f[c].length===0||f[c]==="."){continue}if(f[c]===".."){b++;continue}if(b>0){b--;continue}h.push(f[c])}c=e.length-b;if(c<=0){g=h.reverse().join("/")}else{g=e.slice(0,c).join("/")+"/"+h.reverse().join("/")}if(g.indexOf("/")!==0){g="/"+g}if(d&&g.lastIndexOf("/")!==g.length-1){g+=d}return g},getURI:function(d){var c,b=this;if(!b.source||d){c="";if(!d){if(b.protocol){c+=b.protocol+"://"}if(b.userInfo){c+=b.userInfo+"@"}if(b.host){c+=b.host}if(b.port){c+=":"+b.port}}if(b.path){c+=b.path}if(b.query){c+="?"+b.query}if(b.anchor){c+="#"+b.anchor}b.source=c}return b.source}})})();(function(){var a=tinymce.each;tinymce.create("static tinymce.util.Cookie",{getHash:function(d){var b=this.get(d),c;if(b){a(b.split("&"),function(e){e=e.split("=");c=c||{};c[unescape(e[0])]=unescape(e[1])})}return c},setHash:function(j,b,g,f,i,c){var h="";a(b,function(e,d){h+=(!h?"":"&")+escape(d)+"="+escape(e)});this.set(j,h,g,f,i,c)},get:function(i){var h=document.cookie,g,f=i+"=",d;if(!h){return}d=h.indexOf("; "+f);if(d==-1){d=h.indexOf(f);if(d!==0){return null}}else{d+=2}g=h.indexOf(";",d);if(g==-1){g=h.length}return unescape(h.substring(d+f.length,g))},set:function(i,b,g,f,h,c){document.cookie=i+"="+escape(b)+((g)?"; expires="+g.toGMTString():"")+((f)?"; path="+escape(f):"")+((h)?"; domain="+h:"")+((c)?"; secure":"")},remove:function(c,e,d){var b=new Date();b.setTime(b.getTime()-1000);this.set(c,"",b,e,d)}})})();(function(){function serialize(o,quote){var i,v,t,name;quote=quote||'"';if(o==null){return"null"}t=typeof o;if(t=="string"){v="\bb\tt\nn\ff\rr\"\"''\\\\";return quote+o.replace(/([\u0080-\uFFFF\x00-\x1f\"\'\\])/g,function(a,b){if(quote==='"'&&a==="'"){return a}i=v.indexOf(b);if(i+1){return"\\"+v.charAt(i+1)}a=b.charCodeAt().toString(16);return"\\u"+"0000".substring(a.length)+a})+quote}if(t=="object"){if(o.hasOwnProperty&&o instanceof Array){for(i=0,v="[";i0?",":"")+serialize(o[i],quote)}return v+"]"}v="{";for(name in o){if(o.hasOwnProperty(name)){v+=typeof o[name]!="function"?(v.length>1?","+quote:quote)+name+quote+":"+serialize(o[name],quote):""}}return v+"}"}return""+o}tinymce.util.JSON={serialize:serialize,parse:function(s){try{return eval("("+s+")")}catch(ex){}}}})();tinymce.create("static tinymce.util.XHR",{send:function(g){var a,e,b=window,h=0;function f(){if(!g.async||a.readyState==4||h++>10000){if(g.success&&h<10000&&a.status==200){g.success.call(g.success_scope,""+a.responseText,a,g)}else{if(g.error){g.error.call(g.error_scope,h>10000?"TIMED_OUT":"GENERAL",a,g)}}a=null}else{b.setTimeout(f,10)}}g.scope=g.scope||this;g.success_scope=g.success_scope||g.scope;g.error_scope=g.error_scope||g.scope;g.async=g.async===false?false:true;g.data=g.data||"";function d(i){a=0;try{a=new ActiveXObject(i)}catch(c){}return a}a=b.XMLHttpRequest?new XMLHttpRequest():d("Microsoft.XMLHTTP")||d("Msxml2.XMLHTTP");if(a){if(a.overrideMimeType){a.overrideMimeType(g.content_type)}a.open(g.type||(g.data?"POST":"GET"),g.url,g.async);if(g.content_type){a.setRequestHeader("Content-Type",g.content_type)}a.setRequestHeader("X-Requested-With","XMLHttpRequest");a.send(g.data);if(!g.async){return f()}e=b.setTimeout(f,10)}}});(function(){var c=tinymce.extend,b=tinymce.util.JSON,a=tinymce.util.XHR;tinymce.create("tinymce.util.JSONRequest",{JSONRequest:function(d){this.settings=c({},d);this.count=0},send:function(f){var e=f.error,d=f.success;f=c(this.settings,f);f.success=function(h,g){h=b.parse(h);if(typeof(h)=="undefined"){h={error:"JSON Parse error."}}if(h.error){e.call(f.error_scope||f.scope,h.error,g)}else{d.call(f.success_scope||f.scope,h.result)}};f.error=function(h,g){if(e){e.call(f.error_scope||f.scope,h,g)}};f.data=b.serialize({id:f.id||"c"+(this.count++),method:f.method,params:f.params});f.content_type="application/json";a.send(f)},"static":{sendRPC:function(d){return new tinymce.util.JSONRequest().send(d)}}})}());(function(a){a.VK={BACKSPACE:8,DELETE:46,DOWN:40,ENTER:13,LEFT:37,RIGHT:39,SPACEBAR:32,TAB:9,UP:38,modifierPressed:function(b){return b.shiftKey||b.ctrlKey||b.altKey},metaKeyPressed:function(b){return a.isMac?b.metaKey:b.ctrlKey}}})(tinymce);tinymce.util.Quirks=function(d){var m=tinymce.VK,t=m.BACKSPACE,u=m.DELETE,p=d.dom,E=d.selection,s=d.settings;function c(I,H){try{d.getDoc().execCommand(I,false,H)}catch(G){}}function z(){var G=d.getDoc().documentMode;return G?G:6}function j(){function G(J){var H,L,I,K;H=E.getRng();L=p.getParent(H.startContainer,p.isBlock);if(J){L=p.getNext(L,p.isBlock)}if(L){I=L.firstChild;while(I&&I.nodeType==3&&I.nodeValue.length===0){I=I.nextSibling}if(I&&I.nodeName==="SPAN"){K=I.cloneNode(false)}}d.getDoc().execCommand(J?"ForwardDelete":"Delete",false,null);L=p.getParent(H.startContainer,p.isBlock);tinymce.each(p.select("span.Apple-style-span,font.Apple-style-span",L),function(M){var N=E.getBookmark();if(K){p.replace(K.cloneNode(false),M,true)}else{p.remove(M,true)}E.moveToBookmark(N)})}d.onKeyDown.add(function(H,J){var I;I=J.keyCode==u;if(!J.isDefaultPrevented()&&(I||J.keyCode==t)&&!m.modifierPressed(J)){J.preventDefault();G(I)}});d.addCommand("Delete",function(){G()})}function F(){function G(J){var I=p.create("body");var K=J.cloneContents();I.appendChild(K);return E.serializer.serialize(I,{format:"html"})}function H(I){var K=G(I);var L=p.createRng();L.selectNode(d.getBody());var J=G(L);return K===J}d.onKeyDown.add(function(J,L){var K=L.keyCode,I;if(!L.isDefaultPrevented()&&(K==u||K==t)){I=J.selection.isCollapsed();if(I&&!p.isEmpty(J.getBody())){return}if(tinymce.isIE&&!I){return}if(!I&&!H(J.selection.getRng())){return}J.setContent("");J.selection.setCursorLocation(J.getBody(),0);J.nodeChanged()}})}function x(){d.onKeyDown.add(function(G,H){if(H.keyCode==65&&m.metaKeyPressed(H)){H.preventDefault();G.execCommand("SelectAll")}})}function y(){if(!d.settings.content_editable){p.bind(d.getDoc(),"focusin",function(G){E.setRng(E.getRng())});p.bind(d.getDoc(),"mousedown",function(G){if(G.target==d.getDoc().documentElement){d.getWin().focus();E.setRng(E.getRng())}})}}function n(){d.onKeyDown.add(function(G,J){if(!J.isDefaultPrevented()&&J.keyCode===t){if(E.isCollapsed()&&E.getRng(true).startOffset===0){var I=E.getNode();var H=I.previousSibling;if(H&&H.nodeName&&H.nodeName.toLowerCase()==="hr"){p.remove(H);tinymce.dom.Event.cancel(J)}}}})}function b(){if(!Range.prototype.getClientRects){d.onMouseDown.add(function(H,I){if(I.target.nodeName==="HTML"){var G=H.getBody();G.blur();setTimeout(function(){G.focus()},0)}})}}function B(){d.onClick.add(function(G,H){H=H.target;if(/^(IMG|HR)$/.test(H.nodeName)){E.getSel().setBaseAndExtent(H,0,H,1)}if(H.nodeName=="A"&&p.hasClass(H,"mceItemAnchor")){E.select(H)}G.nodeChanged()})}function C(){function H(){var J=p.getAttribs(E.getStart().cloneNode(false));return function(){var K=E.getStart();if(K!==d.getBody()){p.setAttrib(K,"style",null);tinymce.each(J,function(L){K.setAttributeNode(L.cloneNode(true))})}}}function G(){return !E.isCollapsed()&&E.getStart()!=E.getEnd()}function I(J,K){K.preventDefault();return false}d.onKeyPress.add(function(J,L){var K;if((L.keyCode==8||L.keyCode==46)&&G()){K=H();J.getDoc().execCommand("delete",false,null);K();L.preventDefault();return false}});p.bind(d.getDoc(),"cut",function(K){var J;if(G()){J=H();d.onKeyUp.addToTop(I);setTimeout(function(){J();d.onKeyUp.remove(I)},0)}})}function k(){var H,G;p.bind(d.getDoc(),"selectionchange",function(){if(G){clearTimeout(G);G=0}G=window.setTimeout(function(){var I=E.getRng();if(!H||!tinymce.dom.RangeUtils.compareRanges(I,H)){d.nodeChanged();H=I}},50)})}function D(){document.body.setAttribute("role","application")}function A(){d.onKeyDown.add(function(G,I){if(!I.isDefaultPrevented()&&I.keyCode===t){if(E.isCollapsed()&&E.getRng(true).startOffset===0){var H=E.getNode().previousSibling;if(H&&H.nodeName&&H.nodeName.toLowerCase()==="table"){return tinymce.dom.Event.cancel(I)}}}})}function h(){if(z()>7){return}c("RespectVisibilityInDesign",true);d.contentStyles.push(".mceHideBrInPre pre br {display: none}");p.addClass(d.getBody(),"mceHideBrInPre");d.parser.addNodeFilter("pre",function(G,I){var J=G.length,L,H,M,K;while(J--){L=G[J].getAll("br");H=L.length;while(H--){M=L[H];K=M.prev;if(K&&K.type===3&&K.value.charAt(K.value-1)!="\n"){K.value+="\n"}else{M.parent.insert(new tinymce.html.Node("#text",3),M,true).value="\n"}}}});d.serializer.addNodeFilter("pre",function(G,I){var J=G.length,L,H,M,K;while(J--){L=G[J].getAll("br");H=L.length;while(H--){M=L[H];K=M.prev;if(K&&K.type==3){K.value=K.value.replace(/\r?\n$/,"")}}}})}function f(){p.bind(d.getBody(),"mouseup",function(I){var H,G=E.getNode();if(G.nodeName=="IMG"){if(H=p.getStyle(G,"width")){p.setAttrib(G,"width",H.replace(/[^0-9%]+/g,""));p.setStyle(G,"width","")}if(H=p.getStyle(G,"height")){p.setAttrib(G,"height",H.replace(/[^0-9%]+/g,""));p.setStyle(G,"height","")}}})}function r(){d.onKeyDown.add(function(M,N){var L,G,H,J,K,O,I;L=N.keyCode==u;if(!N.isDefaultPrevented()&&(L||N.keyCode==t)&&!m.modifierPressed(N)){G=E.getRng();H=G.startContainer;J=G.startOffset;I=G.collapsed;if(H.nodeType==3&&H.nodeValue.length>0&&((J===0&&!I)||(I&&J===(L?0:1)))){nonEmptyElements=M.schema.getNonEmptyElements();N.preventDefault();K=p.create("br",{id:"__tmp"});H.parentNode.insertBefore(K,H);M.getDoc().execCommand(L?"ForwardDelete":"Delete",false,null);H=E.getRng().startContainer;O=H.previousSibling;if(O&&O.nodeType==1&&!p.isBlock(O)&&p.isEmpty(O)&&!nonEmptyElements[O.nodeName.toLowerCase()]){p.remove(O)}p.remove("__tmp")}}})}function e(){d.onKeyDown.add(function(K,L){var I,H,M,G,J;if(L.isDefaultPrevented()||L.keyCode!=m.BACKSPACE){return}I=E.getRng();H=I.startContainer;M=I.startOffset;G=p.getRoot();J=H;if(!I.collapsed||M!==0){return}while(J&&J.parentNode&&J.parentNode.firstChild==J&&J.parentNode!=G){J=J.parentNode}if(J.tagName==="BLOCKQUOTE"){K.formatter.toggle("blockquote",null,J);I.setStart(H,0);I.setEnd(H,0);E.setRng(I);E.collapse(false)}})}function l(){function G(){d._refreshContentEditable();c("StyleWithCSS",false);c("enableInlineTableEditing",false);if(!s.object_resizing){c("enableObjectResizing",false)}}if(!s.readonly){d.onBeforeExecCommand.add(G);d.onMouseDown.add(G)}}function o(){function G(H,I){tinymce.each(p.select("a"),function(L){var J=L.parentNode,K=p.getRoot();if(J.lastChild===L){while(J&&!p.isBlock(J)){if(J.parentNode.lastChild!==J||J===K){return}J=J.parentNode}p.add(J,"br",{"data-mce-bogus":1})}})}d.onExecCommand.add(function(H,I){if(I==="CreateLink"){G(H)}});d.onSetContent.add(E.onSetContent.add(G))}function v(){if(s.forced_root_block){d.onInit.add(function(){c("DefaultParagraphSeparator",s.forced_root_block)})}}function a(){function G(I,H){if(!I||!H.initial){d.execCommand("mceRepaint")}}d.onUndo.add(G);d.onRedo.add(G);d.onSetContent.add(G)}function q(){d.onKeyDown.add(function(H,I){var G;if(!I.isDefaultPrevented()&&I.keyCode==t){G=H.getDoc().selection.createRange();if(G&&G.item){I.preventDefault();H.undoManager.beforeChange();p.remove(G.item(0));H.undoManager.add()}}})}function i(){var G;if(z()>=10){G="";tinymce.each("p div h1 h2 h3 h4 h5 h6".split(" "),function(H,I){G+=(I>0?",":"")+H+":empty"});d.contentStyles.push(G+"{padding-right: 1px !important}")}}function g(){var K,H,G,I,J;if(!s.object_resizing||s.webkit_fake_resize===false){return}d.contentStyles.push(".mceResizeImages img {cursor: se-resize !important}");function L(R){var O,N,Q,P,M;if(K){O=R.screenX-H;N=R.screenY-G;Q=Math.max((I+O)/I,(J+N)/J);if(Math.abs(O)>1||Math.abs(N)>1){P=Math.round(I*Q);M=Math.round(J*Q);if(K.style.width){p.setStyle(K,"width",P)}else{p.setAttrib(K,"width",P)}if(K.style.height){p.setStyle(K,"height",M)}else{p.setAttrib(K,"height",M)}if(!p.hasClass(d.getBody(),"mceResizeImages")){p.addClass(d.getBody(),"mceResizeImages")}}}}d.onMouseDown.add(function(M,O){var N=O.target;if(N.nodeName=="IMG"){K=N;H=O.screenX;G=O.screenY;I=K.clientWidth;J=K.clientHeight;p.bind(M.getDoc(),"mousemove",L);O.preventDefault()}});d.onNodeChange.add(function(){if(K){K=null;p.unbind(d.getDoc(),"mousemove",L)}if(E.getNode().nodeName=="IMG"){p.addClass(d.getBody(),"mceResizeImages")}else{p.removeClass(d.getBody(),"mceResizeImages")}})}A();e();F();if(tinymce.isWebKit){r();j();y();B();v();if(tinymce.isIDevice){k()}else{g();x()}}if(tinymce.isIE){n();D();h();f();q();i()}if(tinymce.isGecko){n();b();C();l();o();a()}};(function(j){var a,g,d,k=/[&<>\"\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,b=/[<>&\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,f=/[<>&\"\']/g,c=/&(#x|#)?([\w]+);/g,i={128:"\u20AC",130:"\u201A",131:"\u0192",132:"\u201E",133:"\u2026",134:"\u2020",135:"\u2021",136:"\u02C6",137:"\u2030",138:"\u0160",139:"\u2039",140:"\u0152",142:"\u017D",145:"\u2018",146:"\u2019",147:"\u201C",148:"\u201D",149:"\u2022",150:"\u2013",151:"\u2014",152:"\u02DC",153:"\u2122",154:"\u0161",155:"\u203A",156:"\u0153",158:"\u017E",159:"\u0178"};g={'"':""","'":"'","<":"<",">":">","&":"&"};d={"<":"<",">":">","&":"&",""":'"',"'":"'"};function h(l){var m;m=document.createElement("div");m.innerHTML=l;return m.textContent||m.innerText||l}function e(m,p){var n,o,l,q={};if(m){m=m.split(",");p=p||10;for(n=0;n1){return"&#"+(((n.charCodeAt(0)-55296)*1024)+(n.charCodeAt(1)-56320)+65536)+";"}return g[n]||"&#"+n.charCodeAt(0)+";"})},encodeNamed:function(n,l,m){m=m||a;return n.replace(l?k:b,function(o){return g[o]||m[o]||o})},getEncodeFunc:function(l,o){var p=j.html.Entities;o=e(o)||a;function m(r,q){return r.replace(q?k:b,function(s){return g[s]||o[s]||"&#"+s.charCodeAt(0)+";"||s})}function n(r,q){return p.encodeNamed(r,q,o)}l=j.makeMap(l.replace(/\+/g,","));if(l.named&&l.numeric){return m}if(l.named){if(o){return n}return p.encodeNamed}if(l.numeric){return p.encodeNumeric}return p.encodeRaw},decode:function(l){return l.replace(c,function(n,m,o){if(m){o=parseInt(o,m.length===2?16:10);if(o>65535){o-=65536;return String.fromCharCode(55296+(o>>10),56320+(o&1023))}else{return i[o]||String.fromCharCode(o)}}return d[n]||a[n]||h(n)})}}})(tinymce);tinymce.html.Styles=function(d,f){var k=/rgb\s*\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*\)/gi,h=/(?:url(?:(?:\(\s*\"([^\"]+)\"\s*\))|(?:\(\s*\'([^\']+)\'\s*\))|(?:\(\s*([^)\s]+)\s*\))))|(?:\'([^\']+)\')|(?:\"([^\"]+)\")/gi,b=/\s*([^:]+):\s*([^;]+);?/g,l=/\s+$/,m=/rgb/,e,g,a={},j;d=d||{};j="\\\" \\' \\; \\: ; : \uFEFF".split(" ");for(g=0;g1?r:"0"+r}return"#"+o(q)+o(p)+o(i)}return{toHex:function(i){return i.replace(k,c)},parse:function(s){var z={},q,n,x,r,v=d.url_converter,y=d.url_converter_scope||this;function p(D,G){var F,C,B,E;F=z[D+"-top"+G];if(!F){return}C=z[D+"-right"+G];if(F!=C){return}B=z[D+"-bottom"+G];if(C!=B){return}E=z[D+"-left"+G];if(B!=E){return}z[D+G]=E;delete z[D+"-top"+G];delete z[D+"-right"+G];delete z[D+"-bottom"+G];delete z[D+"-left"+G]}function u(C){var D=z[C],B;if(!D||D.indexOf(" ")<0){return}D=D.split(" ");B=D.length;while(B--){if(D[B]!==D[0]){return false}}z[C]=D[0];return true}function A(D,C,B,E){if(!u(C)){return}if(!u(B)){return}if(!u(E)){return}z[D]=z[C]+" "+z[B]+" "+z[E];delete z[C];delete z[B];delete z[E]}function t(B){r=true;return a[B]}function i(C,B){if(r){C=C.replace(/\uFEFF[0-9]/g,function(D){return a[D]})}if(!B){C=C.replace(/\\([\'\";:])/g,"$1")}return C}function o(C,B,F,E,G,D){G=G||D;if(G){G=i(G);return"'"+G.replace(/\'/g,"\\'")+"'"}B=i(B||F||E);if(v){B=v.call(y,B,"style")}return"url('"+B.replace(/\'/g,"\\'")+"')"}if(s){s=s.replace(/\\[\"\';:\uFEFF]/g,t).replace(/\"[^\"]+\"|\'[^\']+\'/g,function(B){return B.replace(/[;:]/g,t)});while(q=b.exec(s)){n=q[1].replace(l,"").toLowerCase();x=q[2].replace(l,"");if(n&&x.length>0){if(n==="font-weight"&&x==="700"){x="bold"}else{if(n==="color"||n==="background-color"){x=x.toLowerCase()}}x=x.replace(k,c);x=x.replace(h,o);z[n]=r?i(x,true):x}b.lastIndex=q.index+q[0].length}p("border","");p("border","-width");p("border","-color");p("border","-style");p("padding","");p("margin","");A("border","border-width","border-style","border-color");if(z.border==="medium none"){delete z.border}}return z},serialize:function(p,r){var o="",n,q;function i(t){var x,u,s,v;x=f.styles[t];if(x){for(u=0,s=x.length;u0){o+=(o.length>0?" ":"")+t+": "+v+";"}}}}if(r&&f&&f.styles){i("*");i(r)}else{for(n in p){q=p[n];if(q!==e&&q.length>0){o+=(o.length>0?" ":"")+n+": "+q+";"}}}return o}}};(function(f){var a={},e=f.makeMap,g=f.each;function d(j,i){return j.split(i||",")}function h(m,l){var j,k={};function i(n){return n.replace(/[A-Z]+/g,function(o){return i(m[o])})}for(j in m){if(m.hasOwnProperty(j)){m[j]=i(m[j])}}i(l).replace(/#/g,"#text").replace(/(\w+)\[([^\]]+)\]\[([^\]]*)\]/g,function(q,o,n,p){n=d(n,"|");k[o]={attributes:e(n),attributesOrder:n,children:e(p,"|",{"#comment":{}})}});return k}function b(){var i=a.html5;if(!i){i=a.html5=h({A:"id|accesskey|class|dir|draggable|item|hidden|itemprop|role|spellcheck|style|subject|title|onclick|ondblclick|onmousedown|onmouseup|onmouseover|onmousemove|onmouseout|onkeypress|onkeydown|onkeyup",B:"#|a|abbr|area|audio|b|bdo|br|button|canvas|cite|code|command|datalist|del|dfn|em|embed|i|iframe|img|input|ins|kbd|keygen|label|link|map|mark|meta|meter|noscript|object|output|progress|q|ruby|samp|script|select|small|span|strong|sub|sup|svg|textarea|time|var|video|wbr",C:"#|a|abbr|area|address|article|aside|audio|b|bdo|blockquote|br|button|canvas|cite|code|command|datalist|del|details|dfn|dialog|div|dl|em|embed|fieldset|figure|footer|form|h1|h2|h3|h4|h5|h6|header|hgroup|hr|i|iframe|img|input|ins|kbd|keygen|label|link|map|mark|menu|meta|meter|nav|noscript|ol|object|output|p|pre|progress|q|ruby|samp|script|section|select|small|span|strong|style|sub|sup|svg|table|textarea|time|ul|var|video"},"html[A|manifest][body|head]head[A][base|command|link|meta|noscript|script|style|title]title[A][#]base[A|href|target][]link[A|href|rel|media|type|sizes][]meta[A|http-equiv|name|content|charset][]style[A|type|media|scoped][#]script[A|charset|type|src|defer|async][#]noscript[A][C]body[A][C]section[A][C]nav[A][C]article[A][C]aside[A][C]h1[A][B]h2[A][B]h3[A][B]h4[A][B]h5[A][B]h6[A][B]hgroup[A][h1|h2|h3|h4|h5|h6]header[A][C]footer[A][C]address[A][C]p[A][B]br[A][]pre[A][B]dialog[A][dd|dt]blockquote[A|cite][C]ol[A|start|reversed][li]ul[A][li]li[A|value][C]dl[A][dd|dt]dt[A][B]dd[A][C]a[A|href|target|ping|rel|media|type][B]em[A][B]strong[A][B]small[A][B]cite[A][B]q[A|cite][B]dfn[A][B]abbr[A][B]code[A][B]var[A][B]samp[A][B]kbd[A][B]sub[A][B]sup[A][B]i[A][B]b[A][B]mark[A][B]progress[A|value|max][B]meter[A|value|min|max|low|high|optimum][B]time[A|datetime][B]ruby[A][B|rt|rp]rt[A][B]rp[A][B]bdo[A][B]span[A][B]ins[A|cite|datetime][B]del[A|cite|datetime][B]figure[A][C|legend|figcaption]figcaption[A][C]img[A|alt|src|height|width|usemap|ismap][]iframe[A|name|src|height|width|sandbox|seamless][]embed[A|src|height|width|type][]object[A|data|type|height|width|usemap|name|form|classid][param]param[A|name|value][]details[A|open][C|legend]command[A|type|label|icon|disabled|checked|radiogroup][]menu[A|type|label][C|li]legend[A][C|B]div[A][C]source[A|src|type|media][]audio[A|src|autobuffer|autoplay|loop|controls][source]video[A|src|autobuffer|autoplay|loop|controls|width|height|poster][source]hr[A][]form[A|accept-charset|action|autocomplete|enctype|method|name|novalidate|target][C]fieldset[A|disabled|form|name][C|legend]label[A|form|for][B]input[A|type|accept|alt|autocomplete|checked|disabled|form|formaction|formenctype|formmethod|formnovalidate|formtarget|height|list|max|maxlength|min|multiple|pattern|placeholder|readonly|required|size|src|step|width|files|value|name][]button[A|autofocus|disabled|form|formaction|formenctype|formmethod|formnovalidate|formtarget|name|value|type][B]select[A|autofocus|disabled|form|multiple|name|size][option|optgroup]datalist[A][B|option]optgroup[A|disabled|label][option]option[A|disabled|selected|label|value][]textarea[A|autofocus|disabled|form|maxlength|name|placeholder|readonly|required|rows|cols|wrap][]keygen[A|autofocus|challenge|disabled|form|keytype|name][]output[A|for|form|name][B]canvas[A|width|height][]map[A|name][B|C]area[A|shape|coords|href|alt|target|media|rel|ping|type][]mathml[A][]svg[A][]table[A|border][caption|colgroup|thead|tfoot|tbody|tr]caption[A][C]colgroup[A|span][col]col[A|span][]thead[A][tr]tfoot[A][tr]tbody[A][tr]tr[A][th|td]th[A|headers|rowspan|colspan|scope][B]td[A|headers|rowspan|colspan][C]wbr[A][]")}return i}function c(){var i=a.html4;if(!i){i=a.html4=h({Z:"H|K|N|O|P",Y:"X|form|R|Q",ZG:"E|span|width|align|char|charoff|valign",X:"p|T|div|U|W|isindex|fieldset|table",ZF:"E|align|char|charoff|valign",W:"pre|hr|blockquote|address|center|noframes",ZE:"abbr|axis|headers|scope|rowspan|colspan|align|char|charoff|valign|nowrap|bgcolor|width|height",ZD:"[E][S]",U:"ul|ol|dl|menu|dir",ZC:"p|Y|div|U|W|table|br|span|bdo|object|applet|img|map|K|N|Q",T:"h1|h2|h3|h4|h5|h6",ZB:"X|S|Q",S:"R|P",ZA:"a|G|J|M|O|P",R:"a|H|K|N|O",Q:"noscript|P",P:"ins|del|script",O:"input|select|textarea|label|button",N:"M|L",M:"em|strong|dfn|code|q|samp|kbd|var|cite|abbr|acronym",L:"sub|sup",K:"J|I",J:"tt|i|b|u|s|strike",I:"big|small|font|basefont",H:"G|F",G:"br|span|bdo",F:"object|applet|img|map|iframe",E:"A|B|C",D:"accesskey|tabindex|onfocus|onblur",C:"onclick|ondblclick|onmousedown|onmouseup|onmouseover|onmousemove|onmouseout|onkeypress|onkeydown|onkeyup",B:"lang|xml:lang|dir",A:"id|class|style|title"},"script[id|charset|type|language|src|defer|xml:space][]style[B|id|type|media|title|xml:space][]object[E|declare|classid|codebase|data|type|codetype|archive|standby|width|height|usemap|name|tabindex|align|border|hspace|vspace][#|param|Y]param[id|name|value|valuetype|type][]p[E|align][#|S]a[E|D|charset|type|name|href|hreflang|rel|rev|shape|coords|target][#|Z]br[A|clear][]span[E][#|S]bdo[A|C|B][#|S]applet[A|codebase|archive|code|object|alt|name|width|height|align|hspace|vspace][#|param|Y]h1[E|align][#|S]img[E|src|alt|name|longdesc|width|height|usemap|ismap|align|border|hspace|vspace][]map[B|C|A|name][X|form|Q|area]h2[E|align][#|S]iframe[A|longdesc|name|src|frameborder|marginwidth|marginheight|scrolling|align|width|height][#|Y]h3[E|align][#|S]tt[E][#|S]i[E][#|S]b[E][#|S]u[E][#|S]s[E][#|S]strike[E][#|S]big[E][#|S]small[E][#|S]font[A|B|size|color|face][#|S]basefont[id|size|color|face][]em[E][#|S]strong[E][#|S]dfn[E][#|S]code[E][#|S]q[E|cite][#|S]samp[E][#|S]kbd[E][#|S]var[E][#|S]cite[E][#|S]abbr[E][#|S]acronym[E][#|S]sub[E][#|S]sup[E][#|S]input[E|D|type|name|value|checked|disabled|readonly|size|maxlength|src|alt|usemap|onselect|onchange|accept|align][]select[E|name|size|multiple|disabled|tabindex|onfocus|onblur|onchange][optgroup|option]optgroup[E|disabled|label][option]option[E|selected|disabled|label|value][]textarea[E|D|name|rows|cols|disabled|readonly|onselect|onchange][]label[E|for|accesskey|onfocus|onblur][#|S]button[E|D|name|value|type|disabled][#|p|T|div|U|W|table|G|object|applet|img|map|K|N|Q]h4[E|align][#|S]ins[E|cite|datetime][#|Y]h5[E|align][#|S]del[E|cite|datetime][#|Y]h6[E|align][#|S]div[E|align][#|Y]ul[E|type|compact][li]li[E|type|value][#|Y]ol[E|type|compact|start][li]dl[E|compact][dt|dd]dt[E][#|S]dd[E][#|Y]menu[E|compact][li]dir[E|compact][li]pre[E|width|xml:space][#|ZA]hr[E|align|noshade|size|width][]blockquote[E|cite][#|Y]address[E][#|S|p]center[E][#|Y]noframes[E][#|Y]isindex[A|B|prompt][]fieldset[E][#|legend|Y]legend[E|accesskey|align][#|S]table[E|summary|width|border|frame|rules|cellspacing|cellpadding|align|bgcolor][caption|col|colgroup|thead|tfoot|tbody|tr]caption[E|align][#|S]col[ZG][]colgroup[ZG][col]thead[ZF][tr]tr[ZF|bgcolor][th|td]th[E|ZE][#|Y]form[E|action|method|name|enctype|onsubmit|onreset|accept|accept-charset|target][#|X|R|Q]noscript[E][#|Y]td[E|ZE][#|Y]tfoot[ZF][tr]tbody[ZF][tr]area[E|D|shape|coords|href|nohref|alt|target][]base[id|href|target][]body[E|onload|onunload|background|bgcolor|text|link|vlink|alink][#|Y]")}return i}f.html.Schema=function(A){var u=this,s={},k={},j=[],D,y;var o,q,z,r,v,n,p={};function m(F,E,H){var G=A[F];if(!G){G=a[F];if(!G){G=e(E," ",e(E.toUpperCase()," "));G=f.extend(G,H);a[F]=G}}else{G=e(G,",",e(G.toUpperCase()," "))}return G}A=A||{};y=A.schema=="html5"?b():c();if(A.verify_html===false){A.valid_elements="*[*]"}if(A.valid_styles){D={};g(A.valid_styles,function(F,E){D[E]=f.explode(F)})}o=m("whitespace_elements","pre script style textarea");q=m("self_closing_elements","colgroup dd dt li option p td tfoot th thead tr");z=m("short_ended_elements","area base basefont br col frame hr img input isindex link meta param embed source wbr");r=m("boolean_attributes","checked compact declare defer disabled ismap multiple nohref noresize noshade nowrap readonly selected autoplay loop controls");n=m("non_empty_elements","td th iframe video audio object",z);v=m("block_elements","h1 h2 h3 h4 h5 h6 hr p div address pre form table tbody thead tfoot th tr td li ol ul caption blockquote center dl dt dd dir fieldset noscript menu isindex samp header footer article section hgroup aside nav figure option datalist select optgroup");function i(E){return new RegExp("^"+E.replace(/([?+*])/g,".$1")+"$")}function C(L){var K,G,Z,V,aa,F,I,U,X,Q,Y,ac,O,J,W,E,S,H,ab,ad,P,T,N=/^([#+\-])?([^\[\/]+)(?:\/([^\[]+))?(?:\[([^\]]+)\])?$/,R=/^([!\-])?(\w+::\w+|[^=:<]+)?(?:([=:<])(.*))?$/,M=/[*?+]/;if(L){L=d(L);if(s["@"]){S=s["@"].attributes;H=s["@"].attributesOrder}for(K=0,G=L.length;K=0){for(U=A.length-1;U>=V;U--){T=A[U];if(T.valid){n.end(T.name)}}A.length=V}}function p(U,T,Y,X,W){var Z,V;T=T.toLowerCase();Y=T in H?T:j(Y||X||W||"");if(v&&!z&&T.indexOf("data-")!==0){Z=P[T];if(!Z&&F){V=F.length;while(V--){Z=F[V];if(Z.pattern.test(T)){break}}if(V===-1){Z=null}}if(!Z){return}if(Z.validValues&&!(Y in Z.validValues)){return}}N.map[T]=Y;N.push({name:T,value:Y})}l=new RegExp("<(?:(?:!--([\\w\\W]*?)-->)|(?:!\\[CDATA\\[([\\w\\W]*?)\\]\\]>)|(?:!DOCTYPE([\\w\\W]*?)>)|(?:\\?([^\\s\\/<>]+) ?([\\w\\W]*?)[?/]>)|(?:\\/([^>]+)>)|(?:([A-Za-z0-9\\-\\:]+)((?:\\s+[^\"'>]+(?:(?:\"[^\"]*\")|(?:'[^']*')|[^>]*))*|\\/|\\s+)>))","g");D=/([\w:\-]+)(?:\s*=\s*(?:(?:\"((?:\\.|[^\"])*)\")|(?:\'((?:\\.|[^\'])*)\')|([^>\s]+)))?/g;K={script:/<\/script[^>]*>/gi,style:/<\/style[^>]*>/gi,noscript:/<\/noscript[^>]*>/gi};M=e.getShortEndedElements();J=c.self_closing_elements||e.getSelfClosingElements();H=e.getBoolAttrs();v=c.validate;s=c.remove_internals;y=c.fix_self_closing;q=a.isIE;o=/^:/;while(g=l.exec(E)){if(G0&&A[A.length-1].name===I){u(I)}if(!v||(m=e.getElementRule(I))){k=true;if(v){P=m.attributes;F=m.attributePatterns}if(R=g[8]){z=R.indexOf("data-mce-type")!==-1;if(z&&s){k=false}N=[];N.map={};R.replace(D,p)}else{N=[];N.map={}}if(v&&!z){S=m.attributesRequired;L=m.attributesDefault;f=m.attributesForced;if(f){Q=f.length;while(Q--){t=f[Q];r=t.name;h=t.value;if(h==="{$uid}"){h="mce_"+x++}N.map[r]=h;N.push({name:r,value:h})}}if(L){Q=L.length;while(Q--){t=L[Q];r=t.name;if(!(r in N.map)){h=t.value;if(h==="{$uid}"){h="mce_"+x++}N.map[r]=h;N.push({name:r,value:h})}}}if(S){Q=S.length;while(Q--){if(S[Q] in N.map){break}}if(Q===-1){k=false}}if(N.map["data-mce-bogus"]){k=false}}if(k){n.start(I,N,O)}}else{k=false}if(B=K[I]){B.lastIndex=G=g.index+g[0].length;if(g=B.exec(E)){if(k){C=E.substr(G,g.index-G)}G=g.index+g[0].length}else{C=E.substr(G);G=E.length}if(k&&C.length>0){n.text(C,true)}if(k){n.end(I)}l.lastIndex=G;continue}if(!O){if(!R||R.indexOf("/")!=R.length-1){A.push({name:I,valid:k})}else{if(k){n.end(I)}}}}else{if(I=g[1]){n.comment(I)}else{if(I=g[2]){n.cdata(I)}else{if(I=g[3]){n.doctype(I)}else{if(I=g[4]){n.pi(I,g[5])}}}}}}G=g.index+g[0].length}if(G=0;Q--){I=A[Q];if(I.valid){n.end(I.name)}}}}})(tinymce);(function(d){var c=/^[ \t\r\n]*$/,e={"#text":3,"#comment":8,"#cdata":4,"#pi":7,"#doctype":10,"#document-fragment":11};function a(k,l,j){var i,h,f=j?"lastChild":"firstChild",g=j?"prev":"next";if(k[f]){return k[f]}if(k!==l){i=k[g];if(i){return i}for(h=k.parent;h&&h!==l;h=h.parent){i=h[g];if(i){return i}}}}function b(f,g){this.name=f;this.type=g;if(g===1){this.attributes=[];this.attributes.map={}}}d.extend(b.prototype,{replace:function(g){var f=this;if(g.parent){g.remove()}f.insert(g,f);f.remove();return f},attr:function(h,l){var f=this,g,j,k;if(typeof h!=="string"){for(j in h){f.attr(j,h[j])}return f}if(g=f.attributes){if(l!==k){if(l===null){if(h in g.map){delete g.map[h];j=g.length;while(j--){if(g[j].name===h){g=g.splice(j,1);return f}}}return f}if(h in g.map){j=g.length;while(j--){if(g[j].name===h){g[j].value=l;break}}}else{g.push({name:h,value:l})}g.map[h]=l;return f}else{return g.map[h]}}},clone:function(){var g=this,n=new b(g.name,g.type),h,f,m,j,k;if(m=g.attributes){k=[];k.map={};for(h=0,f=m.length;h1){v.reverse();z=n=f.filterNode(v[0].clone());for(t=0;t0){Q.value=l;Q=Q.prev}else{O=Q.prev;Q.remove();Q=O}}}function H(O){var P,l={};for(P in O){if(P!=="li"&&P!="p"){l[P]=O[P]}}return l}n=new b.html.SaxParser({validate:z,self_closing_elements:H(h.getSelfClosingElements()),cdata:function(l){B.append(K("#cdata",4)).value=l},text:function(P,l){var O;if(!L){P=P.replace(k," ");if(B.lastChild&&o[B.lastChild.name]){P=P.replace(E,"")}}if(P.length!==0){O=K("#text",3);O.raw=!!l;B.append(O).value=P}},comment:function(l){B.append(K("#comment",8)).value=l},pi:function(l,O){B.append(K(l,7)).value=O;I(B)},doctype:function(O){var l;l=B.append(K("#doctype",10));l.value=O;I(B)},start:function(l,W,P){var U,R,Q,O,S,X,V,T;Q=z?h.getElementRule(l):{};if(Q){U=K(Q.outputName||l,1);U.attributes=W;U.shortEnded=P;B.append(U);T=p[B.name];if(T&&p[U.name]&&!T[U.name]){M.push(U)}R=d.length;while(R--){S=d[R].name;if(S in W.map){F=c[S];if(F){F.push(U)}else{c[S]=[U]}}}if(o[l]){I(U)}if(!P){B=U}if(!L&&s[l]){L=true}}},end:function(l){var S,P,R,O,Q;P=z?h.getElementRule(l):{};if(P){if(o[l]){if(!L){S=B.firstChild;if(S&&S.type===3){R=S.value.replace(E,"");if(R.length>0){S.value=R;S=S.next}else{O=S.next;S.remove();S=O}while(S&&S.type===3){R=S.value;O=S.next;if(R.length===0||y.test(R)){S.remove();S=O}S=O}}S=B.lastChild;if(S&&S.type===3){R=S.value.replace(t,"");if(R.length>0){S.value=R;S=S.prev}else{O=S.prev;S.remove();S=O}while(S&&S.type===3){R=S.value;O=S.prev;if(R.length===0||y.test(R)){S.remove();S=O}S=O}}}S=B.prev;if(S&&S.type===3){R=S.value.replace(E,"");if(R.length>0){S.value=R}else{S.remove()}}}if(L&&s[l]){L=false}if(P.removeEmpty||P.paddEmpty){if(B.isEmpty(u)){if(P.paddEmpty){B.empty().append(new a("#text","3")).value="\u00a0"}else{if(!B.attributes.map.name&&!B.attributes.map.id){Q=B.parent;B.empty().remove();B=Q;return}}}}B=B.parent}}},h);J=B=new a(m.context||g.root_name,11);n.parse(v);if(z&&M.length){if(!m.context){j(M)}else{m.invalid=true}}if(q&&J.name=="body"){G()}if(!m.invalid){for(N in i){F=e[N];A=i[N];x=A.length;while(x--){if(!A[x].parent){A.splice(x,1)}}for(D=0,C=F.length;D0){o=c[c.length-1];if(o.length>0&&o!=="\n"){c.push("\n")}}c.push("<",m);if(k){for(n=0,j=k.length;n0){o=c[c.length-1];if(o.length>0&&o!=="\n"){c.push("\n")}}},end:function(h){var i;c.push("");if(a&&d[h]&&c.length>0){i=c[c.length-1];if(i.length>0&&i!=="\n"){c.push("\n")}}},text:function(i,h){if(i.length>0){c[c.length]=h?i:f(i)}},cdata:function(h){c.push("")},comment:function(h){c.push("")},pi:function(h,i){if(i){c.push("")}else{c.push("")}if(a){c.push("\n")}},doctype:function(h){c.push("",a?"\n":"")},reset:function(){c.length=0},getContent:function(){return c.join("").replace(/\n$/,"")}}};(function(a){a.html.Serializer=function(c,d){var b=this,e=new a.html.Writer(c);c=c||{};c.validate="validate" in c?c.validate:true;b.schema=d=d||new a.html.Schema();b.writer=e;b.serialize=function(h){var g,i;i=c.validate;g={3:function(k,j){e.text(k.value,k.raw)},8:function(j){e.comment(j.value)},7:function(j){e.pi(j.name,j.value)},10:function(j){e.doctype(j.value)},4:function(j){e.cdata(j.value)},11:function(j){if((j=j.firstChild)){do{f(j)}while(j=j.next)}}};e.reset();function f(k){var t=g[k.type],j,o,s,r,p,u,n,m,q;if(!t){j=k.name;o=k.shortEnded;s=k.attributes;if(i&&s&&s.length>1){u=[];u.map={};q=d.getElementRule(k.name);for(n=0,m=q.attributesOrder.length;n=8;k.boxModel=!e.isIE||o.compatMode=="CSS1Compat"||k.stdMode;k.hasOuterHTML="outerHTML" in o.createElement("a");k.settings=l=e.extend({keep_values:false,hex_colors:1},l);k.schema=l.schema;k.styles=new e.html.Styles({url_converter:l.url_converter,url_converter_scope:l.url_converter_scope},l.schema);if(e.isIE6){try{o.execCommand("BackgroundImageCache",false,true)}catch(m){k.cssFlicker=true}}k.fixDoc(o);k.events=l.ownEvents?new e.dom.EventUtils(l.proxy):e.dom.Event;e.addUnload(k.destroy,k);n=l.schema?l.schema.getBlockElements():{};k.isBlock=function(q){var p=q.nodeType;if(p){return !!(p===1&&n[q.nodeName])}return !!n[q]}},fixDoc:function(k){var j=this.settings,i;if(b&&j.schema){("abbr article aside audio canvas details figcaption figure footer header hgroup mark menu meter nav output progress section summary time video").replace(/\w+/g,function(l){k.createElement(l)});for(i in j.schema.getCustomElements()){k.createElement(i)}}},clone:function(k,i){var j=this,m,l;if(!b||k.nodeType!==1||i){return k.cloneNode(i)}l=j.doc;if(!i){m=l.createElement(k.nodeName);g(j.getAttribs(k),function(n){j.setAttrib(m,n.nodeName,j.getAttrib(k,n.nodeName))});return m}return m.firstChild},getRoot:function(){var i=this,j=i.settings;return(j&&i.get(j.root_element))||i.doc.body},getViewPort:function(j){var k,i;j=!j?this.win:j;k=j.document;i=this.boxModel?k.documentElement:k.body;return{x:j.pageXOffset||i.scrollLeft,y:j.pageYOffset||i.scrollTop,w:j.innerWidth||i.clientWidth,h:j.innerHeight||i.clientHeight}},getRect:function(l){var k,i=this,j;l=i.get(l);k=i.getPos(l);j=i.getSize(l);return{x:k.x,y:k.y,w:j.w,h:j.h}},getSize:function(l){var j=this,i,k;l=j.get(l);i=j.getStyle(l,"width");k=j.getStyle(l,"height");if(i.indexOf("px")===-1){i=0}if(k.indexOf("px")===-1){k=0}return{w:parseInt(i,10)||l.offsetWidth||l.clientWidth,h:parseInt(k,10)||l.offsetHeight||l.clientHeight}},getParent:function(k,j,i){return this.getParents(k,j,i,false)},getParents:function(s,m,k,q){var j=this,i,l=j.settings,p=[];s=j.get(s);q=q===undefined;if(l.strict_root){k=k||j.getRoot()}if(d(m,"string")){i=m;if(m==="*"){m=function(o){return o.nodeType==1}}else{m=function(o){return j.is(o,i)}}}while(s){if(s==k||!s.nodeType||s.nodeType===9){break}if(!m||m(s)){if(q){p.push(s)}else{return s}}s=s.parentNode}return q?p:null},get:function(i){var j;if(i&&this.doc&&typeof(i)=="string"){j=i;i=this.doc.getElementById(i);if(i&&i.id!==j){return this.doc.getElementsByName(j)[1]}}return i},getNext:function(j,i){return this._findSib(j,i,"nextSibling")},getPrev:function(j,i){return this._findSib(j,i,"previousSibling")},select:function(k,j){var i=this;return e.dom.Sizzle(k,i.get(j)||i.get(i.settings.root_element)||i.doc,[])},is:function(l,j){var k;if(l.length===undefined){if(j==="*"){return l.nodeType==1}if(c.test(j)){j=j.toLowerCase().split(/,/);l=l.nodeName.toLowerCase();for(k=j.length-1;k>=0;k--){if(j[k]==l){return true}}return false}}return e.dom.Sizzle.matches(j,l.nodeType?[l]:l).length>0},add:function(l,o,i,k,m){var j=this;return this.run(l,function(r){var q,n;q=d(o,"string")?j.doc.createElement(o):o;j.setAttribs(q,i);if(k){if(k.nodeType){q.appendChild(k)}else{j.setHTML(q,k)}}return !m?r.appendChild(q):q})},create:function(k,i,j){return this.add(this.doc.createElement(k),k,i,j,1)},createHTML:function(q,i,m){var p="",l=this,j;p+="<"+q;for(j in i){if(i.hasOwnProperty(j)){p+=" "+j+'="'+l.encode(i[j])+'"'}}if(typeof(m)!="undefined"){return p+">"+m+""}return p+" />"},remove:function(i,j){return this.run(i,function(l){var m,k=l.parentNode;if(!k){return null}if(j){while(m=l.firstChild){if(!e.isIE||m.nodeType!==3||m.nodeValue){k.insertBefore(m,l)}else{l.removeChild(m)}}}return k.removeChild(l)})},setStyle:function(l,i,j){var k=this;return k.run(l,function(o){var n,m;n=o.style;i=i.replace(/-(\D)/g,function(q,p){return p.toUpperCase()});if(k.pixelStyles.test(i)&&(e.is(j,"number")||/^[\-0-9\.]+$/.test(j))){j+="px"}switch(i){case"opacity":if(b){n.filter=j===""?"":"alpha(opacity="+(j*100)+")";if(!l.currentStyle||!l.currentStyle.hasLayout){n.display="inline-block"}}n[i]=n["-moz-opacity"]=n["-khtml-opacity"]=j||"";break;case"float":b?n.styleFloat=j:n.cssFloat=j;break;default:n[i]=j||""}if(k.settings.update_styles){k.setAttrib(o,"data-mce-style")}})},getStyle:function(l,i,k){l=this.get(l);if(!l){return}if(this.doc.defaultView&&k){i=i.replace(/[A-Z]/g,function(m){return"-"+m});try{return this.doc.defaultView.getComputedStyle(l,null).getPropertyValue(i)}catch(j){return null}}i=i.replace(/-(\D)/g,function(n,m){return m.toUpperCase()});if(i=="float"){i=b?"styleFloat":"cssFloat"}if(l.currentStyle&&k){return l.currentStyle[i]}return l.style?l.style[i]:undefined},setStyles:function(l,m){var j=this,k=j.settings,i;i=k.update_styles;k.update_styles=0;g(m,function(o,p){j.setStyle(l,p,o)});k.update_styles=i;if(k.update_styles){j.setAttrib(l,k.cssText)}},removeAllAttribs:function(i){return this.run(i,function(l){var k,j=l.attributes;for(k=j.length-1;k>=0;k--){l.removeAttributeNode(j.item(k))}})},setAttrib:function(k,l,i){var j=this;if(!k||!l){return}if(j.settings.strict){l=l.toLowerCase()}return this.run(k,function(p){var o=j.settings;var m=p.getAttribute(l);if(i!==null){switch(l){case"style":if(!d(i,"string")){g(i,function(q,r){j.setStyle(p,r,q)});return}if(o.keep_values){if(i&&!j._isRes(i)){p.setAttribute("data-mce-style",i,2)}else{p.removeAttribute("data-mce-style",2)}}p.style.cssText=i;break;case"class":p.className=i||"";break;case"src":case"href":if(o.keep_values){if(o.url_converter){i=o.url_converter.call(o.url_converter_scope||j,i,l,p)}j.setAttrib(p,"data-mce-"+l,i,2)}break;case"shape":p.setAttribute("data-mce-style",i);break}}if(d(i)&&i!==null&&i.length!==0){p.setAttribute(l,""+i,2)}else{p.removeAttribute(l,2)}if(tinyMCE.activeEditor&&m!=i){var n=tinyMCE.activeEditor;n.onSetAttrib.dispatch(n,p,l,i)}})},setAttribs:function(j,k){var i=this;return this.run(j,function(l){g(k,function(m,o){i.setAttrib(l,o,m)})})},getAttrib:function(m,o,k){var i,j=this,l;m=j.get(m);if(!m||m.nodeType!==1){return k===l?false:k}if(!d(k)){k=""}if(/^(src|href|style|coords|shape)$/.test(o)){i=m.getAttribute("data-mce-"+o);if(i){return i}}if(b&&j.props[o]){i=m[j.props[o]];i=i&&i.nodeValue?i.nodeValue:i}if(!i){i=m.getAttribute(o,2)}if(/^(checked|compact|declare|defer|disabled|ismap|multiple|nohref|noshade|nowrap|readonly|selected)$/.test(o)){if(m[j.props[o]]===true&&i===""){return o}return i?o:""}if(m.nodeName==="FORM"&&m.getAttributeNode(o)){return m.getAttributeNode(o).nodeValue}if(o==="style"){i=i||m.style.cssText;if(i){i=j.serializeStyle(j.parseStyle(i),m.nodeName);if(j.settings.keep_values&&!j._isRes(i)){m.setAttribute("data-mce-style",i)}}}if(f&&o==="class"&&i){i=i.replace(/(apple|webkit)\-[a-z\-]+/gi,"")}if(b){switch(o){case"rowspan":case"colspan":if(i===1){i=""}break;case"size":if(i==="+0"||i===20||i===0){i=""}break;case"width":case"height":case"vspace":case"checked":case"disabled":case"readonly":if(i===0){i=""}break;case"hspace":if(i===-1){i=""}break;case"maxlength":case"tabindex":if(i===32768||i===2147483647||i==="32768"){i=""}break;case"multiple":case"compact":case"noshade":case"nowrap":if(i===65535){return o}return k;case"shape":i=i.toLowerCase();break;default:if(o.indexOf("on")===0&&i){i=e._replace(/^function\s+\w+\(\)\s+\{\s+(.*)\s+\}$/,"$1",""+i)}}}return(i!==l&&i!==null&&i!=="")?""+i:k},getPos:function(q,l){var j=this,i=0,p=0,m,o=j.doc,k;q=j.get(q);l=l||o.body;if(q){if(q.getBoundingClientRect){q=q.getBoundingClientRect();m=j.boxModel?o.documentElement:o.body;i=q.left+(o.documentElement.scrollLeft||o.body.scrollLeft)-m.clientTop;p=q.top+(o.documentElement.scrollTop||o.body.scrollTop)-m.clientLeft;return{x:i,y:p}}k=q;while(k&&k!=l&&k.nodeType){i+=k.offsetLeft||0;p+=k.offsetTop||0;k=k.offsetParent}k=q.parentNode;while(k&&k!=l&&k.nodeType){i-=k.scrollLeft||0;p-=k.scrollTop||0;k=k.parentNode}}return{x:i,y:p}},parseStyle:function(i){return this.styles.parse(i)},serializeStyle:function(j,i){return this.styles.serialize(j,i)},addStyle:function(j){var k=this.doc,i;styleElm=k.getElementById("mceDefaultStyles");if(!styleElm){styleElm=k.createElement("style"),styleElm.id="mceDefaultStyles";styleElm.type="text/css";i=k.getElementsByTagName("head")[0];if(i.firstChild){i.insertBefore(styleElm,i.firstChild)}else{i.appendChild(styleElm)}}if(styleElm.styleSheet){styleElm.styleSheet.cssText+=j}else{styleElm.appendChild(k.createTextNode(j))}},loadCSS:function(i){var k=this,l=k.doc,j;if(!i){i=""}j=l.getElementsByTagName("head")[0];g(i.split(","),function(m){var n;if(k.files[m]){return}k.files[m]=true;n=k.create("link",{rel:"stylesheet",href:e._addVer(m)});if(b&&l.documentMode&&l.recalc){n.onload=function(){if(l.recalc){l.recalc()}n.onload=null}}j.appendChild(n)})},addClass:function(i,j){return this.run(i,function(k){var l;if(!j){return 0}if(this.hasClass(k,j)){return k.className}l=this.removeClass(k,j);return k.className=(l!=""?(l+" "):"")+j})},removeClass:function(k,l){var i=this,j;return i.run(k,function(n){var m;if(i.hasClass(n,l)){if(!j){j=new RegExp("(^|\\s+)"+l+"(\\s+|$)","g")}m=n.className.replace(j," ");m=e.trim(m!=" "?m:"");n.className=m;if(!m){n.removeAttribute("class");n.removeAttribute("className")}return m}return n.className})},hasClass:function(j,i){j=this.get(j);if(!j||!i){return false}return(" "+j.className+" ").indexOf(" "+i+" ")!==-1},show:function(i){return this.setStyle(i,"display","block")},hide:function(i){return this.setStyle(i,"display","none")},isHidden:function(i){i=this.get(i);return !i||i.style.display=="none"||this.getStyle(i,"display")=="none"},uniqueId:function(i){return(!i?"mce_":i)+(this.counter++)},setHTML:function(k,j){var i=this;return i.run(k,function(m){if(b){while(m.firstChild){m.removeChild(m.firstChild)}try{m.innerHTML="
        "+j;m.removeChild(m.firstChild)}catch(l){var n=i.create("div");n.innerHTML="
        "+j;g(e.grep(n.childNodes),function(p,o){if(o&&m.canHaveHTML){m.appendChild(p)}})}}else{m.innerHTML=j}return j})},getOuterHTML:function(k){var j,i=this;k=i.get(k);if(!k){return null}if(k.nodeType===1&&i.hasOuterHTML){return k.outerHTML}j=(k.ownerDocument||i.doc).createElement("body");j.appendChild(k.cloneNode(true));return j.innerHTML},setOuterHTML:function(l,j,m){var i=this;function k(p,o,r){var s,q;q=r.createElement("body");q.innerHTML=o;s=q.lastChild;while(s){i.insertAfter(s.cloneNode(true),p);s=s.previousSibling}i.remove(p)}return this.run(l,function(o){o=i.get(o);if(o.nodeType==1){m=m||o.ownerDocument||i.doc;if(b){try{if(b&&o.nodeType==1){o.outerHTML=j}else{k(o,j,m)}}catch(n){k(o,j,m)}}else{k(o,j,m)}}})},decode:h.decode,encode:h.encodeAllRaw,insertAfter:function(i,j){j=this.get(j);return this.run(i,function(l){var k,m;k=j.parentNode;m=j.nextSibling;if(m){k.insertBefore(l,m)}else{k.appendChild(l)}return l})},replace:function(m,l,i){var j=this;if(d(l,"array")){m=m.cloneNode(true)}return j.run(l,function(k){if(i){g(e.grep(k.childNodes),function(n){m.appendChild(n)})}return k.parentNode.replaceChild(m,k)})},rename:function(l,i){var k=this,j;if(l.nodeName!=i.toUpperCase()){j=k.create(i);g(k.getAttribs(l),function(m){k.setAttrib(j,m.nodeName,k.getAttrib(l,m.nodeName))});k.replace(j,l,1)}return j||l},findCommonAncestor:function(k,i){var l=k,j;while(l){j=i;while(j&&l!=j){j=j.parentNode}if(l==j){break}l=l.parentNode}if(!l&&k.ownerDocument){return k.ownerDocument.documentElement}return l},toHex:function(i){var k=/^\s*rgb\s*?\(\s*?([0-9]+)\s*?,\s*?([0-9]+)\s*?,\s*?([0-9]+)\s*?\)\s*$/i.exec(i);function j(l){l=parseInt(l,10).toString(16);return l.length>1?l:"0"+l}if(k){i="#"+j(k[1])+j(k[2])+j(k[3]);return i}return i},getClasses:function(){var n=this,j=[],m,o={},p=n.settings.class_filter,l;if(n.classes){return n.classes}function q(i){g(i.imports,function(s){q(s)});g(i.cssRules||i.rules,function(s){switch(s.type||1){case 1:if(s.selectorText){g(s.selectorText.split(","),function(r){r=r.replace(/^\s*|\s*$|^\s\./g,"");if(/\.mce/.test(r)||!/\.[\w\-]+$/.test(r)){return}l=r;r=e._replace(/.*\.([a-z0-9_\-]+).*/i,"$1",r);if(p&&!(r=p(r,l))){return}if(!o[r]){j.push({"class":r});o[r]=1}})}break;case 3:q(s.styleSheet);break}})}try{g(n.doc.styleSheets,q)}catch(k){}if(j.length>0){n.classes=j}return j},run:function(l,k,j){var i=this,m;if(i.doc&&typeof(l)==="string"){l=i.get(l)}if(!l){return false}j=j||this;if(!l.nodeType&&(l.length||l.length===0)){m=[];g(l,function(o,n){if(o){if(typeof(o)=="string"){o=i.doc.getElementById(o)}m.push(k.call(j,o,n))}});return m}return k.call(j,l)},getAttribs:function(j){var i;j=this.get(j);if(!j){return[]}if(b){i=[];if(j.nodeName=="OBJECT"){return j.attributes}if(j.nodeName==="OPTION"&&this.getAttrib(j,"selected")){i.push({specified:1,nodeName:"selected"})}j.cloneNode(false).outerHTML.replace(/<\/?[\w:\-]+ ?|=[\"][^\"]+\"|=\'[^\']+\'|=[\w\-]+|>/gi,"").replace(/[\w:\-]+/gi,function(k){i.push({specified:1,nodeName:k})});return i}return j.attributes},isEmpty:function(m,k){var r=this,o,n,q,j,l,p=0;m=m.firstChild;if(m){j=new e.dom.TreeWalker(m,m.parentNode);k=k||r.schema?r.schema.getNonEmptyElements():null;do{q=m.nodeType;if(q===1){if(m.getAttribute("data-mce-bogus")){continue}l=m.nodeName.toLowerCase();if(k&&k[l]){if(l==="br"){p++;continue}return false}n=r.getAttribs(m);o=m.attributes.length;while(o--){l=m.attributes[o].nodeName;if(l==="name"||l==="data-mce-bookmark"){return false}}}if(q==8){return false}if((q===3&&!a.test(m.nodeValue))){return false}}while(m=j.next())}return p<=1},destroy:function(j){var i=this;i.win=i.doc=i.root=i.events=i.frag=null;if(!j){e.removeUnload(i.destroy)}},createRng:function(){var i=this.doc;return i.createRange?i.createRange():new e.dom.Range(this)},nodeIndex:function(m,n){var i=0,k,l,j;if(m){for(k=m.nodeType,m=m.previousSibling,l=m;m;m=m.previousSibling){j=m.nodeType;if(n&&j==3){if(j==k||!m.nodeValue.length){continue}}i++;k=j}}return i},split:function(m,l,p){var q=this,i=q.createRng(),n,k,o;function j(v){var t,s=v.childNodes,u=v.nodeType;function x(A){var z=A.previousSibling&&A.previousSibling.nodeName=="SPAN";var y=A.nextSibling&&A.nextSibling.nodeName=="SPAN";return z&&y}if(u==1&&v.getAttribute("data-mce-type")=="bookmark"){return}for(t=s.length-1;t>=0;t--){j(s[t])}if(u!=9){if(u==3&&v.nodeValue.length>0){var r=e.trim(v.nodeValue).length;if(!q.isBlock(v.parentNode)||r>0||r===0&&x(v)){return}}else{if(u==1){s=v.childNodes;if(s.length==1&&s[0]&&s[0].nodeType==1&&s[0].getAttribute("data-mce-type")=="bookmark"){v.parentNode.insertBefore(s[0],v)}if(s.length||/^(br|hr|input|img)$/i.test(v.nodeName)){return}}}q.remove(v)}return v}if(m&&l){i.setStart(m.parentNode,q.nodeIndex(m));i.setEnd(l.parentNode,q.nodeIndex(l));n=i.extractContents();i=q.createRng();i.setStart(l.parentNode,q.nodeIndex(l)+1);i.setEnd(m.parentNode,q.nodeIndex(m)+1);k=i.extractContents();o=m.parentNode;o.insertBefore(j(n),m);if(p){o.replaceChild(p,l)}else{o.insertBefore(l,m)}o.insertBefore(j(k),m);q.remove(m);return p||l}},bind:function(l,i,k,j){return this.events.add(l,i,k,j||this)},unbind:function(k,i,j){return this.events.remove(k,i,j)},fire:function(k,j,i){return this.events.fire(k,j,i)},getContentEditable:function(j){var i;if(j.nodeType!=1){return null}i=j.getAttribute("data-mce-contenteditable");if(i&&i!=="inherit"){return i}return j.contentEditable!=="inherit"?j.contentEditable:null},_findSib:function(l,i,j){var k=this,m=i;if(l){if(d(m,"string")){m=function(n){return k.is(n,i)}}for(l=l[j];l;l=l[j]){if(m(l)){return l}}}return null},_isRes:function(i){return/^(top|left|bottom|right|width|height)/i.test(i)||/;\s*(top|left|bottom|right|width|height)/i.test(i)}});e.DOM=new e.dom.DOMUtils(document,{process_html:0})})(tinymce);(function(a){function b(c){var O=this,e=c.doc,U=0,F=1,j=2,E=true,S=false,W="startOffset",h="startContainer",Q="endContainer",A="endOffset",k=tinymce.extend,n=c.nodeIndex;k(O,{startContainer:e,startOffset:0,endContainer:e,endOffset:0,collapsed:E,commonAncestorContainer:e,START_TO_START:0,START_TO_END:1,END_TO_END:2,END_TO_START:3,setStart:q,setEnd:s,setStartBefore:g,setStartAfter:J,setEndBefore:K,setEndAfter:u,collapse:B,selectNode:y,selectNodeContents:G,compareBoundaryPoints:v,deleteContents:p,extractContents:I,cloneContents:d,insertNode:D,surroundContents:N,cloneRange:L,toStringIE:T});function x(){return e.createDocumentFragment()}function q(X,t){C(E,X,t)}function s(X,t){C(S,X,t)}function g(t){q(t.parentNode,n(t))}function J(t){q(t.parentNode,n(t)+1)}function K(t){s(t.parentNode,n(t))}function u(t){s(t.parentNode,n(t)+1)}function B(t){if(t){O[Q]=O[h];O[A]=O[W]}else{O[h]=O[Q];O[W]=O[A]}O.collapsed=E}function y(t){g(t);u(t)}function G(t){q(t,0);s(t,t.nodeType===1?t.childNodes.length:t.nodeValue.length)}function v(aa,t){var ad=O[h],Y=O[W],ac=O[Q],X=O[A],ab=t.startContainer,af=t.startOffset,Z=t.endContainer,ae=t.endOffset;if(aa===0){return H(ad,Y,ab,af)}if(aa===1){return H(ac,X,ab,af)}if(aa===2){return H(ac,X,Z,ae)}if(aa===3){return H(ad,Y,Z,ae)}}function p(){l(j)}function I(){return l(U)}function d(){return l(F)}function D(aa){var X=this[h],t=this[W],Z,Y;if((X.nodeType===3||X.nodeType===4)&&X.nodeValue){if(!t){X.parentNode.insertBefore(aa,X)}else{if(t>=X.nodeValue.length){c.insertAfter(aa,X)}else{Z=X.splitText(t);X.parentNode.insertBefore(aa,Z)}}}else{if(X.childNodes.length>0){Y=X.childNodes[t]}if(Y){X.insertBefore(aa,Y)}else{X.appendChild(aa)}}}function N(X){var t=O.extractContents();O.insertNode(X);X.appendChild(t);O.selectNode(X)}function L(){return k(new b(c),{startContainer:O[h],startOffset:O[W],endContainer:O[Q],endOffset:O[A],collapsed:O.collapsed,commonAncestorContainer:O.commonAncestorContainer})}function P(t,X){var Y;if(t.nodeType==3){return t}if(X<0){return t}Y=t.firstChild;while(Y&&X>0){--X;Y=Y.nextSibling}if(Y){return Y}return t}function m(){return(O[h]==O[Q]&&O[W]==O[A])}function H(Z,ab,X,aa){var ac,Y,t,ad,af,ae;if(Z==X){if(ab==aa){return 0}if(ab0){O.collapse(X)}}else{O.collapse(X)}O.collapsed=m();O.commonAncestorContainer=c.findCommonAncestor(O[h],O[Q])}function l(ad){var ac,Z=0,af=0,X,ab,Y,aa,t,ae;if(O[h]==O[Q]){return f(ad)}for(ac=O[Q],X=ac.parentNode;X;ac=X,X=X.parentNode){if(X==O[h]){return r(ac,ad)}++Z}for(ac=O[h],X=ac.parentNode;X;ac=X,X=X.parentNode){if(X==O[Q]){return V(ac,ad)}++af}ab=af-Z;Y=O[h];while(ab>0){Y=Y.parentNode;ab--}aa=O[Q];while(ab<0){aa=aa.parentNode;ab++}for(t=Y.parentNode,ae=aa.parentNode;t!=ae;t=t.parentNode,ae=ae.parentNode){Y=t;aa=ae}return o(Y,aa,ad)}function f(ac){var ae,af,t,Y,Z,ad,aa,X,ab;if(ac!=j){ae=x()}if(O[W]==O[A]){return ae}if(O[h].nodeType==3){af=O[h].nodeValue;t=af.substring(O[W],O[A]);if(ac!=F){Y=O[h];X=O[W];ab=O[A]-O[W];if(X===0&&ab>=Y.nodeValue.length-1){Y.parentNode.removeChild(Y)}else{Y.deleteData(X,ab)}O.collapse(E)}if(ac==j){return}if(t.length>0){ae.appendChild(e.createTextNode(t))}return ae}Y=P(O[h],O[W]);Z=O[A]-O[W];while(Y&&Z>0){ad=Y.nextSibling;aa=z(Y,ac);if(ae){ae.appendChild(aa)}--Z;Y=ad}if(ac!=F){O.collapse(E)}return ae}function r(ad,aa){var ac,ab,X,t,Z,Y;if(aa!=j){ac=x()}ab=i(ad,aa);if(ac){ac.appendChild(ab)}X=n(ad);t=X-O[W];if(t<=0){if(aa!=F){O.setEndBefore(ad);O.collapse(S)}return ac}ab=ad.previousSibling;while(t>0){Z=ab.previousSibling;Y=z(ab,aa);if(ac){ac.insertBefore(Y,ac.firstChild)}--t;ab=Z}if(aa!=F){O.setEndBefore(ad);O.collapse(S)}return ac}function V(ab,aa){var ad,X,ac,t,Z,Y;if(aa!=j){ad=x()}ac=R(ab,aa);if(ad){ad.appendChild(ac)}X=n(ab);++X;t=O[A]-X;ac=ab.nextSibling;while(ac&&t>0){Z=ac.nextSibling;Y=z(ac,aa);if(ad){ad.appendChild(Y)}--t;ac=Z}if(aa!=F){O.setStartAfter(ab);O.collapse(E)}return ad}function o(ab,t,ae){var Y,ag,aa,ac,ad,X,af,Z;if(ae!=j){ag=x()}Y=R(ab,ae);if(ag){ag.appendChild(Y)}aa=ab.parentNode;ac=n(ab);ad=n(t);++ac;X=ad-ac;af=ab.nextSibling;while(X>0){Z=af.nextSibling;Y=z(af,ae);if(ag){ag.appendChild(Y)}af=Z;--X}Y=i(t,ae);if(ag){ag.appendChild(Y)}if(ae!=F){O.setStartAfter(ab);O.collapse(E)}return ag}function i(ac,ad){var Y=P(O[Q],O[A]-1),ae,ab,aa,t,X,Z=Y!=O[Q];if(Y==ac){return M(Y,Z,S,ad)}ae=Y.parentNode;ab=M(ae,S,S,ad);while(ae){while(Y){aa=Y.previousSibling;t=M(Y,Z,S,ad);if(ad!=j){ab.insertBefore(t,ab.firstChild)}Z=E;Y=aa}if(ae==ac){return ab}Y=ae.previousSibling;ae=ae.parentNode;X=M(ae,S,S,ad);if(ad!=j){X.appendChild(ab)}ab=X}}function R(ac,ad){var Z=P(O[h],O[W]),aa=Z!=O[h],ae,ab,Y,t,X;if(Z==ac){return M(Z,aa,E,ad)}ae=Z.parentNode;ab=M(ae,S,E,ad);while(ae){while(Z){Y=Z.nextSibling;t=M(Z,aa,E,ad);if(ad!=j){ab.appendChild(t)}aa=E;Z=Y}if(ae==ac){return ab}Z=ae.nextSibling;ae=ae.parentNode;X=M(ae,S,E,ad);if(ad!=j){X.appendChild(ab)}ab=X}}function M(t,aa,ad,ae){var Z,Y,ab,X,ac;if(aa){return z(t,ae)}if(t.nodeType==3){Z=t.nodeValue;if(ad){X=O[W];Y=Z.substring(X);ab=Z.substring(0,X)}else{X=O[A];Y=Z.substring(0,X);ab=Z.substring(X)}if(ae!=F){t.nodeValue=ab}if(ae==j){return}ac=c.clone(t,S);ac.nodeValue=Y;return ac}if(ae==j){return}return c.clone(t,S)}function z(X,t){if(t!=j){return t==F?c.clone(X,E):X}X.parentNode.removeChild(X)}function T(){return c.create("body",null,d()).outerText}return O}a.Range=b;b.prototype.toString=function(){return this.toStringIE()}})(tinymce.dom);(function(){function a(d){var b=this,h=d.dom,c=true,f=false;function e(i,j){var k,t=0,q,n,m,l,o,r,p=-1,s;k=i.duplicate();k.collapse(j);s=k.parentElement();if(s.ownerDocument!==d.dom.doc){return}while(s.contentEditable==="false"){s=s.parentNode}if(!s.hasChildNodes()){return{node:s,inside:1}}m=s.children;q=m.length-1;while(t<=q){r=Math.floor((t+q)/2);l=m[r];k.moveToElementText(l);p=k.compareEndPoints(j?"StartToStart":"EndToEnd",i);if(p>0){q=r-1}else{if(p<0){t=r+1}else{return{node:l}}}}if(p<0){if(!l){k.moveToElementText(s);k.collapse(true);l=s;n=true}else{k.collapse(false)}o=0;while(k.compareEndPoints(j?"StartToStart":"StartToEnd",i)!==0){if(k.move("character",1)===0||s!=k.parentElement()){break}o++}}else{k.collapse(true);o=0;while(k.compareEndPoints(j?"StartToStart":"StartToEnd",i)!==0){if(k.move("character",-1)===0||s!=k.parentElement()){break}o++}}return{node:l,position:p,offset:o,inside:n}}function g(){var i=d.getRng(),r=h.createRng(),l,k,p,q,m,j;l=i.item?i.item(0):i.parentElement();if(l.ownerDocument!=h.doc){return r}k=d.isCollapsed();if(i.item){r.setStart(l.parentNode,h.nodeIndex(l));r.setEnd(r.startContainer,r.startOffset+1);return r}function o(A){var u=e(i,A),s,y,z=0,x,v,t;s=u.node;y=u.offset;if(u.inside&&!s.hasChildNodes()){r[A?"setStart":"setEnd"](s,0);return}if(y===v){r[A?"setStartBefore":"setEndAfter"](s);return}if(u.position<0){x=u.inside?s.firstChild:s.nextSibling;if(!x){r[A?"setStartAfter":"setEndAfter"](s);return}if(!y){if(x.nodeType==3){r[A?"setStart":"setEnd"](x,0)}else{r[A?"setStartBefore":"setEndBefore"](x)}return}while(x){t=x.nodeValue;z+=t.length;if(z>=y){s=x;z-=y;z=t.length-z;break}x=x.nextSibling}}else{x=s.previousSibling;if(!x){return r[A?"setStartBefore":"setEndBefore"](s)}if(!y){if(s.nodeType==3){r[A?"setStart":"setEnd"](x,s.nodeValue.length)}else{r[A?"setStartAfter":"setEndAfter"](x)}return}while(x){z+=x.nodeValue.length;if(z>=y){s=x;z-=y;break}x=x.previousSibling}}r[A?"setStart":"setEnd"](s,z)}try{o(true);if(!k){o()}}catch(n){if(n.number==-2147024809){m=b.getBookmark(2);p=i.duplicate();p.collapse(true);l=p.parentElement();if(!k){p=i.duplicate();p.collapse(false);q=p.parentElement();q.innerHTML=q.innerHTML}l.innerHTML=l.innerHTML;b.moveToBookmark(m);i=d.getRng();o(true);if(!k){o()}}else{throw n}}return r}this.getBookmark=function(m){var j=d.getRng(),o,i,l={};function n(u){var t,p,s,r,q=[];t=u.parentNode;p=h.getRoot().parentNode;while(t!=p&&t.nodeType!==9){s=t.children;r=s.length;while(r--){if(u===s[r]){q.push(r);break}}u=t;t=t.parentNode}return q}function k(q){var p;p=e(j,q);if(p){return{position:p.position,offset:p.offset,indexes:n(p.node),inside:p.inside}}}if(m===2){if(!j.item){l.start=k(true);if(!d.isCollapsed()){l.end=k()}}else{l.start={ctrl:true,indexes:n(j.item(0))}}}return l};this.moveToBookmark=function(k){var j,i=h.doc.body;function m(o){var r,q,n,p;r=h.getRoot();for(q=o.length-1;q>=0;q--){p=r.children;n=o[q];if(n<=p.length-1){r=p[n]}}return r}function l(r){var n=k[r?"start":"end"],q,p,o;if(n){q=n.position>0;p=i.createTextRange();p.moveToElementText(m(n.indexes));offset=n.offset;if(offset!==o){p.collapse(n.inside||q);p.moveStart("character",q?-offset:offset)}else{p.collapse(r)}j.setEndPoint(r?"StartToStart":"EndToStart",p);if(r){j.collapse(true)}}}if(k.start){if(k.start.ctrl){j=i.createControlRange();j.addElement(m(k.start.indexes));j.select()}else{j=i.createTextRange();l(true);l();j.select()}}};this.addRange=function(i){var n,l,k,p,t,q,s,r=d.dom.doc,m=r.body;function j(A){var v,z,u,y,x;u=h.create("a");v=A?k:t;z=A?p:q;y=n.duplicate();if(v==r||v==r.documentElement){v=m;z=0}if(v.nodeType==3){v.parentNode.insertBefore(u,v);y.moveToElementText(u);y.moveStart("character",z);h.remove(u);n.setEndPoint(A?"StartToStart":"EndToEnd",y)}else{x=v.childNodes;if(x.length){if(z>=x.length){h.insertAfter(u,x[x.length-1])}else{v.insertBefore(u,x[z])}y.moveToElementText(u)}else{if(v.canHaveHTML){v.innerHTML="\uFEFF";u=v.firstChild;y.moveToElementText(u);y.collapse(f)}}n.setEndPoint(A?"StartToStart":"EndToEnd",y);h.remove(u)}}k=i.startContainer;p=i.startOffset;t=i.endContainer;q=i.endOffset;n=m.createTextRange();if(k==t&&k.nodeType==1){if(p==q&&!k.hasChildNodes()){if(k.canHaveHTML){s=k.previousSibling;if(s&&!s.hasChildNodes()&&h.isBlock(s)){s.innerHTML="\uFEFF"}else{s=null}k.innerHTML="\uFEFF\uFEFF";n.moveToElementText(k.lastChild);n.select();h.doc.selection.clear();k.innerHTML="";if(s){s.innerHTML=""}return}else{p=h.nodeIndex(k);k=k.parentNode}}if(p==q-1){try{l=m.createControlRange();l.addElement(k.childNodes[p]);l.select();return}catch(o){}}}j(true);j();n.select()};this.getRangeAt=g}tinymce.dom.TridentSelection=a})();(function(){var n=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,i="sizcache",o=0,r=Object.prototype.toString,h=false,g=true,q=/\\/g,u=/\r\n/g,x=/\W/;[0,0].sort(function(){g=false;return 0});var d=function(C,e,F,G){F=F||[];e=e||document;var I=e;if(e.nodeType!==1&&e.nodeType!==9){return[]}if(!C||typeof C!=="string"){return F}var z,K,N,y,J,M,L,E,B=true,A=d.isXML(e),D=[],H=C;do{n.exec("");z=n.exec(H);if(z){H=z[3];D.push(z[1]);if(z[2]){y=z[3];break}}}while(z);if(D.length>1&&j.exec(C)){if(D.length===2&&k.relative[D[0]]){K=s(D[0]+D[1],e,G)}else{K=k.relative[D[0]]?[e]:d(D.shift(),e);while(D.length){C=D.shift();if(k.relative[C]){C+=D.shift()}K=s(C,K,G)}}}else{if(!G&&D.length>1&&e.nodeType===9&&!A&&k.match.ID.test(D[0])&&!k.match.ID.test(D[D.length-1])){J=d.find(D.shift(),e,A);e=J.expr?d.filter(J.expr,J.set)[0]:J.set[0]}if(e){J=G?{expr:D.pop(),set:l(G)}:d.find(D.pop(),D.length===1&&(D[0]==="~"||D[0]==="+")&&e.parentNode?e.parentNode:e,A);K=J.expr?d.filter(J.expr,J.set):J.set;if(D.length>0){N=l(K)}else{B=false}while(D.length){M=D.pop();L=M;if(!k.relative[M]){M=""}else{L=D.pop()}if(L==null){L=e}k.relative[M](N,L,A)}}else{N=D=[]}}if(!N){N=K}if(!N){d.error(M||C)}if(r.call(N)==="[object Array]"){if(!B){F.push.apply(F,N)}else{if(e&&e.nodeType===1){for(E=0;N[E]!=null;E++){if(N[E]&&(N[E]===true||N[E].nodeType===1&&d.contains(e,N[E]))){F.push(K[E])}}}else{for(E=0;N[E]!=null;E++){if(N[E]&&N[E].nodeType===1){F.push(K[E])}}}}}else{l(N,F)}if(y){d(y,I,F,G);d.uniqueSort(F)}return F};d.uniqueSort=function(y){if(p){h=g;y.sort(p);if(h){for(var e=1;e0};d.find=function(E,e,F){var D,z,B,A,C,y;if(!E){return[]}for(z=0,B=k.order.length;z":function(D,y){var C,B=typeof y==="string",z=0,e=D.length;if(B&&!x.test(y)){y=y.toLowerCase();for(;z=0)){if(!z){e.push(C)}}else{if(z){y[B]=false}}}}return false},ID:function(e){return e[1].replace(q,"")},TAG:function(y,e){return y[1].replace(q,"").toLowerCase()},CHILD:function(e){if(e[1]==="nth"){if(!e[2]){d.error(e[0])}e[2]=e[2].replace(/^\+|\s*/g,"");var y=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(e[2]==="even"&&"2n"||e[2]==="odd"&&"2n+1"||!/\D/.test(e[2])&&"0n+"+e[2]||e[2]);e[2]=(y[1]+(y[2]||1))-0;e[3]=y[3]-0}else{if(e[2]){d.error(e[0])}}e[0]=o++;return e},ATTR:function(B,y,z,e,C,D){var A=B[1]=B[1].replace(q,"");if(!D&&k.attrMap[A]){B[1]=k.attrMap[A]}B[4]=(B[4]||B[5]||"").replace(q,"");if(B[2]==="~="){B[4]=" "+B[4]+" "}return B},PSEUDO:function(B,y,z,e,C){if(B[1]==="not"){if((n.exec(B[3])||"").length>1||/^\w/.test(B[3])){B[3]=d(B[3],null,null,y)}else{var A=d.filter(B[3],y,z,true^C);if(!z){e.push.apply(e,A)}return false}}else{if(k.match.POS.test(B[0])||k.match.CHILD.test(B[0])){return true}}return B},POS:function(e){e.unshift(true);return e}},filters:{enabled:function(e){return e.disabled===false&&e.type!=="hidden"},disabled:function(e){return e.disabled===true},checked:function(e){return e.checked===true},selected:function(e){if(e.parentNode){e.parentNode.selectedIndex}return e.selected===true},parent:function(e){return !!e.firstChild},empty:function(e){return !e.firstChild},has:function(z,y,e){return !!d(e[3],z).length},header:function(e){return(/h\d/i).test(e.nodeName)},text:function(z){var e=z.getAttribute("type"),y=z.type;return z.nodeName.toLowerCase()==="input"&&"text"===y&&(e===y||e===null)},radio:function(e){return e.nodeName.toLowerCase()==="input"&&"radio"===e.type},checkbox:function(e){return e.nodeName.toLowerCase()==="input"&&"checkbox"===e.type},file:function(e){return e.nodeName.toLowerCase()==="input"&&"file"===e.type},password:function(e){return e.nodeName.toLowerCase()==="input"&&"password"===e.type},submit:function(y){var e=y.nodeName.toLowerCase();return(e==="input"||e==="button")&&"submit"===y.type},image:function(e){return e.nodeName.toLowerCase()==="input"&&"image"===e.type},reset:function(y){var e=y.nodeName.toLowerCase();return(e==="input"||e==="button")&&"reset"===y.type},button:function(y){var e=y.nodeName.toLowerCase();return e==="input"&&"button"===y.type||e==="button"},input:function(e){return(/input|select|textarea|button/i).test(e.nodeName)},focus:function(e){return e===e.ownerDocument.activeElement}},setFilters:{first:function(y,e){return e===0},last:function(z,y,e,A){return y===A.length-1},even:function(y,e){return e%2===0},odd:function(y,e){return e%2===1},lt:function(z,y,e){return ye[3]-0},nth:function(z,y,e){return e[3]-0===y},eq:function(z,y,e){return e[3]-0===y}},filter:{PSEUDO:function(z,E,D,F){var e=E[1],y=k.filters[e];if(y){return y(z,D,E,F)}else{if(e==="contains"){return(z.textContent||z.innerText||b([z])||"").indexOf(E[3])>=0}else{if(e==="not"){var A=E[3];for(var C=0,B=A.length;C=0)}}},ID:function(y,e){return y.nodeType===1&&y.getAttribute("id")===e},TAG:function(y,e){return(e==="*"&&y.nodeType===1)||!!y.nodeName&&y.nodeName.toLowerCase()===e},CLASS:function(y,e){return(" "+(y.className||y.getAttribute("class"))+" ").indexOf(e)>-1},ATTR:function(C,A){var z=A[1],e=d.attr?d.attr(C,z):k.attrHandle[z]?k.attrHandle[z](C):C[z]!=null?C[z]:C.getAttribute(z),D=e+"",B=A[2],y=A[4];return e==null?B==="!=":!B&&d.attr?e!=null:B==="="?D===y:B==="*="?D.indexOf(y)>=0:B==="~="?(" "+D+" ").indexOf(y)>=0:!y?D&&e!==false:B==="!="?D!==y:B==="^="?D.indexOf(y)===0:B==="$="?D.substr(D.length-y.length)===y:B==="|="?D===y||D.substr(0,y.length+1)===y+"-":false},POS:function(B,y,z,C){var e=y[2],A=k.setFilters[e];if(A){return A(B,z,y,C)}}}};var j=k.match.POS,c=function(y,e){return"\\"+(e-0+1)};for(var f in k.match){k.match[f]=new RegExp(k.match[f].source+(/(?![^\[]*\])(?![^\(]*\))/.source));k.leftMatch[f]=new RegExp(/(^(?:.|\r|\n)*?)/.source+k.match[f].source.replace(/\\(\d+)/g,c))}k.match.globalPOS=j;var l=function(y,e){y=Array.prototype.slice.call(y,0);if(e){e.push.apply(e,y);return e}return y};try{Array.prototype.slice.call(document.documentElement.childNodes,0)[0].nodeType}catch(v){l=function(B,A){var z=0,y=A||[];if(r.call(B)==="[object Array]"){Array.prototype.push.apply(y,B)}else{if(typeof B.length==="number"){for(var e=B.length;z";e.insertBefore(y,e.firstChild);if(document.getElementById(z)){k.find.ID=function(B,C,D){if(typeof C.getElementById!=="undefined"&&!D){var A=C.getElementById(B[1]);return A?A.id===B[1]||typeof A.getAttributeNode!=="undefined"&&A.getAttributeNode("id").nodeValue===B[1]?[A]:undefined:[]}};k.filter.ID=function(C,A){var B=typeof C.getAttributeNode!=="undefined"&&C.getAttributeNode("id");return C.nodeType===1&&B&&B.nodeValue===A}}e.removeChild(y);e=y=null})();(function(){var e=document.createElement("div");e.appendChild(document.createComment(""));if(e.getElementsByTagName("*").length>0){k.find.TAG=function(y,C){var B=C.getElementsByTagName(y[1]);if(y[1]==="*"){var A=[];for(var z=0;B[z];z++){if(B[z].nodeType===1){A.push(B[z])}}B=A}return B}}e.innerHTML="";if(e.firstChild&&typeof e.firstChild.getAttribute!=="undefined"&&e.firstChild.getAttribute("href")!=="#"){k.attrHandle.href=function(y){return y.getAttribute("href",2)}}e=null})();if(document.querySelectorAll){(function(){var e=d,A=document.createElement("div"),z="__sizzle__";A.innerHTML="

        ";if(A.querySelectorAll&&A.querySelectorAll(".TEST").length===0){return}d=function(L,C,G,K){C=C||document;if(!K&&!d.isXML(C)){var J=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(L);if(J&&(C.nodeType===1||C.nodeType===9)){if(J[1]){return l(C.getElementsByTagName(L),G)}else{if(J[2]&&k.find.CLASS&&C.getElementsByClassName){return l(C.getElementsByClassName(J[2]),G)}}}if(C.nodeType===9){if(L==="body"&&C.body){return l([C.body],G)}else{if(J&&J[3]){var F=C.getElementById(J[3]);if(F&&F.parentNode){if(F.id===J[3]){return l([F],G)}}else{return l([],G)}}}try{return l(C.querySelectorAll(L),G)}catch(H){}}else{if(C.nodeType===1&&C.nodeName.toLowerCase()!=="object"){var D=C,E=C.getAttribute("id"),B=E||z,N=C.parentNode,M=/^\s*[+~]/.test(L);if(!E){C.setAttribute("id",B)}else{B=B.replace(/'/g,"\\$&")}if(M&&N){C=C.parentNode}try{if(!M||N){return l(C.querySelectorAll("[id='"+B+"'] "+L),G)}}catch(I){}finally{if(!E){D.removeAttribute("id")}}}}}return e(L,C,G,K)};for(var y in e){d[y]=e[y]}A=null})()}(function(){var e=document.documentElement,z=e.matchesSelector||e.mozMatchesSelector||e.webkitMatchesSelector||e.msMatchesSelector;if(z){var B=!z.call(document.createElement("div"),"div"),y=false;try{z.call(document.documentElement,"[test!='']:sizzle")}catch(A){y=true}d.matchesSelector=function(D,F){F=F.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!d.isXML(D)){try{if(y||!k.match.PSEUDO.test(F)&&!/!=/.test(F)){var C=z.call(D,F);if(C||!B||D.document&&D.document.nodeType!==11){return C}}}catch(E){}}return d(F,null,null,[D]).length>0}}})();(function(){var e=document.createElement("div");e.innerHTML="
        ";if(!e.getElementsByClassName||e.getElementsByClassName("e").length===0){return}e.lastChild.className="e";if(e.getElementsByClassName("e").length===1){return}k.order.splice(1,0,"CLASS");k.find.CLASS=function(y,z,A){if(typeof z.getElementsByClassName!=="undefined"&&!A){return z.getElementsByClassName(y[1])}};e=null})();function a(y,D,C,G,E,F){for(var A=0,z=G.length;A0){B=e;break}}}e=e[y]}G[A]=B}}}if(document.documentElement.contains){d.contains=function(y,e){return y!==e&&(y.contains?y.contains(e):true)}}else{if(document.documentElement.compareDocumentPosition){d.contains=function(y,e){return !!(y.compareDocumentPosition(e)&16)}}else{d.contains=function(){return false}}}d.isXML=function(e){var y=(e?e.ownerDocument||e:0).documentElement;return y?y.nodeName!=="HTML":false};var s=function(z,e,D){var C,E=[],B="",F=e.nodeType?[e]:e;while((C=k.match.PSEUDO.exec(z))){B+=C[0];z=z.replace(k.match.PSEUDO,"")}z=k.relative[z]?z+"*":z;for(var A=0,y=F.length;A"+(i.item?i.item(0).outerHTML:i.htmlText);m.removeChild(m.firstChild)}else{m.innerHTML=i.toString()}}if(/^\s/.test(m.innerHTML)){j=" "}if(/\s+$/.test(m.innerHTML)){l=" "}h.getInner=true;h.content=g.isCollapsed()?"":j+g.serializer.serialize(m,h)+l;g.onGetContent.dispatch(g,h);return h.content},setContent:function(h,j){var o=this,g=o.getRng(),k,l=o.win.document,n,m;j=j||{format:"html"};j.set=true;h=j.content=h;if(!j.no_events){o.onBeforeSetContent.dispatch(o,j)}h=j.content;if(g.insertNode){h+='_';if(g.startContainer==l&&g.endContainer==l){l.body.innerHTML=h}else{g.deleteContents();if(l.body.childNodes.length===0){l.body.innerHTML=h}else{if(g.createContextualFragment){g.insertNode(g.createContextualFragment(h))}else{n=l.createDocumentFragment();m=l.createElement("div");n.appendChild(m);m.outerHTML=h;g.insertNode(n)}}}k=o.dom.get("__caret");g=l.createRange();g.setStartBefore(k);g.setEndBefore(k);o.setRng(g);o.dom.remove("__caret");try{o.setRng(g)}catch(i){}}else{if(g.item){l.execCommand("Delete",false,null);g=o.getRng()}if(/^\s+/.test(h)){g.pasteHTML('_'+h);o.dom.remove("__mce_tmp")}else{g.pasteHTML(h)}}if(!j.no_events){o.onSetContent.dispatch(o,j)}},getStart:function(){var i=this,h=i.getRng(),j,g,l,k;if(h.duplicate||h.item){if(h.item){return h.item(0)}l=h.duplicate();l.collapse(1);j=l.parentElement();if(j.ownerDocument!==i.dom.doc){j=i.dom.getRoot()}g=k=h.parentElement();while(k=k.parentNode){if(k==j){j=g;break}}return j}else{j=h.startContainer;if(j.nodeType==1&&j.hasChildNodes()){j=j.childNodes[Math.min(j.childNodes.length-1,h.startOffset)]}if(j&&j.nodeType==3){return j.parentNode}return j}},getEnd:function(){var h=this,g=h.getRng(),j,i;if(g.duplicate||g.item){if(g.item){return g.item(0)}g=g.duplicate();g.collapse(0);j=g.parentElement();if(j.ownerDocument!==h.dom.doc){j=h.dom.getRoot()}if(j&&j.nodeName=="BODY"){return j.lastChild||j}return j}else{j=g.endContainer;i=g.endOffset;if(j.nodeType==1&&j.hasChildNodes()){j=j.childNodes[i>0?i-1:i]}if(j&&j.nodeType==3){return j.parentNode}return j}},getBookmark:function(s,v){var y=this,n=y.dom,h,k,j,o,i,p,q,m="\uFEFF",x;function g(z,A){var t=0;e(n.select(z),function(C,B){if(C==A){t=B}});return t}function u(t){function z(E){var A,D,C,B=E?"start":"end";A=t[B+"Container"];D=t[B+"Offset"];if(A.nodeType==1&&A.nodeName=="TR"){C=A.childNodes;A=C[Math.min(E?D:D-1,C.length-1)];if(A){D=E?0:A.childNodes.length;t["set"+(E?"Start":"End")](A,D)}}}z(true);z();return t}function l(){var z=y.getRng(true),t=n.getRoot(),A={};function B(E,J){var D=E[J?"startContainer":"endContainer"],I=E[J?"startOffset":"endOffset"],C=[],F,H,G=0;if(D.nodeType==3){if(v){for(F=D.previousSibling;F&&F.nodeType==3;F=F.previousSibling){I+=F.nodeValue.length}}C.push(I)}else{H=D.childNodes;if(I>=H.length&&H.length){G=1;I=Math.max(0,H.length-1)}C.push(y.dom.nodeIndex(H[I],v)+G)}for(;D&&D!=t;D=D.parentNode){C.push(y.dom.nodeIndex(D,v))}return C}A.start=B(z,true);if(!y.isCollapsed()){A.end=B(z)}return A}if(s==2){if(y.tridentSel){return y.tridentSel.getBookmark(s)}return l()}if(s){return{rng:y.getRng()}}h=y.getRng();j=n.uniqueId();o=tinyMCE.activeEditor.selection.isCollapsed();x="overflow:hidden;line-height:0px";if(h.duplicate||h.item){if(!h.item){k=h.duplicate();try{h.collapse();h.pasteHTML(''+m+"");if(!o){k.collapse(false);h.moveToElementText(k.parentElement());if(h.compareEndPoints("StartToEnd",k)===0){k.move("character",-1)}k.pasteHTML(''+m+"")}}catch(r){return null}}else{p=h.item(0);i=p.nodeName;return{name:i,index:g(i,p)}}}else{p=y.getNode();i=p.nodeName;if(i=="IMG"){return{name:i,index:g(i,p)}}k=u(h.cloneRange());if(!o){k.collapse(false);k.insertNode(n.create("span",{"data-mce-type":"bookmark",id:j+"_end",style:x},m))}h=u(h);h.collapse(true);h.insertNode(n.create("span",{"data-mce-type":"bookmark",id:j+"_start",style:x},m))}y.moveToBookmark({id:j,keep:1});return{id:j}},moveToBookmark:function(o){var s=this,m=s.dom,j,i,g,r,k,u,p,q;function h(A){var t=o[A?"start":"end"],x,y,z,v;if(t){z=t[0];for(y=r,x=t.length-1;x>=1;x--){v=y.childNodes;if(t[x]>v.length-1){return}y=v[t[x]]}if(y.nodeType===3){z=Math.min(t[0],y.nodeValue.length)}if(y.nodeType===1){z=Math.min(t[0],y.childNodes.length)}if(A){g.setStart(y,z)}else{g.setEnd(y,z)}}return true}function l(B){var v=m.get(o.id+"_"+B),A,t,y,z,x=o.keep;if(v){A=v.parentNode;if(B=="start"){if(!x){t=m.nodeIndex(v)}else{A=v.firstChild;t=1}k=u=A;p=q=t}else{if(!x){t=m.nodeIndex(v)}else{A=v.firstChild;t=1}u=A;q=t}if(!x){z=v.previousSibling;y=v.nextSibling;e(d.grep(v.childNodes),function(C){if(C.nodeType==3){C.nodeValue=C.nodeValue.replace(/\uFEFF/g,"")}});while(v=m.get(o.id+"_"+B)){m.remove(v,1)}if(z&&y&&z.nodeType==y.nodeType&&z.nodeType==3&&!d.isOpera){t=z.nodeValue.length;z.appendData(y.nodeValue);m.remove(y);if(B=="start"){k=u=z;p=q=t}else{u=z;q=t}}}}}function n(t){if(m.isBlock(t)&&!t.innerHTML&&!b){t.innerHTML='
        '}return t}if(o){if(o.start){g=m.createRng();r=m.getRoot();if(s.tridentSel){return s.tridentSel.moveToBookmark(o)}if(h(true)&&h()){s.setRng(g)}}else{if(o.id){l("start");l("end");if(k){g=m.createRng();g.setStart(n(k),p);g.setEnd(n(u),q);s.setRng(g)}}else{if(o.name){s.select(m.select(o.name)[o.index])}else{if(o.rng){s.setRng(o.rng)}}}}}},select:function(l,k){var j=this,m=j.dom,h=m.createRng(),g;function i(n,p){var o=new a(n,n);do{if(n.nodeType==3&&d.trim(n.nodeValue).length!==0){if(p){h.setStart(n,0)}else{h.setEnd(n,n.nodeValue.length)}return}if(n.nodeName=="BR"){if(p){h.setStartBefore(n)}else{h.setEndBefore(n)}return}}while(n=(p?o.next():o.prev()))}if(l){g=m.nodeIndex(l);h.setStart(l.parentNode,g);h.setEnd(l.parentNode,g+1);if(k){i(l,1);i(l)}j.setRng(h)}return l},isCollapsed:function(){var g=this,i=g.getRng(),h=g.getSel();if(!i||i.item){return false}if(i.compareEndPoints){return i.compareEndPoints("StartToEnd",i)===0}return !h||i.collapsed},collapse:function(g){var i=this,h=i.getRng(),j;if(h.item){j=h.item(0);h=i.win.document.body.createTextRange();h.moveToElementText(j)}h.collapse(!!g);i.setRng(h)},getSel:function(){var h=this,g=this.win;return g.getSelection?g.getSelection():g.document.selection},getRng:function(m){var h=this,j,g,l,k=h.win.document;if(m&&h.tridentSel){return h.tridentSel.getRangeAt(0)}try{if(j=h.getSel()){g=j.rangeCount>0?j.getRangeAt(0):(j.createRange?j.createRange():k.createRange())}}catch(i){}if(d.isIE&&g&&g.setStart&&k.selection.createRange().item){l=k.selection.createRange().item(0);g=k.createRange();g.setStartBefore(l);g.setEndAfter(l)}if(!g){g=k.createRange?k.createRange():k.body.createTextRange()}if(g.setStart&&g.startContainer.nodeType===9&&g.collapsed){l=h.dom.getRoot();g.setStart(l,0);g.setEnd(l,0)}if(h.selectedRange&&h.explicitRange){if(g.compareBoundaryPoints(g.START_TO_START,h.selectedRange)===0&&g.compareBoundaryPoints(g.END_TO_END,h.selectedRange)===0){g=h.explicitRange}else{h.selectedRange=null;h.explicitRange=null}}return g},setRng:function(k,g){var j,i=this;if(!i.tridentSel){j=i.getSel();if(j){i.explicitRange=k;try{j.removeAllRanges()}catch(h){}j.addRange(k);if(g===false&&j.extend){j.collapse(k.endContainer,k.endOffset);j.extend(k.startContainer,k.startOffset)}i.selectedRange=j.rangeCount>0?j.getRangeAt(0):null}}else{if(k.cloneRange){try{i.tridentSel.addRange(k);return}catch(h){}}try{k.select()}catch(h){}}},setNode:function(h){var g=this;g.setContent(g.dom.getOuterHTML(h));return h},getNode:function(){var i=this,h=i.getRng(),j=i.getSel(),m,l=h.startContainer,g=h.endContainer;function k(q,o){var p=q;while(q&&q.nodeType===3&&q.length===0){q=o?q.nextSibling:q.previousSibling}return q||p}if(!h){return i.dom.getRoot()}if(h.setStart){m=h.commonAncestorContainer;if(!h.collapsed){if(h.startContainer==h.endContainer){if(h.endOffset-h.startOffset<2){if(h.startContainer.hasChildNodes()){m=h.startContainer.childNodes[h.startOffset]}}}if(l.nodeType===3&&g.nodeType===3){if(l.length===h.startOffset){l=k(l.nextSibling,true)}else{l=l.parentNode}if(h.endOffset===0){g=k(g.previousSibling,false)}else{g=g.parentNode}if(l&&l===g){return l}}}if(m&&m.nodeType==3){return m.parentNode}return m}return h.item?h.item(0):h.parentElement()},getSelectedBlocks:function(p,h){var o=this,k=o.dom,m,l,i,j=[];m=k.getParent(p||o.getStart(),k.isBlock);l=k.getParent(h||o.getEnd(),k.isBlock);if(m){j.push(m)}if(m&&l&&m!=l){i=m;var g=new a(m,k.getRoot());while((i=g.next())&&i!=l){if(k.isBlock(i)){j.push(i)}}}if(l&&m!=l){j.push(l)}return j},isForward:function(){var i=this.dom,g=this.getSel(),j,h;if(!g||g.anchorNode==null||g.focusNode==null){return true}j=i.createRng();j.setStart(g.anchorNode,g.anchorOffset);j.collapse(true);h=i.createRng();h.setStart(g.focusNode,g.focusOffset);h.collapse(true);return j.compareBoundaryPoints(j.START_TO_START,h)<=0},normalize:function(){var h=this,g,m,l,j,i;function k(p){var o,r,n,s=h.dom,u=s.getRoot(),q,t,v;function y(z,A){var B=new a(z,s.getParent(z.parentNode,s.isBlock)||u);while(z=B[A?"prev":"next"]()){if(z.nodeName==="BR"){return true}}}function x(B,z){var C,A;z=z||o;C=new a(z,s.getParent(z.parentNode,s.isBlock)||u);while(q=C[B?"prev":"next"]()){if(q.nodeType===3&&q.nodeValue.length>0){o=q;r=B?q.nodeValue.length:0;m=true;return}if(s.isBlock(q)||t[q.nodeName.toLowerCase()]){return}A=q}if(l&&A){o=A;m=true;r=0}}o=g[(p?"start":"end")+"Container"];r=g[(p?"start":"end")+"Offset"];t=s.schema.getNonEmptyElements();if(o.nodeType===9){o=s.getRoot();r=0}if(o===u){if(p){q=o.childNodes[r>0?r-1:0];if(q){v=q.nodeName.toLowerCase();if(t[q.nodeName]||q.nodeName=="TABLE"){return}}}if(o.hasChildNodes()){o=o.childNodes[Math.min(!p&&r>0?r-1:r,o.childNodes.length-1)];r=0;if(o.hasChildNodes()&&!/TABLE/.test(o.nodeName)){q=o;n=new a(o,u);do{if(q.nodeType===3&&q.nodeValue.length>0){r=p?0:q.nodeValue.length;o=q;m=true;break}if(t[q.nodeName.toLowerCase()]){r=s.nodeIndex(q);o=q.parentNode;if(q.nodeName=="IMG"&&!p){r++}m=true;break}}while(q=(p?n.next():n.prev()))}}}if(l){if(o.nodeType===3&&r===0){x(true)}if(o.nodeType===1){q=o.childNodes[r];if(q&&q.nodeName==="BR"&&!y(q)&&!y(q,true)){x(true,o.childNodes[r])}}}if(p&&!l&&o.nodeType===3&&r===o.nodeValue.length){x(false)}if(m){g["set"+(p?"Start":"End")](o,r)}}if(d.isIE){return}g=h.getRng();l=g.collapsed;k(true);if(!l){k()}if(m){if(l){g.collapse(true)}h.setRng(g,h.isForward())}},selectorChanged:function(g,j){var h=this,i;if(!h.selectorChangedData){h.selectorChangedData={};i={};h.editor.onNodeChange.addToTop(function(l,k,o){var p=h.dom,m=p.getParents(o,null,p.getRoot()),n={};e(h.selectorChangedData,function(r,q){e(m,function(s){if(p.is(s,q)){if(!i[q]){e(r,function(t){t(true,{node:s,selector:q,parents:m})});i[q]=r}n[q]=r;return false}})});e(i,function(r,q){if(!n[q]){delete i[q];e(r,function(s){s(false,{node:o,selector:q,parents:m})})}})})}if(!h.selectorChangedData[g]){h.selectorChangedData[g]=[]}h.selectorChangedData[g].push(j);return h},destroy:function(h){var g=this;g.win=null;if(!h){d.removeUnload(g.destroy)}},_fixIESelection:function(){var h=this.dom,n=h.doc,i=n.body,k,o,g;function j(p,s){var q=i.createTextRange();try{q.moveToPoint(p,s)}catch(r){q=null}return q}function m(q){var p;if(q.button){p=j(q.x,q.y);if(p){if(p.compareEndPoints("StartToStart",o)>0){p.setEndPoint("StartToStart",o)}else{p.setEndPoint("EndToEnd",o)}p.select()}}else{l()}}function l(){var p=n.selection.createRange();if(o&&!p.item&&p.compareEndPoints("StartToEnd",p)===0){o.select()}h.unbind(n,"mouseup",l);h.unbind(n,"mousemove",m);o=k=0}n.documentElement.unselectable=true;h.bind(n,["mousedown","contextmenu"],function(p){if(p.target.nodeName==="HTML"){if(k){l()}g=n.documentElement;if(g.scrollHeight>g.clientHeight){return}k=1;o=j(p.x,p.y);if(o){h.bind(n,"mouseup",l);h.bind(n,"mousemove",m);h.win.focus();o.select()}}})}})})(tinymce);(function(a){a.dom.Serializer=function(e,i,f){var h,b,d=a.isIE,g=a.each,c;if(!e.apply_source_formatting){e.indent=false}i=i||a.DOM;f=f||new a.html.Schema(e);e.entity_encoding=e.entity_encoding||"named";e.remove_trailing_brs="remove_trailing_brs" in e?e.remove_trailing_brs:true;h=new a.util.Dispatcher(self);b=new a.util.Dispatcher(self);c=new a.html.DomParser(e,f);c.addAttributeFilter("src,href,style",function(k,j){var o=k.length,l,q,n="data-mce-"+j,p=e.url_converter,r=e.url_converter_scope,m;while(o--){l=k[o];q=l.attributes.map[n];if(q!==m){l.attr(j,q.length>0?q:null);l.attr(n,null)}else{q=l.attributes.map[j];if(j==="style"){q=i.serializeStyle(i.parseStyle(q),l.name)}else{if(p){q=p.call(r,q,j,l.name)}}l.attr(j,q.length>0?q:null)}}});c.addAttributeFilter("class",function(j,k){var l=j.length,m,n;while(l--){m=j[l];n=m.attr("class").replace(/(?:^|\s)mce(Item\w+|Selected)(?!\S)/g,"");m.attr("class",n.length>0?n:null)}});c.addAttributeFilter("data-mce-type",function(j,l,k){var m=j.length,n;while(m--){n=j[m];if(n.attributes.map["data-mce-type"]==="bookmark"&&!k.cleanup){n.remove()}}});c.addAttributeFilter("data-mce-expando",function(j,l,k){var m=j.length;while(m--){j[m].attr(l,null)}});c.addNodeFilter("script,style",function(k,l){var m=k.length,n,o;function j(p){return p.replace(/()/g,"\n").replace(/^[\r\n]*|[\r\n]*$/g,"").replace(/^\s*(()?|\s*\/\/\s*\]\]>(-->)?|\/\/\s*(-->)?|\]\]>|\/\*\s*-->\s*\*\/|\s*-->\s*)\s*$/g,"")}while(m--){n=k[m];o=n.firstChild?n.firstChild.value:"";if(l==="script"){n.attr("type",(n.attr("type")||"text/javascript").replace(/^mce\-/,""));if(o.length>0){n.firstChild.value="// "}}else{if(o.length>0){n.firstChild.value=""}}}});c.addNodeFilter("#comment",function(j,k){var l=j.length,m;while(l--){m=j[l];if(m.value.indexOf("[CDATA[")===0){m.name="#cdata";m.type=4;m.value=m.value.replace(/^\[CDATA\[|\]\]$/g,"")}else{if(m.value.indexOf("mce:protected ")===0){m.name="#text";m.type=3;m.raw=true;m.value=unescape(m.value).substr(14)}}}});c.addNodeFilter("xml:namespace,input",function(j,k){var l=j.length,m;while(l--){m=j[l];if(m.type===7){m.remove()}else{if(m.type===1){if(k==="input"&&!("type" in m.attributes.map)){m.attr("type","text")}}}}});if(e.fix_list_elements){c.addNodeFilter("ul,ol",function(k,l){var m=k.length,n,j;while(m--){n=k[m];j=n.parent;if(j.name==="ul"||j.name==="ol"){if(n.prev&&n.prev.name==="li"){n.prev.append(n)}}}})}c.addAttributeFilter("data-mce-src,data-mce-href,data-mce-style",function(j,k){var l=j.length;while(l--){j[l].attr(k,null)}});return{schema:f,addNodeFilter:c.addNodeFilter,addAttributeFilter:c.addAttributeFilter,onPreProcess:h,onPostProcess:b,serialize:function(o,m){var l,p,k,j,n;if(d&&i.select("script,style,select,map").length>0){n=o.innerHTML;o=o.cloneNode(false);i.setHTML(o,n)}else{o=o.cloneNode(true)}l=o.ownerDocument.implementation;if(l.createHTMLDocument){p=l.createHTMLDocument("");g(o.nodeName=="BODY"?o.childNodes:[o],function(q){p.body.appendChild(p.importNode(q,true))});if(o.nodeName!="BODY"){o=p.body.firstChild}else{o=p.body}k=i.doc;i.doc=p}m=m||{};m.format=m.format||"html";if(!m.no_events){m.node=o;h.dispatch(self,m)}j=new a.html.Serializer(e,f);m.content=j.serialize(c.parse(a.trim(m.getInner?o.innerHTML:i.getOuterHTML(o)),m));if(!m.cleanup){m.content=m.content.replace(/\uFEFF|\u200B/g,"")}if(!m.no_events){b.dispatch(self,m)}if(k){i.doc=k}m.node=null;return m.content},addRules:function(j){f.addValidElements(j)},setRules:function(j){f.setValidElements(j)}}}})(tinymce);(function(a){a.dom.ScriptLoader=function(h){var c=0,k=1,i=2,l={},j=[],e={},d=[],g=0,f;function b(m,v){var x=this,q=a.DOM,s,o,r,n;function p(){q.remove(n);if(s){s.onreadystatechange=s.onload=s=null}v()}function u(){if(typeof(console)!=="undefined"&&console.log){console.log("Failed to load: "+m)}}n=q.uniqueId();if(a.isIE6){o=new a.util.URI(m);r=location;if(o.host==r.hostname&&o.port==r.port&&(o.protocol+":")==r.protocol&&o.protocol.toLowerCase()!="file"){a.util.XHR.send({url:a._addVer(o.getURI()),success:function(y){var t=q.create("script",{type:"text/javascript"});t.text=y;document.getElementsByTagName("head")[0].appendChild(t);q.remove(t);p()},error:u});return}}s=document.createElement("script");s.id=n;s.type="text/javascript";s.src=a._addVer(m);if(!a.isIE){s.onload=p}s.onerror=u;if(!a.isOpera){s.onreadystatechange=function(){var t=s.readyState;if(t=="complete"||t=="loaded"){p()}}}(document.getElementsByTagName("head")[0]||document.body).appendChild(s)}this.isDone=function(m){return l[m]==i};this.markDone=function(m){l[m]=i};this.add=this.load=function(m,q,n){var o,p=l[m];if(p==f){j.push(m);l[m]=c}if(q){if(!e[m]){e[m]=[]}e[m].push({func:q,scope:n||this})}};this.loadQueue=function(n,m){this.loadScripts(j,n,m)};this.loadScripts=function(m,q,p){var o;function n(r){a.each(e[r],function(s){s.func.call(s.scope)});e[r]=f}d.push({func:q,scope:p||this});o=function(){var r=a.grep(m);m.length=0;a.each(r,function(s){if(l[s]==i){n(s);return}if(l[s]!=k){l[s]=k;g++;b(s,function(){l[s]=i;g--;n(s);o()})}});if(!g){a.each(d,function(s){s.func.call(s.scope)});d.length=0}};o()}};a.ScriptLoader=new a.dom.ScriptLoader()})(tinymce);(function(a){a.dom.RangeUtils=function(c){var b="\uFEFF";this.walk=function(d,s){var i=d.startContainer,l=d.startOffset,t=d.endContainer,m=d.endOffset,j,g,o,h,r,q,e;e=c.select("td.mceSelected,th.mceSelected");if(e.length>0){a.each(e,function(u){s([u])});return}function f(u){var v;v=u[0];if(v.nodeType===3&&v===i&&l>=v.nodeValue.length){u.splice(0,1)}v=u[u.length-1];if(m===0&&u.length>0&&v===t&&v.nodeType===3){u.splice(u.length-1,1)}return u}function p(x,v,u){var y=[];for(;x&&x!=u;x=x[v]){y.push(x)}return y}function n(v,u){do{if(v.parentNode==u){return v}v=v.parentNode}while(v)}function k(x,v,y){var u=y?"nextSibling":"previousSibling";for(h=x,r=h.parentNode;h&&h!=v;h=r){r=h.parentNode;q=p(h==x?h:h[u],u);if(q.length){if(!y){q.reverse()}s(f(q))}}}if(i.nodeType==1&&i.hasChildNodes()){i=i.childNodes[l]}if(t.nodeType==1&&t.hasChildNodes()){t=t.childNodes[Math.min(m-1,t.childNodes.length-1)]}if(i==t){return s(f([i]))}j=c.findCommonAncestor(i,t);for(h=i;h;h=h.parentNode){if(h===t){return k(i,j,true)}if(h===j){break}}for(h=t;h;h=h.parentNode){if(h===i){return k(t,j)}if(h===j){break}}g=n(i,j)||i;o=n(t,j)||t;k(i,g,true);q=p(g==i?g:g.nextSibling,"nextSibling",o==t?o.nextSibling:o);if(q.length){s(f(q))}k(t,o)};this.split=function(e){var h=e.startContainer,d=e.startOffset,i=e.endContainer,g=e.endOffset;function f(j,k){return j.splitText(k)}if(h==i&&h.nodeType==3){if(d>0&&dd){g=g-d;h=i=f(i,g).previousSibling;g=i.nodeValue.length;d=0}else{g=0}}}else{if(h.nodeType==3&&d>0&&d0&&g=m.length){r=0}}t=m[r];f.setAttrib(g,"tabindex","-1");f.setAttrib(t.id,"tabindex","0");f.get(t.id).focus();if(e.actOnFocus){e.onAction(t.id)}if(s){a.cancel(s)}};p=function(z){var v=37,u=39,y=38,A=40,r=27,t=14,s=13,x=32;switch(z.keyCode){case v:if(i){q.moveFocus(-1)}break;case u:if(i){q.moveFocus(1)}break;case y:if(o){q.moveFocus(-1)}break;case A:if(o){q.moveFocus(1)}break;case r:if(e.onCancel){e.onCancel();a.cancel(z)}break;case t:case s:case x:if(e.onAction){e.onAction(g);a.cancel(z)}break}};c(m,function(t,r){var s,u;if(!t.id){t.id=f.uniqueId("_mce_item_")}u=f.get(t.id);if(l){f.bind(u,"blur",h);s="-1"}else{s=(r===0?"0":"-1")}u.setAttribute("tabindex",s);f.bind(u,"focus",k)});if(m[0]){g=m[0].id}f.setAttrib(n,"tabindex","-1");var j=f.get(n);f.bind(j,"focus",d);f.bind(j,"keydown",p)}})})(tinymce);(function(c){var b=c.DOM,a=c.is;c.create("tinymce.ui.Control",{Control:function(f,e,d){this.id=f;this.settings=e=e||{};this.rendered=false;this.onRender=new c.util.Dispatcher(this);this.classPrefix="";this.scope=e.scope||this;this.disabled=0;this.active=0;this.editor=d},setAriaProperty:function(f,e){var d=b.get(this.id+"_aria")||b.get(this.id);if(d){b.setAttrib(d,"aria-"+f,!!e)}},focus:function(){b.get(this.id).focus()},setDisabled:function(d){if(d!=this.disabled){this.setAriaProperty("disabled",d);this.setState("Disabled",d);this.setState("Enabled",!d);this.disabled=d}},isDisabled:function(){return this.disabled},setActive:function(d){if(d!=this.active){this.setState("Active",d);this.active=d;this.setAriaProperty("pressed",d)}},isActive:function(){return this.active},setState:function(f,d){var e=b.get(this.id);f=this.classPrefix+f;if(d){b.addClass(e,f)}else{b.removeClass(e,f)}},isRendered:function(){return this.rendered},renderHTML:function(){},renderTo:function(d){b.setHTML(d,this.renderHTML())},postRender:function(){var e=this,d;if(a(e.disabled)){d=e.disabled;e.disabled=-1;e.setDisabled(d)}if(a(e.active)){d=e.active;e.active=-1;e.setActive(d)}},remove:function(){b.remove(this.id);this.destroy()},destroy:function(){c.dom.Event.clear(this.id)}})})(tinymce);tinymce.create("tinymce.ui.Container:tinymce.ui.Control",{Container:function(c,b,a){this.parent(c,b,a);this.controls=[];this.lookup={}},add:function(a){this.lookup[a.id]=a;this.controls.push(a);return a},get:function(a){return this.lookup[a]}});tinymce.create("tinymce.ui.Separator:tinymce.ui.Control",{Separator:function(b,a){this.parent(b,a);this.classPrefix="mceSeparator";this.setDisabled(true)},renderHTML:function(){return tinymce.DOM.createHTML("span",{"class":this.classPrefix,role:"separator","aria-orientation":"vertical",tabindex:"-1"})}});(function(d){var c=d.is,b=d.DOM,e=d.each,a=d.walk;d.create("tinymce.ui.MenuItem:tinymce.ui.Control",{MenuItem:function(g,f){this.parent(g,f);this.classPrefix="mceMenuItem"},setSelected:function(f){this.setState("Selected",f);this.setAriaProperty("checked",!!f);this.selected=f},isSelected:function(){return this.selected},postRender:function(){var f=this;f.parent();if(c(f.selected)){f.setSelected(f.selected)}}})})(tinymce);(function(d){var c=d.is,b=d.DOM,e=d.each,a=d.walk;d.create("tinymce.ui.Menu:tinymce.ui.MenuItem",{Menu:function(h,g){var f=this;f.parent(h,g);f.items={};f.collapsed=false;f.menuCount=0;f.onAddItem=new d.util.Dispatcher(this)},expand:function(g){var f=this;if(g){a(f,function(h){if(h.expand){h.expand()}},"items",f)}f.collapsed=false},collapse:function(g){var f=this;if(g){a(f,function(h){if(h.collapse){h.collapse()}},"items",f)}f.collapsed=true},isCollapsed:function(){return this.collapsed},add:function(f){if(!f.settings){f=new d.ui.MenuItem(f.id||b.uniqueId(),f)}this.onAddItem.dispatch(this,f);return this.items[f.id]=f},addSeparator:function(){return this.add({separator:true})},addMenu:function(f){if(!f.collapse){f=this.createMenu(f)}this.menuCount++;return this.add(f)},hasMenus:function(){return this.menuCount!==0},remove:function(f){delete this.items[f.id]},removeAll:function(){var f=this;a(f,function(g){if(g.removeAll){g.removeAll()}else{g.remove()}g.destroy()},"items",f);f.items={}},createMenu:function(g){var f=new d.ui.Menu(g.id||b.uniqueId(),g);f.onAddItem.add(this.onAddItem.dispatch,this.onAddItem);return f}})})(tinymce);(function(e){var d=e.is,c=e.DOM,f=e.each,a=e.dom.Event,b=e.dom.Element;e.create("tinymce.ui.DropMenu:tinymce.ui.Menu",{DropMenu:function(h,g){g=g||{};g.container=g.container||c.doc.body;g.offset_x=g.offset_x||0;g.offset_y=g.offset_y||0;g.vp_offset_x=g.vp_offset_x||0;g.vp_offset_y=g.vp_offset_y||0;if(d(g.icons)&&!g.icons){g["class"]+=" mceNoIcons"}this.parent(h,g);this.onShowMenu=new e.util.Dispatcher(this);this.onHideMenu=new e.util.Dispatcher(this);this.classPrefix="mceMenu"},createMenu:function(j){var h=this,i=h.settings,g;j.container=j.container||i.container;j.parent=h;j.constrain=j.constrain||i.constrain;j["class"]=j["class"]||i["class"];j.vp_offset_x=j.vp_offset_x||i.vp_offset_x;j.vp_offset_y=j.vp_offset_y||i.vp_offset_y;j.keyboard_focus=i.keyboard_focus;g=new e.ui.DropMenu(j.id||c.uniqueId(),j);g.onAddItem.add(h.onAddItem.dispatch,h.onAddItem);return g},focus:function(){var g=this;if(g.keyboardNav){g.keyboardNav.focus()}},update:function(){var i=this,j=i.settings,g=c.get("menu_"+i.id+"_tbl"),l=c.get("menu_"+i.id+"_co"),h,k;h=j.max_width?Math.min(g.offsetWidth,j.max_width):g.offsetWidth;k=j.max_height?Math.min(g.offsetHeight,j.max_height):g.offsetHeight;if(!c.boxModel){i.element.setStyles({width:h+2,height:k+2})}else{i.element.setStyles({width:h,height:k})}if(j.max_width){c.setStyle(l,"width",h)}if(j.max_height){c.setStyle(l,"height",k);if(g.clientHeightv){p=r?r-u:Math.max(0,(v-A.vp_offset_x)-u)}if((n+A.vp_offset_y+l)>q){n=Math.max(0,(q-A.vp_offset_y)-l)}}c.setStyles(o,{left:p,top:n});z.element.update();z.isMenuVisible=1;z.mouseClickFunc=a.add(o,"click",function(s){var h;s=s.target;if(s&&(s=c.getParent(s,"tr"))&&!c.hasClass(s,m+"ItemSub")){h=z.items[s.id];if(h.isDisabled()){return}k=z;while(k){if(k.hideMenu){k.hideMenu()}k=k.settings.parent}if(h.settings.onclick){h.settings.onclick(s)}return false}});if(z.hasMenus()){z.mouseOverFunc=a.add(o,"mouseover",function(x){var h,t,s;x=x.target;if(x&&(x=c.getParent(x,"tr"))){h=z.items[x.id];if(z.lastMenu){z.lastMenu.collapse(1)}if(h.isDisabled()){return}if(x&&c.hasClass(x,m+"ItemSub")){t=c.getRect(x);h.showMenu((t.x+t.w-i),t.y-i,t.x);z.lastMenu=h;c.addClass(c.get(h.id).firstChild,m+"ItemActive")}}})}a.add(o,"keydown",z._keyHandler,z);z.onShowMenu.dispatch(z);if(A.keyboard_focus){z._setupKeyboardNav()}},hideMenu:function(j){var g=this,i=c.get("menu_"+g.id),h;if(!g.isMenuVisible){return}if(g.keyboardNav){g.keyboardNav.destroy()}a.remove(i,"mouseover",g.mouseOverFunc);a.remove(i,"click",g.mouseClickFunc);a.remove(i,"keydown",g._keyHandler);c.hide(i);g.isMenuVisible=0;if(!j){g.collapse(1)}if(g.element){g.element.hide()}if(h=c.get(g.id)){c.removeClass(h.firstChild,g.classPrefix+"ItemActive")}g.onHideMenu.dispatch(g)},add:function(i){var g=this,h;i=g.parent(i);if(g.isRendered&&(h=c.get("menu_"+g.id))){g._add(c.select("tbody",h)[0],i)}return i},collapse:function(g){this.parent(g);this.hideMenu(1)},remove:function(g){c.remove(g.id);this.destroy();return this.parent(g)},destroy:function(){var g=this,h=c.get("menu_"+g.id);if(g.keyboardNav){g.keyboardNav.destroy()}a.remove(h,"mouseover",g.mouseOverFunc);a.remove(c.select("a",h),"focus",g.mouseOverFunc);a.remove(h,"click",g.mouseClickFunc);a.remove(h,"keydown",g._keyHandler);if(g.element){g.element.remove()}c.remove(h)},renderNode:function(){var i=this,j=i.settings,l,h,k,g;g=c.create("div",{role:"listbox",id:"menu_"+i.id,"class":j["class"],style:"position:absolute;left:0;top:0;z-index:200000;outline:0"});if(i.settings.parent){c.setAttrib(g,"aria-parent","menu_"+i.settings.parent.id)}k=c.add(g,"div",{role:"presentation",id:"menu_"+i.id+"_co","class":i.classPrefix+(j["class"]?" "+j["class"]:"")});i.element=new b("menu_"+i.id,{blocker:1,container:j.container});if(j.menu_line){c.add(k,"span",{"class":i.classPrefix+"Line"})}l=c.add(k,"table",{role:"presentation",id:"menu_"+i.id+"_tbl",border:0,cellPadding:0,cellSpacing:0});h=c.add(l,"tbody");f(i.items,function(m){i._add(h,m)});i.rendered=true;return g},_setupKeyboardNav:function(){var i,h,g=this;i=c.get("menu_"+g.id);h=c.select("a[role=option]","menu_"+g.id);h.splice(0,0,i);g.keyboardNav=new e.ui.KeyboardNavigation({root:"menu_"+g.id,items:h,onCancel:function(){g.hideMenu()},enableUpDown:true});i.focus()},_keyHandler:function(g){var h=this,i;switch(g.keyCode){case 37:if(h.settings.parent){h.hideMenu();h.settings.parent.focus();a.cancel(g)}break;case 39:if(h.mouseOverFunc){h.mouseOverFunc(g)}break}},_add:function(j,h){var i,q=h.settings,p,l,k,m=this.classPrefix,g;if(q.separator){l=c.add(j,"tr",{id:h.id,"class":m+"ItemSeparator"});c.add(l,"td",{"class":m+"ItemSeparator"});if(i=l.previousSibling){c.addClass(i,"mceLast")}return}i=l=c.add(j,"tr",{id:h.id,"class":m+"Item "+m+"ItemEnabled"});i=k=c.add(i,q.titleItem?"th":"td");i=p=c.add(i,"a",{id:h.id+"_aria",role:q.titleItem?"presentation":"option",href:"javascript:;",onclick:"return false;",onmousedown:"return false;"});if(q.parent){c.setAttrib(p,"aria-haspopup","true");c.setAttrib(p,"aria-owns","menu_"+h.id)}c.addClass(k,q["class"]);g=c.add(i,"span",{"class":"mceIcon"+(q.icon?" mce_"+q.icon:"")});if(q.icon_src){c.add(g,"img",{src:q.icon_src})}i=c.add(i,q.element||"span",{"class":"mceText",title:h.settings.title},h.settings.title);if(h.settings.style){if(typeof h.settings.style=="function"){h.settings.style=h.settings.style()}c.setAttrib(i,"style",h.settings.style)}if(j.childNodes.length==1){c.addClass(l,"mceFirst")}if((i=l.previousSibling)&&c.hasClass(i,m+"ItemSeparator")){c.addClass(l,"mceFirst")}if(h.collapse){c.addClass(l,m+"ItemSub")}if(i=l.previousSibling){c.removeClass(i,"mceLast")}c.addClass(l,"mceLast")}})})(tinymce);(function(b){var a=b.DOM;b.create("tinymce.ui.Button:tinymce.ui.Control",{Button:function(e,d,c){this.parent(e,d,c);this.classPrefix="mceButton"},renderHTML:function(){var f=this.classPrefix,e=this.settings,d,c;c=a.encode(e.label||"");d='';if(e.image&&!(this.editor&&this.editor.forcedHighContrastMode)){d+=''+a.encode(e.title)+''+(c?''+c+"":"")}else{d+=''+(c?''+c+"":"")}d+='";d+="";return d},postRender:function(){var d=this,e=d.settings,c;if(b.isIE&&d.editor){b.dom.Event.add(d.id,"mousedown",function(f){var g=d.editor.selection.getNode().nodeName;c=g==="IMG"?d.editor.selection.getBookmark():null})}b.dom.Event.add(d.id,"click",function(f){if(!d.isDisabled()){if(b.isIE&&d.editor&&c!==null){d.editor.selection.moveToBookmark(c)}return e.onclick.call(e.scope,f)}});b.dom.Event.add(d.id,"keyup",function(f){if(!d.isDisabled()&&f.keyCode==b.VK.SPACEBAR){return e.onclick.call(e.scope,f)}})}})})(tinymce);(function(e){var d=e.DOM,b=e.dom.Event,f=e.each,a=e.util.Dispatcher,c;e.create("tinymce.ui.ListBox:tinymce.ui.Control",{ListBox:function(j,i,g){var h=this;h.parent(j,i,g);h.items=[];h.onChange=new a(h);h.onPostRender=new a(h);h.onAdd=new a(h);h.onRenderMenu=new e.util.Dispatcher(this);h.classPrefix="mceListBox";h.marked={}},select:function(h){var g=this,j,i;g.marked={};if(h==c){return g.selectByIndex(-1)}if(h&&typeof(h)=="function"){i=h}else{i=function(k){return k==h}}if(h!=g.selectedValue){f(g.items,function(l,k){if(i(l.value)){j=1;g.selectByIndex(k);return false}});if(!j){g.selectByIndex(-1)}}},selectByIndex:function(g){var i=this,j,k,h;i.marked={};if(g!=i.selectedIndex){j=d.get(i.id+"_text");h=d.get(i.id+"_voiceDesc");k=i.items[g];if(k){i.selectedValue=k.value;i.selectedIndex=g;d.setHTML(j,d.encode(k.title));d.setHTML(h,i.settings.title+" - "+k.title);d.removeClass(j,"mceTitle");d.setAttrib(i.id,"aria-valuenow",k.title)}else{d.setHTML(j,d.encode(i.settings.title));d.setHTML(h,d.encode(i.settings.title));d.addClass(j,"mceTitle");i.selectedValue=i.selectedIndex=null;d.setAttrib(i.id,"aria-valuenow",i.settings.title)}j=0}},mark:function(g){this.marked[g]=true},add:function(j,g,i){var h=this;i=i||{};i=e.extend(i,{title:j,value:g});h.items.push(i);h.onAdd.dispatch(h,i)},getLength:function(){return this.items.length},renderHTML:function(){var j="",g=this,i=g.settings,k=g.classPrefix;j='';j+="";j+="";j+="";return j},showMenu:function(){var h=this,j,i=d.get(this.id),g;if(h.isDisabled()||h.items.length===0){return}if(h.menu&&h.menu.isMenuVisible){return h.hideMenu()}if(!h.isMenuRendered){h.renderMenu();h.isMenuRendered=true}j=d.getPos(i);g=h.menu;g.settings.offset_x=j.x;g.settings.offset_y=j.y;g.settings.keyboard_focus=!e.isOpera;f(h.items,function(k){if(g.items[k.id]){g.items[k.id].setSelected(0)}});f(h.items,function(k){if(g.items[k.id]&&h.marked[k.value]){g.items[k.id].setSelected(1)}if(k.value===h.selectedValue){g.items[k.id].setSelected(1)}});g.showMenu(0,i.clientHeight);b.add(d.doc,"mousedown",h.hideMenu,h);d.addClass(h.id,h.classPrefix+"Selected")},hideMenu:function(h){var g=this;if(g.menu&&g.menu.isMenuVisible){d.removeClass(g.id,g.classPrefix+"Selected");if(h&&h.type=="mousedown"&&(h.target.id==g.id+"_text"||h.target.id==g.id+"_open")){return}if(!h||!d.getParent(h.target,".mceMenu")){d.removeClass(g.id,g.classPrefix+"Selected");b.remove(d.doc,"mousedown",g.hideMenu,g);g.menu.hideMenu()}}},renderMenu:function(){var h=this,g;g=h.settings.control_manager.createDropMenu(h.id+"_menu",{menu_line:1,"class":h.classPrefix+"Menu mceNoIcons",max_width:250,max_height:150});g.onHideMenu.add(function(){h.hideMenu();h.focus()});g.add({title:h.settings.title,"class":"mceMenuItemTitle",onclick:function(){if(h.settings.onselect("")!==false){h.select("")}}});f(h.items,function(i){if(i.value===c){g.add({title:i.title,role:"option","class":"mceMenuItemTitle",onclick:function(){if(h.settings.onselect("")!==false){h.select("")}}})}else{i.id=d.uniqueId();i.role="option";i.onclick=function(){if(h.settings.onselect(i.value)!==false){h.select(i.value)}};g.add(i)}});h.onRenderMenu.dispatch(h,g);h.menu=g},postRender:function(){var g=this,h=g.classPrefix;b.add(g.id,"click",g.showMenu,g);b.add(g.id,"keydown",function(i){if(i.keyCode==32){g.showMenu(i);b.cancel(i)}});b.add(g.id,"focus",function(){if(!g._focused){g.keyDownHandler=b.add(g.id,"keydown",function(i){if(i.keyCode==40){g.showMenu();b.cancel(i)}});g.keyPressHandler=b.add(g.id,"keypress",function(j){var i;if(j.keyCode==13){i=g.selectedValue;g.selectedValue=null;b.cancel(j);g.settings.onselect(i)}})}g._focused=1});b.add(g.id,"blur",function(){b.remove(g.id,"keydown",g.keyDownHandler);b.remove(g.id,"keypress",g.keyPressHandler);g._focused=0});if(e.isIE6||!d.boxModel){b.add(g.id,"mouseover",function(){if(!d.hasClass(g.id,h+"Disabled")){d.addClass(g.id,h+"Hover")}});b.add(g.id,"mouseout",function(){if(!d.hasClass(g.id,h+"Disabled")){d.removeClass(g.id,h+"Hover")}})}g.onPostRender.dispatch(g,d.get(g.id))},destroy:function(){this.parent();b.clear(this.id+"_text");b.clear(this.id+"_open")}})})(tinymce);(function(e){var d=e.DOM,b=e.dom.Event,f=e.each,a=e.util.Dispatcher,c;e.create("tinymce.ui.NativeListBox:tinymce.ui.ListBox",{NativeListBox:function(h,g){this.parent(h,g);this.classPrefix="mceNativeListBox"},setDisabled:function(g){d.get(this.id).disabled=g;this.setAriaProperty("disabled",g)},isDisabled:function(){return d.get(this.id).disabled},select:function(h){var g=this,j,i;if(h==c){return g.selectByIndex(-1)}if(h&&typeof(h)=="function"){i=h}else{i=function(k){return k==h}}if(h!=g.selectedValue){f(g.items,function(l,k){if(i(l.value)){j=1;g.selectByIndex(k);return false}});if(!j){g.selectByIndex(-1)}}},selectByIndex:function(g){d.get(this.id).selectedIndex=g+1;this.selectedValue=this.items[g]?this.items[g].value:null},add:function(k,h,g){var j,i=this;g=g||{};g.value=h;if(i.isRendered()){d.add(d.get(this.id),"option",g,k)}j={title:k,value:h,attribs:g};i.items.push(j);i.onAdd.dispatch(i,j)},getLength:function(){return this.items.length},renderHTML:function(){var i,g=this;i=d.createHTML("option",{value:""},"-- "+g.settings.title+" --");f(g.items,function(h){i+=d.createHTML("option",{value:h.value},h.title)});i=d.createHTML("select",{id:g.id,"class":"mceNativeListBox","aria-labelledby":g.id+"_aria"},i);i+=d.createHTML("span",{id:g.id+"_aria",style:"display: none"},g.settings.title);return i},postRender:function(){var h=this,i,j=true;h.rendered=true;function g(l){var k=h.items[l.target.selectedIndex-1];if(k&&(k=k.value)){h.onChange.dispatch(h,k);if(h.settings.onselect){h.settings.onselect(k)}}}b.add(h.id,"change",g);b.add(h.id,"keydown",function(l){var k;b.remove(h.id,"change",i);j=false;k=b.add(h.id,"blur",function(){if(j){return}j=true;b.add(h.id,"change",g);b.remove(h.id,"blur",k)});if(e.isWebKit&&(l.keyCode==37||l.keyCode==39)){return b.prevent(l)}if(l.keyCode==13||l.keyCode==32){g(l);return b.cancel(l)}});h.onPostRender.dispatch(h,d.get(h.id))}})})(tinymce);(function(c){var b=c.DOM,a=c.dom.Event,d=c.each;c.create("tinymce.ui.MenuButton:tinymce.ui.Button",{MenuButton:function(g,f,e){this.parent(g,f,e);this.onRenderMenu=new c.util.Dispatcher(this);f.menu_container=f.menu_container||b.doc.body},showMenu:function(){var g=this,j,i,h=b.get(g.id),f;if(g.isDisabled()){return}if(!g.isMenuRendered){g.renderMenu();g.isMenuRendered=true}if(g.isMenuVisible){return g.hideMenu()}j=b.getPos(g.settings.menu_container);i=b.getPos(h);f=g.menu;f.settings.offset_x=i.x;f.settings.offset_y=i.y;f.settings.vp_offset_x=i.x;f.settings.vp_offset_y=i.y;f.settings.keyboard_focus=g._focused;f.showMenu(0,h.firstChild.clientHeight);a.add(b.doc,"mousedown",g.hideMenu,g);g.setState("Selected",1);g.isMenuVisible=1},renderMenu:function(){var f=this,e;e=f.settings.control_manager.createDropMenu(f.id+"_menu",{menu_line:1,"class":this.classPrefix+"Menu",icons:f.settings.icons});e.onHideMenu.add(function(){f.hideMenu();f.focus()});f.onRenderMenu.dispatch(f,e);f.menu=e},hideMenu:function(g){var f=this;if(g&&g.type=="mousedown"&&b.getParent(g.target,function(h){return h.id===f.id||h.id===f.id+"_open"})){return}if(!g||!b.getParent(g.target,".mceMenu")){f.setState("Selected",0);a.remove(b.doc,"mousedown",f.hideMenu,f);if(f.menu){f.menu.hideMenu()}}f.isMenuVisible=0},postRender:function(){var e=this,f=e.settings;a.add(e.id,"click",function(){if(!e.isDisabled()){if(f.onclick){f.onclick(e.value)}e.showMenu()}})}})})(tinymce);(function(c){var b=c.DOM,a=c.dom.Event,d=c.each;c.create("tinymce.ui.SplitButton:tinymce.ui.MenuButton",{SplitButton:function(g,f,e){this.parent(g,f,e);this.classPrefix="mceSplitButton"},renderHTML:function(){var i,f=this,g=f.settings,e;i="";if(g.image){e=b.createHTML("img ",{src:g.image,role:"presentation","class":"mceAction "+g["class"]})}else{e=b.createHTML("span",{"class":"mceAction "+g["class"]},"")}e+=b.createHTML("span",{"class":"mceVoiceLabel mceIconOnly",id:f.id+"_voice",style:"display:none;"},g.title);i+=""+b.createHTML("a",{role:"button",id:f.id+"_action",tabindex:"-1",href:"javascript:;","class":"mceAction "+g["class"],onclick:"return false;",onmousedown:"return false;",title:g.title},e)+"";e=b.createHTML("span",{"class":"mceOpen "+g["class"]},'');i+=""+b.createHTML("a",{role:"button",id:f.id+"_open",tabindex:"-1",href:"javascript:;","class":"mceOpen "+g["class"],onclick:"return false;",onmousedown:"return false;",title:g.title},e)+"";i+="";i=b.createHTML("table",{role:"presentation","class":"mceSplitButton mceSplitButtonEnabled "+g["class"],cellpadding:"0",cellspacing:"0",title:g.title},i);return b.createHTML("div",{id:f.id,role:"button",tabindex:"0","aria-labelledby":f.id+"_voice","aria-haspopup":"true"},i)},postRender:function(){var e=this,g=e.settings,f;if(g.onclick){f=function(h){if(!e.isDisabled()){g.onclick(e.value);a.cancel(h)}};a.add(e.id+"_action","click",f);a.add(e.id,["click","keydown"],function(h){var k=32,m=14,i=13,j=38,l=40;if((h.keyCode===32||h.keyCode===13||h.keyCode===14)&&!h.altKey&&!h.ctrlKey&&!h.metaKey){f();a.cancel(h)}else{if(h.type==="click"||h.keyCode===l){e.showMenu();a.cancel(h)}}})}a.add(e.id+"_open","click",function(h){e.showMenu();a.cancel(h)});a.add([e.id,e.id+"_open"],"focus",function(){e._focused=1});a.add([e.id,e.id+"_open"],"blur",function(){e._focused=0});if(c.isIE6||!b.boxModel){a.add(e.id,"mouseover",function(){if(!b.hasClass(e.id,"mceSplitButtonDisabled")){b.addClass(e.id,"mceSplitButtonHover")}});a.add(e.id,"mouseout",function(){if(!b.hasClass(e.id,"mceSplitButtonDisabled")){b.removeClass(e.id,"mceSplitButtonHover")}})}},destroy:function(){this.parent();a.clear(this.id+"_action");a.clear(this.id+"_open");a.clear(this.id)}})})(tinymce);(function(d){var c=d.DOM,a=d.dom.Event,b=d.is,e=d.each;d.create("tinymce.ui.ColorSplitButton:tinymce.ui.SplitButton",{ColorSplitButton:function(i,h,f){var g=this;g.parent(i,h,f);g.settings=h=d.extend({colors:"000000,993300,333300,003300,003366,000080,333399,333333,800000,FF6600,808000,008000,008080,0000FF,666699,808080,FF0000,FF9900,99CC00,339966,33CCCC,3366FF,800080,999999,FF00FF,FFCC00,FFFF00,00FF00,00FFFF,00CCFF,993366,C0C0C0,FF99CC,FFCC99,FFFF99,CCFFCC,CCFFFF,99CCFF,CC99FF,FFFFFF",grid_width:8,default_color:"#888888"},g.settings);g.onShowMenu=new d.util.Dispatcher(g);g.onHideMenu=new d.util.Dispatcher(g);g.value=h.default_color},showMenu:function(){var f=this,g,j,i,h;if(f.isDisabled()){return}if(!f.isMenuRendered){f.renderMenu();f.isMenuRendered=true}if(f.isMenuVisible){return f.hideMenu()}i=c.get(f.id);c.show(f.id+"_menu");c.addClass(i,"mceSplitButtonSelected");h=c.getPos(i);c.setStyles(f.id+"_menu",{left:h.x,top:h.y+i.firstChild.clientHeight,zIndex:200000});i=0;a.add(c.doc,"mousedown",f.hideMenu,f);f.onShowMenu.dispatch(f);if(f._focused){f._keyHandler=a.add(f.id+"_menu","keydown",function(k){if(k.keyCode==27){f.hideMenu()}});c.select("a",f.id+"_menu")[0].focus()}f.keyboardNav=new d.ui.KeyboardNavigation({root:f.id+"_menu",items:c.select("a",f.id+"_menu"),onCancel:function(){f.hideMenu();f.focus()}});f.keyboardNav.focus();f.isMenuVisible=1},hideMenu:function(g){var f=this;if(f.isMenuVisible){if(g&&g.type=="mousedown"&&c.getParent(g.target,function(h){return h.id===f.id+"_open"})){return}if(!g||!c.getParent(g.target,".mceSplitButtonMenu")){c.removeClass(f.id,"mceSplitButtonSelected");a.remove(c.doc,"mousedown",f.hideMenu,f);a.remove(f.id+"_menu","keydown",f._keyHandler);c.hide(f.id+"_menu")}f.isMenuVisible=0;f.onHideMenu.dispatch();f.keyboardNav.destroy()}},renderMenu:function(){var p=this,h,k=0,q=p.settings,g,j,l,o,f;o=c.add(q.menu_container,"div",{role:"listbox",id:p.id+"_menu","class":q.menu_class+" "+q["class"],style:"position:absolute;left:0;top:-1000px;"});h=c.add(o,"div",{"class":q["class"]+" mceSplitButtonMenu"});c.add(h,"span",{"class":"mceMenuLine"});g=c.add(h,"table",{role:"presentation","class":"mceColorSplitMenu"});j=c.add(g,"tbody");k=0;e(b(q.colors,"array")?q.colors:q.colors.split(","),function(m){m=m.replace(/^#/,"");if(!k--){l=c.add(j,"tr");k=q.grid_width-1}g=c.add(l,"td");var i={href:"javascript:;",style:{backgroundColor:"#"+m},title:p.editor.getLang("colors."+m,m),"data-mce-color":"#"+m};if(!d.isIE){i.role="option"}g=c.add(g,"a",i);if(p.editor.forcedHighContrastMode){g=c.add(g,"canvas",{width:16,height:16,"aria-hidden":"true"});if(g.getContext&&(f=g.getContext("2d"))){f.fillStyle="#"+m;f.fillRect(0,0,16,16)}else{c.remove(g)}}});if(q.more_colors_func){g=c.add(j,"tr");g=c.add(g,"td",{colspan:q.grid_width,"class":"mceMoreColors"});g=c.add(g,"a",{role:"option",id:p.id+"_more",href:"javascript:;",onclick:"return false;","class":"mceMoreColors"},q.more_colors_title);a.add(g,"click",function(i){q.more_colors_func.call(q.more_colors_scope||this);return a.cancel(i)})}c.addClass(h,"mceColorSplitMenu");a.add(p.id+"_menu","mousedown",function(i){return a.cancel(i)});a.add(p.id+"_menu","click",function(i){var m;i=c.getParent(i.target,"a",j);if(i&&i.nodeName.toLowerCase()=="a"&&(m=i.getAttribute("data-mce-color"))){p.setColor(m)}return false});return o},setColor:function(f){this.displayColor(f);this.hideMenu();this.settings.onselect(f)},displayColor:function(g){var f=this;c.setStyle(f.id+"_preview","backgroundColor",g);f.value=g},postRender:function(){var f=this,g=f.id;f.parent();c.add(g+"_action","div",{id:g+"_preview","class":"mceColorPreview"});c.setStyle(f.id+"_preview","backgroundColor",f.value)},destroy:function(){var f=this;f.parent();a.clear(f.id+"_menu");a.clear(f.id+"_more");c.remove(f.id+"_menu");if(f.keyboardNav){f.keyboardNav.destroy()}}})})(tinymce);(function(b){var d=b.DOM,c=b.each,a=b.dom.Event;b.create("tinymce.ui.ToolbarGroup:tinymce.ui.Container",{renderHTML:function(){var f=this,i=[],e=f.controls,j=b.each,g=f.settings;i.push('
        ');i.push("");i.push('");j(e,function(h){i.push(h.renderHTML())});i.push("");i.push("
        ");return i.join("")},focus:function(){var e=this;d.get(e.id).focus()},postRender:function(){var f=this,e=[];c(f.controls,function(g){c(g.controls,function(h){if(h.id){e.push(h)}})});f.keyNav=new b.ui.KeyboardNavigation({root:f.id,items:e,onCancel:function(){if(b.isWebKit){d.get(f.editor.id+"_ifr").focus()}f.editor.focus()},excludeFromTabOrder:!f.settings.tab_focus_toolbar})},destroy:function(){var e=this;e.parent();e.keyNav.destroy();a.clear(e.id)}})})(tinymce);(function(a){var c=a.DOM,b=a.each;a.create("tinymce.ui.Toolbar:tinymce.ui.Container",{renderHTML:function(){var m=this,f="",j,k,n=m.settings,e,d,g,l;l=m.controls;for(e=0;e"))}if(d&&k.ListBox){if(d.Button||d.SplitButton){f+=c.createHTML("td",{"class":"mceToolbarEnd"},c.createHTML("span",null,""))}}if(c.stdMode){f+=''+k.renderHTML()+""}else{f+=""+k.renderHTML()+""}if(g&&k.ListBox){if(g.Button||g.SplitButton){f+=c.createHTML("td",{"class":"mceToolbarStart"},c.createHTML("span",null,""))}}}j="mceToolbarEnd";if(k.Button){j+=" mceToolbarEndButton"}else{if(k.SplitButton){j+=" mceToolbarEndSplitButton"}else{if(k.ListBox){j+=" mceToolbarEndListBox"}}}f+=c.createHTML("td",{"class":j},c.createHTML("span",null,""));return c.createHTML("table",{id:m.id,"class":"mceToolbar"+(n["class"]?" "+n["class"]:""),cellpadding:"0",cellspacing:"0",align:m.settings.align||"",role:"presentation",tabindex:"-1"},""+f+"")}})})(tinymce);(function(b){var a=b.util.Dispatcher,c=b.each;b.create("tinymce.AddOnManager",{AddOnManager:function(){var d=this;d.items=[];d.urls={};d.lookup={};d.onAdd=new a(d)},get:function(d){if(this.lookup[d]){return this.lookup[d].instance}else{return undefined}},dependencies:function(e){var d;if(this.lookup[e]){d=this.lookup[e].dependencies}return d||[]},requireLangPack:function(e){var d=b.settings;if(d&&d.language&&d.language_load!==false){b.ScriptLoader.add(this.urls[e]+"/langs/"+d.language+".js")}},add:function(f,e,d){this.items.push(e);this.lookup[f]={instance:e,dependencies:d};this.onAdd.dispatch(this,f,e);return e},createUrl:function(d,e){if(typeof e==="object"){return e}else{return{prefix:d.prefix,resource:e,suffix:d.suffix}}},addComponents:function(f,d){var e=this.urls[f];b.each(d,function(g){b.ScriptLoader.add(e+"/"+g)})},load:function(j,f,d,h){var g=this,e=f;function i(){var k=g.dependencies(j);b.each(k,function(m){var l=g.createUrl(f,m);g.load(l.resource,l,undefined,undefined)});if(d){if(h){d.call(h)}else{d.call(b.ScriptLoader)}}}if(g.urls[j]){return}if(typeof f==="object"){e=f.prefix+f.resource+f.suffix}if(e.indexOf("/")!==0&&e.indexOf("://")==-1){e=b.baseURL+"/"+e}g.urls[j]=e.substring(0,e.lastIndexOf("/"));if(g.lookup[j]){i()}else{b.ScriptLoader.add(e,i,h)}}});b.PluginManager=new b.AddOnManager();b.ThemeManager=new b.AddOnManager()}(tinymce));(function(j){var g=j.each,d=j.extend,k=j.DOM,i=j.dom.Event,f=j.ThemeManager,b=j.PluginManager,e=j.explode,h=j.util.Dispatcher,a,c=0;j.documentBaseURL=window.location.href.replace(/[\?#].*$/,"").replace(/[\/\\][^\/]+$/,"");if(!/[\/\\]$/.test(j.documentBaseURL)){j.documentBaseURL+="/"}j.baseURL=new j.util.URI(j.documentBaseURL).toAbsolute(j.baseURL);j.baseURI=new j.util.URI(j.baseURL);j.onBeforeUnload=new h(j);i.add(window,"beforeunload",function(l){j.onBeforeUnload.dispatch(j,l)});j.onAddEditor=new h(j);j.onRemoveEditor=new h(j);j.EditorManager=d(j,{editors:[],i18n:{},activeEditor:null,init:function(x){var v=this,o,n=j.ScriptLoader,u,l=[],r;function q(t){var s=t.id;if(!s){s=t.name;if(s&&!k.get(s)){s=t.name}else{s=k.uniqueId()}t.setAttribute("id",s)}return s}function m(z,A,t){var y=z[A];if(!y){return}if(j.is(y,"string")){t=y.replace(/\.\w+$/,"");t=t?j.resolve(t):0;y=j.resolve(y)}return y.apply(t||this,Array.prototype.slice.call(arguments,2))}function p(t,s){return s.constructor===RegExp?s.test(t.className):k.hasClass(t,s)}v.settings=x;i.bind(window,"ready",function(){var s,t;m(x,"onpageload");switch(x.mode){case"exact":s=x.elements||"";if(s.length>0){g(e(s),function(y){if(k.get(y)){r=new j.Editor(y,x);l.push(r);r.render(1)}else{g(document.forms,function(z){g(z.elements,function(A){if(A.name===y){y="mce_editor_"+c++;k.setAttrib(A,"id",y);r=new j.Editor(y,x);l.push(r);r.render(1)}})})}})}break;case"textareas":case"specific_textareas":g(k.select("textarea"),function(y){if(x.editor_deselector&&p(y,x.editor_deselector)){return}if(!x.editor_selector||p(y,x.editor_selector)){r=new j.Editor(q(y),x);l.push(r);r.render(1)}});break;default:if(x.types){g(x.types,function(y){g(k.select(y.selector),function(A){var z=new j.Editor(q(A),j.extend({},x,y));l.push(z);z.render(1)})})}else{if(x.selector){g(k.select(x.selector),function(z){var y=new j.Editor(q(z),x);l.push(y);y.render(1)})}}}if(x.oninit){s=t=0;g(l,function(y){t++;if(!y.initialized){y.onInit.add(function(){s++;if(s==t){m(x,"oninit")}})}else{s++}if(s==t){m(x,"oninit")}})}})},get:function(l){if(l===a){return this.editors}return this.editors[l]},getInstanceById:function(l){return this.get(l)},add:function(m){var l=this,n=l.editors;n[m.id]=m;n.push(m);l._setActive(m);l.onAddEditor.dispatch(l,m);return m},remove:function(n){var m=this,l,o=m.editors;if(!o[n.id]){return null}delete o[n.id];for(l=0;l':"",visual:n,font_size_style_values:"xx-small,x-small,small,medium,large,x-large,xx-large",font_size_legacy_values:"xx-small,small,medium,large,x-large,xx-large,300%",apply_source_formatting:n,directionality:"ltr",forced_root_block:"p",hidden_input:n,padd_empty_editor:n,render_ui:n,indentation:"30px",fix_table_elements:n,inline_styles:n,convert_fonts_to_spans:n,indent:"simple",indent_before:"p,h1,h2,h3,h4,h5,h6,blockquote,div,title,style,pre,script,td,ul,li,area,table,thead,tfoot,tbody,tr,section,article,hgroup,aside,figure,option,optgroup,datalist",indent_after:"p,h1,h2,h3,h4,h5,h6,blockquote,div,title,style,pre,script,td,ul,li,area,table,thead,tfoot,tbody,tr,section,article,hgroup,aside,figure,option,optgroup,datalist",validate:n,entity_encoding:"named",url_converter:m.convertURL,url_converter_scope:m,ie7_compat:n},o);m.id=m.editorId=p;m.isNotDirty=false;m.plugins={};m.documentBaseURI=new k.util.URI(o.document_base_url||k.documentBaseURL,{base_uri:tinyMCE.baseURI});m.baseURI=k.baseURI;m.contentCSS=[];m.contentStyles=[];m.setupEvents();m.execCommands={};m.queryStateCommands={};m.queryValueCommands={};m.execCallback("setup",m)},render:function(o){var p=this,q=p.settings,r=p.id,m=k.ScriptLoader;if(!j.domLoaded){j.add(window,"ready",function(){p.render()});return}tinyMCE.settings=q;if(!p.getElement()){return}if(k.isIDevice&&!k.isIOS5){return}if(!/TEXTAREA|INPUT/i.test(p.getElement().nodeName)&&q.hidden_input&&l.getParent(r,"form")){l.insertAfter(l.create("input",{type:"hidden",name:r}),r)}if(!q.content_editable){p.orgVisibility=p.getElement().style.visibility;p.getElement().style.visibility="hidden"}if(k.WindowManager){p.windowManager=new k.WindowManager(p)}if(q.encoding=="xml"){p.onGetContent.add(function(s,t){if(t.save){t.content=l.encode(t.content)}})}if(q.add_form_submit_trigger){p.onSubmit.addToTop(function(){if(p.initialized){p.save();p.isNotDirty=1}})}if(q.add_unload_trigger){p._beforeUnload=tinyMCE.onBeforeUnload.add(function(){if(p.initialized&&!p.destroyed&&!p.isHidden()){p.save({format:"raw",no_events:true})}})}k.addUnload(p.destroy,p);if(q.submit_patch){p.onBeforeRenderUI.add(function(){var s=p.getElement().form;if(!s){return}if(s._mceOldSubmit){return}if(!s.submit.nodeType&&!s.submit.length){p.formElement=s;s._mceOldSubmit=s.submit;s.submit=function(){k.triggerSave();p.isNotDirty=1;return p.formElement._mceOldSubmit(p.formElement)}}s=null})}function n(){if(q.language&&q.language_load!==false){m.add(k.baseURL+"/langs/"+q.language+".js")}if(q.theme&&typeof q.theme!="function"&&q.theme.charAt(0)!="-"&&!h.urls[q.theme]){h.load(q.theme,"themes/"+q.theme+"/editor_template"+k.suffix+".js")}i(g(q.plugins),function(t){if(t&&!c.urls[t]){if(t.charAt(0)=="-"){t=t.substr(1,t.length);var s=c.dependencies(t);i(s,function(v){var u={prefix:"plugins/",resource:v,suffix:"/editor_plugin"+k.suffix+".js"};v=c.createUrl(u,v);c.load(v.resource,v)})}else{if(t=="safari"){return}c.load(t,{prefix:"plugins/",resource:t,suffix:"/editor_plugin"+k.suffix+".js"})}}});m.loadQueue(function(){if(!p.removed){p.init()}})}n()},init:function(){var q,G=this,H=G.settings,D,y,z,C=G.getElement(),p,m,E,v,B,F,x,r=[];k.add(G);H.aria_label=H.aria_label||l.getAttrib(C,"aria-label",G.getLang("aria.rich_text_area"));if(H.theme){if(typeof H.theme!="function"){H.theme=H.theme.replace(/-/,"");p=h.get(H.theme);G.theme=new p();if(G.theme.init){G.theme.init(G,h.urls[H.theme]||k.documentBaseURL.replace(/\/$/,""))}}else{G.theme=H.theme}}function A(s){var t=c.get(s),o=c.urls[s]||k.documentBaseURL.replace(/\/$/,""),n;if(t&&k.inArray(r,s)===-1){i(c.dependencies(s),function(u){A(u)});n=new t(G,o);G.plugins[s]=n;if(n.init){n.init(G,o);r.push(s)}}}i(g(H.plugins.replace(/\-/g,"")),A);if(H.popup_css!==false){if(H.popup_css){H.popup_css=G.documentBaseURI.toAbsolute(H.popup_css)}else{H.popup_css=G.baseURI.toAbsolute("themes/"+H.theme+"/skins/"+H.skin+"/dialog.css")}}if(H.popup_css_add){H.popup_css+=","+G.documentBaseURI.toAbsolute(H.popup_css_add)}G.controlManager=new k.ControlManager(G);G.onBeforeRenderUI.dispatch(G,G.controlManager);if(H.render_ui&&G.theme){G.orgDisplay=C.style.display;if(typeof H.theme!="function"){D=H.width||C.style.width||C.offsetWidth;y=H.height||C.style.height||C.offsetHeight;z=H.min_height||100;F=/^[0-9\.]+(|px)$/i;if(F.test(""+D)){D=Math.max(parseInt(D,10)+(p.deltaWidth||0),100)}if(F.test(""+y)){y=Math.max(parseInt(y,10)+(p.deltaHeight||0),z)}p=G.theme.renderUI({targetNode:C,width:D,height:y,deltaWidth:H.delta_width,deltaHeight:H.delta_height});l.setStyles(p.sizeContainer||p.editorContainer,{width:D,height:y});y=(p.iframeHeight||y)+(typeof(y)=="number"?(p.deltaHeight||0):"");if(y';if(H.document_base_url!=k.documentBaseURL){G.iframeHTML+=''}if(H.ie7_compat){G.iframeHTML+=''}else{G.iframeHTML+=''}G.iframeHTML+='';for(x=0;x'}G.contentCSS=[];v=H.body_id||"tinymce";if(v.indexOf("=")!=-1){v=G.getParam("body_id","","hash");v=v[G.id]||v}B=H.body_class||"";if(B.indexOf("=")!=-1){B=G.getParam("body_class","","hash");B=B[G.id]||""}G.iframeHTML+='
        ";if(k.relaxedDomain&&(b||(k.isOpera&&parseFloat(opera.version())<11))){E='javascript:(function(){document.open();document.domain="'+document.domain+'";var ed = window.parent.tinyMCE.get("'+G.id+'");document.write(ed.iframeHTML);document.close();ed.initContentBody();})()'}q=l.add(p.iframeContainer,"iframe",{id:G.id+"_ifr",src:E||'javascript:""',frameBorder:"0",allowTransparency:"true",title:H.aria_label,style:{width:"100%",height:y,display:"block"}});G.contentAreaContainer=p.iframeContainer;if(p.editorContainer){l.get(p.editorContainer).style.display=G.orgDisplay}C.style.visibility=G.orgVisibility;l.get(G.id).style.display="none";l.setAttrib(G.id,"aria-hidden",true);if(!k.relaxedDomain||!E){G.initContentBody()}C=q=p=null},initContentBody:function(){var n=this,p=n.settings,q=l.get(n.id),r=n.getDoc(),o,m,s;if((!b||!k.relaxedDomain)&&!p.content_editable){r.open();r.write(n.iframeHTML);r.close();if(k.relaxedDomain){r.domain=k.relaxedDomain}}if(p.content_editable){l.addClass(q,"mceContentBody");n.contentDocument=r=p.content_document||document;n.contentWindow=p.content_window||window;n.bodyElement=q;p.content_document=p.content_window=null}m=n.getBody();m.disabled=true;if(!p.readonly){m.contentEditable=n.getParam("content_editable_state",true)}m.disabled=false;n.schema=new k.html.Schema(p);n.dom=new k.dom.DOMUtils(r,{keep_values:true,url_converter:n.convertURL,url_converter_scope:n,hex_colors:p.force_hex_style_colors,class_filter:p.class_filter,update_styles:true,root_element:p.content_editable?n.id:null,schema:n.schema});n.parser=new k.html.DomParser(p,n.schema);n.parser.addAttributeFilter("src,href,style",function(t,u){var v=t.length,y,A=n.dom,z,x;while(v--){y=t[v];z=y.attr(u);x="data-mce-"+u;if(!y.attributes.map[x]){if(u==="style"){y.attr(x,A.serializeStyle(A.parseStyle(z),y.name))}else{y.attr(x,n.convertURL(z,u,y.name))}}}});n.parser.addNodeFilter("script",function(t,u){var v=t.length,x;while(v--){x=t[v];x.attr("type","mce-"+(x.attr("type")||"text/javascript"))}});n.parser.addNodeFilter("#cdata",function(t,u){var v=t.length,x;while(v--){x=t[v];x.type=8;x.name="#comment";x.value="[CDATA["+x.value+"]]"}});n.parser.addNodeFilter("p,h1,h2,h3,h4,h5,h6,div",function(u,v){var x=u.length,y,t=n.schema.getNonEmptyElements();while(x--){y=u[x];if(y.isEmpty(t)){y.empty().append(new k.html.Node("br",1)).shortEnded=true}}});n.serializer=new k.dom.Serializer(p,n.dom,n.schema);n.selection=new k.dom.Selection(n.dom,n.getWin(),n.serializer,n);n.formatter=new k.Formatter(n);n.undoManager=new k.UndoManager(n);n.forceBlocks=new k.ForceBlocks(n);n.enterKey=new k.EnterKey(n);n.editorCommands=new k.EditorCommands(n);n.onExecCommand.add(function(t,u){if(!/^(FontName|FontSize)$/.test(u)){n.nodeChanged()}});n.serializer.onPreProcess.add(function(t,u){return n.onPreProcess.dispatch(n,u,t)});n.serializer.onPostProcess.add(function(t,u){return n.onPostProcess.dispatch(n,u,t)});n.onPreInit.dispatch(n);if(!p.browser_spellcheck&&!p.gecko_spellcheck){r.body.spellcheck=false}if(!p.readonly){n.bindNativeEvents()}n.controlManager.onPostRender.dispatch(n,n.controlManager);n.onPostRender.dispatch(n);n.quirks=k.util.Quirks(n);if(p.directionality){m.dir=p.directionality}if(p.nowrap){m.style.whiteSpace="nowrap"}if(p.protect){n.onBeforeSetContent.add(function(t,u){i(p.protect,function(v){u.content=u.content.replace(v,function(x){return""})})})}n.onSetContent.add(function(){n.addVisual(n.getBody())});if(p.padd_empty_editor){n.onPostProcess.add(function(t,u){u.content=u.content.replace(/^(]*>( | |\s|\u00a0|)<\/p>[\r\n]*|
        [\r\n]*)$/,"")})}n.load({initial:true,format:"html"});n.startContent=n.getContent({format:"raw"});n.initialized=true;n.onInit.dispatch(n);n.execCallback("setupcontent_callback",n.id,m,r);n.execCallback("init_instance_callback",n);n.focus(true);n.nodeChanged({initial:true});if(n.contentStyles.length>0){s="";i(n.contentStyles,function(t){s+=t+"\r\n"});n.dom.addStyle(s)}i(n.contentCSS,function(t){n.dom.loadCSS(t)});if(p.auto_focus){setTimeout(function(){var t=k.get(p.auto_focus);t.selection.select(t.getBody(),1);t.selection.collapse(1);t.getBody().focus();t.getWin().focus()},100)}q=r=m=null},focus:function(p){var o,u=this,t=u.selection,q=u.settings.content_editable,n,r,s=u.getDoc(),m;if(!p){if(u.lastIERng){t.setRng(u.lastIERng)}n=t.getRng();if(n.item){r=n.item(0)}u._refreshContentEditable();if(!q){u.getWin().focus()}if(k.isGecko||q){m=u.getBody();if(m.setActive){m.setActive()}else{m.focus()}if(q){t.normalize()}}if(r&&r.ownerDocument==s){n=s.body.createControlRange();n.addElement(r);n.select()}}if(k.activeEditor!=u){if((o=k.activeEditor)!=null){o.onDeactivate.dispatch(o,u)}u.onActivate.dispatch(u,o)}k._setActive(u)},execCallback:function(q){var m=this,p=m.settings[q],o;if(!p){return}if(m.callbackLookup&&(o=m.callbackLookup[q])){p=o.func;o=o.scope}if(d(p,"string")){o=p.replace(/\.\w+$/,"");o=o?k.resolve(o):0;p=k.resolve(p);m.callbackLookup=m.callbackLookup||{};m.callbackLookup[q]={func:p,scope:o}}return p.apply(o||m,Array.prototype.slice.call(arguments,1))},translate:function(m){var o=this.settings.language||"en",n=k.i18n;if(!m){return""}return n[o+"."+m]||m.replace(/\{\#([^\}]+)\}/g,function(q,p){return n[o+"."+p]||"{#"+p+"}"})},getLang:function(o,m){return k.i18n[(this.settings.language||"en")+"."+o]||(d(m)?m:"{#"+o+"}")},getParam:function(t,q,m){var r=k.trim,p=d(this.settings[t])?this.settings[t]:q,s;if(m==="hash"){s={};if(d(p,"string")){i(p.indexOf("=")>0?p.split(/[;,](?![^=;,]*(?:[;,]|$))/):p.split(","),function(n){n=n.split("=");if(n.length>1){s[r(n[0])]=r(n[1])}else{s[r(n[0])]=r(n)}})}else{s=p}return s}return p},nodeChanged:function(q){var m=this,n=m.selection,p;if(m.initialized){q=q||{};p=n.getStart()||m.getBody();p=b&&p.ownerDocument!=m.getDoc()?m.getBody():p;q.parents=[];m.dom.getParent(p,function(o){if(o.nodeName=="BODY"){return true}q.parents.push(o)});m.onNodeChange.dispatch(m,q?q.controlManager||m.controlManager:m.controlManager,p,n.isCollapsed(),q)}},addButton:function(n,o){var m=this;m.buttons=m.buttons||{};m.buttons[n]=o},addCommand:function(m,o,n){this.execCommands[m]={func:o,scope:n||this}},addQueryStateHandler:function(m,o,n){this.queryStateCommands[m]={func:o,scope:n||this}},addQueryValueHandler:function(m,o,n){this.queryValueCommands[m]={func:o,scope:n||this}},addShortcut:function(o,q,m,p){var n=this,r;if(n.settings.custom_shortcuts===false){return false}n.shortcuts=n.shortcuts||{};if(d(m,"string")){r=m;m=function(){n.execCommand(r,false,null)}}if(d(m,"object")){r=m;m=function(){n.execCommand(r[0],r[1],r[2])}}i(g(o),function(s){var t={func:m,scope:p||this,desc:n.translate(q),alt:false,ctrl:false,shift:false};i(g(s,"+"),function(u){switch(u){case"alt":case"ctrl":case"shift":t[u]=true;break;default:t.charCode=u.charCodeAt(0);t.keyCode=u.toUpperCase().charCodeAt(0)}});n.shortcuts[(t.ctrl?"ctrl":"")+","+(t.alt?"alt":"")+","+(t.shift?"shift":"")+","+t.keyCode]=t});return true},execCommand:function(u,r,x,m){var p=this,q=0,v,n;if(!/^(mceAddUndoLevel|mceEndUndoLevel|mceBeginUndoLevel|mceRepaint|SelectAll)$/.test(u)&&(!m||!m.skip_focus)){p.focus()}m=f({},m);p.onBeforeExecCommand.dispatch(p,u,r,x,m);if(m.terminate){return false}if(p.execCallback("execcommand_callback",p.id,p.selection.getNode(),u,r,x)){p.onExecCommand.dispatch(p,u,r,x,m);return true}if(v=p.execCommands[u]){n=v.func.call(v.scope,r,x);if(n!==true){p.onExecCommand.dispatch(p,u,r,x,m);return n}}i(p.plugins,function(o){if(o.execCommand&&o.execCommand(u,r,x)){p.onExecCommand.dispatch(p,u,r,x,m);q=1;return false}});if(q){return true}if(p.theme&&p.theme.execCommand&&p.theme.execCommand(u,r,x)){p.onExecCommand.dispatch(p,u,r,x,m);return true}if(p.editorCommands.execCommand(u,r,x)){p.onExecCommand.dispatch(p,u,r,x,m);return true}p.getDoc().execCommand(u,r,x);p.onExecCommand.dispatch(p,u,r,x,m)},queryCommandState:function(q){var n=this,r,p;if(n._isHidden()){return}if(r=n.queryStateCommands[q]){p=r.func.call(r.scope);if(p!==true){return p}}r=n.editorCommands.queryCommandState(q);if(r!==-1){return r}try{return this.getDoc().queryCommandState(q)}catch(m){}},queryCommandValue:function(r){var n=this,q,p;if(n._isHidden()){return}if(q=n.queryValueCommands[r]){p=q.func.call(q.scope);if(p!==true){return p}}q=n.editorCommands.queryCommandValue(r);if(d(q)){return q}try{return this.getDoc().queryCommandValue(r)}catch(m){}},show:function(){var m=this;l.show(m.getContainer());l.hide(m.id);m.load()},hide:function(){var m=this,n=m.getDoc();if(b&&n){n.execCommand("SelectAll")}m.save();l.hide(m.getContainer());l.setStyle(m.id,"display",m.orgDisplay)},isHidden:function(){return !l.isHidden(this.id)},setProgressState:function(m,n,p){this.onSetProgressState.dispatch(this,m,n,p);return m},load:function(q){var m=this,p=m.getElement(),n;if(p){q=q||{};q.load=true;n=m.setContent(d(p.value)?p.value:p.innerHTML,q);q.element=p;if(!q.no_events){m.onLoadContent.dispatch(m,q)}q.element=p=null;return n}},save:function(r){var m=this,q=m.getElement(),n,p;if(!q||!m.initialized){return}r=r||{};r.save=true;r.element=q;n=r.content=m.getContent(r);if(!r.no_events){m.onSaveContent.dispatch(m,r)}n=r.content;if(!/TEXTAREA|INPUT/i.test(q.nodeName)){q.innerHTML=n;if(p=l.getParent(m.id,"form")){i(p.elements,function(o){if(o.name==m.id){o.value=n;return false}})}}else{q.value=n}r.element=q=null;return n},setContent:function(r,p){var o=this,n,m=o.getBody(),q;p=p||{};p.format=p.format||"html";p.set=true;p.content=r;if(!p.no_events){o.onBeforeSetContent.dispatch(o,p)}r=p.content;if(!k.isIE&&(r.length===0||/^\s+$/.test(r))){q=o.settings.forced_root_block;if(q){r="<"+q+'>
        "}else{r='
        '}m.innerHTML=r;o.selection.select(m,true);o.selection.collapse(true);return}if(p.format!=="raw"){r=new k.html.Serializer({},o.schema).serialize(o.parser.parse(r))}p.content=k.trim(r);o.dom.setHTML(m,p.content);if(!p.no_events){o.onSetContent.dispatch(o,p)}if(!o.settings.content_editable||document.activeElement===o.getBody()){o.selection.normalize()}return p.content},getContent:function(n){var m=this,o;n=n||{};n.format=n.format||"html";n.get=true;n.getInner=true;if(!n.no_events){m.onBeforeGetContent.dispatch(m,n)}if(n.format=="raw"){o=m.getBody().innerHTML}else{o=m.serializer.serialize(m.getBody(),n)}n.content=k.trim(o);if(!n.no_events){m.onGetContent.dispatch(m,n)}return n.content},isDirty:function(){var m=this;return k.trim(m.startContent)!=k.trim(m.getContent({format:"raw",no_events:1}))&&!m.isNotDirty},getContainer:function(){var m=this;if(!m.container){m.container=l.get(m.editorContainer||m.id+"_parent")}return m.container},getContentAreaContainer:function(){return this.contentAreaContainer},getElement:function(){return l.get(this.settings.content_element||this.id)},getWin:function(){var m=this,n;if(!m.contentWindow){n=l.get(m.id+"_ifr");if(n){m.contentWindow=n.contentWindow}}return m.contentWindow},getDoc:function(){var m=this,n;if(!m.contentDocument){n=m.getWin();if(n){m.contentDocument=n.document}}return m.contentDocument},getBody:function(){return this.bodyElement||this.getDoc().body},convertURL:function(o,n,q){var m=this,p=m.settings;if(p.urlconverter_callback){return m.execCallback("urlconverter_callback",o,q,true,n)}if(!p.convert_urls||(q&&q.nodeName=="LINK")||o.indexOf("file:")===0){return o}if(p.relative_urls){return m.documentBaseURI.toRelative(o)}o=m.documentBaseURI.toAbsolute(o,p.remove_script_host);return o},addVisual:function(q){var n=this,o=n.settings,p=n.dom,m;q=q||n.getBody();if(!d(n.hasVisual)){n.hasVisual=o.visual}i(p.select("table,a",q),function(s){var r;switch(s.nodeName){case"TABLE":m=o.visual_table_class||"mceItemTable";r=p.getAttrib(s,"border");if(!r||r=="0"){if(n.hasVisual){p.addClass(s,m)}else{p.removeClass(s,m)}}return;case"A":if(!p.getAttrib(s,"href",false)){r=p.getAttrib(s,"name")||s.id;m="mceItemAnchor";if(r){if(n.hasVisual){p.addClass(s,m)}else{p.removeClass(s,m)}}}return}});n.onVisualAid.dispatch(n,q,n.hasVisual)},remove:function(){var m=this,n=m.getContainer();if(!m.removed){m.removed=1;m.hide();if(!m.settings.content_editable){j.unbind(m.getWin());j.unbind(m.getDoc())}j.unbind(m.getBody());j.clear(n);m.execCallback("remove_instance_callback",m);m.onRemove.dispatch(m);m.onExecCommand.listeners=[];k.remove(m);l.remove(n)}},destroy:function(n){var m=this;if(m.destroyed){return}if(a){j.unbind(m.getDoc());j.unbind(m.getWin());j.unbind(m.getBody())}if(!n){k.removeUnload(m.destroy);tinyMCE.onBeforeUnload.remove(m._beforeUnload);if(m.theme&&m.theme.destroy){m.theme.destroy()}m.controlManager.destroy();m.selection.destroy();m.dom.destroy()}if(m.formElement){m.formElement.submit=m.formElement._mceOldSubmit;m.formElement._mceOldSubmit=null}m.contentAreaContainer=m.formElement=m.container=m.settings.content_element=m.bodyElement=m.contentDocument=m.contentWindow=null;if(m.selection){m.selection=m.selection.win=m.selection.dom=m.selection.dom.doc=null}m.destroyed=1},_refreshContentEditable:function(){var n=this,m,o;if(n._isHidden()){m=n.getBody();o=m.parentNode;o.removeChild(m);o.appendChild(m);m.focus()}},_isHidden:function(){var m;if(!a){return 0}m=this.selection.getSel();return(!m||!m.rangeCount||m.rangeCount===0)}})})(tinymce);(function(a){var b=a.each;a.Editor.prototype.setupEvents=function(){var c=this,d=c.settings;b(["onPreInit","onBeforeRenderUI","onPostRender","onLoad","onInit","onRemove","onActivate","onDeactivate","onClick","onEvent","onMouseUp","onMouseDown","onDblClick","onKeyDown","onKeyUp","onKeyPress","onContextMenu","onSubmit","onReset","onPaste","onPreProcess","onPostProcess","onBeforeSetContent","onBeforeGetContent","onSetContent","onGetContent","onLoadContent","onSaveContent","onNodeChange","onChange","onBeforeExecCommand","onExecCommand","onUndo","onRedo","onVisualAid","onSetProgressState","onSetAttrib"],function(e){c[e]=new a.util.Dispatcher(c)});if(d.cleanup_callback){c.onBeforeSetContent.add(function(e,f){f.content=e.execCallback("cleanup_callback","insert_to_editor",f.content,f)});c.onPreProcess.add(function(e,f){if(f.set){e.execCallback("cleanup_callback","insert_to_editor_dom",f.node,f)}if(f.get){e.execCallback("cleanup_callback","get_from_editor_dom",f.node,f)}});c.onPostProcess.add(function(e,f){if(f.set){f.content=e.execCallback("cleanup_callback","insert_to_editor",f.content,f)}if(f.get){f.content=e.execCallback("cleanup_callback","get_from_editor",f.content,f)}})}if(d.save_callback){c.onGetContent.add(function(e,f){if(f.save){f.content=e.execCallback("save_callback",e.id,f.content,e.getBody())}})}if(d.handle_event_callback){c.onEvent.add(function(f,g,h){if(c.execCallback("handle_event_callback",g,f,h)===false){g.preventDefault();g.stopPropagation()}})}if(d.handle_node_change_callback){c.onNodeChange.add(function(f,e,g){f.execCallback("handle_node_change_callback",f.id,g,-1,-1,true,f.selection.isCollapsed())})}if(d.save_callback){c.onSaveContent.add(function(e,g){var f=e.execCallback("save_callback",e.id,g.content,e.getBody());if(f){g.content=f}})}if(d.onchange_callback){c.onChange.add(function(f,e){f.execCallback("onchange_callback",f,e)})}};a.Editor.prototype.bindNativeEvents=function(){var l=this,f,d=l.settings,e=l.dom,h;h={mouseup:"onMouseUp",mousedown:"onMouseDown",click:"onClick",keyup:"onKeyUp",keydown:"onKeyDown",keypress:"onKeyPress",submit:"onSubmit",reset:"onReset",contextmenu:"onContextMenu",dblclick:"onDblClick",paste:"onPaste"};function c(i,m){var n=i.type;if(l.removed){return}if(l.onEvent.dispatch(l,i,m)!==false){l[h[i.fakeType||i.type]].dispatch(l,i,m)}}function j(i){l.focus(true)}function k(i,m){if(m.keyCode!=65||!a.VK.metaKeyPressed(m)){l.selection.normalize()}l.nodeChanged()}b(h,function(m,n){var i=d.content_editable?l.getBody():l.getDoc();switch(n){case"contextmenu":e.bind(i,n,c);break;case"paste":e.bind(l.getBody(),n,c);break;case"submit":case"reset":e.bind(l.getElement().form||a.DOM.getParent(l.id,"form"),n,c);break;default:e.bind(i,n,c)}});e.bind(d.content_editable?l.getBody():(a.isGecko?l.getDoc():l.getWin()),"focus",function(i){l.focus(true)});if(d.content_editable&&a.isOpera){e.bind(l.getBody(),"click",j);e.bind(l.getBody(),"keydown",j)}l.onMouseUp.add(k);l.onKeyUp.add(function(i,n){var m=n.keyCode;if((m>=33&&m<=36)||(m>=37&&m<=40)||m==13||m==45||m==46||m==8||(a.isMac&&(m==91||m==93))||n.ctrlKey){k(i,n)}});l.onReset.add(function(){l.setContent(l.startContent,{format:"raw"})});function g(m,i){if(m.altKey||m.ctrlKey||m.metaKey){b(l.shortcuts,function(n){var o=a.isMac?m.metaKey:m.ctrlKey;if(n.ctrl!=o||n.alt!=m.altKey||n.shift!=m.shiftKey){return}if(m.keyCode==n.keyCode||(m.charCode&&m.charCode==n.charCode)){m.preventDefault();if(i){n.func.call(n.scope)}return true}})}}l.onKeyUp.add(function(i,m){g(m)});l.onKeyPress.add(function(i,m){g(m)});l.onKeyDown.add(function(i,m){g(m,true)});if(a.isOpera){l.onClick.add(function(i,m){m.preventDefault()})}}})(tinymce);(function(d){var e=d.each,b,a=true,c=false;d.EditorCommands=function(n){var m=n.dom,p=n.selection,j={state:{},exec:{},value:{}},k=n.settings,q=n.formatter,o;function r(z,y,x){var v;z=z.toLowerCase();if(v=j.exec[z]){v(z,y,x);return a}return c}function l(x){var v;x=x.toLowerCase();if(v=j.state[x]){return v(x)}return -1}function h(x){var v;x=x.toLowerCase();if(v=j.value[x]){return v(x)}return c}function u(v,x){x=x||"exec";e(v,function(z,y){e(y.toLowerCase().split(","),function(A){j[x][A]=z})})}d.extend(this,{execCommand:r,queryCommandState:l,queryCommandValue:h,addCommands:u});function f(y,x,v){if(x===b){x=c}if(v===b){v=null}return n.getDoc().execCommand(y,x,v)}function t(v){return q.match(v)}function s(v,x){q.toggle(v,x?{value:x}:b)}function i(v){o=p.getBookmark(v)}function g(){p.moveToBookmark(o)}u({"mceResetDesignMode,mceBeginUndoLevel":function(){},"mceEndUndoLevel,mceAddUndoLevel":function(){n.undoManager.add()},"Cut,Copy,Paste":function(z){var y=n.getDoc(),v;try{f(z)}catch(x){v=a}if(v||!y.queryCommandSupported(z)){if(d.isGecko){n.windowManager.confirm(n.getLang("clipboard_msg"),function(A){if(A){open("http://www.mozilla.org/editor/midasdemo/securityprefs.html","_blank")}})}else{n.windowManager.alert(n.getLang("clipboard_no_support"))}}},unlink:function(v){if(p.isCollapsed()){p.select(p.getNode())}f(v);p.collapse(c)},"JustifyLeft,JustifyCenter,JustifyRight,JustifyFull":function(v){var x=v.substring(7);e("left,center,right,full".split(","),function(y){if(x!=y){q.remove("align"+y)}});s("align"+x);r("mceRepaint")},"InsertUnorderedList,InsertOrderedList":function(y){var v,x;f(y);v=m.getParent(p.getNode(),"ol,ul");if(v){x=v.parentNode;if(/^(H[1-6]|P|ADDRESS|PRE)$/.test(x.nodeName)){i();m.split(x,v);g()}}},"Bold,Italic,Underline,Strikethrough,Superscript,Subscript":function(v){s(v)},"ForeColor,HiliteColor,FontName":function(y,x,v){s(y,v)},FontSize:function(z,y,x){var v,A;if(x>=1&&x<=7){A=d.explode(k.font_size_style_values);v=d.explode(k.font_size_classes);if(v){x=v[x-1]||x}else{x=A[x-1]||x}}s(z,x)},RemoveFormat:function(v){q.remove(v)},mceBlockQuote:function(v){s("blockquote")},FormatBlock:function(y,x,v){return s(v||"p")},mceCleanup:function(){var v=p.getBookmark();n.setContent(n.getContent({cleanup:a}),{cleanup:a});p.moveToBookmark(v)},mceRemoveNode:function(z,y,x){var v=x||p.getNode();if(v!=n.getBody()){i();n.dom.remove(v,a);g()}},mceSelectNodeDepth:function(z,y,x){var v=0;m.getParent(p.getNode(),function(A){if(A.nodeType==1&&v++==x){p.select(A);return c}},n.getBody())},mceSelectNode:function(y,x,v){p.select(v)},mceInsertContent:function(B,I,K){var y,J,E,z,F,G,D,C,L,x,A,M,v,H;y=n.parser;J=new d.html.Serializer({},n.schema);v='\uFEFF';G={content:K,format:"html"};p.onBeforeSetContent.dispatch(p,G);K=G.content;if(K.indexOf("{$caret}")==-1){K+="{$caret}"}K=K.replace(/\{\$caret\}/,v);if(!p.isCollapsed()){n.getDoc().execCommand("Delete",false,null)}E=p.getNode();G={context:E.nodeName.toLowerCase()};F=y.parse(K,G);A=F.lastChild;if(A.attr("id")=="mce_marker"){D=A;for(A=A.prev;A;A=A.walk(true)){if(A.type==3||!m.isBlock(A.name)){A.parent.insert(D,A,A.name==="br");break}}}if(!G.invalid){K=J.serialize(F);A=E.firstChild;M=E.lastChild;if(!A||(A===M&&A.nodeName==="BR")){m.setHTML(E,K)}else{p.setContent(K)}}else{p.setContent(v);E=n.selection.getNode();z=n.getBody();if(E.nodeType==9){E=A=z}else{A=E}while(A!==z){E=A;A=A.parentNode}K=E==z?z.innerHTML:m.getOuterHTML(E);K=J.serialize(y.parse(K.replace(//i,function(){return J.serialize(F)})));if(E==z){m.setHTML(z,K)}else{m.setOuterHTML(E,K)}}D=m.get("mce_marker");C=m.getRect(D);L=m.getViewPort(n.getWin());if((C.y+C.h>L.y+L.h||C.yL.x+L.w||C.x")},mceToggleVisualAid:function(){n.hasVisual=!n.hasVisual;n.addVisual()},mceReplaceContent:function(y,x,v){n.execCommand("mceInsertContent",false,v.replace(/\{\$selection\}/g,p.getContent({format:"text"})))},mceInsertLink:function(z,y,x){var v;if(typeof(x)=="string"){x={href:x}}v=m.getParent(p.getNode(),"a");x.href=x.href.replace(" ","%20");if(!v||!x.href){q.remove("link")}if(x.href){q.apply("link",x,v)}},selectAll:function(){var x=m.getRoot(),v=m.createRng();v.setStart(x,0);v.setEnd(x,x.childNodes.length);n.selection.setRng(v)}});u({"JustifyLeft,JustifyCenter,JustifyRight,JustifyFull":function(z){var x="align"+z.substring(7);var v=p.isCollapsed()?[m.getParent(p.getNode(),m.isBlock)]:p.getSelectedBlocks();var y=d.map(v,function(A){return !!q.matchNode(A,x)});return d.inArray(y,a)!==-1},"Bold,Italic,Underline,Strikethrough,Superscript,Subscript":function(v){return t(v)},mceBlockQuote:function(){return t("blockquote")},Outdent:function(){var v;if(k.inline_styles){if((v=m.getParent(p.getStart(),m.isBlock))&&parseInt(v.style.paddingLeft)>0){return a}if((v=m.getParent(p.getEnd(),m.isBlock))&&parseInt(v.style.paddingLeft)>0){return a}}return l("InsertUnorderedList")||l("InsertOrderedList")||(!k.inline_styles&&!!m.getParent(p.getNode(),"BLOCKQUOTE"))},"InsertUnorderedList,InsertOrderedList":function(v){return m.getParent(p.getNode(),v=="insertunorderedlist"?"UL":"OL")}},"state");u({"FontSize,FontName":function(y){var x=0,v;if(v=m.getParent(p.getNode(),"span")){if(y=="fontsize"){x=v.style.fontSize}else{x=v.style.fontFamily.replace(/, /g,",").replace(/[\'\"]/g,"").toLowerCase()}}return x}},"value");u({Undo:function(){n.undoManager.undo()},Redo:function(){n.undoManager.redo()}})}})(tinymce);(function(b){var a=b.util.Dispatcher;b.UndoManager=function(h){var l,i=0,e=[],g,k,j,f;function c(){return b.trim(h.getContent({format:"raw",no_events:1}).replace(/]+data-mce-bogus[^>]+>[\u200B\uFEFF]+<\/span>/g,""))}function d(){l.typing=false;l.add()}onBeforeAdd=new a(l);k=new a(l);j=new a(l);f=new a(l);k.add(function(m,n){if(m.hasUndo()){return h.onChange.dispatch(h,n,m)}});j.add(function(m,n){return h.onUndo.dispatch(h,n,m)});f.add(function(m,n){return h.onRedo.dispatch(h,n,m)});h.onInit.add(function(){l.add()});h.onBeforeExecCommand.add(function(m,p,o,q,n){if(p!="Undo"&&p!="Redo"&&p!="mceRepaint"&&(!n||!n.skip_undo)){l.beforeChange()}});h.onExecCommand.add(function(m,p,o,q,n){if(p!="Undo"&&p!="Redo"&&p!="mceRepaint"&&(!n||!n.skip_undo)){l.add()}});h.onSaveContent.add(d);h.dom.bind(h.dom.getRoot(),"dragend",d);h.dom.bind(h.getDoc(),b.isGecko?"blur":"focusout",function(m){if(!h.removed&&l.typing){d()}});h.onKeyUp.add(function(m,o){var n=o.keyCode;if((n>=33&&n<=36)||(n>=37&&n<=40)||n==45||n==13||o.ctrlKey){d()}});h.onKeyDown.add(function(m,o){var n=o.keyCode;if((n>=33&&n<=36)||(n>=37&&n<=40)||n==45){if(l.typing){d()}return}if((n<16||n>20)&&n!=224&&n!=91&&!l.typing){l.beforeChange();l.typing=true;l.add()}});h.onMouseDown.add(function(m,n){if(l.typing){d()}});h.addShortcut("ctrl+z","undo_desc","Undo");h.addShortcut("ctrl+y","redo_desc","Redo");l={data:e,typing:false,onBeforeAdd:onBeforeAdd,onAdd:k,onUndo:j,onRedo:f,beforeChange:function(){g=h.selection.getBookmark(2,true)},add:function(p){var m,n=h.settings,o;p=p||{};p.content=c();l.onBeforeAdd.dispatch(l,p);o=e[i];if(o&&o.content==p.content){return null}if(e[i]){e[i].beforeBookmark=g}if(n.custom_undo_redo_levels){if(e.length>n.custom_undo_redo_levels){for(m=0;m0){n=e[--i];h.setContent(n.content,{format:"raw"});h.selection.moveToBookmark(n.beforeBookmark);l.onUndo.dispatch(l,n)}return n},redo:function(){var m;if(i0||this.typing},hasRedo:function(){return i0){g.moveEnd("character",q)}g.select()}catch(n){}}}c.nodeChanged()}}if(b.forced_root_block){c.onKeyUp.add(f);c.onNodeChange.add(f)}};(function(c){var b=c.DOM,a=c.dom.Event,d=c.each,e=c.extend;c.create("tinymce.ControlManager",{ControlManager:function(f,j){var h=this,g;j=j||{};h.editor=f;h.controls={};h.onAdd=new c.util.Dispatcher(h);h.onPostRender=new c.util.Dispatcher(h);h.prefix=j.prefix||f.id+"_";h._cls={};h.onPostRender.add(function(){d(h.controls,function(i){i.postRender()})})},get:function(f){return this.controls[this.prefix+f]||this.controls[f]},setActive:function(h,f){var g=null;if(g=this.get(h)){g.setActive(f)}return g},setDisabled:function(h,f){var g=null;if(g=this.get(h)){g.setDisabled(f)}return g},add:function(g){var f=this;if(g){f.controls[g.id]=g;f.onAdd.dispatch(g,f)}return g},createControl:function(j){var o,k,g,h=this,m=h.editor,n,f;if(!h.controlFactories){h.controlFactories=[];d(m.plugins,function(i){if(i.createControl){h.controlFactories.push(i)}})}n=h.controlFactories;for(k=0,g=n.length;k1||ag==ay||ag.tagName=="BR"){return ag}}}var aq=aa.selection.getRng();var av=aq.startContainer;var ap=aq.endContainer;if(av!=ap&&aq.endOffset===0){var au=ar(av,ap);var at=au.nodeType==3?au.length:au.childNodes.length;aq.setEnd(au,at)}return aq}function ad(at,ay,aw,av,aq){var ap=[],ar=-1,ax,aA=-1,au=-1,az;T(at.childNodes,function(aC,aB){if(aC.nodeName==="UL"||aC.nodeName==="OL"){ar=aB;ax=aC;return false}});T(at.childNodes,function(aC,aB){if(aC.nodeName==="SPAN"&&c.getAttrib(aC,"data-mce-type")=="bookmark"){if(aC.id==ay.id+"_start"){aA=aB}else{if(aC.id==ay.id+"_end"){au=aB}}}});if(ar<=0||(aAar)){T(a.grep(at.childNodes),aq);return 0}else{az=c.clone(aw,X);T(a.grep(at.childNodes),function(aC,aB){if((aAar&&aB>ar)){ap.push(aC);aC.parentNode.removeChild(aC)}});if(aAar){at.insertBefore(az,ax.nextSibling)}}av.push(az);T(ap,function(aB){az.appendChild(aB)});return az}}function an(aq,at,aw){var ap=[],av,ar,au=true;av=am.inline||am.block;ar=c.create(av);ab(ar);N.walk(aq,function(ax){var ay;function az(aA){var aF,aD,aB,aC,aE;aE=au;aF=aA.nodeName.toLowerCase();aD=aA.parentNode.nodeName.toLowerCase();if(aA.nodeType===1&&x(aA)){aE=au;au=x(aA)==="true";aC=true}if(g(aF,"br")){ay=0;if(am.block){c.remove(aA)}return}if(am.wrapper&&y(aA,ae,al)){ay=0;return}if(au&&!aC&&am.block&&!am.wrapper&&I(aF)){aA=c.rename(aA,av);ab(aA);ap.push(aA);ay=0;return}if(am.selector){T(ah,function(aG){if("collapsed" in aG&&aG.collapsed!==ai){return}if(c.is(aA,aG.selector)&&!b(aA)){ab(aA,aG);aB=true}});if(!am.inline||aB){ay=0;return}}if(au&&!aC&&d(av,aF)&&d(aD,av)&&!(!aw&&aA.nodeType===3&&aA.nodeValue.length===1&&aA.nodeValue.charCodeAt(0)===65279)&&!b(aA)){if(!ay){ay=c.clone(ar,X);aA.parentNode.insertBefore(ay,aA);ap.push(ay)}ay.appendChild(aA)}else{if(aF=="li"&&at){ay=ad(aA,at,ar,ap,az)}else{ay=0;T(a.grep(aA.childNodes),az);if(aC){au=aE}ay=0}}}T(ax,az)});if(am.wrap_links===false){T(ap,function(ax){function ay(aC){var aB,aA,az;if(aC.nodeName==="A"){aA=c.clone(ar,X);ap.push(aA);az=a.grep(aC.childNodes);for(aB=0;aB1||!H(az))&&ax===0){c.remove(az,1);return}if(am.inline||am.wrapper){if(!am.exact&&ax===1){az=ay(az)}T(ah,function(aB){T(c.select(aB.inline,az),function(aD){var aC;if(aB.wrap_links===false){aC=aD.parentNode;do{if(aC.nodeName==="A"){return}}while(aC=aC.parentNode)}Z(aB,al,aD,aB.exact?aD:null)})});if(y(az.parentNode,ae,al)){c.remove(az,1);az=0;return C}if(am.merge_with_parents){c.getParent(az.parentNode,function(aB){if(y(aB,ae,al)){c.remove(az,1);az=0;return C}})}if(az&&am.merge_siblings!==false){az=u(E(az),az);az=u(az,E(az,C))}}})}if(am){if(ag){if(ag.nodeType){ac=c.createRng();ac.setStartBefore(ag);ac.setEndAfter(ag);an(p(ac,ah),null,true)}else{an(ag,null,true)}}else{if(!ai||!am.inline||c.select("td.mceSelected,th.mceSelected").length){var ao=aa.selection.getNode();if(!m&&ah[0].defaultBlock&&!c.getParent(ao,c.isBlock)){Y(ah[0].defaultBlock)}aa.selection.setRng(af());ak=r.getBookmark();an(p(r.getRng(C),ah),ak);if(am.styles&&(am.styles.color||am.styles.textDecoration)){a.walk(ao,L,"childNodes");L(ao)}r.moveToBookmark(ak);R(r.getRng(C));aa.nodeChanged()}else{U("apply",ae,al)}}}}function B(ad,am,af){var ag=V(ad),ao=ag[0],ak,aj,ac,al=true;function ae(av){var au,at,ar,aq,ax,aw;if(av.nodeType===1&&x(av)){ax=al;al=x(av)==="true";aw=true}au=a.grep(av.childNodes);if(al&&!aw){for(at=0,ar=ag.length;at=0;ac--){ab=ah[ac].selector;if(!ab){return C}for(ag=ad.length-1;ag>=0;ag--){if(c.is(ad[ag],ab)){return C}}}}return X}function J(ab,ad){var ac;if(!P){P={};ac={};aa.onNodeChange.addToTop(function(af,ae,ah){var ag=n(ah),ai={};T(P,function(aj,ak){T(ag,function(al){if(y(al,ak,{},true)){if(!ac[ak]){T(aj,function(am){am(true,{node:al,format:ak,parents:ag})});ac[ak]=aj}ai[ak]=aj;return false}})});T(ac,function(aj,ak){if(!ai[ak]){delete ac[ak];T(aj,function(al){al(false,{node:ah,format:ak,parents:ag})})}})})}T(ab.split(","),function(ae){if(!P[ae]){P[ae]=[]}P[ae].push(ad)});return this}a.extend(this,{get:V,register:l,apply:Y,remove:B,toggle:F,match:k,matchAll:v,matchNode:y,canApply:z,formatChanged:J});j();W();function h(ab,ac){if(g(ab,ac.inline)){return C}if(g(ab,ac.block)){return C}if(ac.selector){return c.is(ab,ac.selector)}}function g(ac,ab){ac=ac||"";ab=ab||"";ac=""+(ac.nodeName||ac);ab=""+(ab.nodeName||ab);return ac.toLowerCase()==ab.toLowerCase()}function O(ac,ab){var ad=c.getStyle(ac,ab);if(ab=="color"||ab=="backgroundColor"){ad=c.toHex(ad)}if(ab=="fontWeight"&&ad==700){ad="bold"}return""+ad}function q(ab,ac){if(typeof(ab)!="string"){ab=ab(ac)}else{if(ac){ab=ab.replace(/%(\w+)/g,function(ae,ad){return ac[ad]||ae})}}return ab}function f(ab){return ab&&ab.nodeType===3&&/^([\t \r\n]+|)$/.test(ab.nodeValue)}function S(ad,ac,ab){var ae=c.create(ac,ab);ad.parentNode.insertBefore(ae,ad);ae.appendChild(ad);return ae}function p(ab,am,ae){var ap,an,ah,al,ad=ab.startContainer,ai=ab.startOffset,ar=ab.endContainer,ak=ab.endOffset;function ao(az){var au,ax,ay,aw,av,at;au=ax=az?ad:ar;av=az?"previousSibling":"nextSibling";at=c.getRoot();if(au.nodeType==3&&!f(au)){if(az?ai>0:akan?an:ai];if(ad.nodeType==3){ai=0}}if(ar.nodeType==1&&ar.hasChildNodes()){an=ar.childNodes.length-1;ar=ar.childNodes[ak>an?an:ak-1];if(ar.nodeType==3){ak=ar.nodeValue.length}}function aq(au){var at=au;while(at){if(at.nodeType===1&&x(at)){return x(at)==="false"?at:au}at=at.parentNode}return au}function aj(au,ay,aA){var ax,av,az,at;function aw(aC,aE){var aF,aB,aD=aC.nodeValue;if(typeof(aE)=="undefined"){aE=aA?aD.length:0}if(aA){aF=aD.lastIndexOf(" ",aE);aB=aD.lastIndexOf("\u00a0",aE);aF=aF>aB?aF:aB;if(aF!==-1&&!ae){aF++}}else{aF=aD.indexOf(" ",aE);aB=aD.indexOf("\u00a0",aE);aF=aF!==-1&&(aB===-1||aF0&&ah.node.nodeType===3&&ah.node.nodeValue.charAt(ah.offset-1)===" "){if(ah.offset>1){ar=ah.node;ar.splitText(ah.offset-1)}}}}if(am[0].inline||am[0].block_expand){if(!am[0].inline||(ad.nodeType!=3||ai===0)){ad=ao(true)}if(!am[0].inline||(ar.nodeType!=3||ak===ar.nodeValue.length)){ar=ao()}}if(am[0].selector&&am[0].expand!==X&&!am[0].inline){ad=af(ad,"previousSibling");ar=af(ar,"nextSibling")}if(am[0].block||am[0].selector){ad=ac(ad,"previousSibling");ar=ac(ar,"nextSibling");if(am[0].block){if(!H(ad)){ad=ao(true)}if(!H(ar)){ar=ao()}}}if(ad.nodeType==1){ai=s(ad);ad=ad.parentNode}if(ar.nodeType==1){ak=s(ar)+1;ar=ar.parentNode}return{startContainer:ad,startOffset:ai,endContainer:ar,endOffset:ak}}function Z(ah,ag,ae,ab){var ad,ac,af;if(!h(ae,ah)){return X}if(ah.remove!="all"){T(ah.styles,function(aj,ai){aj=q(aj,ag);if(typeof(ai)==="number"){ai=aj;ab=0}if(!ab||g(O(ab,ai),aj)){c.setStyle(ae,ai,"")}af=1});if(af&&c.getAttrib(ae,"style")==""){ae.removeAttribute("style");ae.removeAttribute("data-mce-style")}T(ah.attributes,function(ak,ai){var aj;ak=q(ak,ag);if(typeof(ai)==="number"){ai=ak;ab=0}if(!ab||g(c.getAttrib(ab,ai),ak)){if(ai=="class"){ak=c.getAttrib(ae,ai);if(ak){aj="";T(ak.split(/\s+/),function(al){if(/mce\w+/.test(al)){aj+=(aj?" ":"")+al}});if(aj){c.setAttrib(ae,ai,aj);return}}}if(ai=="class"){ae.removeAttribute("className")}if(e.test(ai)){ae.removeAttribute("data-mce-"+ai)}ae.removeAttribute(ai)}});T(ah.classes,function(ai){ai=q(ai,ag);if(!ab||c.hasClass(ab,ai)){c.removeClass(ae,ai)}});ac=c.getAttribs(ae);for(ad=0;adad?ad:af]}if(ab.nodeType===3&&ag&&af>=ab.nodeValue.length){ab=new t(ab,aa.getBody()).next()||ab}if(ab.nodeType===3&&!ag&&af===0){ab=new t(ab,aa.getBody()).prev()||ab}return ab}function U(ak,ab,ai){var al="_mce_caret",ac=aa.settings.caret_debug;function ad(ap){var ao=c.create("span",{id:al,"data-mce-bogus":true,style:ac?"color:red":""});if(ap){ao.appendChild(aa.getDoc().createTextNode(G))}return ao}function aj(ap,ao){while(ap){if((ap.nodeType===3&&ap.nodeValue!==G)||ap.childNodes.length>1){return false}if(ao&&ap.nodeType===1){ao.push(ap)}ap=ap.firstChild}return true}function ag(ao){while(ao){if(ao.id===al){return ao}ao=ao.parentNode}}function af(ao){var ap;if(ao){ap=new t(ao,ao);for(ao=ap.current();ao;ao=ap.next()){if(ao.nodeType===3){return ao}}}}function ae(aq,ap){var ar,ao;if(!aq){aq=ag(r.getStart());if(!aq){while(aq=c.get(al)){ae(aq,false)}}}else{ao=r.getRng(true);if(aj(aq)){if(ap!==false){ao.setStartBefore(aq);ao.setEndBefore(aq)}c.remove(aq)}else{ar=af(aq);if(ar.nodeValue.charAt(0)===G){ar=ar.deleteData(0,1)}c.remove(aq,1)}r.setRng(ao)}}function ah(){var aq,ao,av,au,ar,ap,at;aq=r.getRng(true);au=aq.startOffset;ap=aq.startContainer;at=ap.nodeValue;ao=ag(r.getStart());if(ao){av=af(ao)}if(at&&au>0&&au=0;at--){aq.appendChild(c.clone(ax[at],false));aq=aq.firstChild}aq.appendChild(c.doc.createTextNode(G));aq=aq.firstChild;c.insertAfter(aw,ay);r.setCursorLocation(aq,1)}}function an(){var ap,ao,aq;ao=ag(r.getStart());if(ao&&!c.isEmpty(ao)){a.walk(ao,function(ar){if(ar.nodeType==1&&ar.id!==al&&!c.isEmpty(ar)){c.setAttrib(ar,"data-mce-bogus",null)}},"childNodes")}}if(!self._hasCaretEvents){aa.onBeforeGetContent.addToTop(function(){var ao=[],ap;if(aj(ag(r.getStart()),ao)){ap=ao.length;while(ap--){c.setAttrib(ao[ap],"data-mce-bogus","1")}}});a.each("onMouseUp onKeyUp".split(" "),function(ao){aa[ao].addToTop(function(){ae();an()})});aa.onKeyDown.addToTop(function(ao,aq){var ap=aq.keyCode;if(ap==8||ap==37||ap==39){ae(ag(r.getStart()))}an()});r.onSetContent.add(an);self._hasCaretEvents=true}if(ak=="apply"){ah()}else{am()}}function R(ac){var ab=ac.startContainer,ai=ac.startOffset,ae,ah,ag,ad,af;if(ab.nodeType==3&&ai>=ab.nodeValue.length){ai=s(ab);ab=ab.parentNode;ae=true}if(ab.nodeType==1){ad=ab.childNodes;ab=ad[Math.min(ai,ad.length-1)];ah=new t(ab,c.getParent(ab,c.isBlock));if(ai>ad.length-1||ae){ah.next()}for(ag=ah.current();ag;ag=ah.next()){if(ag.nodeType==3&&!f(ag)){af=c.create("a",null,G);ag.parentNode.insertBefore(af,ag);ac.setStart(ag,0);r.setRng(ac);c.remove(af);return}}}}}})(tinymce);tinymce.onAddEditor.add(function(e,a){var d,h,g,c=a.settings;function b(j,i){e.each(i,function(l,k){if(l){g.setStyle(j,k,l)}});g.rename(j,"span")}function f(i,j){g=i.dom;if(c.convert_fonts_to_spans){e.each(g.select("font,u,strike",j.node),function(k){d[k.nodeName.toLowerCase()](a.dom,k)})}}if(c.inline_styles){h=e.explode(c.font_size_legacy_values);d={font:function(j,i){b(i,{backgroundColor:i.style.backgroundColor,color:i.color,fontFamily:i.face,fontSize:h[parseInt(i.size,10)-1]})},u:function(j,i){b(i,{textDecoration:"underline"})},strike:function(j,i){b(i,{textDecoration:"line-through"})}};a.onPreProcess.add(f);a.onSetContent.add(f);a.onInit.add(function(){a.selection.onSetContent.add(f)})}});(function(b){var a=b.dom.TreeWalker;b.EnterKey=function(f){var i=f.dom,e=f.selection,d=f.settings,h=f.undoManager,c=f.schema.getNonEmptyElements();function g(A){var v=e.getRng(true),E,j,z,u,p,L,o,k,n,t,I,x,B;function D(M){return M&&i.isBlock(M)&&!/^(TD|TH|CAPTION|FORM)$/.test(M.nodeName)&&!/^(fixed|absolute)/i.test(M.style.position)&&i.getContentEditable(M)!=="true"}function F(N){var M;if(b.isIE&&i.isBlock(N)){M=e.getRng();N.appendChild(i.create("span",null,"\u00a0"));e.select(N);N.lastChild.outerHTML="";e.setRng(M)}}function y(O){var N=O,P=[],M;while(N=N.firstChild){if(i.isBlock(N)){return}if(N.nodeType==1&&!c[N.nodeName.toLowerCase()]){P.push(N)}}M=P.length;while(M--){N=P[M];if(!N.hasChildNodes()||(N.firstChild==N.lastChild&&N.firstChild.nodeValue==="")){i.remove(N)}}}function m(N){var S,Q,M,T,R,P=N,O;M=i.createRng();if(N.hasChildNodes()){S=new a(N,N);while(Q=S.current()){if(Q.nodeType==3){M.setStart(Q,0);M.setEnd(Q,0);break}if(c[Q.nodeName.toLowerCase()]){M.setStartBefore(Q);M.setEndBefore(Q);break}P=Q;Q=S.next()}if(!Q){M.setStart(P,0);M.setEnd(P,0)}}else{if(N.nodeName=="BR"){if(N.nextSibling&&i.isBlock(N.nextSibling)){if(!L||L<9){O=i.create("br");N.parentNode.insertBefore(O,N)}M.setStartBefore(N);M.setEndBefore(N)}else{M.setStartAfter(N);M.setEndAfter(N)}}else{M.setStart(N,0);M.setEnd(N,0)}}e.setRng(M);i.remove(O);R=i.getViewPort(f.getWin());T=i.getPos(N).y;if(TR.y+R.h){f.getWin().scrollTo(0,T"}return Q}function q(P){var O,N,M;if(z.nodeType==3&&(P?u>0:u=z.nodeValue.length){if(!b.isIE&&!C()){N=i.create("br");v.insertNode(N);v.setStartAfter(N);v.setEndAfter(N);M=true}}N=i.create("br");v.insertNode(N);if(b.isIE&&t=="PRE"&&(!L||L<8)){N.parentNode.insertBefore(i.doc.createTextNode("\r"),N)}if(!M){v.setStartAfter(N);v.setEndAfter(N)}else{v.setStartBefore(N);v.setEndBefore(N)}e.setRng(v);h.add()}function s(M){do{if(M.nodeType===3){M.nodeValue=M.nodeValue.replace(/^[\r\n]+/,"")}M=M.firstChild}while(M)}function J(O){var M=i.getRoot(),N,P;N=O;while(N!==M&&i.getContentEditable(N)!=="false"){if(i.getContentEditable(N)==="true"){P=N}N=N.parentNode}return N!==M?P:M}function H(N){var M;if(!b.isIE){N.normalize();M=N.lastChild;if(!M||(/^(left|right)$/gi.test(i.getStyle(M,"float",true)))){i.add(N,"br")}}}if(!v.collapsed){f.execCommand("Delete");return}if(A.isDefaultPrevented()){return}z=v.startContainer;u=v.startOffset;x=d.forced_root_block;x=x?x.toUpperCase():"";L=i.doc.documentMode;if(z.nodeType==1&&z.hasChildNodes()){B=u>z.childNodes.length-1;z=z.childNodes[Math.min(u,z.childNodes.length-1)]||z;if(B&&z.nodeType==3){u=z.nodeValue.length}else{u=0}}j=J(z);if(!j){return}h.beforeChange();if(!i.isBlock(j)&&j!=i.getRoot()){if(!x||A.shiftKey){K()}return}if((x&&!A.shiftKey)||(!x&&A.shiftKey)){z=l(z,u)}p=i.getParent(z,i.isBlock);n=p?i.getParent(p.parentNode,i.isBlock):null;t=p?p.nodeName.toUpperCase():"";I=n?n.nodeName.toUpperCase():"";if(t=="LI"&&i.isEmpty(p)){if(/^(UL|OL|LI)$/.test(n.parentNode.nodeName)){return false}G();return}if(t=="PRE"&&d.br_in_pre!==false){if(!A.shiftKey){K();return}}else{if((!x&&!A.shiftKey&&t!="LI")||(x&&A.shiftKey)){K();return}}x=x||"P";if(q()){if(/^(H[1-6]|PRE)$/.test(t)&&I!="HGROUP"){o=r(x)}else{o=r()}if(d.end_container_on_empty_block&&D(n)&&i.isEmpty(p)){o=i.split(n,p)}else{i.insertAfter(o,p)}m(o)}else{if(q(true)){o=p.parentNode.insertBefore(r(),p);F(o)}else{E=v.cloneRange();E.setEndAfter(p);k=E.extractContents();s(k);o=k.firstChild;i.insertAfter(k,p);y(o);H(p);m(o)}}i.setAttrib(o,"id","");h.add()}f.onKeyDown.add(function(k,j){if(j.keyCode==13){if(g(j)!==false){j.preventDefault()}}})}})(tinymce);assets/lib/wck-api/assets/js/tiny_mce/license.txt000066600000063473152141651140016100 0ustar00 GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. [This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1.] Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. GNU LESSER GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) "Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. 1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) The modified work must itself be a software library. b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. This option is useful when you wish to copy part of the code of the Library into a program that is not a library. 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. 5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. 6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. 7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. 10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. 14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Libraries If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. , 1 April 1990 Ty Coon, President of Vice That's all there is to it! assets/lib/wck-api/assets/js/select2/select2.min.css000066600000035534152141651140016301 0ustar00.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb} assets/lib/wck-api/assets/js/select2/select2.min.js000066600000202150152141651140016113 0ustar00/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):a("object"==typeof exports?require("jquery"):jQuery)}(function(a){var b=function(){if(a&&a.fn&&a.fn.select2&&a.fn.select2.amd)var b=a.fn.select2.amd;var b;return function(){if(!b||!b.requirejs){b?c=b:b={};var a,c,d;!function(b){function e(a,b){return u.call(a,b)}function f(a,b){var c,d,e,f,g,h,i,j,k,l,m,n=b&&b.split("/"),o=s.map,p=o&&o["*"]||{};if(a&&"."===a.charAt(0))if(b){for(a=a.split("/"),g=a.length-1,s.nodeIdCompat&&w.test(a[g])&&(a[g]=a[g].replace(w,"")),a=n.slice(0,n.length-1).concat(a),k=0;k0&&(a.splice(k-1,2),k-=2)}a=a.join("/")}else 0===a.indexOf("./")&&(a=a.substring(2));if((n||p)&&o){for(c=a.split("/"),k=c.length;k>0;k-=1){if(d=c.slice(0,k).join("/"),n)for(l=n.length;l>0;l-=1)if(e=o[n.slice(0,l).join("/")],e&&(e=e[d])){f=e,h=k;break}if(f)break;!i&&p&&p[d]&&(i=p[d],j=k)}!f&&i&&(f=i,h=j),f&&(c.splice(0,h,f),a=c.join("/"))}return a}function g(a,c){return function(){var d=v.call(arguments,0);return"string"!=typeof d[0]&&1===d.length&&d.push(null),n.apply(b,d.concat([a,c]))}}function h(a){return function(b){return f(b,a)}}function i(a){return function(b){q[a]=b}}function j(a){if(e(r,a)){var c=r[a];delete r[a],t[a]=!0,m.apply(b,c)}if(!e(q,a)&&!e(t,a))throw new Error("No "+a);return q[a]}function k(a){var b,c=a?a.indexOf("!"):-1;return c>-1&&(b=a.substring(0,c),a=a.substring(c+1,a.length)),[b,a]}function l(a){return function(){return s&&s.config&&s.config[a]||{}}}var m,n,o,p,q={},r={},s={},t={},u=Object.prototype.hasOwnProperty,v=[].slice,w=/\.js$/;o=function(a,b){var c,d=k(a),e=d[0];return a=d[1],e&&(e=f(e,b),c=j(e)),e?a=c&&c.normalize?c.normalize(a,h(b)):f(a,b):(a=f(a,b),d=k(a),e=d[0],a=d[1],e&&(c=j(e))),{f:e?e+"!"+a:a,n:a,pr:e,p:c}},p={require:function(a){return g(a)},exports:function(a){var b=q[a];return"undefined"!=typeof b?b:q[a]={}},module:function(a){return{id:a,uri:"",exports:q[a],config:l(a)}}},m=function(a,c,d,f){var h,k,l,m,n,s,u=[],v=typeof d;if(f=f||a,"undefined"===v||"function"===v){for(c=!c.length&&d.length?["require","exports","module"]:c,n=0;n0&&(b.call(arguments,a.prototype.constructor),e=c.prototype.constructor),e.apply(this,arguments)}function e(){this.constructor=d}var f=b(c),g=b(a);c.displayName=a.displayName,d.prototype=new e;for(var h=0;hc;c++)a[c].apply(this,b)},c.Observable=d,c.generateChars=function(a){for(var b="",c=0;a>c;c++){var d=Math.floor(36*Math.random());b+=d.toString(36)}return b},c.bind=function(a,b){return function(){a.apply(b,arguments)}},c._convertData=function(a){for(var b in a){var c=b.split("-"),d=a;if(1!==c.length){for(var e=0;e":">",'"':""","'":"'","/":"/"};return"string"!=typeof a?a:String(a).replace(/[&<>"'\/\\]/g,function(a){return b[a]})},c.appendMany=function(b,c){if("1.7"===a.fn.jquery.substr(0,3)){var d=a();a.map(c,function(a){d=d.add(a)}),c=d}b.append(c)},c}),b.define("select2/results",["jquery","./utils"],function(a,b){function c(a,b,d){this.$element=a,this.data=d,this.options=b,c.__super__.constructor.call(this)}return b.Extend(c,b.Observable),c.prototype.render=function(){var b=a('
          ');return this.options.get("multiple")&&b.attr("aria-multiselectable","true"),this.$results=b,b},c.prototype.clear=function(){this.$results.empty()},c.prototype.displayMessage=function(b){var c=this.options.get("escapeMarkup");this.clear(),this.hideLoading();var d=a('
        • '),e=this.options.get("translations").get(b.message);d.append(c(e(b.args))),d[0].className+=" select2-results__message",this.$results.append(d)},c.prototype.hideMessages=function(){this.$results.find(".select2-results__message").remove()},c.prototype.append=function(a){this.hideLoading();var b=[];if(null==a.results||0===a.results.length)return void(0===this.$results.children().length&&this.trigger("results:message",{message:"noResults"}));a.results=this.sort(a.results);for(var c=0;c0?b.first().trigger("mouseenter"):a.first().trigger("mouseenter"),this.ensureHighlightVisible()},c.prototype.setClasses=function(){var b=this;this.data.current(function(c){var d=a.map(c,function(a){return a.id.toString()}),e=b.$results.find(".select2-results__option[aria-selected]");e.each(function(){var b=a(this),c=a.data(this,"data"),e=""+c.id;null!=c.element&&c.element.selected||null==c.element&&a.inArray(e,d)>-1?b.attr("aria-selected","true"):b.attr("aria-selected","false")})})},c.prototype.showLoading=function(a){this.hideLoading();var b=this.options.get("translations").get("searching"),c={disabled:!0,loading:!0,text:b(a)},d=this.option(c);d.className+=" loading-results",this.$results.prepend(d)},c.prototype.hideLoading=function(){this.$results.find(".loading-results").remove()},c.prototype.option=function(b){var c=document.createElement("li");c.className="select2-results__option";var d={role:"treeitem","aria-selected":"false"};b.disabled&&(delete d["aria-selected"],d["aria-disabled"]="true"),null==b.id&&delete d["aria-selected"],null!=b._resultId&&(c.id=b._resultId),b.title&&(c.title=b.title),b.children&&(d.role="group",d["aria-label"]=b.text,delete d["aria-selected"]);for(var e in d){var f=d[e];c.setAttribute(e,f)}if(b.children){var g=a(c),h=document.createElement("strong");h.className="select2-results__group";a(h);this.template(b,h);for(var i=[],j=0;j",{"class":"select2-results__options select2-results__options--nested"});m.append(i),g.append(h),g.append(m)}else this.template(b,c);return a.data(c,"data",b),c},c.prototype.bind=function(b,c){var d=this,e=b.id+"-results";this.$results.attr("id",e),b.on("results:all",function(a){d.clear(),d.append(a.data),b.isOpen()&&(d.setClasses(),d.highlightFirstItem())}),b.on("results:append",function(a){d.append(a.data),b.isOpen()&&d.setClasses()}),b.on("query",function(a){d.hideMessages(),d.showLoading(a)}),b.on("select",function(){b.isOpen()&&(d.setClasses(),d.highlightFirstItem())}),b.on("unselect",function(){b.isOpen()&&(d.setClasses(),d.highlightFirstItem())}),b.on("open",function(){d.$results.attr("aria-expanded","true"),d.$results.attr("aria-hidden","false"),d.setClasses(),d.ensureHighlightVisible()}),b.on("close",function(){d.$results.attr("aria-expanded","false"),d.$results.attr("aria-hidden","true"),d.$results.removeAttr("aria-activedescendant")}),b.on("results:toggle",function(){var a=d.getHighlightedResults();0!==a.length&&a.trigger("mouseup")}),b.on("results:select",function(){var a=d.getHighlightedResults();if(0!==a.length){var b=a.data("data");"true"==a.attr("aria-selected")?d.trigger("close",{}):d.trigger("select",{data:b})}}),b.on("results:previous",function(){var a=d.getHighlightedResults(),b=d.$results.find("[aria-selected]"),c=b.index(a);if(0!==c){var e=c-1;0===a.length&&(e=0);var f=b.eq(e);f.trigger("mouseenter");var g=d.$results.offset().top,h=f.offset().top,i=d.$results.scrollTop()+(h-g);0===e?d.$results.scrollTop(0):0>h-g&&d.$results.scrollTop(i)}}),b.on("results:next",function(){var a=d.getHighlightedResults(),b=d.$results.find("[aria-selected]"),c=b.index(a),e=c+1;if(!(e>=b.length)){var f=b.eq(e);f.trigger("mouseenter");var g=d.$results.offset().top+d.$results.outerHeight(!1),h=f.offset().top+f.outerHeight(!1),i=d.$results.scrollTop()+h-g;0===e?d.$results.scrollTop(0):h>g&&d.$results.scrollTop(i)}}),b.on("results:focus",function(a){a.element.addClass("select2-results__option--highlighted")}),b.on("results:message",function(a){d.displayMessage(a)}),a.fn.mousewheel&&this.$results.on("mousewheel",function(a){var b=d.$results.scrollTop(),c=d.$results.get(0).scrollHeight-b+a.deltaY,e=a.deltaY>0&&b-a.deltaY<=0,f=a.deltaY<0&&c<=d.$results.height();e?(d.$results.scrollTop(0),a.preventDefault(),a.stopPropagation()):f&&(d.$results.scrollTop(d.$results.get(0).scrollHeight-d.$results.height()),a.preventDefault(),a.stopPropagation())}),this.$results.on("mouseup",".select2-results__option[aria-selected]",function(b){var c=a(this),e=c.data("data");return"true"===c.attr("aria-selected")?void(d.options.get("multiple")?d.trigger("unselect",{originalEvent:b,data:e}):d.trigger("close",{})):void d.trigger("select",{originalEvent:b,data:e})}),this.$results.on("mouseenter",".select2-results__option[aria-selected]",function(b){var c=a(this).data("data");d.getHighlightedResults().removeClass("select2-results__option--highlighted"),d.trigger("results:focus",{data:c,element:a(this)})})},c.prototype.getHighlightedResults=function(){var a=this.$results.find(".select2-results__option--highlighted");return a},c.prototype.destroy=function(){this.$results.remove()},c.prototype.ensureHighlightVisible=function(){var a=this.getHighlightedResults();if(0!==a.length){var b=this.$results.find("[aria-selected]"),c=b.index(a),d=this.$results.offset().top,e=a.offset().top,f=this.$results.scrollTop()+(e-d),g=e-d;f-=2*a.outerHeight(!1),2>=c?this.$results.scrollTop(0):(g>this.$results.outerHeight()||0>g)&&this.$results.scrollTop(f)}},c.prototype.template=function(b,c){var d=this.options.get("templateResult"),e=this.options.get("escapeMarkup"),f=d(b,c);null==f?c.style.display="none":"string"==typeof f?c.innerHTML=e(f):a(c).append(f)},c}),b.define("select2/keys",[],function(){var a={BACKSPACE:8,TAB:9,ENTER:13,SHIFT:16,CTRL:17,ALT:18,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46};return a}),b.define("select2/selection/base",["jquery","../utils","../keys"],function(a,b,c){function d(a,b){this.$element=a,this.options=b,d.__super__.constructor.call(this)}return b.Extend(d,b.Observable),d.prototype.render=function(){var b=a('');return this._tabindex=0,null!=this.$element.data("old-tabindex")?this._tabindex=this.$element.data("old-tabindex"):null!=this.$element.attr("tabindex")&&(this._tabindex=this.$element.attr("tabindex")),b.attr("title",this.$element.attr("title")),b.attr("tabindex",this._tabindex),this.$selection=b,b},d.prototype.bind=function(a,b){var d=this,e=(a.id+"-container",a.id+"-results");this.container=a,this.$selection.on("focus",function(a){d.trigger("focus",a)}),this.$selection.on("blur",function(a){d._handleBlur(a)}),this.$selection.on("keydown",function(a){d.trigger("keypress",a),a.which===c.SPACE&&a.preventDefault()}),a.on("results:focus",function(a){d.$selection.attr("aria-activedescendant",a.data._resultId)}),a.on("selection:update",function(a){d.update(a.data)}),a.on("open",function(){d.$selection.attr("aria-expanded","true"),d.$selection.attr("aria-owns",e),d._attachCloseHandler(a)}),a.on("close",function(){d.$selection.attr("aria-expanded","false"),d.$selection.removeAttr("aria-activedescendant"),d.$selection.removeAttr("aria-owns"),d.$selection.focus(),d._detachCloseHandler(a)}),a.on("enable",function(){d.$selection.attr("tabindex",d._tabindex)}),a.on("disable",function(){d.$selection.attr("tabindex","-1")})},d.prototype._handleBlur=function(b){var c=this;window.setTimeout(function(){document.activeElement==c.$selection[0]||a.contains(c.$selection[0],document.activeElement)||c.trigger("blur",b)},1)},d.prototype._attachCloseHandler=function(b){a(document.body).on("mousedown.select2."+b.id,function(b){var c=a(b.target),d=c.closest(".select2"),e=a(".select2.select2-container--open");e.each(function(){var b=a(this);if(this!=d[0]){var c=b.data("element");c.select2("close")}})})},d.prototype._detachCloseHandler=function(b){a(document.body).off("mousedown.select2."+b.id)},d.prototype.position=function(a,b){var c=b.find(".selection");c.append(a)},d.prototype.destroy=function(){this._detachCloseHandler(this.container)},d.prototype.update=function(a){throw new Error("The `update` method must be defined in child classes.")},d}),b.define("select2/selection/single",["jquery","./base","../utils","../keys"],function(a,b,c,d){function e(){e.__super__.constructor.apply(this,arguments)}return c.Extend(e,b),e.prototype.render=function(){var a=e.__super__.render.call(this);return a.addClass("select2-selection--single"),a.html(''),a},e.prototype.bind=function(a,b){var c=this;e.__super__.bind.apply(this,arguments);var d=a.id+"-container";this.$selection.find(".select2-selection__rendered").attr("id",d),this.$selection.attr("aria-labelledby",d),this.$selection.on("mousedown",function(a){1===a.which&&c.trigger("toggle",{originalEvent:a})}),this.$selection.on("focus",function(a){}),this.$selection.on("blur",function(a){}),a.on("focus",function(b){a.isOpen()||c.$selection.focus()}),a.on("selection:update",function(a){c.update(a.data)})},e.prototype.clear=function(){this.$selection.find(".select2-selection__rendered").empty()},e.prototype.display=function(a,b){var c=this.options.get("templateSelection"),d=this.options.get("escapeMarkup");return d(c(a,b))},e.prototype.selectionContainer=function(){return a("")},e.prototype.update=function(a){if(0===a.length)return void this.clear();var b=a[0],c=this.$selection.find(".select2-selection__rendered"),d=this.display(b,c);c.empty().append(d),c.prop("title",b.title||b.text)},e}),b.define("select2/selection/multiple",["jquery","./base","../utils"],function(a,b,c){function d(a,b){d.__super__.constructor.apply(this,arguments)}return c.Extend(d,b),d.prototype.render=function(){var a=d.__super__.render.call(this);return a.addClass("select2-selection--multiple"),a.html('
            '),a},d.prototype.bind=function(b,c){var e=this;d.__super__.bind.apply(this,arguments),this.$selection.on("click",function(a){e.trigger("toggle",{originalEvent:a})}),this.$selection.on("click",".select2-selection__choice__remove",function(b){if(!e.options.get("disabled")){var c=a(this),d=c.parent(),f=d.data("data");e.trigger("unselect",{originalEvent:b,data:f})}})},d.prototype.clear=function(){this.$selection.find(".select2-selection__rendered").empty()},d.prototype.display=function(a,b){var c=this.options.get("templateSelection"),d=this.options.get("escapeMarkup");return d(c(a,b))},d.prototype.selectionContainer=function(){var b=a('
          • ×
          • ');return b},d.prototype.update=function(a){if(this.clear(),0!==a.length){for(var b=[],d=0;d1;if(d||c)return a.call(this,b);this.clear();var e=this.createPlaceholder(this.placeholder);this.$selection.find(".select2-selection__rendered").append(e)},b}),b.define("select2/selection/allowClear",["jquery","../keys"],function(a,b){function c(){}return c.prototype.bind=function(a,b,c){var d=this;a.call(this,b,c),null==this.placeholder&&this.options.get("debug")&&window.console&&console.error&&console.error("Select2: The `allowClear` option should be used in combination with the `placeholder` option."),this.$selection.on("mousedown",".select2-selection__clear",function(a){d._handleClear(a)}),b.on("keypress",function(a){d._handleKeyboardClear(a,b)})},c.prototype._handleClear=function(a,b){if(!this.options.get("disabled")){var c=this.$selection.find(".select2-selection__clear");if(0!==c.length){b.stopPropagation();for(var d=c.data("data"),e=0;e0||0===c.length)){var d=a('×');d.data("data",c),this.$selection.find(".select2-selection__rendered").prepend(d)}},c}),b.define("select2/selection/search",["jquery","../utils","../keys"],function(a,b,c){function d(a,b,c){a.call(this,b,c)}return d.prototype.render=function(b){var c=a('');this.$searchContainer=c,this.$search=c.find("input");var d=b.call(this);return this._transferTabIndex(),d},d.prototype.bind=function(a,b,d){var e=this;a.call(this,b,d),b.on("open",function(){e.$search.trigger("focus")}),b.on("close",function(){e.$search.val(""),e.$search.removeAttr("aria-activedescendant"),e.$search.trigger("focus")}),b.on("enable",function(){e.$search.prop("disabled",!1),e._transferTabIndex()}),b.on("disable",function(){e.$search.prop("disabled",!0)}),b.on("focus",function(a){e.$search.trigger("focus")}),b.on("results:focus",function(a){e.$search.attr("aria-activedescendant",a.id)}),this.$selection.on("focusin",".select2-search--inline",function(a){e.trigger("focus",a)}),this.$selection.on("focusout",".select2-search--inline",function(a){e._handleBlur(a)}),this.$selection.on("keydown",".select2-search--inline",function(a){a.stopPropagation(),e.trigger("keypress",a),e._keyUpPrevented=a.isDefaultPrevented();var b=a.which;if(b===c.BACKSPACE&&""===e.$search.val()){var d=e.$searchContainer.prev(".select2-selection__choice");if(d.length>0){var f=d.data("data");e.searchRemoveChoice(f),a.preventDefault()}}});var f=document.documentMode,g=f&&11>=f;this.$selection.on("input.searchcheck",".select2-search--inline",function(a){return g?void e.$selection.off("input.search input.searchcheck"):void e.$selection.off("keyup.search")}),this.$selection.on("keyup.search input.search",".select2-search--inline",function(a){if(g&&"input"===a.type)return void e.$selection.off("input.search input.searchcheck");var b=a.which;b!=c.SHIFT&&b!=c.CTRL&&b!=c.ALT&&b!=c.TAB&&e.handleSearch(a)})},d.prototype._transferTabIndex=function(a){this.$search.attr("tabindex",this.$selection.attr("tabindex")),this.$selection.attr("tabindex","-1")},d.prototype.createPlaceholder=function(a,b){this.$search.attr("placeholder",b.text)},d.prototype.update=function(a,b){var c=this.$search[0]==document.activeElement;this.$search.attr("placeholder",""),a.call(this,b),this.$selection.find(".select2-selection__rendered").append(this.$searchContainer),this.resizeSearch(),c&&this.$search.focus()},d.prototype.handleSearch=function(){if(this.resizeSearch(),!this._keyUpPrevented){var a=this.$search.val();this.trigger("query",{term:a})}this._keyUpPrevented=!1},d.prototype.searchRemoveChoice=function(a,b){this.trigger("unselect",{data:b}),this.$search.val(b.text),this.handleSearch()},d.prototype.resizeSearch=function(){this.$search.css("width","25px");var a="";if(""!==this.$search.attr("placeholder"))a=this.$selection.find(".select2-selection__rendered").innerWidth();else{var b=this.$search.val().length+1;a=.75*b+"em"}this.$search.css("width",a)},d}),b.define("select2/selection/eventRelay",["jquery"],function(a){function b(){}return b.prototype.bind=function(b,c,d){var e=this,f=["open","opening","close","closing","select","selecting","unselect","unselecting"],g=["opening","closing","selecting","unselecting"];b.call(this,c,d),c.on("*",function(b,c){if(-1!==a.inArray(b,f)){c=c||{};var d=a.Event("select2:"+b,{params:c});e.$element.trigger(d),-1!==a.inArray(b,g)&&(c.prevented=d.isDefaultPrevented())}})},b}),b.define("select2/translation",["jquery","require"],function(a,b){function c(a){this.dict=a||{}}return c.prototype.all=function(){return this.dict},c.prototype.get=function(a){return this.dict[a]},c.prototype.extend=function(b){this.dict=a.extend({},b.all(),this.dict)},c._cache={},c.loadPath=function(a){if(!(a in c._cache)){var d=b(a);c._cache[a]=d}return new c(c._cache[a])},c}),b.define("select2/diacritics",[],function(){var a={"Ⓐ":"A","A":"A","À":"A","Á":"A","Â":"A","Ầ":"A","Ấ":"A","Ẫ":"A","Ẩ":"A","Ã":"A","Ā":"A","Ă":"A","Ằ":"A","Ắ":"A","Ẵ":"A","Ẳ":"A","Ȧ":"A","Ǡ":"A","Ä":"A","Ǟ":"A","Ả":"A","Å":"A","Ǻ":"A","Ǎ":"A","Ȁ":"A","Ȃ":"A","Ạ":"A","Ậ":"A","Ặ":"A","Ḁ":"A","Ą":"A","Ⱥ":"A","Ɐ":"A","Ꜳ":"AA","Æ":"AE","Ǽ":"AE","Ǣ":"AE","Ꜵ":"AO","Ꜷ":"AU","Ꜹ":"AV","Ꜻ":"AV","Ꜽ":"AY","Ⓑ":"B","B":"B","Ḃ":"B","Ḅ":"B","Ḇ":"B","Ƀ":"B","Ƃ":"B","Ɓ":"B","Ⓒ":"C","C":"C","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","Ç":"C","Ḉ":"C","Ƈ":"C","Ȼ":"C","Ꜿ":"C","Ⓓ":"D","D":"D","Ḋ":"D","Ď":"D","Ḍ":"D","Ḑ":"D","Ḓ":"D","Ḏ":"D","Đ":"D","Ƌ":"D","Ɗ":"D","Ɖ":"D","Ꝺ":"D","DZ":"DZ","DŽ":"DZ","Dz":"Dz","Dž":"Dz","Ⓔ":"E","E":"E","È":"E","É":"E","Ê":"E","Ề":"E","Ế":"E","Ễ":"E","Ể":"E","Ẽ":"E","Ē":"E","Ḕ":"E","Ḗ":"E","Ĕ":"E","Ė":"E","Ë":"E","Ẻ":"E","Ě":"E","Ȅ":"E","Ȇ":"E","Ẹ":"E","Ệ":"E","Ȩ":"E","Ḝ":"E","Ę":"E","Ḙ":"E","Ḛ":"E","Ɛ":"E","Ǝ":"E","Ⓕ":"F","F":"F","Ḟ":"F","Ƒ":"F","Ꝼ":"F","Ⓖ":"G","G":"G","Ǵ":"G","Ĝ":"G","Ḡ":"G","Ğ":"G","Ġ":"G","Ǧ":"G","Ģ":"G","Ǥ":"G","Ɠ":"G","Ꞡ":"G","Ᵹ":"G","Ꝿ":"G","Ⓗ":"H","H":"H","Ĥ":"H","Ḣ":"H","Ḧ":"H","Ȟ":"H","Ḥ":"H","Ḩ":"H","Ḫ":"H","Ħ":"H","Ⱨ":"H","Ⱶ":"H","Ɥ":"H","Ⓘ":"I","I":"I","Ì":"I","Í":"I","Î":"I","Ĩ":"I","Ī":"I","Ĭ":"I","İ":"I","Ï":"I","Ḯ":"I","Ỉ":"I","Ǐ":"I","Ȉ":"I","Ȋ":"I","Ị":"I","Į":"I","Ḭ":"I","Ɨ":"I","Ⓙ":"J","J":"J","Ĵ":"J","Ɉ":"J","Ⓚ":"K","K":"K","Ḱ":"K","Ǩ":"K","Ḳ":"K","Ķ":"K","Ḵ":"K","Ƙ":"K","Ⱪ":"K","Ꝁ":"K","Ꝃ":"K","Ꝅ":"K","Ꞣ":"K","Ⓛ":"L","L":"L","Ŀ":"L","Ĺ":"L","Ľ":"L","Ḷ":"L","Ḹ":"L","Ļ":"L","Ḽ":"L","Ḻ":"L","Ł":"L","Ƚ":"L","Ɫ":"L","Ⱡ":"L","Ꝉ":"L","Ꝇ":"L","Ꞁ":"L","LJ":"LJ","Lj":"Lj","Ⓜ":"M","M":"M","Ḿ":"M","Ṁ":"M","Ṃ":"M","Ɱ":"M","Ɯ":"M","Ⓝ":"N","N":"N","Ǹ":"N","Ń":"N","Ñ":"N","Ṅ":"N","Ň":"N","Ṇ":"N","Ņ":"N","Ṋ":"N","Ṉ":"N","Ƞ":"N","Ɲ":"N","Ꞑ":"N","Ꞥ":"N","NJ":"NJ","Nj":"Nj","Ⓞ":"O","O":"O","Ò":"O","Ó":"O","Ô":"O","Ồ":"O","Ố":"O","Ỗ":"O","Ổ":"O","Õ":"O","Ṍ":"O","Ȭ":"O","Ṏ":"O","Ō":"O","Ṑ":"O","Ṓ":"O","Ŏ":"O","Ȯ":"O","Ȱ":"O","Ö":"O","Ȫ":"O","Ỏ":"O","Ő":"O","Ǒ":"O","Ȍ":"O","Ȏ":"O","Ơ":"O","Ờ":"O","Ớ":"O","Ỡ":"O","Ở":"O","Ợ":"O","Ọ":"O","Ộ":"O","Ǫ":"O","Ǭ":"O","Ø":"O","Ǿ":"O","Ɔ":"O","Ɵ":"O","Ꝋ":"O","Ꝍ":"O","Ƣ":"OI","Ꝏ":"OO","Ȣ":"OU","Ⓟ":"P","P":"P","Ṕ":"P","Ṗ":"P","Ƥ":"P","Ᵽ":"P","Ꝑ":"P","Ꝓ":"P","Ꝕ":"P","Ⓠ":"Q","Q":"Q","Ꝗ":"Q","Ꝙ":"Q","Ɋ":"Q","Ⓡ":"R","R":"R","Ŕ":"R","Ṙ":"R","Ř":"R","Ȑ":"R","Ȓ":"R","Ṛ":"R","Ṝ":"R","Ŗ":"R","Ṟ":"R","Ɍ":"R","Ɽ":"R","Ꝛ":"R","Ꞧ":"R","Ꞃ":"R","Ⓢ":"S","S":"S","ẞ":"S","Ś":"S","Ṥ":"S","Ŝ":"S","Ṡ":"S","Š":"S","Ṧ":"S","Ṣ":"S","Ṩ":"S","Ș":"S","Ş":"S","Ȿ":"S","Ꞩ":"S","Ꞅ":"S","Ⓣ":"T","T":"T","Ṫ":"T","Ť":"T","Ṭ":"T","Ț":"T","Ţ":"T","Ṱ":"T","Ṯ":"T","Ŧ":"T","Ƭ":"T","Ʈ":"T","Ⱦ":"T","Ꞇ":"T","Ꜩ":"TZ","Ⓤ":"U","U":"U","Ù":"U","Ú":"U","Û":"U","Ũ":"U","Ṹ":"U","Ū":"U","Ṻ":"U","Ŭ":"U","Ü":"U","Ǜ":"U","Ǘ":"U","Ǖ":"U","Ǚ":"U","Ủ":"U","Ů":"U","Ű":"U","Ǔ":"U","Ȕ":"U","Ȗ":"U","Ư":"U","Ừ":"U","Ứ":"U","Ữ":"U","Ử":"U","Ự":"U","Ụ":"U","Ṳ":"U","Ų":"U","Ṷ":"U","Ṵ":"U","Ʉ":"U","Ⓥ":"V","V":"V","Ṽ":"V","Ṿ":"V","Ʋ":"V","Ꝟ":"V","Ʌ":"V","Ꝡ":"VY","Ⓦ":"W","W":"W","Ẁ":"W","Ẃ":"W","Ŵ":"W","Ẇ":"W","Ẅ":"W","Ẉ":"W","Ⱳ":"W","Ⓧ":"X","X":"X","Ẋ":"X","Ẍ":"X","Ⓨ":"Y","Y":"Y","Ỳ":"Y","Ý":"Y","Ŷ":"Y","Ỹ":"Y","Ȳ":"Y","Ẏ":"Y","Ÿ":"Y","Ỷ":"Y","Ỵ":"Y","Ƴ":"Y","Ɏ":"Y","Ỿ":"Y","Ⓩ":"Z","Z":"Z","Ź":"Z","Ẑ":"Z","Ż":"Z","Ž":"Z","Ẓ":"Z","Ẕ":"Z","Ƶ":"Z","Ȥ":"Z","Ɀ":"Z","Ⱬ":"Z","Ꝣ":"Z","ⓐ":"a","a":"a","ẚ":"a","à":"a","á":"a","â":"a","ầ":"a","ấ":"a","ẫ":"a","ẩ":"a","ã":"a","ā":"a","ă":"a","ằ":"a","ắ":"a","ẵ":"a","ẳ":"a","ȧ":"a","ǡ":"a","ä":"a","ǟ":"a","ả":"a","å":"a","ǻ":"a","ǎ":"a","ȁ":"a","ȃ":"a","ạ":"a","ậ":"a","ặ":"a","ḁ":"a","ą":"a","ⱥ":"a","ɐ":"a","ꜳ":"aa","æ":"ae","ǽ":"ae","ǣ":"ae","ꜵ":"ao","ꜷ":"au","ꜹ":"av","ꜻ":"av","ꜽ":"ay","ⓑ":"b","b":"b","ḃ":"b","ḅ":"b","ḇ":"b","ƀ":"b","ƃ":"b","ɓ":"b","ⓒ":"c","c":"c","ć":"c","ĉ":"c","ċ":"c","č":"c","ç":"c","ḉ":"c","ƈ":"c","ȼ":"c","ꜿ":"c","ↄ":"c","ⓓ":"d","d":"d","ḋ":"d","ď":"d","ḍ":"d","ḑ":"d","ḓ":"d","ḏ":"d","đ":"d","ƌ":"d","ɖ":"d","ɗ":"d","ꝺ":"d","dz":"dz","dž":"dz","ⓔ":"e","e":"e","è":"e","é":"e","ê":"e","ề":"e","ế":"e","ễ":"e","ể":"e","ẽ":"e","ē":"e","ḕ":"e","ḗ":"e","ĕ":"e","ė":"e","ë":"e","ẻ":"e","ě":"e","ȅ":"e","ȇ":"e","ẹ":"e","ệ":"e","ȩ":"e","ḝ":"e","ę":"e","ḙ":"e","ḛ":"e","ɇ":"e","ɛ":"e","ǝ":"e","ⓕ":"f","f":"f","ḟ":"f","ƒ":"f","ꝼ":"f","ⓖ":"g","g":"g","ǵ":"g","ĝ":"g","ḡ":"g","ğ":"g","ġ":"g","ǧ":"g","ģ":"g","ǥ":"g","ɠ":"g","ꞡ":"g","ᵹ":"g","ꝿ":"g","ⓗ":"h","h":"h","ĥ":"h","ḣ":"h","ḧ":"h","ȟ":"h","ḥ":"h","ḩ":"h","ḫ":"h","ẖ":"h","ħ":"h","ⱨ":"h","ⱶ":"h","ɥ":"h","ƕ":"hv","ⓘ":"i","i":"i","ì":"i","í":"i","î":"i","ĩ":"i","ī":"i","ĭ":"i","ï":"i","ḯ":"i","ỉ":"i","ǐ":"i","ȉ":"i","ȋ":"i","ị":"i","į":"i","ḭ":"i","ɨ":"i","ı":"i","ⓙ":"j","j":"j","ĵ":"j","ǰ":"j","ɉ":"j","ⓚ":"k","k":"k","ḱ":"k","ǩ":"k","ḳ":"k","ķ":"k","ḵ":"k","ƙ":"k","ⱪ":"k","ꝁ":"k","ꝃ":"k","ꝅ":"k","ꞣ":"k","ⓛ":"l","l":"l","ŀ":"l","ĺ":"l","ľ":"l","ḷ":"l","ḹ":"l","ļ":"l","ḽ":"l","ḻ":"l","ſ":"l","ł":"l","ƚ":"l","ɫ":"l","ⱡ":"l","ꝉ":"l","ꞁ":"l","ꝇ":"l","lj":"lj","ⓜ":"m","m":"m","ḿ":"m","ṁ":"m","ṃ":"m","ɱ":"m","ɯ":"m","ⓝ":"n","n":"n","ǹ":"n","ń":"n","ñ":"n","ṅ":"n","ň":"n","ṇ":"n","ņ":"n","ṋ":"n","ṉ":"n","ƞ":"n","ɲ":"n","ʼn":"n","ꞑ":"n","ꞥ":"n","nj":"nj","ⓞ":"o","o":"o","ò":"o","ó":"o","ô":"o","ồ":"o","ố":"o","ỗ":"o","ổ":"o","õ":"o","ṍ":"o","ȭ":"o","ṏ":"o","ō":"o","ṑ":"o","ṓ":"o","ŏ":"o","ȯ":"o","ȱ":"o","ö":"o","ȫ":"o","ỏ":"o","ő":"o","ǒ":"o","ȍ":"o","ȏ":"o","ơ":"o","ờ":"o","ớ":"o","ỡ":"o","ở":"o","ợ":"o","ọ":"o","ộ":"o","ǫ":"o","ǭ":"o","ø":"o","ǿ":"o","ɔ":"o","ꝋ":"o","ꝍ":"o","ɵ":"o","ƣ":"oi","ȣ":"ou","ꝏ":"oo","ⓟ":"p","p":"p","ṕ":"p","ṗ":"p","ƥ":"p","ᵽ":"p","ꝑ":"p","ꝓ":"p","ꝕ":"p","ⓠ":"q","q":"q","ɋ":"q","ꝗ":"q","ꝙ":"q","ⓡ":"r","r":"r","ŕ":"r","ṙ":"r","ř":"r","ȑ":"r","ȓ":"r","ṛ":"r","ṝ":"r","ŗ":"r","ṟ":"r","ɍ":"r","ɽ":"r","ꝛ":"r","ꞧ":"r","ꞃ":"r","ⓢ":"s","s":"s","ß":"s","ś":"s","ṥ":"s","ŝ":"s","ṡ":"s","š":"s","ṧ":"s","ṣ":"s","ṩ":"s","ș":"s","ş":"s","ȿ":"s","ꞩ":"s","ꞅ":"s","ẛ":"s","ⓣ":"t","t":"t","ṫ":"t","ẗ":"t","ť":"t","ṭ":"t","ț":"t","ţ":"t","ṱ":"t","ṯ":"t","ŧ":"t","ƭ":"t","ʈ":"t","ⱦ":"t","ꞇ":"t","ꜩ":"tz","ⓤ":"u","u":"u","ù":"u","ú":"u","û":"u","ũ":"u","ṹ":"u","ū":"u","ṻ":"u","ŭ":"u","ü":"u","ǜ":"u","ǘ":"u","ǖ":"u","ǚ":"u","ủ":"u","ů":"u","ű":"u","ǔ":"u","ȕ":"u","ȗ":"u","ư":"u","ừ":"u","ứ":"u","ữ":"u","ử":"u","ự":"u","ụ":"u","ṳ":"u","ų":"u","ṷ":"u","ṵ":"u","ʉ":"u","ⓥ":"v","v":"v","ṽ":"v","ṿ":"v","ʋ":"v","ꝟ":"v","ʌ":"v","ꝡ":"vy","ⓦ":"w","w":"w","ẁ":"w","ẃ":"w","ŵ":"w","ẇ":"w","ẅ":"w","ẘ":"w","ẉ":"w","ⱳ":"w","ⓧ":"x","x":"x","ẋ":"x","ẍ":"x","ⓨ":"y","y":"y","ỳ":"y","ý":"y","ŷ":"y","ỹ":"y","ȳ":"y","ẏ":"y","ÿ":"y","ỷ":"y","ẙ":"y","ỵ":"y","ƴ":"y","ɏ":"y","ỿ":"y","ⓩ":"z","z":"z","ź":"z","ẑ":"z","ż":"z","ž":"z","ẓ":"z","ẕ":"z","ƶ":"z","ȥ":"z","ɀ":"z","ⱬ":"z","ꝣ":"z","Ά":"Α","Έ":"Ε","Ή":"Η","Ί":"Ι","Ϊ":"Ι","Ό":"Ο","Ύ":"Υ","Ϋ":"Υ","Ώ":"Ω","ά":"α","έ":"ε","ή":"η","ί":"ι","ϊ":"ι","ΐ":"ι","ό":"ο","ύ":"υ","ϋ":"υ","ΰ":"υ","ω":"ω","ς":"σ"};return a}),b.define("select2/data/base",["../utils"],function(a){function b(a,c){b.__super__.constructor.call(this)}return a.Extend(b,a.Observable),b.prototype.current=function(a){throw new Error("The `current` method must be defined in child classes.")},b.prototype.query=function(a,b){throw new Error("The `query` method must be defined in child classes.")},b.prototype.bind=function(a,b){},b.prototype.destroy=function(){},b.prototype.generateResultId=function(b,c){var d=b.id+"-result-";return d+=a.generateChars(4),d+=null!=c.id?"-"+c.id.toString():"-"+a.generateChars(4)},b}),b.define("select2/data/select",["./base","../utils","jquery"],function(a,b,c){function d(a,b){this.$element=a,this.options=b,d.__super__.constructor.call(this)}return b.Extend(d,a),d.prototype.current=function(a){var b=[],d=this;this.$element.find(":selected").each(function(){var a=c(this),e=d.item(a);b.push(e)}),a(b)},d.prototype.select=function(a){var b=this;if(a.selected=!0,c(a.element).is("option"))return a.element.selected=!0,void this.$element.trigger("change"); if(this.$element.prop("multiple"))this.current(function(d){var e=[];a=[a],a.push.apply(a,d);for(var f=0;f=0){var k=f.filter(d(j)),l=this.item(k),m=c.extend(!0,{},j,l),n=this.option(m);k.replaceWith(n)}else{var o=this.option(j);if(j.children){var p=this.convertToOptions(j.children);b.appendMany(o,p)}h.push(o)}}return h},d}),b.define("select2/data/ajax",["./array","../utils","jquery"],function(a,b,c){function d(a,b){this.ajaxOptions=this._applyDefaults(b.get("ajax")),null!=this.ajaxOptions.processResults&&(this.processResults=this.ajaxOptions.processResults),d.__super__.constructor.call(this,a,b)}return b.Extend(d,a),d.prototype._applyDefaults=function(a){var b={data:function(a){return c.extend({},a,{q:a.term})},transport:function(a,b,d){var e=c.ajax(a);return e.then(b),e.fail(d),e}};return c.extend({},b,a,!0)},d.prototype.processResults=function(a){return a},d.prototype.query=function(a,b){function d(){var d=f.transport(f,function(d){var f=e.processResults(d,a);e.options.get("debug")&&window.console&&console.error&&(f&&f.results&&c.isArray(f.results)||console.error("Select2: The AJAX results did not return an array in the `results` key of the response.")),b(f)},function(){d.status&&"0"===d.status||e.trigger("results:message",{message:"errorLoading"})});e._request=d}var e=this;null!=this._request&&(c.isFunction(this._request.abort)&&this._request.abort(),this._request=null);var f=c.extend({type:"GET"},this.ajaxOptions);"function"==typeof f.url&&(f.url=f.url.call(this.$element,a)),"function"==typeof f.data&&(f.data=f.data.call(this.$element,a)),this.ajaxOptions.delay&&null!=a.term?(this._queryTimeout&&window.clearTimeout(this._queryTimeout),this._queryTimeout=window.setTimeout(d,this.ajaxOptions.delay)):d()},d}),b.define("select2/data/tags",["jquery"],function(a){function b(b,c,d){var e=d.get("tags"),f=d.get("createTag");void 0!==f&&(this.createTag=f);var g=d.get("insertTag");if(void 0!==g&&(this.insertTag=g),b.call(this,c,d),a.isArray(e))for(var h=0;h0&&b.term.length>this.maximumInputLength?void this.trigger("results:message",{message:"inputTooLong",args:{maximum:this.maximumInputLength,input:b.term,params:b}}):void a.call(this,b,c)},a}),b.define("select2/data/maximumSelectionLength",[],function(){function a(a,b,c){this.maximumSelectionLength=c.get("maximumSelectionLength"),a.call(this,b,c)}return a.prototype.query=function(a,b,c){var d=this;this.current(function(e){var f=null!=e?e.length:0;return d.maximumSelectionLength>0&&f>=d.maximumSelectionLength?void d.trigger("results:message",{message:"maximumSelected",args:{maximum:d.maximumSelectionLength}}):void a.call(d,b,c)})},a}),b.define("select2/dropdown",["jquery","./utils"],function(a,b){function c(a,b){this.$element=a,this.options=b,c.__super__.constructor.call(this)}return b.Extend(c,b.Observable),c.prototype.render=function(){var b=a('');return b.attr("dir",this.options.get("dir")),this.$dropdown=b,b},c.prototype.bind=function(){},c.prototype.position=function(a,b){},c.prototype.destroy=function(){this.$dropdown.remove()},c}),b.define("select2/dropdown/search",["jquery","../utils"],function(a,b){function c(){}return c.prototype.render=function(b){var c=b.call(this),d=a('');return this.$searchContainer=d,this.$search=d.find("input"),c.prepend(d),c},c.prototype.bind=function(b,c,d){var e=this;b.call(this,c,d),this.$search.on("keydown",function(a){e.trigger("keypress",a),e._keyUpPrevented=a.isDefaultPrevented()}),this.$search.on("input",function(b){a(this).off("keyup")}),this.$search.on("keyup input",function(a){e.handleSearch(a)}),c.on("open",function(){e.$search.attr("tabindex",0),e.$search.focus(),window.setTimeout(function(){e.$search.focus()},0)}),c.on("close",function(){e.$search.attr("tabindex",-1),e.$search.val("")}),c.on("focus",function(){c.isOpen()&&e.$search.focus()}),c.on("results:all",function(a){if(null==a.query.term||""===a.query.term){var b=e.showSearch(a);b?e.$searchContainer.removeClass("select2-search--hide"):e.$searchContainer.addClass("select2-search--hide")}})},c.prototype.handleSearch=function(a){if(!this._keyUpPrevented){var b=this.$search.val();this.trigger("query",{term:b})}this._keyUpPrevented=!1},c.prototype.showSearch=function(a,b){return!0},c}),b.define("select2/dropdown/hidePlaceholder",[],function(){function a(a,b,c,d){this.placeholder=this.normalizePlaceholder(c.get("placeholder")),a.call(this,b,c,d)}return a.prototype.append=function(a,b){b.results=this.removePlaceholder(b.results),a.call(this,b)},a.prototype.normalizePlaceholder=function(a,b){return"string"==typeof b&&(b={id:"",text:b}),b},a.prototype.removePlaceholder=function(a,b){for(var c=b.slice(0),d=b.length-1;d>=0;d--){var e=b[d];this.placeholder.id===e.id&&c.splice(d,1)}return c},a}),b.define("select2/dropdown/infiniteScroll",["jquery"],function(a){function b(a,b,c,d){this.lastParams={},a.call(this,b,c,d),this.$loadingMore=this.createLoadingMore(),this.loading=!1}return b.prototype.append=function(a,b){this.$loadingMore.remove(),this.loading=!1,a.call(this,b),this.showLoadingMore(b)&&this.$results.append(this.$loadingMore)},b.prototype.bind=function(b,c,d){var e=this;b.call(this,c,d),c.on("query",function(a){e.lastParams=a,e.loading=!0}),c.on("query:append",function(a){e.lastParams=a,e.loading=!0}),this.$results.on("scroll",function(){var b=a.contains(document.documentElement,e.$loadingMore[0]);if(!e.loading&&b){var c=e.$results.offset().top+e.$results.outerHeight(!1),d=e.$loadingMore.offset().top+e.$loadingMore.outerHeight(!1);c+50>=d&&e.loadMore()}})},b.prototype.loadMore=function(){this.loading=!0;var b=a.extend({},{page:1},this.lastParams);b.page++,this.trigger("query:append",b)},b.prototype.showLoadingMore=function(a,b){return b.pagination&&b.pagination.more},b.prototype.createLoadingMore=function(){var b=a('
          • '),c=this.options.get("translations").get("loadingMore");return b.html(c(this.lastParams)),b},b}),b.define("select2/dropdown/attachBody",["jquery","../utils"],function(a,b){function c(b,c,d){this.$dropdownParent=d.get("dropdownParent")||a(document.body),b.call(this,c,d)}return c.prototype.bind=function(a,b,c){var d=this,e=!1;a.call(this,b,c),b.on("open",function(){d._showDropdown(),d._attachPositioningHandler(b),e||(e=!0,b.on("results:all",function(){d._positionDropdown(),d._resizeDropdown()}),b.on("results:append",function(){d._positionDropdown(),d._resizeDropdown()}))}),b.on("close",function(){d._hideDropdown(),d._detachPositioningHandler(b)}),this.$dropdownContainer.on("mousedown",function(a){a.stopPropagation()})},c.prototype.destroy=function(a){a.call(this),this.$dropdownContainer.remove()},c.prototype.position=function(a,b,c){b.attr("class",c.attr("class")),b.removeClass("select2"),b.addClass("select2-container--open"),b.css({position:"absolute",top:-999999}),this.$container=c},c.prototype.render=function(b){var c=a(""),d=b.call(this);return c.append(d),this.$dropdownContainer=c,c},c.prototype._hideDropdown=function(a){this.$dropdownContainer.detach()},c.prototype._attachPositioningHandler=function(c,d){var e=this,f="scroll.select2."+d.id,g="resize.select2."+d.id,h="orientationchange.select2."+d.id,i=this.$container.parents().filter(b.hasScroll);i.each(function(){a(this).data("select2-scroll-position",{x:a(this).scrollLeft(),y:a(this).scrollTop()})}),i.on(f,function(b){var c=a(this).data("select2-scroll-position");a(this).scrollTop(c.y)}),a(window).on(f+" "+g+" "+h,function(a){e._positionDropdown(),e._resizeDropdown()})},c.prototype._detachPositioningHandler=function(c,d){var e="scroll.select2."+d.id,f="resize.select2."+d.id,g="orientationchange.select2."+d.id,h=this.$container.parents().filter(b.hasScroll);h.off(e),a(window).off(e+" "+f+" "+g)},c.prototype._positionDropdown=function(){var b=a(window),c=this.$dropdown.hasClass("select2-dropdown--above"),d=this.$dropdown.hasClass("select2-dropdown--below"),e=null,f=this.$container.offset();f.bottom=f.top+this.$container.outerHeight(!1);var g={height:this.$container.outerHeight(!1)};g.top=f.top,g.bottom=f.top+g.height;var h={height:this.$dropdown.outerHeight(!1)},i={top:b.scrollTop(),bottom:b.scrollTop()+b.height()},j=i.topf.bottom+h.height,l={left:f.left,top:g.bottom},m=this.$dropdownParent;"static"===m.css("position")&&(m=m.offsetParent());var n=m.offset();l.top-=n.top,l.left-=n.left,c||d||(e="below"),k||!j||c?!j&&k&&c&&(e="below"):e="above",("above"==e||c&&"below"!==e)&&(l.top=g.top-n.top-h.height),null!=e&&(this.$dropdown.removeClass("select2-dropdown--below select2-dropdown--above").addClass("select2-dropdown--"+e),this.$container.removeClass("select2-container--below select2-container--above").addClass("select2-container--"+e)),this.$dropdownContainer.css(l)},c.prototype._resizeDropdown=function(){var a={width:this.$container.outerWidth(!1)+"px"};this.options.get("dropdownAutoWidth")&&(a.minWidth=a.width,a.position="relative",a.width="auto"),this.$dropdown.css(a)},c.prototype._showDropdown=function(a){this.$dropdownContainer.appendTo(this.$dropdownParent),this._positionDropdown(),this._resizeDropdown()},c}),b.define("select2/dropdown/minimumResultsForSearch",[],function(){function a(b){for(var c=0,d=0;d0&&(l.dataAdapter=j.Decorate(l.dataAdapter,r)),l.maximumInputLength>0&&(l.dataAdapter=j.Decorate(l.dataAdapter,s)),l.maximumSelectionLength>0&&(l.dataAdapter=j.Decorate(l.dataAdapter,t)),l.tags&&(l.dataAdapter=j.Decorate(l.dataAdapter,p)),(null!=l.tokenSeparators||null!=l.tokenizer)&&(l.dataAdapter=j.Decorate(l.dataAdapter,q)),null!=l.query){var C=b(l.amdBase+"compat/query");l.dataAdapter=j.Decorate(l.dataAdapter,C)}if(null!=l.initSelection){var D=b(l.amdBase+"compat/initSelection");l.dataAdapter=j.Decorate(l.dataAdapter,D)}}if(null==l.resultsAdapter&&(l.resultsAdapter=c,null!=l.ajax&&(l.resultsAdapter=j.Decorate(l.resultsAdapter,x)),null!=l.placeholder&&(l.resultsAdapter=j.Decorate(l.resultsAdapter,w)),l.selectOnClose&&(l.resultsAdapter=j.Decorate(l.resultsAdapter,A))),null==l.dropdownAdapter){if(l.multiple)l.dropdownAdapter=u;else{var E=j.Decorate(u,v);l.dropdownAdapter=E}if(0!==l.minimumResultsForSearch&&(l.dropdownAdapter=j.Decorate(l.dropdownAdapter,z)),l.closeOnSelect&&(l.dropdownAdapter=j.Decorate(l.dropdownAdapter,B)),null!=l.dropdownCssClass||null!=l.dropdownCss||null!=l.adaptDropdownCssClass){var F=b(l.amdBase+"compat/dropdownCss");l.dropdownAdapter=j.Decorate(l.dropdownAdapter,F)}l.dropdownAdapter=j.Decorate(l.dropdownAdapter,y)}if(null==l.selectionAdapter){if(l.multiple?l.selectionAdapter=e:l.selectionAdapter=d,null!=l.placeholder&&(l.selectionAdapter=j.Decorate(l.selectionAdapter,f)),l.allowClear&&(l.selectionAdapter=j.Decorate(l.selectionAdapter,g)),l.multiple&&(l.selectionAdapter=j.Decorate(l.selectionAdapter,h)),null!=l.containerCssClass||null!=l.containerCss||null!=l.adaptContainerCssClass){var G=b(l.amdBase+"compat/containerCss");l.selectionAdapter=j.Decorate(l.selectionAdapter,G)}l.selectionAdapter=j.Decorate(l.selectionAdapter,i)}if("string"==typeof l.language)if(l.language.indexOf("-")>0){var H=l.language.split("-"),I=H[0];l.language=[l.language,I]}else l.language=[l.language];if(a.isArray(l.language)){var J=new k;l.language.push("en");for(var K=l.language,L=0;L0){for(var f=a.extend(!0,{},e),g=e.children.length-1;g>=0;g--){var h=e.children[g],i=c(d,h);null==i&&f.children.splice(g,1)}return f.children.length>0?f:c(d,f)}var j=b(e.text).toUpperCase(),k=b(d.term).toUpperCase();return j.indexOf(k)>-1?e:null}this.defaults={amdBase:"./",amdLanguageBase:"./i18n/",closeOnSelect:!0,debug:!1,dropdownAutoWidth:!1,escapeMarkup:j.escapeMarkup,language:C,matcher:c,minimumInputLength:0,maximumInputLength:0,maximumSelectionLength:0,minimumResultsForSearch:0,selectOnClose:!1,sorter:function(a){return a},templateResult:function(a){return a.text},templateSelection:function(a){return a.text},theme:"default",width:"resolve"}},D.prototype.set=function(b,c){var d=a.camelCase(b),e={};e[d]=c;var f=j._convertData(e);a.extend(this.defaults,f)};var E=new D;return E}),b.define("select2/options",["require","jquery","./defaults","./utils"],function(a,b,c,d){function e(b,e){if(this.options=b,null!=e&&this.fromElement(e),this.options=c.apply(this.options),e&&e.is("input")){var f=a(this.get("amdBase")+"compat/inputData");this.options.dataAdapter=d.Decorate(this.options.dataAdapter,f)}}return e.prototype.fromElement=function(a){var c=["select2"];null==this.options.multiple&&(this.options.multiple=a.prop("multiple")),null==this.options.disabled&&(this.options.disabled=a.prop("disabled")),null==this.options.language&&(a.prop("lang")?this.options.language=a.prop("lang").toLowerCase():a.closest("[lang]").prop("lang")&&(this.options.language=a.closest("[lang]").prop("lang"))),null==this.options.dir&&(a.prop("dir")?this.options.dir=a.prop("dir"):a.closest("[dir]").prop("dir")?this.options.dir=a.closest("[dir]").prop("dir"):this.options.dir="ltr"),a.prop("disabled",this.options.disabled),a.prop("multiple",this.options.multiple),a.data("select2Tags")&&(this.options.debug&&window.console&&console.warn&&console.warn('Select2: The `data-select2-tags` attribute has been changed to use the `data-data` and `data-tags="true"` attributes and will be removed in future versions of Select2.'),a.data("data",a.data("select2Tags")),a.data("tags",!0)),a.data("ajaxUrl")&&(this.options.debug&&window.console&&console.warn&&console.warn("Select2: The `data-ajax-url` attribute has been changed to `data-ajax--url` and support for the old attribute will be removed in future versions of Select2."),a.attr("ajax--url",a.data("ajaxUrl")),a.data("ajax--url",a.data("ajaxUrl")));var e={};e=b.fn.jquery&&"1."==b.fn.jquery.substr(0,2)&&a[0].dataset?b.extend(!0,{},a[0].dataset,a.data()):a.data();var f=b.extend(!0,{},e);f=d._convertData(f);for(var g in f)b.inArray(g,c)>-1||(b.isPlainObject(this.options[g])?b.extend(this.options[g],f[g]):this.options[g]=f[g]);return this},e.prototype.get=function(a){return this.options[a]},e.prototype.set=function(a,b){this.options[a]=b},e}),b.define("select2/core",["jquery","./options","./utils","./keys"],function(a,b,c,d){var e=function(a,c){null!=a.data("select2")&&a.data("select2").destroy(),this.$element=a,this.id=this._generateId(a),c=c||{},this.options=new b(c,a),e.__super__.constructor.call(this);var d=a.attr("tabindex")||0;a.data("old-tabindex",d),a.attr("tabindex","-1");var f=this.options.get("dataAdapter");this.dataAdapter=new f(a,this.options);var g=this.render();this._placeContainer(g);var h=this.options.get("selectionAdapter");this.selection=new h(a,this.options),this.$selection=this.selection.render(),this.selection.position(this.$selection,g);var i=this.options.get("dropdownAdapter");this.dropdown=new i(a,this.options),this.$dropdown=this.dropdown.render(),this.dropdown.position(this.$dropdown,g);var j=this.options.get("resultsAdapter");this.results=new j(a,this.options,this.dataAdapter),this.$results=this.results.render(),this.results.position(this.$results,this.$dropdown);var k=this;this._bindAdapters(),this._registerDomEvents(),this._registerDataEvents(),this._registerSelectionEvents(),this._registerDropdownEvents(),this._registerResultsEvents(),this._registerEvents(),this.dataAdapter.current(function(a){k.trigger("selection:update",{data:a})}),a.addClass("select2-hidden-accessible"),a.attr("aria-hidden","true"),this._syncAttributes(),a.data("select2",this)};return c.Extend(e,c.Observable),e.prototype._generateId=function(a){var b="";return b=null!=a.attr("id")?a.attr("id"):null!=a.attr("name")?a.attr("name")+"-"+c.generateChars(2):c.generateChars(4),b=b.replace(/(:|\.|\[|\]|,)/g,""),b="select2-"+b},e.prototype._placeContainer=function(a){a.insertAfter(this.$element);var b=this._resolveWidth(this.$element,this.options.get("width"));null!=b&&a.css("width",b)},e.prototype._resolveWidth=function(a,b){var c=/^width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/i;if("resolve"==b){var d=this._resolveWidth(a,"style");return null!=d?d:this._resolveWidth(a,"element")}if("element"==b){var e=a.outerWidth(!1);return 0>=e?"auto":e+"px"}if("style"==b){var f=a.attr("style");if("string"!=typeof f)return null;for(var g=f.split(";"),h=0,i=g.length;i>h;h+=1){var j=g[h].replace(/\s/g,""),k=j.match(c);if(null!==k&&k.length>=1)return k[1]}return null}return b},e.prototype._bindAdapters=function(){this.dataAdapter.bind(this,this.$container),this.selection.bind(this,this.$container),this.dropdown.bind(this,this.$container),this.results.bind(this,this.$container)},e.prototype._registerDomEvents=function(){var b=this;this.$element.on("change.select2",function(){b.dataAdapter.current(function(a){b.trigger("selection:update",{data:a})})}),this.$element.on("focus.select2",function(a){b.trigger("focus",a)}),this._syncA=c.bind(this._syncAttributes,this),this._syncS=c.bind(this._syncSubtree,this),this.$element[0].attachEvent&&this.$element[0].attachEvent("onpropertychange",this._syncA);var d=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver;null!=d?(this._observer=new d(function(c){a.each(c,b._syncA),a.each(c,b._syncS)}),this._observer.observe(this.$element[0],{attributes:!0,childList:!0,subtree:!1})):this.$element[0].addEventListener&&(this.$element[0].addEventListener("DOMAttrModified",b._syncA,!1),this.$element[0].addEventListener("DOMNodeInserted",b._syncS,!1),this.$element[0].addEventListener("DOMNodeRemoved",b._syncS,!1))},e.prototype._registerDataEvents=function(){var a=this;this.dataAdapter.on("*",function(b,c){a.trigger(b,c)})},e.prototype._registerSelectionEvents=function(){var b=this,c=["toggle","focus"];this.selection.on("toggle",function(){b.toggleDropdown()}),this.selection.on("focus",function(a){b.focus(a)}),this.selection.on("*",function(d,e){-1===a.inArray(d,c)&&b.trigger(d,e)})},e.prototype._registerDropdownEvents=function(){var a=this;this.dropdown.on("*",function(b,c){a.trigger(b,c)})},e.prototype._registerResultsEvents=function(){var a=this;this.results.on("*",function(b,c){a.trigger(b,c)})},e.prototype._registerEvents=function(){var a=this;this.on("open",function(){a.$container.addClass("select2-container--open")}),this.on("close",function(){a.$container.removeClass("select2-container--open")}),this.on("enable",function(){a.$container.removeClass("select2-container--disabled")}),this.on("disable",function(){a.$container.addClass("select2-container--disabled")}),this.on("blur",function(){a.$container.removeClass("select2-container--focus")}),this.on("query",function(b){a.isOpen()||a.trigger("open",{}),this.dataAdapter.query(b,function(c){a.trigger("results:all",{data:c,query:b})})}),this.on("query:append",function(b){this.dataAdapter.query(b,function(c){a.trigger("results:append",{data:c,query:b})})}),this.on("keypress",function(b){var c=b.which;a.isOpen()?c===d.ESC||c===d.TAB||c===d.UP&&b.altKey?(a.close(),b.preventDefault()):c===d.ENTER?(a.trigger("results:select",{}),b.preventDefault()):c===d.SPACE&&b.ctrlKey?(a.trigger("results:toggle",{}),b.preventDefault()):c===d.UP?(a.trigger("results:previous",{}),b.preventDefault()):c===d.DOWN&&(a.trigger("results:next",{}),b.preventDefault()):(c===d.ENTER||c===d.SPACE||c===d.DOWN&&b.altKey)&&(a.open(),b.preventDefault())})},e.prototype._syncAttributes=function(){this.options.set("disabled",this.$element.prop("disabled")),this.options.get("disabled")?(this.isOpen()&&this.close(),this.trigger("disable",{})):this.trigger("enable",{})},e.prototype._syncSubtree=function(a,b){var c=!1,d=this;if(!a||!a.target||"OPTION"===a.target.nodeName||"OPTGROUP"===a.target.nodeName){if(b)if(b.addedNodes&&b.addedNodes.length>0)for(var e=0;e0&&(c=!0);else c=!0;c&&this.dataAdapter.current(function(a){d.trigger("selection:update",{data:a})})}},e.prototype.trigger=function(a,b){var c=e.__super__.trigger,d={open:"opening",close:"closing",select:"selecting",unselect:"unselecting"};if(void 0===b&&(b={}),a in d){var f=d[a],g={prevented:!1,name:a,args:b};if(c.call(this,f,g),g.prevented)return void(b.prevented=!0)}c.call(this,a,b)},e.prototype.toggleDropdown=function(){this.options.get("disabled")||(this.isOpen()?this.close():this.open())},e.prototype.open=function(){this.isOpen()||this.trigger("query",{})},e.prototype.close=function(){this.isOpen()&&this.trigger("close",{})},e.prototype.isOpen=function(){return this.$container.hasClass("select2-container--open")},e.prototype.hasFocus=function(){return this.$container.hasClass("select2-container--focus")},e.prototype.focus=function(a){this.hasFocus()||(this.$container.addClass("select2-container--focus"),this.trigger("focus",{}))},e.prototype.enable=function(a){this.options.get("debug")&&window.console&&console.warn&&console.warn('Select2: The `select2("enable")` method has been deprecated and will be removed in later Select2 versions. Use $element.prop("disabled") instead.'),(null==a||0===a.length)&&(a=[!0]);var b=!a[0];this.$element.prop("disabled",b)},e.prototype.data=function(){this.options.get("debug")&&arguments.length>0&&window.console&&console.warn&&console.warn('Select2: Data can no longer be set using `select2("data")`. You should consider setting the value instead using `$element.val()`.');var a=[];return this.dataAdapter.current(function(b){a=b}),a},e.prototype.val=function(b){if(this.options.get("debug")&&window.console&&console.warn&&console.warn('Select2: The `select2("val")` method has been deprecated and will be removed in later Select2 versions. Use $element.val() instead.'),null==b||0===b.length)return this.$element.val();var c=b[0];a.isArray(c)&&(c=a.map(c,function(a){return a.toString()})),this.$element.val(c).trigger("change")},e.prototype.destroy=function(){this.$container.remove(),this.$element[0].detachEvent&&this.$element[0].detachEvent("onpropertychange",this._syncA),null!=this._observer?(this._observer.disconnect(),this._observer=null):this.$element[0].removeEventListener&&(this.$element[0].removeEventListener("DOMAttrModified",this._syncA,!1),this.$element[0].removeEventListener("DOMNodeInserted",this._syncS,!1),this.$element[0].removeEventListener("DOMNodeRemoved",this._syncS,!1)),this._syncA=null,this._syncS=null,this.$element.off(".select2"),this.$element.attr("tabindex",this.$element.data("old-tabindex")),this.$element.removeClass("select2-hidden-accessible"),this.$element.attr("aria-hidden","false"),this.$element.removeData("select2"),this.dataAdapter.destroy(),this.selection.destroy(),this.dropdown.destroy(),this.results.destroy(),this.dataAdapter=null,this.selection=null,this.dropdown=null,this.results=null; },e.prototype.render=function(){var b=a('');return b.attr("dir",this.options.get("dir")),this.$container=b,this.$container.addClass("select2-container--"+this.options.get("theme")),b.data("element",this.$element),b},e}),b.define("jquery-mousewheel",["jquery"],function(a){return a}),b.define("jquery.select2",["jquery","jquery-mousewheel","./select2/core","./select2/defaults"],function(a,b,c,d){if(null==a.fn.select2){var e=["open","close","destroy"];a.fn.select2=function(b){if(b=b||{},"object"==typeof b)return this.each(function(){var d=a.extend(!0,{},b);new c(a(this),d)}),this;if("string"==typeof b){var d,f=Array.prototype.slice.call(arguments,1);return this.each(function(){var c=a(this).data("select2");null==c&&window.console&&console.error&&console.error("The select2('"+b+"') method was called on an element that is not using Select2."),d=c[b].apply(c,f)}),a.inArray(b,e)>-1?this:d}throw new Error("Invalid arguments for Select2: "+b)}}return null==a.fn.select2.defaults&&(a.fn.select2.defaults=d),c}),{define:b.define,require:b.require}}(),c=b.require("jquery.select2");return a.fn.select2.amd=b,c});assets/lib/wck-api/assets/country/country-select.php000066600000006012152141651140016650 0ustar00assets/lib/codemirror/lib/codemirror.js000066600000702512152141651140014245 0ustar00// CodeMirror version 3.17 // // CodeMirror is the only global var we claim window.CodeMirror = (function() { "use strict"; // BROWSER SNIFFING // Crude, but necessary to handle a number of hard-to-feature-detect // bugs and behavior differences. var gecko = /gecko\/\d/i.test(navigator.userAgent); var ie = /MSIE \d/.test(navigator.userAgent); var ie_lt8 = ie && (document.documentMode == null || document.documentMode < 8); var ie_lt9 = ie && (document.documentMode == null || document.documentMode < 9); var webkit = /WebKit\//.test(navigator.userAgent); var qtwebkit = webkit && /Qt\/\d+\.\d+/.test(navigator.userAgent); var chrome = /Chrome\//.test(navigator.userAgent); var opera = /Opera\//.test(navigator.userAgent); var safari = /Apple Computer/.test(navigator.vendor); var khtml = /KHTML\//.test(navigator.userAgent); var mac_geLion = /Mac OS X 1\d\D([7-9]|\d\d)\D/.test(navigator.userAgent); var mac_geMountainLion = /Mac OS X 1\d\D([8-9]|\d\d)\D/.test(navigator.userAgent); var phantom = /PhantomJS/.test(navigator.userAgent); var ios = /AppleWebKit/.test(navigator.userAgent) && /Mobile\/\w+/.test(navigator.userAgent); // This is woefully incomplete. Suggestions for alternative methods welcome. var mobile = ios || /Android|webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(navigator.userAgent); var mac = ios || /Mac/.test(navigator.platform); var windows = /win/i.test(navigator.platform); var opera_version = opera && navigator.userAgent.match(/Version\/(\d*\.\d*)/); if (opera_version) opera_version = Number(opera_version[1]); if (opera_version && opera_version >= 15) { opera = false; webkit = true; } // Some browsers use the wrong event properties to signal cmd/ctrl on OS X var flipCtrlCmd = mac && (qtwebkit || opera && (opera_version == null || opera_version < 12.11)); var captureMiddleClick = gecko || (ie && !ie_lt9); // Optimize some code when these features are not used var sawReadOnlySpans = false, sawCollapsedSpans = false; // CONSTRUCTOR function CodeMirror(place, options) { if (!(this instanceof CodeMirror)) return new CodeMirror(place, options); this.options = options = options || {}; // Determine effective options based on given values and defaults. for (var opt in defaults) if (!options.hasOwnProperty(opt) && defaults.hasOwnProperty(opt)) options[opt] = defaults[opt]; setGuttersForLineNumbers(options); var docStart = typeof options.value == "string" ? 0 : options.value.first; var display = this.display = makeDisplay(place, docStart); display.wrapper.CodeMirror = this; updateGutters(this); if (options.autofocus && !mobile) focusInput(this); this.state = {keyMaps: [], overlays: [], modeGen: 0, overwrite: false, focused: false, suppressEdits: false, pasteIncoming: false, draggingText: false, highlight: new Delayed()}; themeChanged(this); if (options.lineWrapping) this.display.wrapper.className += " CodeMirror-wrap"; var doc = options.value; if (typeof doc == "string") doc = new Doc(options.value, options.mode); operation(this, attachDoc)(this, doc); // Override magic textarea content restore that IE sometimes does // on our hidden textarea on reload if (ie) setTimeout(bind(resetInput, this, true), 20); registerEventHandlers(this); // IE throws unspecified error in certain cases, when // trying to access activeElement before onload var hasFocus; try { hasFocus = (document.activeElement == display.input); } catch(e) { } if (hasFocus || (options.autofocus && !mobile)) setTimeout(bind(onFocus, this), 20); else onBlur(this); operation(this, function() { for (var opt in optionHandlers) if (optionHandlers.propertyIsEnumerable(opt)) optionHandlers[opt](this, options[opt], Init); for (var i = 0; i < initHooks.length; ++i) initHooks[i](this); })(); } // DISPLAY CONSTRUCTOR function makeDisplay(place, docStart) { var d = {}; var input = d.input = elt("textarea", null, null, "position: absolute; padding: 0; width: 1px; height: 1em; outline: none; font-size: 4px;"); if (webkit) input.style.width = "1000px"; else input.setAttribute("wrap", "off"); // if border: 0; -- iOS fails to open keyboard (issue #1287) if (ios) input.style.border = "1px solid black"; input.setAttribute("autocorrect", "off"); input.setAttribute("autocapitalize", "off"); input.setAttribute("spellcheck", "false"); // Wraps and hides input textarea d.inputDiv = elt("div", [input], null, "overflow: hidden; position: relative; width: 3px; height: 0px;"); // The actual fake scrollbars. d.scrollbarH = elt("div", [elt("div", null, null, "height: 1px")], "CodeMirror-hscrollbar"); d.scrollbarV = elt("div", [elt("div", null, null, "width: 1px")], "CodeMirror-vscrollbar"); d.scrollbarFiller = elt("div", null, "CodeMirror-scrollbar-filler"); d.gutterFiller = elt("div", null, "CodeMirror-gutter-filler"); // DIVs containing the selection and the actual code d.lineDiv = elt("div", null, "CodeMirror-code"); d.selectionDiv = elt("div", null, null, "position: relative; z-index: 1"); // Blinky cursor, and element used to ensure cursor fits at the end of a line d.cursor = elt("div", "\u00a0", "CodeMirror-cursor"); // Secondary cursor, shown when on a 'jump' in bi-directional text d.otherCursor = elt("div", "\u00a0", "CodeMirror-cursor CodeMirror-secondarycursor"); // Used to measure text size d.measure = elt("div", null, "CodeMirror-measure"); // Wraps everything that needs to exist inside the vertically-padded coordinate system d.lineSpace = elt("div", [d.measure, d.selectionDiv, d.lineDiv, d.cursor, d.otherCursor], null, "position: relative; outline: none"); // Moved around its parent to cover visible view d.mover = elt("div", [elt("div", [d.lineSpace], "CodeMirror-lines")], null, "position: relative"); // Set to the height of the text, causes scrolling d.sizer = elt("div", [d.mover], "CodeMirror-sizer"); // D is needed because behavior of elts with overflow: auto and padding is inconsistent across browsers d.heightForcer = elt("div", null, null, "position: absolute; height: " + scrollerCutOff + "px; width: 1px;"); // Will contain the gutters, if any d.gutters = elt("div", null, "CodeMirror-gutters"); d.lineGutter = null; // Provides scrolling d.scroller = elt("div", [d.sizer, d.heightForcer, d.gutters], "CodeMirror-scroll"); d.scroller.setAttribute("tabIndex", "-1"); // The element in which the editor lives. d.wrapper = elt("div", [d.inputDiv, d.scrollbarH, d.scrollbarV, d.scrollbarFiller, d.gutterFiller, d.scroller], "CodeMirror"); // Work around IE7 z-index bug if (ie_lt8) { d.gutters.style.zIndex = -1; d.scroller.style.paddingRight = 0; } if (place.appendChild) place.appendChild(d.wrapper); else place(d.wrapper); // Needed to hide big blue blinking cursor on Mobile Safari if (ios) input.style.width = "0px"; if (!webkit) d.scroller.draggable = true; // Needed to handle Tab key in KHTML if (khtml) { d.inputDiv.style.height = "1px"; d.inputDiv.style.position = "absolute"; } // Need to set a minimum width to see the scrollbar on IE7 (but must not set it on IE8). else if (ie_lt8) d.scrollbarH.style.minWidth = d.scrollbarV.style.minWidth = "18px"; // Current visible range (may be bigger than the view window). d.viewOffset = d.lastSizeC = 0; d.showingFrom = d.showingTo = docStart; // Used to only resize the line number gutter when necessary (when // the amount of lines crosses a boundary that makes its width change) d.lineNumWidth = d.lineNumInnerWidth = d.lineNumChars = null; // See readInput and resetInput d.prevInput = ""; // Set to true when a non-horizontal-scrolling widget is added. As // an optimization, widget aligning is skipped when d is false. d.alignWidgets = false; // Flag that indicates whether we currently expect input to appear // (after some event like 'keypress' or 'input') and are polling // intensively. d.pollingFast = false; // Self-resetting timeout for the poller d.poll = new Delayed(); d.cachedCharWidth = d.cachedTextHeight = null; d.measureLineCache = []; d.measureLineCachePos = 0; // Tracks when resetInput has punted to just putting a short // string instead of the (large) selection. d.inaccurateSelection = false; // Tracks the maximum line length so that the horizontal scrollbar // can be kept static when scrolling. d.maxLine = null; d.maxLineLength = 0; d.maxLineChanged = false; // Used for measuring wheel scrolling granularity d.wheelDX = d.wheelDY = d.wheelStartX = d.wheelStartY = null; return d; } // STATE UPDATES // Used to get the editor into a consistent state again when options change. function loadMode(cm) { cm.doc.mode = CodeMirror.getMode(cm.options, cm.doc.modeOption); cm.doc.iter(function(line) { if (line.stateAfter) line.stateAfter = null; if (line.styles) line.styles = null; }); cm.doc.frontier = cm.doc.first; startWorker(cm, 100); cm.state.modeGen++; if (cm.curOp) regChange(cm); } function wrappingChanged(cm) { if (cm.options.lineWrapping) { cm.display.wrapper.className += " CodeMirror-wrap"; cm.display.sizer.style.minWidth = ""; } else { cm.display.wrapper.className = cm.display.wrapper.className.replace(" CodeMirror-wrap", ""); computeMaxLength(cm); } estimateLineHeights(cm); regChange(cm); clearCaches(cm); setTimeout(function(){updateScrollbars(cm);}, 100); } function estimateHeight(cm) { var th = textHeight(cm.display), wrapping = cm.options.lineWrapping; var perLine = wrapping && Math.max(5, cm.display.scroller.clientWidth / charWidth(cm.display) - 3); return function(line) { if (lineIsHidden(cm.doc, line)) return 0; else if (wrapping) return (Math.ceil(line.text.length / perLine) || 1) * th; else return th; }; } function estimateLineHeights(cm) { var doc = cm.doc, est = estimateHeight(cm); doc.iter(function(line) { var estHeight = est(line); if (estHeight != line.height) updateLineHeight(line, estHeight); }); } function keyMapChanged(cm) { var map = keyMap[cm.options.keyMap], style = map.style; cm.display.wrapper.className = cm.display.wrapper.className.replace(/\s*cm-keymap-\S+/g, "") + (style ? " cm-keymap-" + style : ""); cm.state.disableInput = map.disableInput; } function themeChanged(cm) { cm.display.wrapper.className = cm.display.wrapper.className.replace(/\s*cm-s-\S+/g, "") + cm.options.theme.replace(/(^|\s)\s*/g, " cm-s-"); clearCaches(cm); } function guttersChanged(cm) { updateGutters(cm); regChange(cm); setTimeout(function(){alignHorizontally(cm);}, 20); } function updateGutters(cm) { var gutters = cm.display.gutters, specs = cm.options.gutters; removeChildren(gutters); for (var i = 0; i < specs.length; ++i) { var gutterClass = specs[i]; var gElt = gutters.appendChild(elt("div", null, "CodeMirror-gutter " + gutterClass)); if (gutterClass == "CodeMirror-linenumbers") { cm.display.lineGutter = gElt; gElt.style.width = (cm.display.lineNumWidth || 1) + "px"; } } gutters.style.display = i ? "" : "none"; } function lineLength(doc, line) { if (line.height == 0) return 0; var len = line.text.length, merged, cur = line; while (merged = collapsedSpanAtStart(cur)) { var found = merged.find(); cur = getLine(doc, found.from.line); len += found.from.ch - found.to.ch; } cur = line; while (merged = collapsedSpanAtEnd(cur)) { var found = merged.find(); len -= cur.text.length - found.from.ch; cur = getLine(doc, found.to.line); len += cur.text.length - found.to.ch; } return len; } function computeMaxLength(cm) { var d = cm.display, doc = cm.doc; d.maxLine = getLine(doc, doc.first); d.maxLineLength = lineLength(doc, d.maxLine); d.maxLineChanged = true; doc.iter(function(line) { var len = lineLength(doc, line); if (len > d.maxLineLength) { d.maxLineLength = len; d.maxLine = line; } }); } // Make sure the gutters options contains the element // "CodeMirror-linenumbers" when the lineNumbers option is true. function setGuttersForLineNumbers(options) { var found = indexOf(options.gutters, "CodeMirror-linenumbers"); if (found == -1 && options.lineNumbers) { options.gutters = options.gutters.concat(["CodeMirror-linenumbers"]); } else if (found > -1 && !options.lineNumbers) { options.gutters = options.gutters.slice(0); options.gutters.splice(i, 1); } } // SCROLLBARS // Re-synchronize the fake scrollbars with the actual size of the // content. Optionally force a scrollTop. function updateScrollbars(cm) { var d = cm.display, docHeight = cm.doc.height; var totalHeight = docHeight + paddingVert(d); d.sizer.style.minHeight = d.heightForcer.style.top = totalHeight + "px"; d.gutters.style.height = Math.max(totalHeight, d.scroller.clientHeight - scrollerCutOff) + "px"; var scrollHeight = Math.max(totalHeight, d.scroller.scrollHeight); var needsH = d.scroller.scrollWidth > (d.scroller.clientWidth + 1); var needsV = scrollHeight > (d.scroller.clientHeight + 1); if (needsV) { d.scrollbarV.style.display = "block"; d.scrollbarV.style.bottom = needsH ? scrollbarWidth(d.measure) + "px" : "0"; d.scrollbarV.firstChild.style.height = (scrollHeight - d.scroller.clientHeight + d.scrollbarV.clientHeight) + "px"; } else { d.scrollbarV.style.display = ""; d.scrollbarV.firstChild.style.height = "0"; } if (needsH) { d.scrollbarH.style.display = "block"; d.scrollbarH.style.right = needsV ? scrollbarWidth(d.measure) + "px" : "0"; d.scrollbarH.firstChild.style.width = (d.scroller.scrollWidth - d.scroller.clientWidth + d.scrollbarH.clientWidth) + "px"; } else { d.scrollbarH.style.display = ""; d.scrollbarH.firstChild.style.width = "0"; } if (needsH && needsV) { d.scrollbarFiller.style.display = "block"; d.scrollbarFiller.style.height = d.scrollbarFiller.style.width = scrollbarWidth(d.measure) + "px"; } else d.scrollbarFiller.style.display = ""; if (needsH && cm.options.coverGutterNextToScrollbar && cm.options.fixedGutter) { d.gutterFiller.style.display = "block"; d.gutterFiller.style.height = scrollbarWidth(d.measure) + "px"; d.gutterFiller.style.width = d.gutters.offsetWidth + "px"; } else d.gutterFiller.style.display = ""; if (mac_geLion && scrollbarWidth(d.measure) === 0) d.scrollbarV.style.minWidth = d.scrollbarH.style.minHeight = mac_geMountainLion ? "18px" : "12px"; } function visibleLines(display, doc, viewPort) { var top = display.scroller.scrollTop, height = display.wrapper.clientHeight; if (typeof viewPort == "number") top = viewPort; else if (viewPort) {top = viewPort.top; height = viewPort.bottom - viewPort.top;} top = Math.floor(top - paddingTop(display)); var bottom = Math.ceil(top + height); return {from: lineAtHeight(doc, top), to: lineAtHeight(doc, bottom)}; } // LINE NUMBERS function alignHorizontally(cm) { var display = cm.display; if (!display.alignWidgets && (!display.gutters.firstChild || !cm.options.fixedGutter)) return; var comp = compensateForHScroll(display) - display.scroller.scrollLeft + cm.doc.scrollLeft; var gutterW = display.gutters.offsetWidth, l = comp + "px"; for (var n = display.lineDiv.firstChild; n; n = n.nextSibling) if (n.alignable) { for (var i = 0, a = n.alignable; i < a.length; ++i) a[i].style.left = l; } if (cm.options.fixedGutter) display.gutters.style.left = (comp + gutterW) + "px"; } function maybeUpdateLineNumberWidth(cm) { if (!cm.options.lineNumbers) return false; var doc = cm.doc, last = lineNumberFor(cm.options, doc.first + doc.size - 1), display = cm.display; if (last.length != display.lineNumChars) { var test = display.measure.appendChild(elt("div", [elt("div", last)], "CodeMirror-linenumber CodeMirror-gutter-elt")); var innerW = test.firstChild.offsetWidth, padding = test.offsetWidth - innerW; display.lineGutter.style.width = ""; display.lineNumInnerWidth = Math.max(innerW, display.lineGutter.offsetWidth - padding); display.lineNumWidth = display.lineNumInnerWidth + padding; display.lineNumChars = display.lineNumInnerWidth ? last.length : -1; display.lineGutter.style.width = display.lineNumWidth + "px"; return true; } return false; } function lineNumberFor(options, i) { return String(options.lineNumberFormatter(i + options.firstLineNumber)); } function compensateForHScroll(display) { return getRect(display.scroller).left - getRect(display.sizer).left; } // DISPLAY DRAWING function updateDisplay(cm, changes, viewPort, forced) { var oldFrom = cm.display.showingFrom, oldTo = cm.display.showingTo, updated; var visible = visibleLines(cm.display, cm.doc, viewPort); for (var first = true;; first = false) { var oldWidth = cm.display.scroller.clientWidth; if (!updateDisplayInner(cm, changes, visible, forced)) break; updated = true; changes = []; updateSelection(cm); updateScrollbars(cm); if (first && cm.options.lineWrapping && oldWidth != cm.display.scroller.clientWidth) { forced = true; continue; } forced = false; // Clip forced viewport to actual scrollable area if (viewPort) viewPort = Math.min(cm.display.scroller.scrollHeight - cm.display.scroller.clientHeight, typeof viewPort == "number" ? viewPort : viewPort.top); visible = visibleLines(cm.display, cm.doc, viewPort); if (visible.from >= cm.display.showingFrom && visible.to <= cm.display.showingTo) break; } if (updated) { signalLater(cm, "update", cm); if (cm.display.showingFrom != oldFrom || cm.display.showingTo != oldTo) signalLater(cm, "viewportChange", cm, cm.display.showingFrom, cm.display.showingTo); } return updated; } // Uses a set of changes plus the current scroll position to // determine which DOM updates have to be made, and makes the // updates. function updateDisplayInner(cm, changes, visible, forced) { var display = cm.display, doc = cm.doc; if (!display.wrapper.clientWidth) { display.showingFrom = display.showingTo = doc.first; display.viewOffset = 0; return; } // Bail out if the visible area is already rendered and nothing changed. if (!forced && changes.length == 0 && visible.from > display.showingFrom && visible.to < display.showingTo) return; if (maybeUpdateLineNumberWidth(cm)) changes = [{from: doc.first, to: doc.first + doc.size}]; var gutterW = display.sizer.style.marginLeft = display.gutters.offsetWidth + "px"; display.scrollbarH.style.left = cm.options.fixedGutter ? gutterW : "0"; // Used to determine which lines need their line numbers updated var positionsChangedFrom = Infinity; if (cm.options.lineNumbers) for (var i = 0; i < changes.length; ++i) if (changes[i].diff && changes[i].from < positionsChangedFrom) { positionsChangedFrom = changes[i].from; } var end = doc.first + doc.size; var from = Math.max(visible.from - cm.options.viewportMargin, doc.first); var to = Math.min(end, visible.to + cm.options.viewportMargin); if (display.showingFrom < from && from - display.showingFrom < 20) from = Math.max(doc.first, display.showingFrom); if (display.showingTo > to && display.showingTo - to < 20) to = Math.min(end, display.showingTo); if (sawCollapsedSpans) { from = lineNo(visualLine(doc, getLine(doc, from))); while (to < end && lineIsHidden(doc, getLine(doc, to))) ++to; } // Create a range of theoretically intact lines, and punch holes // in that using the change info. var intact = [{from: Math.max(display.showingFrom, doc.first), to: Math.min(display.showingTo, end)}]; if (intact[0].from >= intact[0].to) intact = []; else intact = computeIntact(intact, changes); // When merged lines are present, we might have to reduce the // intact ranges because changes in continued fragments of the // intact lines do require the lines to be redrawn. if (sawCollapsedSpans) for (var i = 0; i < intact.length; ++i) { var range = intact[i], merged; while (merged = collapsedSpanAtEnd(getLine(doc, range.to - 1))) { var newTo = merged.find().from.line; if (newTo > range.from) range.to = newTo; else { intact.splice(i--, 1); break; } } } // Clip off the parts that won't be visible var intactLines = 0; for (var i = 0; i < intact.length; ++i) { var range = intact[i]; if (range.from < from) range.from = from; if (range.to > to) range.to = to; if (range.from >= range.to) intact.splice(i--, 1); else intactLines += range.to - range.from; } if (!forced && intactLines == to - from && from == display.showingFrom && to == display.showingTo) { updateViewOffset(cm); return; } intact.sort(function(a, b) {return a.from - b.from;}); // Avoid crashing on IE's "unspecified error" when in iframes try { var focused = document.activeElement; } catch(e) {} if (intactLines < (to - from) * .7) display.lineDiv.style.display = "none"; patchDisplay(cm, from, to, intact, positionsChangedFrom); display.lineDiv.style.display = ""; if (focused && document.activeElement != focused && focused.offsetHeight) focused.focus(); var different = from != display.showingFrom || to != display.showingTo || display.lastSizeC != display.wrapper.clientHeight; // This is just a bogus formula that detects when the editor is // resized or the font size changes. if (different) { display.lastSizeC = display.wrapper.clientHeight; startWorker(cm, 400); } display.showingFrom = from; display.showingTo = to; updateHeightsInViewport(cm); updateViewOffset(cm); return true; } function updateHeightsInViewport(cm) { var display = cm.display; var prevBottom = display.lineDiv.offsetTop; for (var node = display.lineDiv.firstChild, height; node; node = node.nextSibling) if (node.lineObj) { if (ie_lt8) { var bot = node.offsetTop + node.offsetHeight; height = bot - prevBottom; prevBottom = bot; } else { var box = getRect(node); height = box.bottom - box.top; } var diff = node.lineObj.height - height; if (height < 2) height = textHeight(display); if (diff > .001 || diff < -.001) { updateLineHeight(node.lineObj, height); var widgets = node.lineObj.widgets; if (widgets) for (var i = 0; i < widgets.length; ++i) widgets[i].height = widgets[i].node.offsetHeight; } } } function updateViewOffset(cm) { var off = cm.display.viewOffset = heightAtLine(cm, getLine(cm.doc, cm.display.showingFrom)); // Position the mover div to align with the current virtual scroll position cm.display.mover.style.top = off + "px"; } function computeIntact(intact, changes) { for (var i = 0, l = changes.length || 0; i < l; ++i) { var change = changes[i], intact2 = [], diff = change.diff || 0; for (var j = 0, l2 = intact.length; j < l2; ++j) { var range = intact[j]; if (change.to <= range.from && change.diff) { intact2.push({from: range.from + diff, to: range.to + diff}); } else if (change.to <= range.from || change.from >= range.to) { intact2.push(range); } else { if (change.from > range.from) intact2.push({from: range.from, to: change.from}); if (change.to < range.to) intact2.push({from: change.to + diff, to: range.to + diff}); } } intact = intact2; } return intact; } function getDimensions(cm) { var d = cm.display, left = {}, width = {}; for (var n = d.gutters.firstChild, i = 0; n; n = n.nextSibling, ++i) { left[cm.options.gutters[i]] = n.offsetLeft; width[cm.options.gutters[i]] = n.offsetWidth; } return {fixedPos: compensateForHScroll(d), gutterTotalWidth: d.gutters.offsetWidth, gutterLeft: left, gutterWidth: width, wrapperWidth: d.wrapper.clientWidth}; } function patchDisplay(cm, from, to, intact, updateNumbersFrom) { var dims = getDimensions(cm); var display = cm.display, lineNumbers = cm.options.lineNumbers; if (!intact.length && (!webkit || !cm.display.currentWheelTarget)) removeChildren(display.lineDiv); var container = display.lineDiv, cur = container.firstChild; function rm(node) { var next = node.nextSibling; if (webkit && mac && cm.display.currentWheelTarget == node) { node.style.display = "none"; node.lineObj = null; } else { node.parentNode.removeChild(node); } return next; } var nextIntact = intact.shift(), lineN = from; cm.doc.iter(from, to, function(line) { if (nextIntact && nextIntact.to == lineN) nextIntact = intact.shift(); if (lineIsHidden(cm.doc, line)) { if (line.height != 0) updateLineHeight(line, 0); if (line.widgets && cur && cur.previousSibling) for (var i = 0; i < line.widgets.length; ++i) { var w = line.widgets[i]; if (w.showIfHidden) { var prev = cur.previousSibling; if (/pre/i.test(prev.nodeName)) { var wrap = elt("div", null, null, "position: relative"); prev.parentNode.replaceChild(wrap, prev); wrap.appendChild(prev); prev = wrap; } var wnode = prev.appendChild(elt("div", [w.node], "CodeMirror-linewidget")); if (!w.handleMouseEvents) wnode.ignoreEvents = true; positionLineWidget(w, wnode, prev, dims); } } } else if (nextIntact && nextIntact.from <= lineN && nextIntact.to > lineN) { // This line is intact. Skip to the actual node. Update its // line number if needed. while (cur.lineObj != line) cur = rm(cur); if (lineNumbers && updateNumbersFrom <= lineN && cur.lineNumber) setTextContent(cur.lineNumber, lineNumberFor(cm.options, lineN)); cur = cur.nextSibling; } else { // For lines with widgets, make an attempt to find and reuse // the existing element, so that widgets aren't needlessly // removed and re-inserted into the dom if (line.widgets) for (var j = 0, search = cur, reuse; search && j < 20; ++j, search = search.nextSibling) if (search.lineObj == line && /div/i.test(search.nodeName)) { reuse = search; break; } // This line needs to be generated. var lineNode = buildLineElement(cm, line, lineN, dims, reuse); if (lineNode != reuse) { container.insertBefore(lineNode, cur); } else { while (cur != reuse) cur = rm(cur); cur = cur.nextSibling; } lineNode.lineObj = line; } ++lineN; }); while (cur) cur = rm(cur); } function buildLineElement(cm, line, lineNo, dims, reuse) { var built = buildLineContent(cm, line), lineElement = built.pre; var markers = line.gutterMarkers, display = cm.display, wrap; var bgClass = built.bgClass ? built.bgClass + " " + (line.bgClass || "") : line.bgClass; if (!cm.options.lineNumbers && !markers && !bgClass && !line.wrapClass && !line.widgets) return lineElement; // Lines with gutter elements, widgets or a background class need // to be wrapped again, and have the extra elements added to the // wrapper div if (reuse) { reuse.alignable = null; var isOk = true, widgetsSeen = 0, insertBefore = null; for (var n = reuse.firstChild, next; n; n = next) { next = n.nextSibling; if (!/\bCodeMirror-linewidget\b/.test(n.className)) { reuse.removeChild(n); } else { for (var i = 0; i < line.widgets.length; ++i) { var widget = line.widgets[i]; if (widget.node == n.firstChild) { if (!widget.above && !insertBefore) insertBefore = n; positionLineWidget(widget, n, reuse, dims); ++widgetsSeen; break; } } if (i == line.widgets.length) { isOk = false; break; } } } reuse.insertBefore(lineElement, insertBefore); if (isOk && widgetsSeen == line.widgets.length) { wrap = reuse; reuse.className = line.wrapClass || ""; } } if (!wrap) { wrap = elt("div", null, line.wrapClass, "position: relative"); wrap.appendChild(lineElement); } // Kludge to make sure the styled element lies behind the selection (by z-index) if (bgClass) wrap.insertBefore(elt("div", null, bgClass + " CodeMirror-linebackground"), wrap.firstChild); if (cm.options.lineNumbers || markers) { var gutterWrap = wrap.insertBefore(elt("div", null, null, "position: absolute; left: " + (cm.options.fixedGutter ? dims.fixedPos : -dims.gutterTotalWidth) + "px"), wrap.firstChild); if (cm.options.fixedGutter) (wrap.alignable || (wrap.alignable = [])).push(gutterWrap); if (cm.options.lineNumbers && (!markers || !markers["CodeMirror-linenumbers"])) wrap.lineNumber = gutterWrap.appendChild( elt("div", lineNumberFor(cm.options, lineNo), "CodeMirror-linenumber CodeMirror-gutter-elt", "left: " + dims.gutterLeft["CodeMirror-linenumbers"] + "px; width: " + display.lineNumInnerWidth + "px")); if (markers) for (var k = 0; k < cm.options.gutters.length; ++k) { var id = cm.options.gutters[k], found = markers.hasOwnProperty(id) && markers[id]; if (found) gutterWrap.appendChild(elt("div", [found], "CodeMirror-gutter-elt", "left: " + dims.gutterLeft[id] + "px; width: " + dims.gutterWidth[id] + "px")); } } if (ie_lt8) wrap.style.zIndex = 2; if (line.widgets && wrap != reuse) for (var i = 0, ws = line.widgets; i < ws.length; ++i) { var widget = ws[i], node = elt("div", [widget.node], "CodeMirror-linewidget"); if (!widget.handleMouseEvents) node.ignoreEvents = true; positionLineWidget(widget, node, wrap, dims); if (widget.above) wrap.insertBefore(node, cm.options.lineNumbers && line.height != 0 ? gutterWrap : lineElement); else wrap.appendChild(node); signalLater(widget, "redraw"); } return wrap; } function positionLineWidget(widget, node, wrap, dims) { if (widget.noHScroll) { (wrap.alignable || (wrap.alignable = [])).push(node); var width = dims.wrapperWidth; node.style.left = dims.fixedPos + "px"; if (!widget.coverGutter) { width -= dims.gutterTotalWidth; node.style.paddingLeft = dims.gutterTotalWidth + "px"; } node.style.width = width + "px"; } if (widget.coverGutter) { node.style.zIndex = 5; node.style.position = "relative"; if (!widget.noHScroll) node.style.marginLeft = -dims.gutterTotalWidth + "px"; } } // SELECTION / CURSOR function updateSelection(cm) { var display = cm.display; var collapsed = posEq(cm.doc.sel.from, cm.doc.sel.to); if (collapsed || cm.options.showCursorWhenSelecting) updateSelectionCursor(cm); else display.cursor.style.display = display.otherCursor.style.display = "none"; if (!collapsed) updateSelectionRange(cm); else display.selectionDiv.style.display = "none"; // Move the hidden textarea near the cursor to prevent scrolling artifacts if (cm.options.moveInputWithCursor) { var headPos = cursorCoords(cm, cm.doc.sel.head, "div"); var wrapOff = getRect(display.wrapper), lineOff = getRect(display.lineDiv); display.inputDiv.style.top = Math.max(0, Math.min(display.wrapper.clientHeight - 10, headPos.top + lineOff.top - wrapOff.top)) + "px"; display.inputDiv.style.left = Math.max(0, Math.min(display.wrapper.clientWidth - 10, headPos.left + lineOff.left - wrapOff.left)) + "px"; } } // No selection, plain cursor function updateSelectionCursor(cm) { var display = cm.display, pos = cursorCoords(cm, cm.doc.sel.head, "div"); display.cursor.style.left = pos.left + "px"; display.cursor.style.top = pos.top + "px"; display.cursor.style.height = Math.max(0, pos.bottom - pos.top) * cm.options.cursorHeight + "px"; display.cursor.style.display = ""; if (pos.other) { display.otherCursor.style.display = ""; display.otherCursor.style.left = pos.other.left + "px"; display.otherCursor.style.top = pos.other.top + "px"; display.otherCursor.style.height = (pos.other.bottom - pos.other.top) * .85 + "px"; } else { display.otherCursor.style.display = "none"; } } // Highlight selection function updateSelectionRange(cm) { var display = cm.display, doc = cm.doc, sel = cm.doc.sel; var fragment = document.createDocumentFragment(); var clientWidth = display.lineSpace.offsetWidth, pl = paddingLeft(cm.display); function add(left, top, width, bottom) { if (top < 0) top = 0; fragment.appendChild(elt("div", null, "CodeMirror-selected", "position: absolute; left: " + left + "px; top: " + top + "px; width: " + (width == null ? clientWidth - left : width) + "px; height: " + (bottom - top) + "px")); } function drawForLine(line, fromArg, toArg) { var lineObj = getLine(doc, line); var lineLen = lineObj.text.length; var start, end; function coords(ch, bias) { return charCoords(cm, Pos(line, ch), "div", lineObj, bias); } iterateBidiSections(getOrder(lineObj), fromArg || 0, toArg == null ? lineLen : toArg, function(from, to, dir) { var leftPos = coords(from, "left"), rightPos, left, right; if (from == to) { rightPos = leftPos; left = right = leftPos.left; } else { rightPos = coords(to - 1, "right"); if (dir == "rtl") { var tmp = leftPos; leftPos = rightPos; rightPos = tmp; } left = leftPos.left; right = rightPos.right; } if (fromArg == null && from == 0) left = pl; if (rightPos.top - leftPos.top > 3) { // Different lines, draw top part add(left, leftPos.top, null, leftPos.bottom); left = pl; if (leftPos.bottom < rightPos.top) add(left, leftPos.bottom, null, rightPos.top); } if (toArg == null && to == lineLen) right = clientWidth; if (!start || leftPos.top < start.top || leftPos.top == start.top && leftPos.left < start.left) start = leftPos; if (!end || rightPos.bottom > end.bottom || rightPos.bottom == end.bottom && rightPos.right > end.right) end = rightPos; if (left < pl + 1) left = pl; add(left, rightPos.top, right - left, rightPos.bottom); }); return {start: start, end: end}; } if (sel.from.line == sel.to.line) { drawForLine(sel.from.line, sel.from.ch, sel.to.ch); } else { var fromLine = getLine(doc, sel.from.line), toLine = getLine(doc, sel.to.line); var singleVLine = visualLine(doc, fromLine) == visualLine(doc, toLine); var leftEnd = drawForLine(sel.from.line, sel.from.ch, singleVLine ? fromLine.text.length : null).end; var rightStart = drawForLine(sel.to.line, singleVLine ? 0 : null, sel.to.ch).start; if (singleVLine) { if (leftEnd.top < rightStart.top - 2) { add(leftEnd.right, leftEnd.top, null, leftEnd.bottom); add(pl, rightStart.top, rightStart.left, rightStart.bottom); } else { add(leftEnd.right, leftEnd.top, rightStart.left - leftEnd.right, leftEnd.bottom); } } if (leftEnd.bottom < rightStart.top) add(pl, leftEnd.bottom, null, rightStart.top); } removeChildrenAndAdd(display.selectionDiv, fragment); display.selectionDiv.style.display = ""; } // Cursor-blinking function restartBlink(cm) { if (!cm.state.focused) return; var display = cm.display; clearInterval(display.blinker); var on = true; display.cursor.style.visibility = display.otherCursor.style.visibility = ""; if (cm.options.cursorBlinkRate > 0) display.blinker = setInterval(function() { display.cursor.style.visibility = display.otherCursor.style.visibility = (on = !on) ? "" : "hidden"; }, cm.options.cursorBlinkRate); } // HIGHLIGHT WORKER function startWorker(cm, time) { if (cm.doc.mode.startState && cm.doc.frontier < cm.display.showingTo) cm.state.highlight.set(time, bind(highlightWorker, cm)); } function highlightWorker(cm) { var doc = cm.doc; if (doc.frontier < doc.first) doc.frontier = doc.first; if (doc.frontier >= cm.display.showingTo) return; var end = +new Date + cm.options.workTime; var state = copyState(doc.mode, getStateBefore(cm, doc.frontier)); var changed = [], prevChange; doc.iter(doc.frontier, Math.min(doc.first + doc.size, cm.display.showingTo + 500), function(line) { if (doc.frontier >= cm.display.showingFrom) { // Visible var oldStyles = line.styles; line.styles = highlightLine(cm, line, state); var ischange = !oldStyles || oldStyles.length != line.styles.length; for (var i = 0; !ischange && i < oldStyles.length; ++i) ischange = oldStyles[i] != line.styles[i]; if (ischange) { if (prevChange && prevChange.end == doc.frontier) prevChange.end++; else changed.push(prevChange = {start: doc.frontier, end: doc.frontier + 1}); } line.stateAfter = copyState(doc.mode, state); } else { processLine(cm, line, state); line.stateAfter = doc.frontier % 5 == 0 ? copyState(doc.mode, state) : null; } ++doc.frontier; if (+new Date > end) { startWorker(cm, cm.options.workDelay); return true; } }); if (changed.length) operation(cm, function() { for (var i = 0; i < changed.length; ++i) regChange(this, changed[i].start, changed[i].end); })(); } // Finds the line to start with when starting a parse. Tries to // find a line with a stateAfter, so that it can start with a // valid state. If that fails, it returns the line with the // smallest indentation, which tends to need the least context to // parse correctly. function findStartLine(cm, n, precise) { var minindent, minline, doc = cm.doc, maxScan = cm.doc.mode.innerMode ? 1000 : 100; for (var search = n, lim = n - maxScan; search > lim; --search) { if (search <= doc.first) return doc.first; var line = getLine(doc, search - 1); if (line.stateAfter && (!precise || search <= doc.frontier)) return search; var indented = countColumn(line.text, null, cm.options.tabSize); if (minline == null || minindent > indented) { minline = search - 1; minindent = indented; } } return minline; } function getStateBefore(cm, n, precise) { var doc = cm.doc, display = cm.display; if (!doc.mode.startState) return true; var pos = findStartLine(cm, n, precise), state = pos > doc.first && getLine(doc, pos-1).stateAfter; if (!state) state = startState(doc.mode); else state = copyState(doc.mode, state); doc.iter(pos, n, function(line) { processLine(cm, line, state); var save = pos == n - 1 || pos % 5 == 0 || pos >= display.showingFrom && pos < display.showingTo; line.stateAfter = save ? copyState(doc.mode, state) : null; ++pos; }); return state; } // POSITION MEASUREMENT function paddingTop(display) {return display.lineSpace.offsetTop;} function paddingVert(display) {return display.mover.offsetHeight - display.lineSpace.offsetHeight;} function paddingLeft(display) { var e = removeChildrenAndAdd(display.measure, elt("pre", null, null, "text-align: left")).appendChild(elt("span", "x")); return e.offsetLeft; } function measureChar(cm, line, ch, data, bias) { var dir = -1; data = data || measureLine(cm, line); if (data.crude) { var left = data.left + ch * data.width; return {left: left, right: left + data.width, top: data.top, bottom: data.bottom}; } for (var pos = ch;; pos += dir) { var r = data[pos]; if (r) break; if (dir < 0 && pos == 0) dir = 1; } bias = pos > ch ? "left" : pos < ch ? "right" : bias; if (bias == "left" && r.leftSide) r = r.leftSide; else if (bias == "right" && r.rightSide) r = r.rightSide; return {left: pos < ch ? r.right : r.left, right: pos > ch ? r.left : r.right, top: r.top, bottom: r.bottom}; } function findCachedMeasurement(cm, line) { var cache = cm.display.measureLineCache; for (var i = 0; i < cache.length; ++i) { var memo = cache[i]; if (memo.text == line.text && memo.markedSpans == line.markedSpans && cm.display.scroller.clientWidth == memo.width && memo.classes == line.textClass + "|" + line.wrapClass) return memo; } } function clearCachedMeasurement(cm, line) { var exists = findCachedMeasurement(cm, line); if (exists) exists.text = exists.measure = exists.markedSpans = null; } function measureLine(cm, line) { // First look in the cache var cached = findCachedMeasurement(cm, line); if (cached) return cached.measure; // Failing that, recompute and store result in cache var measure = measureLineInner(cm, line); var cache = cm.display.measureLineCache; var memo = {text: line.text, width: cm.display.scroller.clientWidth, markedSpans: line.markedSpans, measure: measure, classes: line.textClass + "|" + line.wrapClass}; if (cache.length == 16) cache[++cm.display.measureLineCachePos % 16] = memo; else cache.push(memo); return measure; } function measureLineInner(cm, line) { if (!cm.options.lineWrapping && line.text.length >= cm.options.crudeMeasuringFrom) return crudelyMeasureLine(cm, line); var display = cm.display, measure = emptyArray(line.text.length); var pre = buildLineContent(cm, line, measure, true).pre; // IE does not cache element positions of inline elements between // calls to getBoundingClientRect. This makes the loop below, // which gathers the positions of all the characters on the line, // do an amount of layout work quadratic to the number of // characters. When line wrapping is off, we try to improve things // by first subdividing the line into a bunch of inline blocks, so // that IE can reuse most of the layout information from caches // for those blocks. This does interfere with line wrapping, so it // doesn't work when wrapping is on, but in that case the // situation is slightly better, since IE does cache line-wrapping // information and only recomputes per-line. if (ie && !ie_lt8 && !cm.options.lineWrapping && pre.childNodes.length > 100) { var fragment = document.createDocumentFragment(); var chunk = 10, n = pre.childNodes.length; for (var i = 0, chunks = Math.ceil(n / chunk); i < chunks; ++i) { var wrap = elt("div", null, null, "display: inline-block"); for (var j = 0; j < chunk && n; ++j) { wrap.appendChild(pre.firstChild); --n; } fragment.appendChild(wrap); } pre.appendChild(fragment); } removeChildrenAndAdd(display.measure, pre); var outer = getRect(display.lineDiv); var vranges = [], data = emptyArray(line.text.length), maxBot = pre.offsetHeight; // Work around an IE7/8 bug where it will sometimes have randomly // replaced our pre with a clone at this point. if (ie_lt9 && display.measure.first != pre) removeChildrenAndAdd(display.measure, pre); function measureRect(rect) { var top = rect.top - outer.top, bot = rect.bottom - outer.top; if (bot > maxBot) bot = maxBot; if (top < 0) top = 0; for (var i = vranges.length - 2; i >= 0; i -= 2) { var rtop = vranges[i], rbot = vranges[i+1]; if (rtop > bot || rbot < top) continue; if (rtop <= top && rbot >= bot || top <= rtop && bot >= rbot || Math.min(bot, rbot) - Math.max(top, rtop) >= (bot - top) >> 1) { vranges[i] = Math.min(top, rtop); vranges[i+1] = Math.max(bot, rbot); break; } } if (i < 0) { i = vranges.length; vranges.push(top, bot); } return {left: rect.left - outer.left, right: rect.right - outer.left, top: i, bottom: null}; } function finishRect(rect) { rect.bottom = vranges[rect.top+1]; rect.top = vranges[rect.top]; } for (var i = 0, cur; i < measure.length; ++i) if (cur = measure[i]) { var node = cur, rect = null; // A widget might wrap, needs special care if (/\bCodeMirror-widget\b/.test(cur.className) && cur.getClientRects) { if (cur.firstChild.nodeType == 1) node = cur.firstChild; var rects = node.getClientRects(); if (rects.length > 1) { rect = data[i] = measureRect(rects[0]); rect.rightSide = measureRect(rects[rects.length - 1]); } } if (!rect) rect = data[i] = measureRect(getRect(node)); if (cur.measureRight) rect.right = getRect(cur.measureRight).left; if (cur.leftSide) rect.leftSide = measureRect(getRect(cur.leftSide)); } removeChildren(cm.display.measure); for (var i = 0, cur; i < data.length; ++i) if (cur = data[i]) { finishRect(cur); if (cur.leftSide) finishRect(cur.leftSide); if (cur.rightSide) finishRect(cur.rightSide); } return data; } function crudelyMeasureLine(cm, line) { var copy = new Line(line.text.slice(0, 100), null); if (line.textClass) copy.textClass = line.textClass; var measure = measureLineInner(cm, copy); var left = measureChar(cm, copy, 0, measure, "left"); var right = measureChar(cm, copy, 99, measure, "right"); return {crude: true, top: left.top, left: left.left, bottom: left.bottom, width: (right.right - left.left) / 100}; } function measureLineWidth(cm, line) { var hasBadSpan = false; if (line.markedSpans) for (var i = 0; i < line.markedSpans; ++i) { var sp = line.markedSpans[i]; if (sp.collapsed && (sp.to == null || sp.to == line.text.length)) hasBadSpan = true; } var cached = !hasBadSpan && findCachedMeasurement(cm, line); if (cached || line.text.length >= cm.options.crudeMeasuringFrom) return measureChar(cm, line, line.text.length, cached && cached.measure, "right").right; var pre = buildLineContent(cm, line, null, true).pre; var end = pre.appendChild(zeroWidthElement(cm.display.measure)); removeChildrenAndAdd(cm.display.measure, pre); return getRect(end).right - getRect(cm.display.lineDiv).left; } function clearCaches(cm) { cm.display.measureLineCache.length = cm.display.measureLineCachePos = 0; cm.display.cachedCharWidth = cm.display.cachedTextHeight = null; if (!cm.options.lineWrapping) cm.display.maxLineChanged = true; cm.display.lineNumChars = null; } function pageScrollX() { return window.pageXOffset || (document.documentElement || document.body).scrollLeft; } function pageScrollY() { return window.pageYOffset || (document.documentElement || document.body).scrollTop; } // Context is one of "line", "div" (display.lineDiv), "local"/null (editor), or "page" function intoCoordSystem(cm, lineObj, rect, context) { if (lineObj.widgets) for (var i = 0; i < lineObj.widgets.length; ++i) if (lineObj.widgets[i].above) { var size = widgetHeight(lineObj.widgets[i]); rect.top += size; rect.bottom += size; } if (context == "line") return rect; if (!context) context = "local"; var yOff = heightAtLine(cm, lineObj); if (context == "local") yOff += paddingTop(cm.display); else yOff -= cm.display.viewOffset; if (context == "page" || context == "window") { var lOff = getRect(cm.display.lineSpace); yOff += lOff.top + (context == "window" ? 0 : pageScrollY()); var xOff = lOff.left + (context == "window" ? 0 : pageScrollX()); rect.left += xOff; rect.right += xOff; } rect.top += yOff; rect.bottom += yOff; return rect; } // Context may be "window", "page", "div", or "local"/null // Result is in "div" coords function fromCoordSystem(cm, coords, context) { if (context == "div") return coords; var left = coords.left, top = coords.top; // First move into "page" coordinate system if (context == "page") { left -= pageScrollX(); top -= pageScrollY(); } else if (context == "local" || !context) { var localBox = getRect(cm.display.sizer); left += localBox.left; top += localBox.top; } var lineSpaceBox = getRect(cm.display.lineSpace); return {left: left - lineSpaceBox.left, top: top - lineSpaceBox.top}; } function charCoords(cm, pos, context, lineObj, bias) { if (!lineObj) lineObj = getLine(cm.doc, pos.line); return intoCoordSystem(cm, lineObj, measureChar(cm, lineObj, pos.ch, null, bias), context); } function cursorCoords(cm, pos, context, lineObj, measurement) { lineObj = lineObj || getLine(cm.doc, pos.line); if (!measurement) measurement = measureLine(cm, lineObj); function get(ch, right) { var m = measureChar(cm, lineObj, ch, measurement, right ? "right" : "left"); if (right) m.left = m.right; else m.right = m.left; return intoCoordSystem(cm, lineObj, m, context); } function getBidi(ch, partPos) { var part = order[partPos], right = part.level % 2; if (ch == bidiLeft(part) && partPos && part.level < order[partPos - 1].level) { part = order[--partPos]; ch = bidiRight(part) - (part.level % 2 ? 0 : 1); right = true; } else if (ch == bidiRight(part) && partPos < order.length - 1 && part.level < order[partPos + 1].level) { part = order[++partPos]; ch = bidiLeft(part) - part.level % 2; right = false; } if (right && ch == part.to && ch > part.from) return get(ch - 1); return get(ch, right); } var order = getOrder(lineObj), ch = pos.ch; if (!order) return get(ch); var partPos = getBidiPartAt(order, ch); var val = getBidi(ch, partPos); if (bidiOther != null) val.other = getBidi(ch, bidiOther); return val; } function PosWithInfo(line, ch, outside, xRel) { var pos = new Pos(line, ch); pos.xRel = xRel; if (outside) pos.outside = true; return pos; } // Coords must be lineSpace-local function coordsChar(cm, x, y) { var doc = cm.doc; y += cm.display.viewOffset; if (y < 0) return PosWithInfo(doc.first, 0, true, -1); var lineNo = lineAtHeight(doc, y), last = doc.first + doc.size - 1; if (lineNo > last) return PosWithInfo(doc.first + doc.size - 1, getLine(doc, last).text.length, true, 1); if (x < 0) x = 0; for (;;) { var lineObj = getLine(doc, lineNo); var found = coordsCharInner(cm, lineObj, lineNo, x, y); var merged = collapsedSpanAtEnd(lineObj); var mergedPos = merged && merged.find(); if (merged && (found.ch > mergedPos.from.ch || found.ch == mergedPos.from.ch && found.xRel > 0)) lineNo = mergedPos.to.line; else return found; } } function coordsCharInner(cm, lineObj, lineNo, x, y) { var innerOff = y - heightAtLine(cm, lineObj); var wrongLine = false, adjust = 2 * cm.display.wrapper.clientWidth; var measurement = measureLine(cm, lineObj); function getX(ch) { var sp = cursorCoords(cm, Pos(lineNo, ch), "line", lineObj, measurement); wrongLine = true; if (innerOff > sp.bottom) return sp.left - adjust; else if (innerOff < sp.top) return sp.left + adjust; else wrongLine = false; return sp.left; } var bidi = getOrder(lineObj), dist = lineObj.text.length; var from = lineLeft(lineObj), to = lineRight(lineObj); var fromX = getX(from), fromOutside = wrongLine, toX = getX(to), toOutside = wrongLine; if (x > toX) return PosWithInfo(lineNo, to, toOutside, 1); // Do a binary search between these bounds. for (;;) { if (bidi ? to == from || to == moveVisually(lineObj, from, 1) : to - from <= 1) { var ch = x < fromX || x - fromX <= toX - x ? from : to; var xDiff = x - (ch == from ? fromX : toX); while (isExtendingChar.test(lineObj.text.charAt(ch))) ++ch; var pos = PosWithInfo(lineNo, ch, ch == from ? fromOutside : toOutside, xDiff < 0 ? -1 : xDiff ? 1 : 0); return pos; } var step = Math.ceil(dist / 2), middle = from + step; if (bidi) { middle = from; for (var i = 0; i < step; ++i) middle = moveVisually(lineObj, middle, 1); } var middleX = getX(middle); if (middleX > x) {to = middle; toX = middleX; if (toOutside = wrongLine) toX += 1000; dist = step;} else {from = middle; fromX = middleX; fromOutside = wrongLine; dist -= step;} } } var measureText; function textHeight(display) { if (display.cachedTextHeight != null) return display.cachedTextHeight; if (measureText == null) { measureText = elt("pre"); // Measure a bunch of lines, for browsers that compute // fractional heights. for (var i = 0; i < 49; ++i) { measureText.appendChild(document.createTextNode("x")); measureText.appendChild(elt("br")); } measureText.appendChild(document.createTextNode("x")); } removeChildrenAndAdd(display.measure, measureText); var height = measureText.offsetHeight / 50; if (height > 3) display.cachedTextHeight = height; removeChildren(display.measure); return height || 1; } function charWidth(display) { if (display.cachedCharWidth != null) return display.cachedCharWidth; var anchor = elt("span", "x"); var pre = elt("pre", [anchor]); removeChildrenAndAdd(display.measure, pre); var width = anchor.offsetWidth; if (width > 2) display.cachedCharWidth = width; return width || 10; } // OPERATIONS // Operations are used to wrap changes in such a way that each // change won't have to update the cursor and display (which would // be awkward, slow, and error-prone), but instead updates are // batched and then all combined and executed at once. var nextOpId = 0; function startOperation(cm) { cm.curOp = { // An array of ranges of lines that have to be updated. See // updateDisplay. changes: [], forceUpdate: false, updateInput: null, userSelChange: null, textChanged: null, selectionChanged: false, cursorActivity: false, updateMaxLine: false, updateScrollPos: false, id: ++nextOpId }; if (!delayedCallbackDepth++) delayedCallbacks = []; } function endOperation(cm) { var op = cm.curOp, doc = cm.doc, display = cm.display; cm.curOp = null; if (op.updateMaxLine) computeMaxLength(cm); if (display.maxLineChanged && !cm.options.lineWrapping && display.maxLine) { var width = measureLineWidth(cm, display.maxLine); display.sizer.style.minWidth = Math.max(0, width + 3 + scrollerCutOff) + "px"; display.maxLineChanged = false; var maxScrollLeft = Math.max(0, display.sizer.offsetLeft + display.sizer.offsetWidth - display.scroller.clientWidth); if (maxScrollLeft < doc.scrollLeft && !op.updateScrollPos) setScrollLeft(cm, Math.min(display.scroller.scrollLeft, maxScrollLeft), true); } var newScrollPos, updated; if (op.updateScrollPos) { newScrollPos = op.updateScrollPos; } else if (op.selectionChanged && display.scroller.clientHeight) { // don't rescroll if not visible var coords = cursorCoords(cm, doc.sel.head); newScrollPos = calculateScrollPos(cm, coords.left, coords.top, coords.left, coords.bottom); } if (op.changes.length || op.forceUpdate || newScrollPos && newScrollPos.scrollTop != null) { updated = updateDisplay(cm, op.changes, newScrollPos && newScrollPos.scrollTop, op.forceUpdate); if (cm.display.scroller.offsetHeight) cm.doc.scrollTop = cm.display.scroller.scrollTop; } if (!updated && op.selectionChanged) updateSelection(cm); if (op.updateScrollPos) { display.scroller.scrollTop = display.scrollbarV.scrollTop = doc.scrollTop = newScrollPos.scrollTop; display.scroller.scrollLeft = display.scrollbarH.scrollLeft = doc.scrollLeft = newScrollPos.scrollLeft; alignHorizontally(cm); if (op.scrollToPos) scrollPosIntoView(cm, clipPos(cm.doc, op.scrollToPos), op.scrollToPosMargin); } else if (newScrollPos) { scrollCursorIntoView(cm); } if (op.selectionChanged) restartBlink(cm); if (cm.state.focused && op.updateInput) resetInput(cm, op.userSelChange); var hidden = op.maybeHiddenMarkers, unhidden = op.maybeUnhiddenMarkers; if (hidden) for (var i = 0; i < hidden.length; ++i) if (!hidden[i].lines.length) signal(hidden[i], "hide"); if (unhidden) for (var i = 0; i < unhidden.length; ++i) if (unhidden[i].lines.length) signal(unhidden[i], "unhide"); var delayed; if (!--delayedCallbackDepth) { delayed = delayedCallbacks; delayedCallbacks = null; } if (op.textChanged) signal(cm, "change", cm, op.textChanged); if (op.cursorActivity) signal(cm, "cursorActivity", cm); if (delayed) for (var i = 0; i < delayed.length; ++i) delayed[i](); } // Wraps a function in an operation. Returns the wrapped function. function operation(cm1, f) { return function() { var cm = cm1 || this, withOp = !cm.curOp; if (withOp) startOperation(cm); try { var result = f.apply(cm, arguments); } finally { if (withOp) endOperation(cm); } return result; }; } function docOperation(f) { return function() { var withOp = this.cm && !this.cm.curOp, result; if (withOp) startOperation(this.cm); try { result = f.apply(this, arguments); } finally { if (withOp) endOperation(this.cm); } return result; }; } function runInOp(cm, f) { var withOp = !cm.curOp, result; if (withOp) startOperation(cm); try { result = f(); } finally { if (withOp) endOperation(cm); } return result; } function regChange(cm, from, to, lendiff) { if (from == null) from = cm.doc.first; if (to == null) to = cm.doc.first + cm.doc.size; cm.curOp.changes.push({from: from, to: to, diff: lendiff}); } // INPUT HANDLING function slowPoll(cm) { if (cm.display.pollingFast) return; cm.display.poll.set(cm.options.pollInterval, function() { readInput(cm); if (cm.state.focused) slowPoll(cm); }); } function fastPoll(cm) { var missed = false; cm.display.pollingFast = true; function p() { var changed = readInput(cm); if (!changed && !missed) {missed = true; cm.display.poll.set(60, p);} else {cm.display.pollingFast = false; slowPoll(cm);} } cm.display.poll.set(20, p); } // prevInput is a hack to work with IME. If we reset the textarea // on every change, that breaks IME. So we look for changes // compared to the previous content instead. (Modern browsers have // events that indicate IME taking place, but these are not widely // supported or compatible enough yet to rely on.) function readInput(cm) { var input = cm.display.input, prevInput = cm.display.prevInput, doc = cm.doc, sel = doc.sel; if (!cm.state.focused || hasSelection(input) || isReadOnly(cm) || cm.state.disableInput) return false; if (cm.state.pasteIncoming && cm.state.fakedLastChar) { input.value = input.value.substring(0, input.value.length - 1); cm.state.fakedLastChar = false; } var text = input.value; if (text == prevInput && posEq(sel.from, sel.to)) return false; if (ie && !ie_lt9 && cm.display.inputHasSelection === text) { resetInput(cm, true); return false; } var withOp = !cm.curOp; if (withOp) startOperation(cm); sel.shift = false; var same = 0, l = Math.min(prevInput.length, text.length); while (same < l && prevInput.charCodeAt(same) == text.charCodeAt(same)) ++same; var from = sel.from, to = sel.to; if (same < prevInput.length) from = Pos(from.line, from.ch - (prevInput.length - same)); else if (cm.state.overwrite && posEq(from, to) && !cm.state.pasteIncoming) to = Pos(to.line, Math.min(getLine(doc, to.line).text.length, to.ch + (text.length - same))); var updateInput = cm.curOp.updateInput; var changeEvent = {from: from, to: to, text: splitLines(text.slice(same)), origin: cm.state.pasteIncoming ? "paste" : "+input"}; makeChange(cm.doc, changeEvent, "end"); cm.curOp.updateInput = updateInput; signalLater(cm, "inputRead", cm, changeEvent); if (text.length > 1000 || text.indexOf("\n") > -1) input.value = cm.display.prevInput = ""; else cm.display.prevInput = text; if (withOp) endOperation(cm); cm.state.pasteIncoming = false; return true; } function resetInput(cm, user) { var minimal, selected, doc = cm.doc; if (!posEq(doc.sel.from, doc.sel.to)) { cm.display.prevInput = ""; minimal = hasCopyEvent && (doc.sel.to.line - doc.sel.from.line > 100 || (selected = cm.getSelection()).length > 1000); var content = minimal ? "-" : selected || cm.getSelection(); cm.display.input.value = content; if (cm.state.focused) selectInput(cm.display.input); if (ie && !ie_lt9) cm.display.inputHasSelection = content; } else if (user) { cm.display.prevInput = cm.display.input.value = ""; if (ie && !ie_lt9) cm.display.inputHasSelection = null; } cm.display.inaccurateSelection = minimal; } function focusInput(cm) { if (cm.options.readOnly != "nocursor" && (!mobile || document.activeElement != cm.display.input)) cm.display.input.focus(); } function isReadOnly(cm) { return cm.options.readOnly || cm.doc.cantEdit; } // EVENT HANDLERS function registerEventHandlers(cm) { var d = cm.display; on(d.scroller, "mousedown", operation(cm, onMouseDown)); if (ie) on(d.scroller, "dblclick", operation(cm, function(e) { if (signalDOMEvent(cm, e)) return; var pos = posFromMouse(cm, e); if (!pos || clickInGutter(cm, e) || eventInWidget(cm.display, e)) return; e_preventDefault(e); var word = findWordAt(getLine(cm.doc, pos.line).text, pos); extendSelection(cm.doc, word.from, word.to); })); else on(d.scroller, "dblclick", function(e) { signalDOMEvent(cm, e) || e_preventDefault(e); }); on(d.lineSpace, "selectstart", function(e) { if (!eventInWidget(d, e)) e_preventDefault(e); }); // Gecko browsers fire contextmenu *after* opening the menu, at // which point we can't mess with it anymore. Context menu is // handled in onMouseDown for Gecko. if (!captureMiddleClick) on(d.scroller, "contextmenu", function(e) {onContextMenu(cm, e);}); on(d.scroller, "scroll", function() { if (d.scroller.clientHeight) { setScrollTop(cm, d.scroller.scrollTop); setScrollLeft(cm, d.scroller.scrollLeft, true); signal(cm, "scroll", cm); } }); on(d.scrollbarV, "scroll", function() { if (d.scroller.clientHeight) setScrollTop(cm, d.scrollbarV.scrollTop); }); on(d.scrollbarH, "scroll", function() { if (d.scroller.clientHeight) setScrollLeft(cm, d.scrollbarH.scrollLeft); }); on(d.scroller, "mousewheel", function(e){onScrollWheel(cm, e);}); on(d.scroller, "DOMMouseScroll", function(e){onScrollWheel(cm, e);}); function reFocus() { if (cm.state.focused) setTimeout(bind(focusInput, cm), 0); } on(d.scrollbarH, "mousedown", reFocus); on(d.scrollbarV, "mousedown", reFocus); // Prevent wrapper from ever scrolling on(d.wrapper, "scroll", function() { d.wrapper.scrollTop = d.wrapper.scrollLeft = 0; }); var resizeTimer; function onResize() { if (resizeTimer == null) resizeTimer = setTimeout(function() { resizeTimer = null; // Might be a text scaling operation, clear size caches. d.cachedCharWidth = d.cachedTextHeight = knownScrollbarWidth = null; clearCaches(cm); runInOp(cm, bind(regChange, cm)); }, 100); } on(window, "resize", onResize); // Above handler holds on to the editor and its data structures. // Here we poll to unregister it when the editor is no longer in // the document, so that it can be garbage-collected. function unregister() { for (var p = d.wrapper.parentNode; p && p != document.body; p = p.parentNode) {} if (p) setTimeout(unregister, 5000); else off(window, "resize", onResize); } setTimeout(unregister, 5000); on(d.input, "keyup", operation(cm, function(e) { if (signalDOMEvent(cm, e) || cm.options.onKeyEvent && cm.options.onKeyEvent(cm, addStop(e))) return; if (e.keyCode == 16) cm.doc.sel.shift = false; })); on(d.input, "input", function() { if (ie && !ie_lt9 && cm.display.inputHasSelection) cm.display.inputHasSelection = null; fastPoll(cm); }); on(d.input, "keydown", operation(cm, onKeyDown)); on(d.input, "keypress", operation(cm, onKeyPress)); on(d.input, "focus", bind(onFocus, cm)); on(d.input, "blur", bind(onBlur, cm)); function drag_(e) { if (signalDOMEvent(cm, e) || cm.options.onDragEvent && cm.options.onDragEvent(cm, addStop(e))) return; e_stop(e); } if (cm.options.dragDrop) { on(d.scroller, "dragstart", function(e){onDragStart(cm, e);}); on(d.scroller, "dragenter", drag_); on(d.scroller, "dragover", drag_); on(d.scroller, "drop", operation(cm, onDrop)); } on(d.scroller, "paste", function(e) { if (eventInWidget(d, e)) return; focusInput(cm); fastPoll(cm); }); on(d.input, "paste", function() { // Workaround for webkit bug https://bugs.webkit.org/show_bug.cgi?id=90206 // Add a char to the end of textarea before paste occur so that // selection doesn't span to the end of textarea. if (webkit && !cm.state.fakedLastChar && !(new Date - cm.state.lastMiddleDown < 200)) { var start = d.input.selectionStart, end = d.input.selectionEnd; d.input.value += "$"; d.input.selectionStart = start; d.input.selectionEnd = end; cm.state.fakedLastChar = true; } cm.state.pasteIncoming = true; fastPoll(cm); }); function prepareCopy() { if (d.inaccurateSelection) { d.prevInput = ""; d.inaccurateSelection = false; d.input.value = cm.getSelection(); selectInput(d.input); } } on(d.input, "cut", prepareCopy); on(d.input, "copy", prepareCopy); // Needed to handle Tab key in KHTML if (khtml) on(d.sizer, "mouseup", function() { if (document.activeElement == d.input) d.input.blur(); focusInput(cm); }); } function eventInWidget(display, e) { for (var n = e_target(e); n != display.wrapper; n = n.parentNode) { if (!n || n.ignoreEvents || n.parentNode == display.sizer && n != display.mover) return true; } } function posFromMouse(cm, e, liberal) { var display = cm.display; if (!liberal) { var target = e_target(e); if (target == display.scrollbarH || target == display.scrollbarH.firstChild || target == display.scrollbarV || target == display.scrollbarV.firstChild || target == display.scrollbarFiller || target == display.gutterFiller) return null; } var x, y, space = getRect(display.lineSpace); // Fails unpredictably on IE[67] when mouse is dragged around quickly. try { x = e.clientX; y = e.clientY; } catch (e) { return null; } return coordsChar(cm, x - space.left, y - space.top); } var lastClick, lastDoubleClick; function onMouseDown(e) { if (signalDOMEvent(this, e)) return; var cm = this, display = cm.display, doc = cm.doc, sel = doc.sel; sel.shift = e.shiftKey; if (eventInWidget(display, e)) { if (!webkit) { display.scroller.draggable = false; setTimeout(function(){display.scroller.draggable = true;}, 100); } return; } if (clickInGutter(cm, e)) return; var start = posFromMouse(cm, e); switch (e_button(e)) { case 3: if (captureMiddleClick) onContextMenu.call(cm, cm, e); return; case 2: if (webkit) cm.state.lastMiddleDown = +new Date; if (start) extendSelection(cm.doc, start); setTimeout(bind(focusInput, cm), 20); e_preventDefault(e); return; } // For button 1, if it was clicked inside the editor // (posFromMouse returning non-null), we have to adjust the // selection. if (!start) {if (e_target(e) == display.scroller) e_preventDefault(e); return;} if (!cm.state.focused) onFocus(cm); var now = +new Date, type = "single"; if (lastDoubleClick && lastDoubleClick.time > now - 400 && posEq(lastDoubleClick.pos, start)) { type = "triple"; e_preventDefault(e); setTimeout(bind(focusInput, cm), 20); selectLine(cm, start.line); } else if (lastClick && lastClick.time > now - 400 && posEq(lastClick.pos, start)) { type = "double"; lastDoubleClick = {time: now, pos: start}; e_preventDefault(e); var word = findWordAt(getLine(doc, start.line).text, start); extendSelection(cm.doc, word.from, word.to); } else { lastClick = {time: now, pos: start}; } var last = start; if (cm.options.dragDrop && dragAndDrop && !isReadOnly(cm) && !posEq(sel.from, sel.to) && !posLess(start, sel.from) && !posLess(sel.to, start) && type == "single") { var dragEnd = operation(cm, function(e2) { if (webkit) display.scroller.draggable = false; cm.state.draggingText = false; off(document, "mouseup", dragEnd); off(display.scroller, "drop", dragEnd); if (Math.abs(e.clientX - e2.clientX) + Math.abs(e.clientY - e2.clientY) < 10) { e_preventDefault(e2); extendSelection(cm.doc, start); focusInput(cm); } }); // Let the drag handler handle this. if (webkit) display.scroller.draggable = true; cm.state.draggingText = dragEnd; // IE's approach to draggable if (display.scroller.dragDrop) display.scroller.dragDrop(); on(document, "mouseup", dragEnd); on(display.scroller, "drop", dragEnd); return; } e_preventDefault(e); if (type == "single") extendSelection(cm.doc, clipPos(doc, start)); var startstart = sel.from, startend = sel.to, lastPos = start; function doSelect(cur) { if (posEq(lastPos, cur)) return; lastPos = cur; if (type == "single") { extendSelection(cm.doc, clipPos(doc, start), cur); return; } startstart = clipPos(doc, startstart); startend = clipPos(doc, startend); if (type == "double") { var word = findWordAt(getLine(doc, cur.line).text, cur); if (posLess(cur, startstart)) extendSelection(cm.doc, word.from, startend); else extendSelection(cm.doc, startstart, word.to); } else if (type == "triple") { if (posLess(cur, startstart)) extendSelection(cm.doc, startend, clipPos(doc, Pos(cur.line, 0))); else extendSelection(cm.doc, startstart, clipPos(doc, Pos(cur.line + 1, 0))); } } var editorSize = getRect(display.wrapper); // Used to ensure timeout re-tries don't fire when another extend // happened in the meantime (clearTimeout isn't reliable -- at // least on Chrome, the timeouts still happen even when cleared, // if the clear happens after their scheduled firing time). var counter = 0; function extend(e) { var curCount = ++counter; var cur = posFromMouse(cm, e, true); if (!cur) return; if (!posEq(cur, last)) { if (!cm.state.focused) onFocus(cm); last = cur; doSelect(cur); var visible = visibleLines(display, doc); if (cur.line >= visible.to || cur.line < visible.from) setTimeout(operation(cm, function(){if (counter == curCount) extend(e);}), 150); } else { var outside = e.clientY < editorSize.top ? -20 : e.clientY > editorSize.bottom ? 20 : 0; if (outside) setTimeout(operation(cm, function() { if (counter != curCount) return; display.scroller.scrollTop += outside; extend(e); }), 50); } } function done(e) { counter = Infinity; e_preventDefault(e); focusInput(cm); off(document, "mousemove", move); off(document, "mouseup", up); } var move = operation(cm, function(e) { if (!ie && !e_button(e)) done(e); else extend(e); }); var up = operation(cm, done); on(document, "mousemove", move); on(document, "mouseup", up); } function gutterEvent(cm, e, type, prevent, signalfn) { try { var mX = e.clientX, mY = e.clientY; } catch(e) { return false; } if (mX >= Math.floor(getRect(cm.display.gutters).right)) return false; if (prevent) e_preventDefault(e); var display = cm.display; var lineBox = getRect(display.lineDiv); if (mY > lineBox.bottom || !hasHandler(cm, type)) return e_defaultPrevented(e); mY -= lineBox.top - display.viewOffset; for (var i = 0; i < cm.options.gutters.length; ++i) { var g = display.gutters.childNodes[i]; if (g && getRect(g).right >= mX) { var line = lineAtHeight(cm.doc, mY); var gutter = cm.options.gutters[i]; signalfn(cm, type, cm, line, gutter, e); return e_defaultPrevented(e); } } } function contextMenuInGutter(cm, e) { if (!hasHandler(cm, "gutterContextMenu")) return false; return gutterEvent(cm, e, "gutterContextMenu", false, signal); } function clickInGutter(cm, e) { return gutterEvent(cm, e, "gutterClick", true, signalLater); } // Kludge to work around strange IE behavior where it'll sometimes // re-fire a series of drag-related events right after the drop (#1551) var lastDrop = 0; function onDrop(e) { var cm = this; if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e) || (cm.options.onDragEvent && cm.options.onDragEvent(cm, addStop(e)))) return; e_preventDefault(e); if (ie) lastDrop = +new Date; var pos = posFromMouse(cm, e, true), files = e.dataTransfer.files; if (!pos || isReadOnly(cm)) return; if (files && files.length && window.FileReader && window.File) { var n = files.length, text = Array(n), read = 0; var loadFile = function(file, i) { var reader = new FileReader; reader.onload = function() { text[i] = reader.result; if (++read == n) { pos = clipPos(cm.doc, pos); makeChange(cm.doc, {from: pos, to: pos, text: splitLines(text.join("\n")), origin: "paste"}, "around"); } }; reader.readAsText(file); }; for (var i = 0; i < n; ++i) loadFile(files[i], i); } else { // Don't do a replace if the drop happened inside of the selected text. if (cm.state.draggingText && !(posLess(pos, cm.doc.sel.from) || posLess(cm.doc.sel.to, pos))) { cm.state.draggingText(e); // Ensure the editor is re-focused setTimeout(bind(focusInput, cm), 20); return; } try { var text = e.dataTransfer.getData("Text"); if (text) { var curFrom = cm.doc.sel.from, curTo = cm.doc.sel.to; setSelection(cm.doc, pos, pos); if (cm.state.draggingText) replaceRange(cm.doc, "", curFrom, curTo, "paste"); cm.replaceSelection(text, null, "paste"); focusInput(cm); onFocus(cm); } } catch(e){} } } function onDragStart(cm, e) { if (ie && (!cm.state.draggingText || +new Date - lastDrop < 100)) { e_stop(e); return; } if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e)) return; var txt = cm.getSelection(); e.dataTransfer.setData("Text", txt); // Use dummy image instead of default browsers image. // Recent Safari (~6.0.2) have a tendency to segfault when this happens, so we don't do it there. if (e.dataTransfer.setDragImage && !safari) { var img = elt("img", null, null, "position: fixed; left: 0; top: 0;"); img.src = "data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="; if (opera) { img.width = img.height = 1; cm.display.wrapper.appendChild(img); // Force a relayout, or Opera won't use our image for some obscure reason img._top = img.offsetTop; } e.dataTransfer.setDragImage(img, 0, 0); if (opera) img.parentNode.removeChild(img); } } function setScrollTop(cm, val) { if (Math.abs(cm.doc.scrollTop - val) < 2) return; cm.doc.scrollTop = val; if (!gecko) updateDisplay(cm, [], val); if (cm.display.scroller.scrollTop != val) cm.display.scroller.scrollTop = val; if (cm.display.scrollbarV.scrollTop != val) cm.display.scrollbarV.scrollTop = val; if (gecko) updateDisplay(cm, []); startWorker(cm, 100); } function setScrollLeft(cm, val, isScroller) { if (isScroller ? val == cm.doc.scrollLeft : Math.abs(cm.doc.scrollLeft - val) < 2) return; val = Math.min(val, cm.display.scroller.scrollWidth - cm.display.scroller.clientWidth); cm.doc.scrollLeft = val; alignHorizontally(cm); if (cm.display.scroller.scrollLeft != val) cm.display.scroller.scrollLeft = val; if (cm.display.scrollbarH.scrollLeft != val) cm.display.scrollbarH.scrollLeft = val; } // Since the delta values reported on mouse wheel events are // unstandardized between browsers and even browser versions, and // generally horribly unpredictable, this code starts by measuring // the scroll effect that the first few mouse wheel events have, // and, from that, detects the way it can convert deltas to pixel // offsets afterwards. // // The reason we want to know the amount a wheel event will scroll // is that it gives us a chance to update the display before the // actual scrolling happens, reducing flickering. var wheelSamples = 0, wheelPixelsPerUnit = null; // Fill in a browser-detected starting value on browsers where we // know one. These don't have to be accurate -- the result of them // being wrong would just be a slight flicker on the first wheel // scroll (if it is large enough). if (ie) wheelPixelsPerUnit = -.53; else if (gecko) wheelPixelsPerUnit = 15; else if (chrome) wheelPixelsPerUnit = -.7; else if (safari) wheelPixelsPerUnit = -1/3; function onScrollWheel(cm, e) { var dx = e.wheelDeltaX, dy = e.wheelDeltaY; if (dx == null && e.detail && e.axis == e.HORIZONTAL_AXIS) dx = e.detail; if (dy == null && e.detail && e.axis == e.VERTICAL_AXIS) dy = e.detail; else if (dy == null) dy = e.wheelDelta; var display = cm.display, scroll = display.scroller; // Quit if there's nothing to scroll here if (!(dx && scroll.scrollWidth > scroll.clientWidth || dy && scroll.scrollHeight > scroll.clientHeight)) return; // Webkit browsers on OS X abort momentum scrolls when the target // of the scroll event is removed from the scrollable element. // This hack (see related code in patchDisplay) makes sure the // element is kept around. if (dy && mac && webkit) { for (var cur = e.target; cur != scroll; cur = cur.parentNode) { if (cur.lineObj) { cm.display.currentWheelTarget = cur; break; } } } // On some browsers, horizontal scrolling will cause redraws to // happen before the gutter has been realigned, causing it to // wriggle around in a most unseemly way. When we have an // estimated pixels/delta value, we just handle horizontal // scrolling entirely here. It'll be slightly off from native, but // better than glitching out. if (dx && !gecko && !opera && wheelPixelsPerUnit != null) { if (dy) setScrollTop(cm, Math.max(0, Math.min(scroll.scrollTop + dy * wheelPixelsPerUnit, scroll.scrollHeight - scroll.clientHeight))); setScrollLeft(cm, Math.max(0, Math.min(scroll.scrollLeft + dx * wheelPixelsPerUnit, scroll.scrollWidth - scroll.clientWidth))); e_preventDefault(e); display.wheelStartX = null; // Abort measurement, if in progress return; } if (dy && wheelPixelsPerUnit != null) { var pixels = dy * wheelPixelsPerUnit; var top = cm.doc.scrollTop, bot = top + display.wrapper.clientHeight; if (pixels < 0) top = Math.max(0, top + pixels - 50); else bot = Math.min(cm.doc.height, bot + pixels + 50); updateDisplay(cm, [], {top: top, bottom: bot}); } if (wheelSamples < 20) { if (display.wheelStartX == null) { display.wheelStartX = scroll.scrollLeft; display.wheelStartY = scroll.scrollTop; display.wheelDX = dx; display.wheelDY = dy; setTimeout(function() { if (display.wheelStartX == null) return; var movedX = scroll.scrollLeft - display.wheelStartX; var movedY = scroll.scrollTop - display.wheelStartY; var sample = (movedY && display.wheelDY && movedY / display.wheelDY) || (movedX && display.wheelDX && movedX / display.wheelDX); display.wheelStartX = display.wheelStartY = null; if (!sample) return; wheelPixelsPerUnit = (wheelPixelsPerUnit * wheelSamples + sample) / (wheelSamples + 1); ++wheelSamples; }, 200); } else { display.wheelDX += dx; display.wheelDY += dy; } } } function doHandleBinding(cm, bound, dropShift) { if (typeof bound == "string") { bound = commands[bound]; if (!bound) return false; } // Ensure previous input has been read, so that the handler sees a // consistent view of the document if (cm.display.pollingFast && readInput(cm)) cm.display.pollingFast = false; var doc = cm.doc, prevShift = doc.sel.shift, done = false; try { if (isReadOnly(cm)) cm.state.suppressEdits = true; if (dropShift) doc.sel.shift = false; done = bound(cm) != Pass; } finally { doc.sel.shift = prevShift; cm.state.suppressEdits = false; } return done; } function allKeyMaps(cm) { var maps = cm.state.keyMaps.slice(0); if (cm.options.extraKeys) maps.push(cm.options.extraKeys); maps.push(cm.options.keyMap); return maps; } var maybeTransition; function handleKeyBinding(cm, e) { // Handle auto keymap transitions var startMap = getKeyMap(cm.options.keyMap), next = startMap.auto; clearTimeout(maybeTransition); if (next && !isModifierKey(e)) maybeTransition = setTimeout(function() { if (getKeyMap(cm.options.keyMap) == startMap) { cm.options.keyMap = (next.call ? next.call(null, cm) : next); keyMapChanged(cm); } }, 50); var name = keyName(e, true), handled = false; if (!name) return false; var keymaps = allKeyMaps(cm); if (e.shiftKey) { // First try to resolve full name (including 'Shift-'). Failing // that, see if there is a cursor-motion command (starting with // 'go') bound to the keyname without 'Shift-'. handled = lookupKey("Shift-" + name, keymaps, function(b) {return doHandleBinding(cm, b, true);}) || lookupKey(name, keymaps, function(b) { if (typeof b == "string" ? /^go[A-Z]/.test(b) : b.motion) return doHandleBinding(cm, b); }); } else { handled = lookupKey(name, keymaps, function(b) { return doHandleBinding(cm, b); }); } if (handled) { e_preventDefault(e); restartBlink(cm); if (ie_lt9) { e.oldKeyCode = e.keyCode; e.keyCode = 0; } signalLater(cm, "keyHandled", cm, name, e); } return handled; } function handleCharBinding(cm, e, ch) { var handled = lookupKey("'" + ch + "'", allKeyMaps(cm), function(b) { return doHandleBinding(cm, b, true); }); if (handled) { e_preventDefault(e); restartBlink(cm); signalLater(cm, "keyHandled", cm, "'" + ch + "'", e); } return handled; } var lastStoppedKey = null; function onKeyDown(e) { var cm = this; if (!cm.state.focused) onFocus(cm); if (signalDOMEvent(cm, e) || cm.options.onKeyEvent && cm.options.onKeyEvent(cm, addStop(e))) return; if (ie && e.keyCode == 27) e.returnValue = false; var code = e.keyCode; // IE does strange things with escape. cm.doc.sel.shift = code == 16 || e.shiftKey; // First give onKeyEvent option a chance to handle this. var handled = handleKeyBinding(cm, e); if (opera) { lastStoppedKey = handled ? code : null; // Opera has no cut event... we try to at least catch the key combo if (!handled && code == 88 && !hasCopyEvent && (mac ? e.metaKey : e.ctrlKey)) cm.replaceSelection(""); } } function onKeyPress(e) { var cm = this; if (signalDOMEvent(cm, e) || cm.options.onKeyEvent && cm.options.onKeyEvent(cm, addStop(e))) return; var keyCode = e.keyCode, charCode = e.charCode; if (opera && keyCode == lastStoppedKey) {lastStoppedKey = null; e_preventDefault(e); return;} if (((opera && (!e.which || e.which < 10)) || khtml) && handleKeyBinding(cm, e)) return; var ch = String.fromCharCode(charCode == null ? keyCode : charCode); if (this.options.electricChars && this.doc.mode.electricChars && this.options.smartIndent && !isReadOnly(this) && this.doc.mode.electricChars.indexOf(ch) > -1) setTimeout(operation(cm, function() {indentLine(cm, cm.doc.sel.to.line, "smart");}), 75); if (handleCharBinding(cm, e, ch)) return; if (ie && !ie_lt9) cm.display.inputHasSelection = null; fastPoll(cm); } function onFocus(cm) { if (cm.options.readOnly == "nocursor") return; if (!cm.state.focused) { signal(cm, "focus", cm); cm.state.focused = true; if (cm.display.wrapper.className.search(/\bCodeMirror-focused\b/) == -1) cm.display.wrapper.className += " CodeMirror-focused"; if (!cm.curOp) { resetInput(cm, true); if (webkit) setTimeout(bind(resetInput, cm, true), 0); // Issue #1730 } } slowPoll(cm); restartBlink(cm); } function onBlur(cm) { if (cm.state.focused) { signal(cm, "blur", cm); cm.state.focused = false; cm.display.wrapper.className = cm.display.wrapper.className.replace(" CodeMirror-focused", ""); } clearInterval(cm.display.blinker); setTimeout(function() {if (!cm.state.focused) cm.doc.sel.shift = false;}, 150); } var detectingSelectAll; function onContextMenu(cm, e) { if (signalDOMEvent(cm, e, "contextmenu")) return; var display = cm.display, sel = cm.doc.sel; if (eventInWidget(display, e) || contextMenuInGutter(cm, e)) return; var pos = posFromMouse(cm, e), scrollPos = display.scroller.scrollTop; if (!pos || opera) return; // Opera is difficult. if (posEq(sel.from, sel.to) || posLess(pos, sel.from) || !posLess(pos, sel.to)) operation(cm, setSelection)(cm.doc, pos, pos); var oldCSS = display.input.style.cssText; display.inputDiv.style.position = "absolute"; display.input.style.cssText = "position: fixed; width: 30px; height: 30px; top: " + (e.clientY - 5) + "px; left: " + (e.clientX - 5) + "px; z-index: 1000; background: white; outline: none;" + "border-width: 0; outline: none; overflow: hidden; opacity: .05; -ms-opacity: .05; filter: alpha(opacity=5);"; focusInput(cm); resetInput(cm, true); // Adds "Select all" to context menu in FF if (posEq(sel.from, sel.to)) display.input.value = display.prevInput = " "; function prepareSelectAllHack() { if (display.input.selectionStart != null) { var extval = display.input.value = "\u200b" + (posEq(sel.from, sel.to) ? "" : display.input.value); display.prevInput = "\u200b"; display.input.selectionStart = 1; display.input.selectionEnd = extval.length; } } function rehide() { display.inputDiv.style.position = "relative"; display.input.style.cssText = oldCSS; if (ie_lt9) display.scrollbarV.scrollTop = display.scroller.scrollTop = scrollPos; slowPoll(cm); // Try to detect the user choosing select-all if (display.input.selectionStart != null) { if (!ie || ie_lt9) prepareSelectAllHack(); clearTimeout(detectingSelectAll); var i = 0, poll = function(){ if (display.prevInput == " " && display.input.selectionStart == 0) operation(cm, commands.selectAll)(cm); else if (i++ < 10) detectingSelectAll = setTimeout(poll, 500); else resetInput(cm); }; detectingSelectAll = setTimeout(poll, 200); } } if (ie && !ie_lt9) prepareSelectAllHack(); if (captureMiddleClick) { e_stop(e); var mouseup = function() { off(window, "mouseup", mouseup); setTimeout(rehide, 20); }; on(window, "mouseup", mouseup); } else { setTimeout(rehide, 50); } } // UPDATING var changeEnd = CodeMirror.changeEnd = function(change) { if (!change.text) return change.to; return Pos(change.from.line + change.text.length - 1, lst(change.text).length + (change.text.length == 1 ? change.from.ch : 0)); }; // Make sure a position will be valid after the given change. function clipPostChange(doc, change, pos) { if (!posLess(change.from, pos)) return clipPos(doc, pos); var diff = (change.text.length - 1) - (change.to.line - change.from.line); if (pos.line > change.to.line + diff) { var preLine = pos.line - diff, lastLine = doc.first + doc.size - 1; if (preLine > lastLine) return Pos(lastLine, getLine(doc, lastLine).text.length); return clipToLen(pos, getLine(doc, preLine).text.length); } if (pos.line == change.to.line + diff) return clipToLen(pos, lst(change.text).length + (change.text.length == 1 ? change.from.ch : 0) + getLine(doc, change.to.line).text.length - change.to.ch); var inside = pos.line - change.from.line; return clipToLen(pos, change.text[inside].length + (inside ? 0 : change.from.ch)); } // Hint can be null|"end"|"start"|"around"|{anchor,head} function computeSelAfterChange(doc, change, hint) { if (hint && typeof hint == "object") // Assumed to be {anchor, head} object return {anchor: clipPostChange(doc, change, hint.anchor), head: clipPostChange(doc, change, hint.head)}; if (hint == "start") return {anchor: change.from, head: change.from}; var end = changeEnd(change); if (hint == "around") return {anchor: change.from, head: end}; if (hint == "end") return {anchor: end, head: end}; // hint is null, leave the selection alone as much as possible var adjustPos = function(pos) { if (posLess(pos, change.from)) return pos; if (!posLess(change.to, pos)) return end; var line = pos.line + change.text.length - (change.to.line - change.from.line) - 1, ch = pos.ch; if (pos.line == change.to.line) ch += end.ch - change.to.ch; return Pos(line, ch); }; return {anchor: adjustPos(doc.sel.anchor), head: adjustPos(doc.sel.head)}; } function filterChange(doc, change, update) { var obj = { canceled: false, from: change.from, to: change.to, text: change.text, origin: change.origin, cancel: function() { this.canceled = true; } }; if (update) obj.update = function(from, to, text, origin) { if (from) this.from = clipPos(doc, from); if (to) this.to = clipPos(doc, to); if (text) this.text = text; if (origin !== undefined) this.origin = origin; }; signal(doc, "beforeChange", doc, obj); if (doc.cm) signal(doc.cm, "beforeChange", doc.cm, obj); if (obj.canceled) return null; return {from: obj.from, to: obj.to, text: obj.text, origin: obj.origin}; } // Replace the range from from to to by the strings in replacement. // change is a {from, to, text [, origin]} object function makeChange(doc, change, selUpdate, ignoreReadOnly) { if (doc.cm) { if (!doc.cm.curOp) return operation(doc.cm, makeChange)(doc, change, selUpdate, ignoreReadOnly); if (doc.cm.state.suppressEdits) return; } if (hasHandler(doc, "beforeChange") || doc.cm && hasHandler(doc.cm, "beforeChange")) { change = filterChange(doc, change, true); if (!change) return; } // Possibly split or suppress the update based on the presence // of read-only spans in its range. var split = sawReadOnlySpans && !ignoreReadOnly && removeReadOnlyRanges(doc, change.from, change.to); if (split) { for (var i = split.length - 1; i >= 1; --i) makeChangeNoReadonly(doc, {from: split[i].from, to: split[i].to, text: [""]}); if (split.length) makeChangeNoReadonly(doc, {from: split[0].from, to: split[0].to, text: change.text}, selUpdate); } else { makeChangeNoReadonly(doc, change, selUpdate); } } function makeChangeNoReadonly(doc, change, selUpdate) { if (change.text.length == 1 && change.text[0] == "" && posEq(change.from, change.to)) return; var selAfter = computeSelAfterChange(doc, change, selUpdate); addToHistory(doc, change, selAfter, doc.cm ? doc.cm.curOp.id : NaN); makeChangeSingleDoc(doc, change, selAfter, stretchSpansOverChange(doc, change)); var rebased = []; linkedDocs(doc, function(doc, sharedHist) { if (!sharedHist && indexOf(rebased, doc.history) == -1) { rebaseHist(doc.history, change); rebased.push(doc.history); } makeChangeSingleDoc(doc, change, null, stretchSpansOverChange(doc, change)); }); } function makeChangeFromHistory(doc, type) { if (doc.cm && doc.cm.state.suppressEdits) return; var hist = doc.history; var event = (type == "undo" ? hist.done : hist.undone).pop(); if (!event) return; var anti = {changes: [], anchorBefore: event.anchorAfter, headBefore: event.headAfter, anchorAfter: event.anchorBefore, headAfter: event.headBefore, generation: hist.generation}; (type == "undo" ? hist.undone : hist.done).push(anti); hist.generation = event.generation || ++hist.maxGeneration; var filter = hasHandler(doc, "beforeChange") || doc.cm && hasHandler(doc.cm, "beforeChange"); for (var i = event.changes.length - 1; i >= 0; --i) { var change = event.changes[i]; change.origin = type; if (filter && !filterChange(doc, change, false)) { (type == "undo" ? hist.done : hist.undone).length = 0; return; } anti.changes.push(historyChangeFromChange(doc, change)); var after = i ? computeSelAfterChange(doc, change, null) : {anchor: event.anchorBefore, head: event.headBefore}; makeChangeSingleDoc(doc, change, after, mergeOldSpans(doc, change)); var rebased = []; linkedDocs(doc, function(doc, sharedHist) { if (!sharedHist && indexOf(rebased, doc.history) == -1) { rebaseHist(doc.history, change); rebased.push(doc.history); } makeChangeSingleDoc(doc, change, null, mergeOldSpans(doc, change)); }); } } function shiftDoc(doc, distance) { function shiftPos(pos) {return Pos(pos.line + distance, pos.ch);} doc.first += distance; if (doc.cm) regChange(doc.cm, doc.first, doc.first, distance); doc.sel.head = shiftPos(doc.sel.head); doc.sel.anchor = shiftPos(doc.sel.anchor); doc.sel.from = shiftPos(doc.sel.from); doc.sel.to = shiftPos(doc.sel.to); } function makeChangeSingleDoc(doc, change, selAfter, spans) { if (doc.cm && !doc.cm.curOp) return operation(doc.cm, makeChangeSingleDoc)(doc, change, selAfter, spans); if (change.to.line < doc.first) { shiftDoc(doc, change.text.length - 1 - (change.to.line - change.from.line)); return; } if (change.from.line > doc.lastLine()) return; // Clip the change to the size of this doc if (change.from.line < doc.first) { var shift = change.text.length - 1 - (doc.first - change.from.line); shiftDoc(doc, shift); change = {from: Pos(doc.first, 0), to: Pos(change.to.line + shift, change.to.ch), text: [lst(change.text)], origin: change.origin}; } var last = doc.lastLine(); if (change.to.line > last) { change = {from: change.from, to: Pos(last, getLine(doc, last).text.length), text: [change.text[0]], origin: change.origin}; } change.removed = getBetween(doc, change.from, change.to); if (!selAfter) selAfter = computeSelAfterChange(doc, change, null); if (doc.cm) makeChangeSingleDocInEditor(doc.cm, change, spans, selAfter); else updateDoc(doc, change, spans, selAfter); } function makeChangeSingleDocInEditor(cm, change, spans, selAfter) { var doc = cm.doc, display = cm.display, from = change.from, to = change.to; var recomputeMaxLength = false, checkWidthStart = from.line; if (!cm.options.lineWrapping) { checkWidthStart = lineNo(visualLine(doc, getLine(doc, from.line))); doc.iter(checkWidthStart, to.line + 1, function(line) { if (line == display.maxLine) { recomputeMaxLength = true; return true; } }); } if (!posLess(doc.sel.head, change.from) && !posLess(change.to, doc.sel.head)) cm.curOp.cursorActivity = true; updateDoc(doc, change, spans, selAfter, estimateHeight(cm)); if (!cm.options.lineWrapping) { doc.iter(checkWidthStart, from.line + change.text.length, function(line) { var len = lineLength(doc, line); if (len > display.maxLineLength) { display.maxLine = line; display.maxLineLength = len; display.maxLineChanged = true; recomputeMaxLength = false; } }); if (recomputeMaxLength) cm.curOp.updateMaxLine = true; } // Adjust frontier, schedule worker doc.frontier = Math.min(doc.frontier, from.line); startWorker(cm, 400); var lendiff = change.text.length - (to.line - from.line) - 1; // Remember that these lines changed, for updating the display regChange(cm, from.line, to.line + 1, lendiff); if (hasHandler(cm, "change")) { var changeObj = {from: from, to: to, text: change.text, removed: change.removed, origin: change.origin}; if (cm.curOp.textChanged) { for (var cur = cm.curOp.textChanged; cur.next; cur = cur.next) {} cur.next = changeObj; } else cm.curOp.textChanged = changeObj; } } function replaceRange(doc, code, from, to, origin) { if (!to) to = from; if (posLess(to, from)) { var tmp = to; to = from; from = tmp; } if (typeof code == "string") code = splitLines(code); makeChange(doc, {from: from, to: to, text: code, origin: origin}, null); } // POSITION OBJECT function Pos(line, ch) { if (!(this instanceof Pos)) return new Pos(line, ch); this.line = line; this.ch = ch; } CodeMirror.Pos = Pos; function posEq(a, b) {return a.line == b.line && a.ch == b.ch;} function posLess(a, b) {return a.line < b.line || (a.line == b.line && a.ch < b.ch);} function copyPos(x) {return Pos(x.line, x.ch);} // SELECTION function clipLine(doc, n) {return Math.max(doc.first, Math.min(n, doc.first + doc.size - 1));} function clipPos(doc, pos) { if (pos.line < doc.first) return Pos(doc.first, 0); var last = doc.first + doc.size - 1; if (pos.line > last) return Pos(last, getLine(doc, last).text.length); return clipToLen(pos, getLine(doc, pos.line).text.length); } function clipToLen(pos, linelen) { var ch = pos.ch; if (ch == null || ch > linelen) return Pos(pos.line, linelen); else if (ch < 0) return Pos(pos.line, 0); else return pos; } function isLine(doc, l) {return l >= doc.first && l < doc.first + doc.size;} // If shift is held, this will move the selection anchor. Otherwise, // it'll set the whole selection. function extendSelection(doc, pos, other, bias) { if (doc.sel.shift || doc.sel.extend) { var anchor = doc.sel.anchor; if (other) { var posBefore = posLess(pos, anchor); if (posBefore != posLess(other, anchor)) { anchor = pos; pos = other; } else if (posBefore != posLess(pos, other)) { pos = other; } } setSelection(doc, anchor, pos, bias); } else { setSelection(doc, pos, other || pos, bias); } if (doc.cm) doc.cm.curOp.userSelChange = true; } function filterSelectionChange(doc, anchor, head) { var obj = {anchor: anchor, head: head}; signal(doc, "beforeSelectionChange", doc, obj); if (doc.cm) signal(doc.cm, "beforeSelectionChange", doc.cm, obj); obj.anchor = clipPos(doc, obj.anchor); obj.head = clipPos(doc, obj.head); return obj; } // Update the selection. Last two args are only used by // updateDoc, since they have to be expressed in the line // numbers before the update. function setSelection(doc, anchor, head, bias, checkAtomic) { if (!checkAtomic && hasHandler(doc, "beforeSelectionChange") || doc.cm && hasHandler(doc.cm, "beforeSelectionChange")) { var filtered = filterSelectionChange(doc, anchor, head); head = filtered.head; anchor = filtered.anchor; } var sel = doc.sel; sel.goalColumn = null; if (bias == null) bias = posLess(head, sel.head) ? -1 : 1; // Skip over atomic spans. if (checkAtomic || !posEq(anchor, sel.anchor)) anchor = skipAtomic(doc, anchor, bias, checkAtomic != "push"); if (checkAtomic || !posEq(head, sel.head)) head = skipAtomic(doc, head, bias, checkAtomic != "push"); if (posEq(sel.anchor, anchor) && posEq(sel.head, head)) return; sel.anchor = anchor; sel.head = head; var inv = posLess(head, anchor); sel.from = inv ? head : anchor; sel.to = inv ? anchor : head; if (doc.cm) doc.cm.curOp.updateInput = doc.cm.curOp.selectionChanged = doc.cm.curOp.cursorActivity = true; signalLater(doc, "cursorActivity", doc); } function reCheckSelection(cm) { setSelection(cm.doc, cm.doc.sel.from, cm.doc.sel.to, null, "push"); } function skipAtomic(doc, pos, bias, mayClear) { var flipped = false, curPos = pos; var dir = bias || 1; doc.cantEdit = false; search: for (;;) { var line = getLine(doc, curPos.line); if (line.markedSpans) { for (var i = 0; i < line.markedSpans.length; ++i) { var sp = line.markedSpans[i], m = sp.marker; if ((sp.from == null || (m.inclusiveLeft ? sp.from <= curPos.ch : sp.from < curPos.ch)) && (sp.to == null || (m.inclusiveRight ? sp.to >= curPos.ch : sp.to > curPos.ch))) { if (mayClear) { signal(m, "beforeCursorEnter"); if (m.explicitlyCleared) { if (!line.markedSpans) break; else {--i; continue;} } } if (!m.atomic) continue; var newPos = m.find()[dir < 0 ? "from" : "to"]; if (posEq(newPos, curPos)) { newPos.ch += dir; if (newPos.ch < 0) { if (newPos.line > doc.first) newPos = clipPos(doc, Pos(newPos.line - 1)); else newPos = null; } else if (newPos.ch > line.text.length) { if (newPos.line < doc.first + doc.size - 1) newPos = Pos(newPos.line + 1, 0); else newPos = null; } if (!newPos) { if (flipped) { // Driven in a corner -- no valid cursor position found at all // -- try again *with* clearing, if we didn't already if (!mayClear) return skipAtomic(doc, pos, bias, true); // Otherwise, turn off editing until further notice, and return the start of the doc doc.cantEdit = true; return Pos(doc.first, 0); } flipped = true; newPos = pos; dir = -dir; } } curPos = newPos; continue search; } } } return curPos; } } // SCROLLING function scrollCursorIntoView(cm) { var coords = scrollPosIntoView(cm, cm.doc.sel.head, cm.options.cursorScrollMargin); if (!cm.state.focused) return; var display = cm.display, box = getRect(display.sizer), doScroll = null; if (coords.top + box.top < 0) doScroll = true; else if (coords.bottom + box.top > (window.innerHeight || document.documentElement.clientHeight)) doScroll = false; if (doScroll != null && !phantom) { var hidden = display.cursor.style.display == "none"; if (hidden) { display.cursor.style.display = ""; display.cursor.style.left = coords.left + "px"; display.cursor.style.top = (coords.top - display.viewOffset) + "px"; } display.cursor.scrollIntoView(doScroll); if (hidden) display.cursor.style.display = "none"; } } function scrollPosIntoView(cm, pos, margin) { if (margin == null) margin = 0; for (;;) { var changed = false, coords = cursorCoords(cm, pos); var scrollPos = calculateScrollPos(cm, coords.left, coords.top - margin, coords.left, coords.bottom + margin); var startTop = cm.doc.scrollTop, startLeft = cm.doc.scrollLeft; if (scrollPos.scrollTop != null) { setScrollTop(cm, scrollPos.scrollTop); if (Math.abs(cm.doc.scrollTop - startTop) > 1) changed = true; } if (scrollPos.scrollLeft != null) { setScrollLeft(cm, scrollPos.scrollLeft); if (Math.abs(cm.doc.scrollLeft - startLeft) > 1) changed = true; } if (!changed) return coords; } } function scrollIntoView(cm, x1, y1, x2, y2) { var scrollPos = calculateScrollPos(cm, x1, y1, x2, y2); if (scrollPos.scrollTop != null) setScrollTop(cm, scrollPos.scrollTop); if (scrollPos.scrollLeft != null) setScrollLeft(cm, scrollPos.scrollLeft); } function calculateScrollPos(cm, x1, y1, x2, y2) { var display = cm.display, snapMargin = textHeight(cm.display); if (y1 < 0) y1 = 0; var screen = display.scroller.clientHeight - scrollerCutOff, screentop = display.scroller.scrollTop, result = {}; var docBottom = cm.doc.height + paddingVert(display); var atTop = y1 < snapMargin, atBottom = y2 > docBottom - snapMargin; if (y1 < screentop) { result.scrollTop = atTop ? 0 : y1; } else if (y2 > screentop + screen) { var newTop = Math.min(y1, (atBottom ? docBottom : y2) - screen); if (newTop != screentop) result.scrollTop = newTop; } var screenw = display.scroller.clientWidth - scrollerCutOff, screenleft = display.scroller.scrollLeft; x1 += display.gutters.offsetWidth; x2 += display.gutters.offsetWidth; var gutterw = display.gutters.offsetWidth; var atLeft = x1 < gutterw + 10; if (x1 < screenleft + gutterw || atLeft) { if (atLeft) x1 = 0; result.scrollLeft = Math.max(0, x1 - 10 - gutterw); } else if (x2 > screenw + screenleft - 3) { result.scrollLeft = x2 + 10 - screenw; } return result; } function updateScrollPos(cm, left, top) { cm.curOp.updateScrollPos = {scrollLeft: left == null ? cm.doc.scrollLeft : left, scrollTop: top == null ? cm.doc.scrollTop : top}; } function addToScrollPos(cm, left, top) { var pos = cm.curOp.updateScrollPos || (cm.curOp.updateScrollPos = {scrollLeft: cm.doc.scrollLeft, scrollTop: cm.doc.scrollTop}); var scroll = cm.display.scroller; pos.scrollTop = Math.max(0, Math.min(scroll.scrollHeight - scroll.clientHeight, pos.scrollTop + top)); pos.scrollLeft = Math.max(0, Math.min(scroll.scrollWidth - scroll.clientWidth, pos.scrollLeft + left)); } // API UTILITIES function indentLine(cm, n, how, aggressive) { var doc = cm.doc; if (how == null) how = "add"; if (how == "smart") { if (!cm.doc.mode.indent) how = "prev"; else var state = getStateBefore(cm, n); } var tabSize = cm.options.tabSize; var line = getLine(doc, n), curSpace = countColumn(line.text, null, tabSize); var curSpaceString = line.text.match(/^\s*/)[0], indentation; if (how == "smart") { indentation = cm.doc.mode.indent(state, line.text.slice(curSpaceString.length), line.text); if (indentation == Pass) { if (!aggressive) return; how = "prev"; } } if (how == "prev") { if (n > doc.first) indentation = countColumn(getLine(doc, n-1).text, null, tabSize); else indentation = 0; } else if (how == "add") { indentation = curSpace + cm.options.indentUnit; } else if (how == "subtract") { indentation = curSpace - cm.options.indentUnit; } else if (typeof how == "number") { indentation = curSpace + how; } indentation = Math.max(0, indentation); var indentString = "", pos = 0; if (cm.options.indentWithTabs) for (var i = Math.floor(indentation / tabSize); i; --i) {pos += tabSize; indentString += "\t";} if (pos < indentation) indentString += spaceStr(indentation - pos); if (indentString != curSpaceString) replaceRange(cm.doc, indentString, Pos(n, 0), Pos(n, curSpaceString.length), "+input"); line.stateAfter = null; } function changeLine(cm, handle, op) { var no = handle, line = handle, doc = cm.doc; if (typeof handle == "number") line = getLine(doc, clipLine(doc, handle)); else no = lineNo(handle); if (no == null) return null; if (op(line, no)) regChange(cm, no, no + 1); else return null; return line; } function findPosH(doc, pos, dir, unit, visually) { var line = pos.line, ch = pos.ch, origDir = dir; var lineObj = getLine(doc, line); var possible = true; function findNextLine() { var l = line + dir; if (l < doc.first || l >= doc.first + doc.size) return (possible = false); line = l; return lineObj = getLine(doc, l); } function moveOnce(boundToLine) { var next = (visually ? moveVisually : moveLogically)(lineObj, ch, dir, true); if (next == null) { if (!boundToLine && findNextLine()) { if (visually) ch = (dir < 0 ? lineRight : lineLeft)(lineObj); else ch = dir < 0 ? lineObj.text.length : 0; } else return (possible = false); } else ch = next; return true; } if (unit == "char") moveOnce(); else if (unit == "column") moveOnce(true); else if (unit == "word" || unit == "group") { var sawType = null, group = unit == "group"; for (var first = true;; first = false) { if (dir < 0 && !moveOnce(!first)) break; var cur = lineObj.text.charAt(ch) || "\n"; var type = isWordChar(cur) ? "w" : !group ? null : /\s/.test(cur) ? null : "p"; if (sawType && sawType != type) { if (dir < 0) {dir = 1; moveOnce();} break; } if (type) sawType = type; if (dir > 0 && !moveOnce(!first)) break; } } var result = skipAtomic(doc, Pos(line, ch), origDir, true); if (!possible) result.hitSide = true; return result; } function findPosV(cm, pos, dir, unit) { var doc = cm.doc, x = pos.left, y; if (unit == "page") { var pageSize = Math.min(cm.display.wrapper.clientHeight, window.innerHeight || document.documentElement.clientHeight); y = pos.top + dir * (pageSize - (dir < 0 ? 1.5 : .5) * textHeight(cm.display)); } else if (unit == "line") { y = dir > 0 ? pos.bottom + 3 : pos.top - 3; } for (;;) { var target = coordsChar(cm, x, y); if (!target.outside) break; if (dir < 0 ? y <= 0 : y >= doc.height) { target.hitSide = true; break; } y += dir * 5; } return target; } function findWordAt(line, pos) { var start = pos.ch, end = pos.ch; if (line) { if ((pos.xRel < 0 || end == line.length) && start) --start; else ++end; var startChar = line.charAt(start); var check = isWordChar(startChar) ? isWordChar : /\s/.test(startChar) ? function(ch) {return /\s/.test(ch);} : function(ch) {return !/\s/.test(ch) && !isWordChar(ch);}; while (start > 0 && check(line.charAt(start - 1))) --start; while (end < line.length && check(line.charAt(end))) ++end; } return {from: Pos(pos.line, start), to: Pos(pos.line, end)}; } function selectLine(cm, line) { extendSelection(cm.doc, Pos(line, 0), clipPos(cm.doc, Pos(line + 1, 0))); } // PROTOTYPE // The publicly visible API. Note that operation(null, f) means // 'wrap f in an operation, performed on its `this` parameter' CodeMirror.prototype = { constructor: CodeMirror, focus: function(){window.focus(); focusInput(this); onFocus(this); fastPoll(this);}, setOption: function(option, value) { var options = this.options, old = options[option]; if (options[option] == value && option != "mode") return; options[option] = value; if (optionHandlers.hasOwnProperty(option)) operation(this, optionHandlers[option])(this, value, old); }, getOption: function(option) {return this.options[option];}, getDoc: function() {return this.doc;}, addKeyMap: function(map, bottom) { this.state.keyMaps[bottom ? "push" : "unshift"](map); }, removeKeyMap: function(map) { var maps = this.state.keyMaps; for (var i = 0; i < maps.length; ++i) if (maps[i] == map || (typeof maps[i] != "string" && maps[i].name == map)) { maps.splice(i, 1); return true; } }, addOverlay: operation(null, function(spec, options) { var mode = spec.token ? spec : CodeMirror.getMode(this.options, spec); if (mode.startState) throw new Error("Overlays may not be stateful."); this.state.overlays.push({mode: mode, modeSpec: spec, opaque: options && options.opaque}); this.state.modeGen++; regChange(this); }), removeOverlay: operation(null, function(spec) { var overlays = this.state.overlays; for (var i = 0; i < overlays.length; ++i) { var cur = overlays[i].modeSpec; if (cur == spec || typeof spec == "string" && cur.name == spec) { overlays.splice(i, 1); this.state.modeGen++; regChange(this); return; } } }), indentLine: operation(null, function(n, dir, aggressive) { if (typeof dir != "string" && typeof dir != "number") { if (dir == null) dir = this.options.smartIndent ? "smart" : "prev"; else dir = dir ? "add" : "subtract"; } if (isLine(this.doc, n)) indentLine(this, n, dir, aggressive); }), indentSelection: operation(null, function(how) { var sel = this.doc.sel; if (posEq(sel.from, sel.to)) return indentLine(this, sel.from.line, how); var e = sel.to.line - (sel.to.ch ? 0 : 1); for (var i = sel.from.line; i <= e; ++i) indentLine(this, i, how); }), // Fetch the parser token for a given character. Useful for hacks // that want to inspect the mode state (say, for completion). getTokenAt: function(pos, precise) { var doc = this.doc; pos = clipPos(doc, pos); var state = getStateBefore(this, pos.line, precise), mode = this.doc.mode; var line = getLine(doc, pos.line); var stream = new StringStream(line.text, this.options.tabSize); while (stream.pos < pos.ch && !stream.eol()) { stream.start = stream.pos; var style = mode.token(stream, state); } return {start: stream.start, end: stream.pos, string: stream.current(), className: style || null, // Deprecated, use 'type' instead type: style || null, state: state}; }, getTokenTypeAt: function(pos) { pos = clipPos(this.doc, pos); var styles = getLineStyles(this, getLine(this.doc, pos.line)); var before = 0, after = (styles.length - 1) / 2, ch = pos.ch; if (ch == 0) return styles[2]; for (;;) { var mid = (before + after) >> 1; if ((mid ? styles[mid * 2 - 1] : 0) >= ch) after = mid; else if (styles[mid * 2 + 1] < ch) before = mid + 1; else return styles[mid * 2 + 2]; } }, getModeAt: function(pos) { var mode = this.doc.mode; if (!mode.innerMode) return mode; return CodeMirror.innerMode(mode, this.getTokenAt(pos).state).mode; }, getHelper: function(pos, type) { if (!helpers.hasOwnProperty(type)) return; var help = helpers[type], mode = this.getModeAt(pos); return mode[type] && help[mode[type]] || mode.helperType && help[mode.helperType] || help[mode.name]; }, getStateAfter: function(line, precise) { var doc = this.doc; line = clipLine(doc, line == null ? doc.first + doc.size - 1: line); return getStateBefore(this, line + 1, precise); }, cursorCoords: function(start, mode) { var pos, sel = this.doc.sel; if (start == null) pos = sel.head; else if (typeof start == "object") pos = clipPos(this.doc, start); else pos = start ? sel.from : sel.to; return cursorCoords(this, pos, mode || "page"); }, charCoords: function(pos, mode) { return charCoords(this, clipPos(this.doc, pos), mode || "page"); }, coordsChar: function(coords, mode) { coords = fromCoordSystem(this, coords, mode || "page"); return coordsChar(this, coords.left, coords.top); }, lineAtHeight: function(height, mode) { height = fromCoordSystem(this, {top: height, left: 0}, mode || "page").top; return lineAtHeight(this.doc, height + this.display.viewOffset); }, heightAtLine: function(line, mode) { var end = false, last = this.doc.first + this.doc.size - 1; if (line < this.doc.first) line = this.doc.first; else if (line > last) { line = last; end = true; } var lineObj = getLine(this.doc, line); return intoCoordSystem(this, getLine(this.doc, line), {top: 0, left: 0}, mode || "page").top + (end ? lineObj.height : 0); }, defaultTextHeight: function() { return textHeight(this.display); }, defaultCharWidth: function() { return charWidth(this.display); }, setGutterMarker: operation(null, function(line, gutterID, value) { return changeLine(this, line, function(line) { var markers = line.gutterMarkers || (line.gutterMarkers = {}); markers[gutterID] = value; if (!value && isEmpty(markers)) line.gutterMarkers = null; return true; }); }), clearGutter: operation(null, function(gutterID) { var cm = this, doc = cm.doc, i = doc.first; doc.iter(function(line) { if (line.gutterMarkers && line.gutterMarkers[gutterID]) { line.gutterMarkers[gutterID] = null; regChange(cm, i, i + 1); if (isEmpty(line.gutterMarkers)) line.gutterMarkers = null; } ++i; }); }), addLineClass: operation(null, function(handle, where, cls) { return changeLine(this, handle, function(line) { var prop = where == "text" ? "textClass" : where == "background" ? "bgClass" : "wrapClass"; if (!line[prop]) line[prop] = cls; else if (new RegExp("(?:^|\\s)" + cls + "(?:$|\\s)").test(line[prop])) return false; else line[prop] += " " + cls; return true; }); }), removeLineClass: operation(null, function(handle, where, cls) { return changeLine(this, handle, function(line) { var prop = where == "text" ? "textClass" : where == "background" ? "bgClass" : "wrapClass"; var cur = line[prop]; if (!cur) return false; else if (cls == null) line[prop] = null; else { var found = cur.match(new RegExp("(?:^|\\s+)" + cls + "(?:$|\\s+)")); if (!found) return false; var end = found.index + found[0].length; line[prop] = cur.slice(0, found.index) + (!found.index || end == cur.length ? "" : " ") + cur.slice(end) || null; } return true; }); }), addLineWidget: operation(null, function(handle, node, options) { return addLineWidget(this, handle, node, options); }), removeLineWidget: function(widget) { widget.clear(); }, lineInfo: function(line) { if (typeof line == "number") { if (!isLine(this.doc, line)) return null; var n = line; line = getLine(this.doc, line); if (!line) return null; } else { var n = lineNo(line); if (n == null) return null; } return {line: n, handle: line, text: line.text, gutterMarkers: line.gutterMarkers, textClass: line.textClass, bgClass: line.bgClass, wrapClass: line.wrapClass, widgets: line.widgets}; }, getViewport: function() { return {from: this.display.showingFrom, to: this.display.showingTo};}, addWidget: function(pos, node, scroll, vert, horiz) { var display = this.display; pos = cursorCoords(this, clipPos(this.doc, pos)); var top = pos.bottom, left = pos.left; node.style.position = "absolute"; display.sizer.appendChild(node); if (vert == "over") { top = pos.top; } else if (vert == "above" || vert == "near") { var vspace = Math.max(display.wrapper.clientHeight, this.doc.height), hspace = Math.max(display.sizer.clientWidth, display.lineSpace.clientWidth); // Default to positioning above (if specified and possible); otherwise default to positioning below if ((vert == 'above' || pos.bottom + node.offsetHeight > vspace) && pos.top > node.offsetHeight) top = pos.top - node.offsetHeight; else if (pos.bottom + node.offsetHeight <= vspace) top = pos.bottom; if (left + node.offsetWidth > hspace) left = hspace - node.offsetWidth; } node.style.top = top + "px"; node.style.left = node.style.right = ""; if (horiz == "right") { left = display.sizer.clientWidth - node.offsetWidth; node.style.right = "0px"; } else { if (horiz == "left") left = 0; else if (horiz == "middle") left = (display.sizer.clientWidth - node.offsetWidth) / 2; node.style.left = left + "px"; } if (scroll) scrollIntoView(this, left, top, left + node.offsetWidth, top + node.offsetHeight); }, triggerOnKeyDown: operation(null, onKeyDown), execCommand: function(cmd) {return commands[cmd](this);}, findPosH: function(from, amount, unit, visually) { var dir = 1; if (amount < 0) { dir = -1; amount = -amount; } for (var i = 0, cur = clipPos(this.doc, from); i < amount; ++i) { cur = findPosH(this.doc, cur, dir, unit, visually); if (cur.hitSide) break; } return cur; }, moveH: operation(null, function(dir, unit) { var sel = this.doc.sel, pos; if (sel.shift || sel.extend || posEq(sel.from, sel.to)) pos = findPosH(this.doc, sel.head, dir, unit, this.options.rtlMoveVisually); else pos = dir < 0 ? sel.from : sel.to; extendSelection(this.doc, pos, pos, dir); }), deleteH: operation(null, function(dir, unit) { var sel = this.doc.sel; if (!posEq(sel.from, sel.to)) replaceRange(this.doc, "", sel.from, sel.to, "+delete"); else replaceRange(this.doc, "", sel.from, findPosH(this.doc, sel.head, dir, unit, false), "+delete"); this.curOp.userSelChange = true; }), findPosV: function(from, amount, unit, goalColumn) { var dir = 1, x = goalColumn; if (amount < 0) { dir = -1; amount = -amount; } for (var i = 0, cur = clipPos(this.doc, from); i < amount; ++i) { var coords = cursorCoords(this, cur, "div"); if (x == null) x = coords.left; else coords.left = x; cur = findPosV(this, coords, dir, unit); if (cur.hitSide) break; } return cur; }, moveV: operation(null, function(dir, unit) { var sel = this.doc.sel; var pos = cursorCoords(this, sel.head, "div"); if (sel.goalColumn != null) pos.left = sel.goalColumn; var target = findPosV(this, pos, dir, unit); if (unit == "page") addToScrollPos(this, 0, charCoords(this, target, "div").top - pos.top); extendSelection(this.doc, target, target, dir); sel.goalColumn = pos.left; }), toggleOverwrite: function(value) { if (value != null && value == this.state.overwrite) return; if (this.state.overwrite = !this.state.overwrite) this.display.cursor.className += " CodeMirror-overwrite"; else this.display.cursor.className = this.display.cursor.className.replace(" CodeMirror-overwrite", ""); }, hasFocus: function() { return this.state.focused; }, scrollTo: operation(null, function(x, y) { updateScrollPos(this, x, y); }), getScrollInfo: function() { var scroller = this.display.scroller, co = scrollerCutOff; return {left: scroller.scrollLeft, top: scroller.scrollTop, height: scroller.scrollHeight - co, width: scroller.scrollWidth - co, clientHeight: scroller.clientHeight - co, clientWidth: scroller.clientWidth - co}; }, scrollIntoView: operation(null, function(pos, margin) { if (typeof pos == "number") pos = Pos(pos, 0); if (!margin) margin = 0; var coords = pos; if (!pos || pos.line != null) { this.curOp.scrollToPos = pos ? clipPos(this.doc, pos) : this.doc.sel.head; this.curOp.scrollToPosMargin = margin; coords = cursorCoords(this, this.curOp.scrollToPos); } var sPos = calculateScrollPos(this, coords.left, coords.top - margin, coords.right, coords.bottom + margin); updateScrollPos(this, sPos.scrollLeft, sPos.scrollTop); }), setSize: operation(null, function(width, height) { function interpret(val) { return typeof val == "number" || /^\d+$/.test(String(val)) ? val + "px" : val; } if (width != null) this.display.wrapper.style.width = interpret(width); if (height != null) this.display.wrapper.style.height = interpret(height); if (this.options.lineWrapping) this.display.measureLineCache.length = this.display.measureLineCachePos = 0; this.curOp.forceUpdate = true; }), operation: function(f){return runInOp(this, f);}, refresh: operation(null, function() { var badHeight = this.display.cachedTextHeight == null; clearCaches(this); updateScrollPos(this, this.doc.scrollLeft, this.doc.scrollTop); regChange(this); if (badHeight) estimateLineHeights(this); }), swapDoc: operation(null, function(doc) { var old = this.doc; old.cm = null; attachDoc(this, doc); clearCaches(this); resetInput(this, true); updateScrollPos(this, doc.scrollLeft, doc.scrollTop); return old; }), getInputField: function(){return this.display.input;}, getWrapperElement: function(){return this.display.wrapper;}, getScrollerElement: function(){return this.display.scroller;}, getGutterElement: function(){return this.display.gutters;} }; eventMixin(CodeMirror); // OPTION DEFAULTS var optionHandlers = CodeMirror.optionHandlers = {}; // The default configuration options. var defaults = CodeMirror.defaults = {}; function option(name, deflt, handle, notOnInit) { CodeMirror.defaults[name] = deflt; if (handle) optionHandlers[name] = notOnInit ? function(cm, val, old) {if (old != Init) handle(cm, val, old);} : handle; } var Init = CodeMirror.Init = {toString: function(){return "CodeMirror.Init";}}; // These two are, on init, called from the constructor because they // have to be initialized before the editor can start at all. option("value", "", function(cm, val) { cm.setValue(val); }, true); option("mode", null, function(cm, val) { cm.doc.modeOption = val; loadMode(cm); }, true); option("indentUnit", 2, loadMode, true); option("indentWithTabs", false); option("smartIndent", true); option("tabSize", 4, function(cm) { loadMode(cm); clearCaches(cm); regChange(cm); }, true); option("electricChars", true); option("rtlMoveVisually", !windows); option("theme", "default", function(cm) { themeChanged(cm); guttersChanged(cm); }, true); option("keyMap", "default", keyMapChanged); option("extraKeys", null); option("onKeyEvent", null); option("onDragEvent", null); option("lineWrapping", false, wrappingChanged, true); option("gutters", [], function(cm) { setGuttersForLineNumbers(cm.options); guttersChanged(cm); }, true); option("fixedGutter", true, function(cm, val) { cm.display.gutters.style.left = val ? compensateForHScroll(cm.display) + "px" : "0"; cm.refresh(); }, true); option("coverGutterNextToScrollbar", false, updateScrollbars, true); option("lineNumbers", false, function(cm) { setGuttersForLineNumbers(cm.options); guttersChanged(cm); }, true); option("firstLineNumber", 1, guttersChanged, true); option("lineNumberFormatter", function(integer) {return integer;}, guttersChanged, true); option("showCursorWhenSelecting", false, updateSelection, true); option("readOnly", false, function(cm, val) { if (val == "nocursor") {onBlur(cm); cm.display.input.blur();} else if (!val) resetInput(cm, true); }); option("dragDrop", true); option("cursorBlinkRate", 530); option("cursorScrollMargin", 0); option("cursorHeight", 1); option("workTime", 100); option("workDelay", 100); option("flattenSpans", true); option("pollInterval", 100); option("undoDepth", 40, function(cm, val){cm.doc.history.undoDepth = val;}); option("historyEventDelay", 500); option("viewportMargin", 10, function(cm){cm.refresh();}, true); option("maxHighlightLength", 10000, function(cm){loadMode(cm); cm.refresh();}, true); option("crudeMeasuringFrom", 10000); option("moveInputWithCursor", true, function(cm, val) { if (!val) cm.display.inputDiv.style.top = cm.display.inputDiv.style.left = 0; }); option("tabindex", null, function(cm, val) { cm.display.input.tabIndex = val || ""; }); option("autofocus", null); // MODE DEFINITION AND QUERYING // Known modes, by name and by MIME var modes = CodeMirror.modes = {}, mimeModes = CodeMirror.mimeModes = {}; CodeMirror.defineMode = function(name, mode) { if (!CodeMirror.defaults.mode && name != "null") CodeMirror.defaults.mode = name; if (arguments.length > 2) { mode.dependencies = []; for (var i = 2; i < arguments.length; ++i) mode.dependencies.push(arguments[i]); } modes[name] = mode; }; CodeMirror.defineMIME = function(mime, spec) { mimeModes[mime] = spec; }; CodeMirror.resolveMode = function(spec) { if (typeof spec == "string" && mimeModes.hasOwnProperty(spec)) { spec = mimeModes[spec]; } else if (spec && typeof spec.name == "string" && mimeModes.hasOwnProperty(spec.name)) { var found = mimeModes[spec.name]; spec = createObj(found, spec); spec.name = found.name; } else if (typeof spec == "string" && /^[\w\-]+\/[\w\-]+\+xml$/.test(spec)) { return CodeMirror.resolveMode("application/xml"); } if (typeof spec == "string") return {name: spec}; else return spec || {name: "null"}; }; CodeMirror.getMode = function(options, spec) { var spec = CodeMirror.resolveMode(spec); var mfactory = modes[spec.name]; if (!mfactory) return CodeMirror.getMode(options, "text/plain"); var modeObj = mfactory(options, spec); if (modeExtensions.hasOwnProperty(spec.name)) { var exts = modeExtensions[spec.name]; for (var prop in exts) { if (!exts.hasOwnProperty(prop)) continue; if (modeObj.hasOwnProperty(prop)) modeObj["_" + prop] = modeObj[prop]; modeObj[prop] = exts[prop]; } } modeObj.name = spec.name; return modeObj; }; CodeMirror.defineMode("null", function() { return {token: function(stream) {stream.skipToEnd();}}; }); CodeMirror.defineMIME("text/plain", "null"); var modeExtensions = CodeMirror.modeExtensions = {}; CodeMirror.extendMode = function(mode, properties) { var exts = modeExtensions.hasOwnProperty(mode) ? modeExtensions[mode] : (modeExtensions[mode] = {}); copyObj(properties, exts); }; // EXTENSIONS CodeMirror.defineExtension = function(name, func) { CodeMirror.prototype[name] = func; }; CodeMirror.defineDocExtension = function(name, func) { Doc.prototype[name] = func; }; CodeMirror.defineOption = option; var initHooks = []; CodeMirror.defineInitHook = function(f) {initHooks.push(f);}; var helpers = CodeMirror.helpers = {}; CodeMirror.registerHelper = function(type, name, value) { if (!helpers.hasOwnProperty(type)) helpers[type] = CodeMirror[type] = {}; helpers[type][name] = value; }; // UTILITIES CodeMirror.isWordChar = isWordChar; // MODE STATE HANDLING // Utility functions for working with state. Exported because modes // sometimes need to do this. function copyState(mode, state) { if (state === true) return state; if (mode.copyState) return mode.copyState(state); var nstate = {}; for (var n in state) { var val = state[n]; if (val instanceof Array) val = val.concat([]); nstate[n] = val; } return nstate; } CodeMirror.copyState = copyState; function startState(mode, a1, a2) { return mode.startState ? mode.startState(a1, a2) : true; } CodeMirror.startState = startState; CodeMirror.innerMode = function(mode, state) { while (mode.innerMode) { var info = mode.innerMode(state); if (!info || info.mode == mode) break; state = info.state; mode = info.mode; } return info || {mode: mode, state: state}; }; // STANDARD COMMANDS var commands = CodeMirror.commands = { selectAll: function(cm) {cm.setSelection(Pos(cm.firstLine(), 0), Pos(cm.lastLine()));}, killLine: function(cm) { var from = cm.getCursor(true), to = cm.getCursor(false), sel = !posEq(from, to); if (!sel && cm.getLine(from.line).length == from.ch) cm.replaceRange("", from, Pos(from.line + 1, 0), "+delete"); else cm.replaceRange("", from, sel ? to : Pos(from.line), "+delete"); }, deleteLine: function(cm) { var l = cm.getCursor().line; cm.replaceRange("", Pos(l, 0), Pos(l), "+delete"); }, delLineLeft: function(cm) { var cur = cm.getCursor(); cm.replaceRange("", Pos(cur.line, 0), cur, "+delete"); }, undo: function(cm) {cm.undo();}, redo: function(cm) {cm.redo();}, goDocStart: function(cm) {cm.extendSelection(Pos(cm.firstLine(), 0));}, goDocEnd: function(cm) {cm.extendSelection(Pos(cm.lastLine()));}, goLineStart: function(cm) { cm.extendSelection(lineStart(cm, cm.getCursor().line)); }, goLineStartSmart: function(cm) { var cur = cm.getCursor(), start = lineStart(cm, cur.line); var line = cm.getLineHandle(start.line); var order = getOrder(line); if (!order || order[0].level == 0) { var firstNonWS = Math.max(0, line.text.search(/\S/)); var inWS = cur.line == start.line && cur.ch <= firstNonWS && cur.ch; cm.extendSelection(Pos(start.line, inWS ? 0 : firstNonWS)); } else cm.extendSelection(start); }, goLineEnd: function(cm) { cm.extendSelection(lineEnd(cm, cm.getCursor().line)); }, goLineRight: function(cm) { var top = cm.charCoords(cm.getCursor(), "div").top + 5; cm.extendSelection(cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, "div")); }, goLineLeft: function(cm) { var top = cm.charCoords(cm.getCursor(), "div").top + 5; cm.extendSelection(cm.coordsChar({left: 0, top: top}, "div")); }, goLineUp: function(cm) {cm.moveV(-1, "line");}, goLineDown: function(cm) {cm.moveV(1, "line");}, goPageUp: function(cm) {cm.moveV(-1, "page");}, goPageDown: function(cm) {cm.moveV(1, "page");}, goCharLeft: function(cm) {cm.moveH(-1, "char");}, goCharRight: function(cm) {cm.moveH(1, "char");}, goColumnLeft: function(cm) {cm.moveH(-1, "column");}, goColumnRight: function(cm) {cm.moveH(1, "column");}, goWordLeft: function(cm) {cm.moveH(-1, "word");}, goGroupRight: function(cm) {cm.moveH(1, "group");}, goGroupLeft: function(cm) {cm.moveH(-1, "group");}, goWordRight: function(cm) {cm.moveH(1, "word");}, delCharBefore: function(cm) {cm.deleteH(-1, "char");}, delCharAfter: function(cm) {cm.deleteH(1, "char");}, delWordBefore: function(cm) {cm.deleteH(-1, "word");}, delWordAfter: function(cm) {cm.deleteH(1, "word");}, delGroupBefore: function(cm) {cm.deleteH(-1, "group");}, delGroupAfter: function(cm) {cm.deleteH(1, "group");}, indentAuto: function(cm) {cm.indentSelection("smart");}, indentMore: function(cm) {cm.indentSelection("add");}, indentLess: function(cm) {cm.indentSelection("subtract");}, insertTab: function(cm) {cm.replaceSelection("\t", "end", "+input");}, defaultTab: function(cm) { if (cm.somethingSelected()) cm.indentSelection("add"); else cm.replaceSelection("\t", "end", "+input"); }, transposeChars: function(cm) { var cur = cm.getCursor(), line = cm.getLine(cur.line); if (cur.ch > 0 && cur.ch < line.length - 1) cm.replaceRange(line.charAt(cur.ch) + line.charAt(cur.ch - 1), Pos(cur.line, cur.ch - 1), Pos(cur.line, cur.ch + 1)); }, newlineAndIndent: function(cm) { operation(cm, function() { cm.replaceSelection("\n", "end", "+input"); cm.indentLine(cm.getCursor().line, null, true); })(); }, toggleOverwrite: function(cm) {cm.toggleOverwrite();} }; // STANDARD KEYMAPS var keyMap = CodeMirror.keyMap = {}; keyMap.basic = { "Left": "goCharLeft", "Right": "goCharRight", "Up": "goLineUp", "Down": "goLineDown", "End": "goLineEnd", "Home": "goLineStartSmart", "PageUp": "goPageUp", "PageDown": "goPageDown", "Delete": "delCharAfter", "Backspace": "delCharBefore", "Tab": "defaultTab", "Shift-Tab": "indentAuto", "Enter": "newlineAndIndent", "Insert": "toggleOverwrite" }; // Note that the save and find-related commands aren't defined by // default. Unknown commands are simply ignored. keyMap.pcDefault = { "Ctrl-A": "selectAll", "Ctrl-D": "deleteLine", "Ctrl-Z": "undo", "Shift-Ctrl-Z": "redo", "Ctrl-Y": "redo", "Ctrl-Home": "goDocStart", "Alt-Up": "goDocStart", "Ctrl-End": "goDocEnd", "Ctrl-Down": "goDocEnd", "Ctrl-Left": "goGroupLeft", "Ctrl-Right": "goGroupRight", "Alt-Left": "goLineStart", "Alt-Right": "goLineEnd", "Ctrl-Backspace": "delGroupBefore", "Ctrl-Delete": "delGroupAfter", "Ctrl-S": "save", "Ctrl-F": "find", "Ctrl-G": "findNext", "Shift-Ctrl-G": "findPrev", "Shift-Ctrl-F": "replace", "Shift-Ctrl-R": "replaceAll", "Ctrl-[": "indentLess", "Ctrl-]": "indentMore", fallthrough: "basic" }; keyMap.macDefault = { "Cmd-A": "selectAll", "Cmd-D": "deleteLine", "Cmd-Z": "undo", "Shift-Cmd-Z": "redo", "Cmd-Y": "redo", "Cmd-Up": "goDocStart", "Cmd-End": "goDocEnd", "Cmd-Down": "goDocEnd", "Alt-Left": "goGroupLeft", "Alt-Right": "goGroupRight", "Cmd-Left": "goLineStart", "Cmd-Right": "goLineEnd", "Alt-Backspace": "delGroupBefore", "Ctrl-Alt-Backspace": "delGroupAfter", "Alt-Delete": "delGroupAfter", "Cmd-S": "save", "Cmd-F": "find", "Cmd-G": "findNext", "Shift-Cmd-G": "findPrev", "Cmd-Alt-F": "replace", "Shift-Cmd-Alt-F": "replaceAll", "Cmd-[": "indentLess", "Cmd-]": "indentMore", "Cmd-Backspace": "delLineLeft", fallthrough: ["basic", "emacsy"] }; keyMap["default"] = mac ? keyMap.macDefault : keyMap.pcDefault; keyMap.emacsy = { "Ctrl-F": "goCharRight", "Ctrl-B": "goCharLeft", "Ctrl-P": "goLineUp", "Ctrl-N": "goLineDown", "Alt-F": "goWordRight", "Alt-B": "goWordLeft", "Ctrl-A": "goLineStart", "Ctrl-E": "goLineEnd", "Ctrl-V": "goPageDown", "Shift-Ctrl-V": "goPageUp", "Ctrl-D": "delCharAfter", "Ctrl-H": "delCharBefore", "Alt-D": "delWordAfter", "Alt-Backspace": "delWordBefore", "Ctrl-K": "killLine", "Ctrl-T": "transposeChars" }; // KEYMAP DISPATCH function getKeyMap(val) { if (typeof val == "string") return keyMap[val]; else return val; } function lookupKey(name, maps, handle) { function lookup(map) { map = getKeyMap(map); var found = map[name]; if (found === false) return "stop"; if (found != null && handle(found)) return true; if (map.nofallthrough) return "stop"; var fallthrough = map.fallthrough; if (fallthrough == null) return false; if (Object.prototype.toString.call(fallthrough) != "[object Array]") return lookup(fallthrough); for (var i = 0, e = fallthrough.length; i < e; ++i) { var done = lookup(fallthrough[i]); if (done) return done; } return false; } for (var i = 0; i < maps.length; ++i) { var done = lookup(maps[i]); if (done) return done != "stop"; } } function isModifierKey(event) { var name = keyNames[event.keyCode]; return name == "Ctrl" || name == "Alt" || name == "Shift" || name == "Mod"; } function keyName(event, noShift) { if (opera && event.keyCode == 34 && event["char"]) return false; var name = keyNames[event.keyCode]; if (name == null || event.altGraphKey) return false; if (event.altKey) name = "Alt-" + name; if (flipCtrlCmd ? event.metaKey : event.ctrlKey) name = "Ctrl-" + name; if (flipCtrlCmd ? event.ctrlKey : event.metaKey) name = "Cmd-" + name; if (!noShift && event.shiftKey) name = "Shift-" + name; return name; } CodeMirror.lookupKey = lookupKey; CodeMirror.isModifierKey = isModifierKey; CodeMirror.keyName = keyName; // FROMTEXTAREA CodeMirror.fromTextArea = function(textarea, options) { if (!options) options = {}; options.value = textarea.value; if (!options.tabindex && textarea.tabindex) options.tabindex = textarea.tabindex; if (!options.placeholder && textarea.placeholder) options.placeholder = textarea.placeholder; // Set autofocus to true if this textarea is focused, or if it has // autofocus and no other element is focused. if (options.autofocus == null) { var hasFocus = document.body; // doc.activeElement occasionally throws on IE try { hasFocus = document.activeElement; } catch(e) {} options.autofocus = hasFocus == textarea || textarea.getAttribute("autofocus") != null && hasFocus == document.body; } function save() {textarea.value = cm.getValue();} if (textarea.form) { on(textarea.form, "submit", save); // Deplorable hack to make the submit method do the right thing. if (!options.leaveSubmitMethodAlone) { var form = textarea.form, realSubmit = form.submit; try { var wrappedSubmit = form.submit = function() { save(); form.submit = realSubmit; form.submit(); form.submit = wrappedSubmit; }; } catch(e) {} } } textarea.style.display = "none"; var cm = CodeMirror(function(node) { textarea.parentNode.insertBefore(node, textarea.nextSibling); }, options); cm.save = save; cm.getTextArea = function() { return textarea; }; cm.toTextArea = function() { save(); textarea.parentNode.removeChild(cm.getWrapperElement()); textarea.style.display = ""; if (textarea.form) { off(textarea.form, "submit", save); if (typeof textarea.form.submit == "function") textarea.form.submit = realSubmit; } }; return cm; }; // STRING STREAM // Fed to the mode parsers, provides helper functions to make // parsers more succinct. // The character stream used by a mode's parser. function StringStream(string, tabSize) { this.pos = this.start = 0; this.string = string; this.tabSize = tabSize || 8; this.lastColumnPos = this.lastColumnValue = 0; } StringStream.prototype = { eol: function() {return this.pos >= this.string.length;}, sol: function() {return this.pos == 0;}, peek: function() {return this.string.charAt(this.pos) || undefined;}, next: function() { if (this.pos < this.string.length) return this.string.charAt(this.pos++); }, eat: function(match) { var ch = this.string.charAt(this.pos); if (typeof match == "string") var ok = ch == match; else var ok = ch && (match.test ? match.test(ch) : match(ch)); if (ok) {++this.pos; return ch;} }, eatWhile: function(match) { var start = this.pos; while (this.eat(match)){} return this.pos > start; }, eatSpace: function() { var start = this.pos; while (/[\s\u00a0]/.test(this.string.charAt(this.pos))) ++this.pos; return this.pos > start; }, skipToEnd: function() {this.pos = this.string.length;}, skipTo: function(ch) { var found = this.string.indexOf(ch, this.pos); if (found > -1) {this.pos = found; return true;} }, backUp: function(n) {this.pos -= n;}, column: function() { if (this.lastColumnPos < this.start) { this.lastColumnValue = countColumn(this.string, this.start, this.tabSize, this.lastColumnPos, this.lastColumnValue); this.lastColumnPos = this.start; } return this.lastColumnValue; }, indentation: function() {return countColumn(this.string, null, this.tabSize);}, match: function(pattern, consume, caseInsensitive) { if (typeof pattern == "string") { var cased = function(str) {return caseInsensitive ? str.toLowerCase() : str;}; var substr = this.string.substr(this.pos, pattern.length); if (cased(substr) == cased(pattern)) { if (consume !== false) this.pos += pattern.length; return true; } } else { var match = this.string.slice(this.pos).match(pattern); if (match && match.index > 0) return null; if (match && consume !== false) this.pos += match[0].length; return match; } }, current: function(){return this.string.slice(this.start, this.pos);} }; CodeMirror.StringStream = StringStream; // TEXTMARKERS function TextMarker(doc, type) { this.lines = []; this.type = type; this.doc = doc; } CodeMirror.TextMarker = TextMarker; eventMixin(TextMarker); TextMarker.prototype.clear = function() { if (this.explicitlyCleared) return; var cm = this.doc.cm, withOp = cm && !cm.curOp; if (withOp) startOperation(cm); if (hasHandler(this, "clear")) { var found = this.find(); if (found) signalLater(this, "clear", found.from, found.to); } var min = null, max = null; for (var i = 0; i < this.lines.length; ++i) { var line = this.lines[i]; var span = getMarkedSpanFor(line.markedSpans, this); if (span.to != null) max = lineNo(line); line.markedSpans = removeMarkedSpan(line.markedSpans, span); if (span.from != null) min = lineNo(line); else if (this.collapsed && !lineIsHidden(this.doc, line) && cm) updateLineHeight(line, textHeight(cm.display)); } if (cm && this.collapsed && !cm.options.lineWrapping) for (var i = 0; i < this.lines.length; ++i) { var visual = visualLine(cm.doc, this.lines[i]), len = lineLength(cm.doc, visual); if (len > cm.display.maxLineLength) { cm.display.maxLine = visual; cm.display.maxLineLength = len; cm.display.maxLineChanged = true; } } if (min != null && cm) regChange(cm, min, max + 1); this.lines.length = 0; this.explicitlyCleared = true; if (this.atomic && this.doc.cantEdit) { this.doc.cantEdit = false; if (cm) reCheckSelection(cm); } if (withOp) endOperation(cm); }; TextMarker.prototype.find = function() { var from, to; for (var i = 0; i < this.lines.length; ++i) { var line = this.lines[i]; var span = getMarkedSpanFor(line.markedSpans, this); if (span.from != null || span.to != null) { var found = lineNo(line); if (span.from != null) from = Pos(found, span.from); if (span.to != null) to = Pos(found, span.to); } } if (this.type == "bookmark") return from; return from && {from: from, to: to}; }; TextMarker.prototype.changed = function() { var pos = this.find(), cm = this.doc.cm; if (!pos || !cm) return; if (this.type != "bookmark") pos = pos.from; var line = getLine(this.doc, pos.line); clearCachedMeasurement(cm, line); if (pos.line >= cm.display.showingFrom && pos.line < cm.display.showingTo) { for (var node = cm.display.lineDiv.firstChild; node; node = node.nextSibling) if (node.lineObj == line) { if (node.offsetHeight != line.height) updateLineHeight(line, node.offsetHeight); break; } runInOp(cm, function() { cm.curOp.selectionChanged = cm.curOp.forceUpdate = cm.curOp.updateMaxLine = true; }); } }; TextMarker.prototype.attachLine = function(line) { if (!this.lines.length && this.doc.cm) { var op = this.doc.cm.curOp; if (!op.maybeHiddenMarkers || indexOf(op.maybeHiddenMarkers, this) == -1) (op.maybeUnhiddenMarkers || (op.maybeUnhiddenMarkers = [])).push(this); } this.lines.push(line); }; TextMarker.prototype.detachLine = function(line) { this.lines.splice(indexOf(this.lines, line), 1); if (!this.lines.length && this.doc.cm) { var op = this.doc.cm.curOp; (op.maybeHiddenMarkers || (op.maybeHiddenMarkers = [])).push(this); } }; function markText(doc, from, to, options, type) { if (options && options.shared) return markTextShared(doc, from, to, options, type); if (doc.cm && !doc.cm.curOp) return operation(doc.cm, markText)(doc, from, to, options, type); var marker = new TextMarker(doc, type); if (type == "range" && !posLess(from, to)) return marker; if (options) copyObj(options, marker); if (marker.replacedWith) { marker.collapsed = true; marker.replacedWith = elt("span", [marker.replacedWith], "CodeMirror-widget"); if (!options.handleMouseEvents) marker.replacedWith.ignoreEvents = true; } if (marker.collapsed) sawCollapsedSpans = true; if (marker.addToHistory) addToHistory(doc, {from: from, to: to, origin: "markText"}, {head: doc.sel.head, anchor: doc.sel.anchor}, NaN); var curLine = from.line, size = 0, collapsedAtStart, collapsedAtEnd, cm = doc.cm, updateMaxLine; doc.iter(curLine, to.line + 1, function(line) { if (cm && marker.collapsed && !cm.options.lineWrapping && visualLine(doc, line) == cm.display.maxLine) updateMaxLine = true; var span = {from: null, to: null, marker: marker}; size += line.text.length; if (curLine == from.line) {span.from = from.ch; size -= from.ch;} if (curLine == to.line) {span.to = to.ch; size -= line.text.length - to.ch;} if (marker.collapsed) { if (curLine == to.line) collapsedAtEnd = collapsedSpanAt(line, to.ch); if (curLine == from.line) collapsedAtStart = collapsedSpanAt(line, from.ch); else updateLineHeight(line, 0); } addMarkedSpan(line, span); ++curLine; }); if (marker.collapsed) doc.iter(from.line, to.line + 1, function(line) { if (lineIsHidden(doc, line)) updateLineHeight(line, 0); }); if (marker.clearOnEnter) on(marker, "beforeCursorEnter", function() { marker.clear(); }); if (marker.readOnly) { sawReadOnlySpans = true; if (doc.history.done.length || doc.history.undone.length) doc.clearHistory(); } if (marker.collapsed) { if (collapsedAtStart != collapsedAtEnd) throw new Error("Inserting collapsed marker overlapping an existing one"); marker.size = size; marker.atomic = true; } if (cm) { if (updateMaxLine) cm.curOp.updateMaxLine = true; if (marker.className || marker.title || marker.startStyle || marker.endStyle || marker.collapsed) regChange(cm, from.line, to.line + 1); if (marker.atomic) reCheckSelection(cm); } return marker; } // SHARED TEXTMARKERS function SharedTextMarker(markers, primary) { this.markers = markers; this.primary = primary; for (var i = 0, me = this; i < markers.length; ++i) { markers[i].parent = this; on(markers[i], "clear", function(){me.clear();}); } } CodeMirror.SharedTextMarker = SharedTextMarker; eventMixin(SharedTextMarker); SharedTextMarker.prototype.clear = function() { if (this.explicitlyCleared) return; this.explicitlyCleared = true; for (var i = 0; i < this.markers.length; ++i) this.markers[i].clear(); signalLater(this, "clear"); }; SharedTextMarker.prototype.find = function() { return this.primary.find(); }; function markTextShared(doc, from, to, options, type) { options = copyObj(options); options.shared = false; var markers = [markText(doc, from, to, options, type)], primary = markers[0]; var widget = options.replacedWith; linkedDocs(doc, function(doc) { if (widget) options.replacedWith = widget.cloneNode(true); markers.push(markText(doc, clipPos(doc, from), clipPos(doc, to), options, type)); for (var i = 0; i < doc.linked.length; ++i) if (doc.linked[i].isParent) return; primary = lst(markers); }); return new SharedTextMarker(markers, primary); } // TEXTMARKER SPANS function getMarkedSpanFor(spans, marker) { if (spans) for (var i = 0; i < spans.length; ++i) { var span = spans[i]; if (span.marker == marker) return span; } } function removeMarkedSpan(spans, span) { for (var r, i = 0; i < spans.length; ++i) if (spans[i] != span) (r || (r = [])).push(spans[i]); return r; } function addMarkedSpan(line, span) { line.markedSpans = line.markedSpans ? line.markedSpans.concat([span]) : [span]; span.marker.attachLine(line); } function markedSpansBefore(old, startCh, isInsert) { if (old) for (var i = 0, nw; i < old.length; ++i) { var span = old[i], marker = span.marker; var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= startCh : span.from < startCh); if (startsBefore || marker.type == "bookmark" && span.from == startCh && (!isInsert || !span.marker.insertLeft)) { var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= startCh : span.to > startCh); (nw || (nw = [])).push({from: span.from, to: endsAfter ? null : span.to, marker: marker}); } } return nw; } function markedSpansAfter(old, endCh, isInsert) { if (old) for (var i = 0, nw; i < old.length; ++i) { var span = old[i], marker = span.marker; var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= endCh : span.to > endCh); if (endsAfter || marker.type == "bookmark" && span.from == endCh && (!isInsert || span.marker.insertLeft)) { var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= endCh : span.from < endCh); (nw || (nw = [])).push({from: startsBefore ? null : span.from - endCh, to: span.to == null ? null : span.to - endCh, marker: marker}); } } return nw; } function stretchSpansOverChange(doc, change) { var oldFirst = isLine(doc, change.from.line) && getLine(doc, change.from.line).markedSpans; var oldLast = isLine(doc, change.to.line) && getLine(doc, change.to.line).markedSpans; if (!oldFirst && !oldLast) return null; var startCh = change.from.ch, endCh = change.to.ch, isInsert = posEq(change.from, change.to); // Get the spans that 'stick out' on both sides var first = markedSpansBefore(oldFirst, startCh, isInsert); var last = markedSpansAfter(oldLast, endCh, isInsert); // Next, merge those two ends var sameLine = change.text.length == 1, offset = lst(change.text).length + (sameLine ? startCh : 0); if (first) { // Fix up .to properties of first for (var i = 0; i < first.length; ++i) { var span = first[i]; if (span.to == null) { var found = getMarkedSpanFor(last, span.marker); if (!found) span.to = startCh; else if (sameLine) span.to = found.to == null ? null : found.to + offset; } } } if (last) { // Fix up .from in last (or move them into first in case of sameLine) for (var i = 0; i < last.length; ++i) { var span = last[i]; if (span.to != null) span.to += offset; if (span.from == null) { var found = getMarkedSpanFor(first, span.marker); if (!found) { span.from = offset; if (sameLine) (first || (first = [])).push(span); } } else { span.from += offset; if (sameLine) (first || (first = [])).push(span); } } } if (sameLine && first) { // Make sure we didn't create any zero-length spans for (var i = 0; i < first.length; ++i) if (first[i].from != null && first[i].from == first[i].to && first[i].marker.type != "bookmark") first.splice(i--, 1); if (!first.length) first = null; } var newMarkers = [first]; if (!sameLine) { // Fill gap with whole-line-spans var gap = change.text.length - 2, gapMarkers; if (gap > 0 && first) for (var i = 0; i < first.length; ++i) if (first[i].to == null) (gapMarkers || (gapMarkers = [])).push({from: null, to: null, marker: first[i].marker}); for (var i = 0; i < gap; ++i) newMarkers.push(gapMarkers); newMarkers.push(last); } return newMarkers; } function mergeOldSpans(doc, change) { var old = getOldSpans(doc, change); var stretched = stretchSpansOverChange(doc, change); if (!old) return stretched; if (!stretched) return old; for (var i = 0; i < old.length; ++i) { var oldCur = old[i], stretchCur = stretched[i]; if (oldCur && stretchCur) { spans: for (var j = 0; j < stretchCur.length; ++j) { var span = stretchCur[j]; for (var k = 0; k < oldCur.length; ++k) if (oldCur[k].marker == span.marker) continue spans; oldCur.push(span); } } else if (stretchCur) { old[i] = stretchCur; } } return old; } function removeReadOnlyRanges(doc, from, to) { var markers = null; doc.iter(from.line, to.line + 1, function(line) { if (line.markedSpans) for (var i = 0; i < line.markedSpans.length; ++i) { var mark = line.markedSpans[i].marker; if (mark.readOnly && (!markers || indexOf(markers, mark) == -1)) (markers || (markers = [])).push(mark); } }); if (!markers) return null; var parts = [{from: from, to: to}]; for (var i = 0; i < markers.length; ++i) { var mk = markers[i], m = mk.find(); for (var j = 0; j < parts.length; ++j) { var p = parts[j]; if (posLess(p.to, m.from) || posLess(m.to, p.from)) continue; var newParts = [j, 1]; if (posLess(p.from, m.from) || !mk.inclusiveLeft && posEq(p.from, m.from)) newParts.push({from: p.from, to: m.from}); if (posLess(m.to, p.to) || !mk.inclusiveRight && posEq(p.to, m.to)) newParts.push({from: m.to, to: p.to}); parts.splice.apply(parts, newParts); j += newParts.length - 1; } } return parts; } function collapsedSpanAt(line, ch) { var sps = sawCollapsedSpans && line.markedSpans, found; if (sps) for (var sp, i = 0; i < sps.length; ++i) { sp = sps[i]; if (!sp.marker.collapsed) continue; if ((sp.from == null || sp.from < ch) && (sp.to == null || sp.to > ch) && (!found || found.width < sp.marker.width)) found = sp.marker; } return found; } function collapsedSpanAtStart(line) { return collapsedSpanAt(line, -1); } function collapsedSpanAtEnd(line) { return collapsedSpanAt(line, line.text.length + 1); } function visualLine(doc, line) { var merged; while (merged = collapsedSpanAtStart(line)) line = getLine(doc, merged.find().from.line); return line; } function lineIsHidden(doc, line) { var sps = sawCollapsedSpans && line.markedSpans; if (sps) for (var sp, i = 0; i < sps.length; ++i) { sp = sps[i]; if (!sp.marker.collapsed) continue; if (sp.from == null) return true; if (sp.marker.replacedWith) continue; if (sp.from == 0 && sp.marker.inclusiveLeft && lineIsHiddenInner(doc, line, sp)) return true; } } function lineIsHiddenInner(doc, line, span) { if (span.to == null) { var end = span.marker.find().to, endLine = getLine(doc, end.line); return lineIsHiddenInner(doc, endLine, getMarkedSpanFor(endLine.markedSpans, span.marker)); } if (span.marker.inclusiveRight && span.to == line.text.length) return true; for (var sp, i = 0; i < line.markedSpans.length; ++i) { sp = line.markedSpans[i]; if (sp.marker.collapsed && !sp.marker.replacedWith && sp.from == span.to && (sp.marker.inclusiveLeft || span.marker.inclusiveRight) && lineIsHiddenInner(doc, line, sp)) return true; } } function detachMarkedSpans(line) { var spans = line.markedSpans; if (!spans) return; for (var i = 0; i < spans.length; ++i) spans[i].marker.detachLine(line); line.markedSpans = null; } function attachMarkedSpans(line, spans) { if (!spans) return; for (var i = 0; i < spans.length; ++i) spans[i].marker.attachLine(line); line.markedSpans = spans; } // LINE WIDGETS var LineWidget = CodeMirror.LineWidget = function(cm, node, options) { if (options) for (var opt in options) if (options.hasOwnProperty(opt)) this[opt] = options[opt]; this.cm = cm; this.node = node; }; eventMixin(LineWidget); function widgetOperation(f) { return function() { var withOp = !this.cm.curOp; if (withOp) startOperation(this.cm); try {var result = f.apply(this, arguments);} finally {if (withOp) endOperation(this.cm);} return result; }; } LineWidget.prototype.clear = widgetOperation(function() { var ws = this.line.widgets, no = lineNo(this.line); if (no == null || !ws) return; for (var i = 0; i < ws.length; ++i) if (ws[i] == this) ws.splice(i--, 1); if (!ws.length) this.line.widgets = null; var aboveVisible = heightAtLine(this.cm, this.line) < this.cm.doc.scrollTop; updateLineHeight(this.line, Math.max(0, this.line.height - widgetHeight(this))); if (aboveVisible) addToScrollPos(this.cm, 0, -this.height); regChange(this.cm, no, no + 1); }); LineWidget.prototype.changed = widgetOperation(function() { var oldH = this.height; this.height = null; var diff = widgetHeight(this) - oldH; if (!diff) return; updateLineHeight(this.line, this.line.height + diff); var no = lineNo(this.line); regChange(this.cm, no, no + 1); }); function widgetHeight(widget) { if (widget.height != null) return widget.height; if (!widget.node.parentNode || widget.node.parentNode.nodeType != 1) removeChildrenAndAdd(widget.cm.display.measure, elt("div", [widget.node], null, "position: relative")); return widget.height = widget.node.offsetHeight; } function addLineWidget(cm, handle, node, options) { var widget = new LineWidget(cm, node, options); if (widget.noHScroll) cm.display.alignWidgets = true; changeLine(cm, handle, function(line) { var widgets = line.widgets || (line.widgets = []); if (widget.insertAt == null) widgets.push(widget); else widgets.splice(Math.min(widgets.length - 1, Math.max(0, widget.insertAt)), 0, widget); widget.line = line; if (!lineIsHidden(cm.doc, line) || widget.showIfHidden) { var aboveVisible = heightAtLine(cm, line) < cm.doc.scrollTop; updateLineHeight(line, line.height + widgetHeight(widget)); if (aboveVisible) addToScrollPos(cm, 0, widget.height); } return true; }); return widget; } // LINE DATA STRUCTURE // Line objects. These hold state related to a line, including // highlighting info (the styles array). var Line = CodeMirror.Line = function(text, markedSpans, estimateHeight) { this.text = text; attachMarkedSpans(this, markedSpans); this.height = estimateHeight ? estimateHeight(this) : 1; }; eventMixin(Line); function updateLine(line, text, markedSpans, estimateHeight) { line.text = text; if (line.stateAfter) line.stateAfter = null; if (line.styles) line.styles = null; if (line.order != null) line.order = null; detachMarkedSpans(line); attachMarkedSpans(line, markedSpans); var estHeight = estimateHeight ? estimateHeight(line) : 1; if (estHeight != line.height) updateLineHeight(line, estHeight); } function cleanUpLine(line) { line.parent = null; detachMarkedSpans(line); } // Run the given mode's parser over a line, update the styles // array, which contains alternating fragments of text and CSS // classes. function runMode(cm, text, mode, state, f) { var flattenSpans = mode.flattenSpans; if (flattenSpans == null) flattenSpans = cm.options.flattenSpans; var curStart = 0, curStyle = null; var stream = new StringStream(text, cm.options.tabSize), style; if (text == "" && mode.blankLine) mode.blankLine(state); while (!stream.eol()) { if (stream.pos > cm.options.maxHighlightLength) { flattenSpans = false; stream.pos = text.length; style = null; } else { style = mode.token(stream, state); } if (!flattenSpans || curStyle != style) { if (curStart < stream.start) f(stream.start, curStyle); curStart = stream.start; curStyle = style; } stream.start = stream.pos; } while (curStart < stream.pos) { // Webkit seems to refuse to render text nodes longer than 57444 characters var pos = Math.min(stream.pos, curStart + 50000); f(pos, curStyle); curStart = pos; } } function highlightLine(cm, line, state) { // A styles array always starts with a number identifying the // mode/overlays that it is based on (for easy invalidation). var st = [cm.state.modeGen]; // Compute the base array of styles runMode(cm, line.text, cm.doc.mode, state, function(end, style) {st.push(end, style);}); // Run overlays, adjust style array. for (var o = 0; o < cm.state.overlays.length; ++o) { var overlay = cm.state.overlays[o], i = 1, at = 0; runMode(cm, line.text, overlay.mode, true, function(end, style) { var start = i; // Ensure there's a token end at the current position, and that i points at it while (at < end) { var i_end = st[i]; if (i_end > end) st.splice(i, 1, end, st[i+1], i_end); i += 2; at = Math.min(end, i_end); } if (!style) return; if (overlay.opaque) { st.splice(start, i - start, end, style); i = start + 2; } else { for (; start < i; start += 2) { var cur = st[start+1]; st[start+1] = cur ? cur + " " + style : style; } } }); } return st; } function getLineStyles(cm, line) { if (!line.styles || line.styles[0] != cm.state.modeGen) line.styles = highlightLine(cm, line, line.stateAfter = getStateBefore(cm, lineNo(line))); return line.styles; } // Lightweight form of highlight -- proceed over this line and // update state, but don't save a style array. function processLine(cm, line, state) { var mode = cm.doc.mode; var stream = new StringStream(line.text, cm.options.tabSize); if (line.text == "" && mode.blankLine) mode.blankLine(state); while (!stream.eol() && stream.pos <= cm.options.maxHighlightLength) { mode.token(stream, state); stream.start = stream.pos; } } var styleToClassCache = {}; function interpretTokenStyle(style, builder) { if (!style) return null; for (;;) { var lineClass = style.match(/(?:^|\s)line-(background-)?(\S+)/); if (!lineClass) break; style = style.slice(0, lineClass.index) + style.slice(lineClass.index + lineClass[0].length); var prop = lineClass[1] ? "bgClass" : "textClass"; if (builder[prop] == null) builder[prop] = lineClass[2]; else if (!(new RegExp("(?:^|\s)" + lineClass[2] + "(?:$|\s)")).test(builder[prop])) builder[prop] += " " + lineClass[2]; } return styleToClassCache[style] || (styleToClassCache[style] = "cm-" + style.replace(/ +/g, " cm-")); } function buildLineContent(cm, realLine, measure, copyWidgets) { var merged, line = realLine, empty = true; while (merged = collapsedSpanAtStart(line)) line = getLine(cm.doc, merged.find().from.line); var builder = {pre: elt("pre"), col: 0, pos: 0, measure: null, measuredSomething: false, cm: cm, copyWidgets: copyWidgets}; do { if (line.text) empty = false; builder.measure = line == realLine && measure; builder.pos = 0; builder.addToken = builder.measure ? buildTokenMeasure : buildToken; if ((ie || webkit) && cm.getOption("lineWrapping")) builder.addToken = buildTokenSplitSpaces(builder.addToken); var next = insertLineContent(line, builder, getLineStyles(cm, line)); if (measure && line == realLine && !builder.measuredSomething) { measure[0] = builder.pre.appendChild(zeroWidthElement(cm.display.measure)); builder.measuredSomething = true; } if (next) line = getLine(cm.doc, next.to.line); } while (next); if (measure && !builder.measuredSomething && !measure[0]) measure[0] = builder.pre.appendChild(empty ? elt("span", "\u00a0") : zeroWidthElement(cm.display.measure)); if (!builder.pre.firstChild && !lineIsHidden(cm.doc, realLine)) builder.pre.appendChild(document.createTextNode("\u00a0")); var order; // Work around problem with the reported dimensions of single-char // direction spans on IE (issue #1129). See also the comment in // cursorCoords. if (measure && ie && (order = getOrder(line))) { var l = order.length - 1; if (order[l].from == order[l].to) --l; var last = order[l], prev = order[l - 1]; if (last.from + 1 == last.to && prev && last.level < prev.level) { var span = measure[builder.pos - 1]; if (span) span.parentNode.insertBefore(span.measureRight = zeroWidthElement(cm.display.measure), span.nextSibling); } } var textClass = builder.textClass ? builder.textClass + " " + (realLine.textClass || "") : realLine.textClass; if (textClass) builder.pre.className = textClass; signal(cm, "renderLine", cm, realLine, builder.pre); return builder; } var tokenSpecialChars = /[\t\u0000-\u0019\u00ad\u200b\u2028\u2029\uFEFF]/g; function buildToken(builder, text, style, startStyle, endStyle, title) { if (!text) return; if (!tokenSpecialChars.test(text)) { builder.col += text.length; var content = document.createTextNode(text); } else { var content = document.createDocumentFragment(), pos = 0; while (true) { tokenSpecialChars.lastIndex = pos; var m = tokenSpecialChars.exec(text); var skipped = m ? m.index - pos : text.length - pos; if (skipped) { content.appendChild(document.createTextNode(text.slice(pos, pos + skipped))); builder.col += skipped; } if (!m) break; pos += skipped + 1; if (m[0] == "\t") { var tabSize = builder.cm.options.tabSize, tabWidth = tabSize - builder.col % tabSize; content.appendChild(elt("span", spaceStr(tabWidth), "cm-tab")); builder.col += tabWidth; } else { var token = elt("span", "\u2022", "cm-invalidchar"); token.title = "\\u" + m[0].charCodeAt(0).toString(16); content.appendChild(token); builder.col += 1; } } } if (style || startStyle || endStyle || builder.measure) { var fullStyle = style || ""; if (startStyle) fullStyle += startStyle; if (endStyle) fullStyle += endStyle; var token = elt("span", [content], fullStyle); if (title) token.title = title; return builder.pre.appendChild(token); } builder.pre.appendChild(content); } function buildTokenMeasure(builder, text, style, startStyle, endStyle) { var wrapping = builder.cm.options.lineWrapping; for (var i = 0; i < text.length; ++i) { var ch = text.charAt(i), start = i == 0; if (ch >= "\ud800" && ch < "\udbff" && i < text.length - 1) { ch = text.slice(i, i + 2); ++i; } else if (i && wrapping && spanAffectsWrapping(text, i)) { builder.pre.appendChild(elt("wbr")); } var old = builder.measure[builder.pos]; var span = builder.measure[builder.pos] = buildToken(builder, ch, style, start && startStyle, i == text.length - 1 && endStyle); if (old) span.leftSide = old.leftSide || old; // In IE single-space nodes wrap differently than spaces // embedded in larger text nodes, except when set to // white-space: normal (issue #1268). if (ie && wrapping && ch == " " && i && !/\s/.test(text.charAt(i - 1)) && i < text.length - 1 && !/\s/.test(text.charAt(i + 1))) span.style.whiteSpace = "normal"; builder.pos += ch.length; } if (text.length) builder.measuredSomething = true; } function buildTokenSplitSpaces(inner) { function split(old) { var out = " "; for (var i = 0; i < old.length - 2; ++i) out += i % 2 ? " " : "\u00a0"; out += " "; return out; } return function(builder, text, style, startStyle, endStyle, title) { return inner(builder, text.replace(/ {3,}/, split), style, startStyle, endStyle, title); }; } function buildCollapsedSpan(builder, size, marker, ignoreWidget) { var widget = !ignoreWidget && marker.replacedWith; if (widget) { if (builder.copyWidgets) widget = widget.cloneNode(true); builder.pre.appendChild(widget); if (builder.measure) { if (size) { builder.measure[builder.pos] = widget; } else { var elt = zeroWidthElement(builder.cm.display.measure); if (marker.type == "bookmark" && !marker.insertLeft) builder.measure[builder.pos] = builder.pre.appendChild(elt); else if (builder.measure[builder.pos]) return; else builder.measure[builder.pos] = builder.pre.insertBefore(elt, widget); } builder.measuredSomething = true; } } builder.pos += size; } // Outputs a number of spans to make up a line, taking highlighting // and marked text into account. function insertLineContent(line, builder, styles) { var spans = line.markedSpans, allText = line.text, at = 0; if (!spans) { for (var i = 1; i < styles.length; i+=2) builder.addToken(builder, allText.slice(at, at = styles[i]), interpretTokenStyle(styles[i+1], builder)); return; } var len = allText.length, pos = 0, i = 1, text = "", style; var nextChange = 0, spanStyle, spanEndStyle, spanStartStyle, title, collapsed; for (;;) { if (nextChange == pos) { // Update current marker set spanStyle = spanEndStyle = spanStartStyle = title = ""; collapsed = null; nextChange = Infinity; var foundBookmarks = []; for (var j = 0; j < spans.length; ++j) { var sp = spans[j], m = sp.marker; if (sp.from <= pos && (sp.to == null || sp.to > pos)) { if (sp.to != null && nextChange > sp.to) { nextChange = sp.to; spanEndStyle = ""; } if (m.className) spanStyle += " " + m.className; if (m.startStyle && sp.from == pos) spanStartStyle += " " + m.startStyle; if (m.endStyle && sp.to == nextChange) spanEndStyle += " " + m.endStyle; if (m.title && !title) title = m.title; if (m.collapsed && (!collapsed || collapsed.marker.size < m.size)) collapsed = sp; } else if (sp.from > pos && nextChange > sp.from) { nextChange = sp.from; } if (m.type == "bookmark" && sp.from == pos && m.replacedWith) foundBookmarks.push(m); } if (collapsed && (collapsed.from || 0) == pos) { buildCollapsedSpan(builder, (collapsed.to == null ? len : collapsed.to) - pos, collapsed.marker, collapsed.from == null); if (collapsed.to == null) return collapsed.marker.find(); } if (!collapsed && foundBookmarks.length) for (var j = 0; j < foundBookmarks.length; ++j) buildCollapsedSpan(builder, 0, foundBookmarks[j]); } if (pos >= len) break; var upto = Math.min(len, nextChange); while (true) { if (text) { var end = pos + text.length; if (!collapsed) { var tokenText = end > upto ? text.slice(0, upto - pos) : text; builder.addToken(builder, tokenText, style ? style + spanStyle : spanStyle, spanStartStyle, pos + tokenText.length == nextChange ? spanEndStyle : "", title); } if (end >= upto) {text = text.slice(upto - pos); pos = upto; break;} pos = end; spanStartStyle = ""; } text = allText.slice(at, at = styles[i++]); style = interpretTokenStyle(styles[i++], builder); } } } // DOCUMENT DATA STRUCTURE function updateDoc(doc, change, markedSpans, selAfter, estimateHeight) { function spansFor(n) {return markedSpans ? markedSpans[n] : null;} function update(line, text, spans) { updateLine(line, text, spans, estimateHeight); signalLater(line, "change", line, change); } var from = change.from, to = change.to, text = change.text; var firstLine = getLine(doc, from.line), lastLine = getLine(doc, to.line); var lastText = lst(text), lastSpans = spansFor(text.length - 1), nlines = to.line - from.line; // First adjust the line structure if (from.ch == 0 && to.ch == 0 && lastText == "") { // This is a whole-line replace. Treated specially to make // sure line objects move the way they are supposed to. for (var i = 0, e = text.length - 1, added = []; i < e; ++i) added.push(new Line(text[i], spansFor(i), estimateHeight)); update(lastLine, lastLine.text, lastSpans); if (nlines) doc.remove(from.line, nlines); if (added.length) doc.insert(from.line, added); } else if (firstLine == lastLine) { if (text.length == 1) { update(firstLine, firstLine.text.slice(0, from.ch) + lastText + firstLine.text.slice(to.ch), lastSpans); } else { for (var added = [], i = 1, e = text.length - 1; i < e; ++i) added.push(new Line(text[i], spansFor(i), estimateHeight)); added.push(new Line(lastText + firstLine.text.slice(to.ch), lastSpans, estimateHeight)); update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0)); doc.insert(from.line + 1, added); } } else if (text.length == 1) { update(firstLine, firstLine.text.slice(0, from.ch) + text[0] + lastLine.text.slice(to.ch), spansFor(0)); doc.remove(from.line + 1, nlines); } else { update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0)); update(lastLine, lastText + lastLine.text.slice(to.ch), lastSpans); for (var i = 1, e = text.length - 1, added = []; i < e; ++i) added.push(new Line(text[i], spansFor(i), estimateHeight)); if (nlines > 1) doc.remove(from.line + 1, nlines - 1); doc.insert(from.line + 1, added); } signalLater(doc, "change", doc, change); setSelection(doc, selAfter.anchor, selAfter.head, null, true); } function LeafChunk(lines) { this.lines = lines; this.parent = null; for (var i = 0, e = lines.length, height = 0; i < e; ++i) { lines[i].parent = this; height += lines[i].height; } this.height = height; } LeafChunk.prototype = { chunkSize: function() { return this.lines.length; }, removeInner: function(at, n) { for (var i = at, e = at + n; i < e; ++i) { var line = this.lines[i]; this.height -= line.height; cleanUpLine(line); signalLater(line, "delete"); } this.lines.splice(at, n); }, collapse: function(lines) { lines.splice.apply(lines, [lines.length, 0].concat(this.lines)); }, insertInner: function(at, lines, height) { this.height += height; this.lines = this.lines.slice(0, at).concat(lines).concat(this.lines.slice(at)); for (var i = 0, e = lines.length; i < e; ++i) lines[i].parent = this; }, iterN: function(at, n, op) { for (var e = at + n; at < e; ++at) if (op(this.lines[at])) return true; } }; function BranchChunk(children) { this.children = children; var size = 0, height = 0; for (var i = 0, e = children.length; i < e; ++i) { var ch = children[i]; size += ch.chunkSize(); height += ch.height; ch.parent = this; } this.size = size; this.height = height; this.parent = null; } BranchChunk.prototype = { chunkSize: function() { return this.size; }, removeInner: function(at, n) { this.size -= n; for (var i = 0; i < this.children.length; ++i) { var child = this.children[i], sz = child.chunkSize(); if (at < sz) { var rm = Math.min(n, sz - at), oldHeight = child.height; child.removeInner(at, rm); this.height -= oldHeight - child.height; if (sz == rm) { this.children.splice(i--, 1); child.parent = null; } if ((n -= rm) == 0) break; at = 0; } else at -= sz; } if (this.size - n < 25) { var lines = []; this.collapse(lines); this.children = [new LeafChunk(lines)]; this.children[0].parent = this; } }, collapse: function(lines) { for (var i = 0, e = this.children.length; i < e; ++i) this.children[i].collapse(lines); }, insertInner: function(at, lines, height) { this.size += lines.length; this.height += height; for (var i = 0, e = this.children.length; i < e; ++i) { var child = this.children[i], sz = child.chunkSize(); if (at <= sz) { child.insertInner(at, lines, height); if (child.lines && child.lines.length > 50) { while (child.lines.length > 50) { var spilled = child.lines.splice(child.lines.length - 25, 25); var newleaf = new LeafChunk(spilled); child.height -= newleaf.height; this.children.splice(i + 1, 0, newleaf); newleaf.parent = this; } this.maybeSpill(); } break; } at -= sz; } }, maybeSpill: function() { if (this.children.length <= 10) return; var me = this; do { var spilled = me.children.splice(me.children.length - 5, 5); var sibling = new BranchChunk(spilled); if (!me.parent) { // Become the parent node var copy = new BranchChunk(me.children); copy.parent = me; me.children = [copy, sibling]; me = copy; } else { me.size -= sibling.size; me.height -= sibling.height; var myIndex = indexOf(me.parent.children, me); me.parent.children.splice(myIndex + 1, 0, sibling); } sibling.parent = me.parent; } while (me.children.length > 10); me.parent.maybeSpill(); }, iterN: function(at, n, op) { for (var i = 0, e = this.children.length; i < e; ++i) { var child = this.children[i], sz = child.chunkSize(); if (at < sz) { var used = Math.min(n, sz - at); if (child.iterN(at, used, op)) return true; if ((n -= used) == 0) break; at = 0; } else at -= sz; } } }; var nextDocId = 0; var Doc = CodeMirror.Doc = function(text, mode, firstLine) { if (!(this instanceof Doc)) return new Doc(text, mode, firstLine); if (firstLine == null) firstLine = 0; BranchChunk.call(this, [new LeafChunk([new Line("", null)])]); this.first = firstLine; this.scrollTop = this.scrollLeft = 0; this.cantEdit = false; this.history = makeHistory(); this.cleanGeneration = 1; this.frontier = firstLine; var start = Pos(firstLine, 0); this.sel = {from: start, to: start, head: start, anchor: start, shift: false, extend: false, goalColumn: null}; this.id = ++nextDocId; this.modeOption = mode; if (typeof text == "string") text = splitLines(text); updateDoc(this, {from: start, to: start, text: text}, null, {head: start, anchor: start}); }; Doc.prototype = createObj(BranchChunk.prototype, { constructor: Doc, iter: function(from, to, op) { if (op) this.iterN(from - this.first, to - from, op); else this.iterN(this.first, this.first + this.size, from); }, insert: function(at, lines) { var height = 0; for (var i = 0, e = lines.length; i < e; ++i) height += lines[i].height; this.insertInner(at - this.first, lines, height); }, remove: function(at, n) { this.removeInner(at - this.first, n); }, getValue: function(lineSep) { var lines = getLines(this, this.first, this.first + this.size); if (lineSep === false) return lines; return lines.join(lineSep || "\n"); }, setValue: function(code) { var top = Pos(this.first, 0), last = this.first + this.size - 1; makeChange(this, {from: top, to: Pos(last, getLine(this, last).text.length), text: splitLines(code), origin: "setValue"}, {head: top, anchor: top}, true); }, replaceRange: function(code, from, to, origin) { from = clipPos(this, from); to = to ? clipPos(this, to) : from; replaceRange(this, code, from, to, origin); }, getRange: function(from, to, lineSep) { var lines = getBetween(this, clipPos(this, from), clipPos(this, to)); if (lineSep === false) return lines; return lines.join(lineSep || "\n"); }, getLine: function(line) {var l = this.getLineHandle(line); return l && l.text;}, setLine: function(line, text) { if (isLine(this, line)) replaceRange(this, text, Pos(line, 0), clipPos(this, Pos(line))); }, removeLine: function(line) { if (line) replaceRange(this, "", clipPos(this, Pos(line - 1)), clipPos(this, Pos(line))); else replaceRange(this, "", Pos(0, 0), clipPos(this, Pos(1, 0))); }, getLineHandle: function(line) {if (isLine(this, line)) return getLine(this, line);}, getLineNumber: function(line) {return lineNo(line);}, getLineHandleVisualStart: function(line) { if (typeof line == "number") line = getLine(this, line); return visualLine(this, line); }, lineCount: function() {return this.size;}, firstLine: function() {return this.first;}, lastLine: function() {return this.first + this.size - 1;}, clipPos: function(pos) {return clipPos(this, pos);}, getCursor: function(start) { var sel = this.sel, pos; if (start == null || start == "head") pos = sel.head; else if (start == "anchor") pos = sel.anchor; else if (start == "end" || start === false) pos = sel.to; else pos = sel.from; return copyPos(pos); }, somethingSelected: function() {return !posEq(this.sel.head, this.sel.anchor);}, setCursor: docOperation(function(line, ch, extend) { var pos = clipPos(this, typeof line == "number" ? Pos(line, ch || 0) : line); if (extend) extendSelection(this, pos); else setSelection(this, pos, pos); }), setSelection: docOperation(function(anchor, head, bias) { setSelection(this, clipPos(this, anchor), clipPos(this, head || anchor), bias); }), extendSelection: docOperation(function(from, to, bias) { extendSelection(this, clipPos(this, from), to && clipPos(this, to), bias); }), getSelection: function(lineSep) {return this.getRange(this.sel.from, this.sel.to, lineSep);}, replaceSelection: function(code, collapse, origin) { makeChange(this, {from: this.sel.from, to: this.sel.to, text: splitLines(code), origin: origin}, collapse || "around"); }, undo: docOperation(function() {makeChangeFromHistory(this, "undo");}), redo: docOperation(function() {makeChangeFromHistory(this, "redo");}), setExtending: function(val) {this.sel.extend = val;}, historySize: function() { var hist = this.history; return {undo: hist.done.length, redo: hist.undone.length}; }, clearHistory: function() {this.history = makeHistory(this.history.maxGeneration);}, markClean: function() { this.cleanGeneration = this.changeGeneration(); }, changeGeneration: function() { this.history.lastOp = this.history.lastOrigin = null; return this.history.generation; }, isClean: function (gen) { return this.history.generation == (gen || this.cleanGeneration); }, getHistory: function() { return {done: copyHistoryArray(this.history.done), undone: copyHistoryArray(this.history.undone)}; }, setHistory: function(histData) { var hist = this.history = makeHistory(this.history.maxGeneration); hist.done = histData.done.slice(0); hist.undone = histData.undone.slice(0); }, markText: function(from, to, options) { return markText(this, clipPos(this, from), clipPos(this, to), options, "range"); }, setBookmark: function(pos, options) { var realOpts = {replacedWith: options && (options.nodeType == null ? options.widget : options), insertLeft: options && options.insertLeft}; pos = clipPos(this, pos); return markText(this, pos, pos, realOpts, "bookmark"); }, findMarksAt: function(pos) { pos = clipPos(this, pos); var markers = [], spans = getLine(this, pos.line).markedSpans; if (spans) for (var i = 0; i < spans.length; ++i) { var span = spans[i]; if ((span.from == null || span.from <= pos.ch) && (span.to == null || span.to >= pos.ch)) markers.push(span.marker.parent || span.marker); } return markers; }, getAllMarks: function() { var markers = []; this.iter(function(line) { var sps = line.markedSpans; if (sps) for (var i = 0; i < sps.length; ++i) if (sps[i].from != null) markers.push(sps[i].marker); }); return markers; }, posFromIndex: function(off) { var ch, lineNo = this.first; this.iter(function(line) { var sz = line.text.length + 1; if (sz > off) { ch = off; return true; } off -= sz; ++lineNo; }); return clipPos(this, Pos(lineNo, ch)); }, indexFromPos: function (coords) { coords = clipPos(this, coords); var index = coords.ch; if (coords.line < this.first || coords.ch < 0) return 0; this.iter(this.first, coords.line, function (line) { index += line.text.length + 1; }); return index; }, copy: function(copyHistory) { var doc = new Doc(getLines(this, this.first, this.first + this.size), this.modeOption, this.first); doc.scrollTop = this.scrollTop; doc.scrollLeft = this.scrollLeft; doc.sel = {from: this.sel.from, to: this.sel.to, head: this.sel.head, anchor: this.sel.anchor, shift: this.sel.shift, extend: false, goalColumn: this.sel.goalColumn}; if (copyHistory) { doc.history.undoDepth = this.history.undoDepth; doc.setHistory(this.getHistory()); } return doc; }, linkedDoc: function(options) { if (!options) options = {}; var from = this.first, to = this.first + this.size; if (options.from != null && options.from > from) from = options.from; if (options.to != null && options.to < to) to = options.to; var copy = new Doc(getLines(this, from, to), options.mode || this.modeOption, from); if (options.sharedHist) copy.history = this.history; (this.linked || (this.linked = [])).push({doc: copy, sharedHist: options.sharedHist}); copy.linked = [{doc: this, isParent: true, sharedHist: options.sharedHist}]; return copy; }, unlinkDoc: function(other) { if (other instanceof CodeMirror) other = other.doc; if (this.linked) for (var i = 0; i < this.linked.length; ++i) { var link = this.linked[i]; if (link.doc != other) continue; this.linked.splice(i, 1); other.unlinkDoc(this); break; } // If the histories were shared, split them again if (other.history == this.history) { var splitIds = [other.id]; linkedDocs(other, function(doc) {splitIds.push(doc.id);}, true); other.history = makeHistory(); other.history.done = copyHistoryArray(this.history.done, splitIds); other.history.undone = copyHistoryArray(this.history.undone, splitIds); } }, iterLinkedDocs: function(f) {linkedDocs(this, f);}, getMode: function() {return this.mode;}, getEditor: function() {return this.cm;} }); Doc.prototype.eachLine = Doc.prototype.iter; // The Doc methods that should be available on CodeMirror instances var dontDelegate = "iter insert remove copy getEditor".split(" "); for (var prop in Doc.prototype) if (Doc.prototype.hasOwnProperty(prop) && indexOf(dontDelegate, prop) < 0) CodeMirror.prototype[prop] = (function(method) { return function() {return method.apply(this.doc, arguments);}; })(Doc.prototype[prop]); eventMixin(Doc); function linkedDocs(doc, f, sharedHistOnly) { function propagate(doc, skip, sharedHist) { if (doc.linked) for (var i = 0; i < doc.linked.length; ++i) { var rel = doc.linked[i]; if (rel.doc == skip) continue; var shared = sharedHist && rel.sharedHist; if (sharedHistOnly && !shared) continue; f(rel.doc, shared); propagate(rel.doc, doc, shared); } } propagate(doc, null, true); } function attachDoc(cm, doc) { if (doc.cm) throw new Error("This document is already in use."); cm.doc = doc; doc.cm = cm; estimateLineHeights(cm); loadMode(cm); if (!cm.options.lineWrapping) computeMaxLength(cm); cm.options.mode = doc.modeOption; regChange(cm); } // LINE UTILITIES function getLine(chunk, n) { n -= chunk.first; while (!chunk.lines) { for (var i = 0;; ++i) { var child = chunk.children[i], sz = child.chunkSize(); if (n < sz) { chunk = child; break; } n -= sz; } } return chunk.lines[n]; } function getBetween(doc, start, end) { var out = [], n = start.line; doc.iter(start.line, end.line + 1, function(line) { var text = line.text; if (n == end.line) text = text.slice(0, end.ch); if (n == start.line) text = text.slice(start.ch); out.push(text); ++n; }); return out; } function getLines(doc, from, to) { var out = []; doc.iter(from, to, function(line) { out.push(line.text); }); return out; } function updateLineHeight(line, height) { var diff = height - line.height; for (var n = line; n; n = n.parent) n.height += diff; } function lineNo(line) { if (line.parent == null) return null; var cur = line.parent, no = indexOf(cur.lines, line); for (var chunk = cur.parent; chunk; cur = chunk, chunk = chunk.parent) { for (var i = 0;; ++i) { if (chunk.children[i] == cur) break; no += chunk.children[i].chunkSize(); } } return no + cur.first; } function lineAtHeight(chunk, h) { var n = chunk.first; outer: do { for (var i = 0, e = chunk.children.length; i < e; ++i) { var child = chunk.children[i], ch = child.height; if (h < ch) { chunk = child; continue outer; } h -= ch; n += child.chunkSize(); } return n; } while (!chunk.lines); for (var i = 0, e = chunk.lines.length; i < e; ++i) { var line = chunk.lines[i], lh = line.height; if (h < lh) break; h -= lh; } return n + i; } function heightAtLine(cm, lineObj) { lineObj = visualLine(cm.doc, lineObj); var h = 0, chunk = lineObj.parent; for (var i = 0; i < chunk.lines.length; ++i) { var line = chunk.lines[i]; if (line == lineObj) break; else h += line.height; } for (var p = chunk.parent; p; chunk = p, p = chunk.parent) { for (var i = 0; i < p.children.length; ++i) { var cur = p.children[i]; if (cur == chunk) break; else h += cur.height; } } return h; } function getOrder(line) { var order = line.order; if (order == null) order = line.order = bidiOrdering(line.text); return order; } // HISTORY function makeHistory(startGen) { return { // Arrays of history events. Doing something adds an event to // done and clears undo. Undoing moves events from done to // undone, redoing moves them in the other direction. done: [], undone: [], undoDepth: Infinity, // Used to track when changes can be merged into a single undo // event lastTime: 0, lastOp: null, lastOrigin: null, // Used by the isClean() method generation: startGen || 1, maxGeneration: startGen || 1 }; } function attachLocalSpans(doc, change, from, to) { var existing = change["spans_" + doc.id], n = 0; doc.iter(Math.max(doc.first, from), Math.min(doc.first + doc.size, to), function(line) { if (line.markedSpans) (existing || (existing = change["spans_" + doc.id] = {}))[n] = line.markedSpans; ++n; }); } function historyChangeFromChange(doc, change) { var from = { line: change.from.line, ch: change.from.ch }; var histChange = {from: from, to: changeEnd(change), text: getBetween(doc, change.from, change.to)}; attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1); linkedDocs(doc, function(doc) {attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1);}, true); return histChange; } function addToHistory(doc, change, selAfter, opId) { var hist = doc.history; hist.undone.length = 0; var time = +new Date, cur = lst(hist.done); if (cur && (hist.lastOp == opId || hist.lastOrigin == change.origin && change.origin && ((change.origin.charAt(0) == "+" && doc.cm && hist.lastTime > time - doc.cm.options.historyEventDelay) || change.origin.charAt(0) == "*"))) { // Merge this change into the last event var last = lst(cur.changes); if (posEq(change.from, change.to) && posEq(change.from, last.to)) { // Optimized case for simple insertion -- don't want to add // new changesets for every character typed last.to = changeEnd(change); } else { // Add new sub-event cur.changes.push(historyChangeFromChange(doc, change)); } cur.anchorAfter = selAfter.anchor; cur.headAfter = selAfter.head; } else { // Can not be merged, start a new event. cur = {changes: [historyChangeFromChange(doc, change)], generation: hist.generation, anchorBefore: doc.sel.anchor, headBefore: doc.sel.head, anchorAfter: selAfter.anchor, headAfter: selAfter.head}; hist.done.push(cur); hist.generation = ++hist.maxGeneration; while (hist.done.length > hist.undoDepth) hist.done.shift(); } hist.lastTime = time; hist.lastOp = opId; hist.lastOrigin = change.origin; } function removeClearedSpans(spans) { if (!spans) return null; for (var i = 0, out; i < spans.length; ++i) { if (spans[i].marker.explicitlyCleared) { if (!out) out = spans.slice(0, i); } else if (out) out.push(spans[i]); } return !out ? spans : out.length ? out : null; } function getOldSpans(doc, change) { var found = change["spans_" + doc.id]; if (!found) return null; for (var i = 0, nw = []; i < change.text.length; ++i) nw.push(removeClearedSpans(found[i])); return nw; } // Used both to provide a JSON-safe object in .getHistory, and, when // detaching a document, to split the history in two function copyHistoryArray(events, newGroup) { for (var i = 0, copy = []; i < events.length; ++i) { var event = events[i], changes = event.changes, newChanges = []; copy.push({changes: newChanges, anchorBefore: event.anchorBefore, headBefore: event.headBefore, anchorAfter: event.anchorAfter, headAfter: event.headAfter}); for (var j = 0; j < changes.length; ++j) { var change = changes[j], m; newChanges.push({from: change.from, to: change.to, text: change.text}); if (newGroup) for (var prop in change) if (m = prop.match(/^spans_(\d+)$/)) { if (indexOf(newGroup, Number(m[1])) > -1) { lst(newChanges)[prop] = change[prop]; delete change[prop]; } } } } return copy; } // Rebasing/resetting history to deal with externally-sourced changes function rebaseHistSel(pos, from, to, diff) { if (to < pos.line) { pos.line += diff; } else if (from < pos.line) { pos.line = from; pos.ch = 0; } } // Tries to rebase an array of history events given a change in the // document. If the change touches the same lines as the event, the // event, and everything 'behind' it, is discarded. If the change is // before the event, the event's positions are updated. Uses a // copy-on-write scheme for the positions, to avoid having to // reallocate them all on every rebase, but also avoid problems with // shared position objects being unsafely updated. function rebaseHistArray(array, from, to, diff) { for (var i = 0; i < array.length; ++i) { var sub = array[i], ok = true; for (var j = 0; j < sub.changes.length; ++j) { var cur = sub.changes[j]; if (!sub.copied) { cur.from = copyPos(cur.from); cur.to = copyPos(cur.to); } if (to < cur.from.line) { cur.from.line += diff; cur.to.line += diff; } else if (from <= cur.to.line) { ok = false; break; } } if (!sub.copied) { sub.anchorBefore = copyPos(sub.anchorBefore); sub.headBefore = copyPos(sub.headBefore); sub.anchorAfter = copyPos(sub.anchorAfter); sub.readAfter = copyPos(sub.headAfter); sub.copied = true; } if (!ok) { array.splice(0, i + 1); i = 0; } else { rebaseHistSel(sub.anchorBefore); rebaseHistSel(sub.headBefore); rebaseHistSel(sub.anchorAfter); rebaseHistSel(sub.headAfter); } } } function rebaseHist(hist, change) { var from = change.from.line, to = change.to.line, diff = change.text.length - (to - from) - 1; rebaseHistArray(hist.done, from, to, diff); rebaseHistArray(hist.undone, from, to, diff); } // EVENT OPERATORS function stopMethod() {e_stop(this);} // Ensure an event has a stop method. function addStop(event) { if (!event.stop) event.stop = stopMethod; return event; } function e_preventDefault(e) { if (e.preventDefault) e.preventDefault(); else e.returnValue = false; } function e_stopPropagation(e) { if (e.stopPropagation) e.stopPropagation(); else e.cancelBubble = true; } function e_defaultPrevented(e) { return e.defaultPrevented != null ? e.defaultPrevented : e.returnValue == false; } function e_stop(e) {e_preventDefault(e); e_stopPropagation(e);} CodeMirror.e_stop = e_stop; CodeMirror.e_preventDefault = e_preventDefault; CodeMirror.e_stopPropagation = e_stopPropagation; function e_target(e) {return e.target || e.srcElement;} function e_button(e) { var b = e.which; if (b == null) { if (e.button & 1) b = 1; else if (e.button & 2) b = 3; else if (e.button & 4) b = 2; } if (mac && e.ctrlKey && b == 1) b = 3; return b; } // EVENT HANDLING function on(emitter, type, f) { if (emitter.addEventListener) emitter.addEventListener(type, f, false); else if (emitter.attachEvent) emitter.attachEvent("on" + type, f); else { var map = emitter._handlers || (emitter._handlers = {}); var arr = map[type] || (map[type] = []); arr.push(f); } } function off(emitter, type, f) { if (emitter.removeEventListener) emitter.removeEventListener(type, f, false); else if (emitter.detachEvent) emitter.detachEvent("on" + type, f); else { var arr = emitter._handlers && emitter._handlers[type]; if (!arr) return; for (var i = 0; i < arr.length; ++i) if (arr[i] == f) { arr.splice(i, 1); break; } } } function signal(emitter, type /*, values...*/) { var arr = emitter._handlers && emitter._handlers[type]; if (!arr) return; var args = Array.prototype.slice.call(arguments, 2); for (var i = 0; i < arr.length; ++i) arr[i].apply(null, args); } var delayedCallbacks, delayedCallbackDepth = 0; function signalLater(emitter, type /*, values...*/) { var arr = emitter._handlers && emitter._handlers[type]; if (!arr) return; var args = Array.prototype.slice.call(arguments, 2); if (!delayedCallbacks) { ++delayedCallbackDepth; delayedCallbacks = []; setTimeout(fireDelayed, 0); } function bnd(f) {return function(){f.apply(null, args);};}; for (var i = 0; i < arr.length; ++i) delayedCallbacks.push(bnd(arr[i])); } function signalDOMEvent(cm, e, override) { signal(cm, override || e.type, cm, e); return e_defaultPrevented(e) || e.codemirrorIgnore; } function fireDelayed() { --delayedCallbackDepth; var delayed = delayedCallbacks; delayedCallbacks = null; for (var i = 0; i < delayed.length; ++i) delayed[i](); } function hasHandler(emitter, type) { var arr = emitter._handlers && emitter._handlers[type]; return arr && arr.length > 0; } CodeMirror.on = on; CodeMirror.off = off; CodeMirror.signal = signal; function eventMixin(ctor) { ctor.prototype.on = function(type, f) {on(this, type, f);}; ctor.prototype.off = function(type, f) {off(this, type, f);}; } // MISC UTILITIES // Number of pixels added to scroller and sizer to hide scrollbar var scrollerCutOff = 30; // Returned or thrown by various protocols to signal 'I'm not // handling this'. var Pass = CodeMirror.Pass = {toString: function(){return "CodeMirror.Pass";}}; function Delayed() {this.id = null;} Delayed.prototype = {set: function(ms, f) {clearTimeout(this.id); this.id = setTimeout(f, ms);}}; // Counts the column offset in a string, taking tabs into account. // Used mostly to find indentation. function countColumn(string, end, tabSize, startIndex, startValue) { if (end == null) { end = string.search(/[^\s\u00a0]/); if (end == -1) end = string.length; } for (var i = startIndex || 0, n = startValue || 0; i < end; ++i) { if (string.charAt(i) == "\t") n += tabSize - (n % tabSize); else ++n; } return n; } CodeMirror.countColumn = countColumn; var spaceStrs = [""]; function spaceStr(n) { while (spaceStrs.length <= n) spaceStrs.push(lst(spaceStrs) + " "); return spaceStrs[n]; } function lst(arr) { return arr[arr.length-1]; } function selectInput(node) { if (ios) { // Mobile Safari apparently has a bug where select() is broken. node.selectionStart = 0; node.selectionEnd = node.value.length; } else { // Suppress mysterious IE10 errors try { node.select(); } catch(_e) {} } } function indexOf(collection, elt) { if (collection.indexOf) return collection.indexOf(elt); for (var i = 0, e = collection.length; i < e; ++i) if (collection[i] == elt) return i; return -1; } function createObj(base, props) { function Obj() {} Obj.prototype = base; var inst = new Obj(); if (props) copyObj(props, inst); return inst; } function copyObj(obj, target) { if (!target) target = {}; for (var prop in obj) if (obj.hasOwnProperty(prop)) target[prop] = obj[prop]; return target; } function emptyArray(size) { for (var a = [], i = 0; i < size; ++i) a.push(undefined); return a; } function bind(f) { var args = Array.prototype.slice.call(arguments, 1); return function(){return f.apply(null, args);}; } var nonASCIISingleCaseWordChar = /[\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/; function isWordChar(ch) { return /\w/.test(ch) || ch > "\x80" && (ch.toUpperCase() != ch.toLowerCase() || nonASCIISingleCaseWordChar.test(ch)); } function isEmpty(obj) { for (var n in obj) if (obj.hasOwnProperty(n) && obj[n]) return false; return true; } var isExtendingChar = /[\u0300-\u036F\u0483-\u0487\u0488-\u0489\u0591-\u05BD\u05BF\u05C1-\u05C2\u05C4-\u05C5\u05C7\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7-\u06E8\u06EA-\u06ED\uA66F\uA670-\uA672\uA674-\uA67D\uA69F\udc00-\udfff]/; // DOM UTILITIES function elt(tag, content, className, style) { var e = document.createElement(tag); if (className) e.className = className; if (style) e.style.cssText = style; if (typeof content == "string") setTextContent(e, content); else if (content) for (var i = 0; i < content.length; ++i) e.appendChild(content[i]); return e; } function removeChildren(e) { for (var count = e.childNodes.length; count > 0; --count) e.removeChild(e.firstChild); return e; } function removeChildrenAndAdd(parent, e) { return removeChildren(parent).appendChild(e); } function setTextContent(e, str) { if (ie_lt9) { e.innerHTML = ""; e.appendChild(document.createTextNode(str)); } else e.textContent = str; } function getRect(node) { return node.getBoundingClientRect(); } CodeMirror.replaceGetRect = function(f) { getRect = f; }; // FEATURE DETECTION // Detect drag-and-drop var dragAndDrop = function() { // There is *some* kind of drag-and-drop support in IE6-8, but I // couldn't get it to work yet. if (ie_lt9) return false; var div = elt('div'); return "draggable" in div || "dragDrop" in div; }(); // For a reason I have yet to figure out, some browsers disallow // word wrapping between certain characters *only* if a new inline // element is started between them. This makes it hard to reliably // measure the position of things, since that requires inserting an // extra span. This terribly fragile set of tests matches the // character combinations that suffer from this phenomenon on the // various browsers. function spanAffectsWrapping() { return false; } if (gecko) // Only for "$'" spanAffectsWrapping = function(str, i) { return str.charCodeAt(i - 1) == 36 && str.charCodeAt(i) == 39; }; else if (safari && !/Version\/([6-9]|\d\d)\b/.test(navigator.userAgent)) spanAffectsWrapping = function(str, i) { return /\-[^ \-?]|\?[^ !\'\"\),.\-\/:;\?\]\}]/.test(str.slice(i - 1, i + 1)); }; else if (webkit && /Chrome\/(?:29|[3-9]\d|\d\d\d)\./.test(navigator.userAgent)) spanAffectsWrapping = function(str, i) { var code = str.charCodeAt(i - 1); return code >= 8208 && code <= 8212; }; else if (webkit) spanAffectsWrapping = function(str, i) { if (i > 1 && str.charCodeAt(i - 1) == 45) { if (/\w/.test(str.charAt(i - 2)) && /[^\-?\.]/.test(str.charAt(i))) return true; if (i > 2 && /[\d\.,]/.test(str.charAt(i - 2)) && /[\d\.,]/.test(str.charAt(i))) return false; } return /[~!#%&*)=+}\]\\|\"\.>,:;][({[<]|-[^\-?\.\u2010-\u201f\u2026]|\?[\w~`@#$%\^&*(_=+{[|><]|…[\w~`@#$%\^&*(_=+{[><]/.test(str.slice(i - 1, i + 1)); }; var knownScrollbarWidth; function scrollbarWidth(measure) { if (knownScrollbarWidth != null) return knownScrollbarWidth; var test = elt("div", null, null, "width: 50px; height: 50px; overflow-x: scroll"); removeChildrenAndAdd(measure, test); if (test.offsetWidth) knownScrollbarWidth = test.offsetHeight - test.clientHeight; return knownScrollbarWidth || 0; } var zwspSupported; function zeroWidthElement(measure) { if (zwspSupported == null) { var test = elt("span", "\u200b"); removeChildrenAndAdd(measure, elt("span", [test, document.createTextNode("x")])); if (measure.firstChild.offsetHeight != 0) zwspSupported = test.offsetWidth <= 1 && test.offsetHeight > 2 && !ie_lt8; } if (zwspSupported) return elt("span", "\u200b"); else return elt("span", "\u00a0", null, "display: inline-block; width: 1px; margin-right: -1px"); } // See if "".split is the broken IE version, if so, provide an // alternative way to split lines. var splitLines = "\n\nb".split(/\n/).length != 3 ? function(string) { var pos = 0, result = [], l = string.length; while (pos <= l) { var nl = string.indexOf("\n", pos); if (nl == -1) nl = string.length; var line = string.slice(pos, string.charAt(nl - 1) == "\r" ? nl - 1 : nl); var rt = line.indexOf("\r"); if (rt != -1) { result.push(line.slice(0, rt)); pos += rt + 1; } else { result.push(line); pos = nl + 1; } } return result; } : function(string){return string.split(/\r\n?|\n/);}; CodeMirror.splitLines = splitLines; var hasSelection = window.getSelection ? function(te) { try { return te.selectionStart != te.selectionEnd; } catch(e) { return false; } } : function(te) { try {var range = te.ownerDocument.selection.createRange();} catch(e) {} if (!range || range.parentElement() != te) return false; return range.compareEndPoints("StartToEnd", range) != 0; }; var hasCopyEvent = (function() { var e = elt("div"); if ("oncopy" in e) return true; e.setAttribute("oncopy", "return;"); return typeof e.oncopy == 'function'; })(); // KEY NAMING var keyNames = {3: "Enter", 8: "Backspace", 9: "Tab", 13: "Enter", 16: "Shift", 17: "Ctrl", 18: "Alt", 19: "Pause", 20: "CapsLock", 27: "Esc", 32: "Space", 33: "PageUp", 34: "PageDown", 35: "End", 36: "Home", 37: "Left", 38: "Up", 39: "Right", 40: "Down", 44: "PrintScrn", 45: "Insert", 46: "Delete", 59: ";", 91: "Mod", 92: "Mod", 93: "Mod", 109: "-", 107: "=", 127: "Delete", 186: ";", 187: "=", 188: ",", 189: "-", 190: ".", 191: "/", 192: "`", 219: "[", 220: "\\", 221: "]", 222: "'", 63276: "PageUp", 63277: "PageDown", 63275: "End", 63273: "Home", 63234: "Left", 63232: "Up", 63235: "Right", 63233: "Down", 63302: "Insert", 63272: "Delete"}; CodeMirror.keyNames = keyNames; (function() { // Number keys for (var i = 0; i < 10; i++) keyNames[i + 48] = String(i); // Alphabetic keys for (var i = 65; i <= 90; i++) keyNames[i] = String.fromCharCode(i); // Function keys for (var i = 1; i <= 12; i++) keyNames[i + 111] = keyNames[i + 63235] = "F" + i; })(); // BIDI HELPERS function iterateBidiSections(order, from, to, f) { if (!order) return f(from, to, "ltr"); var found = false; for (var i = 0; i < order.length; ++i) { var part = order[i]; if (part.from < to && part.to > from || from == to && part.to == from) { f(Math.max(part.from, from), Math.min(part.to, to), part.level == 1 ? "rtl" : "ltr"); found = true; } } if (!found) f(from, to, "ltr"); } function bidiLeft(part) { return part.level % 2 ? part.to : part.from; } function bidiRight(part) { return part.level % 2 ? part.from : part.to; } function lineLeft(line) { var order = getOrder(line); return order ? bidiLeft(order[0]) : 0; } function lineRight(line) { var order = getOrder(line); if (!order) return line.text.length; return bidiRight(lst(order)); } function lineStart(cm, lineN) { var line = getLine(cm.doc, lineN); var visual = visualLine(cm.doc, line); if (visual != line) lineN = lineNo(visual); var order = getOrder(visual); var ch = !order ? 0 : order[0].level % 2 ? lineRight(visual) : lineLeft(visual); return Pos(lineN, ch); } function lineEnd(cm, lineN) { var merged, line; while (merged = collapsedSpanAtEnd(line = getLine(cm.doc, lineN))) lineN = merged.find().to.line; var order = getOrder(line); var ch = !order ? line.text.length : order[0].level % 2 ? lineLeft(line) : lineRight(line); return Pos(lineN, ch); } function compareBidiLevel(order, a, b) { var linedir = order[0].level; if (a == linedir) return true; if (b == linedir) return false; return a < b; } var bidiOther; function getBidiPartAt(order, pos) { for (var i = 0, found; i < order.length; ++i) { var cur = order[i]; if (cur.from < pos && cur.to > pos) { bidiOther = null; return i; } if (cur.from == pos || cur.to == pos) { if (found == null) { found = i; } else if (compareBidiLevel(order, cur.level, order[found].level)) { bidiOther = found; return i; } else { bidiOther = i; return found; } } } bidiOther = null; return found; } function moveInLine(line, pos, dir, byUnit) { if (!byUnit) return pos + dir; do pos += dir; while (pos > 0 && isExtendingChar.test(line.text.charAt(pos))); return pos; } // This is somewhat involved. It is needed in order to move // 'visually' through bi-directional text -- i.e., pressing left // should make the cursor go left, even when in RTL text. The // tricky part is the 'jumps', where RTL and LTR text touch each // other. This often requires the cursor offset to move more than // one unit, in order to visually move one unit. function moveVisually(line, start, dir, byUnit) { var bidi = getOrder(line); if (!bidi) return moveLogically(line, start, dir, byUnit); var pos = getBidiPartAt(bidi, start), part = bidi[pos]; var target = moveInLine(line, start, part.level % 2 ? -dir : dir, byUnit); for (;;) { if (target > part.from && target < part.to) return target; if (target == part.from || target == part.to) { if (getBidiPartAt(bidi, target) == pos) return target; part = bidi[pos += dir]; return (dir > 0) == part.level % 2 ? part.to : part.from; } else { part = bidi[pos += dir]; if (!part) return null; if ((dir > 0) == part.level % 2) target = moveInLine(line, part.to, -1, byUnit); else target = moveInLine(line, part.from, 1, byUnit); } } } function moveLogically(line, start, dir, byUnit) { var target = start + dir; if (byUnit) while (target > 0 && isExtendingChar.test(line.text.charAt(target))) target += dir; return target < 0 || target > line.text.length ? null : target; } // Bidirectional ordering algorithm // See http://unicode.org/reports/tr9/tr9-13.html for the algorithm // that this (partially) implements. // One-char codes used for character types: // L (L): Left-to-Right // R (R): Right-to-Left // r (AL): Right-to-Left Arabic // 1 (EN): European Number // + (ES): European Number Separator // % (ET): European Number Terminator // n (AN): Arabic Number // , (CS): Common Number Separator // m (NSM): Non-Spacing Mark // b (BN): Boundary Neutral // s (B): Paragraph Separator // t (S): Segment Separator // w (WS): Whitespace // N (ON): Other Neutrals // Returns null if characters are ordered as they appear // (left-to-right), or an array of sections ({from, to, level} // objects) in the order in which they occur visually. var bidiOrdering = (function() { // Character types for codepoints 0 to 0xff var lowTypes = "bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLL"; // Character types for codepoints 0x600 to 0x6ff var arabicTypes = "rrrrrrrrrrrr,rNNmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmrrrrrrrnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmNmmmmrrrrrrrrrrrrrrrrrr"; function charType(code) { if (code <= 0xff) return lowTypes.charAt(code); else if (0x590 <= code && code <= 0x5f4) return "R"; else if (0x600 <= code && code <= 0x6ff) return arabicTypes.charAt(code - 0x600); else if (0x700 <= code && code <= 0x8ac) return "r"; else return "L"; } var bidiRE = /[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/; var isNeutral = /[stwN]/, isStrong = /[LRr]/, countsAsLeft = /[Lb1n]/, countsAsNum = /[1n]/; // Browsers seem to always treat the boundaries of block elements as being L. var outerType = "L"; return function(str) { if (!bidiRE.test(str)) return false; var len = str.length, types = []; for (var i = 0, type; i < len; ++i) types.push(type = charType(str.charCodeAt(i))); // W1. Examine each non-spacing mark (NSM) in the level run, and // change the type of the NSM to the type of the previous // character. If the NSM is at the start of the level run, it will // get the type of sor. for (var i = 0, prev = outerType; i < len; ++i) { var type = types[i]; if (type == "m") types[i] = prev; else prev = type; } // W2. Search backwards from each instance of a European number // until the first strong type (R, L, AL, or sor) is found. If an // AL is found, change the type of the European number to Arabic // number. // W3. Change all ALs to R. for (var i = 0, cur = outerType; i < len; ++i) { var type = types[i]; if (type == "1" && cur == "r") types[i] = "n"; else if (isStrong.test(type)) { cur = type; if (type == "r") types[i] = "R"; } } // W4. A single European separator between two European numbers // changes to a European number. A single common separator between // two numbers of the same type changes to that type. for (var i = 1, prev = types[0]; i < len - 1; ++i) { var type = types[i]; if (type == "+" && prev == "1" && types[i+1] == "1") types[i] = "1"; else if (type == "," && prev == types[i+1] && (prev == "1" || prev == "n")) types[i] = prev; prev = type; } // W5. A sequence of European terminators adjacent to European // numbers changes to all European numbers. // W6. Otherwise, separators and terminators change to Other // Neutral. for (var i = 0; i < len; ++i) { var type = types[i]; if (type == ",") types[i] = "N"; else if (type == "%") { for (var end = i + 1; end < len && types[end] == "%"; ++end) {} var replace = (i && types[i-1] == "!") || (end < len - 1 && types[end] == "1") ? "1" : "N"; for (var j = i; j < end; ++j) types[j] = replace; i = end - 1; } } // W7. Search backwards from each instance of a European number // until the first strong type (R, L, or sor) is found. If an L is // found, then change the type of the European number to L. for (var i = 0, cur = outerType; i < len; ++i) { var type = types[i]; if (cur == "L" && type == "1") types[i] = "L"; else if (isStrong.test(type)) cur = type; } // N1. A sequence of neutrals takes the direction of the // surrounding strong text if the text on both sides has the same // direction. European and Arabic numbers act as if they were R in // terms of their influence on neutrals. Start-of-level-run (sor) // and end-of-level-run (eor) are used at level run boundaries. // N2. Any remaining neutrals take the embedding direction. for (var i = 0; i < len; ++i) { if (isNeutral.test(types[i])) { for (var end = i + 1; end < len && isNeutral.test(types[end]); ++end) {} var before = (i ? types[i-1] : outerType) == "L"; var after = (end < len - 1 ? types[end] : outerType) == "L"; var replace = before || after ? "L" : "R"; for (var j = i; j < end; ++j) types[j] = replace; i = end - 1; } } // Here we depart from the documented algorithm, in order to avoid // building up an actual levels array. Since there are only three // levels (0, 1, 2) in an implementation that doesn't take // explicit embedding into account, we can build up the order on // the fly, without following the level-based algorithm. var order = [], m; for (var i = 0; i < len;) { if (countsAsLeft.test(types[i])) { var start = i; for (++i; i < len && countsAsLeft.test(types[i]); ++i) {} order.push({from: start, to: i, level: 0}); } else { var pos = i, at = order.length; for (++i; i < len && types[i] != "L"; ++i) {} for (var j = pos; j < i;) { if (countsAsNum.test(types[j])) { if (pos < j) order.splice(at, 0, {from: pos, to: j, level: 1}); var nstart = j; for (++j; j < i && countsAsNum.test(types[j]); ++j) {} order.splice(at, 0, {from: nstart, to: j, level: 2}); pos = j; } else ++j; } if (pos < i) order.splice(at, 0, {from: pos, to: i, level: 1}); } } if (order[0].level == 1 && (m = str.match(/^\s+/))) { order[0].from = m[0].length; order.unshift({from: 0, to: m[0].length, level: 0}); } if (lst(order).level == 1 && (m = str.match(/\s+$/))) { lst(order).to -= m[0].length; order.push({from: len - m[0].length, to: len, level: 0}); } if (order[0].level != lst(order).level) order.push({from: len, to: len, level: order[0].level}); return order; }; })(); // THE END CodeMirror.version = "3.17.0"; return CodeMirror; })(); assets/lib/codemirror/lib/codemirror.css000066600000014363152141651140014421 0ustar00/* BASICS */ .CodeMirror { /* Set height, width, borders, and global font properties here */ font-family: monospace; height: 300px; } .CodeMirror-scroll { /* Set scrolling behaviour here */ overflow: auto; } /* PADDING */ .CodeMirror-lines { padding: 4px 0; /* Vertical padding around content */ } .CodeMirror pre { padding: 0 4px; /* Horizontal padding of content */ } .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler { background-color: white; /* The little square between H and V scrollbars */ } /* GUTTER */ .CodeMirror-gutters { border-right: 1px solid #ddd; background-color: #f7f7f7; white-space: nowrap; } .CodeMirror-linenumbers {} .CodeMirror-linenumber { padding: 0 3px 0 5px; min-width: 20px; text-align: right; color: #999; } /* CURSOR */ .CodeMirror div.CodeMirror-cursor { border-left: 1px solid black; z-index: 3; } /* Shown when moving in bi-directional text */ .CodeMirror div.CodeMirror-secondarycursor { border-left: 1px solid silver; } .CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor { width: auto; border: 0; background: #7e7; z-index: 1; } /* Can style cursor different in overwrite (non-insert) mode */ .CodeMirror div.CodeMirror-cursor.CodeMirror-overwrite {} .cm-tab { display: inline-block; } /* DEFAULT THEME */ .cm-s-default .cm-keyword {color: #708;} .cm-s-default .cm-atom {color: #219;} .cm-s-default .cm-number {color: #164;} .cm-s-default .cm-def {color: #00f;} .cm-s-default .cm-variable {color: black;} .cm-s-default .cm-variable-2 {color: #05a;} .cm-s-default .cm-variable-3 {color: #085;} .cm-s-default .cm-property {color: black;} .cm-s-default .cm-operator {color: black;} .cm-s-default .cm-comment {color: #a50;} .cm-s-default .cm-string {color: #a11;} .cm-s-default .cm-string-2 {color: #f50;} .cm-s-default .cm-meta {color: #555;} .cm-s-default .cm-error {color: #f00;} .cm-s-default .cm-qualifier {color: #555;} .cm-s-default .cm-builtin {color: #30a;} .cm-s-default .cm-bracket {color: #997;} .cm-s-default .cm-tag {color: #170;} .cm-s-default .cm-attribute {color: #00c;} .cm-s-default .cm-header {color: blue;} .cm-s-default .cm-quote {color: #090;} .cm-s-default .cm-hr {color: #999;} .cm-s-default .cm-link {color: #00c;} .cm-negative {color: #d44;} .cm-positive {color: #292;} .cm-header, .cm-strong {font-weight: bold;} .cm-em {font-style: italic;} .cm-link {text-decoration: underline;} .cm-invalidchar {color: #f00;} div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;} div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;} .CodeMirror-activeline-background {background: #e8f2ff;} /* STOP */ /* The rest of this file contains styles related to the mechanics of the editor. You probably shouldn't touch them. */ .CodeMirror { line-height: 1; position: relative; overflow: hidden; background: white; color: black; } .CodeMirror-scroll { /* 30px is the magic margin used to hide the element's real scrollbars */ /* See overflow: hidden in .CodeMirror */ margin-bottom: -30px; margin-right: -30px; padding-bottom: 30px; padding-right: 30px; height: 100%; outline: none; /* Prevent dragging from highlighting the element */ position: relative; -moz-box-sizing: content-box; box-sizing: content-box; } .CodeMirror-sizer { position: relative; } /* The fake, visible scrollbars. Used to force redraw during scrolling before actuall scrolling happens, thus preventing shaking and flickering artifacts. */ .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler { position: absolute; z-index: 6; display: none; } .CodeMirror-vscrollbar { right: 0; top: 0; overflow-x: hidden; overflow-y: scroll; } .CodeMirror-hscrollbar { bottom: 0; left: 0; overflow-y: hidden; overflow-x: scroll; } .CodeMirror-scrollbar-filler { right: 0; bottom: 0; } .CodeMirror-gutter-filler { left: 0; bottom: 0; } .CodeMirror-gutters { position: absolute; left: 0; top: 0; padding-bottom: 30px; z-index: 3; } .CodeMirror-gutter { white-space: normal; height: 100%; -moz-box-sizing: content-box; box-sizing: content-box; padding-bottom: 30px; margin-bottom: -32px; display: inline-block; /* Hack to make IE7 behave */ *zoom:1; *display:inline; } .CodeMirror-gutter-elt { position: absolute; cursor: default; z-index: 4; } .CodeMirror-lines { cursor: text; } .CodeMirror pre { /* Reset some styles that the rest of the page might have set */ -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; border-width: 0; background: transparent; font-family: inherit; font-size: inherit; margin: 0; white-space: pre; word-wrap: normal; line-height: inherit; color: inherit; z-index: 2; position: relative; overflow: visible; } .CodeMirror-wrap pre { word-wrap: break-word; white-space: pre-wrap; word-break: normal; } .CodeMirror-code pre { border-right: 30px solid transparent; width: -webkit-fit-content; width: -moz-fit-content; width: fit-content; } .CodeMirror-wrap .CodeMirror-code pre { border-right: none; width: auto; } .CodeMirror-linebackground { position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 0; } .CodeMirror-linewidget { position: relative; z-index: 2; overflow: auto; } .CodeMirror-widget {} .CodeMirror-wrap .CodeMirror-scroll { overflow-x: hidden; } .CodeMirror-measure { position: absolute; width: 100%; height: 0; overflow: hidden; visibility: hidden; } .CodeMirror-measure pre { position: static; } .CodeMirror div.CodeMirror-cursor { position: absolute; visibility: hidden; border-right: none; width: 0; } .CodeMirror-focused div.CodeMirror-cursor { visibility: visible; } .CodeMirror-selected { background: #d9d9d9; } .CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; } .cm-searching { background: #ffa; background: rgba(255, 255, 0, .4); } /* IE7 hack to prevent it from returning funny offsetTops on the spans */ .CodeMirror span { *vertical-align: text-bottom; } @media print { /* Hide the cursor when printing */ .CodeMirror div.CodeMirror-cursor { visibility: hidden; } } /* fullscreen adapted code */ .CodeMirror-fullscreen { position: fixed; top: 0; left: 0; right: 0; bottom: 0; height: auto; width:auto !important; z-index: 999999; } assets/lib/codemirror/mode/htmlembedded/index.html000066600000003732152141651140016331 0ustar00 CodeMirror: Html Embedded Scripts mode

            Html Embedded Scripts mode

            Mode for html embedded scripts like JSP and ASP.NET. Depends on HtmlMixed which in turn depends on JavaScript, CSS and XML.
            Other dependancies include those of the scriping language chosen.

            MIME types defined: application/x-aspx (ASP.NET), application/x-ejs (Embedded Javascript), application/x-jsp (JavaServer Pages)

            assets/lib/codemirror/mode/htmlembedded/htmlembedded.js000066600000005076152141651140017313 0ustar00CodeMirror.defineMode("htmlembedded", function(config, parserConfig) { //config settings var scriptStartRegex = parserConfig.scriptStartRegex || /^<%/i, scriptEndRegex = parserConfig.scriptEndRegex || /^%>/i; //inner modes var scriptingMode, htmlMixedMode; //tokenizer when in html mode function htmlDispatch(stream, state) { if (stream.match(scriptStartRegex, false)) { state.token=scriptingDispatch; return scriptingMode.token(stream, state.scriptState); } else return htmlMixedMode.token(stream, state.htmlState); } //tokenizer when in scripting mode function scriptingDispatch(stream, state) { if (stream.match(scriptEndRegex, false)) { state.token=htmlDispatch; return htmlMixedMode.token(stream, state.htmlState); } else return scriptingMode.token(stream, state.scriptState); } return { startState: function() { scriptingMode = scriptingMode || CodeMirror.getMode(config, parserConfig.scriptingModeSpec); htmlMixedMode = htmlMixedMode || CodeMirror.getMode(config, "htmlmixed"); return { token : parserConfig.startOpen ? scriptingDispatch : htmlDispatch, htmlState : CodeMirror.startState(htmlMixedMode), scriptState : CodeMirror.startState(scriptingMode) }; }, token: function(stream, state) { return state.token(stream, state); }, indent: function(state, textAfter) { if (state.token == htmlDispatch) return htmlMixedMode.indent(state.htmlState, textAfter); else if (scriptingMode.indent) return scriptingMode.indent(state.scriptState, textAfter); }, copyState: function(state) { return { token : state.token, htmlState : CodeMirror.copyState(htmlMixedMode, state.htmlState), scriptState : CodeMirror.copyState(scriptingMode, state.scriptState) }; }, electricChars: "/{}:", innerMode: function(state) { if (state.token == scriptingDispatch) return {state: state.scriptState, mode: scriptingMode}; else return {state: state.htmlState, mode: htmlMixedMode}; } }; }, "htmlmixed"); CodeMirror.defineMIME("application/x-ejs", { name: "htmlembedded", scriptingModeSpec:"javascript"}); CodeMirror.defineMIME("application/x-aspx", { name: "htmlembedded", scriptingModeSpec:"text/x-csharp"}); CodeMirror.defineMIME("application/x-jsp", { name: "htmlembedded", scriptingModeSpec:"text/x-java"}); CodeMirror.defineMIME("application/x-erb", { name: "htmlembedded", scriptingModeSpec:"ruby"}); assets/lib/codemirror/mode/index.html000066600000011756152141651140013720 0ustar00 CodeMirror: Language Modes

            Language modes

            This is a list of every mode in the distribution. Each mode lives in a subdirectory of the mode/ directory, and typically defines a single JavaScript file that implements the mode. Loading such file will make the language available to CodeMirror, through the mode option.

            assets/lib/codemirror/mode/meta.js000066600000011642152141651140013201 0ustar00CodeMirror.modeInfo = [ {name: 'APL', mime: 'text/apl', mode: 'apl'}, {name: 'Asterisk', mime: 'text/x-asterisk', mode: 'asterisk'}, {name: 'C', mime: 'text/x-csrc', mode: 'clike'}, {name: 'C++', mime: 'text/x-c++src', mode: 'clike'}, {name: 'Cobol', mime: 'text/x-cobol', mode: 'cobol'}, {name: 'Java', mime: 'text/x-java', mode: 'clike'}, {name: 'C#', mime: 'text/x-csharp', mode: 'clike'}, {name: 'Scala', mime: 'text/x-scala', mode: 'clike'}, {name: 'Clojure', mime: 'text/x-clojure', mode: 'clojure'}, {name: 'CoffeeScript', mime: 'text/x-coffeescript', mode: 'coffeescript'}, {name: 'Common Lisp', mime: 'text/x-common-lisp', mode: 'commonlisp'}, {name: 'CSS', mime: 'text/css', mode: 'css'}, {name: 'D', mime: 'text/x-d', mode: 'd'}, {name: 'diff', mime: 'text/x-diff', mode: 'diff'}, {name: 'DTD', mime: 'application/xml-dtd', mode: 'dtd'}, {name: 'ECL', mime: 'text/x-ecl', mode: 'ecl'}, {name: 'Erlang', mime: 'text/x-erlang', mode: 'erlang'}, {name: 'Fortran', mime: 'text/x-fortran', mode: 'fortran'}, {name: 'Gas', mime: 'text/x-gas', mode: 'gas'}, {name: 'GitHub Flavored Markdown', mime: 'text/x-gfm', mode: 'gfm'}, {name: 'GO', mime: 'text/x-go', mode: 'go'}, {name: 'Groovy', mime: 'text/x-groovy', mode: 'groovy'}, {name: 'HAML', mime: 'text/x-haml', mode: 'haml'}, {name: 'Haskell', mime: 'text/x-haskell', mode: 'haskell'}, {name: 'Haxe', mime: 'text/x-haxe', mode: 'haxe'}, {name: 'ASP.NET', mime: 'application/x-aspx', mode: 'htmlembedded'}, {name: 'Embedded Javascript', mime: 'application/x-ejs', mode: 'htmlembedded'}, {name: 'JavaServer Pages', mime: 'application/x-jsp', mode: 'htmlembedded'}, {name: 'HTML', mime: 'text/html', mode: 'htmlmixed'}, {name: 'HTTP', mime: 'message/http', mode: 'http'}, {name: 'Jade', mime: 'text/x-jade', mode: 'jade'}, {name: 'JavaScript', mime: 'text/javascript', mode: 'javascript'}, {name: 'JSON', mime: 'application/x-json', mode: 'javascript'}, {name: 'JSON', mime: 'application/json', mode: 'javascript'}, {name: 'TypeScript', mime: 'application/typescript', mode: 'javascript'}, {name: 'Jinja2', mime: 'jinja2', mode: 'jinja2'}, {name: 'LESS', mime: 'text/x-less', mode: 'less'}, {name: 'LiveScript', mime: 'text/x-livescript', mode: 'livescript'}, {name: 'Lua', mime: 'text/x-lua', mode: 'lua'}, {name: 'Markdown (GitHub-flavour)', mime: 'text/x-markdown', mode: 'markdown'}, {name: 'mIRC', mime: 'text/mirc', mode: 'mirc'}, {name: 'Nginx', mime: 'text/x-nginx-conf', mode: 'nginx'}, {name: 'NTriples', mime: 'text/n-triples', mode: 'ntriples'}, {name: 'OCaml', mime: 'text/x-ocaml', mode: 'ocaml'}, {name: 'Octave', mime: 'text/x-octave', mode: 'octave'}, {name: 'Pascal', mime: 'text/x-pascal', mode: 'pascal'}, {name: 'Perl', mime: 'text/x-perl', mode: 'perl'}, {name: 'PHP', mime: 'text/x-php', mode: 'php'}, {name: 'PHP(HTML)', mime: 'application/x-httpd-php', mode: 'php'}, {name: 'Pig', mime: 'text/x-pig', mode: 'pig'}, {name: 'Plain Text', mime: 'text/plain', mode: 'null'}, {name: 'Properties files', mime: 'text/x-properties', mode: 'properties'}, {name: 'Python', mime: 'text/x-python', mode: 'python'}, {name: 'Cython', mime: 'text/x-cython', mode: 'python'}, {name: 'R', mime: 'text/x-rsrc', mode: 'r'}, {name: 'reStructuredText', mime: 'text/x-rst', mode: 'rst'}, {name: 'Ruby', mime: 'text/x-ruby', mode: 'ruby'}, {name: 'Rust', mime: 'text/x-rustsrc', mode: 'rust'}, {name: 'Sass', mime: 'text/x-sass', mode: 'sass'}, {name: 'Scheme', mime: 'text/x-scheme', mode: 'scheme'}, {name: 'SCSS', mime: 'text/x-scss', mode: 'css'}, {name: 'Shell', mime: 'text/x-sh', mode: 'shell'}, {name: 'Sieve', mime: 'application/sieve', mode: 'sieve'}, {name: 'Smalltalk', mime: 'text/x-stsrc', mode: 'smalltalk'}, {name: 'Smarty', mime: 'text/x-smarty', mode: 'smarty'}, {name: 'SmartyMixed', mime: 'text/x-smarty', mode: 'smartymixed'}, {name: 'SPARQL', mime: 'application/x-sparql-query', mode: 'sparql'}, {name: 'SQL', mime: 'text/x-sql', mode: 'sql'}, {name: 'MariaDB', mime: 'text/x-mariadb', mode: 'sql'}, {name: 'sTeX', mime: 'text/x-stex', mode: 'stex'}, {name: 'LaTeX', mime: 'text/x-latex', mode: 'stex'}, {name: 'Tcl', mime: 'text/x-tcl', mode: 'tcl'}, {name: 'TiddlyWiki ', mime: 'text/x-tiddlywiki', mode: 'tiddlywiki'}, {name: 'Tiki wiki', mime: 'text/tiki', mode: 'tiki'}, {name: 'TOML', mime: 'text/x-toml', mode: 'toml'}, {name: 'Turtle', mime: 'text/turtle', mode: 'turtle'}, {name: 'VB.NET', mime: 'text/x-vb', mode: 'vb'}, {name: 'VBScript', mime: 'text/vbscript', mode: 'vbscript'}, {name: 'Velocity', mime: 'text/velocity', mode: 'velocity'}, {name: 'Verilog', mime: 'text/x-verilog', mode: 'verilog'}, {name: 'XML', mime: 'application/xml', mode: 'xml'}, {name: 'HTML', mime: 'text/html', mode: 'xml'}, {name: 'XQuery', mime: 'application/xquery', mode: 'xquery'}, {name: 'YAML', mime: 'text/x-yaml', mode: 'yaml'}, {name: 'Z80', mime: 'text/x-z80', mode: 'z80'} ]; assets/lib/codemirror/mode/javascript/javascript.js000066600000042020152141651150016562 0ustar00// TODO actually recognize syntax of TypeScript constructs CodeMirror.defineMode("javascript", function(config, parserConfig) { var indentUnit = config.indentUnit; var statementIndent = parserConfig.statementIndent; var jsonMode = parserConfig.json; var isTS = parserConfig.typescript; // Tokenizer var keywords = function(){ function kw(type) {return {type: type, style: "keyword"};} var A = kw("keyword a"), B = kw("keyword b"), C = kw("keyword c"); var operator = kw("operator"), atom = {type: "atom", style: "atom"}; var jsKeywords = { "if": kw("if"), "while": A, "with": A, "else": B, "do": B, "try": B, "finally": B, "return": C, "break": C, "continue": C, "new": C, "delete": C, "throw": C, "var": kw("var"), "const": kw("var"), "let": kw("var"), "function": kw("function"), "catch": kw("catch"), "for": kw("for"), "switch": kw("switch"), "case": kw("case"), "default": kw("default"), "in": operator, "typeof": operator, "instanceof": operator, "true": atom, "false": atom, "null": atom, "undefined": atom, "NaN": atom, "Infinity": atom, "this": kw("this") }; // Extend the 'normal' keywords with the TypeScript language extensions if (isTS) { var type = {type: "variable", style: "variable-3"}; var tsKeywords = { // object-like things "interface": kw("interface"), "class": kw("class"), "extends": kw("extends"), "constructor": kw("constructor"), // scope modifiers "public": kw("public"), "private": kw("private"), "protected": kw("protected"), "static": kw("static"), "super": kw("super"), // types "string": type, "number": type, "bool": type, "any": type }; for (var attr in tsKeywords) { jsKeywords[attr] = tsKeywords[attr]; } } return jsKeywords; }(); var isOperatorChar = /[+\-*&%=<>!?|~^]/; function chain(stream, state, f) { state.tokenize = f; return f(stream, state); } function nextUntilUnescaped(stream, end) { var escaped = false, next; while ((next = stream.next()) != null) { if (next == end && !escaped) return false; escaped = !escaped && next == "\\"; } return escaped; } // Used as scratch variables to communicate multiple values without // consing up tons of objects. var type, content; function ret(tp, style, cont) { type = tp; content = cont; return style; } function jsTokenBase(stream, state) { var ch = stream.next(); if (ch == '"' || ch == "'") return chain(stream, state, jsTokenString(ch)); else if (ch == "." && stream.match(/^\d+(?:[eE][+\-]?\d+)?/)) return ret("number", "number"); else if (/[\[\]{}\(\),;\:\.]/.test(ch)) return ret(ch); else if (ch == "0" && stream.eat(/x/i)) { stream.eatWhile(/[\da-f]/i); return ret("number", "number"); } else if (/\d/.test(ch)) { stream.match(/^\d*(?:\.\d*)?(?:[eE][+\-]?\d+)?/); return ret("number", "number"); } else if (ch == "/") { if (stream.eat("*")) { return chain(stream, state, jsTokenComment); } else if (stream.eat("/")) { stream.skipToEnd(); return ret("comment", "comment"); } else if (state.lastType == "operator" || state.lastType == "keyword c" || /^[\[{}\(,;:]$/.test(state.lastType)) { nextUntilUnescaped(stream, "/"); stream.eatWhile(/[gimy]/); // 'y' is "sticky" option in Mozilla return ret("regexp", "string-2"); } else { stream.eatWhile(isOperatorChar); return ret("operator", null, stream.current()); } } else if (ch == "#") { stream.skipToEnd(); return ret("error", "error"); } else if (isOperatorChar.test(ch)) { stream.eatWhile(isOperatorChar); return ret("operator", null, stream.current()); } else { stream.eatWhile(/[\w\$_]/); var word = stream.current(), known = keywords.propertyIsEnumerable(word) && keywords[word]; return (known && state.lastType != ".") ? ret(known.type, known.style, word) : ret("variable", "variable", word); } } function jsTokenString(quote) { return function(stream, state) { if (!nextUntilUnescaped(stream, quote)) state.tokenize = jsTokenBase; return ret("string", "string"); }; } function jsTokenComment(stream, state) { var maybeEnd = false, ch; while (ch = stream.next()) { if (ch == "/" && maybeEnd) { state.tokenize = jsTokenBase; break; } maybeEnd = (ch == "*"); } return ret("comment", "comment"); } // Parser var atomicTypes = {"atom": true, "number": true, "variable": true, "string": true, "regexp": true, "this": true}; function JSLexical(indented, column, type, align, prev, info) { this.indented = indented; this.column = column; this.type = type; this.prev = prev; this.info = info; if (align != null) this.align = align; } function inScope(state, varname) { for (var v = state.localVars; v; v = v.next) if (v.name == varname) return true; } function parseJS(state, style, type, content, stream) { var cc = state.cc; // Communicate our context to the combinators. // (Less wasteful than consing up a hundred closures on every call.) cx.state = state; cx.stream = stream; cx.marked = null, cx.cc = cc; if (!state.lexical.hasOwnProperty("align")) state.lexical.align = true; while(true) { var combinator = cc.length ? cc.pop() : jsonMode ? expression : statement; if (combinator(type, content)) { while(cc.length && cc[cc.length - 1].lex) cc.pop()(); if (cx.marked) return cx.marked; if (type == "variable" && inScope(state, content)) return "variable-2"; return style; } } } // Combinator utils var cx = {state: null, column: null, marked: null, cc: null}; function pass() { for (var i = arguments.length - 1; i >= 0; i--) cx.cc.push(arguments[i]); } function cont() { pass.apply(null, arguments); return true; } function register(varname) { function inList(list) { for (var v = list; v; v = v.next) if (v.name == varname) return true; return false; } var state = cx.state; if (state.context) { cx.marked = "def"; if (inList(state.localVars)) return; state.localVars = {name: varname, next: state.localVars}; } else { if (inList(state.globalVars)) return; state.globalVars = {name: varname, next: state.globalVars}; } } // Combinators var defaultVars = {name: "this", next: {name: "arguments"}}; function pushcontext() { cx.state.context = {prev: cx.state.context, vars: cx.state.localVars}; cx.state.localVars = defaultVars; } function popcontext() { cx.state.localVars = cx.state.context.vars; cx.state.context = cx.state.context.prev; } function pushlex(type, info) { var result = function() { var state = cx.state, indent = state.indented; if (state.lexical.type == "stat") indent = state.lexical.indented; state.lexical = new JSLexical(indent, cx.stream.column(), type, null, state.lexical, info); }; result.lex = true; return result; } function poplex() { var state = cx.state; if (state.lexical.prev) { if (state.lexical.type == ")") state.indented = state.lexical.indented; state.lexical = state.lexical.prev; } } poplex.lex = true; function expect(wanted) { return function(type) { if (type == wanted) return cont(); else if (wanted == ";") return pass(); else return cont(arguments.callee); }; } function statement(type) { if (type == "var") return cont(pushlex("vardef"), vardef1, expect(";"), poplex); if (type == "keyword a") return cont(pushlex("form"), expression, statement, poplex); if (type == "keyword b") return cont(pushlex("form"), statement, poplex); if (type == "{") return cont(pushlex("}"), block, poplex); if (type == ";") return cont(); if (type == "if") return cont(pushlex("form"), expression, statement, poplex, maybeelse); if (type == "function") return cont(functiondef); if (type == "for") return cont(pushlex("form"), expect("("), pushlex(")"), forspec1, expect(")"), poplex, statement, poplex); if (type == "variable") return cont(pushlex("stat"), maybelabel); if (type == "switch") return cont(pushlex("form"), expression, pushlex("}", "switch"), expect("{"), block, poplex, poplex); if (type == "case") return cont(expression, expect(":")); if (type == "default") return cont(expect(":")); if (type == "catch") return cont(pushlex("form"), pushcontext, expect("("), funarg, expect(")"), statement, poplex, popcontext); return pass(pushlex("stat"), expression, expect(";"), poplex); } function expression(type) { return expressionInner(type, false); } function expressionNoComma(type) { return expressionInner(type, true); } function expressionInner(type, noComma) { var maybeop = noComma ? maybeoperatorNoComma : maybeoperatorComma; if (atomicTypes.hasOwnProperty(type)) return cont(maybeop); if (type == "function") return cont(functiondef); if (type == "keyword c") return cont(noComma ? maybeexpressionNoComma : maybeexpression); if (type == "(") return cont(pushlex(")"), maybeexpression, expect(")"), poplex, maybeop); if (type == "operator") return cont(noComma ? expressionNoComma : expression); if (type == "[") return cont(pushlex("]"), commasep(expressionNoComma, "]"), poplex, maybeop); if (type == "{") return cont(pushlex("}"), commasep(objprop, "}"), poplex, maybeop); return cont(); } function maybeexpression(type) { if (type.match(/[;\}\)\],]/)) return pass(); return pass(expression); } function maybeexpressionNoComma(type) { if (type.match(/[;\}\)\],]/)) return pass(); return pass(expressionNoComma); } function maybeoperatorComma(type, value) { if (type == ",") return cont(expression); return maybeoperatorNoComma(type, value, false); } function maybeoperatorNoComma(type, value, noComma) { var me = noComma == false ? maybeoperatorComma : maybeoperatorNoComma; var expr = noComma == false ? expression : expressionNoComma; if (type == "operator") { if (/\+\+|--/.test(value)) return cont(me); if (value == "?") return cont(expression, expect(":"), expr); return cont(expr); } if (type == ";") return; if (type == "(") return cont(pushlex(")", "call"), commasep(expressionNoComma, ")"), poplex, me); if (type == ".") return cont(property, me); if (type == "[") return cont(pushlex("]"), maybeexpression, expect("]"), poplex, me); } function maybelabel(type) { if (type == ":") return cont(poplex, statement); return pass(maybeoperatorComma, expect(";"), poplex); } function property(type) { if (type == "variable") {cx.marked = "property"; return cont();} } function objprop(type, value) { if (type == "variable") { cx.marked = "property"; if (value == "get" || value == "set") return cont(getterSetter); } else if (type == "number" || type == "string") { cx.marked = type + " property"; } if (atomicTypes.hasOwnProperty(type)) return cont(expect(":"), expressionNoComma); } function getterSetter(type) { if (type == ":") return cont(expression); if (type != "variable") return cont(expect(":"), expression); cx.marked = "property"; return cont(functiondef); } function commasep(what, end) { function proceed(type) { if (type == ",") { var lex = cx.state.lexical; if (lex.info == "call") lex.pos = (lex.pos || 0) + 1; return cont(what, proceed); } if (type == end) return cont(); return cont(expect(end)); } return function(type) { if (type == end) return cont(); else return pass(what, proceed); }; } function block(type) { if (type == "}") return cont(); return pass(statement, block); } function maybetype(type) { if (type == ":") return cont(typedef); return pass(); } function typedef(type) { if (type == "variable"){cx.marked = "variable-3"; return cont();} return pass(); } function vardef1(type, value) { if (type == "variable") { register(value); return isTS ? cont(maybetype, vardef2) : cont(vardef2); } return pass(); } function vardef2(type, value) { if (value == "=") return cont(expressionNoComma, vardef2); if (type == ",") return cont(vardef1); } function maybeelse(type, value) { if (type == "keyword b" && value == "else") return cont(pushlex("form"), statement, poplex); } function forspec1(type) { if (type == "var") return cont(vardef1, expect(";"), forspec2); if (type == ";") return cont(forspec2); if (type == "variable") return cont(formaybein); return pass(expression, expect(";"), forspec2); } function formaybein(_type, value) { if (value == "in") return cont(expression); return cont(maybeoperatorComma, forspec2); } function forspec2(type, value) { if (type == ";") return cont(forspec3); if (value == "in") return cont(expression); return pass(expression, expect(";"), forspec3); } function forspec3(type) { if (type != ")") cont(expression); } function functiondef(type, value) { if (type == "variable") {register(value); return cont(functiondef);} if (type == "(") return cont(pushlex(")"), pushcontext, commasep(funarg, ")"), poplex, statement, popcontext); } function funarg(type, value) { if (type == "variable") {register(value); return isTS ? cont(maybetype) : cont();} } // Interface return { startState: function(basecolumn) { return { tokenize: jsTokenBase, lastType: null, cc: [], lexical: new JSLexical((basecolumn || 0) - indentUnit, 0, "block", false), localVars: parserConfig.localVars, globalVars: parserConfig.globalVars, context: parserConfig.localVars && {vars: parserConfig.localVars}, indented: 0 }; }, token: function(stream, state) { if (stream.sol()) { if (!state.lexical.hasOwnProperty("align")) state.lexical.align = false; state.indented = stream.indentation(); } if (state.tokenize != jsTokenComment && stream.eatSpace()) return null; var style = state.tokenize(stream, state); if (type == "comment") return style; state.lastType = type == "operator" && (content == "++" || content == "--") ? "incdec" : type; return parseJS(state, style, type, content, stream); }, indent: function(state, textAfter) { if (state.tokenize == jsTokenComment) return CodeMirror.Pass; if (state.tokenize != jsTokenBase) return 0; var firstChar = textAfter && textAfter.charAt(0), lexical = state.lexical; // Kludge to prevent 'maybelse' from blocking lexical scope pops for (var i = state.cc.length - 1; i >= 0; --i) { var c = state.cc[i]; if (c == poplex) lexical = lexical.prev; else if (c != maybeelse || /^else\b/.test(textAfter)) break; } if (lexical.type == "stat" && firstChar == "}") lexical = lexical.prev; if (statementIndent && lexical.type == ")" && lexical.prev.type == "stat") lexical = lexical.prev; var type = lexical.type, closing = firstChar == type; if (type == "vardef") return lexical.indented + (state.lastType == "operator" || state.lastType == "," ? 4 : 0); else if (type == "form" && firstChar == "{") return lexical.indented; else if (type == "form") return lexical.indented + indentUnit; else if (type == "stat") return lexical.indented + (state.lastType == "operator" || state.lastType == "," ? statementIndent || indentUnit : 0); else if (lexical.info == "switch" && !closing && parserConfig.doubleIndentSwitch != false) return lexical.indented + (/^(?:case|default)\b/.test(textAfter) ? indentUnit : 2 * indentUnit); else if (lexical.align) return lexical.column + (closing ? 0 : 1); else return lexical.indented + (closing ? 0 : indentUnit); }, electricChars: ":{}", blockCommentStart: jsonMode ? null : "/*", blockCommentEnd: jsonMode ? null : "*/", lineComment: jsonMode ? null : "//", fold: "brace", helperType: jsonMode ? "json" : "javascript", jsonMode: jsonMode }; }); CodeMirror.defineMIME("text/javascript", "javascript"); CodeMirror.defineMIME("text/ecmascript", "javascript"); CodeMirror.defineMIME("application/javascript", "javascript"); CodeMirror.defineMIME("application/ecmascript", "javascript"); CodeMirror.defineMIME("application/json", {name: "javascript", json: true}); CodeMirror.defineMIME("application/x-json", {name: "javascript", json: true}); CodeMirror.defineMIME("text/typescript", { name: "javascript", typescript: true }); CodeMirror.defineMIME("application/typescript", { name: "javascript", typescript: true }); assets/lib/codemirror/mode/javascript/test.js000066600000000730152141651150015375 0ustar00(function() { var mode = CodeMirror.getMode({indentUnit: 2}, "javascript"); function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); } MT("locals", "[keyword function] [variable foo]([def a], [def b]) { [keyword var] [def c] = [number 10]; [keyword return] [variable-2 a] + [variable-2 c] + [variable d]; }"); MT("comma-and-binop", "[keyword function](){ [keyword var] [def x] = [number 1] + [number 2], [def y]; }"); })(); assets/lib/codemirror/mode/javascript/typescript.html000066600000002765152141651150017166 0ustar00 CodeMirror: TypeScript mode

            TypeScript mode

            This is a specialization of the JavaScript mode.

            assets/lib/codemirror/mode/javascript/index.html000066600000007050152141651150016057 0ustar00 CodeMirror: JavaScript mode

            JavaScript mode

            JavaScript mode supports a two configuration options:

            • json which will set the mode to expect JSON data rather than a JavaScript program.
            • typescript which will activate additional syntax highlighting and some other things for TypeScript code (demo).
            • statementIndent which (given a number) will determine the amount of indentation to use for statements continued on a new line.

            MIME types defined: text/javascript, application/json, text/typescript, application/typescript.

            assets/lib/codemirror/mode/css/test.js000066600000011216152141651150014020 0ustar00(function() { var mode = CodeMirror.getMode({tabSize: 4}, "css"); function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); } // Requires at least one media query MT("atMediaEmpty", "[def @media] [error {] }"); MT("atMediaMultiple", "[def @media] [keyword not] [attribute screen] [operator and] ([property color]), [keyword not] [attribute print] [operator and] ([property color]) { }"); MT("atMediaCheckStack", "[def @media] [attribute screen] { } [tag foo] { }"); MT("atMediaCheckStack", "[def @media] [attribute screen] ([property color]) { } [tag foo] { }"); MT("atMediaPropertyOnly", "[def @media] ([property color]) { } [tag foo] { }"); MT("atMediaCheckStackInvalidAttribute", "[def @media] [attribute&error foobarhello] { [tag foo] { } }"); MT("atMediaCheckStackInvalidAttribute", "[def @media] [attribute&error foobarhello] { } [tag foo] { }"); // Error, because "and" is only allowed immediately preceding a media expression MT("atMediaInvalidAttribute", "[def @media] [attribute&error foobarhello] { }"); // Error, because "and" is only allowed immediately preceding a media expression MT("atMediaInvalidAnd", "[def @media] [error and] [attribute screen] { }"); // Error, because "not" is only allowed as the first item in each media query MT("atMediaInvalidNot", "[def @media] [attribute screen] [error not] ([error not]) { }"); // Error, because "only" is only allowed as the first item in each media query MT("atMediaInvalidOnly", "[def @media] [attribute screen] [error only] ([error only]) { }"); // Error, because "foobarhello" is neither a known type or property, but // property was expected (after "and"), and it should be in parenthese. MT("atMediaUnknownType", "[def @media] [attribute screen] [operator and] [error foobarhello] { }"); // Error, because "color" is not a known type, but is a known property, and // should be in parentheses. MT("atMediaInvalidType", "[def @media] [attribute screen] [operator and] [error color] { }"); // Error, because "print" is not a known property, but is a known type, // and should not be in parenthese. MT("atMediaInvalidProperty", "[def @media] [attribute screen] [operator and] ([error print]) { }"); // Soft error, because "foobarhello" is not a known property or type. MT("atMediaUnknownProperty", "[def @media] [attribute screen] [operator and] ([property&error foobarhello]) { }"); // Make sure nesting works with media queries MT("atMediaMaxWidthNested", "[def @media] [attribute screen] [operator and] ([property max-width][operator :] [number 25px]) { [tag foo] { } }"); MT("tagSelector", "[tag foo] { }"); MT("classSelector", "[qualifier .foo-bar_hello] { }"); MT("idSelector", "[builtin #foo] { [error #foo] }"); MT("tagSelectorUnclosed", "[tag foo] { [property margin][operator :] [number 0] } [tag bar] { }"); MT("tagStringNoQuotes", "[tag foo] { [property font-family][operator :] [variable-2 hello] [variable-2 world]; }"); MT("tagStringDouble", "[tag foo] { [property font-family][operator :] [string \"hello world\"]; }"); MT("tagStringSingle", "[tag foo] { [property font-family][operator :] [string 'hello world']; }"); MT("tagColorKeyword", "[tag foo] {" + "[property color][operator :] [keyword black];" + "[property color][operator :] [keyword navy];" + "[property color][operator :] [keyword yellow];" + "}"); MT("tagColorHex3", "[tag foo] { [property background][operator :] [atom #fff]; }"); MT("tagColorHex6", "[tag foo] { [property background][operator :] [atom #ffffff]; }"); MT("tagColorHex4", "[tag foo] { [property background][operator :] [atom&error #ffff]; }"); MT("tagColorHexInvalid", "[tag foo] { [property background][operator :] [atom&error #ffg]; }"); MT("tagNegativeNumber", "[tag foo] { [property margin][operator :] [number -5px]; }"); MT("tagPositiveNumber", "[tag foo] { [property padding][operator :] [number 5px]; }"); MT("tagVendor", "[tag foo] { [meta -foo-][property box-sizing][operator :] [meta -foo-][string-2 border-box]; }"); MT("tagBogusProperty", "[tag foo] { [property&error barhelloworld][operator :] [number 0]; }"); MT("tagTwoProperties", "[tag foo] { [property margin][operator :] [number 0]; [property padding][operator :] [number 0]; }"); MT("tagTwoPropertiesURL", "[tag foo] { [property background][operator :] [string-2 url]([string //example.com/foo.png]); [property padding][operator :] [number 0]; }"); MT("commentSGML", "[comment ]"); })(); assets/lib/codemirror/mode/css/index.html000066600000003015152141651150014476 0ustar00 CodeMirror: CSS mode

            CSS mode

            MIME types defined: text/css.

            Parsing/Highlighting Tests: normal, verbose.

            assets/lib/codemirror/mode/css/css.js000066600000070264152141651150013641 0ustar00CodeMirror.defineMode("css", function(config, parserConfig) { "use strict"; if (!parserConfig.propertyKeywords) parserConfig = CodeMirror.resolveMode("text/css"); var indentUnit = config.indentUnit, hooks = parserConfig.hooks || {}, atMediaTypes = parserConfig.atMediaTypes || {}, atMediaFeatures = parserConfig.atMediaFeatures || {}, propertyKeywords = parserConfig.propertyKeywords || {}, colorKeywords = parserConfig.colorKeywords || {}, valueKeywords = parserConfig.valueKeywords || {}, allowNested = !!parserConfig.allowNested, type = null; function ret(style, tp) { type = tp; return style; } function tokenBase(stream, state) { var ch = stream.next(); if (hooks[ch]) { // result[0] is style and result[1] is type var result = hooks[ch](stream, state); if (result !== false) return result; } if (ch == "@") {stream.eatWhile(/[\w\\\-]/); return ret("def", stream.current());} else if (ch == "=") ret(null, "compare"); else if ((ch == "~" || ch == "|") && stream.eat("=")) return ret(null, "compare"); else if (ch == "\"" || ch == "'") { state.tokenize = tokenString(ch); return state.tokenize(stream, state); } else if (ch == "#") { stream.eatWhile(/[\w\\\-]/); return ret("atom", "hash"); } else if (ch == "!") { stream.match(/^\s*\w*/); return ret("keyword", "important"); } else if (/\d/.test(ch) || ch == "." && stream.eat(/\d/)) { stream.eatWhile(/[\w.%]/); return ret("number", "unit"); } else if (ch === "-") { if (/\d/.test(stream.peek())) { stream.eatWhile(/[\w.%]/); return ret("number", "unit"); } else if (stream.match(/^[^-]+-/)) { return ret("meta", "meta"); } } else if (/[,+>*\/]/.test(ch)) { return ret(null, "select-op"); } else if (ch == "." && stream.match(/^-?[_a-z][_a-z0-9-]*/i)) { return ret("qualifier", "qualifier"); } else if (ch == ":") { return ret("operator", ch); } else if (/[;{}\[\]\(\)]/.test(ch)) { return ret(null, ch); } else if (ch == "u" && stream.match("rl(")) { stream.backUp(1); state.tokenize = tokenParenthesized; return ret("property", "variable"); } else { stream.eatWhile(/[\w\\\-]/); return ret("property", "variable"); } } function tokenString(quote, nonInclusive) { return function(stream, state) { var escaped = false, ch; while ((ch = stream.next()) != null) { if (ch == quote && !escaped) break; escaped = !escaped && ch == "\\"; } if (!escaped) { if (nonInclusive) stream.backUp(1); state.tokenize = tokenBase; } return ret("string", "string"); }; } function tokenParenthesized(stream, state) { stream.next(); // Must be '(' if (!stream.match(/\s*[\"\']/, false)) state.tokenize = tokenString(")", true); else state.tokenize = tokenBase; return ret(null, "("); } return { startState: function(base) { return {tokenize: tokenBase, baseIndent: base || 0, stack: [], lastToken: null}; }, token: function(stream, state) { // Use these terms when applicable (see http://www.xanthir.com/blog/b4E50) // // rule** or **ruleset: // A selector + braces combo, or an at-rule. // // declaration block: // A sequence of declarations. // // declaration: // A property + colon + value combo. // // property value: // The entire value of a property. // // component value: // A single piece of a property value. Like the 5px in // text-shadow: 0 0 5px blue;. Can also refer to things that are // multiple terms, like the 1-4 terms that make up the background-size // portion of the background shorthand. // // term: // The basic unit of author-facing CSS, like a single number (5), // dimension (5px), string ("foo"), or function. Officially defined // by the CSS 2.1 grammar (look for the 'term' production) // // // simple selector: // A single atomic selector, like a type selector, an attr selector, a // class selector, etc. // // compound selector: // One or more simple selectors without a combinator. div.example is // compound, div > .example is not. // // complex selector: // One or more compound selectors chained with combinators. // // combinator: // The parts of selectors that express relationships. There are four // currently - the space (descendant combinator), the greater-than // bracket (child combinator), the plus sign (next sibling combinator), // and the tilda (following sibling combinator). // // sequence of selectors: // One or more of the named type of selector chained with commas. state.tokenize = state.tokenize || tokenBase; if (state.tokenize == tokenBase && stream.eatSpace()) return null; var style = state.tokenize(stream, state); if (style && typeof style != "string") style = ret(style[0], style[1]); // Changing style returned based on context var context = state.stack[state.stack.length-1]; if (style == "variable") { if (type == "variable-definition") state.stack.push("propertyValue"); return state.lastToken = "variable-2"; } else if (style == "property") { var word = stream.current().toLowerCase(); if (context == "propertyValue") { if (valueKeywords.hasOwnProperty(word)) { style = "string-2"; } else if (colorKeywords.hasOwnProperty(word)) { style = "keyword"; } else { style = "variable-2"; } } else if (context == "rule") { if (!propertyKeywords.hasOwnProperty(word)) { style += " error"; } } else if (context == "block") { // if a value is present in both property, value, or color, the order // of preference is property -> color -> value if (propertyKeywords.hasOwnProperty(word)) { style = "property"; } else if (colorKeywords.hasOwnProperty(word)) { style = "keyword"; } else if (valueKeywords.hasOwnProperty(word)) { style = "string-2"; } else { style = "tag"; } } else if (!context || context == "@media{") { style = "tag"; } else if (context == "@media") { if (atMediaTypes[stream.current()]) { style = "attribute"; // Known attribute } else if (/^(only|not)$/.test(word)) { style = "keyword"; } else if (word == "and") { style = "error"; // "and" is only allowed in @mediaType } else if (atMediaFeatures.hasOwnProperty(word)) { style = "error"; // Known property, should be in @mediaType( } else { // Unknown, expecting keyword or attribute, assuming attribute style = "attribute error"; } } else if (context == "@mediaType") { if (atMediaTypes.hasOwnProperty(word)) { style = "attribute"; } else if (word == "and") { style = "operator"; } else if (/^(only|not)$/.test(word)) { style = "error"; // Only allowed in @media } else { // Unknown attribute or property, but expecting property (preceded // by "and"). Should be in parentheses style = "error"; } } else if (context == "@mediaType(") { if (propertyKeywords.hasOwnProperty(word)) { // do nothing, remains "property" } else if (atMediaTypes.hasOwnProperty(word)) { style = "error"; // Known property, should be in parentheses } else if (word == "and") { style = "operator"; } else if (/^(only|not)$/.test(word)) { style = "error"; // Only allowed in @media } else { style += " error"; } } else if (context == "@import") { style = "tag"; } else { style = "error"; } } else if (style == "atom") { if(!context || context == "@media{" || context == "block") { style = "builtin"; } else if (context == "propertyValue") { if (!/^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/.test(stream.current())) { style += " error"; } } else { style = "error"; } } else if (context == "@media" && type == "{") { style = "error"; } // Push/pop context stack if (type == "{") { if (context == "@media" || context == "@mediaType") { state.stack[state.stack.length-1] = "@media{"; } else { var newContext = allowNested ? "block" : "rule"; state.stack.push(newContext); } } else if (type == "}") { if (context == "interpolation") style = "operator"; state.stack.pop(); if (context == "propertyValue") state.stack.pop(); } else if (type == "interpolation") state.stack.push("interpolation"); else if (type == "@media") state.stack.push("@media"); else if (type == "@import") state.stack.push("@import"); else if (context == "@media" && /\b(keyword|attribute)\b/.test(style)) state.stack[state.stack.length-1] = "@mediaType"; else if (context == "@mediaType" && stream.current() == ",") state.stack[state.stack.length-1] = "@media"; else if (type == "(") { if (context == "@media" || context == "@mediaType") { // Make sure @mediaType is used to avoid error on { state.stack[state.stack.length-1] = "@mediaType"; state.stack.push("@mediaType("); } else state.stack.push("("); } else if (type == ")") { if (context == "propertyValue") { // In @mediaType( without closing ; after propertyValue state.stack.pop(); } state.stack.pop(); } else if (type == ":" && state.lastToken == "property") state.stack.push("propertyValue"); else if (context == "propertyValue" && type == ";") state.stack.pop(); else if (context == "@import" && type == ";") state.stack.pop(); return state.lastToken = style; }, indent: function(state, textAfter) { var n = state.stack.length; if (/^\}/.test(textAfter)) n -= state.stack[n-1] == "propertyValue" ? 2 : 1; return state.baseIndent + n * indentUnit; }, electricChars: "}", blockCommentStart: "/*", blockCommentEnd: "*/", fold: "brace" }; }); (function() { function keySet(array) { var keys = {}; for (var i = 0; i < array.length; ++i) { keys[array[i]] = true; } return keys; } var atMediaTypes = keySet([ "all", "aural", "braille", "handheld", "print", "projection", "screen", "tty", "tv", "embossed" ]); var atMediaFeatures = keySet([ "width", "min-width", "max-width", "height", "min-height", "max-height", "device-width", "min-device-width", "max-device-width", "device-height", "min-device-height", "max-device-height", "aspect-ratio", "min-aspect-ratio", "max-aspect-ratio", "device-aspect-ratio", "min-device-aspect-ratio", "max-device-aspect-ratio", "color", "min-color", "max-color", "color-index", "min-color-index", "max-color-index", "monochrome", "min-monochrome", "max-monochrome", "resolution", "min-resolution", "max-resolution", "scan", "grid" ]); var propertyKeywords = keySet([ "align-content", "align-items", "align-self", "alignment-adjust", "alignment-baseline", "anchor-point", "animation", "animation-delay", "animation-direction", "animation-duration", "animation-iteration-count", "animation-name", "animation-play-state", "animation-timing-function", "appearance", "azimuth", "backface-visibility", "background", "background-attachment", "background-clip", "background-color", "background-image", "background-origin", "background-position", "background-repeat", "background-size", "baseline-shift", "binding", "bleed", "bookmark-label", "bookmark-level", "bookmark-state", "bookmark-target", "border", "border-bottom", "border-bottom-color", "border-bottom-left-radius", "border-bottom-right-radius", "border-bottom-style", "border-bottom-width", "border-collapse", "border-color", "border-image", "border-image-outset", "border-image-repeat", "border-image-slice", "border-image-source", "border-image-width", "border-left", "border-left-color", "border-left-style", "border-left-width", "border-radius", "border-right", "border-right-color", "border-right-style", "border-right-width", "border-spacing", "border-style", "border-top", "border-top-color", "border-top-left-radius", "border-top-right-radius", "border-top-style", "border-top-width", "border-width", "bottom", "box-decoration-break", "box-shadow", "box-sizing", "break-after", "break-before", "break-inside", "caption-side", "clear", "clip", "color", "color-profile", "column-count", "column-fill", "column-gap", "column-rule", "column-rule-color", "column-rule-style", "column-rule-width", "column-span", "column-width", "columns", "content", "counter-increment", "counter-reset", "crop", "cue", "cue-after", "cue-before", "cursor", "direction", "display", "dominant-baseline", "drop-initial-after-adjust", "drop-initial-after-align", "drop-initial-before-adjust", "drop-initial-before-align", "drop-initial-size", "drop-initial-value", "elevation", "empty-cells", "fit", "fit-position", "flex", "flex-basis", "flex-direction", "flex-flow", "flex-grow", "flex-shrink", "flex-wrap", "float", "float-offset", "flow-from", "flow-into", "font", "font-feature-settings", "font-family", "font-kerning", "font-language-override", "font-size", "font-size-adjust", "font-stretch", "font-style", "font-synthesis", "font-variant", "font-variant-alternates", "font-variant-caps", "font-variant-east-asian", "font-variant-ligatures", "font-variant-numeric", "font-variant-position", "font-weight", "grid-cell", "grid-column", "grid-column-align", "grid-column-sizing", "grid-column-span", "grid-columns", "grid-flow", "grid-row", "grid-row-align", "grid-row-sizing", "grid-row-span", "grid-rows", "grid-template", "hanging-punctuation", "height", "hyphens", "icon", "image-orientation", "image-rendering", "image-resolution", "inline-box-align", "justify-content", "left", "letter-spacing", "line-break", "line-height", "line-stacking", "line-stacking-ruby", "line-stacking-shift", "line-stacking-strategy", "list-style", "list-style-image", "list-style-position", "list-style-type", "margin", "margin-bottom", "margin-left", "margin-right", "margin-top", "marker-offset", "marks", "marquee-direction", "marquee-loop", "marquee-play-count", "marquee-speed", "marquee-style", "max-height", "max-width", "min-height", "min-width", "move-to", "nav-down", "nav-index", "nav-left", "nav-right", "nav-up", "opacity", "order", "orphans", "outline", "outline-color", "outline-offset", "outline-style", "outline-width", "overflow", "overflow-style", "overflow-wrap", "overflow-x", "overflow-y", "padding", "padding-bottom", "padding-left", "padding-right", "padding-top", "page", "page-break-after", "page-break-before", "page-break-inside", "page-policy", "pause", "pause-after", "pause-before", "perspective", "perspective-origin", "pitch", "pitch-range", "play-during", "position", "presentation-level", "punctuation-trim", "quotes", "region-break-after", "region-break-before", "region-break-inside", "region-fragment", "rendering-intent", "resize", "rest", "rest-after", "rest-before", "richness", "right", "rotation", "rotation-point", "ruby-align", "ruby-overhang", "ruby-position", "ruby-span", "shape-inside", "shape-outside", "size", "speak", "speak-as", "speak-header", "speak-numeral", "speak-punctuation", "speech-rate", "stress", "string-set", "tab-size", "table-layout", "target", "target-name", "target-new", "target-position", "text-align", "text-align-last", "text-decoration", "text-decoration-color", "text-decoration-line", "text-decoration-skip", "text-decoration-style", "text-emphasis", "text-emphasis-color", "text-emphasis-position", "text-emphasis-style", "text-height", "text-indent", "text-justify", "text-outline", "text-overflow", "text-shadow", "text-size-adjust", "text-space-collapse", "text-transform", "text-underline-position", "text-wrap", "top", "transform", "transform-origin", "transform-style", "transition", "transition-delay", "transition-duration", "transition-property", "transition-timing-function", "unicode-bidi", "vertical-align", "visibility", "voice-balance", "voice-duration", "voice-family", "voice-pitch", "voice-range", "voice-rate", "voice-stress", "voice-volume", "volume", "white-space", "widows", "width", "word-break", "word-spacing", "word-wrap", "z-index", "zoom", // SVG-specific "clip-path", "clip-rule", "mask", "enable-background", "filter", "flood-color", "flood-opacity", "lighting-color", "stop-color", "stop-opacity", "pointer-events", "color-interpolation", "color-interpolation-filters", "color-profile", "color-rendering", "fill", "fill-opacity", "fill-rule", "image-rendering", "marker", "marker-end", "marker-mid", "marker-start", "shape-rendering", "stroke", "stroke-dasharray", "stroke-dashoffset", "stroke-linecap", "stroke-linejoin", "stroke-miterlimit", "stroke-opacity", "stroke-width", "text-rendering", "baseline-shift", "dominant-baseline", "glyph-orientation-horizontal", "glyph-orientation-vertical", "kerning", "text-anchor", "writing-mode" ]); var colorKeywords = keySet([ "aliceblue", "antiquewhite", "aqua", "aquamarine", "azure", "beige", "bisque", "black", "blanchedalmond", "blue", "blueviolet", "brown", "burlywood", "cadetblue", "chartreuse", "chocolate", "coral", "cornflowerblue", "cornsilk", "crimson", "cyan", "darkblue", "darkcyan", "darkgoldenrod", "darkgray", "darkgreen", "darkkhaki", "darkmagenta", "darkolivegreen", "darkorange", "darkorchid", "darkred", "darksalmon", "darkseagreen", "darkslateblue", "darkslategray", "darkturquoise", "darkviolet", "deeppink", "deepskyblue", "dimgray", "dodgerblue", "firebrick", "floralwhite", "forestgreen", "fuchsia", "gainsboro", "ghostwhite", "gold", "goldenrod", "gray", "grey", "green", "greenyellow", "honeydew", "hotpink", "indianred", "indigo", "ivory", "khaki", "lavender", "lavenderblush", "lawngreen", "lemonchiffon", "lightblue", "lightcoral", "lightcyan", "lightgoldenrodyellow", "lightgray", "lightgreen", "lightpink", "lightsalmon", "lightseagreen", "lightskyblue", "lightslategray", "lightsteelblue", "lightyellow", "lime", "limegreen", "linen", "magenta", "maroon", "mediumaquamarine", "mediumblue", "mediumorchid", "mediumpurple", "mediumseagreen", "mediumslateblue", "mediumspringgreen", "mediumturquoise", "mediumvioletred", "midnightblue", "mintcream", "mistyrose", "moccasin", "navajowhite", "navy", "oldlace", "olive", "olivedrab", "orange", "orangered", "orchid", "palegoldenrod", "palegreen", "paleturquoise", "palevioletred", "papayawhip", "peachpuff", "peru", "pink", "plum", "powderblue", "purple", "red", "rosybrown", "royalblue", "saddlebrown", "salmon", "sandybrown", "seagreen", "seashell", "sienna", "silver", "skyblue", "slateblue", "slategray", "snow", "springgreen", "steelblue", "tan", "teal", "thistle", "tomato", "turquoise", "violet", "wheat", "white", "whitesmoke", "yellow", "yellowgreen" ]); var valueKeywords = keySet([ "above", "absolute", "activeborder", "activecaption", "afar", "after-white-space", "ahead", "alias", "all", "all-scroll", "alternate", "always", "amharic", "amharic-abegede", "antialiased", "appworkspace", "arabic-indic", "armenian", "asterisks", "auto", "avoid", "avoid-column", "avoid-page", "avoid-region", "background", "backwards", "baseline", "below", "bidi-override", "binary", "bengali", "blink", "block", "block-axis", "bold", "bolder", "border", "border-box", "both", "bottom", "break", "break-all", "break-word", "button", "button-bevel", "buttonface", "buttonhighlight", "buttonshadow", "buttontext", "cambodian", "capitalize", "caps-lock-indicator", "caption", "captiontext", "caret", "cell", "center", "checkbox", "circle", "cjk-earthly-branch", "cjk-heavenly-stem", "cjk-ideographic", "clear", "clip", "close-quote", "col-resize", "collapse", "column", "compact", "condensed", "contain", "content", "content-box", "context-menu", "continuous", "copy", "cover", "crop", "cross", "crosshair", "currentcolor", "cursive", "dashed", "decimal", "decimal-leading-zero", "default", "default-button", "destination-atop", "destination-in", "destination-out", "destination-over", "devanagari", "disc", "discard", "document", "dot-dash", "dot-dot-dash", "dotted", "double", "down", "e-resize", "ease", "ease-in", "ease-in-out", "ease-out", "element", "ellipse", "ellipsis", "embed", "end", "ethiopic", "ethiopic-abegede", "ethiopic-abegede-am-et", "ethiopic-abegede-gez", "ethiopic-abegede-ti-er", "ethiopic-abegede-ti-et", "ethiopic-halehame-aa-er", "ethiopic-halehame-aa-et", "ethiopic-halehame-am-et", "ethiopic-halehame-gez", "ethiopic-halehame-om-et", "ethiopic-halehame-sid-et", "ethiopic-halehame-so-et", "ethiopic-halehame-ti-er", "ethiopic-halehame-ti-et", "ethiopic-halehame-tig", "ew-resize", "expanded", "extra-condensed", "extra-expanded", "fantasy", "fast", "fill", "fixed", "flat", "footnotes", "forwards", "from", "geometricPrecision", "georgian", "graytext", "groove", "gujarati", "gurmukhi", "hand", "hangul", "hangul-consonant", "hebrew", "help", "hidden", "hide", "higher", "highlight", "highlighttext", "hiragana", "hiragana-iroha", "horizontal", "hsl", "hsla", "icon", "ignore", "inactiveborder", "inactivecaption", "inactivecaptiontext", "infinite", "infobackground", "infotext", "inherit", "initial", "inline", "inline-axis", "inline-block", "inline-table", "inset", "inside", "intrinsic", "invert", "italic", "justify", "kannada", "katakana", "katakana-iroha", "keep-all", "khmer", "landscape", "lao", "large", "larger", "left", "level", "lighter", "line-through", "linear", "lines", "list-item", "listbox", "listitem", "local", "logical", "loud", "lower", "lower-alpha", "lower-armenian", "lower-greek", "lower-hexadecimal", "lower-latin", "lower-norwegian", "lower-roman", "lowercase", "ltr", "malayalam", "match", "media-controls-background", "media-current-time-display", "media-fullscreen-button", "media-mute-button", "media-play-button", "media-return-to-realtime-button", "media-rewind-button", "media-seek-back-button", "media-seek-forward-button", "media-slider", "media-sliderthumb", "media-time-remaining-display", "media-volume-slider", "media-volume-slider-container", "media-volume-sliderthumb", "medium", "menu", "menulist", "menulist-button", "menulist-text", "menulist-textfield", "menutext", "message-box", "middle", "min-intrinsic", "mix", "mongolian", "monospace", "move", "multiple", "myanmar", "n-resize", "narrower", "ne-resize", "nesw-resize", "no-close-quote", "no-drop", "no-open-quote", "no-repeat", "none", "normal", "not-allowed", "nowrap", "ns-resize", "nw-resize", "nwse-resize", "oblique", "octal", "open-quote", "optimizeLegibility", "optimizeSpeed", "oriya", "oromo", "outset", "outside", "outside-shape", "overlay", "overline", "padding", "padding-box", "painted", "page", "paused", "persian", "plus-darker", "plus-lighter", "pointer", "polygon", "portrait", "pre", "pre-line", "pre-wrap", "preserve-3d", "progress", "push-button", "radio", "read-only", "read-write", "read-write-plaintext-only", "rectangle", "region", "relative", "repeat", "repeat-x", "repeat-y", "reset", "reverse", "rgb", "rgba", "ridge", "right", "round", "row-resize", "rtl", "run-in", "running", "s-resize", "sans-serif", "scroll", "scrollbar", "se-resize", "searchfield", "searchfield-cancel-button", "searchfield-decoration", "searchfield-results-button", "searchfield-results-decoration", "semi-condensed", "semi-expanded", "separate", "serif", "show", "sidama", "single", "skip-white-space", "slide", "slider-horizontal", "slider-vertical", "sliderthumb-horizontal", "sliderthumb-vertical", "slow", "small", "small-caps", "small-caption", "smaller", "solid", "somali", "source-atop", "source-in", "source-out", "source-over", "space", "square", "square-button", "start", "static", "status-bar", "stretch", "stroke", "sub", "subpixel-antialiased", "super", "sw-resize", "table", "table-caption", "table-cell", "table-column", "table-column-group", "table-footer-group", "table-header-group", "table-row", "table-row-group", "telugu", "text", "text-bottom", "text-top", "textarea", "textfield", "thai", "thick", "thin", "threeddarkshadow", "threedface", "threedhighlight", "threedlightshadow", "threedshadow", "tibetan", "tigre", "tigrinya-er", "tigrinya-er-abegede", "tigrinya-et", "tigrinya-et-abegede", "to", "top", "transparent", "ultra-condensed", "ultra-expanded", "underline", "up", "upper-alpha", "upper-armenian", "upper-greek", "upper-hexadecimal", "upper-latin", "upper-norwegian", "upper-roman", "uppercase", "urdu", "url", "vertical", "vertical-text", "visible", "visibleFill", "visiblePainted", "visibleStroke", "visual", "w-resize", "wait", "wave", "wider", "window", "windowframe", "windowtext", "x-large", "x-small", "xor", "xx-large", "xx-small" ]); function tokenCComment(stream, state) { var maybeEnd = false, ch; while ((ch = stream.next()) != null) { if (maybeEnd && ch == "/") { state.tokenize = null; break; } maybeEnd = (ch == "*"); } return ["comment", "comment"]; } CodeMirror.defineMIME("text/css", { atMediaTypes: atMediaTypes, atMediaFeatures: atMediaFeatures, propertyKeywords: propertyKeywords, colorKeywords: colorKeywords, valueKeywords: valueKeywords, hooks: { "<": function(stream, state) { function tokenSGMLComment(stream, state) { var dashes = 0, ch; while ((ch = stream.next()) != null) { if (dashes >= 2 && ch == ">") { state.tokenize = null; break; } dashes = (ch == "-") ? dashes + 1 : 0; } return ["comment", "comment"]; } if (stream.eat("!")) { state.tokenize = tokenSGMLComment; return tokenSGMLComment(stream, state); } }, "/": function(stream, state) { if (stream.eat("*")) { state.tokenize = tokenCComment; return tokenCComment(stream, state); } return false; } }, name: "css" }); CodeMirror.defineMIME("text/x-scss", { atMediaTypes: atMediaTypes, atMediaFeatures: atMediaFeatures, propertyKeywords: propertyKeywords, colorKeywords: colorKeywords, valueKeywords: valueKeywords, allowNested: true, hooks: { ":": function(stream) { if (stream.match(/\s*{/)) { return [null, "{"]; } return false; }, "$": function(stream) { stream.match(/^[\w-]+/); if (stream.peek() == ":") { return ["variable", "variable-definition"]; } return ["variable", "variable"]; }, "/": function(stream, state) { if (stream.eat("/")) { stream.skipToEnd(); return ["comment", "comment"]; } else if (stream.eat("*")) { state.tokenize = tokenCComment; return tokenCComment(stream, state); } else { return ["operator", "operator"]; } }, "#": function(stream) { if (stream.eat("{")) { return ["operator", "interpolation"]; } else { stream.eatWhile(/[\w\\\-]/); return ["atom", "hash"]; } } }, name: "css" }); })(); assets/lib/codemirror/mode/css/scss_test.js000066600000005220152141651150015051 0ustar00(function() { var mode = CodeMirror.getMode({tabSize: 4}, "text/x-scss"); function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1), "scss"); } MT('url_with_quotation', "[tag foo] { [property background][operator :][string-2 url]([string test.jpg]) }"); MT('url_with_double_quotes', "[tag foo] { [property background][operator :][string-2 url]([string \"test.jpg\"]) }"); MT('url_with_single_quotes', "[tag foo] { [property background][operator :][string-2 url]([string \'test.jpg\']) }"); MT('string', "[def @import] [string \"compass/css3\"]"); MT('important_keyword', "[tag foo] { [property background][operator :][string-2 url]([string \'test.jpg\']) [keyword !important] }"); MT('variable', "[variable-2 $blue][operator :][atom #333]"); MT('variable_as_attribute', "[tag foo] { [property color][operator :][variable-2 $blue] }"); MT('numbers', "[tag foo] { [property padding][operator :][number 10px] [number 10] [number 10em] [number 8in] }"); MT('number_percentage', "[tag foo] { [property width][operator :][number 80%] }"); MT('selector', "[builtin #hello][qualifier .world]{}"); MT('singleline_comment', "[comment // this is a comment]"); MT('multiline_comment', "[comment /*foobar*/]"); MT('attribute_with_hyphen', "[tag foo] { [property font-size][operator :][number 10px] }"); MT('string_after_attribute', "[tag foo] { [property content][operator :][string \"::\"] }"); MT('directives', "[def @include] [qualifier .mixin]"); MT('basic_structure', "[tag p] { [property background][operator :][keyword red]; }"); MT('nested_structure', "[tag p] { [tag a] { [property color][operator :][keyword red]; } }"); MT('mixin', "[def @mixin] [tag table-base] {}"); MT('number_without_semicolon', "[tag p] {[property width][operator :][number 12]}", "[tag a] {[property color][operator :][keyword red];}"); MT('atom_in_nested_block', "[tag p] { [tag a] { [property color][operator :][atom #000]; } }"); MT('interpolation_in_property', "[tag foo] { [operator #{][variable-2 $hello][operator }:][number 2]; }"); MT('interpolation_in_selector', "[tag foo][operator #{][variable-2 $hello][operator }] { [property color][operator :][atom #000]; }"); MT('interpolation_error', "[tag foo][operator #{][error foo][operator }] { [property color][operator :][atom #000]; }"); MT("divide_operator", "[tag foo] { [property width][operator :][number 4] [operator /] [number 2] }"); MT('nested_structure_with_id_selector', "[tag p] { [builtin #hello] { [property color][operator :][keyword red]; } }"); })(); assets/lib/codemirror/mode/css/scss.html000066600000005166152141651150014353 0ustar00 CodeMirror: SCSS mode

            SCSS mode

            MIME types defined: text/scss.

            Parsing/Highlighting Tests: normal, verbose.

            assets/lib/codemirror/mode/php/index.html000066600000003620152141651150014477 0ustar00 CodeMirror: PHP mode

            PHP mode

            Simple HTML/PHP mode based on the C-like mode. Depends on XML, JavaScript, CSS, HTMLMixed, and C-like modes.

            MIME types defined: application/x-httpd-php (HTML with PHP code), text/x-php (plain, non-wrapped PHP code).

            assets/lib/codemirror/mode/php/php.js000066600000027716152141651150013643 0ustar00(function() { function keywords(str) { var obj = {}, words = str.split(" "); for (var i = 0; i < words.length; ++i) obj[words[i]] = true; return obj; } function heredoc(delim) { return function(stream, state) { if (stream.match(delim)) state.tokenize = null; else stream.skipToEnd(); return "string"; }; } var phpConfig = { name: "clike", keywords: keywords("abstract and array as break case catch class clone const continue declare default " + "do else elseif enddeclare endfor endforeach endif endswitch endwhile extends final " + "for foreach function global goto if implements interface instanceof namespace " + "new or private protected public static switch throw trait try use var while xor " + "die echo empty exit eval include include_once isset list require require_once return " + "print unset __halt_compiler self static parent"), blockKeywords: keywords("catch do else elseif for foreach if switch try while"), atoms: keywords("true false null TRUE FALSE NULL __CLASS__ __DIR__ __FILE__ __LINE__ __METHOD__ __FUNCTION__ __NAMESPACE__"), builtin: keywords("func_num_args func_get_arg func_get_args strlen strcmp strncmp strcasecmp strncasecmp each error_reporting define defined trigger_error user_error set_error_handler restore_error_handler get_declared_classes get_loaded_extensions extension_loaded get_extension_funcs debug_backtrace constant bin2hex sleep usleep time mktime gmmktime strftime gmstrftime strtotime date gmdate getdate localtime checkdate flush wordwrap htmlspecialchars htmlentities html_entity_decode md5 md5_file crc32 getimagesize image_type_to_mime_type phpinfo phpversion phpcredits strnatcmp strnatcasecmp substr_count strspn strcspn strtok strtoupper strtolower strpos strrpos strrev hebrev hebrevc nl2br basename dirname pathinfo stripslashes stripcslashes strstr stristr strrchr str_shuffle str_word_count strcoll substr substr_replace quotemeta ucfirst ucwords strtr addslashes addcslashes rtrim str_replace str_repeat count_chars chunk_split trim ltrim strip_tags similar_text explode implode setlocale localeconv parse_str str_pad chop strchr sprintf printf vprintf vsprintf sscanf fscanf parse_url urlencode urldecode rawurlencode rawurldecode readlink linkinfo link unlink exec system escapeshellcmd escapeshellarg passthru shell_exec proc_open proc_close rand srand getrandmax mt_rand mt_srand mt_getrandmax base64_decode base64_encode abs ceil floor round is_finite is_nan is_infinite bindec hexdec octdec decbin decoct dechex base_convert number_format fmod ip2long long2ip getenv putenv getopt microtime gettimeofday getrusage uniqid quoted_printable_decode set_time_limit get_cfg_var magic_quotes_runtime set_magic_quotes_runtime get_magic_quotes_gpc get_magic_quotes_runtime import_request_variables error_log serialize unserialize memory_get_usage var_dump var_export debug_zval_dump print_r highlight_file show_source highlight_string ini_get ini_get_all ini_set ini_alter ini_restore get_include_path set_include_path restore_include_path setcookie header headers_sent connection_aborted connection_status ignore_user_abort parse_ini_file is_uploaded_file move_uploaded_file intval floatval doubleval strval gettype settype is_null is_resource is_bool is_long is_float is_int is_integer is_double is_real is_numeric is_string is_array is_object is_scalar ereg ereg_replace eregi eregi_replace split spliti join sql_regcase dl pclose popen readfile rewind rmdir umask fclose feof fgetc fgets fgetss fread fopen fpassthru ftruncate fstat fseek ftell fflush fwrite fputs mkdir rename copy tempnam tmpfile file file_get_contents stream_select stream_context_create stream_context_set_params stream_context_set_option stream_context_get_options stream_filter_prepend stream_filter_append fgetcsv flock get_meta_tags stream_set_write_buffer set_file_buffer set_socket_blocking stream_set_blocking socket_set_blocking stream_get_meta_data stream_register_wrapper stream_wrapper_register stream_set_timeout socket_set_timeout socket_get_status realpath fnmatch fsockopen pfsockopen pack unpack get_browser crypt opendir closedir chdir getcwd rewinddir readdir dir glob fileatime filectime filegroup fileinode filemtime fileowner fileperms filesize filetype file_exists is_writable is_writeable is_readable is_executable is_file is_dir is_link stat lstat chown touch clearstatcache mail ob_start ob_flush ob_clean ob_end_flush ob_end_clean ob_get_flush ob_get_clean ob_get_length ob_get_level ob_get_status ob_get_contents ob_implicit_flush ob_list_handlers ksort krsort natsort natcasesort asort arsort sort rsort usort uasort uksort shuffle array_walk count end prev next reset current key min max in_array array_search extract compact array_fill range array_multisort array_push array_pop array_shift array_unshift array_splice array_slice array_merge array_merge_recursive array_keys array_values array_count_values array_reverse array_reduce array_pad array_flip array_change_key_case array_rand array_unique array_intersect array_intersect_assoc array_diff array_diff_assoc array_sum array_filter array_map array_chunk array_key_exists pos sizeof key_exists assert assert_options version_compare ftok str_rot13 aggregate session_name session_module_name session_save_path session_id session_regenerate_id session_decode session_register session_unregister session_is_registered session_encode session_start session_destroy session_unset session_set_save_handler session_cache_limiter session_cache_expire session_set_cookie_params session_get_cookie_params session_write_close preg_match preg_match_all preg_replace preg_replace_callback preg_split preg_quote preg_grep overload ctype_alnum ctype_alpha ctype_cntrl ctype_digit ctype_lower ctype_graph ctype_print ctype_punct ctype_space ctype_upper ctype_xdigit virtual apache_request_headers apache_note apache_lookup_uri apache_child_terminate apache_setenv apache_response_headers apache_get_version getallheaders mysql_connect mysql_pconnect mysql_close mysql_select_db mysql_create_db mysql_drop_db mysql_query mysql_unbuffered_query mysql_db_query mysql_list_dbs mysql_list_tables mysql_list_fields mysql_list_processes mysql_error mysql_errno mysql_affected_rows mysql_insert_id mysql_result mysql_num_rows mysql_num_fields mysql_fetch_row mysql_fetch_array mysql_fetch_assoc mysql_fetch_object mysql_data_seek mysql_fetch_lengths mysql_fetch_field mysql_field_seek mysql_free_result mysql_field_name mysql_field_table mysql_field_len mysql_field_type mysql_field_flags mysql_escape_string mysql_real_escape_string mysql_stat mysql_thread_id mysql_client_encoding mysql_get_client_info mysql_get_host_info mysql_get_proto_info mysql_get_server_info mysql_info mysql mysql_fieldname mysql_fieldtable mysql_fieldlen mysql_fieldtype mysql_fieldflags mysql_selectdb mysql_createdb mysql_dropdb mysql_freeresult mysql_numfields mysql_numrows mysql_listdbs mysql_listtables mysql_listfields mysql_db_name mysql_dbname mysql_tablename mysql_table_name pg_connect pg_pconnect pg_close pg_connection_status pg_connection_busy pg_connection_reset pg_host pg_dbname pg_port pg_tty pg_options pg_ping pg_query pg_send_query pg_cancel_query pg_fetch_result pg_fetch_row pg_fetch_assoc pg_fetch_array pg_fetch_object pg_fetch_all pg_affected_rows pg_get_result pg_result_seek pg_result_status pg_free_result pg_last_oid pg_num_rows pg_num_fields pg_field_name pg_field_num pg_field_size pg_field_type pg_field_prtlen pg_field_is_null pg_get_notify pg_get_pid pg_result_error pg_last_error pg_last_notice pg_put_line pg_end_copy pg_copy_to pg_copy_from pg_trace pg_untrace pg_lo_create pg_lo_unlink pg_lo_open pg_lo_close pg_lo_read pg_lo_write pg_lo_read_all pg_lo_import pg_lo_export pg_lo_seek pg_lo_tell pg_escape_string pg_escape_bytea pg_unescape_bytea pg_client_encoding pg_set_client_encoding pg_meta_data pg_convert pg_insert pg_update pg_delete pg_select pg_exec pg_getlastoid pg_cmdtuples pg_errormessage pg_numrows pg_numfields pg_fieldname pg_fieldsize pg_fieldtype pg_fieldnum pg_fieldprtlen pg_fieldisnull pg_freeresult pg_result pg_loreadall pg_locreate pg_lounlink pg_loopen pg_loclose pg_loread pg_lowrite pg_loimport pg_loexport echo print global static exit array empty eval isset unset die include require include_once require_once"), multiLineStrings: true, hooks: { "$": function(stream) { stream.eatWhile(/[\w\$_]/); return "variable-2"; }, "<": function(stream, state) { if (stream.match(/<", false)) stream.next(); return "comment"; }, "/": function(stream) { if (stream.eat("/")) { while (!stream.eol() && !stream.match("?>", false)) stream.next(); return "comment"; } return false; } } }; CodeMirror.defineMode("php", function(config, parserConfig) { var htmlMode = CodeMirror.getMode(config, "text/html"); var phpMode = CodeMirror.getMode(config, phpConfig); function dispatch(stream, state) { var isPHP = state.curMode == phpMode; if (stream.sol() && state.pending != '"') state.pending = null; if (!isPHP) { if (stream.match(/^<\?\w*/)) { state.curMode = phpMode; state.curState = state.php; return "meta"; } if (state.pending == '"') { while (!stream.eol() && stream.next() != '"') {} var style = "string"; } else if (state.pending && stream.pos < state.pending.end) { stream.pos = state.pending.end; var style = state.pending.style; } else { var style = htmlMode.token(stream, state.curState); } state.pending = null; var cur = stream.current(), openPHP = cur.search(/<\?/); if (openPHP != -1) { if (style == "string" && /\"$/.test(cur) && !/\?>/.test(cur)) state.pending = '"'; else state.pending = {end: stream.pos, style: style}; stream.backUp(cur.length - openPHP); } return style; } else if (isPHP && state.php.tokenize == null && stream.match("?>")) { state.curMode = htmlMode; state.curState = state.html; return "meta"; } else { return phpMode.token(stream, state.curState); } } return { startState: function() { var html = CodeMirror.startState(htmlMode), php = CodeMirror.startState(phpMode); return {html: html, php: php, curMode: parserConfig.startOpen ? phpMode : htmlMode, curState: parserConfig.startOpen ? php : html, pending: null}; }, copyState: function(state) { var html = state.html, htmlNew = CodeMirror.copyState(htmlMode, html), php = state.php, phpNew = CodeMirror.copyState(phpMode, php), cur; if (state.curMode == htmlMode) cur = htmlNew; else cur = phpNew; return {html: htmlNew, php: phpNew, curMode: state.curMode, curState: cur, pending: state.pending}; }, token: dispatch, indent: function(state, textAfter) { if ((state.curMode != phpMode && /^\s*<\//.test(textAfter)) || (state.curMode == phpMode && /^\?>/.test(textAfter))) return htmlMode.indent(state.html, textAfter); return state.curMode.indent(state.curState, textAfter); }, electricChars: "/{}:", blockCommentStart: "/*", blockCommentEnd: "*/", lineComment: "//", innerMode: function(state) { return {state: state.curState, mode: state.curMode}; } }; }, "htmlmixed", "clike"); CodeMirror.defineMIME("application/x-httpd-php", "php"); CodeMirror.defineMIME("application/x-httpd-php-open", {name: "php", startOpen: true}); CodeMirror.defineMIME("text/x-php", phpConfig); })(); assets/lib/codemirror/mode/xml/index.html000066600000003634152141651150014515 0ustar00 CodeMirror: XML mode

            XML mode

            The XML mode supports two configuration parameters:

            htmlMode (boolean)
            This switches the mode to parse HTML instead of XML. This means attributes do not have to be quoted, and some elements (such as br) do not require a closing tag.
            alignCDATA (boolean)
            Setting this to true will force the opening tag of CDATA blocks to not be indented.

            MIME types defined: application/xml, text/html.

            assets/lib/codemirror/mode/xml/xml.js000066600000025507152141651150013661 0ustar00CodeMirror.defineMode("xml", function(config, parserConfig) { var indentUnit = config.indentUnit; var multilineTagIndentFactor = parserConfig.multilineTagIndentFactor || 1; var multilineTagIndentPastTag = parserConfig.multilineTagIndentPastTag || true; var Kludges = parserConfig.htmlMode ? { autoSelfClosers: {'area': true, 'base': true, 'br': true, 'col': true, 'command': true, 'embed': true, 'frame': true, 'hr': true, 'img': true, 'input': true, 'keygen': true, 'link': true, 'meta': true, 'param': true, 'source': true, 'track': true, 'wbr': true}, implicitlyClosed: {'dd': true, 'li': true, 'optgroup': true, 'option': true, 'p': true, 'rp': true, 'rt': true, 'tbody': true, 'td': true, 'tfoot': true, 'th': true, 'tr': true}, contextGrabbers: { 'dd': {'dd': true, 'dt': true}, 'dt': {'dd': true, 'dt': true}, 'li': {'li': true}, 'option': {'option': true, 'optgroup': true}, 'optgroup': {'optgroup': true}, 'p': {'address': true, 'article': true, 'aside': true, 'blockquote': true, 'dir': true, 'div': true, 'dl': true, 'fieldset': true, 'footer': true, 'form': true, 'h1': true, 'h2': true, 'h3': true, 'h4': true, 'h5': true, 'h6': true, 'header': true, 'hgroup': true, 'hr': true, 'menu': true, 'nav': true, 'ol': true, 'p': true, 'pre': true, 'section': true, 'table': true, 'ul': true}, 'rp': {'rp': true, 'rt': true}, 'rt': {'rp': true, 'rt': true}, 'tbody': {'tbody': true, 'tfoot': true}, 'td': {'td': true, 'th': true}, 'tfoot': {'tbody': true}, 'th': {'td': true, 'th': true}, 'thead': {'tbody': true, 'tfoot': true}, 'tr': {'tr': true} }, doNotIndent: {"pre": true}, allowUnquoted: true, allowMissing: true } : { autoSelfClosers: {}, implicitlyClosed: {}, contextGrabbers: {}, doNotIndent: {}, allowUnquoted: false, allowMissing: false }; var alignCDATA = parserConfig.alignCDATA; // Return variables for tokenizers var tagName, type; function inText(stream, state) { function chain(parser) { state.tokenize = parser; return parser(stream, state); } var ch = stream.next(); if (ch == "<") { if (stream.eat("!")) { if (stream.eat("[")) { if (stream.match("CDATA[")) return chain(inBlock("atom", "]]>")); else return null; } else if (stream.match("--")) { return chain(inBlock("comment", "-->")); } else if (stream.match("DOCTYPE", true, true)) { stream.eatWhile(/[\w\._\-]/); return chain(doctype(1)); } else { return null; } } else if (stream.eat("?")) { stream.eatWhile(/[\w\._\-]/); state.tokenize = inBlock("meta", "?>"); return "meta"; } else { var isClose = stream.eat("/"); tagName = ""; var c; while ((c = stream.eat(/[^\s\u00a0=<>\"\'\/?]/))) tagName += c; if (!tagName) return "error"; type = isClose ? "closeTag" : "openTag"; state.tokenize = inTag; return "tag"; } } else if (ch == "&") { var ok; if (stream.eat("#")) { if (stream.eat("x")) { ok = stream.eatWhile(/[a-fA-F\d]/) && stream.eat(";"); } else { ok = stream.eatWhile(/[\d]/) && stream.eat(";"); } } else { ok = stream.eatWhile(/[\w\.\-:]/) && stream.eat(";"); } return ok ? "atom" : "error"; } else { stream.eatWhile(/[^&<]/); return null; } } function inTag(stream, state) { var ch = stream.next(); if (ch == ">" || (ch == "/" && stream.eat(">"))) { state.tokenize = inText; type = ch == ">" ? "endTag" : "selfcloseTag"; return "tag"; } else if (ch == "=") { type = "equals"; return null; } else if (ch == "<") { return "error"; } else if (/[\'\"]/.test(ch)) { state.tokenize = inAttribute(ch); state.stringStartCol = stream.column(); return state.tokenize(stream, state); } else { stream.eatWhile(/[^\s\u00a0=<>\"\']/); return "word"; } } function inAttribute(quote) { var closure = function(stream, state) { while (!stream.eol()) { if (stream.next() == quote) { state.tokenize = inTag; break; } } return "string"; }; closure.isInAttribute = true; return closure; } function inBlock(style, terminator) { return function(stream, state) { while (!stream.eol()) { if (stream.match(terminator)) { state.tokenize = inText; break; } stream.next(); } return style; }; } function doctype(depth) { return function(stream, state) { var ch; while ((ch = stream.next()) != null) { if (ch == "<") { state.tokenize = doctype(depth + 1); return state.tokenize(stream, state); } else if (ch == ">") { if (depth == 1) { state.tokenize = inText; break; } else { state.tokenize = doctype(depth - 1); return state.tokenize(stream, state); } } } return "meta"; }; } var curState, curStream, setStyle; function pass() { for (var i = arguments.length - 1; i >= 0; i--) curState.cc.push(arguments[i]); } function cont() { pass.apply(null, arguments); return true; } function pushContext(tagName, startOfLine) { var noIndent = Kludges.doNotIndent.hasOwnProperty(tagName) || (curState.context && curState.context.noIndent); curState.context = { prev: curState.context, tagName: tagName, indent: curState.indented, startOfLine: startOfLine, noIndent: noIndent }; } function popContext() { if (curState.context) curState.context = curState.context.prev; } function element(type) { if (type == "openTag") { curState.tagName = tagName; curState.tagStart = curStream.column(); return cont(attributes, endtag(curState.startOfLine)); } else if (type == "closeTag") { var err = false; if (curState.context) { if (curState.context.tagName != tagName) { if (Kludges.implicitlyClosed.hasOwnProperty(curState.context.tagName.toLowerCase())) { popContext(); } err = !curState.context || curState.context.tagName != tagName; } } else { err = true; } if (err) setStyle = "error"; return cont(endclosetag(err)); } return cont(); } function endtag(startOfLine) { return function(type) { var tagName = curState.tagName; curState.tagName = curState.tagStart = null; if (type == "selfcloseTag" || (type == "endTag" && Kludges.autoSelfClosers.hasOwnProperty(tagName.toLowerCase()))) { maybePopContext(tagName.toLowerCase()); return cont(); } if (type == "endTag") { maybePopContext(tagName.toLowerCase()); pushContext(tagName, startOfLine); return cont(); } return cont(); }; } function endclosetag(err) { return function(type) { if (err) setStyle = "error"; if (type == "endTag") { popContext(); return cont(); } setStyle = "error"; return cont(arguments.callee); }; } function maybePopContext(nextTagName) { var parentTagName; while (true) { if (!curState.context) { return; } parentTagName = curState.context.tagName.toLowerCase(); if (!Kludges.contextGrabbers.hasOwnProperty(parentTagName) || !Kludges.contextGrabbers[parentTagName].hasOwnProperty(nextTagName)) { return; } popContext(); } } function attributes(type) { if (type == "word") {setStyle = "attribute"; return cont(attribute, attributes);} if (type == "endTag" || type == "selfcloseTag") return pass(); setStyle = "error"; return cont(attributes); } function attribute(type) { if (type == "equals") return cont(attvalue, attributes); if (!Kludges.allowMissing) setStyle = "error"; else if (type == "word") {setStyle = "attribute"; return cont(attribute, attributes);} return (type == "endTag" || type == "selfcloseTag") ? pass() : cont(); } function attvalue(type) { if (type == "string") return cont(attvaluemaybe); if (type == "word" && Kludges.allowUnquoted) {setStyle = "string"; return cont();} setStyle = "error"; return (type == "endTag" || type == "selfCloseTag") ? pass() : cont(); } function attvaluemaybe(type) { if (type == "string") return cont(attvaluemaybe); else return pass(); } return { startState: function() { return {tokenize: inText, cc: [], indented: 0, startOfLine: true, tagName: null, tagStart: null, context: null}; }, token: function(stream, state) { if (!state.tagName && stream.sol()) { state.startOfLine = true; state.indented = stream.indentation(); } if (stream.eatSpace()) return null; setStyle = type = tagName = null; var style = state.tokenize(stream, state); state.type = type; if ((style || type) && style != "comment") { curState = state; curStream = stream; while (true) { var comb = state.cc.pop() || element; if (comb(type || style)) break; } } state.startOfLine = false; return setStyle || style; }, indent: function(state, textAfter, fullLine) { var context = state.context; // Indent multi-line strings (e.g. css). if (state.tokenize.isInAttribute) { return state.stringStartCol + 1; } if ((state.tokenize != inTag && state.tokenize != inText) || context && context.noIndent) return fullLine ? fullLine.match(/^(\s*)/)[0].length : 0; // Indent the starts of attribute names. if (state.tagName) { if (multilineTagIndentPastTag) return state.tagStart + state.tagName.length + 2; else return state.tagStart + indentUnit * multilineTagIndentFactor; } if (alignCDATA && /", configuration: parserConfig.htmlMode ? "html" : "xml", helperType: parserConfig.htmlMode ? "html" : "xml" }; }); CodeMirror.defineMIME("text/xml", "xml"); CodeMirror.defineMIME("application/xml", "xml"); if (!CodeMirror.mimeModes.hasOwnProperty("text/html")) CodeMirror.defineMIME("text/html", {name: "xml", htmlMode: true}); assets/lib/codemirror/mode/http/index.html000066600000002533152141651150014671 0ustar00 CodeMirror: HTTP mode

            HTTP mode

            MIME types defined: message/http.

            assets/lib/codemirror/mode/http/http.js000066600000004436152141651150014215 0ustar00CodeMirror.defineMode("http", function() { function failFirstLine(stream, state) { stream.skipToEnd(); state.cur = header; return "error"; } function start(stream, state) { if (stream.match(/^HTTP\/\d\.\d/)) { state.cur = responseStatusCode; return "keyword"; } else if (stream.match(/^[A-Z]+/) && /[ \t]/.test(stream.peek())) { state.cur = requestPath; return "keyword"; } else { return failFirstLine(stream, state); } } function responseStatusCode(stream, state) { var code = stream.match(/^\d+/); if (!code) return failFirstLine(stream, state); state.cur = responseStatusText; var status = Number(code[0]); if (status >= 100 && status < 200) { return "positive informational"; } else if (status >= 200 && status < 300) { return "positive success"; } else if (status >= 300 && status < 400) { return "positive redirect"; } else if (status >= 400 && status < 500) { return "negative client-error"; } else if (status >= 500 && status < 600) { return "negative server-error"; } else { return "error"; } } function responseStatusText(stream, state) { stream.skipToEnd(); state.cur = header; return null; } function requestPath(stream, state) { stream.eatWhile(/\S/); state.cur = requestProtocol; return "string-2"; } function requestProtocol(stream, state) { if (stream.match(/^HTTP\/\d\.\d$/)) { state.cur = header; return "keyword"; } else { return failFirstLine(stream, state); } } function header(stream) { if (stream.sol() && !stream.eat(/[ \t]/)) { if (stream.match(/^.*?:/)) { return "atom"; } else { stream.skipToEnd(); return "error"; } } else { stream.skipToEnd(); return "string"; } } function body(stream) { stream.skipToEnd(); return null; } return { token: function(stream, state) { var cur = state.cur; if (cur != header && cur != body && stream.eatSpace()) return null; return cur(stream, state); }, blankLine: function(state) { state.cur = body; }, startState: function() { return {cur: start}; } }; }); CodeMirror.defineMIME("message/http", "http"); assets/lib/codemirror/mode/htmlmixed/htmlmixed.js000066600000010070152141651150016234 0ustar00CodeMirror.defineMode("htmlmixed", function(config, parserConfig) { var htmlMode = CodeMirror.getMode(config, {name: "xml", htmlMode: true}); var cssMode = CodeMirror.getMode(config, "css"); var scriptTypes = [], scriptTypesConf = parserConfig && parserConfig.scriptTypes; scriptTypes.push({matches: /^(?:text|application)\/(?:x-)?(?:java|ecma)script$|^$/i, mode: CodeMirror.getMode(config, "javascript")}); if (scriptTypesConf) for (var i = 0; i < scriptTypesConf.length; ++i) { var conf = scriptTypesConf[i]; scriptTypes.push({matches: conf.matches, mode: conf.mode && CodeMirror.getMode(config, conf.mode)}); } scriptTypes.push({matches: /./, mode: CodeMirror.getMode(config, "text/plain")}); function html(stream, state) { var tagName = state.htmlState.tagName; var style = htmlMode.token(stream, state.htmlState); if (tagName == "script" && /\btag\b/.test(style) && stream.current() == ">") { // Script block: mode to change to depends on type attribute var scriptType = stream.string.slice(Math.max(0, stream.pos - 100), stream.pos).match(/\btype\s*=\s*("[^"]+"|'[^']+'|\S+)[^<]*$/i); scriptType = scriptType ? scriptType[1] : ""; if (scriptType && /[\"\']/.test(scriptType.charAt(0))) scriptType = scriptType.slice(1, scriptType.length - 1); for (var i = 0; i < scriptTypes.length; ++i) { var tp = scriptTypes[i]; if (typeof tp.matches == "string" ? scriptType == tp.matches : tp.matches.test(scriptType)) { if (tp.mode) { state.token = script; state.localMode = tp.mode; state.localState = tp.mode.startState && tp.mode.startState(htmlMode.indent(state.htmlState, "")); } break; } } } else if (tagName == "style" && /\btag\b/.test(style) && stream.current() == ">") { state.token = css; state.localMode = cssMode; state.localState = cssMode.startState(htmlMode.indent(state.htmlState, "")); } return style; } function maybeBackup(stream, pat, style) { var cur = stream.current(); var close = cur.search(pat), m; if (close > -1) stream.backUp(cur.length - close); else if (m = cur.match(/<\/?$/)) { stream.backUp(cur.length); if (!stream.match(pat, false)) stream.match(cur[0]); } return style; } function script(stream, state) { if (stream.match(/^<\/\s*script\s*>/i, false)) { state.token = html; state.localState = state.localMode = null; return html(stream, state); } return maybeBackup(stream, /<\/\s*script\s*>/, state.localMode.token(stream, state.localState)); } function css(stream, state) { if (stream.match(/^<\/\s*style\s*>/i, false)) { state.token = html; state.localState = state.localMode = null; return html(stream, state); } return maybeBackup(stream, /<\/\s*style\s*>/, cssMode.token(stream, state.localState)); } return { startState: function() { var state = htmlMode.startState(); return {token: html, localMode: null, localState: null, htmlState: state}; }, copyState: function(state) { if (state.localState) var local = CodeMirror.copyState(state.localMode, state.localState); return {token: state.token, localMode: state.localMode, localState: local, htmlState: CodeMirror.copyState(htmlMode, state.htmlState)}; }, token: function(stream, state) { return state.token(stream, state); }, indent: function(state, textAfter) { if (!state.localMode || /^\s*<\//.test(textAfter)) return htmlMode.indent(state.htmlState, textAfter); else if (state.localMode.indent) return state.localMode.indent(state.localState, textAfter); else return CodeMirror.Pass; }, electricChars: "/{}:", innerMode: function(state) { return {state: state.localState || state.htmlState, mode: state.localMode || htmlMode}; } }; }, "xml", "javascript", "css"); CodeMirror.defineMIME("text/html", "htmlmixed"); assets/lib/codemirror/mode/htmlmixed/index.html000066600000005604152141651150015707 0ustar00 CodeMirror: HTML mixed mode

            HTML mixed mode

            The HTML mixed mode depends on the XML, JavaScript, and CSS modes.

            It takes an optional mode configuration option, scriptTypes, which can be used to add custom behavior for specific <script type="..."> tags. If given, it should hold an array of {matches, mode} objects, where matches is a string or regexp that matches the script type, and mode is either null, for script types that should stay in HTML mode, or a mode spec corresponding to the mode that should be used for the script.

            MIME types defined: text/html (redefined, only takes effect if you load this parser after the XML parser).

            assets/lib/codemirror/addon/fold/comment-fold.js000066600000002657152141651150015733 0ustar00CodeMirror.registerHelper("fold", "comment", function(cm, start) { var mode = cm.getModeAt(start), startToken = mode.blockCommentStart, endToken = mode.blockCommentEnd; if (!startToken || !endToken) return; var line = start.line, lineText = cm.getLine(line); var startCh; for (var at = start.ch, pass = 0;;) { var found = at <= 0 ? -1 : lineText.lastIndexOf(startToken, at - 1); if (found == -1) { if (pass == 1) return; pass = 1; at = lineText.length; continue; } if (pass == 1 && found < start.ch) return; if (/comment/.test(cm.getTokenTypeAt(CodeMirror.Pos(line, found + 1)))) { startCh = found + startToken.length; break; } at = found - 1; } var depth = 1, lastLine = cm.lastLine(), end, endCh; outer: for (var i = line; i <= lastLine; ++i) { var text = cm.getLine(i), pos = i == line ? startCh : 0; for (;;) { var nextOpen = text.indexOf(startToken, pos), nextClose = text.indexOf(endToken, pos); if (nextOpen < 0) nextOpen = text.length; if (nextClose < 0) nextClose = text.length; pos = Math.min(nextOpen, nextClose); if (pos == text.length) break; if (pos == nextOpen) ++depth; else if (!--depth) { end = i; endCh = pos; break outer; } ++pos; } } if (end == null || line == end && endCh == startCh) return; return {from: CodeMirror.Pos(line, startCh), to: CodeMirror.Pos(end, endCh)}; }); assets/lib/codemirror/addon/fold/xml-fold.js000066600000013453152141651150015065 0ustar00(function() { "use strict"; var Pos = CodeMirror.Pos; function cmp(a, b) { return a.line - b.line || a.ch - b.ch; } var nameStartChar = "A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD"; var nameChar = nameStartChar + "\-\:\.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040"; var xmlTagStart = new RegExp("<(/?)([" + nameStartChar + "][" + nameChar + "]*)", "g"); function Iter(cm, line, ch, range) { this.line = line; this.ch = ch; this.cm = cm; this.text = cm.getLine(line); this.min = range ? range.from : cm.firstLine(); this.max = range ? range.to - 1 : cm.lastLine(); } function tagAt(iter, ch) { var type = iter.cm.getTokenTypeAt(Pos(iter.line, ch)); return type && /\btag\b/.test(type); } function nextLine(iter) { if (iter.line >= iter.max) return; iter.ch = 0; iter.text = iter.cm.getLine(++iter.line); return true; } function prevLine(iter) { if (iter.line <= iter.min) return; iter.text = iter.cm.getLine(--iter.line); iter.ch = iter.text.length; return true; } function toTagEnd(iter) { for (;;) { var gt = iter.text.indexOf(">", iter.ch); if (gt == -1) { if (nextLine(iter)) continue; else return; } if (!tagAt(iter, gt + 1)) { iter.ch = gt + 1; continue; } var lastSlash = iter.text.lastIndexOf("/", gt); var selfClose = lastSlash > -1 && !/\S/.test(iter.text.slice(lastSlash + 1, gt)); iter.ch = gt + 1; return selfClose ? "selfClose" : "regular"; } } function toTagStart(iter) { for (;;) { var lt = iter.ch ? iter.text.lastIndexOf("<", iter.ch - 1) : -1; if (lt == -1) { if (prevLine(iter)) continue; else return; } if (!tagAt(iter, lt + 1)) { iter.ch = lt; continue; } xmlTagStart.lastIndex = lt; iter.ch = lt; var match = xmlTagStart.exec(iter.text); if (match && match.index == lt) return match; } } function toNextTag(iter) { for (;;) { xmlTagStart.lastIndex = iter.ch; var found = xmlTagStart.exec(iter.text); if (!found) { if (nextLine(iter)) continue; else return; } if (!tagAt(iter, found.index + 1)) { iter.ch = found.index + 1; continue; } iter.ch = found.index + found[0].length; return found; } } function toPrevTag(iter) { for (;;) { var gt = iter.ch ? iter.text.lastIndexOf(">", iter.ch - 1) : -1; if (gt == -1) { if (prevLine(iter)) continue; else return; } if (!tagAt(iter, gt + 1)) { iter.ch = gt; continue; } var lastSlash = iter.text.lastIndexOf("/", gt); var selfClose = lastSlash > -1 && !/\S/.test(iter.text.slice(lastSlash + 1, gt)); iter.ch = gt + 1; return selfClose ? "selfClose" : "regular"; } } function findMatchingClose(iter, tag) { var stack = []; for (;;) { var next = toNextTag(iter), end, startLine = iter.line, startCh = iter.ch - (next ? next[0].length : 0); if (!next || !(end = toTagEnd(iter))) return; if (end == "selfClose") continue; if (next[1]) { // closing tag for (var i = stack.length - 1; i >= 0; --i) if (stack[i] == next[2]) { stack.length = i; break; } if (i < 0 && (!tag || tag == next[2])) return { tag: next[2], from: Pos(startLine, startCh), to: Pos(iter.line, iter.ch) }; } else { // opening tag stack.push(next[2]); } } } function findMatchingOpen(iter, tag) { var stack = []; for (;;) { var prev = toPrevTag(iter); if (!prev) return; if (prev == "selfClose") { toTagStart(iter); continue; } var endLine = iter.line, endCh = iter.ch; var start = toTagStart(iter); if (!start) return; if (start[1]) { // closing tag stack.push(start[2]); } else { // opening tag for (var i = stack.length - 1; i >= 0; --i) if (stack[i] == start[2]) { stack.length = i; break; } if (i < 0 && (!tag || tag == start[2])) return { tag: start[2], from: Pos(iter.line, iter.ch), to: Pos(endLine, endCh) }; } } } CodeMirror.registerHelper("fold", "xml", function(cm, start) { var iter = new Iter(cm, start.line, 0); for (;;) { var openTag = toNextTag(iter), end; if (!openTag || iter.line != start.line || !(end = toTagEnd(iter))) return; if (!openTag[1] && end != "selfClose") { var start = Pos(iter.line, iter.ch); var close = findMatchingClose(iter, openTag[2]); return close && {from: start, to: close.from}; } } }); CodeMirror.tagRangeFinder = CodeMirror.fold.xml; // deprecated CodeMirror.findMatchingTag = function(cm, pos, range) { var iter = new Iter(cm, pos.line, pos.ch, range); if (iter.text.indexOf(">") == -1 && iter.text.indexOf("<") == -1) return; var end = toTagEnd(iter), to = end && Pos(iter.line, iter.ch); var start = end && toTagStart(iter); if (!end || end == "selfClose" || !start || cmp(iter, pos) > 0) return; var here = {from: Pos(iter.line, iter.ch), to: to, tag: start[2]}; if (start[1]) { // closing tag return {open: findMatchingOpen(iter, start[2]), close: here, at: "close"}; } else { // opening tag iter = new Iter(cm, to.line, to.ch, range); return {open: here, close: findMatchingClose(iter, start[2]), at: "open"}; } }; CodeMirror.findEnclosingTag = function(cm, pos, range) { var iter = new Iter(cm, pos.line, pos.ch, range); for (;;) { var open = findMatchingOpen(iter); if (!open) break; var forward = new Iter(cm, pos.line, pos.ch, range); var close = findMatchingClose(forward, open.tag); if (close) return {open: open, close: close}; } }; })(); assets/lib/codemirror/addon/fold/foldgutter.js000066600000007116152141651150015521 0ustar00(function() { "use strict"; CodeMirror.defineOption("foldGutter", false, function(cm, val, old) { if (old && old != CodeMirror.Init) { cm.clearGutter(cm.state.foldGutter.options.gutter); cm.state.foldGutter = null; cm.off("gutterClick", onGutterClick); cm.off("change", onChange); cm.off("viewportChange", onViewportChange); cm.off("fold", onFold); cm.off("unfold", onFold); } if (val) { cm.state.foldGutter = new State(parseOptions(val)); updateInViewport(cm); cm.on("gutterClick", onGutterClick); cm.on("change", onChange); cm.on("viewportChange", onViewportChange); cm.on("fold", onFold); cm.on("unfold", onFold); } }); var Pos = CodeMirror.Pos; function State(options) { this.options = options; this.from = this.to = 0; } function parseOptions(opts) { if (opts === true) opts = {}; if (opts.gutter == null) opts.gutter = "CodeMirror-foldgutter"; if (opts.indicatorOpen == null) opts.indicatorOpen = "CodeMirror-foldgutter-open"; if (opts.indicatorFolded == null) opts.indicatorFolded = "CodeMirror-foldgutter-folded"; return opts; } function isFolded(cm, line) { var marks = cm.findMarksAt(Pos(line)); for (var i = 0; i < marks.length; ++i) if (marks[i].__isFold && marks[i].find().from.line == line) return true; } function marker(spec) { if (typeof spec == "string") { var elt = document.createElement("div"); elt.className = spec; return elt; } else { return spec.cloneNode(true); } } function updateFoldInfo(cm, from, to) { var opts = cm.state.foldGutter.options, cur = from; cm.eachLine(from, to, function(line) { var mark = null; if (isFolded(cm, cur)) { mark = marker(opts.indicatorFolded); } else { var pos = Pos(cur, 0), func = opts.rangeFinder || cm.getHelper(pos, "fold"); var range = func && func(cm, pos); if (range && range.from.line + 1 < range.to.line) mark = marker(opts.indicatorOpen); } cm.setGutterMarker(line, opts.gutter, mark); ++cur; }); } function updateInViewport(cm) { var vp = cm.getViewport(), state = cm.state.foldGutter; if (!state) return; cm.operation(function() { updateFoldInfo(cm, vp.from, vp.to); }); state.from = vp.from; state.to = vp.to; } function onGutterClick(cm, line, gutter) { var opts = cm.state.foldGutter.options; if (gutter != opts.gutter) return; cm.foldCode(Pos(line, 0), opts.rangeFinder); } function onChange(cm) { var state = cm.state.foldGutter; state.from = state.to = 0; clearTimeout(state.changeUpdate); state.changeUpdate = setTimeout(function() { updateInViewport(cm); }, 600); } function onViewportChange(cm) { var state = cm.state.foldGutter; clearTimeout(state.changeUpdate); state.changeUpdate = setTimeout(function() { var vp = cm.getViewport(); if (state.from == state.to || vp.from - state.to > 20 || state.from - vp.to > 20) { updateInViewport(cm); } else { cm.operation(function() { if (vp.from < state.from) { updateFoldInfo(cm, vp.from, state.from); state.from = vp.from; } if (vp.to > state.to) { updateFoldInfo(cm, state.to, vp.to); state.to = vp.to; } }); } }, 400); } function onFold(cm, from) { var state = cm.state.foldGutter, line = from.line; if (line >= state.from && line < state.to) updateFoldInfo(cm, line, line + 1); } })(); assets/lib/codemirror/addon/fold/foldcode.js000066600000004527152141651150015124 0ustar00(function() { "use strict"; function doFold(cm, pos, options) { var finder = options && (options.call ? options : options.rangeFinder); if (!finder) finder = cm.getHelper(pos, "fold"); if (!finder) return; if (typeof pos == "number") pos = CodeMirror.Pos(pos, 0); var minSize = options && options.minFoldSize || 0; function getRange(allowFolded) { var range = finder(cm, pos); if (!range || range.to.line - range.from.line < minSize) return null; var marks = cm.findMarksAt(range.from); for (var i = 0; i < marks.length; ++i) { if (marks[i].__isFold) { if (!allowFolded) return null; range.cleared = true; marks[i].clear(); } } return range; } var range = getRange(true); if (options && options.scanUp) while (!range && pos.line > cm.firstLine()) { pos = CodeMirror.Pos(pos.line - 1, 0); range = getRange(false); } if (!range || range.cleared) return; var myWidget = makeWidget(options); CodeMirror.on(myWidget, "mousedown", function() { myRange.clear(); }); var myRange = cm.markText(range.from, range.to, { replacedWith: myWidget, clearOnEnter: true, __isFold: true }); myRange.on("clear", function(from, to) { CodeMirror.signal(cm, "unfold", cm, from, to); }); CodeMirror.signal(cm, "fold", cm, range.from, range.to); } function makeWidget(options) { var widget = (options && options.widget) || "\u2194"; if (typeof widget == "string") { var text = document.createTextNode(widget); widget = document.createElement("span"); widget.appendChild(text); widget.className = "CodeMirror-foldmarker"; } return widget; } // Clumsy backwards-compatible interface CodeMirror.newFoldFunction = function(rangeFinder, widget) { return function(cm, pos) { doFold(cm, pos, {rangeFinder: rangeFinder, widget: widget}); }; }; // New-style interface CodeMirror.defineExtension("foldCode", function(pos, options) { doFold(this, pos, options); }); CodeMirror.registerHelper("fold", "combine", function() { var funcs = Array.prototype.slice.call(arguments, 0); return function(cm, start) { for (var i = 0; i < funcs.length; ++i) { var found = funcs[i](cm, start); if (found) return found; } }; }); })(); assets/lib/codemirror/addon/fold/indent-fold.js000066600000001215152141651150015537 0ustar00CodeMirror.registerHelper("fold", "indent", function(cm, start) { var tabSize = cm.getOption("tabSize"), firstLine = cm.getLine(start.line); var myIndent = CodeMirror.countColumn(firstLine, null, tabSize); for (var i = start.line + 1, end = cm.lineCount(); i < end; ++i) { var curLine = cm.getLine(i); if (CodeMirror.countColumn(curLine, null, tabSize) < myIndent && CodeMirror.countColumn(cm.getLine(i-1), null, tabSize) > myIndent) return {from: CodeMirror.Pos(start.line, firstLine.length), to: CodeMirror.Pos(i, curLine.length)}; } }); CodeMirror.indentRangeFinder = CodeMirror.fold.indent; // deprecated assets/lib/codemirror/addon/fold/brace-fold.js000066600000007105152141651150015336 0ustar00CodeMirror.registerHelper("fold", "brace", function(cm, start) { var line = start.line, lineText = cm.getLine(line); var startCh, tokenType; function findOpening(openCh) { for (var at = start.ch, pass = 0;;) { var found = at <= 0 ? -1 : lineText.lastIndexOf(openCh, at - 1); if (found == -1) { if (pass == 1) break; pass = 1; at = lineText.length; continue; } if (pass == 1 && found < start.ch) break; tokenType = cm.getTokenTypeAt(CodeMirror.Pos(line, found + 1)); if (!/^(comment|string)/.test(tokenType)) return found + 1; at = found - 1; } } var startToken = "{", endToken = "}", startCh = findOpening("{"); if (startCh == null) { startToken = "[", endToken = "]"; startCh = findOpening("["); } if (startCh == null) return; var count = 1, lastLine = cm.lastLine(), end, endCh; outer: for (var i = line; i <= lastLine; ++i) { var text = cm.getLine(i), pos = i == line ? startCh : 0; for (;;) { var nextOpen = text.indexOf(startToken, pos), nextClose = text.indexOf(endToken, pos); if (nextOpen < 0) nextOpen = text.length; if (nextClose < 0) nextClose = text.length; pos = Math.min(nextOpen, nextClose); if (pos == text.length) break; if (cm.getTokenTypeAt(CodeMirror.Pos(i, pos + 1)) == tokenType) { if (pos == nextOpen) ++count; else if (!--count) { end = i; endCh = pos; break outer; } } ++pos; } } if (end == null || line == end && endCh == startCh) return; return {from: CodeMirror.Pos(line, startCh), to: CodeMirror.Pos(end, endCh)}; }); CodeMirror.braceRangeFinder = CodeMirror.fold.brace; // deprecated CodeMirror.registerHelper("fold", "import", function(cm, start) { function hasImport(line) { if (line < cm.firstLine() || line > cm.lastLine()) return null; var start = cm.getTokenAt(CodeMirror.Pos(line, 1)); if (!/\S/.test(start.string)) start = cm.getTokenAt(CodeMirror.Pos(line, start.end + 1)); if (start.type != "keyword" || start.string != "import") return null; // Now find closing semicolon, return its position for (var i = line, e = Math.min(cm.lastLine(), line + 10); i <= e; ++i) { var text = cm.getLine(i), semi = text.indexOf(";"); if (semi != -1) return {startCh: start.end, end: CodeMirror.Pos(i, semi)}; } } var start = start.line, has = hasImport(start), prev; if (!has || hasImport(start - 1) || ((prev = hasImport(start - 2)) && prev.end.line == start - 1)) return null; for (var end = has.end;;) { var next = hasImport(end.line + 1); if (next == null) break; end = next.end; } return {from: cm.clipPos(CodeMirror.Pos(start, has.startCh + 1)), to: end}; }); CodeMirror.importRangeFinder = CodeMirror.fold["import"]; // deprecated CodeMirror.registerHelper("fold", "include", function(cm, start) { function hasInclude(line) { if (line < cm.firstLine() || line > cm.lastLine()) return null; var start = cm.getTokenAt(CodeMirror.Pos(line, 1)); if (!/\S/.test(start.string)) start = cm.getTokenAt(CodeMirror.Pos(line, start.end + 1)); if (start.type == "meta" && start.string.slice(0, 8) == "#include") return start.start + 8; } var start = start.line, has = hasInclude(start); if (has == null || hasInclude(start - 1) != null) return null; for (var end = start;;) { var next = hasInclude(end + 1); if (next == null) break; ++end; } return {from: CodeMirror.Pos(start, has + 1), to: cm.clipPos(CodeMirror.Pos(end))}; }); CodeMirror.includeRangeFinder = CodeMirror.fold.include; // deprecated assets/lib/codemirror/addon/tern/worker.js000066600000002026152141651150014672 0ustar00var server; this.onmessage = function(e) { var data = e.data; switch (data.type) { case "init": return startServer(data.defs, data.plugins, data.scripts); case "add": return server.addFile(data.name, data.text); case "del": return server.delFile(data.name); case "req": return server.request(data.body, function(err, reqData) { postMessage({id: data.id, body: reqData, err: err && String(err)}); }); case "getFile": var c = pending[data.id]; delete pending[data.id]; return c(data.err, data.text); default: throw new Error("Unknown message type: " + data.type); } }; var nextId = 0, pending = {}; function getFile(file, c) { postMessage({type: "getFile", name: file, id: ++nextId}); pending[nextId] = c; } function startServer(defs, plugins, scripts) { if (scripts) importScripts.apply(null, scripts); server = new tern.Server({ getFile: getFile, async: true, defs: defs, plugins: plugins }); } var console = { log: function(v) { postMessage({type: "debug", message: v}); } }; assets/lib/codemirror/addon/tern/tern.js000066600000052616152141651150014343 0ustar00// Glue code between CodeMirror and Tern. // // Create a CodeMirror.TernServer to wrap an actual Tern server, // register open documents (CodeMirror.Doc instances) with it, and // call its methods to activate the assisting functions that Tern // provides. // // Options supported (all optional): // * defs: An array of JSON definition data structures. // * plugins: An object mapping plugin names to configuration // options. // * getFile: A function(name, c) that can be used to access files in // the project that haven't been loaded yet. Simply do c(null) to // indicate that a file is not available. // * fileFilter: A function(value, docName, doc) that will be applied // to documents before passing them on to Tern. // * switchToDoc: A function(name) that should, when providing a // multi-file view, switch the view or focus to the named file. // * showError: A function(editor, message) that can be used to // override the way errors are displayed. // * completionTip: Customize the content in tooltips for completions. // Is passed a single argument—the completion's data as returned by // Tern—and may return a string, DOM node, or null to indicate that // no tip should be shown. By default the docstring is shown. // * typeTip: Like completionTip, but for the tooltips shown for type // queries. // * responseFilter: A function(doc, query, request, error, data) that // will be applied to the Tern responses before treating them // // // It is possible to run the Tern server in a web worker by specifying // these additional options: // * useWorker: Set to true to enable web worker mode. You'll probably // want to feature detect the actual value you use here, for example // !!window.Worker. // * workerScript: The main script of the worker. Point this to // wherever you are hosting worker.js from this directory. // * workerDeps: An array of paths pointing (relative to workerScript) // to the Acorn and Tern libraries and any Tern plugins you want to // load. Or, if you minified those into a single script and included // them in the workerScript, simply leave this undefined. (function() { "use strict"; CodeMirror.TernServer = function(options) { var self = this; this.options = options || {}; var plugins = this.options.plugins || (this.options.plugins = {}); if (!plugins.doc_comment) plugins.doc_comment = true; if (this.options.useWorker) { this.server = new WorkerServer(this); } else { this.server = new tern.Server({ getFile: function(name, c) { return getFile(self, name, c); }, async: true, defs: this.options.defs || [], plugins: plugins }); } this.docs = Object.create(null); this.trackChange = function(doc, change) { trackChange(self, doc, change); }; this.cachedArgHints = null; this.activeArgHints = null; this.jumpStack = []; }; CodeMirror.TernServer.prototype = { addDoc: function(name, doc) { var data = {doc: doc, name: name, changed: null}; this.server.addFile(name, docValue(this, data)); CodeMirror.on(doc, "change", this.trackChange); return this.docs[name] = data; }, delDoc: function(name) { var found = this.docs[name]; if (!found) return; CodeMirror.off(found.doc, "change", this.trackChange); delete this.docs[name]; this.server.delFile(name); }, hideDoc: function(name) { closeArgHints(this); var found = this.docs[name]; if (found && found.changed) sendDoc(this, found); }, complete: function(cm) { var self = this; CodeMirror.showHint(cm, function(cm, c) { return hint(self, cm, c); }, {async: true}); }, getHint: function(cm, c) { return hint(this, cm, c); }, showType: function(cm) { showType(this, cm); }, updateArgHints: function(cm) { updateArgHints(this, cm); }, jumpToDef: function(cm) { jumpToDef(this, cm); }, jumpBack: function(cm) { jumpBack(this, cm); }, rename: function(cm) { rename(this, cm); }, request: function (cm, query, c) { var self = this; var doc = findDoc(this, cm.getDoc()); var request = buildRequest(this, doc, query); this.server.request(request, function (error, data) { if (!error && self.options.responseFilter) data = self.options.responseFilter(doc, query, request, error, data); c(error, data); }); } }; var Pos = CodeMirror.Pos; var cls = "CodeMirror-Tern-"; var bigDoc = 250; function getFile(ts, name, c) { var buf = ts.docs[name]; if (buf) c(docValue(ts, buf)); else if (ts.options.getFile) ts.options.getFile(name, c); else c(null); } function findDoc(ts, doc, name) { for (var n in ts.docs) { var cur = ts.docs[n]; if (cur.doc == doc) return cur; } if (!name) for (var i = 0;; ++i) { n = "[doc" + (i || "") + "]"; if (!ts.docs[n]) { name = n; break; } } return ts.addDoc(name, doc); } function trackChange(ts, doc, change) { var data = findDoc(ts, doc); var argHints = ts.cachedArgHints; if (argHints && argHints.doc == doc && cmpPos(argHints.start, change.to) <= 0) ts.cachedArgHints = null; var changed = data.changed; if (changed == null) data.changed = changed = {from: change.from.line, to: change.from.line}; var end = change.from.line + (change.text.length - 1); if (change.from.line < changed.to) changed.to = changed.to - (change.to.line - end); if (end >= changed.to) changed.to = end + 1; if (changed.from > change.from.line) changed.from = change.from.line; if (doc.lineCount() > bigDoc && change.to - changed.from > 100) setTimeout(function() { if (data.changed && data.changed.to - data.changed.from > 100) sendDoc(ts, data); }, 200); } function sendDoc(ts, doc) { ts.server.request({files: [{type: "full", name: doc.name, text: docValue(ts, doc)}]}, function(error) { if (error) console.error(error); else doc.changed = null; }); } // Completion function hint(ts, cm, c) { ts.request(cm, {type: "completions", types: true, docs: true, urls: true}, function(error, data) { if (error) return showError(ts, cm, error); var completions = [], after = ""; var from = data.start, to = data.end; if (cm.getRange(Pos(from.line, from.ch - 2), from) == "[\"" && cm.getRange(to, Pos(to.line, to.ch + 2)) != "\"]") after = "\"]"; for (var i = 0; i < data.completions.length; ++i) { var completion = data.completions[i], className = typeToIcon(completion.type); if (data.guess) className += " " + cls + "guess"; completions.push({text: completion.name + after, displayText: completion.name, className: className, data: completion}); } var obj = {from: from, to: to, list: completions}; var tooltip = null; CodeMirror.on(obj, "close", function() { remove(tooltip); }); CodeMirror.on(obj, "update", function() { remove(tooltip); }); CodeMirror.on(obj, "select", function(cur, node) { remove(tooltip); var content = ts.options.completionTip ? ts.options.completionTip(cur.data) : cur.data.doc; if (content) { tooltip = makeTooltip(node.parentNode.getBoundingClientRect().right + window.pageXOffset, node.getBoundingClientRect().top + window.pageYOffset, content); tooltip.className += " " + cls + "hint-doc"; } }); c(obj); }); } function typeToIcon(type) { var suffix; if (type == "?") suffix = "unknown"; else if (type == "number" || type == "string" || type == "bool") suffix = type; else if (/^fn\(/.test(type)) suffix = "fn"; else if (/^\[/.test(type)) suffix = "array"; else suffix = "object"; return cls + "completion " + cls + "completion-" + suffix; } // Type queries function showType(ts, cm) { ts.request(cm, "type", function(error, data) { if (error) return showError(ts, cm, error); if (ts.options.typeTip) { var tip = ts.options.typeTip(data); } else { var tip = elt("span", null, elt("strong", null, data.type || "not found")); if (data.doc) tip.appendChild(document.createTextNode(" — " + data.doc)); if (data.url) { tip.appendChild(document.createTextNode(" ")); tip.appendChild(elt("a", null, "[docs]")).href = data.url; } } tempTooltip(cm, tip); }); } // Maintaining argument hints function updateArgHints(ts, cm) { closeArgHints(ts); if (cm.somethingSelected()) return; var state = cm.getTokenAt(cm.getCursor()).state; var inner = CodeMirror.innerMode(cm.getMode(), state); if (inner.mode.name != "javascript") return; var lex = inner.state.lexical; if (lex.info != "call") return; var ch, pos = lex.pos || 0, tabSize = cm.getOption("tabSize"); for (var line = cm.getCursor().line, e = Math.max(0, line - 9), found = false; line >= e; --line) { var str = cm.getLine(line), extra = 0; for (var pos = 0;;) { var tab = str.indexOf("\t", pos); if (tab == -1) break; extra += tabSize - (tab + extra) % tabSize - 1; pos = tab + 1; } ch = lex.column - extra; if (str.charAt(ch) == "(") {found = true; break;} } if (!found) return; var start = Pos(line, ch); var cache = ts.cachedArgHints; if (cache && cache.doc == cm.getDoc() && cmpPos(start, cache.start) == 0) return showArgHints(ts, cm, pos); ts.request(cm, {type: "type", preferFunction: true, end: start}, function(error, data) { if (error || !data.type || !(/^fn\(/).test(data.type)) return; ts.cachedArgHints = { start: pos, type: parseFnType(data.type), name: data.exprName || data.name || "fn", guess: data.guess, doc: cm.getDoc() }; showArgHints(ts, cm, pos); }); } function showArgHints(ts, cm, pos) { closeArgHints(ts); var cache = ts.cachedArgHints, tp = cache.type; var tip = elt("span", cache.guess ? cls + "fhint-guess" : null, elt("span", cls + "fname", cache.name), "("); for (var i = 0; i < tp.args.length; ++i) { if (i) tip.appendChild(document.createTextNode(", ")); var arg = tp.args[i]; tip.appendChild(elt("span", cls + "farg" + (i == pos ? " " + cls + "farg-current" : ""), arg.name || "?")); if (arg.type != "?") { tip.appendChild(document.createTextNode(":\u00a0")); tip.appendChild(elt("span", cls + "type", arg.type)); } } tip.appendChild(document.createTextNode(tp.rettype ? ") ->\u00a0" : ")")); if (tp.rettype) tip.appendChild(elt("span", cls + "type", tp.rettype)); var place = cm.cursorCoords(null, "page"); ts.activeArgHints = makeTooltip(place.right + 1, place.bottom, tip); } function parseFnType(text) { var args = [], pos = 3; function skipMatching(upto) { var depth = 0, start = pos; for (;;) { var next = text.charAt(pos); if (upto.test(next) && !depth) return text.slice(start, pos); if (/[{\[\(]/.test(next)) ++depth; else if (/[}\]\)]/.test(next)) --depth; ++pos; } } // Parse arguments if (text.charAt(pos) != ")") for (;;) { var name = text.slice(pos).match(/^([^, \(\[\{]+): /); if (name) { pos += name[0].length; name = name[1]; } args.push({name: name, type: skipMatching(/[\),]/)}); if (text.charAt(pos) == ")") break; pos += 2; } var rettype = text.slice(pos).match(/^\) -> (.*)$/); return {args: args, rettype: rettype && rettype[1]}; } // Moving to the definition of something function jumpToDef(ts, cm) { function inner(varName) { var req = {type: "definition", variable: varName || null}; var doc = findDoc(ts, cm.getDoc()); ts.server.request(buildRequest(ts, doc, req), function(error, data) { if (error) return showError(ts, cm, error); if (!data.file && data.url) { window.open(data.url); return; } if (data.file) { var localDoc = ts.docs[data.file], found; if (localDoc && (found = findContext(localDoc.doc, data))) { ts.jumpStack.push({file: doc.name, start: cm.getCursor("from"), end: cm.getCursor("to")}); moveTo(ts, doc, localDoc, found.start, found.end); return; } } showError(ts, cm, "Could not find a definition."); }); } if (!atInterestingExpression(cm)) dialog(cm, "Jump to variable", function(name) { if (name) inner(name); }); else inner(); } function jumpBack(ts, cm) { var pos = ts.jumpStack.pop(), doc = pos && ts.docs[pos.file]; if (!doc) return; moveTo(ts, findDoc(ts, cm.getDoc()), doc, pos.start, pos.end); } function moveTo(ts, curDoc, doc, start, end) { doc.doc.setSelection(end, start); if (curDoc != doc && ts.options.switchToDoc) { closeArgHints(ts); ts.options.switchToDoc(doc.name); } } // The {line,ch} representation of positions makes this rather awkward. function findContext(doc, data) { var before = data.context.slice(0, data.contextOffset).split("\n"); var startLine = data.start.line - (before.length - 1); var start = Pos(startLine, (before.length == 1 ? data.start.ch : doc.getLine(startLine).length) - before[0].length); var text = doc.getLine(startLine).slice(start.ch); for (var cur = startLine + 1; cur < doc.lineCount() && text.length < data.context.length; ++cur) text += "\n" + doc.getLine(cur); if (text.slice(0, data.context.length) == data.context) return data; var cursor = doc.getSearchCursor(data.context, 0, false); var nearest, nearestDist = Infinity; while (cursor.findNext()) { var from = cursor.from(), dist = Math.abs(from.line - start.line) * 10000; if (!dist) dist = Math.abs(from.ch - start.ch); if (dist < nearestDist) { nearest = from; nearestDist = dist; } } if (!nearest) return null; if (before.length == 1) nearest.ch += before[0].length; else nearest = Pos(nearest.line + (before.length - 1), before[before.length - 1].length); if (data.start.line == data.end.line) var end = Pos(nearest.line, nearest.ch + (data.end.ch - data.start.ch)); else var end = Pos(nearest.line + (data.end.line - data.start.line), data.end.ch); return {start: nearest, end: end}; } function atInterestingExpression(cm) { var pos = cm.getCursor("end"), tok = cm.getTokenAt(pos); if (tok.start < pos.ch && (tok.type == "comment" || tok.type == "string")) return false; return /\w/.test(cm.getLine(pos.line).slice(Math.max(pos.ch - 1, 0), pos.ch + 1)); } // Variable renaming function rename(ts, cm) { var token = cm.getTokenAt(cm.getCursor()); if (!/\w/.test(token.string)) showError(ts, cm, "Not at a variable"); dialog(cm, "New name for " + token.string, function(newName) { ts.request(cm, {type: "rename", newName: newName, fullDocs: true}, function(error, data) { if (error) return showError(ts, cm, error); applyChanges(ts, data.changes); }); }); } var nextChangeOrig = 0; function applyChanges(ts, changes) { var perFile = Object.create(null); for (var i = 0; i < changes.length; ++i) { var ch = changes[i]; (perFile[ch.file] || (perFile[ch.file] = [])).push(ch); } for (var file in perFile) { var known = ts.docs[file], chs = perFile[file];; if (!known) continue; chs.sort(function(a, b) { return cmpPos(b, a); }); var origin = "*rename" + (++nextChangeOrig); for (var i = 0; i < chs.length; ++i) { var ch = chs[i]; known.doc.replaceRange(ch.text, ch.start, ch.end, origin); } } } // Generic request-building helper function buildRequest(ts, doc, query) { var files = [], offsetLines = 0, allowFragments = !query.fullDocs; if (!allowFragments) delete query.fullDocs; if (typeof query == "string") query = {type: query}; query.lineCharPositions = true; if (query.end == null) { query.end = doc.doc.getCursor("end"); if (doc.doc.somethingSelected()) query.start = doc.doc.getCursor("start"); } var startPos = query.start || query.end; if (doc.changed) { if (doc.doc.lineCount() > bigDoc && allowFragments !== false && doc.changed.to - doc.changed.from < 100 && doc.changed.from <= startPos.line && doc.changed.to > query.end.line) { files.push(getFragmentAround(doc, startPos, query.end)); query.file = "#0"; var offsetLines = files[0].offsetLines; if (query.start != null) query.start = Pos(query.start.line - -offsetLines, query.start.ch); query.end = Pos(query.end.line - offsetLines, query.end.ch); } else { files.push({type: "full", name: doc.name, text: docValue(ts, doc)}); query.file = doc.name; doc.changed = null; } } else { query.file = doc.name; } for (var name in ts.docs) { var cur = ts.docs[name]; if (cur.changed && cur != doc) { files.push({type: "full", name: cur.name, text: docValue(ts, cur)}); cur.changed = null; } } return {query: query, files: files}; } function getFragmentAround(data, start, end) { var doc = data.doc; var minIndent = null, minLine = null, endLine, tabSize = 4; for (var p = start.line - 1, min = Math.max(0, p - 50); p >= min; --p) { var line = doc.getLine(p), fn = line.search(/\bfunction\b/); if (fn < 0) continue; var indent = CodeMirror.countColumn(line, null, tabSize); if (minIndent != null && minIndent <= indent) continue; minIndent = indent; minLine = p; } if (minLine == null) minLine = min; var max = Math.min(doc.lastLine(), end.line + 20); if (minIndent == null || minIndent == CodeMirror.countColumn(doc.getLine(start.line), null, tabSize)) endLine = max; else for (endLine = end.line + 1; endLine < max; ++endLine) { var indent = CodeMirror.countColumn(doc.getLine(endLine), null, tabSize); if (indent <= minIndent) break; } var from = Pos(minLine, 0); return {type: "part", name: data.name, offsetLines: from.line, text: doc.getRange(from, Pos(endLine, 0))}; } // Generic utilities function cmpPos(a, b) { return a.line - b.line || a.ch - b.ch; } function elt(tagname, cls /*, ... elts*/) { var e = document.createElement(tagname); if (cls) e.className = cls; for (var i = 2; i < arguments.length; ++i) { var elt = arguments[i]; if (typeof elt == "string") elt = document.createTextNode(elt); e.appendChild(elt); } return e; } function dialog(cm, text, f) { if (cm.openDialog) cm.openDialog(text + ": ", f); else f(prompt(text, "")); } // Tooltips function tempTooltip(cm, content) { var where = cm.cursorCoords(); var tip = makeTooltip(where.right + 1, where.bottom, content); function clear() { if (!tip.parentNode) return; cm.off("cursorActivity", clear); fadeOut(tip); } setTimeout(clear, 1700); cm.on("cursorActivity", clear); } function makeTooltip(x, y, content) { var node = elt("div", cls + "tooltip", content); node.style.left = x + "px"; node.style.top = y + "px"; document.body.appendChild(node); return node; } function remove(node) { var p = node && node.parentNode; if (p) p.removeChild(node); } function fadeOut(tooltip) { tooltip.style.opacity = "0"; setTimeout(function() { remove(tooltip); }, 1100); } function showError(ts, cm, msg) { if (ts.options.showError) ts.options.showError(cm, msg); else tempTooltip(cm, String(msg)); } function closeArgHints(ts) { if (ts.activeArgHints) { remove(ts.activeArgHints); ts.activeArgHints = null; } } function docValue(ts, doc) { var val = doc.doc.getValue(); if (ts.options.fileFilter) val = ts.options.fileFilter(val, doc.name, doc.doc); return val; } // Worker wrapper function WorkerServer(ts) { var worker = new Worker(ts.options.workerScript); worker.postMessage({type: "init", defs: ts.options.defs, plugins: ts.options.plugins, scripts: ts.options.workerDeps}); var msgId = 0, pending = {}; function send(data, c) { if (c) { data.id = ++msgId; pending[msgId] = c; } worker.postMessage(data); } worker.onmessage = function(e) { var data = e.data; if (data.type == "getFile") { getFile(ts, name, function(err, text) { send({type: "getFile", err: String(err), text: text, id: data.id}); }); } else if (data.type == "debug") { console.log(data.message); } else if (data.id && pending[data.id]) { pending[data.id](data.err, data.body); delete pending[data.id]; } }; worker.onerror = function(e) { for (var id in pending) pending[id](e); pending = {}; }; this.addFile = function(name, text) { send({type: "add", name: name, text: text}); }; this.delFile = function(name) { send({type: "del", name: name}); }; this.request = function(body, c) { send({type: "req", body: body}, c); }; } })(); assets/lib/codemirror/addon/tern/tern.css000066600000003450152141651150014507 0ustar00.CodeMirror-Tern-completion { padding-left: 22px; position: relative; } .CodeMirror-Tern-completion:before { position: absolute; left: 2px; bottom: 2px; border-radius: 50%; font-size: 12px; font-weight: bold; height: 15px; width: 15px; line-height: 16px; text-align: center; color: white; -moz-box-sizing: border-box; box-sizing: border-box; } .CodeMirror-Tern-completion-unknown:before { content: "?"; background: #4bb; } .CodeMirror-Tern-completion-object:before { content: "O"; background: #77c; } .CodeMirror-Tern-completion-fn:before { content: "F"; background: #7c7; } .CodeMirror-Tern-completion-array:before { content: "A"; background: #c66; } .CodeMirror-Tern-completion-number:before { content: "1"; background: #999; } .CodeMirror-Tern-completion-string:before { content: "S"; background: #999; } .CodeMirror-Tern-completion-bool:before { content: "B"; background: #999; } .CodeMirror-Tern-completion-guess { color: #999; } .CodeMirror-Tern-tooltip { border: 1px solid silver; border-radius: 3px; color: #444; padding: 2px 5px; font-size: 90%; font-family: monospace; background-color: white; white-space: pre-wrap; max-width: 40em; position: absolute; z-index: 10; -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2); -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2); box-shadow: 2px 3px 5px rgba(0,0,0,.2); transition: opacity 1s; -moz-transition: opacity 1s; -webkit-transition: opacity 1s; -o-transition: opacity 1s; -ms-transition: opacity 1s; } .CodeMirror-Tern-hint-doc { max-width: 25em; } .CodeMirror-Tern-fname { color: black; } .CodeMirror-Tern-farg { color: #70a; } .CodeMirror-Tern-farg-current { text-decoration: underline; } .CodeMirror-Tern-type { color: #07c; } .CodeMirror-Tern-fhint-guess { opacity: .7; } assets/lib/codemirror/addon/selection/active-line.js000066600000002450152141651150016577 0ustar00// Because sometimes you need to style the cursor's line. // // Adds an option 'styleActiveLine' which, when enabled, gives the // active line's wrapping
            the CSS class "CodeMirror-activeline", // and gives its background
            the class "CodeMirror-activeline-background". (function() { "use strict"; var WRAP_CLASS = "CodeMirror-activeline"; var BACK_CLASS = "CodeMirror-activeline-background"; CodeMirror.defineOption("styleActiveLine", false, function(cm, val, old) { var prev = old && old != CodeMirror.Init; if (val && !prev) { updateActiveLine(cm); cm.on("cursorActivity", updateActiveLine); } else if (!val && prev) { cm.off("cursorActivity", updateActiveLine); clearActiveLine(cm); delete cm.state.activeLine; } }); function clearActiveLine(cm) { if ("activeLine" in cm.state) { cm.removeLineClass(cm.state.activeLine, "wrap", WRAP_CLASS); cm.removeLineClass(cm.state.activeLine, "background", BACK_CLASS); } } function updateActiveLine(cm) { var line = cm.getLineHandleVisualStart(cm.getCursor().line); if (cm.state.activeLine == line) return; clearActiveLine(cm); cm.addLineClass(line, "wrap", WRAP_CLASS); cm.addLineClass(line, "background", BACK_CLASS); cm.state.activeLine = line; } })(); assets/lib/codemirror/addon/selection/mark-selection.js000066600000006352152141651150017321 0ustar00// Because sometimes you need to mark the selected *text*. // // Adds an option 'styleSelectedText' which, when enabled, gives // selected text the CSS class given as option value, or // "CodeMirror-selectedtext" when the value is not a string. (function() { "use strict"; CodeMirror.defineOption("styleSelectedText", false, function(cm, val, old) { var prev = old && old != CodeMirror.Init; if (val && !prev) { cm.state.markedSelection = []; cm.state.markedSelectionStyle = typeof val == "string" ? val : "CodeMirror-selectedtext"; reset(cm); cm.on("cursorActivity", onCursorActivity); cm.on("change", onChange); } else if (!val && prev) { cm.off("cursorActivity", onCursorActivity); cm.off("change", onChange); clear(cm); cm.state.markedSelection = cm.state.markedSelectionStyle = null; } }); function onCursorActivity(cm) { cm.operation(function() { update(cm); }); } function onChange(cm) { if (cm.state.markedSelection.length) cm.operation(function() { clear(cm); }); } var CHUNK_SIZE = 8; var Pos = CodeMirror.Pos; function cmp(pos1, pos2) { return pos1.line - pos2.line || pos1.ch - pos2.ch; } function coverRange(cm, from, to, addAt) { if (cmp(from, to) == 0) return; var array = cm.state.markedSelection; var cls = cm.state.markedSelectionStyle; for (var line = from.line;;) { var start = line == from.line ? from : Pos(line, 0); var endLine = line + CHUNK_SIZE, atEnd = endLine >= to.line; var end = atEnd ? to : Pos(endLine, 0); var mark = cm.markText(start, end, {className: cls}); if (addAt == null) array.push(mark); else array.splice(addAt++, 0, mark); if (atEnd) break; line = endLine; } } function clear(cm) { var array = cm.state.markedSelection; for (var i = 0; i < array.length; ++i) array[i].clear(); array.length = 0; } function reset(cm) { clear(cm); var from = cm.getCursor("start"), to = cm.getCursor("end"); coverRange(cm, from, to); } function update(cm) { var from = cm.getCursor("start"), to = cm.getCursor("end"); if (cmp(from, to) == 0) return clear(cm); var array = cm.state.markedSelection; if (!array.length) return coverRange(cm, from, to); var coverStart = array[0].find(), coverEnd = array[array.length - 1].find(); if (!coverStart || !coverEnd || to.line - from.line < CHUNK_SIZE || cmp(from, coverEnd.to) >= 0 || cmp(to, coverStart.from) <= 0) return reset(cm); while (cmp(from, coverStart.from) > 0) { array.shift().clear(); coverStart = array[0].find(); } if (cmp(from, coverStart.from) < 0) { if (coverStart.to.line - from.line < CHUNK_SIZE) { array.shift().clear(); coverRange(cm, from, coverStart.to, 0); } else { coverRange(cm, from, coverStart.from, 0); } } while (cmp(to, coverEnd.to) < 0) { array.pop().clear(); coverEnd = array[array.length - 1].find(); } if (cmp(to, coverEnd.to) > 0) { if (to.line - coverEnd.from.line < CHUNK_SIZE) { array.pop().clear(); coverRange(cm, coverEnd.from, to); } else { coverRange(cm, coverEnd.to, to); } } } })(); assets/lib/codemirror/addon/mode/multiplex.js000066600000007157152141651150015372 0ustar00CodeMirror.multiplexingMode = function(outer /*, others */) { // Others should be {open, close, mode [, delimStyle] [, innerStyle]} objects var others = Array.prototype.slice.call(arguments, 1); var n_others = others.length; function indexOf(string, pattern, from) { if (typeof pattern == "string") return string.indexOf(pattern, from); var m = pattern.exec(from ? string.slice(from) : string); return m ? m.index + from : -1; } return { startState: function() { return { outer: CodeMirror.startState(outer), innerActive: null, inner: null }; }, copyState: function(state) { return { outer: CodeMirror.copyState(outer, state.outer), innerActive: state.innerActive, inner: state.innerActive && CodeMirror.copyState(state.innerActive.mode, state.inner) }; }, token: function(stream, state) { if (!state.innerActive) { var cutOff = Infinity, oldContent = stream.string; for (var i = 0; i < n_others; ++i) { var other = others[i]; var found = indexOf(oldContent, other.open, stream.pos); if (found == stream.pos) { stream.match(other.open); state.innerActive = other; state.inner = CodeMirror.startState(other.mode, outer.indent ? outer.indent(state.outer, "") : 0); return other.delimStyle; } else if (found != -1 && found < cutOff) { cutOff = found; } } if (cutOff != Infinity) stream.string = oldContent.slice(0, cutOff); var outerToken = outer.token(stream, state.outer); if (cutOff != Infinity) stream.string = oldContent; return outerToken; } else { var curInner = state.innerActive, oldContent = stream.string; var found = indexOf(oldContent, curInner.close, stream.pos); if (found == stream.pos) { stream.match(curInner.close); state.innerActive = state.inner = null; return curInner.delimStyle; } if (found > -1) stream.string = oldContent.slice(0, found); var innerToken = curInner.mode.token(stream, state.inner); if (found > -1) stream.string = oldContent; var cur = stream.current(), found = cur.indexOf(curInner.close); if (found > -1) stream.backUp(cur.length - found); if (curInner.innerStyle) { if (innerToken) innerToken = innerToken + ' ' + curInner.innerStyle; else innerToken = curInner.innerStyle; } return innerToken; } }, indent: function(state, textAfter) { var mode = state.innerActive ? state.innerActive.mode : outer; if (!mode.indent) return CodeMirror.Pass; return mode.indent(state.innerActive ? state.inner : state.outer, textAfter); }, blankLine: function(state) { var mode = state.innerActive ? state.innerActive.mode : outer; if (mode.blankLine) { mode.blankLine(state.innerActive ? state.inner : state.outer); } if (!state.innerActive) { for (var i = 0; i < n_others; ++i) { var other = others[i]; if (other.open === "\n") { state.innerActive = other; state.inner = CodeMirror.startState(other.mode, mode.indent ? mode.indent(state.outer, "") : 0); } } } else if (state.innerActive.close === "\n") { state.innerActive = state.inner = null; } }, electricChars: outer.electricChars, innerMode: function(state) { return state.inner ? {state: state.inner, mode: state.innerActive.mode} : {state: state.outer, mode: outer}; } }; }; assets/lib/codemirror/addon/mode/loadmode.js000066600000003373152141651150015127 0ustar00(function() { if (!CodeMirror.modeURL) CodeMirror.modeURL = "../mode/%N/%N.js"; var loading = {}; function splitCallback(cont, n) { var countDown = n; return function() { if (--countDown == 0) cont(); }; } function ensureDeps(mode, cont) { var deps = CodeMirror.modes[mode].dependencies; if (!deps) return cont(); var missing = []; for (var i = 0; i < deps.length; ++i) { if (!CodeMirror.modes.hasOwnProperty(deps[i])) missing.push(deps[i]); } if (!missing.length) return cont(); var split = splitCallback(cont, missing.length); for (var i = 0; i < missing.length; ++i) CodeMirror.requireMode(missing[i], split); } CodeMirror.requireMode = function(mode, cont) { if (typeof mode != "string") mode = mode.name; if (CodeMirror.modes.hasOwnProperty(mode)) return ensureDeps(mode, cont); if (loading.hasOwnProperty(mode)) return loading[mode].push(cont); var script = document.createElement("script"); script.src = CodeMirror.modeURL.replace(/%N/g, mode); var others = document.getElementsByTagName("script")[0]; others.parentNode.insertBefore(script, others); var list = loading[mode] = [cont]; var count = 0, poll = setInterval(function() { if (++count > 100) return clearInterval(poll); if (CodeMirror.modes.hasOwnProperty(mode)) { clearInterval(poll); loading[mode] = null; ensureDeps(mode, function() { for (var i = 0; i < list.length; ++i) list[i](); }); } }, 200); }; CodeMirror.autoLoadMode = function(instance, mode) { if (!CodeMirror.modes.hasOwnProperty(mode)) CodeMirror.requireMode(mode, function() { instance.setOption("mode", instance.getOption("mode")); }); }; }()); assets/lib/codemirror/addon/mode/multiplex_test.js000066600000001252152141651150016417 0ustar00(function() { CodeMirror.defineMode("markdown_with_stex", function(){ var inner = CodeMirror.getMode({}, "stex"); var outer = CodeMirror.getMode({}, "markdown"); var innerOptions = { open: '$', close: '$', mode: inner, delimStyle: 'delim', innerStyle: 'inner' }; return CodeMirror.multiplexingMode(outer, innerOptions); }); var mode = CodeMirror.getMode({}, "markdown_with_stex"); function MT(name) { test.mode( name, mode, Array.prototype.slice.call(arguments, 1), 'multiplexing'); } MT( "stexInsideMarkdown", "[strong **Equation:**] [delim $][inner&tag \\pi][delim $]"); })(); assets/lib/codemirror/addon/mode/overlay.js000066600000004202152141651150015014 0ustar00// Utility function that allows modes to be combined. The mode given // as the base argument takes care of most of the normal mode // functionality, but a second (typically simple) mode is used, which // can override the style of text. Both modes get to parse all of the // text, but when both assign a non-null style to a piece of code, the // overlay wins, unless the combine argument was true, in which case // the styles are combined. // overlayParser is the old, deprecated name CodeMirror.overlayMode = CodeMirror.overlayParser = function(base, overlay, combine) { return { startState: function() { return { base: CodeMirror.startState(base), overlay: CodeMirror.startState(overlay), basePos: 0, baseCur: null, overlayPos: 0, overlayCur: null }; }, copyState: function(state) { return { base: CodeMirror.copyState(base, state.base), overlay: CodeMirror.copyState(overlay, state.overlay), basePos: state.basePos, baseCur: null, overlayPos: state.overlayPos, overlayCur: null }; }, token: function(stream, state) { if (stream.start == state.basePos) { state.baseCur = base.token(stream, state.base); state.basePos = stream.pos; } if (stream.start == state.overlayPos) { stream.pos = stream.start; state.overlayCur = overlay.token(stream, state.overlay); state.overlayPos = stream.pos; } stream.pos = Math.min(state.basePos, state.overlayPos); if (stream.eol()) state.basePos = state.overlayPos = 0; if (state.overlayCur == null) return state.baseCur; if (state.baseCur != null && combine) return state.baseCur + " " + state.overlayCur; else return state.overlayCur; }, indent: base.indent && function(state, textAfter) { return base.indent(state.base, textAfter); }, electricChars: base.electricChars, innerMode: function(state) { return {state: state.base, mode: base}; }, blankLine: function(state) { if (base.blankLine) base.blankLine(state.base); if (overlay.blankLine) overlay.blankLine(state.overlay); } }; }; assets/lib/codemirror/addon/runmode/colorize.js000066600000001502152141651150015706 0ustar00CodeMirror.colorize = (function() { var isBlock = /^(p|li|div|h\\d|pre|blockquote|td)$/; function textContent(node, out) { if (node.nodeType == 3) return out.push(node.nodeValue); for (var ch = node.firstChild; ch; ch = ch.nextSibling) { textContent(ch, out); if (isBlock.test(node.nodeType)) out.push("\n"); } } return function(collection, defaultMode) { if (!collection) collection = document.body.getElementsByTagName("pre"); for (var i = 0; i < collection.length; ++i) { var node = collection[i]; var mode = node.getAttribute("data-lang") || defaultMode; if (!mode) continue; var text = []; textContent(node, text); node.innerHTML = ""; CodeMirror.runMode(text.join(""), mode, node); node.className += " cm-s-default"; } }; })(); assets/lib/codemirror/addon/runmode/runmode.js000066600000003631152141651150015536 0ustar00CodeMirror.runMode = function(string, modespec, callback, options) { var mode = CodeMirror.getMode(CodeMirror.defaults, modespec); var ie = /MSIE \d/.test(navigator.userAgent); var ie_lt9 = ie && (document.documentMode == null || document.documentMode < 9); if (callback.nodeType == 1) { var tabSize = (options && options.tabSize) || CodeMirror.defaults.tabSize; var node = callback, col = 0; node.innerHTML = ""; callback = function(text, style) { if (text == "\n") { // Emitting LF or CRLF on IE8 or earlier results in an incorrect display. // Emitting a carriage return makes everything ok. node.appendChild(document.createTextNode(ie_lt9 ? '\r' : text)); col = 0; return; } var content = ""; // replace tabs for (var pos = 0;;) { var idx = text.indexOf("\t", pos); if (idx == -1) { content += text.slice(pos); col += text.length - pos; break; } else { col += idx - pos; content += text.slice(pos, idx); var size = tabSize - col % tabSize; col += size; for (var i = 0; i < size; ++i) content += " "; pos = idx + 1; } } if (style) { var sp = node.appendChild(document.createElement("span")); sp.className = "cm-" + style.replace(/ +/g, " cm-"); sp.appendChild(document.createTextNode(content)); } else { node.appendChild(document.createTextNode(content)); } }; } var lines = CodeMirror.splitLines(string), state = CodeMirror.startState(mode); for (var i = 0, e = lines.length; i < e; ++i) { if (i) callback("\n"); var stream = new CodeMirror.StringStream(lines[i]); while (!stream.eol()) { var style = mode.token(stream, state); callback(stream.current(), style, i, stream.start, state); stream.start = stream.pos; } } }; assets/lib/codemirror/addon/runmode/runmode-standalone.js000066600000010537152141651150017667 0ustar00/* Just enough of CodeMirror to run runMode under node.js */ window.CodeMirror = {}; function splitLines(string){ return string.split(/\r?\n|\r/); }; function StringStream(string) { this.pos = this.start = 0; this.string = string; } StringStream.prototype = { eol: function() {return this.pos >= this.string.length;}, sol: function() {return this.pos == 0;}, peek: function() {return this.string.charAt(this.pos) || null;}, next: function() { if (this.pos < this.string.length) return this.string.charAt(this.pos++); }, eat: function(match) { var ch = this.string.charAt(this.pos); if (typeof match == "string") var ok = ch == match; else var ok = ch && (match.test ? match.test(ch) : match(ch)); if (ok) {++this.pos; return ch;} }, eatWhile: function(match) { var start = this.pos; while (this.eat(match)){} return this.pos > start; }, eatSpace: function() { var start = this.pos; while (/[\s\u00a0]/.test(this.string.charAt(this.pos))) ++this.pos; return this.pos > start; }, skipToEnd: function() {this.pos = this.string.length;}, skipTo: function(ch) { var found = this.string.indexOf(ch, this.pos); if (found > -1) {this.pos = found; return true;} }, backUp: function(n) {this.pos -= n;}, column: function() {return this.start;}, indentation: function() {return 0;}, match: function(pattern, consume, caseInsensitive) { if (typeof pattern == "string") { var cased = function(str) {return caseInsensitive ? str.toLowerCase() : str;}; var substr = this.string.substr(this.pos, pattern.length); if (cased(substr) == cased(pattern)) { if (consume !== false) this.pos += pattern.length; return true; } } else { var match = this.string.slice(this.pos).match(pattern); if (match && match.index > 0) return null; if (match && consume !== false) this.pos += match[0].length; return match; } }, current: function(){return this.string.slice(this.start, this.pos);} }; CodeMirror.StringStream = StringStream; CodeMirror.startState = function (mode, a1, a2) { return mode.startState ? mode.startState(a1, a2) : true; }; var modes = CodeMirror.modes = {}, mimeModes = CodeMirror.mimeModes = {}; CodeMirror.defineMode = function (name, mode) { modes[name] = mode; }; CodeMirror.defineMIME = function (mime, spec) { mimeModes[mime] = spec; }; CodeMirror.getMode = function (options, spec) { if (typeof spec == "string" && mimeModes.hasOwnProperty(spec)) spec = mimeModes[spec]; if (typeof spec == "string") var mname = spec, config = {}; else if (spec != null) var mname = spec.name, config = spec; var mfactory = modes[mname]; if (!mfactory) throw new Error("Unknown mode: " + spec); return mfactory(options, config || {}); }; CodeMirror.runMode = function (string, modespec, callback, options) { var mode = CodeMirror.getMode({ indentUnit: 2 }, modespec); if (callback.nodeType == 1) { var tabSize = (options && options.tabSize) || 4; var node = callback, col = 0; node.innerHTML = ""; callback = function (text, style) { if (text == "\n") { node.appendChild(document.createElement("br")); col = 0; return; } var content = ""; // replace tabs for (var pos = 0; ;) { var idx = text.indexOf("\t", pos); if (idx == -1) { content += text.slice(pos); col += text.length - pos; break; } else { col += idx - pos; content += text.slice(pos, idx); var size = tabSize - col % tabSize; col += size; for (var i = 0; i < size; ++i) content += " "; pos = idx + 1; } } if (style) { var sp = node.appendChild(document.createElement("span")); sp.className = "cm-" + style.replace(/ +/g, " cm-"); sp.appendChild(document.createTextNode(content)); } else { node.appendChild(document.createTextNode(content)); } }; } var lines = splitLines(string), state = CodeMirror.startState(mode); for (var i = 0, e = lines.length; i < e; ++i) { if (i) callback("\n"); var stream = new CodeMirror.StringStream(lines[i]); while (!stream.eol()) { var style = mode.token(stream, state); callback(stream.current(), style, i, stream.start, state); stream.start = stream.pos; } } }; assets/lib/codemirror/addon/runmode/runmode.node.js000066600000006760152141651150016470 0ustar00/* Just enough of CodeMirror to run runMode under node.js */ function splitLines(string){ return string.split(/\r?\n|\r/); }; function StringStream(string) { this.pos = this.start = 0; this.string = string; } StringStream.prototype = { eol: function() {return this.pos >= this.string.length;}, sol: function() {return this.pos == 0;}, peek: function() {return this.string.charAt(this.pos) || null;}, next: function() { if (this.pos < this.string.length) return this.string.charAt(this.pos++); }, eat: function(match) { var ch = this.string.charAt(this.pos); if (typeof match == "string") var ok = ch == match; else var ok = ch && (match.test ? match.test(ch) : match(ch)); if (ok) {++this.pos; return ch;} }, eatWhile: function(match) { var start = this.pos; while (this.eat(match)){} return this.pos > start; }, eatSpace: function() { var start = this.pos; while (/[\s\u00a0]/.test(this.string.charAt(this.pos))) ++this.pos; return this.pos > start; }, skipToEnd: function() {this.pos = this.string.length;}, skipTo: function(ch) { var found = this.string.indexOf(ch, this.pos); if (found > -1) {this.pos = found; return true;} }, backUp: function(n) {this.pos -= n;}, column: function() {return this.start;}, indentation: function() {return 0;}, match: function(pattern, consume, caseInsensitive) { if (typeof pattern == "string") { var cased = function(str) {return caseInsensitive ? str.toLowerCase() : str;}; var substr = this.string.substr(this.pos, pattern.length); if (cased(substr) == cased(pattern)) { if (consume !== false) this.pos += pattern.length; return true; } } else { var match = this.string.slice(this.pos).match(pattern); if (match && match.index > 0) return null; if (match && consume !== false) this.pos += match[0].length; return match; } }, current: function(){return this.string.slice(this.start, this.pos);} }; exports.StringStream = StringStream; exports.startState = function(mode, a1, a2) { return mode.startState ? mode.startState(a1, a2) : true; }; var modes = exports.modes = {}, mimeModes = exports.mimeModes = {}; exports.defineMode = function(name, mode) { if (arguments.length > 2) { mode.dependencies = []; for (var i = 2; i < arguments.length; ++i) mode.dependencies.push(arguments[i]); } modes[name] = mode; }; exports.defineMIME = function(mime, spec) { mimeModes[mime] = spec; }; exports.defineMode("null", function() { return {token: function(stream) {stream.skipToEnd();}}; }); exports.defineMIME("text/plain", "null"); exports.getMode = function(options, spec) { if (typeof spec == "string" && mimeModes.hasOwnProperty(spec)) spec = mimeModes[spec]; if (typeof spec == "string") var mname = spec, config = {}; else if (spec != null) var mname = spec.name, config = spec; var mfactory = modes[mname]; if (!mfactory) throw new Error("Unknown mode: " + spec); return mfactory(options, config || {}); }; exports.runMode = function(string, modespec, callback) { var mode = exports.getMode({indentUnit: 2}, modespec); var lines = splitLines(string), state = exports.startState(mode); for (var i = 0, e = lines.length; i < e; ++i) { if (i) callback("\n"); var stream = new exports.StringStream(lines[i]); while (!stream.eol()) { var style = mode.token(stream, state); callback(stream.current(), style, i, stream.start, state); stream.start = stream.pos; } } }; assets/lib/codemirror/addon/lint/lint.css000066600000005653152141651150014512 0ustar00/* The lint marker gutter */ .CodeMirror-lint-markers { width: 16px; } .CodeMirror-lint-tooltip { background-color: infobackground; border: 1px solid black; border-radius: 4px 4px 4px 4px; color: infotext; font-family: monospace; font-size: 10pt; overflow: hidden; padding: 2px 5px; position: fixed; white-space: pre; z-index: 100; max-width: 600px; opacity: 0; transition: opacity .4s; -moz-transition: opacity .4s; -webkit-transition: opacity .4s; -o-transition: opacity .4s; -ms-transition: opacity .4s; } .CodeMirror-lint-mark-error, .CodeMirror-lint-mark-warning { background-position: left bottom; background-repeat: repeat-x; } .CodeMirror-lint-mark-error { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJDw4cOCW1/KIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAHElEQVQI12NggIL/DAz/GdA5/xkY/qPKMDAwAADLZwf5rvm+LQAAAABJRU5ErkJggg==") ; } .CodeMirror-lint-mark-warning { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJFhQXEbhTg7YAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAMklEQVQI12NkgIIvJ3QXMjAwdDN+OaEbysDA4MPAwNDNwMCwiOHLCd1zX07o6kBVGQEAKBANtobskNMAAAAASUVORK5CYII="); } .CodeMirror-lint-marker-error, .CodeMirror-lint-marker-warning { background-position: center center; background-repeat: no-repeat; cursor: pointer; display: inline-block; height: 16px; width: 16px; vertical-align: middle; position: relative; } .CodeMirror-lint-message-error, .CodeMirror-lint-message-warning { padding-left: 18px; background-position: top left; background-repeat: no-repeat; } .CodeMirror-lint-marker-error, .CodeMirror-lint-message-error { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAHlBMVEW7AAC7AACxAAC7AAC7AAAAAAC4AAC5AAD///+7AAAUdclpAAAABnRSTlMXnORSiwCK0ZKSAAAATUlEQVR42mWPOQ7AQAgDuQLx/z8csYRmPRIFIwRGnosRrpamvkKi0FTIiMASR3hhKW+hAN6/tIWhu9PDWiTGNEkTtIOucA5Oyr9ckPgAWm0GPBog6v4AAAAASUVORK5CYII="); } .CodeMirror-lint-marker-warning, .CodeMirror-lint-message-warning { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAANlBMVEX/uwDvrwD/uwD/uwD/uwD/uwD/uwD/uwD/uwD6twD/uwAAAADurwD2tQD7uAD+ugAAAAD/uwDhmeTRAAAADHRSTlMJ8mN1EYcbmiixgACm7WbuAAAAVklEQVR42n3PUQqAIBBFUU1LLc3u/jdbOJoW1P08DA9Gba8+YWJ6gNJoNYIBzAA2chBth5kLmG9YUoG0NHAUwFXwO9LuBQL1giCQb8gC9Oro2vp5rncCIY8L8uEx5ZkAAAAASUVORK5CYII="); } .CodeMirror-lint-marker-multiple { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAMAAADzjKfhAAAACVBMVEUAAAAAAAC/v7914kyHAAAAAXRSTlMAQObYZgAAACNJREFUeNo1ioEJAAAIwmz/H90iFFSGJgFMe3gaLZ0od+9/AQZ0ADosbYraAAAAAElFTkSuQmCC"); background-repeat: no-repeat; background-position: right bottom; width: 100%; height: 100%; } assets/lib/codemirror/addon/lint/javascript-lint.js000066600000007671152141651150016504 0ustar00(function() { var bogus = [ "Dangerous comment" ]; var warnings = [ [ "Expected '{'", "Statement body should be inside '{ }' braces." ] ]; var errors = [ "Missing semicolon", "Extra comma", "Missing property name", "Unmatched ", " and instead saw", " is not defined", "Unclosed string", "Stopping, unable to continue" ]; function validator(text, options) { JSHINT(text, options); var errors = JSHINT.data().errors, result = []; if (errors) parseErrors(errors, result); return result; } CodeMirror.registerHelper("lint", "javascript", validator); CodeMirror.javascriptValidator = CodeMirror.lint.javascript; // deprecated function cleanup(error) { // All problems are warnings by default fixWith(error, warnings, "warning", true); fixWith(error, errors, "error"); return isBogus(error) ? null : error; } function fixWith(error, fixes, severity, force) { var description, fix, find, replace, found; description = error.description; for ( var i = 0; i < fixes.length; i++) { fix = fixes[i]; find = (typeof fix === "string" ? fix : fix[0]); replace = (typeof fix === "string" ? null : fix[1]); found = description.indexOf(find) !== -1; if (force || found) { error.severity = severity; } if (found && replace) { error.description = replace; } } } function isBogus(error) { var description = error.description; for ( var i = 0; i < bogus.length; i++) { if (description.indexOf(bogus[i]) !== -1) { return true; } } return false; } function parseErrors(errors, output) { for ( var i = 0; i < errors.length; i++) { var error = errors[i]; if (error) { var linetabpositions, index; linetabpositions = []; // This next block is to fix a problem in jshint. Jshint // replaces // all tabs with spaces then performs some checks. The error // positions (character/space) are then reported incorrectly, // not taking the replacement step into account. Here we look // at the evidence line and try to adjust the character position // to the correct value. if (error.evidence) { // Tab positions are computed once per line and cached var tabpositions = linetabpositions[error.line]; if (!tabpositions) { var evidence = error.evidence; tabpositions = []; // ugggh phantomjs does not like this // forEachChar(evidence, function(item, index) { Array.prototype.forEach.call(evidence, function(item, index) { if (item === '\t') { // First col is 1 (not 0) to match error // positions tabpositions.push(index + 1); } }); linetabpositions[error.line] = tabpositions; } if (tabpositions.length > 0) { var pos = error.character; tabpositions.forEach(function(tabposition) { if (pos > tabposition) pos -= 1; }); error.character = pos; } } var start = error.character - 1, end = start + 1; if (error.evidence) { index = error.evidence.substring(start).search(/.\b/); if (index > -1) { end += index; } } // Convert to format expected by validation service error.description = error.reason;// + "(jshint)"; error.start = error.character; error.end = end; error = cleanup(error); if (error) output.push({message: error.description, severity: error.severity, from: CodeMirror.Pos(error.line - 1, start), to: CodeMirror.Pos(error.line - 1, end)}); } } } })(); assets/lib/codemirror/addon/lint/json-lint.js000066600000001017152141651150015273 0ustar00// Depends on jsonlint.js from https://github.com/zaach/jsonlint CodeMirror.registerHelper("lint", "json", function(text) { var found = []; jsonlint.parseError = function(str, hash) { var loc = hash.loc; found.push({from: CodeMirror.Pos(loc.first_line - 1, loc.first_column), to: CodeMirror.Pos(loc.last_line - 1, loc.last_column), message: str}); }; try { jsonlint.parse(text); } catch(e) {} return found; }); CodeMirror.jsonValidator = CodeMirror.lint.json; // deprecated assets/lib/codemirror/addon/lint/coffeescript-lint.js000066600000001523152141651150017000 0ustar00// Depends on coffeelint.js from http://www.coffeelint.org/js/coffeelint.js CodeMirror.registerHelper("lint", "coffeescript", function(text) { var found = []; var parseError = function(err) { var loc = err.lineNumber; found.push({from: CodeMirror.Pos(loc-1, 0), to: CodeMirror.Pos(loc, 0), severity: err.level, message: err.message}); }; try { var res = coffeelint.lint(text); for(var i = 0; i < res.length; i++) { parseError(res[i]); } } catch(e) { found.push({from: CodeMirror.Pos(e.location.first_line, 0), to: CodeMirror.Pos(e.location.last_line, e.location.last_column), severity: 'error', message: e.message}); } return found; }); CodeMirror.coffeeValidator = CodeMirror.lint.coffeescript; // deprecated assets/lib/codemirror/addon/lint/css-lint.js000066600000001154152141651150015114 0ustar00// Depends on csslint.js from https://github.com/stubbornella/csslint CodeMirror.registerHelper("lint", "css", function(text) { var found = []; var results = CSSLint.verify(text), messages = results.messages, message = null; for ( var i = 0; i < messages.length; i++) { message = messages[i]; var startLine = message.line -1, endLine = message.line -1, startCol = message.col -1, endCol = message.col; found.push({ from: CodeMirror.Pos(startLine, startCol), to: CodeMirror.Pos(endLine, endCol), message: message.message, severity : message.type }); } return found; }); assets/lib/codemirror/addon/lint/lint.js000066600000015452152141651150014334 0ustar00(function() { "use strict"; var GUTTER_ID = "CodeMirror-lint-markers"; var SEVERITIES = /^(?:error|warning)$/; function showTooltip(e, content) { var tt = document.createElement("div"); tt.className = "CodeMirror-lint-tooltip"; tt.appendChild(content.cloneNode(true)); document.body.appendChild(tt); function position(e) { if (!tt.parentNode) return CodeMirror.off(document, "mousemove", position); tt.style.top = Math.max(0, e.clientY - tt.offsetHeight - 5) + "px"; tt.style.left = (e.clientX + 5) + "px"; } CodeMirror.on(document, "mousemove", position); position(e); if (tt.style.opacity != null) tt.style.opacity = 1; return tt; } function rm(elt) { if (elt.parentNode) elt.parentNode.removeChild(elt); } function hideTooltip(tt) { if (!tt.parentNode) return; if (tt.style.opacity == null) rm(tt); tt.style.opacity = 0; setTimeout(function() { rm(tt); }, 600); } function showTooltipFor(e, content, node) { var tooltip = showTooltip(e, content); function hide() { CodeMirror.off(node, "mouseout", hide); if (tooltip) { hideTooltip(tooltip); tooltip = null; } } var poll = setInterval(function() { if (tooltip) for (var n = node;; n = n.parentNode) { if (n == document.body) return; if (!n) { hide(); break; } } if (!tooltip) return clearInterval(poll); }, 400); CodeMirror.on(node, "mouseout", hide); } function LintState(cm, options, hasGutter) { this.marked = []; this.options = options; this.timeout = null; this.hasGutter = hasGutter; this.onMouseOver = function(e) { onMouseOver(cm, e); }; } function parseOptions(cm, options) { if (options instanceof Function) return {getAnnotations: options}; if (!options || options === true) options = {}; if (!options.getAnnotations) options.getAnnotations = cm.getHelper(CodeMirror.Pos(0, 0), "lint"); if (!options.getAnnotations) throw new Error("Required option 'getAnnotations' missing (lint addon)"); return options; } function clearMarks(cm) { var state = cm.state.lint; if (state.hasGutter) cm.clearGutter(GUTTER_ID); for (var i = 0; i < state.marked.length; ++i) state.marked[i].clear(); state.marked.length = 0; } function makeMarker(labels, severity, multiple, tooltips) { var marker = document.createElement("div"), inner = marker; marker.className = "CodeMirror-lint-marker-" + severity; if (multiple) { inner = marker.appendChild(document.createElement("div")); inner.className = "CodeMirror-lint-marker-multiple"; } if (tooltips != false) CodeMirror.on(inner, "mouseover", function(e) { showTooltipFor(e, labels, inner); }); return marker; } function getMaxSeverity(a, b) { if (a == "error") return a; else return b; } function groupByLine(annotations) { var lines = []; for (var i = 0; i < annotations.length; ++i) { var ann = annotations[i], line = ann.from.line; (lines[line] || (lines[line] = [])).push(ann); } return lines; } function annotationTooltip(ann) { var severity = ann.severity; if (!SEVERITIES.test(severity)) severity = "error"; var tip = document.createElement("div"); tip.className = "CodeMirror-lint-message-" + severity; tip.appendChild(document.createTextNode(ann.message)); return tip; } function startLinting(cm) { var state = cm.state.lint, options = state.options; if (options.async) options.getAnnotations(cm, updateLinting, options); else updateLinting(cm, options.getAnnotations(cm.getValue(), options)); } function updateLinting(cm, annotationsNotSorted) { clearMarks(cm); var state = cm.state.lint, options = state.options; var annotations = groupByLine(annotationsNotSorted); for (var line = 0; line < annotations.length; ++line) { var anns = annotations[line]; if (!anns) continue; var maxSeverity = null; var tipLabel = state.hasGutter && document.createDocumentFragment(); for (var i = 0; i < anns.length; ++i) { var ann = anns[i]; var severity = ann.severity; if (!SEVERITIES.test(severity)) severity = "error"; maxSeverity = getMaxSeverity(maxSeverity, severity); if (options.formatAnnotation) ann = options.formatAnnotation(ann); if (state.hasGutter) tipLabel.appendChild(annotationTooltip(ann)); if (ann.to) state.marked.push(cm.markText(ann.from, ann.to, { className: "CodeMirror-lint-mark-" + severity, __annotation: ann })); } if (state.hasGutter) cm.setGutterMarker(line, GUTTER_ID, makeMarker(tipLabel, maxSeverity, anns.length > 1, state.options.tooltips)); } if (options.onUpdateLinting) options.onUpdateLinting(annotationsNotSorted, annotations, cm); } function onChange(cm) { var state = cm.state.lint; clearTimeout(state.timeout); state.timeout = setTimeout(function(){startLinting(cm);}, state.options.delay || 500); } function popupSpanTooltip(ann, e) { var target = e.target || e.srcElement; showTooltipFor(e, annotationTooltip(ann), target); } // When the mouseover fires, the cursor might not actually be over // the character itself yet. These pairs of x,y offsets are used to // probe a few nearby points when no suitable marked range is found. var nearby = [0, 0, 0, 5, 0, -5, 5, 0, -5, 0]; function onMouseOver(cm, e) { if (!/\bCodeMirror-lint-mark-/.test((e.target || e.srcElement).className)) return; for (var i = 0; i < nearby.length; i += 2) { var spans = cm.findMarksAt(cm.coordsChar({left: e.clientX + nearby[i], top: e.clientY + nearby[i + 1]})); for (var j = 0; j < spans.length; ++j) { var span = spans[j], ann = span.__annotation; if (ann) return popupSpanTooltip(ann, e); } } } function optionHandler(cm, val, old) { if (old && old != CodeMirror.Init) { clearMarks(cm); cm.off("change", onChange); CodeMirror.off(cm.getWrapperElement(), "mouseover", cm.state.lint.onMouseOver); delete cm.state.lint; } if (val) { var gutters = cm.getOption("gutters"), hasLintGutter = false; for (var i = 0; i < gutters.length; ++i) if (gutters[i] == GUTTER_ID) hasLintGutter = true; var state = cm.state.lint = new LintState(cm, parseOptions(cm, val), hasLintGutter); cm.on("change", onChange); if (state.options.tooltips != false) CodeMirror.on(cm.getWrapperElement(), "mouseover", state.onMouseOver); startLinting(cm); } } CodeMirror.defineOption("lintWith", false, optionHandler); // deprecated CodeMirror.defineOption("lint", false, optionHandler); // deprecated })(); assets/lib/codemirror/addon/merge/dep/diff_match_patch.js000066600000045533152141651150017535 0ustar00// From https://code.google.com/p/google-diff-match-patch/ , licensed under the Apache License 2.0 (function(){function diff_match_patch(){this.Diff_Timeout=1;this.Diff_EditCost=4;this.Match_Threshold=0.5;this.Match_Distance=1E3;this.Patch_DeleteThreshold=0.5;this.Patch_Margin=4;this.Match_MaxBits=32} diff_match_patch.prototype.diff_main=function(a,b,c,d){"undefined"==typeof d&&(d=0>=this.Diff_Timeout?Number.MAX_VALUE:(new Date).getTime()+1E3*this.Diff_Timeout);if(null==a||null==b)throw Error("Null input. (diff_main)");if(a==b)return a?[[0,a]]:[];"undefined"==typeof c&&(c=!0);var e=c,f=this.diff_commonPrefix(a,b);c=a.substring(0,f);a=a.substring(f);b=b.substring(f);var f=this.diff_commonSuffix(a,b),g=a.substring(a.length-f);a=a.substring(0,a.length-f);b=b.substring(0,b.length-f);a=this.diff_compute_(a, b,e,d);c&&a.unshift([0,c]);g&&a.push([0,g]);this.diff_cleanupMerge(a);return a}; diff_match_patch.prototype.diff_compute_=function(a,b,c,d){if(!a)return[[1,b]];if(!b)return[[-1,a]];var e=a.length>b.length?a:b,f=a.length>b.length?b:a,g=e.indexOf(f);return-1!=g?(c=[[1,e.substring(0,g)],[0,f],[1,e.substring(g+f.length)]],a.length>b.length&&(c[0][0]=c[2][0]=-1),c):1==f.length?[[-1,a],[1,b]]:(e=this.diff_halfMatch_(a,b))?(f=e[0],a=e[1],g=e[2],b=e[3],e=e[4],f=this.diff_main(f,g,c,d),c=this.diff_main(a,b,c,d),f.concat([[0,e]],c)):c&&100c);v++){for(var n=-v+r;n<=v-t;n+=2){var l=g+n,m;m=n==-v||n!=v&&j[l-1]d)t+=2;else if(s>e)r+=2;else if(q&&(l=g+k-n,0<=l&&l= u)return this.diff_bisectSplit_(a,b,m,s,c)}}for(n=-v+p;n<=v-w;n+=2){l=g+n;u=n==-v||n!=v&&i[l-1]d)w+=2;else if(m>e)p+=2;else if(!q&&(l=g+k-n,0<=l&&(l=u)))return this.diff_bisectSplit_(a,b,m,s,c)}}return[[-1,a],[1,b]]}; diff_match_patch.prototype.diff_bisectSplit_=function(a,b,c,d,e){var f=a.substring(0,c),g=b.substring(0,d);a=a.substring(c);b=b.substring(d);f=this.diff_main(f,g,!1,e);e=this.diff_main(a,b,!1,e);return f.concat(e)}; diff_match_patch.prototype.diff_linesToChars_=function(a,b){function c(a){for(var b="",c=0,f=-1,g=d.length;fd?a=a.substring(c-d):c=a.length?[h,j,n,l,g]:null}if(0>=this.Diff_Timeout)return null; var d=a.length>b.length?a:b,e=a.length>b.length?b:a;if(4>d.length||2*e.lengthd[4].length?g:d:d:g;var j;a.length>b.length?(g=h[0],d=h[1],e=h[2],j=h[3]):(e=h[0],j=h[1],g=h[2],d=h[3]);h=h[4];return[g,d,e,j,h]}; diff_match_patch.prototype.diff_cleanupSemantic=function(a){for(var b=!1,c=[],d=0,e=null,f=0,g=0,h=0,j=0,i=0;f=e){if(d>=b.length/2||d>=c.length/2)a.splice(f,0,[0,c.substring(0,d)]),a[f-1][1]=b.substring(0,b.length-d),a[f+1][1]=c.substring(d),f++}else if(e>=b.length/2||e>=c.length/2)a.splice(f,0,[0,b.substring(0,e)]),a[f-1][0]=1,a[f-1][1]=c.substring(0,c.length-e),a[f+1][0]=-1,a[f+1][1]=b.substring(e),f++;f++}f++}}; diff_match_patch.prototype.diff_cleanupSemanticLossless=function(a){function b(a,b){if(!a||!b)return 6;var c=a.charAt(a.length-1),d=b.charAt(0),e=c.match(diff_match_patch.nonAlphaNumericRegex_),f=d.match(diff_match_patch.nonAlphaNumericRegex_),g=e&&c.match(diff_match_patch.whitespaceRegex_),h=f&&d.match(diff_match_patch.whitespaceRegex_),c=g&&c.match(diff_match_patch.linebreakRegex_),d=h&&d.match(diff_match_patch.linebreakRegex_),i=c&&a.match(diff_match_patch.blanklineEndRegex_),j=d&&b.match(diff_match_patch.blanklineStartRegex_); return i||j?5:c||d?4:e&&!g&&h?3:g||h?2:e||f?1:0}for(var c=1;c=i&&(i=k,g=d,h=e,j=f)}a[c-1][1]!=g&&(g?a[c-1][1]=g:(a.splice(c-1,1),c--),a[c][1]= h,j?a[c+1][1]=j:(a.splice(c+1,1),c--))}c++}};diff_match_patch.nonAlphaNumericRegex_=/[^a-zA-Z0-9]/;diff_match_patch.whitespaceRegex_=/\s/;diff_match_patch.linebreakRegex_=/[\r\n]/;diff_match_patch.blanklineEndRegex_=/\n\r?\n$/;diff_match_patch.blanklineStartRegex_=/^\r?\n\r?\n/; diff_match_patch.prototype.diff_cleanupEfficiency=function(a){for(var b=!1,c=[],d=0,e=null,f=0,g=!1,h=!1,j=!1,i=!1;fb)break;e=c;f=d}return a.length!=g&&-1===a[g][0]?f:f+(b-e)}; diff_match_patch.prototype.diff_prettyHtml=function(a){for(var b=[],c=/&/g,d=//g,f=/\n/g,g=0;g");switch(h){case 1:b[g]=''+j+"";break;case -1:b[g]=''+j+"";break;case 0:b[g]=""+j+""}}return b.join("")}; diff_match_patch.prototype.diff_text1=function(a){for(var b=[],c=0;cthis.Match_MaxBits)throw Error("Pattern too long for this browser.");var e=this.match_alphabet_(b),f=this,g=this.Match_Threshold,h=a.indexOf(b,c);-1!=h&&(g=Math.min(d(0,h),g),h=a.lastIndexOf(b,c+b.length),-1!=h&&(g=Math.min(d(0,h),g)));for(var j=1<=i;p--){var w=e[a.charAt(p-1)];k[p]=0===t?(k[p+1]<<1|1)&w:(k[p+1]<<1|1)&w|((r[p+1]|r[p])<<1|1)|r[p+1];if(k[p]&j&&(w=d(t,p-1),w<=g))if(g=w,h=p-1,h>c)i=Math.max(1,2*c-h);else break}if(d(t+1,c)>g)break;r=k}return h}; diff_match_patch.prototype.match_alphabet_=function(a){for(var b={},c=0;c=2*this.Patch_Margin&& e&&(this.patch_addContext_(a,h),c.push(a),a=new diff_match_patch.patch_obj,e=0,h=d,f=g)}1!==i&&(f+=k.length);-1!==i&&(g+=k.length)}e&&(this.patch_addContext_(a,h),c.push(a));return c};diff_match_patch.prototype.patch_deepCopy=function(a){for(var b=[],c=0;cthis.Match_MaxBits){if(j=this.match_main(b,h.substring(0,this.Match_MaxBits),g),-1!=j&&(i=this.match_main(b,h.substring(h.length-this.Match_MaxBits),g+h.length-this.Match_MaxBits),-1==i||j>=i))j=-1}else j=this.match_main(b,h,g); if(-1==j)e[f]=!1,d-=a[f].length2-a[f].length1;else if(e[f]=!0,d=j-g,g=-1==i?b.substring(j,j+h.length):b.substring(j,i+this.Match_MaxBits),h==g)b=b.substring(0,j)+this.diff_text2(a[f].diffs)+b.substring(j+h.length);else if(g=this.diff_main(h,g,!1),h.length>this.Match_MaxBits&&this.diff_levenshtein(g)/h.length>this.Patch_DeleteThreshold)e[f]=!1;else{this.diff_cleanupSemanticLossless(g);for(var h=0,k,i=0;ie[0][1].length){var f=b-e[0][1].length;e[0][1]=c.substring(e[0][1].length)+e[0][1];d.start1-=f;d.start2-=f;d.length1+=f;d.length2+=f}d=a[a.length-1];e=d.diffs;0==e.length||0!=e[e.length-1][0]?(e.push([0, c]),d.length1+=b,d.length2+=b):b>e[e.length-1][1].length&&(f=b-e[e.length-1][1].length,e[e.length-1][1]+=c.substring(0,f),d.length1+=f,d.length2+=f);return c}; diff_match_patch.prototype.patch_splitMax=function(a){for(var b=this.Match_MaxBits,c=0;c2*b?(h.length1+=i.length,e+=i.length,j=!1,h.diffs.push([g,i]),d.diffs.shift()):(i=i.substring(0,b-h.length1-this.Patch_Margin),h.length1+=i.length,e+=i.length,0===g?(h.length2+=i.length,f+=i.length):j=!1,h.diffs.push([g,i]),i==d.diffs[0][1]?d.diffs.shift():d.diffs[0][1]=d.diffs[0][1].substring(i.length))}g=this.diff_text2(h.diffs);g=g.substring(g.length-this.Patch_Margin);i=this.diff_text1(d.diffs).substring(0,this.Patch_Margin);""!==i&& (h.length1+=i.length,h.length2+=i.length,0!==h.diffs.length&&0===h.diffs[h.diffs.length-1][0]?h.diffs[h.diffs.length-1][1]+=i:h.diffs.push([0,i]));j||a.splice(++c,0,h)}}};diff_match_patch.prototype.patch_toText=function(a){for(var b=[],c=0;c now) return false; var sInfo = editor.getScrollInfo(), halfScreen = .5 * sInfo.clientHeight, midY = sInfo.top + halfScreen; var mid = editor.lineAtHeight(midY, "local"); var around = chunkBoundariesAround(dv.diff, mid, type == DIFF_INSERT); var off = getOffsets(editor, type == DIFF_INSERT ? around.edit : around.orig); var offOther = getOffsets(other, type == DIFF_INSERT ? around.orig : around.edit); var ratio = (midY - off.top) / (off.bot - off.top); var targetPos = (offOther.top - halfScreen) + ratio * (offOther.bot - offOther.top); var botDist, mix; // Some careful tweaking to make sure no space is left out of view // when scrolling to top or bottom. if (targetPos > sInfo.top && (mix = sInfo.top / halfScreen) < 1) { targetPos = targetPos * mix + sInfo.top * (1 - mix); } else if ((botDist = sInfo.height - sInfo.clientHeight - sInfo.top) < halfScreen) { var otherInfo = other.getScrollInfo(); var botDistOther = otherInfo.height - otherInfo.clientHeight - targetPos; if (botDistOther > botDist && (mix = botDist / halfScreen) < 1) targetPos = targetPos * mix + (otherInfo.height - otherInfo.clientHeight - botDist) * (1 - mix); } other.scrollTo(sInfo.left, targetPos); other.state.scrollSetAt = now; other.state.scrollSetBy = dv; return true; } function getOffsets(editor, around) { var bot = around.after; if (bot == null) bot = editor.lastLine() + 1; return {top: editor.heightAtLine(around.before || 0, "local"), bot: editor.heightAtLine(bot, "local")}; } function setScrollLock(dv, val, action) { dv.lockScroll = val; if (val && action != false) syncScroll(dv, DIFF_INSERT) && drawConnectors(dv); dv.lockButton.innerHTML = val ? "\u21db\u21da" : "\u21db  \u21da"; } // Updating the marks for editor content function clearMarks(editor, arr, classes) { for (var i = 0; i < arr.length; ++i) { var mark = arr[i]; if (mark instanceof CodeMirror.TextMarker) { mark.clear(); } else { editor.removeLineClass(mark, "background", classes.chunk); editor.removeLineClass(mark, "background", classes.start); editor.removeLineClass(mark, "background", classes.end); } } arr.length = 0; } // FIXME maybe add a margin around viewport to prevent too many updates function updateMarks(editor, diff, state, type, classes) { var vp = editor.getViewport(); editor.operation(function() { if (state.from == state.to || vp.from - state.to > 20 || state.from - vp.to > 20) { clearMarks(editor, state.marked, classes); markChanges(editor, diff, type, state.marked, vp.from, vp.to, classes); state.from = vp.from; state.to = vp.to; } else { if (vp.from < state.from) { markChanges(editor, diff, type, state.marked, vp.from, state.from, classes); state.from = vp.from; } if (vp.to > state.to) { markChanges(editor, diff, type, state.marked, state.to, vp.to, classes); state.to = vp.to; } } }); } function markChanges(editor, diff, type, marks, from, to, classes) { var pos = Pos(0, 0); var top = Pos(from, 0), bot = editor.clipPos(Pos(to - 1)); var cls = type == DIFF_DELETE ? classes.del : classes.insert; function markChunk(start, end) { var bfrom = Math.max(from, start), bto = Math.min(to, end); for (var i = bfrom; i < bto; ++i) { var line = editor.addLineClass(i, "background", classes.chunk); if (i == start) editor.addLineClass(line, "background", classes.start); if (i == end - 1) editor.addLineClass(line, "background", classes.end); marks.push(line); } // When the chunk is empty, make sure a horizontal line shows up if (start == end && bfrom == end && bto == end) { if (bfrom) marks.push(editor.addLineClass(bfrom - 1, "background", classes.end)); else marks.push(editor.addLineClass(bfrom, "background", classes.start)); } } var chunkStart = 0; for (var i = 0; i < diff.length; ++i) { var part = diff[i], tp = part[0], str = part[1]; if (tp == DIFF_EQUAL) { var cleanFrom = pos.line + (startOfLineClean(diff, i) ? 0 : 1); moveOver(pos, str); var cleanTo = pos.line + (endOfLineClean(diff, i) ? 1 : 0); if (cleanTo > cleanFrom) { if (i) markChunk(chunkStart, cleanFrom); chunkStart = cleanTo; } } else { if (tp == type) { var end = moveOver(pos, str, true); var a = posMax(top, pos), b = posMin(bot, end); if (!posEq(a, b)) marks.push(editor.markText(a, b, {className: cls})); pos = end; } } } if (chunkStart <= pos.line) markChunk(chunkStart, pos.line + 1); } // Updating the gap between editor and original function drawConnectors(dv) { if (!dv.showDifferences) return; if (dv.svg) { clear(dv.svg); var w = dv.gap.offsetWidth; attrs(dv.svg, "width", w, "height", dv.gap.offsetHeight); } clear(dv.copyButtons); var flip = dv.type == "left"; var vpEdit = dv.edit.getViewport(), vpOrig = dv.orig.getViewport(); var sTopEdit = dv.edit.getScrollInfo().top, sTopOrig = dv.orig.getScrollInfo().top; iterateChunks(dv.diff, function(topOrig, botOrig, topEdit, botEdit) { if (topEdit > vpEdit.to || botEdit < vpEdit.from || topOrig > vpOrig.to || botOrig < vpOrig.from) return; var topLpx = dv.orig.heightAtLine(topOrig, "local") - sTopOrig, top = topLpx; if (dv.svg) { var topRpx = dv.edit.heightAtLine(topEdit, "local") - sTopEdit; if (flip) { var tmp = topLpx; topLpx = topRpx; topRpx = tmp; } var botLpx = dv.orig.heightAtLine(botOrig, "local") - sTopOrig; var botRpx = dv.edit.heightAtLine(botEdit, "local") - sTopEdit; if (flip) { var tmp = botLpx; botLpx = botRpx; botRpx = tmp; } var curveTop = " C " + w/2 + " " + topRpx + " " + w/2 + " " + topLpx + " " + (w + 2) + " " + topLpx; var curveBot = " C " + w/2 + " " + botLpx + " " + w/2 + " " + botRpx + " -1 " + botRpx; attrs(dv.svg.appendChild(document.createElementNS(svgNS, "path")), "d", "M -1 " + topRpx + curveTop + " L " + (w + 2) + " " + botLpx + curveBot + " z", "class", dv.classes.connect); } var copy = dv.copyButtons.appendChild(elt("div", dv.type == "left" ? "\u21dd" : "\u21dc", "CodeMirror-merge-copy")); copy.title = "Revert chunk"; copy.chunk = {topEdit: topEdit, botEdit: botEdit, topOrig: topOrig, botOrig: botOrig}; copy.style.top = top + "px"; }); } function copyChunk(dv, chunk) { if (dv.diffOutOfDate) return; dv.edit.replaceRange(dv.orig.getRange(Pos(chunk.topOrig, 0), Pos(chunk.botOrig, 0)), Pos(chunk.topEdit, 0), Pos(chunk.botEdit, 0)); } // Merge view, containing 0, 1, or 2 diff views. var MergeView = CodeMirror.MergeView = function(node, options) { if (!(this instanceof MergeView)) return new MergeView(node, options); var origLeft = options.origLeft, origRight = options.origRight == null ? options.orig : options.origRight; var hasLeft = origLeft != null, hasRight = origRight != null; var panes = 1 + (hasLeft ? 1 : 0) + (hasRight ? 1 : 0); var wrap = [], left = this.left = null, right = this.right = null; if (hasLeft) { left = this.left = new DiffView(this, "left"); var leftPane = elt("div", null, "CodeMirror-merge-pane"); wrap.push(leftPane); wrap.push(buildGap(left)); } var editPane = elt("div", null, "CodeMirror-merge-pane"); wrap.push(editPane); if (hasRight) { right = this.right = new DiffView(this, "right"); wrap.push(buildGap(right)); var rightPane = elt("div", null, "CodeMirror-merge-pane"); wrap.push(rightPane); } (hasRight ? rightPane : editPane).className += " CodeMirror-merge-pane-rightmost"; wrap.push(elt("div", null, null, "height: 0; clear: both;")); var wrapElt = this.wrap = node.appendChild(elt("div", wrap, "CodeMirror-merge CodeMirror-merge-" + panes + "pane")); this.edit = CodeMirror(editPane, copyObj(options)); if (left) left.init(leftPane, origLeft, options); if (right) right.init(rightPane, origRight, options); var onResize = function() { if (left) drawConnectors(left); if (right) drawConnectors(right); }; CodeMirror.on(window, "resize", onResize); var resizeInterval = setInterval(function() { for (var p = wrapElt.parentNode; p && p != document.body; p = p.parentNode) {} if (!p) { clearInterval(resizeInterval); CodeMirror.off(window, "resize", onResize); } }, 5000); }; function buildGap(dv) { var lock = dv.lockButton = elt("div", null, "CodeMirror-merge-scrolllock"); lock.title = "Toggle locked scrolling"; var lockWrap = elt("div", [lock], "CodeMirror-merge-scrolllock-wrap"); CodeMirror.on(lock, "click", function() { setScrollLock(dv, !dv.lockScroll); }); dv.copyButtons = elt("div", null, "CodeMirror-merge-copybuttons-" + dv.type); CodeMirror.on(dv.copyButtons, "click", function(e) { var node = e.target || e.srcElement; if (node.chunk) copyChunk(dv, node.chunk); }); var gapElts = [dv.copyButtons, lockWrap]; var svg = document.createElementNS && document.createElementNS(svgNS, "svg"); if (svg && !svg.createSVGRect) svg = null; dv.svg = svg; if (svg) gapElts.push(svg); return dv.gap = elt("div", gapElts, "CodeMirror-merge-gap"); } MergeView.prototype = { constuctor: MergeView, editor: function() { return this.edit; }, rightOriginal: function() { return this.right && this.right.orig; }, leftOriginal: function() { return this.left && this.left.orig; }, setShowDifferences: function(val) { if (this.right) this.right.setShowDifferences(val); if (this.left) this.left.setShowDifferences(val); } }; // Operations on diffs var dmp = new diff_match_patch(); function getDiff(a, b) { var diff = dmp.diff_main(a, b); dmp.diff_cleanupSemantic(diff); // The library sometimes leaves in empty parts, which confuse the algorithm for (var i = 0; i < diff.length; ++i) { var part = diff[i]; if (!part[1]) { diff.splice(i--, 1); } else if (i && diff[i - 1][0] == part[0]) { diff.splice(i--, 1); diff[i][1] += part[1]; } } return diff; } function iterateChunks(diff, f) { var startEdit = 0, startOrig = 0; var edit = Pos(0, 0), orig = Pos(0, 0); for (var i = 0; i < diff.length; ++i) { var part = diff[i], tp = part[0]; if (tp == DIFF_EQUAL) { var startOff = startOfLineClean(diff, i) ? 0 : 1; var cleanFromEdit = edit.line + startOff, cleanFromOrig = orig.line + startOff; moveOver(edit, part[1], null, orig); var endOff = endOfLineClean(diff, i) ? 1 : 0; var cleanToEdit = edit.line + endOff, cleanToOrig = orig.line + endOff; if (cleanToEdit > cleanFromEdit) { if (i) f(startOrig, cleanFromOrig, startEdit, cleanFromEdit); startEdit = cleanToEdit; startOrig = cleanToOrig; } } else { moveOver(tp == DIFF_INSERT ? edit : orig, part[1]); } } if (startEdit <= edit.line || startOrig <= orig.line) f(startOrig, orig.line + 1, startEdit, edit.line + 1); } function endOfLineClean(diff, i) { if (i == diff.length - 1) return true; var next = diff[i + 1][1]; if (next.length == 1 || next.charCodeAt(0) != 10) return false; if (i == diff.length - 2) return true; next = diff[i + 2][1]; return next.length > 1 && next.charCodeAt(0) == 10; } function startOfLineClean(diff, i) { if (i == 0) return true; var last = diff[i - 1][1]; if (last.charCodeAt(last.length - 1) != 10) return false; if (i == 1) return true; last = diff[i - 2][1]; return last.charCodeAt(last.length - 1) == 10; } function chunkBoundariesAround(diff, n, nInEdit) { var beforeE, afterE, beforeO, afterO; iterateChunks(diff, function(fromOrig, toOrig, fromEdit, toEdit) { var fromLocal = nInEdit ? fromEdit : fromOrig; var toLocal = nInEdit ? toEdit : toOrig; if (afterE == null) { if (fromLocal > n) { afterE = fromEdit; afterO = fromOrig; } else if (toLocal > n) { afterE = toEdit; afterO = toOrig; } } if (toLocal <= n) { beforeE = toEdit; beforeO = toOrig; } else if (fromLocal <= n) { beforeE = fromEdit; beforeO = fromOrig; } }); return {edit: {before: beforeE, after: afterE}, orig: {before: beforeO, after: afterO}}; } // General utilities function elt(tag, content, className, style) { var e = document.createElement(tag); if (className) e.className = className; if (style) e.style.cssText = style; if (typeof content == "string") e.appendChild(document.createTextNode(content)); else if (content) for (var i = 0; i < content.length; ++i) e.appendChild(content[i]); return e; } function clear(node) { for (var count = node.childNodes.length; count > 0; --count) node.removeChild(node.firstChild); } function attrs(elt) { for (var i = 1; i < arguments.length; i += 2) elt.setAttribute(arguments[i], arguments[i+1]); } function copyObj(obj, target) { if (!target) target = {}; for (var prop in obj) if (obj.hasOwnProperty(prop)) target[prop] = obj[prop]; return target; } function moveOver(pos, str, copy, other) { var out = copy ? Pos(pos.line, pos.ch) : pos, at = 0; for (;;) { var nl = str.indexOf("\n", at); if (nl == -1) break; ++out.line; if (other) ++other.line; at = nl + 1; } out.ch = (at ? 0 : out.ch) + (str.length - at); if (other) other.ch = (at ? 0 : other.ch) + (str.length - at); return out; } function posMin(a, b) { return (a.line - b.line || a.ch - b.ch) < 0 ? a : b; } function posMax(a, b) { return (a.line - b.line || a.ch - b.ch) > 0 ? a : b; } function posEq(a, b) { return a.line == b.line && a.ch == b.ch; } })(); assets/lib/codemirror/addon/search/match-highlighter.js000066600000006617152141651150017260 0ustar00// Highlighting text that matches the selection // // Defines an option highlightSelectionMatches, which, when enabled, // will style strings that match the selection throughout the // document. // // The option can be set to true to simply enable it, or to a // {minChars, style, showToken} object to explicitly configure it. // minChars is the minimum amount of characters that should be // selected for the behavior to occur, and style is the token style to // apply to the matches. This will be prefixed by "cm-" to create an // actual CSS class name. showToken, when enabled, will cause the // current token to be highlighted when nothing is selected. (function() { var DEFAULT_MIN_CHARS = 2; var DEFAULT_TOKEN_STYLE = "matchhighlight"; var DEFAULT_DELAY = 100; function State(options) { if (typeof options == "object") { this.minChars = options.minChars; this.style = options.style; this.showToken = options.showToken; this.delay = options.delay; } if (this.style == null) this.style = DEFAULT_TOKEN_STYLE; if (this.minChars == null) this.minChars = DEFAULT_MIN_CHARS; if (this.delay == null) this.delay = DEFAULT_DELAY; this.overlay = this.timeout = null; } CodeMirror.defineOption("highlightSelectionMatches", false, function(cm, val, old) { if (old && old != CodeMirror.Init) { var over = cm.state.matchHighlighter.overlay; if (over) cm.removeOverlay(over); clearTimeout(cm.state.matchHighlighter.timeout); cm.state.matchHighlighter = null; cm.off("cursorActivity", cursorActivity); } if (val) { cm.state.matchHighlighter = new State(val); highlightMatches(cm); cm.on("cursorActivity", cursorActivity); } }); function cursorActivity(cm) { var state = cm.state.matchHighlighter; clearTimeout(state.timeout); state.timeout = setTimeout(function() {highlightMatches(cm);}, state.delay); } function highlightMatches(cm) { cm.operation(function() { var state = cm.state.matchHighlighter; if (state.overlay) { cm.removeOverlay(state.overlay); state.overlay = null; } if (!cm.somethingSelected() && state.showToken) { var re = state.showToken === true ? /[\w$]/ : state.showToken; var cur = cm.getCursor(), line = cm.getLine(cur.line), start = cur.ch, end = start; while (start && re.test(line.charAt(start - 1))) --start; while (end < line.length && re.test(line.charAt(end))) ++end; if (start < end) cm.addOverlay(state.overlay = makeOverlay(line.slice(start, end), re, state.style)); return; } if (cm.getCursor("head").line != cm.getCursor("anchor").line) return; var selection = cm.getSelection().replace(/^\s+|\s+$/g, ""); if (selection.length >= state.minChars) cm.addOverlay(state.overlay = makeOverlay(selection, false, state.style)); }); } function boundariesAround(stream, re) { return (!stream.start || !re.test(stream.string.charAt(stream.start - 1))) && (stream.pos == stream.string.length || !re.test(stream.string.charAt(stream.pos))); } function makeOverlay(query, hasBoundary, style) { return {token: function(stream) { if (stream.match(query) && (!hasBoundary || boundariesAround(stream, hasBoundary))) return style; stream.next(); stream.skipTo(query.charAt(0)) || stream.skipToEnd(); }}; } })(); assets/lib/codemirror/addon/search/searchcursor.js000066600000013402152141651150016361 0ustar00(function(){ var Pos = CodeMirror.Pos; function SearchCursor(doc, query, pos, caseFold) { this.atOccurrence = false; this.doc = doc; if (caseFold == null && typeof query == "string") caseFold = false; pos = pos ? doc.clipPos(pos) : Pos(0, 0); this.pos = {from: pos, to: pos}; // The matches method is filled in based on the type of query. // It takes a position and a direction, and returns an object // describing the next occurrence of the query, or null if no // more matches were found. if (typeof query != "string") { // Regexp match if (!query.global) query = new RegExp(query.source, query.ignoreCase ? "ig" : "g"); this.matches = function(reverse, pos) { if (reverse) { query.lastIndex = 0; var line = doc.getLine(pos.line).slice(0, pos.ch), cutOff = 0, match, start; for (;;) { query.lastIndex = cutOff; var newMatch = query.exec(line); if (!newMatch) break; match = newMatch; start = match.index; cutOff = match.index + (match[0].length || 1); if (cutOff == line.length) break; } var matchLen = (match && match[0].length) || 0; if (!matchLen) { if (start == 0 && line.length == 0) {match = undefined;} else if (start != doc.getLine(pos.line).length) { matchLen++; } } } else { query.lastIndex = pos.ch; var line = doc.getLine(pos.line), match = query.exec(line); var matchLen = (match && match[0].length) || 0; var start = match && match.index; if (start + matchLen != line.length && !matchLen) matchLen = 1; } if (match && matchLen) return {from: Pos(pos.line, start), to: Pos(pos.line, start + matchLen), match: match}; }; } else { // String query if (caseFold) query = query.toLowerCase(); var fold = caseFold ? function(str){return str.toLowerCase();} : function(str){return str;}; var target = query.split("\n"); // Different methods for single-line and multi-line queries if (target.length == 1) { if (!query.length) { // Empty string would match anything and never progress, so // we define it to match nothing instead. this.matches = function() {}; } else { this.matches = function(reverse, pos) { var line = fold(doc.getLine(pos.line)), len = query.length, match; if (reverse ? (pos.ch >= len && (match = line.lastIndexOf(query, pos.ch - len)) != -1) : (match = line.indexOf(query, pos.ch)) != -1) return {from: Pos(pos.line, match), to: Pos(pos.line, match + len)}; }; } } else { this.matches = function(reverse, pos) { var ln = pos.line, idx = (reverse ? target.length - 1 : 0), match = target[idx], line = fold(doc.getLine(ln)); var offsetA = (reverse ? line.indexOf(match) + match.length : line.lastIndexOf(match)); if (reverse ? offsetA > pos.ch || offsetA != match.length : offsetA < pos.ch || offsetA != line.length - match.length) return; for (;;) { if (reverse ? !ln : ln == doc.lineCount() - 1) return; line = fold(doc.getLine(ln += reverse ? -1 : 1)); match = target[reverse ? --idx : ++idx]; if (idx > 0 && idx < target.length - 1) { if (line != match) return; else continue; } var offsetB = (reverse ? line.lastIndexOf(match) : line.indexOf(match) + match.length); if (reverse ? offsetB != line.length - match.length : offsetB != match.length) return; var start = Pos(pos.line, offsetA), end = Pos(ln, offsetB); return {from: reverse ? end : start, to: reverse ? start : end}; } }; } } } SearchCursor.prototype = { findNext: function() {return this.find(false);}, findPrevious: function() {return this.find(true);}, find: function(reverse) { var self = this, pos = this.doc.clipPos(reverse ? this.pos.from : this.pos.to); function savePosAndFail(line) { var pos = Pos(line, 0); self.pos = {from: pos, to: pos}; self.atOccurrence = false; return false; } for (;;) { if (this.pos = this.matches(reverse, pos)) { if (!this.pos.from || !this.pos.to) { console.log(this.matches, this.pos); } this.atOccurrence = true; return this.pos.match || true; } if (reverse) { if (!pos.line) return savePosAndFail(0); pos = Pos(pos.line-1, this.doc.getLine(pos.line-1).length); } else { var maxLine = this.doc.lineCount(); if (pos.line == maxLine - 1) return savePosAndFail(maxLine); pos = Pos(pos.line + 1, 0); } } }, from: function() {if (this.atOccurrence) return this.pos.from;}, to: function() {if (this.atOccurrence) return this.pos.to;}, replace: function(newText) { if (!this.atOccurrence) return; var lines = CodeMirror.splitLines(newText); this.doc.replaceRange(lines, this.pos.from, this.pos.to); this.pos.to = Pos(this.pos.from.line + lines.length - 1, lines[lines.length - 1].length + (lines.length == 1 ? this.pos.from.ch : 0)); } }; CodeMirror.defineExtension("getSearchCursor", function(query, pos, caseFold) { return new SearchCursor(this.doc, query, pos, caseFold); }); CodeMirror.defineDocExtension("getSearchCursor", function(query, pos, caseFold) { return new SearchCursor(this, query, pos, caseFold); }); })(); assets/lib/codemirror/addon/search/search.js000066600000012307152141651150015126 0ustar00// Define search commands. Depends on dialog.js or another // implementation of the openDialog method. // Replace works a little oddly -- it will do the replace on the next // Ctrl-G (or whatever is bound to findNext) press. You prevent a // replace by making sure the match is no longer selected when hitting // Ctrl-G. (function() { function searchOverlay(query) { if (typeof query == "string") return {token: function(stream) { if (stream.match(query)) return "searching"; stream.next(); stream.skipTo(query.charAt(0)) || stream.skipToEnd(); }}; return {token: function(stream) { if (stream.match(query)) return "searching"; while (!stream.eol()) { stream.next(); if (stream.match(query, false)) break; } }}; } function SearchState() { this.posFrom = this.posTo = this.query = null; this.overlay = null; } function getSearchState(cm) { return cm.state.search || (cm.state.search = new SearchState()); } function getSearchCursor(cm, query, pos) { // Heuristic: if the query string is all lowercase, do a case insensitive search. return cm.getSearchCursor(query, pos, typeof query == "string" && query == query.toLowerCase()); } function dialog(cm, text, shortText, f) { if (cm.openDialog) cm.openDialog(text, f); else f(prompt(shortText, "")); } function confirmDialog(cm, text, shortText, fs) { if (cm.openConfirm) cm.openConfirm(text, fs); else if (confirm(shortText)) fs[0](); } function parseQuery(query) { var isRE = query.match(/^\/(.*)\/([a-z]*)$/); return isRE ? new RegExp(isRE[1], isRE[2].indexOf("i") == -1 ? "" : "i") : query; } var queryDialog = 'Search: (Use /re/ syntax for regexp search)'; function doSearch(cm, rev) { var state = getSearchState(cm); if (state.query) return findNext(cm, rev); dialog(cm, queryDialog, "Search for:", function(query) { cm.operation(function() { if (!query || state.query) return; state.query = parseQuery(query); cm.removeOverlay(state.overlay); state.overlay = searchOverlay(state.query); cm.addOverlay(state.overlay); state.posFrom = state.posTo = cm.getCursor(); findNext(cm, rev); }); }); } function findNext(cm, rev) {cm.operation(function() { var state = getSearchState(cm); var cursor = getSearchCursor(cm, state.query, rev ? state.posFrom : state.posTo); if (!cursor.find(rev)) { cursor = getSearchCursor(cm, state.query, rev ? CodeMirror.Pos(cm.lastLine()) : CodeMirror.Pos(cm.firstLine(), 0)); if (!cursor.find(rev)) return; } cm.setSelection(cursor.from(), cursor.to()); state.posFrom = cursor.from(); state.posTo = cursor.to(); });} function clearSearch(cm) {cm.operation(function() { var state = getSearchState(cm); if (!state.query) return; state.query = null; cm.removeOverlay(state.overlay); });} var replaceQueryDialog = 'Replace: (Use /re/ syntax for regexp search)'; var replacementQueryDialog = 'With: '; var doReplaceConfirm = "Replace? "; function replace(cm, all) { dialog(cm, replaceQueryDialog, "Replace:", function(query) { if (!query) return; query = parseQuery(query); dialog(cm, replacementQueryDialog, "Replace with:", function(text) { if (all) { cm.operation(function() { for (var cursor = getSearchCursor(cm, query); cursor.findNext();) { if (typeof query != "string") { var match = cm.getRange(cursor.from(), cursor.to()).match(query); cursor.replace(text.replace(/\$(\d)/, function(_, i) {return match[i];})); } else cursor.replace(text); } }); } else { clearSearch(cm); var cursor = getSearchCursor(cm, query, cm.getCursor()); var advance = function() { var start = cursor.from(), match; if (!(match = cursor.findNext())) { cursor = getSearchCursor(cm, query); if (!(match = cursor.findNext()) || (start && cursor.from().line == start.line && cursor.from().ch == start.ch)) return; } cm.setSelection(cursor.from(), cursor.to()); confirmDialog(cm, doReplaceConfirm, "Replace?", [function() {doReplace(match);}, advance]); }; var doReplace = function(match) { cursor.replace(typeof query == "string" ? text : text.replace(/\$(\d)/, function(_, i) {return match[i];})); advance(); }; advance(); } }); }); } CodeMirror.commands.find = function(cm) {clearSearch(cm); doSearch(cm);}; CodeMirror.commands.findNext = doSearch; CodeMirror.commands.findPrev = function(cm) {doSearch(cm, true);}; CodeMirror.commands.clearSearch = clearSearch; CodeMirror.commands.replace = replace; CodeMirror.commands.replaceAll = function(cm) {replace(cm, true);}; })(); assets/lib/codemirror/addon/scroll/scrollpastend.js000066600000001722152141651150016566 0ustar00(function() { "use strict"; CodeMirror.defineOption("scrollPastEnd", false, function(cm, val, old) { if (old && old != CodeMirror.Init) { cm.off("change", onChange); cm.display.lineSpace.parentNode.style.paddingBottom = ""; cm.state.scrollPastEndPadding = null; } if (val) { cm.on("change", onChange); updateBottomMargin(cm); } }); function onChange(cm, change) { if (CodeMirror.changeEnd(change).line == cm.lastLine()) updateBottomMargin(cm); } function updateBottomMargin(cm) { var padding = ""; if (cm.lineCount() > 1) { var totalH = cm.display.scroller.clientHeight - 30, lastLineH = cm.getLineHandle(cm.lastLine()).height; padding = (totalH - lastLineH) + "px"; } if (cm.state.scrollPastEndPadding != padding) { cm.state.scrollPastEndPadding = padding; cm.display.lineSpace.parentNode.style.paddingBottom = padding; cm.setSize(); } } })(); assets/lib/codemirror/addon/dialog/dialog.js000066600000005143152141651150015112 0ustar00// Open simple dialogs on top of an editor. Relies on dialog.css. (function() { function dialogDiv(cm, template, bottom) { var wrap = cm.getWrapperElement(); var dialog; dialog = wrap.appendChild(document.createElement("div")); if (bottom) { dialog.className = "CodeMirror-dialog CodeMirror-dialog-bottom"; } else { dialog.className = "CodeMirror-dialog CodeMirror-dialog-top"; } dialog.innerHTML = template; return dialog; } CodeMirror.defineExtension("openDialog", function(template, callback, options) { var dialog = dialogDiv(this, template, options && options.bottom); var closed = false, me = this; function close() { if (closed) return; closed = true; dialog.parentNode.removeChild(dialog); } var inp = dialog.getElementsByTagName("input")[0], button; if (inp) { CodeMirror.on(inp, "keydown", function(e) { if (options && options.onKeyDown && options.onKeyDown(e, inp.value, close)) { return; } if (e.keyCode == 13 || e.keyCode == 27) { CodeMirror.e_stop(e); close(); me.focus(); if (e.keyCode == 13) callback(inp.value); } }); if (options && options.onKeyUp) { CodeMirror.on(inp, "keyup", function(e) {options.onKeyUp(e, inp.value, close);}); } if (options && options.value) inp.value = options.value; inp.focus(); CodeMirror.on(inp, "blur", close); } else if (button = dialog.getElementsByTagName("button")[0]) { CodeMirror.on(button, "click", function() { close(); me.focus(); }); button.focus(); CodeMirror.on(button, "blur", close); } return close; }); CodeMirror.defineExtension("openConfirm", function(template, callbacks, options) { var dialog = dialogDiv(this, template, options && options.bottom); var buttons = dialog.getElementsByTagName("button"); var closed = false, me = this, blurring = 1; function close() { if (closed) return; closed = true; dialog.parentNode.removeChild(dialog); me.focus(); } buttons[0].focus(); for (var i = 0; i < buttons.length; ++i) { var b = buttons[i]; (function(callback) { CodeMirror.on(b, "click", function(e) { CodeMirror.e_preventDefault(e); close(); if (callback) callback(me); }); })(callbacks[i]); CodeMirror.on(b, "blur", function() { --blurring; setTimeout(function() { if (blurring <= 0) close(); }, 200); }); CodeMirror.on(b, "focus", function() { ++blurring; }); } }); })(); assets/lib/codemirror/addon/dialog/dialog.css000066600000000766152141651150015274 0ustar00.CodeMirror-dialog { position: absolute; left: 0; right: 0; background: white; z-index: 15; padding: .1em .8em; overflow: hidden; color: #333; } .CodeMirror-dialog-top { border-bottom: 1px solid #eee; top: 0; } .CodeMirror-dialog-bottom { border-top: 1px solid #eee; bottom: 0; } .CodeMirror-dialog input { border: none; outline: none; background: transparent; width: 20em; color: inherit; font-family: monospace; } .CodeMirror-dialog button { font-size: 70%; } assets/lib/codemirror/addon/comment/comment.js000066600000013535152141651150015524 0ustar00(function() { "use strict"; var noOptions = {}; var nonWS = /[^\s\u00a0]/; var Pos = CodeMirror.Pos; function firstNonWS(str) { var found = str.search(nonWS); return found == -1 ? 0 : found; } CodeMirror.commands.toggleComment = function(cm) { var from = cm.getCursor("start"), to = cm.getCursor("end"); cm.uncomment(from, to) || cm.lineComment(from, to); }; CodeMirror.defineExtension("lineComment", function(from, to, options) { if (!options) options = noOptions; var self = this, mode = self.getModeAt(from); var commentString = options.lineComment || mode.lineComment; if (!commentString) { if (options.blockCommentStart || mode.blockCommentStart) { options.fullLines = true; self.blockComment(from, to, options); } return; } var firstLine = self.getLine(from.line); if (firstLine == null) return; var end = Math.min(to.ch != 0 || to.line == from.line ? to.line + 1 : to.line, self.lastLine() + 1); var pad = options.padding == null ? " " : options.padding; var blankLines = options.commentBlankLines || from.line == to.line; self.operation(function() { if (options.indent) { var baseString = firstLine.slice(0, firstNonWS(firstLine)); for (var i = from.line; i < end; ++i) { var line = self.getLine(i), cut = baseString.length; if (!blankLines && !nonWS.test(line)) continue; if (line.slice(0, cut) != baseString) cut = firstNonWS(line); self.replaceRange(baseString + commentString + pad, Pos(i, 0), Pos(i, cut)); } } else { for (var i = from.line; i < end; ++i) { if (blankLines || nonWS.test(self.getLine(i))) self.replaceRange(commentString + pad, Pos(i, 0)); } } }); }); CodeMirror.defineExtension("blockComment", function(from, to, options) { if (!options) options = noOptions; var self = this, mode = self.getModeAt(from); var startString = options.blockCommentStart || mode.blockCommentStart; var endString = options.blockCommentEnd || mode.blockCommentEnd; if (!startString || !endString) { if ((options.lineComment || mode.lineComment) && options.fullLines != false) self.lineComment(from, to, options); return; } var end = Math.min(to.line, self.lastLine()); if (end != from.line && to.ch == 0 && nonWS.test(self.getLine(end))) --end; var pad = options.padding == null ? " " : options.padding; if (from.line > end) return; self.operation(function() { if (options.fullLines != false) { var lastLineHasText = nonWS.test(self.getLine(end)); self.replaceRange(pad + endString, Pos(end)); self.replaceRange(startString + pad, Pos(from.line, 0)); var lead = options.blockCommentLead || mode.blockCommentLead; if (lead != null) for (var i = from.line + 1; i <= end; ++i) if (i != end || lastLineHasText) self.replaceRange(lead + pad, Pos(i, 0)); } else { self.replaceRange(endString, to); self.replaceRange(startString, from); } }); }); CodeMirror.defineExtension("uncomment", function(from, to, options) { if (!options) options = noOptions; var self = this, mode = self.getModeAt(from); var end = Math.min(to.line, self.lastLine()), start = Math.min(from.line, end); // Try finding line comments var lineString = options.lineComment || mode.lineComment, lines = []; var pad = options.padding == null ? " " : options.padding, didSomething; lineComment: { if (!lineString) break lineComment; for (var i = start; i <= end; ++i) { var line = self.getLine(i); var found = line.indexOf(lineString); if (found == -1 && (i != end || i == start) && nonWS.test(line)) break lineComment; if (i != start && found > -1 && nonWS.test(line.slice(0, found))) break lineComment; lines.push(line); } self.operation(function() { for (var i = start; i <= end; ++i) { var line = lines[i - start]; var pos = line.indexOf(lineString), endPos = pos + lineString.length; if (pos < 0) continue; if (line.slice(endPos, endPos + pad.length) == pad) endPos += pad.length; didSomething = true; self.replaceRange("", Pos(i, pos), Pos(i, endPos)); } }); if (didSomething) return true; } // Try block comments var startString = options.blockCommentStart || mode.blockCommentStart; var endString = options.blockCommentEnd || mode.blockCommentEnd; if (!startString || !endString) return false; var lead = options.blockCommentLead || mode.blockCommentLead; var startLine = self.getLine(start), endLine = end == start ? startLine : self.getLine(end); var open = startLine.indexOf(startString), close = endLine.lastIndexOf(endString); if (close == -1 && start != end) { endLine = self.getLine(--end); close = endLine.lastIndexOf(endString); } if (open == -1 || close == -1) return false; self.operation(function() { self.replaceRange("", Pos(end, close - (pad && endLine.slice(close - pad.length, close) == pad ? pad.length : 0)), Pos(end, close + endString.length)); var openEnd = open + startString.length; if (pad && startLine.slice(openEnd, openEnd + pad.length) == pad) openEnd += pad.length; self.replaceRange("", Pos(start, open), Pos(start, openEnd)); if (lead) for (var i = start + 1; i <= end; ++i) { var line = self.getLine(i), found = line.indexOf(lead); if (found == -1 || nonWS.test(line.slice(0, found))) continue; var foundEnd = found + lead.length; if (pad && line.slice(foundEnd, foundEnd + pad.length) == pad) foundEnd += pad.length; self.replaceRange("", Pos(i, found), Pos(i, foundEnd)); } }); return true; }); })(); assets/lib/codemirror/addon/comment/continuecomment.js000066600000004120152141651150017257 0ustar00(function() { var modes = ["clike", "css", "javascript"]; for (var i = 0; i < modes.length; ++i) CodeMirror.extendMode(modes[i], {blockCommentContinue: " * "}); function continueComment(cm) { var pos = cm.getCursor(), token = cm.getTokenAt(pos); if (token.type != "comment") return CodeMirror.Pass; var mode = CodeMirror.innerMode(cm.getMode(), token.state).mode; var insert; if (mode.blockCommentStart && mode.blockCommentContinue) { var end = token.string.indexOf(mode.blockCommentEnd); var full = cm.getRange(CodeMirror.Pos(pos.line, 0), CodeMirror.Pos(pos.line, token.end)), found; if (end != -1 && end == token.string.length - mode.blockCommentEnd.length) { // Comment ended, don't continue it } else if (token.string.indexOf(mode.blockCommentStart) == 0) { insert = full.slice(0, token.start); if (!/^\s*$/.test(insert)) { insert = ""; for (var i = 0; i < token.start; ++i) insert += " "; } } else if ((found = full.indexOf(mode.blockCommentContinue)) != -1 && found + mode.blockCommentContinue.length > token.start && /^\s*$/.test(full.slice(0, found))) { insert = full.slice(0, found); } if (insert != null) insert += mode.blockCommentContinue; } if (insert == null && mode.lineComment) { var line = cm.getLine(pos.line), found = line.indexOf(mode.lineComment); if (found > -1) { insert = line.slice(0, found); if (/\S/.test(insert)) insert = null; else insert += mode.lineComment + line.slice(found + mode.lineComment.length).match(/^\s*/)[0]; } } if (insert != null) cm.replaceSelection("\n" + insert, "end"); else return CodeMirror.Pass; } CodeMirror.defineOption("continueComments", null, function(cm, val, prev) { if (prev && prev != CodeMirror.Init) cm.removeKeyMap("continueComment"); if (val) { var map = {name: "continueComment"}; map[typeof val == "string" ? val : "Enter"] = continueComment; cm.addKeyMap(map); } }); })(); assets/lib/codemirror/addon/edit/matchtags.js000066600000003526152141651150015317 0ustar00(function() { "use strict"; CodeMirror.defineOption("matchTags", false, function(cm, val, old) { if (old && old != CodeMirror.Init) { cm.off("cursorActivity", doMatchTags); cm.off("viewportChange", maybeUpdateMatch); clear(cm); } if (val) { cm.state.matchBothTags = typeof val == "object" && val.bothTags; cm.on("cursorActivity", doMatchTags); cm.on("viewportChange", maybeUpdateMatch); doMatchTags(cm); } }); function clear(cm) { if (cm.state.tagHit) cm.state.tagHit.clear(); if (cm.state.tagOther) cm.state.tagOther.clear(); cm.state.tagHit = cm.state.tagOther = null; } function doMatchTags(cm) { cm.state.failedTagMatch = false; cm.operation(function() { clear(cm); if (cm.somethingSelected()) return; var cur = cm.getCursor(), range = cm.getViewport(); range.from = Math.min(range.from, cur.line); range.to = Math.max(cur.line + 1, range.to); var match = CodeMirror.findMatchingTag(cm, cur, range); if (!match) return; if (cm.state.matchBothTags) { var hit = match.at == "open" ? match.open : match.close; if (hit) cm.state.tagHit = cm.markText(hit.from, hit.to, {className: "CodeMirror-matchingtag"}); } var other = match.at == "close" ? match.open : match.close; if (other) cm.state.tagOther = cm.markText(other.from, other.to, {className: "CodeMirror-matchingtag"}); else cm.state.failedTagMatch = true; }); } function maybeUpdateMatch(cm) { if (cm.state.failedTagMatch) doMatchTags(cm); } CodeMirror.commands.toMatchingTag = function(cm) { var found = CodeMirror.findMatchingTag(cm, cm.getCursor()); if (found) { var other = found.at == "close" ? found.open : found.close; if (other) cm.setSelection(other.to, other.from); } }; })(); assets/lib/codemirror/addon/edit/trailingspace.js000066600000001020152141651150016154 0ustar00CodeMirror.defineOption("showTrailingSpace", false, function(cm, val, prev) { if (prev == CodeMirror.Init) prev = false; if (prev && !val) cm.removeOverlay("trailingspace"); else if (!prev && val) cm.addOverlay({ token: function(stream) { for (var l = stream.string.length, i = l; i && /\s/.test(stream.string.charAt(i - 1)); --i) {} if (i > stream.pos) { stream.pos = i; return null; } stream.pos = l; return "trailingspace"; }, name: "trailingspace" }); }); assets/lib/codemirror/addon/edit/closebrackets.js000066600000006465152141651150016175 0ustar00(function() { var DEFAULT_BRACKETS = "()[]{}''\"\""; var DEFAULT_EXPLODE_ON_ENTER = "[]{}"; var SPACE_CHAR_REGEX = /\s/; CodeMirror.defineOption("autoCloseBrackets", false, function(cm, val, old) { if (old != CodeMirror.Init && old) cm.removeKeyMap("autoCloseBrackets"); if (!val) return; var pairs = DEFAULT_BRACKETS, explode = DEFAULT_EXPLODE_ON_ENTER; if (typeof val == "string") pairs = val; else if (typeof val == "object") { if (val.pairs != null) pairs = val.pairs; if (val.explode != null) explode = val.explode; } var map = buildKeymap(pairs); if (explode) map.Enter = buildExplodeHandler(explode); cm.addKeyMap(map); }); function charsAround(cm, pos) { var str = cm.getRange(CodeMirror.Pos(pos.line, pos.ch - 1), CodeMirror.Pos(pos.line, pos.ch + 1)); return str.length == 2 ? str : null; } function buildKeymap(pairs) { var map = { name : "autoCloseBrackets", Backspace: function(cm) { if (cm.somethingSelected()) return CodeMirror.Pass; var cur = cm.getCursor(), around = charsAround(cm, cur); if (around && pairs.indexOf(around) % 2 == 0) cm.replaceRange("", CodeMirror.Pos(cur.line, cur.ch - 1), CodeMirror.Pos(cur.line, cur.ch + 1)); else return CodeMirror.Pass; } }; var closingBrackets = ""; for (var i = 0; i < pairs.length; i += 2) (function(left, right) { if (left != right) closingBrackets += right; function surround(cm) { var selection = cm.getSelection(); cm.replaceSelection(left + selection + right); } function maybeOverwrite(cm) { var cur = cm.getCursor(), ahead = cm.getRange(cur, CodeMirror.Pos(cur.line, cur.ch + 1)); if (ahead != right || cm.somethingSelected()) return CodeMirror.Pass; else cm.execCommand("goCharRight"); } map["'" + left + "'"] = function(cm) { if (left == "'" && cm.getTokenAt(cm.getCursor()).type == "comment") return CodeMirror.Pass; if (cm.somethingSelected()) return surround(cm); if (left == right && maybeOverwrite(cm) != CodeMirror.Pass) return; var cur = cm.getCursor(), ahead = CodeMirror.Pos(cur.line, cur.ch + 1); var line = cm.getLine(cur.line), nextChar = line.charAt(cur.ch), curChar = cur.ch > 0 ? line.charAt(cur.ch - 1) : ""; if (left == right && CodeMirror.isWordChar(curChar)) return CodeMirror.Pass; if (line.length == cur.ch || closingBrackets.indexOf(nextChar) >= 0 || SPACE_CHAR_REGEX.test(nextChar)) cm.replaceSelection(left + right, {head: ahead, anchor: ahead}); else return CodeMirror.Pass; }; if (left != right) map["'" + right + "'"] = maybeOverwrite; })(pairs.charAt(i), pairs.charAt(i + 1)); return map; } function buildExplodeHandler(pairs) { return function(cm) { var cur = cm.getCursor(), around = charsAround(cm, cur); if (!around || pairs.indexOf(around) % 2 != 0) return CodeMirror.Pass; cm.operation(function() { var newPos = CodeMirror.Pos(cur.line + 1, 0); cm.replaceSelection("\n\n", {anchor: newPos, head: newPos}, "+input"); cm.indentLine(cur.line + 1, null, true); cm.indentLine(cur.line + 2, null, true); }); }; } })(); assets/lib/codemirror/addon/edit/matchbrackets.js000066600000007374152141651150016164 0ustar00(function() { var ie_lt8 = /MSIE \d/.test(navigator.userAgent) && (document.documentMode == null || document.documentMode < 8); var Pos = CodeMirror.Pos; var matching = {"(": ")>", ")": "(<", "[": "]>", "]": "[<", "{": "}>", "}": "{<"}; function findMatchingBracket(cm, where, strict) { var state = cm.state.matchBrackets; var maxScanLen = (state && state.maxScanLineLength) || 10000; var cur = where || cm.getCursor(), line = cm.getLineHandle(cur.line), pos = cur.ch - 1; var match = (pos >= 0 && matching[line.text.charAt(pos)]) || matching[line.text.charAt(++pos)]; if (!match) return null; var forward = match.charAt(1) == ">", d = forward ? 1 : -1; if (strict && forward != (pos == cur.ch)) return null; var style = cm.getTokenTypeAt(Pos(cur.line, pos + 1)); var stack = [line.text.charAt(pos)], re = /[(){}[\]]/; function scan(line, lineNo, start) { if (!line.text) return; var pos = forward ? 0 : line.text.length - 1, end = forward ? line.text.length : -1; if (line.text.length > maxScanLen) return null; if (start != null) pos = start + d; for (; pos != end; pos += d) { var ch = line.text.charAt(pos); if (re.test(ch) && cm.getTokenTypeAt(Pos(lineNo, pos + 1)) == style) { var match = matching[ch]; if (match.charAt(1) == ">" == forward) stack.push(ch); else if (stack.pop() != match.charAt(0)) return {pos: pos, match: false}; else if (!stack.length) return {pos: pos, match: true}; } } } for (var i = cur.line, found, e = forward ? Math.min(i + 100, cm.lineCount()) : Math.max(-1, i - 100); i != e; i+=d) { if (i == cur.line) found = scan(line, i, pos); else found = scan(cm.getLineHandle(i), i); if (found) break; } return {from: Pos(cur.line, pos), to: found && Pos(i, found.pos), match: found && found.match, forward: forward}; } function matchBrackets(cm, autoclear) { // Disable brace matching in long lines, since it'll cause hugely slow updates var maxHighlightLen = cm.state.matchBrackets.maxHighlightLineLength || 1000; var found = findMatchingBracket(cm); if (!found || cm.getLine(found.from.line).length > maxHighlightLen || found.to && cm.getLine(found.to.line).length > maxHighlightLen) return; var style = found.match ? "CodeMirror-matchingbracket" : "CodeMirror-nonmatchingbracket"; var one = cm.markText(found.from, Pos(found.from.line, found.from.ch + 1), {className: style}); var two = found.to && cm.markText(found.to, Pos(found.to.line, found.to.ch + 1), {className: style}); // Kludge to work around the IE bug from issue #1193, where text // input stops going to the textare whever this fires. if (ie_lt8 && cm.state.focused) cm.display.input.focus(); var clear = function() { cm.operation(function() { one.clear(); two && two.clear(); }); }; if (autoclear) setTimeout(clear, 800); else return clear; } var currentlyHighlighted = null; function doMatchBrackets(cm) { cm.operation(function() { if (currentlyHighlighted) {currentlyHighlighted(); currentlyHighlighted = null;} if (!cm.somethingSelected()) currentlyHighlighted = matchBrackets(cm, false); }); } CodeMirror.defineOption("matchBrackets", false, function(cm, val, old) { if (old && old != CodeMirror.Init) cm.off("cursorActivity", doMatchBrackets); if (val) { cm.state.matchBrackets = typeof val == "object" ? val : {}; cm.on("cursorActivity", doMatchBrackets); } }); CodeMirror.defineExtension("matchBrackets", function() {matchBrackets(this, true);}); CodeMirror.defineExtension("findMatchingBracket", function(pos, strict){ return findMatchingBracket(this, pos, strict); }); })(); assets/lib/codemirror/addon/edit/continuelist.js000066600000001214152141651150016054 0ustar00(function() { 'use strict'; var listRE = /^(\s*)([*+-]|(\d+)\.)(\s*)/, unorderedBullets = '*+-'; CodeMirror.commands.newlineAndIndentContinueMarkdownList = function(cm) { var pos = cm.getCursor(), inList = cm.getStateAfter(pos.line).list, match; if (!inList || !(match = cm.getLine(pos.line).match(listRE))) { cm.execCommand('newlineAndIndent'); return; } var indent = match[1], after = match[4]; var bullet = unorderedBullets.indexOf(match[2]) >= 0 ? match[2] : (parseInt(match[3], 10) + 1) + '.'; cm.replaceSelection('\n' + indent + bullet + after, 'end'); }; }()); assets/lib/codemirror/addon/edit/closetag.js000066600000007473152141651150015152 0ustar00/** * Tag-closer extension for CodeMirror. * * This extension adds an "autoCloseTags" option that can be set to * either true to get the default behavior, or an object to further * configure its behavior. * * These are supported options: * * `whenClosing` (default true) * Whether to autoclose when the '/' of a closing tag is typed. * `whenOpening` (default true) * Whether to autoclose the tag when the final '>' of an opening * tag is typed. * `dontCloseTags` (default is empty tags for HTML, none for XML) * An array of tag names that should not be autoclosed. * `indentTags` (default is block tags for HTML, none for XML) * An array of tag names that should, when opened, cause a * blank line to be added inside the tag, and the blank line and * closing line to be indented. * * See demos/closetag.html for a usage example. */ (function() { CodeMirror.defineOption("autoCloseTags", false, function(cm, val, old) { if (val && (old == CodeMirror.Init || !old)) { var map = {name: "autoCloseTags"}; if (typeof val != "object" || val.whenClosing) map["'/'"] = function(cm) { return autoCloseSlash(cm); }; if (typeof val != "object" || val.whenOpening) map["'>'"] = function(cm) { return autoCloseGT(cm); }; cm.addKeyMap(map); } else if (!val && (old != CodeMirror.Init && old)) { cm.removeKeyMap("autoCloseTags"); } }); var htmlDontClose = ["area", "base", "br", "col", "command", "embed", "hr", "img", "input", "keygen", "link", "meta", "param", "source", "track", "wbr"]; var htmlIndent = ["applet", "blockquote", "body", "button", "div", "dl", "fieldset", "form", "frameset", "h1", "h2", "h3", "h4", "h5", "h6", "head", "html", "iframe", "layer", "legend", "object", "ol", "p", "select", "table", "ul"]; function autoCloseGT(cm) { var pos = cm.getCursor(), tok = cm.getTokenAt(pos); var inner = CodeMirror.innerMode(cm.getMode(), tok.state), state = inner.state; if (inner.mode.name != "xml" || !state.tagName) return CodeMirror.Pass; var opt = cm.getOption("autoCloseTags"), html = inner.mode.configuration == "html"; var dontCloseTags = (typeof opt == "object" && opt.dontCloseTags) || (html && htmlDontClose); var indentTags = (typeof opt == "object" && opt.indentTags) || (html && htmlIndent); var tagName = state.tagName; if (tok.end > pos.ch) tagName = tagName.slice(0, tagName.length - tok.end + pos.ch); var lowerTagName = tagName.toLowerCase(); // Don't process the '>' at the end of an end-tag or self-closing tag if (tok.type == "tag" && state.type == "closeTag" || tok.string.indexOf("/") == (tok.string.length - 1) || // match something like dontCloseTags && indexOf(dontCloseTags, lowerTagName) > -1) return CodeMirror.Pass; var doIndent = indentTags && indexOf(indentTags, lowerTagName) > -1; var curPos = doIndent ? CodeMirror.Pos(pos.line + 1, 0) : CodeMirror.Pos(pos.line, pos.ch + 1); cm.replaceSelection(">" + (doIndent ? "\n\n" : "") + "", {head: curPos, anchor: curPos}); if (doIndent) { cm.indentLine(pos.line + 1); cm.indentLine(pos.line + 2); } } function autoCloseSlash(cm) { var pos = cm.getCursor(), tok = cm.getTokenAt(pos); var inner = CodeMirror.innerMode(cm.getMode(), tok.state), state = inner.state; if (tok.string.charAt(0) != "<" || inner.mode.name != "xml") return CodeMirror.Pass; var tagName = state.context && state.context.tagName; if (tagName) cm.replaceSelection("/" + tagName + ">", "end"); } function indexOf(collection, elt) { if (collection.indexOf) return collection.indexOf(elt); for (var i = 0, e = collection.length; i < e; ++i) if (collection[i] == elt) return i; return -1; } })(); assets/lib/codemirror/addon/display/fullscreen.css000066600000000164152141651150016375 0ustar00.CodeMirror-fullscreen { position: fixed; top: 0; left: 0; right: 0; bottom: 0; height: auto; z-index: 9; } assets/lib/codemirror/addon/display/placeholder.js000066600000003237152141651150016345 0ustar00(function() { CodeMirror.defineOption("placeholder", "", function(cm, val, old) { var prev = old && old != CodeMirror.Init; if (val && !prev) { cm.on("focus", onFocus); cm.on("blur", onBlur); cm.on("change", onChange); onChange(cm); } else if (!val && prev) { cm.off("focus", onFocus); cm.off("blur", onBlur); cm.off("change", onChange); clearPlaceholder(cm); var wrapper = cm.getWrapperElement(); wrapper.className = wrapper.className.replace(" CodeMirror-empty", ""); } if (val && !cm.hasFocus()) onBlur(cm); }); function clearPlaceholder(cm) { if (cm.state.placeholder) { cm.state.placeholder.parentNode.removeChild(cm.state.placeholder); cm.state.placeholder = null; } } function setPlaceholder(cm) { clearPlaceholder(cm); var elt = cm.state.placeholder = document.createElement("pre"); elt.style.cssText = "height: 0; overflow: visible"; elt.className = "CodeMirror-placeholder"; elt.appendChild(document.createTextNode(cm.getOption("placeholder"))); cm.display.lineSpace.insertBefore(elt, cm.display.lineSpace.firstChild); } function onFocus(cm) { clearPlaceholder(cm); } function onBlur(cm) { if (isEmpty(cm)) setPlaceholder(cm); } function onChange(cm) { var wrapper = cm.getWrapperElement(), empty = isEmpty(cm); wrapper.className = wrapper.className.replace(" CodeMirror-empty", "") + (empty ? " CodeMirror-empty" : ""); if (cm.hasFocus()) return; if (empty) setPlaceholder(cm); else clearPlaceholder(cm); } function isEmpty(cm) { return (cm.lineCount() === 1) && (cm.getLine(0) === ""); } })(); assets/lib/codemirror/addon/display/fullscreen.js000066600000002041152141651150016215 0ustar00(function() { "use strict"; CodeMirror.defineOption("fullScreen", false, function(cm, val, old) { if (old == CodeMirror.Init) old = false; if (!old == !val) return; if (val) setFullscreen(cm); else setNormal(cm); }); function setFullscreen(cm) { var wrap = cm.getWrapperElement(); cm.state.fullScreenRestore = {scrollTop: window.pageYOffset, scrollLeft: window.pageXOffset, width: wrap.style.width, height: wrap.style.height}; wrap.style.width = wrap.style.height = ""; wrap.className += " CodeMirror-fullscreen"; document.documentElement.style.overflow = "hidden"; cm.refresh(); } function setNormal(cm) { var wrap = cm.getWrapperElement(); wrap.className = wrap.className.replace(/\s*CodeMirror-fullscreen\b/, ""); document.documentElement.style.overflow = ""; var info = cm.state.fullScreenRestore; wrap.style.width = info.width; wrap.style.height = info.height; window.scrollTo(info.scrollLeft, info.scrollTop); cm.refresh(); } })(); assets/lib/codemirror/addon/hint/anyword-hint.js000066600000002375152141651160016006 0ustar00(function() { "use strict"; var WORD = /[\w$]+/, RANGE = 500; CodeMirror.registerHelper("hint", "anyword", function(editor, options) { var word = options && options.word || WORD; var range = options && options.range || RANGE; var cur = editor.getCursor(), curLine = editor.getLine(cur.line); var start = cur.ch, end = start; while (end < curLine.length && word.test(curLine.charAt(end))) ++end; while (start && word.test(curLine.charAt(start - 1))) --start; var curWord = start != end && curLine.slice(start, end); var list = [], seen = {}; function scan(dir) { var line = cur.line, end = Math.min(Math.max(line + dir * range, editor.firstLine()), editor.lastLine()) + dir; for (; line != end; line += dir) { var text = editor.getLine(line), m; var re = new RegExp(word.source, "g"); while (m = re.exec(text)) { if (line == cur.line && m[0] === curWord) continue; if ((!curWord || m[0].indexOf(curWord) == 0) && !seen.hasOwnProperty(m[0])) { seen[m[0]] = true; list.push(m[0]); } } } } scan(-1); scan(1); return {list: list, from: CodeMirror.Pos(cur.line, start), to: CodeMirror.Pos(cur.line, end)}; }); })(); assets/lib/codemirror/addon/hint/show-hint.css000066600000001224152141651160015447 0ustar00.CodeMirror-hints { position: absolute; z-index: 10; overflow: hidden; list-style: none; margin: 0; padding: 2px; -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2); -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2); box-shadow: 2px 3px 5px rgba(0,0,0,.2); border-radius: 3px; border: 1px solid silver; background: white; font-size: 90%; font-family: monospace; max-height: 20em; overflow-y: auto; } .CodeMirror-hint { margin: 0; padding: 0 4px; border-radius: 2px; max-width: 19em; overflow: hidden; white-space: pre; color: black; cursor: pointer; } .CodeMirror-hint-active { background: #08f; color: white; } assets/lib/codemirror/addon/hint/html-hint.js000066600000025237152141651160015271 0ustar00(function () { var langs = "ab aa af ak sq am ar an hy as av ae ay az bm ba eu be bn bh bi bs br bg my ca ch ce ny zh cv kw co cr hr cs da dv nl dz en eo et ee fo fj fi fr ff gl ka de el gn gu ht ha he hz hi ho hu ia id ie ga ig ik io is it iu ja jv kl kn kr ks kk km ki rw ky kv kg ko ku kj la lb lg li ln lo lt lu lv gv mk mg ms ml mt mi mr mh mn na nv nb nd ne ng nn no ii nr oc oj cu om or os pa pi fa pl ps pt qu rm rn ro ru sa sc sd se sm sg sr gd sn si sk sl so st es su sw ss sv ta te tg th ti bo tk tl tn to tr ts tt tw ty ug uk ur uz ve vi vo wa cy wo fy xh yi yo za zu".split(" "); var targets = ["_blank", "_self", "_top", "_parent"]; var charsets = ["ascii", "utf-8", "utf-16", "latin1", "latin1"]; var methods = ["get", "post", "put", "delete"]; var encs = ["application/x-www-form-urlencoded", "multipart/form-data", "text/plain"]; var media = ["all", "screen", "print", "embossed", "braille", "handheld", "print", "projection", "screen", "tty", "tv", "speech", "3d-glasses", "resolution [>][<][=] [X]", "device-aspect-ratio: X/Y", "orientation:portrait", "orientation:landscape", "device-height: [X]", "device-width: [X]"]; var s = { attrs: {} }; // Simple tag, reused for a whole lot of tags var data = { a: { attrs: { href: null, ping: null, type: null, media: media, target: targets, hreflang: langs } }, abbr: s, acronym: s, address: s, applet: s, area: { attrs: { alt: null, coords: null, href: null, target: null, ping: null, media: media, hreflang: langs, type: null, shape: ["default", "rect", "circle", "poly"] } }, article: s, aside: s, audio: { attrs: { src: null, mediagroup: null, crossorigin: ["anonymous", "use-credentials"], preload: ["none", "metadata", "auto"], autoplay: ["", "autoplay"], loop: ["", "loop"], controls: ["", "controls"] } }, b: s, base: { attrs: { href: null, target: targets } }, basefont: s, bdi: s, bdo: s, big: s, blockquote: { attrs: { cite: null } }, body: s, br: s, button: { attrs: { form: null, formaction: null, name: null, value: null, autofocus: ["", "autofocus"], disabled: ["", "autofocus"], formenctype: encs, formmethod: methods, formnovalidate: ["", "novalidate"], formtarget: targets, type: ["submit", "reset", "button"] } }, canvas: { attrs: { width: null, height: null } }, caption: s, center: s, cite: s, code: s, col: { attrs: { span: null } }, colgroup: { attrs: { span: null } }, command: { attrs: { type: ["command", "checkbox", "radio"], label: null, icon: null, radiogroup: null, command: null, title: null, disabled: ["", "disabled"], checked: ["", "checked"] } }, data: { attrs: { value: null } }, datagrid: { attrs: { disabled: ["", "disabled"], multiple: ["", "multiple"] } }, datalist: { attrs: { data: null } }, dd: s, del: { attrs: { cite: null, datetime: null } }, details: { attrs: { open: ["", "open"] } }, dfn: s, dir: s, div: s, dl: s, dt: s, em: s, embed: { attrs: { src: null, type: null, width: null, height: null } }, eventsource: { attrs: { src: null } }, fieldset: { attrs: { disabled: ["", "disabled"], form: null, name: null } }, figcaption: s, figure: s, font: s, footer: s, form: { attrs: { action: null, name: null, "accept-charset": charsets, autocomplete: ["on", "off"], enctype: encs, method: methods, novalidate: ["", "novalidate"], target: targets } }, frame: s, frameset: s, h1: s, h2: s, h3: s, h4: s, h5: s, h6: s, head: { attrs: {}, children: ["title", "base", "link", "style", "meta", "script", "noscript", "command"] }, header: s, hgroup: s, hr: s, html: { attrs: { manifest: null }, children: ["head", "body"] }, i: s, iframe: { attrs: { src: null, srcdoc: null, name: null, width: null, height: null, sandbox: ["allow-top-navigation", "allow-same-origin", "allow-forms", "allow-scripts"], seamless: ["", "seamless"] } }, img: { attrs: { alt: null, src: null, ismap: null, usemap: null, width: null, height: null, crossorigin: ["anonymous", "use-credentials"] } }, input: { attrs: { alt: null, dirname: null, form: null, formaction: null, height: null, list: null, max: null, maxlength: null, min: null, name: null, pattern: null, placeholder: null, size: null, src: null, step: null, value: null, width: null, accept: ["audio/*", "video/*", "image/*"], autocomplete: ["on", "off"], autofocus: ["", "autofocus"], checked: ["", "checked"], disabled: ["", "disabled"], formenctype: encs, formmethod: methods, formnovalidate: ["", "novalidate"], formtarget: targets, multiple: ["", "multiple"], readonly: ["", "readonly"], required: ["", "required"], type: ["hidden", "text", "search", "tel", "url", "email", "password", "datetime", "date", "month", "week", "time", "datetime-local", "number", "range", "color", "checkbox", "radio", "file", "submit", "image", "reset", "button"] } }, ins: { attrs: { cite: null, datetime: null } }, kbd: s, keygen: { attrs: { challenge: null, form: null, name: null, autofocus: ["", "autofocus"], disabled: ["", "disabled"], keytype: ["RSA"] } }, label: { attrs: { "for": null, form: null } }, legend: s, li: { attrs: { value: null } }, link: { attrs: { href: null, type: null, hreflang: langs, media: media, sizes: ["all", "16x16", "16x16 32x32", "16x16 32x32 64x64"] } }, map: { attrs: { name: null } }, mark: s, menu: { attrs: { label: null, type: ["list", "context", "toolbar"] } }, meta: { attrs: { content: null, charset: charsets, name: ["viewport", "application-name", "author", "description", "generator", "keywords"], "http-equiv": ["content-language", "content-type", "default-style", "refresh"] } }, meter: { attrs: { value: null, min: null, low: null, high: null, max: null, optimum: null } }, nav: s, noframes: s, noscript: s, object: { attrs: { data: null, type: null, name: null, usemap: null, form: null, width: null, height: null, typemustmatch: ["", "typemustmatch"] } }, ol: { attrs: { reversed: ["", "reversed"], start: null, type: ["1", "a", "A", "i", "I"] } }, optgroup: { attrs: { disabled: ["", "disabled"], label: null } }, option: { attrs: { disabled: ["", "disabled"], label: null, selected: ["", "selected"], value: null } }, output: { attrs: { "for": null, form: null, name: null } }, p: s, param: { attrs: { name: null, value: null } }, pre: s, progress: { attrs: { value: null, max: null } }, q: { attrs: { cite: null } }, rp: s, rt: s, ruby: s, s: s, samp: s, script: { attrs: { type: ["text/javascript"], src: null, async: ["", "async"], defer: ["", "defer"], charset: charsets } }, section: s, select: { attrs: { form: null, name: null, size: null, autofocus: ["", "autofocus"], disabled: ["", "disabled"], multiple: ["", "multiple"] } }, small: s, source: { attrs: { src: null, type: null, media: null } }, span: s, strike: s, strong: s, style: { attrs: { type: ["text/css"], media: media, scoped: null } }, sub: s, summary: s, sup: s, table: s, tbody: s, td: { attrs: { colspan: null, rowspan: null, headers: null } }, textarea: { attrs: { dirname: null, form: null, maxlength: null, name: null, placeholder: null, rows: null, cols: null, autofocus: ["", "autofocus"], disabled: ["", "disabled"], readonly: ["", "readonly"], required: ["", "required"], wrap: ["soft", "hard"] } }, tfoot: s, th: { attrs: { colspan: null, rowspan: null, headers: null, scope: ["row", "col", "rowgroup", "colgroup"] } }, thead: s, time: { attrs: { datetime: null } }, title: s, tr: s, track: { attrs: { src: null, label: null, "default": null, kind: ["subtitles", "captions", "descriptions", "chapters", "metadata"], srclang: langs } }, tt: s, u: s, ul: s, "var": s, video: { attrs: { src: null, poster: null, width: null, height: null, crossorigin: ["anonymous", "use-credentials"], preload: ["auto", "metadata", "none"], autoplay: ["", "autoplay"], mediagroup: ["movie"], muted: ["", "muted"], controls: ["", "controls"] } }, wbr: s }; var globalAttrs = { accesskey: ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9"], "class": null, contenteditable: ["true", "false"], contextmenu: null, dir: ["ltr", "rtl", "auto"], draggable: ["true", "false", "auto"], dropzone: ["copy", "move", "link", "string:", "file:"], hidden: ["hidden"], id: null, inert: ["inert"], itemid: null, itemprop: null, itemref: null, itemscope: ["itemscope"], itemtype: null, lang: ["en", "es"], spellcheck: ["true", "false"], style: null, tabindex: ["1", "2", "3", "4", "5", "6", "7", "8", "9"], title: null, translate: ["yes", "no"], onclick: null, rel: ["stylesheet", "alternate", "author", "bookmark", "help", "license", "next", "nofollow", "noreferrer", "prefetch", "prev", "search", "tag"] }; function populate(obj) { for (var attr in globalAttrs) if (globalAttrs.hasOwnProperty(attr)) obj.attrs[attr] = globalAttrs[attr]; } populate(s); for (var tag in data) if (data.hasOwnProperty(tag) && data[tag] != s) populate(data[tag]); CodeMirror.htmlSchema = data; function htmlHint(cm, options) { var local = {schemaInfo: data}; if (options) for (var opt in options) local[opt] = options[opt]; return CodeMirror.hint.xml(cm, local); } CodeMirror.htmlHint = htmlHint; // deprecated CodeMirror.registerHelper("hint", "html", htmlHint); })(); assets/lib/codemirror/addon/hint/show-hint.js000066600000024233152141651160015300 0ustar00(function() { "use strict"; CodeMirror.showHint = function(cm, getHints, options) { // We want a single cursor position. if (cm.somethingSelected()) return; if (getHints == null) getHints = cm.getHelper(cm.getCursor(), "hint"); if (getHints == null) return; if (cm.state.completionActive) cm.state.completionActive.close(); var completion = cm.state.completionActive = new Completion(cm, getHints, options || {}); CodeMirror.signal(cm, "startCompletion", cm); if (completion.options.async) getHints(cm, function(hints) { completion.showHints(hints); }, completion.options); else return completion.showHints(getHints(cm, completion.options)); }; function Completion(cm, getHints, options) { this.cm = cm; this.getHints = getHints; this.options = options; this.widget = this.onClose = null; } Completion.prototype = { close: function() { if (!this.active()) return; this.cm.state.completionActive = null; if (this.widget) this.widget.close(); if (this.onClose) this.onClose(); CodeMirror.signal(this.cm, "endCompletion", this.cm); }, active: function() { return this.cm.state.completionActive == this; }, pick: function(data, i) { var completion = data.list[i]; if (completion.hint) completion.hint(this.cm, data, completion); else this.cm.replaceRange(getText(completion), data.from, data.to); this.close(); }, showHints: function(data) { if (!data || !data.list.length || !this.active()) return this.close(); if (this.options.completeSingle != false && data.list.length == 1) this.pick(data, 0); else this.showWidget(data); }, showWidget: function(data) { this.widget = new Widget(this, data); CodeMirror.signal(data, "shown"); var debounce = null, completion = this, finished; var closeOn = this.options.closeCharacters || /[\s()\[\]{};:>,]/; var startPos = this.cm.getCursor(), startLen = this.cm.getLine(startPos.line).length; function done() { if (finished) return; finished = true; completion.close(); completion.cm.off("cursorActivity", activity); if (data) CodeMirror.signal(data, "close"); } function update() { if (finished) return; CodeMirror.signal(data, "update"); if (completion.options.async) completion.getHints(completion.cm, finishUpdate, completion.options); else finishUpdate(completion.getHints(completion.cm, completion.options)); } function finishUpdate(data_) { data = data_; if (finished) return; if (!data || !data.list.length) return done(); completion.widget = new Widget(completion, data); } function activity() { clearTimeout(debounce); var pos = completion.cm.getCursor(), line = completion.cm.getLine(pos.line); if (pos.line != startPos.line || line.length - pos.ch != startLen - startPos.ch || pos.ch < startPos.ch || completion.cm.somethingSelected() || (pos.ch && closeOn.test(line.charAt(pos.ch - 1)))) { completion.close(); } else { debounce = setTimeout(update, 170); if (completion.widget) completion.widget.close(); } } this.cm.on("cursorActivity", activity); this.onClose = done; } }; function getText(completion) { if (typeof completion == "string") return completion; else return completion.text; } function buildKeyMap(options, handle) { var baseMap = { Up: function() {handle.moveFocus(-1);}, Down: function() {handle.moveFocus(1);}, PageUp: function() {handle.moveFocus(-handle.menuSize() + 1, true);}, PageDown: function() {handle.moveFocus(handle.menuSize() - 1, true);}, Home: function() {handle.setFocus(0);}, End: function() {handle.setFocus(handle.length - 1);}, Enter: handle.pick, Tab: handle.pick, Esc: handle.close }; var ourMap = options.customKeys ? {} : baseMap; function addBinding(key, val) { var bound; if (typeof val != "string") bound = function(cm) { return val(cm, handle); }; // This mechanism is deprecated else if (baseMap.hasOwnProperty(val)) bound = baseMap[val]; else bound = val; ourMap[key] = bound; } if (options.customKeys) for (var key in options.customKeys) if (options.customKeys.hasOwnProperty(key)) addBinding(key, options.customKeys[key]); if (options.extraKeys) for (var key in options.extraKeys) if (options.extraKeys.hasOwnProperty(key)) addBinding(key, options.extraKeys[key]); return ourMap; } function Widget(completion, data) { this.completion = completion; this.data = data; var widget = this, cm = completion.cm, options = completion.options; var hints = this.hints = document.createElement("ul"); hints.className = "CodeMirror-hints"; this.selectedHint = 0; var completions = data.list; for (var i = 0; i < completions.length; ++i) { var elt = hints.appendChild(document.createElement("li")), cur = completions[i]; var className = "CodeMirror-hint" + (i ? "" : " CodeMirror-hint-active"); if (cur.className != null) className = cur.className + " " + className; elt.className = className; if (cur.render) cur.render(elt, data, cur); else elt.appendChild(document.createTextNode(cur.displayText || getText(cur))); elt.hintId = i; } var pos = cm.cursorCoords(options.alignWithWord !== false ? data.from : null); var left = pos.left, top = pos.bottom, below = true; hints.style.left = left + "px"; hints.style.top = top + "px"; // If we're at the edge of the screen, then we want the menu to appear on the left of the cursor. var winW = window.innerWidth || Math.max(document.body.offsetWidth, document.documentElement.offsetWidth); var winH = window.innerHeight || Math.max(document.body.offsetHeight, document.documentElement.offsetHeight); (options.container || document.body).appendChild(hints); var box = hints.getBoundingClientRect(); var overlapX = box.right - winW, overlapY = box.bottom - winH; if (overlapX > 0) { if (box.right - box.left > winW) { hints.style.width = (winW - 5) + "px"; overlapX -= (box.right - box.left) - winW; } hints.style.left = (left = pos.left - overlapX) + "px"; } if (overlapY > 0) { var height = box.bottom - box.top; if (box.top - (pos.bottom - pos.top) - height > 0) { overlapY = height + (pos.bottom - pos.top); below = false; } else if (height > winH) { hints.style.height = (winH - 5) + "px"; overlapY -= height - winH; } hints.style.top = (top = pos.bottom - overlapY) + "px"; } cm.addKeyMap(this.keyMap = buildKeyMap(options, { moveFocus: function(n, avoidWrap) { widget.changeActive(widget.selectedHint + n, avoidWrap); }, setFocus: function(n) { widget.changeActive(n); }, menuSize: function() { return widget.screenAmount(); }, length: completions.length, close: function() { completion.close(); }, pick: function() { widget.pick(); } })); if (options.closeOnUnfocus !== false) { var closingOnBlur; cm.on("blur", this.onBlur = function() { closingOnBlur = setTimeout(function() { completion.close(); }, 100); }); cm.on("focus", this.onFocus = function() { clearTimeout(closingOnBlur); }); } var startScroll = cm.getScrollInfo(); cm.on("scroll", this.onScroll = function() { var curScroll = cm.getScrollInfo(), editor = cm.getWrapperElement().getBoundingClientRect(); var newTop = top + startScroll.top - curScroll.top; var point = newTop - (window.pageYOffset || (document.documentElement || document.body).scrollTop); if (!below) point += hints.offsetHeight; if (point <= editor.top || point >= editor.bottom) return completion.close(); hints.style.top = newTop + "px"; hints.style.left = (left + startScroll.left - curScroll.left) + "px"; }); CodeMirror.on(hints, "dblclick", function(e) { var t = e.target || e.srcElement; if (t.hintId != null) {widget.changeActive(t.hintId); widget.pick();} }); CodeMirror.on(hints, "click", function(e) { var t = e.target || e.srcElement; if (t.hintId != null) widget.changeActive(t.hintId); }); CodeMirror.on(hints, "mousedown", function() { setTimeout(function(){cm.focus();}, 20); }); CodeMirror.signal(data, "select", completions[0], hints.firstChild); return true; } Widget.prototype = { close: function() { if (this.completion.widget != this) return; this.completion.widget = null; this.hints.parentNode.removeChild(this.hints); this.completion.cm.removeKeyMap(this.keyMap); var cm = this.completion.cm; if (this.completion.options.closeOnUnfocus !== false) { cm.off("blur", this.onBlur); cm.off("focus", this.onFocus); } cm.off("scroll", this.onScroll); }, pick: function() { this.completion.pick(this.data, this.selectedHint); }, changeActive: function(i, avoidWrap) { if (i >= this.data.list.length) i = avoidWrap ? this.data.list.length - 1 : 0; else if (i < 0) i = avoidWrap ? 0 : this.data.list.length - 1; if (this.selectedHint == i) return; var node = this.hints.childNodes[this.selectedHint]; node.className = node.className.replace(" CodeMirror-hint-active", ""); node = this.hints.childNodes[this.selectedHint = i]; node.className += " CodeMirror-hint-active"; if (node.offsetTop < this.hints.scrollTop) this.hints.scrollTop = node.offsetTop - 3; else if (node.offsetTop + node.offsetHeight > this.hints.scrollTop + this.hints.clientHeight) this.hints.scrollTop = node.offsetTop + node.offsetHeight - this.hints.clientHeight + 3; CodeMirror.signal(this.data, "select", this.data.list[this.selectedHint], node); }, screenAmount: function() { return Math.floor(this.hints.clientHeight / this.hints.firstChild.offsetHeight) || 1; } }; })(); assets/lib/codemirror/addon/hint/javascript-hint.js000066600000013525152141651160016470 0ustar00(function () { var Pos = CodeMirror.Pos; function forEach(arr, f) { for (var i = 0, e = arr.length; i < e; ++i) f(arr[i]); } function arrayContains(arr, item) { if (!Array.prototype.indexOf) { var i = arr.length; while (i--) { if (arr[i] === item) { return true; } } return false; } return arr.indexOf(item) != -1; } function scriptHint(editor, keywords, getToken, options) { // Find the token at the cursor var cur = editor.getCursor(), token = getToken(editor, cur), tprop = token; token.state = CodeMirror.innerMode(editor.getMode(), token.state).state; // If it's not a 'word-style' token, ignore the token. if (!/^[\w$_]*$/.test(token.string)) { token = tprop = {start: cur.ch, end: cur.ch, string: "", state: token.state, type: token.string == "." ? "property" : null}; } // If it is a property, find out what it is a property of. while (tprop.type == "property") { tprop = getToken(editor, Pos(cur.line, tprop.start)); if (tprop.string != ".") return; tprop = getToken(editor, Pos(cur.line, tprop.start)); if (tprop.string == ')') { var level = 1; do { tprop = getToken(editor, Pos(cur.line, tprop.start)); switch (tprop.string) { case ')': level++; break; case '(': level--; break; default: break; } } while (level > 0); tprop = getToken(editor, Pos(cur.line, tprop.start)); if (tprop.type.indexOf("variable") === 0) tprop.type = "function"; else return; // no clue } if (!context) var context = []; context.push(tprop); } return {list: getCompletions(token, context, keywords, options), from: Pos(cur.line, token.start), to: Pos(cur.line, token.end)}; } function javascriptHint(editor, options) { return scriptHint(editor, javascriptKeywords, function (e, cur) {return e.getTokenAt(cur);}, options); }; CodeMirror.javascriptHint = javascriptHint; // deprecated CodeMirror.registerHelper("hint", "javascript", javascriptHint); function getCoffeeScriptToken(editor, cur) { // This getToken, it is for coffeescript, imitates the behavior of // getTokenAt method in javascript.js, that is, returning "property" // type and treat "." as indepenent token. var token = editor.getTokenAt(cur); if (cur.ch == token.start + 1 && token.string.charAt(0) == '.') { token.end = token.start; token.string = '.'; token.type = "property"; } else if (/^\.[\w$_]*$/.test(token.string)) { token.type = "property"; token.start++; token.string = token.string.replace(/\./, ''); } return token; } function coffeescriptHint(editor, options) { return scriptHint(editor, coffeescriptKeywords, getCoffeeScriptToken, options); } CodeMirror.coffeescriptHint = coffeescriptHint; // deprecated CodeMirror.registerHelper("hint", "coffeescript", coffeescriptHint); var stringProps = ("charAt charCodeAt indexOf lastIndexOf substring substr slice trim trimLeft trimRight " + "toUpperCase toLowerCase split concat match replace search").split(" "); var arrayProps = ("length concat join splice push pop shift unshift slice reverse sort indexOf " + "lastIndexOf every some filter forEach map reduce reduceRight ").split(" "); var funcProps = "prototype apply call bind".split(" "); var javascriptKeywords = ("break case catch continue debugger default delete do else false finally for function " + "if in instanceof new null return switch throw true try typeof var void while with").split(" "); var coffeescriptKeywords = ("and break catch class continue delete do else extends false finally for " + "if in instanceof isnt new no not null of off on or return switch then throw true try typeof until void while with yes").split(" "); function getCompletions(token, context, keywords, options) { var found = [], start = token.string; function maybeAdd(str) { if (str.indexOf(start) == 0 && !arrayContains(found, str)) found.push(str); } function gatherCompletions(obj) { if (typeof obj == "string") forEach(stringProps, maybeAdd); else if (obj instanceof Array) forEach(arrayProps, maybeAdd); else if (obj instanceof Function) forEach(funcProps, maybeAdd); for (var name in obj) maybeAdd(name); } if (context) { // If this is a property, see if it belongs to some object we can // find in the current environment. var obj = context.pop(), base; if (obj.type.indexOf("variable") === 0) { if (options && options.additionalContext) base = options.additionalContext[obj.string]; base = base || window[obj.string]; } else if (obj.type == "string") { base = ""; } else if (obj.type == "atom") { base = 1; } else if (obj.type == "function") { if (window.jQuery != null && (obj.string == '$' || obj.string == 'jQuery') && (typeof window.jQuery == 'function')) base = window.jQuery(); else if (window._ != null && (obj.string == '_') && (typeof window._ == 'function')) base = window._(); } while (base != null && context.length) base = base[context.pop().string]; if (base != null) gatherCompletions(base); } else { // If not, just look in the window object and any local scope // (reading into JS mode internals to get at the local and global variables) for (var v = token.state.localVars; v; v = v.next) maybeAdd(v.name); for (var v = token.state.globalVars; v; v = v.next) maybeAdd(v.name); gatherCompletions(window); forEach(keywords, maybeAdd); } return found; } })(); assets/lib/codemirror/addon/hint/python-hint.js000066600000006625152141651160015646 0ustar00(function () { function forEach(arr, f) { for (var i = 0, e = arr.length; i < e; ++i) f(arr[i]); } function arrayContains(arr, item) { if (!Array.prototype.indexOf) { var i = arr.length; while (i--) { if (arr[i] === item) { return true; } } return false; } return arr.indexOf(item) != -1; } function scriptHint(editor, _keywords, getToken) { // Find the token at the cursor var cur = editor.getCursor(), token = getToken(editor, cur), tprop = token; // If it's not a 'word-style' token, ignore the token. if (!/^[\w$_]*$/.test(token.string)) { token = tprop = {start: cur.ch, end: cur.ch, string: "", state: token.state, className: token.string == ":" ? "python-type" : null}; } if (!context) var context = []; context.push(tprop); var completionList = getCompletions(token, context); completionList = completionList.sort(); //prevent autocomplete for last word, instead show dropdown with one word if(completionList.length == 1) { completionList.push(" "); } return {list: completionList, from: CodeMirror.Pos(cur.line, token.start), to: CodeMirror.Pos(cur.line, token.end)}; } function pythonHint(editor) { return scriptHint(editor, pythonKeywordsU, function (e, cur) {return e.getTokenAt(cur);}); } CodeMirror.pythonHint = pythonHint; // deprecated CodeMirror.registerHelper("hint", "python", pythonHint); var pythonKeywords = "and del from not while as elif global or with assert else if pass yield" + "break except import print class exec in raise continue finally is return def for lambda try"; var pythonKeywordsL = pythonKeywords.split(" "); var pythonKeywordsU = pythonKeywords.toUpperCase().split(" "); var pythonBuiltins = "abs divmod input open staticmethod all enumerate int ord str " + "any eval isinstance pow sum basestring execfile issubclass print super" + "bin file iter property tuple bool filter len range type" + "bytearray float list raw_input unichr callable format locals reduce unicode" + "chr frozenset long reload vars classmethod getattr map repr xrange" + "cmp globals max reversed zip compile hasattr memoryview round __import__" + "complex hash min set apply delattr help next setattr buffer" + "dict hex object slice coerce dir id oct sorted intern "; var pythonBuiltinsL = pythonBuiltins.split(" ").join("() ").split(" "); var pythonBuiltinsU = pythonBuiltins.toUpperCase().split(" ").join("() ").split(" "); function getCompletions(token, context) { var found = [], start = token.string; function maybeAdd(str) { if (str.indexOf(start) == 0 && !arrayContains(found, str)) found.push(str); } function gatherCompletions(_obj) { forEach(pythonBuiltinsL, maybeAdd); forEach(pythonBuiltinsU, maybeAdd); forEach(pythonKeywordsL, maybeAdd); forEach(pythonKeywordsU, maybeAdd); } if (context) { // If this is a property, see if it belongs to some object we can // find in the current environment. var obj = context.pop(), base; if (obj.type == "variable") base = obj.string; else if(obj.type == "variable-3") base = ":" + obj.string; while (base != null && context.length) base = base[context.pop().string]; if (base != null) gatherCompletions(base); } return found; } })(); assets/lib/codemirror/addon/hint/css-hint.js000066600000002627152141651160015113 0ustar00(function () { "use strict"; function getHints(cm) { var cur = cm.getCursor(), token = cm.getTokenAt(cur); var inner = CodeMirror.innerMode(cm.getMode(), token.state); if (inner.mode.name != "css") return; // If it's not a 'word-style' token, ignore the token. if (!/^[\w$_-]*$/.test(token.string)) { token = { start: cur.ch, end: cur.ch, string: "", state: token.state, type: null }; var stack = token.state.stack; var lastToken = stack && stack.length > 0 ? stack[stack.length - 1] : ""; if (token.string == ":" || lastToken.indexOf("property") == 0) token.type = "variable"; else if (token.string == "{" || lastToken.indexOf("rule") == 0) token.type = "property"; } if (!token.type) return; var spec = CodeMirror.resolveMode("text/css"); var keywords = null; if (token.type.indexOf("property") == 0) keywords = spec.propertyKeywords; else if (token.type.indexOf("variable") == 0) keywords = spec.valueKeywords; if (!keywords) return; var result = []; for (var name in keywords) { if (name.indexOf(token.string) == 0 /* > -1 */) result.push(name); } return { list: result, from: CodeMirror.Pos(cur.line, token.start), to: CodeMirror.Pos(cur.line, token.end) }; } CodeMirror.registerHelper("hint", "css", getHints); })(); assets/lib/codemirror/addon/hint/xml-hint.js000066600000005340152141651160015116 0ustar00(function() { "use strict"; var Pos = CodeMirror.Pos; function getHints(cm, options) { var tags = options && options.schemaInfo; var quote = (options && options.quoteChar) || '"'; if (!tags) return; var cur = cm.getCursor(), token = cm.getTokenAt(cur); var inner = CodeMirror.innerMode(cm.getMode(), token.state); if (inner.mode.name != "xml") return; var result = [], replaceToken = false, prefix; var isTag = token.string.charAt(0) == "<"; if (!inner.state.tagName || isTag) { // Tag completion if (isTag) { prefix = token.string.slice(1); replaceToken = true; } var cx = inner.state.context, curTag = cx && tags[cx.tagName]; var childList = cx ? curTag && curTag.children : tags["!top"]; if (childList) { for (var i = 0; i < childList.length; ++i) if (!prefix || childList[i].indexOf(prefix) == 0) result.push("<" + childList[i]); } else { for (var name in tags) if (tags.hasOwnProperty(name) && name != "!top" && (!prefix || name.indexOf(prefix) == 0)) result.push("<" + name); } if (cx && (!prefix || ("/" + cx.tagName).indexOf(prefix) == 0)) result.push(""); } else { // Attribute completion var curTag = tags[inner.state.tagName], attrs = curTag && curTag.attrs; if (!attrs) return; if (token.type == "string" || token.string == "=") { // A value var before = cm.getRange(Pos(cur.line, Math.max(0, cur.ch - 60)), Pos(cur.line, token.type == "string" ? token.start : token.end)); var atName = before.match(/([^\s\u00a0=<>\"\']+)=$/), atValues; if (!atName || !attrs.hasOwnProperty(atName[1]) || !(atValues = attrs[atName[1]])) return; if (token.type == "string") { prefix = token.string; if (/['"]/.test(token.string.charAt(0))) { quote = token.string.charAt(0); prefix = token.string.slice(1); } replaceToken = true; } for (var i = 0; i < atValues.length; ++i) if (!prefix || atValues[i].indexOf(prefix) == 0) result.push(quote + atValues[i] + quote); } else { // An attribute name if (token.type == "attribute") { prefix = token.string; replaceToken = true; } for (var attr in attrs) if (attrs.hasOwnProperty(attr) && (!prefix || attr.indexOf(prefix) == 0)) result.push(attr); } } return { list: result, from: replaceToken ? Pos(cur.line, token.start) : cur, to: replaceToken ? Pos(cur.line, token.end) : cur }; } CodeMirror.xmlHint = getHints; // deprecated CodeMirror.registerHelper("hint", "xml", getHints); })(); assets/lib/codemirror/addon/hint/pig-hint.js000066600000011744152141651160015102 0ustar00(function () { function forEach(arr, f) { for (var i = 0, e = arr.length; i < e; ++i) f(arr[i]); } function arrayContains(arr, item) { if (!Array.prototype.indexOf) { var i = arr.length; while (i--) { if (arr[i] === item) { return true; } } return false; } return arr.indexOf(item) != -1; } function scriptHint(editor, _keywords, getToken) { // Find the token at the cursor var cur = editor.getCursor(), token = getToken(editor, cur), tprop = token; // If it's not a 'word-style' token, ignore the token. if (!/^[\w$_]*$/.test(token.string)) { token = tprop = {start: cur.ch, end: cur.ch, string: "", state: token.state, className: token.string == ":" ? "pig-type" : null}; } if (!context) var context = []; context.push(tprop); var completionList = getCompletions(token, context); completionList = completionList.sort(); //prevent autocomplete for last word, instead show dropdown with one word if(completionList.length == 1) { completionList.push(" "); } return {list: completionList, from: CodeMirror.Pos(cur.line, token.start), to: CodeMirror.Pos(cur.line, token.end)}; } function pigHint(editor) { return scriptHint(editor, pigKeywordsU, function (e, cur) {return e.getTokenAt(cur);}); } CodeMirror.pigHint = pigHint; // deprecated CodeMirror.registerHelper("hint", "pig", hinter); var pigKeywords = "VOID IMPORT RETURNS DEFINE LOAD FILTER FOREACH ORDER CUBE DISTINCT COGROUP " + "JOIN CROSS UNION SPLIT INTO IF OTHERWISE ALL AS BY USING INNER OUTER ONSCHEMA PARALLEL " + "PARTITION GROUP AND OR NOT GENERATE FLATTEN ASC DESC IS STREAM THROUGH STORE MAPREDUCE " + "SHIP CACHE INPUT OUTPUT STDERROR STDIN STDOUT LIMIT SAMPLE LEFT RIGHT FULL EQ GT LT GTE LTE " + "NEQ MATCHES TRUE FALSE"; var pigKeywordsU = pigKeywords.split(" "); var pigKeywordsL = pigKeywords.toLowerCase().split(" "); var pigTypes = "BOOLEAN INT LONG FLOAT DOUBLE CHARARRAY BYTEARRAY BAG TUPLE MAP"; var pigTypesU = pigTypes.split(" "); var pigTypesL = pigTypes.toLowerCase().split(" "); var pigBuiltins = "ABS ACOS ARITY ASIN ATAN AVG BAGSIZE BINSTORAGE BLOOM BUILDBLOOM CBRT CEIL " + "CONCAT COR COS COSH COUNT COUNT_STAR COV CONSTANTSIZE CUBEDIMENSIONS DIFF DISTINCT DOUBLEABS " + "DOUBLEAVG DOUBLEBASE DOUBLEMAX DOUBLEMIN DOUBLEROUND DOUBLESUM EXP FLOOR FLOATABS FLOATAVG " + "FLOATMAX FLOATMIN FLOATROUND FLOATSUM GENERICINVOKER INDEXOF INTABS INTAVG INTMAX INTMIN " + "INTSUM INVOKEFORDOUBLE INVOKEFORFLOAT INVOKEFORINT INVOKEFORLONG INVOKEFORSTRING INVOKER " + "ISEMPTY JSONLOADER JSONMETADATA JSONSTORAGE LAST_INDEX_OF LCFIRST LOG LOG10 LOWER LONGABS " + "LONGAVG LONGMAX LONGMIN LONGSUM MAX MIN MAPSIZE MONITOREDUDF NONDETERMINISTIC OUTPUTSCHEMA " + "PIGSTORAGE PIGSTREAMING RANDOM REGEX_EXTRACT REGEX_EXTRACT_ALL REPLACE ROUND SIN SINH SIZE " + "SQRT STRSPLIT SUBSTRING SUM STRINGCONCAT STRINGMAX STRINGMIN STRINGSIZE TAN TANH TOBAG " + "TOKENIZE TOMAP TOP TOTUPLE TRIM TEXTLOADER TUPLESIZE UCFIRST UPPER UTF8STORAGECONVERTER"; var pigBuiltinsU = pigBuiltins.split(" ").join("() ").split(" "); var pigBuiltinsL = pigBuiltins.toLowerCase().split(" ").join("() ").split(" "); var pigBuiltinsC = ("BagSize BinStorage Bloom BuildBloom ConstantSize CubeDimensions DoubleAbs " + "DoubleAvg DoubleBase DoubleMax DoubleMin DoubleRound DoubleSum FloatAbs FloatAvg FloatMax " + "FloatMin FloatRound FloatSum GenericInvoker IntAbs IntAvg IntMax IntMin IntSum " + "InvokeForDouble InvokeForFloat InvokeForInt InvokeForLong InvokeForString Invoker " + "IsEmpty JsonLoader JsonMetadata JsonStorage LongAbs LongAvg LongMax LongMin LongSum MapSize " + "MonitoredUDF Nondeterministic OutputSchema PigStorage PigStreaming StringConcat StringMax " + "StringMin StringSize TextLoader TupleSize Utf8StorageConverter").split(" ").join("() ").split(" "); function getCompletions(token, context) { var found = [], start = token.string; function maybeAdd(str) { if (str.indexOf(start) == 0 && !arrayContains(found, str)) found.push(str); } function gatherCompletions(obj) { if(obj == ":") { forEach(pigTypesL, maybeAdd); } else { forEach(pigBuiltinsU, maybeAdd); forEach(pigBuiltinsL, maybeAdd); forEach(pigBuiltinsC, maybeAdd); forEach(pigTypesU, maybeAdd); forEach(pigTypesL, maybeAdd); forEach(pigKeywordsU, maybeAdd); forEach(pigKeywordsL, maybeAdd); } } if (context) { // If this is a property, see if it belongs to some object we can // find in the current environment. var obj = context.pop(), base; if (obj.type == "variable") base = obj.string; else if(obj.type == "variable-3") base = ":" + obj.string; while (base != null && context.length) base = base[context.pop().string]; if (base != null) gatherCompletions(base); } return found; } })(); assets/lib/codemirror/LICENSE000066600000002106152141651160011773 0ustar00Copyright (C) 2013 by Marijn Haverbeke and others Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. assets/lib/codemirror/README.md000066600000001225152141651160012246 0ustar00# CodeMirror [![Build Status](https://secure.travis-ci.org/marijnh/CodeMirror.png?branch=master)](http://travis-ci.org/marijnh/CodeMirror) [![NPM version](https://badge.fury.io/js/codemirror.png)](http://badge.fury.io/js/codemirror) CodeMirror is a JavaScript component that provides a code editor in the browser. When a mode is available for the language you are coding in, it will color your code, and optionally help with indentation. The project page is http://codemirror.net The manual is at http://codemirror.net/doc/manual.html The contributing guidelines are in [CONTRIBUTING.md](https://github.com/marijnh/CodeMirror/blob/master/CONTRIBUTING.md) assets/lib/class_notices.php000066600000024076152141651160012175 0ustar00notificationId = $notificationId; $this->notificationMessage = $notificationMessage; $this->notificationClass = $notificationClass; if( !empty( $startDate ) && time() < strtotime( $startDate ) ) return; if( !empty( $endDate ) && time() > strtotime( $endDate ) ) return; add_action( 'admin_notices', array( $this, 'add_admin_notice' ) ); add_action( 'admin_init', array( $this, 'dismiss_notification' ) ); } // Display a notice that can be dismissed in case the serial number is inactive function add_admin_notice() { global $current_user ; global $pagenow; $user_id = $current_user->ID; do_action( $this->notificationId.'_before_notification_displayed', $current_user, $pagenow ); if ( current_user_can( 'manage_options' ) ){ // Check that the user hasn't already clicked to ignore the message if ( ! get_user_meta($user_id, $this->notificationId.'_dismiss_notification' ) ) { echo $finalMessage = apply_filters($this->notificationId.'_notification_message','
            '.$this->notificationMessage.'
            ', $this->notificationMessage); } do_action( $this->notificationId.'_notification_displayed', $current_user, $pagenow ); } do_action( $this->notificationId.'_after_notification_displayed', $current_user, $pagenow ); } function dismiss_notification() { global $current_user; $user_id = $current_user->ID; do_action( $this->notificationId.'_before_notification_dismissed', $current_user ); // If user clicks to ignore the notice, add that to their user meta if ( isset( $_GET[$this->notificationId.'_dismiss_notification']) && '0' == $_GET[$this->notificationId.'_dismiss_notification'] ) add_user_meta( $user_id, $this->notificationId.'_dismiss_notification', 'true', true ); do_action( $this->notificationId.'_after_notification_dismissed', $current_user ); } } Class WPPB_Plugin_Notifications { public $notifications = array(); private static $_instance = null; private $prefix = 'wppb'; private $menu_slug = 'profile-builder'; public $pluginPages = array( 'profile-builder-', 'manage-fields', 'wppb-', 'admin-email-customizer', 'user-email-customizer' ); protected function __construct() { add_action( 'admin_init', array( $this, 'dismiss_admin_notifications' ), 200 ); add_action( 'admin_init', array( $this, 'add_admin_menu_notification_counts' ), 1000 ); add_action( 'admin_init', array( $this, 'remove_other_plugin_notices' ), 1001 ); } function dismiss_admin_notifications() { if( ! empty( $_GET[$this->prefix.'_dismiss_admin_notification'] ) ) { $notifications = self::get_instance(); $notifications->dismiss_notification( sanitize_text_field( $_GET[$this->prefix.'_dismiss_admin_notification'] ) ); } } function add_admin_menu_notification_counts() { global $menu, $submenu; $notifications = WPPB_Plugin_Notifications::get_instance(); if( ! empty( $menu ) ) { foreach( $menu as $menu_position => $menu_data ) { if( ! empty( $menu_data[2] ) && $menu_data[2] == $this->menu_slug ) { $menu_count = $notifications->get_count_in_menu(); if( ! empty( $menu_count ) ) $menu[$menu_position][0] .= '' . $menu_count . ''; } } } if( ! empty( $submenu[$this->menu_slug] ) ) { foreach( $submenu[$this->menu_slug] as $menu_position => $menu_data ) { $menu_count = $notifications->get_count_in_submenu( $menu_data[2] ); if( ! empty( $menu_count ) ) $submenu[$this->menu_slug][$menu_position][0] .= '' . $menu_count . ''; } } } /* handle other plugin notifications on our plugin pages */ function remove_other_plugin_notices(){ //remove all notifications from start page if( isset( $_GET['page'] ) && $_GET['page'] == 'profile-builder-basic-info' ) { remove_all_actions('admin_notices'); } /* remove all other plugin notifications except our own from the rest of the PB pages */ if( $this->is_plugin_page() ) { global $wp_filter; if (!empty($wp_filter['admin_notices'])) { if (!empty($wp_filter['admin_notices']->callbacks)) { foreach ($wp_filter['admin_notices']->callbacks as $priority => $callbacks_level) { if (!empty($callbacks_level)) { foreach ($callbacks_level as $key => $callback) { if( is_array( $callback['function'] ) ){ if( is_object($callback['function'][0])) {//object here if (strpos(get_class($callback['function'][0]), 'PMS_') !== 0 && strpos(get_class($callback['function'][0]), 'WPPB_') !== 0 && strpos(get_class($callback['function'][0]), 'TRP_') !== 0 && strpos(get_class($callback['function'][0]), 'WCK_') !== 0) { unset($wp_filter['admin_notices']->callbacks[$priority][$key]);//unset everything that doesn't come from our plugins } } } else if( is_string( $callback['function'] ) ){//it should be a function name if (strpos($callback['function'], 'pms_') !== 0 && strpos($callback['function'], 'wppb_') !== 0 && strpos($callback['function'], 'trp_') !== 0 && strpos($callback['function'], 'wck_') !== 0) { unset($wp_filter['admin_notices']->callbacks[$priority][$key]);//unset everything that doesn't come from our plugins } } } } } } } } } /** * * */ public static function get_instance() { if( is_null( self::$_instance ) ) self::$_instance = new WPPB_Plugin_Notifications(); return self::$_instance; } /** * * */ public function add_notification( $notification_id = '', $notification_message = '', $notification_class = 'update-nag', $count_in_menu = true, $count_in_submenu = array() ) { if( empty( $notification_id ) ) return; if( empty( $notification_message ) ) return; global $current_user; if( get_user_meta( $current_user->ID, $notification_id . '_dismiss_notification' ) ) return; $this->notifications[$notification_id] = array( 'id' => $notification_id, 'message' => $notification_message, 'class' => $notification_class, 'count_in_menu' => $count_in_menu, 'count_in_submenu' => $count_in_submenu ); if( $this->is_plugin_page() ) { new WPPB_Add_General_Notices( $notification_id, $notification_message, $notification_class ); } } /** * * */ public function get_notifications() { return $this->notifications; } /** * * */ public function get_notification( $notification_id = '' ) { if( empty( $notification_id ) ) return null; $notifications = $this->get_notifications(); if( ! empty( $notifications[$notification_id] ) ) return $notifications[$notification_id]; else return null; } /** * * */ public function dismiss_notification( $notification_id = '' ) { global $current_user; add_user_meta( $current_user->ID, $notification_id . '_dismiss_notification', 'true', true ); } /** * * */ public function get_count_in_menu() { $count = 0; foreach( $this->notifications as $notification ) { if( ! empty( $notification['count_in_menu'] ) ) $count++; } return $count; } /** * * */ public function get_count_in_submenu( $submenu = '' ) { if( empty( $submenu ) ) return 0; $count = 0; foreach( $this->notifications as $notification ) { if( empty( $notification['count_in_submenu'] ) ) continue; if( ! is_array( $notification['count_in_submenu'] ) ) continue; if( ! in_array( $submenu, $notification['count_in_submenu'] ) ) continue; $count++; } return $count; } /** * * */ public function is_plugin_page() { if( !empty( $this->pluginPages ) ){ foreach ( $this->pluginPages as $pluginPage ){ if( ! empty( $_GET['page'] ) && false !== strpos( $_GET['page'], $pluginPage ) ) return true; if( ! empty( $_GET['post_type'] ) && false !== strpos( $_GET['post_type'], $pluginPage ) ) return true; if( ! empty( $_GET['post'] ) && false !== strpos( get_post_type( (int)$_GET['post'] ), $pluginPage ) ) return true; } } return false; } }assets/lib/Mustache/Loader.php000066600000001057152141651160012315 0ustar00pragmas = array(); $this->sections = array(); $this->source = $source; $this->indentNextLine = true; $this->customEscape = $customEscape; $this->entityFlags = $entityFlags; $this->charset = $charset; $this->strictCallables = $strictCallables; return $this->writeCode($tree, $name); } /** * Helper function for walking the Mustache token parse tree. * * @throws Mustache_Exception_SyntaxException upon encountering unknown token types. * * @param array $tree Parse tree of Mustache tokens * @param int $level (default: 0) * * @return string Generated PHP source code */ private function walk(array $tree, $level = 0) { $code = ''; $level++; foreach ($tree as $node) { switch ($node[Mustache_Tokenizer::TYPE]) { case Mustache_Tokenizer::T_PRAGMA: $this->pragmas[$node[Mustache_Tokenizer::NAME]] = true; break; case Mustache_Tokenizer::T_SECTION: $code .= $this->section( $node[Mustache_Tokenizer::NODES], $node[Mustache_Tokenizer::NAME], $node[Mustache_Tokenizer::INDEX], $node[Mustache_Tokenizer::END], $node[Mustache_Tokenizer::OTAG], $node[Mustache_Tokenizer::CTAG], $level ); break; case Mustache_Tokenizer::T_INVERTED: $code .= $this->invertedSection( $node[Mustache_Tokenizer::NODES], $node[Mustache_Tokenizer::NAME], $level ); break; case Mustache_Tokenizer::T_PARTIAL: case Mustache_Tokenizer::T_PARTIAL_2: $code .= $this->partial( $node[Mustache_Tokenizer::NAME], isset($node[Mustache_Tokenizer::INDENT]) ? $node[Mustache_Tokenizer::INDENT] : '', $level ); break; case Mustache_Tokenizer::T_UNESCAPED: case Mustache_Tokenizer::T_UNESCAPED_2: $code .= $this->variable($node[Mustache_Tokenizer::NAME], false, $level); break; case Mustache_Tokenizer::T_COMMENT: break; case Mustache_Tokenizer::T_ESCAPED: $code .= $this->variable($node[Mustache_Tokenizer::NAME], true, $level); break; case Mustache_Tokenizer::T_TEXT: $code .= $this->text($node[Mustache_Tokenizer::VALUE], $level); break; default: throw new Mustache_Exception_SyntaxException(sprintf('Unknown token type: %s', $node[Mustache_Tokenizer::TYPE]), $node); } } return $code; } const KLASS = 'lambdaHelper = new Mustache_LambdaHelper($this->mustache, $context); $buffer = \'\'; %s return $buffer; } %s }'; const KLASS_NO_LAMBDAS = 'walk($tree); $sections = implode("\n", $this->sections); $klass = empty($this->sections) ? self::KLASS_NO_LAMBDAS : self::KLASS; $callable = $this->strictCallables ? $this->prepare(self::STRICT_CALLABLE) : ''; return sprintf($this->prepare($klass, 0, false, true), $name, $callable, $code, $sections); } const SECTION_CALL = ' // %s section $buffer .= $this->section%s($context, $indent, $context->%s(%s)); '; const SECTION = ' private function section%s(Mustache_Context $context, $indent, $value) { $buffer = \'\'; if (%s) { $source = %s; $buffer .= $this->mustache ->loadLambda((string) call_user_func($value, $source, $this->lambdaHelper)%s) ->renderInternal($context); } elseif (!empty($value)) { $values = $this->isIterable($value) ? $value : array($value); foreach ($values as $value) { $context->push($value);%s $context->pop(); } } return $buffer; }'; /** * Generate Mustache Template section PHP source. * * @param array $nodes Array of child tokens * @param string $id Section name * @param int $start Section start offset * @param int $end Section end offset * @param string $otag Current Mustache opening tag * @param string $ctag Current Mustache closing tag * @param int $level * * @return string Generated section PHP source code */ private function section($nodes, $id, $start, $end, $otag, $ctag, $level) { $method = $this->getFindMethod($id); $id = var_export($id, true); $source = var_export(substr($this->source, $start, $end - $start), true); $callable = $this->getCallable(); if ($otag !== '{{' || $ctag !== '}}') { $delims = ', '.var_export(sprintf('{{= %s %s =}}', $otag, $ctag), true); } else { $delims = ''; } $key = ucfirst(md5($delims."\n".$source)); if (!isset($this->sections[$key])) { $this->sections[$key] = sprintf($this->prepare(self::SECTION), $key, $callable, $source, $delims, $this->walk($nodes, 2)); } return sprintf($this->prepare(self::SECTION_CALL, $level), $id, $key, $method, $id); } const INVERTED_SECTION = ' // %s inverted section $value = $context->%s(%s); if (empty($value)) { %s }'; /** * Generate Mustache Template inverted section PHP source. * * @param array $nodes Array of child tokens * @param string $id Section name * @param int $level * * @return string Generated inverted section PHP source code */ private function invertedSection($nodes, $id, $level) { $method = $this->getFindMethod($id); $id = var_export($id, true); return sprintf($this->prepare(self::INVERTED_SECTION, $level), $id, $method, $id, $this->walk($nodes, $level)); } const PARTIAL = ' if ($partial = $this->mustache->loadPartial(%s)) { $buffer .= $partial->renderInternal($context, %s); } '; /** * Generate Mustache Template partial call PHP source. * * @param string $id Partial name * @param string $indent Whitespace indent to apply to partial * @param int $level * * @return string Generated partial call PHP source code */ private function partial($id, $indent, $level) { return sprintf( $this->prepare(self::PARTIAL, $level), var_export($id, true), var_export($indent, true) ); } const VARIABLE = ' $value = $this->resolveValue($context->%s(%s), $context, $indent);%s $buffer .= %s%s; '; /** * Generate Mustache Template variable interpolation PHP source. * * @param string $id Variable name * @param boolean $escape Escape the variable value for output? * @param int $level * * @return string Generated variable interpolation PHP source */ private function variable($id, $escape, $level) { $filters = ''; if (isset($this->pragmas[Mustache_Engine::PRAGMA_FILTERS])) { list($id, $filters) = $this->getFilters($id, $level); } $method = $this->getFindMethod($id); $id = ($method !== 'last') ? var_export($id, true) : ''; $value = $escape ? $this->getEscape() : '$value'; return sprintf($this->prepare(self::VARIABLE, $level), $method, $id, $filters, $this->flushIndent(), $value); } /** * Generate Mustache Template variable filtering PHP source. * * @param string $id Variable name * @param int $level * * @return string Generated variable filtering PHP source */ private function getFilters($id, $level) { $filters = array_map('trim', explode('|', $id)); $id = array_shift($filters); return array($id, $this->getFilter($filters, $level)); } const FILTER = ' $filter = $context->%s(%s); if (!(%s)) { throw new Mustache_Exception_UnknownFilterException(%s); } $value = call_user_func($filter, $value);%s '; /** * Generate PHP source for a single filter. * * @param array $filters * @param int $level * * @return string Generated filter PHP source */ private function getFilter(array $filters, $level) { if (empty($filters)) { return ''; } $name = array_shift($filters); $method = $this->getFindMethod($name); $filter = ($method !== 'last') ? var_export($name, true) : ''; $callable = $this->getCallable('$filter'); $msg = var_export($name, true); return sprintf($this->prepare(self::FILTER, $level), $method, $filter, $callable, $msg, $this->getFilter($filters, $level)); } const LINE = '$buffer .= "\n";'; const TEXT = '$buffer .= %s%s;'; /** * Generate Mustache Template output Buffer call PHP source. * * @param string $text * @param int $level * * @return string Generated output Buffer call PHP source */ private function text($text, $level) { $indentNextLine = (substr($text, -1) === "\n"); $code = sprintf($this->prepare(self::TEXT, $level), $this->flushIndent(), var_export($text, true)); $this->indentNextLine = $indentNextLine; return $code; } /** * Prepare PHP source code snippet for output. * * @param string $text * @param int $bonus Additional indent level (default: 0) * @param boolean $prependNewline Prepend a newline to the snippet? (default: true) * @param boolean $appendNewline Append a newline to the snippet? (default: false) * * @return string PHP source code snippet */ private function prepare($text, $bonus = 0, $prependNewline = true, $appendNewline = false) { $text = ($prependNewline ? "\n" : '').trim($text); if ($prependNewline) { $bonus++; } if ($appendNewline) { $text .= "\n"; } return preg_replace("/\n( {8})?/", "\n".str_repeat(" ", $bonus * 4), $text); } const DEFAULT_ESCAPE = 'htmlspecialchars(%s, %s, %s)'; const CUSTOM_ESCAPE = 'call_user_func($this->mustache->getEscape(), %s)'; /** * Get the current escaper. * * @param string $value (default: '$value') * * @return string Either a custom callback, or an inline call to `htmlspecialchars` */ private function getEscape($value = '$value') { if ($this->customEscape) { return sprintf(self::CUSTOM_ESCAPE, $value); } else { return sprintf(self::DEFAULT_ESCAPE, $value, var_export($this->entityFlags, true), var_export($this->charset, true)); } } /** * Select the appropriate Context `find` method for a given $id. * * The return value will be one of `find`, `findDot` or `last`. * * @see Mustache_Context::find * @see Mustache_Context::findDot * @see Mustache_Context::last * * @param string $id Variable name * * @return string `find` method name */ private function getFindMethod($id) { if ($id === '.') { return 'last'; } elseif (strpos($id, '.') === false) { return 'find'; } else { return 'findDot'; } } const IS_CALLABLE = '!is_string(%s) && is_callable(%s)'; const STRICT_IS_CALLABLE = 'is_object(%s) && is_callable(%s)'; private function getCallable($variable = '$value') { $tpl = $this->strictCallables ? self::STRICT_IS_CALLABLE : self::IS_CALLABLE; return sprintf($tpl, $variable, $variable); } const LINE_INDENT = '$indent . '; /** * Get the current $indent prefix to write to the buffer. * * @return string "$indent . " or "" */ private function flushIndent() { if (!$this->indentNextLine) { return ''; } $this->indentNextLine = false; return self::LINE_INDENT; } } assets/lib/Mustache/Exception/InvalidArgumentException.php000066600000000635152141651160020016 0ustar00helperName = $helperName; parent::__construct(sprintf('Unknown helper: %s', $helperName)); } public function getHelperName() { return $this->helperName; } } assets/lib/Mustache/Exception/SyntaxException.php000066600000001077152141651160016214 0ustar00token = $token; parent::__construct($msg); } public function getToken() { return $this->token; } } assets/lib/Mustache/Exception/RuntimeException.php000066600000000604152141651160016344 0ustar00templateName = $templateName; parent::__construct(sprintf('Unknown template: %s', $templateName)); } public function getTemplateName() { return $this->templateName; } } assets/lib/Mustache/Exception/UnknownFilterException.php000066600000001207152141651160017526 0ustar00filterName = $filterName; parent::__construct(sprintf('Unknown filter: %s', $filterName)); } public function getFilterName() { return $this->filterName; } } assets/lib/Mustache/Exception/LogicException.php000066600000000576152141651160015766 0ustar00'; const T_PARTIAL_2 = '<'; const T_DELIM_CHANGE = '='; const T_ESCAPED = '_v'; const T_UNESCAPED = '{'; const T_UNESCAPED_2 = '&'; const T_TEXT = '_t'; const T_PRAGMA = '%'; // Valid token types private static $tagTypes = array( self::T_SECTION => true, self::T_INVERTED => true, self::T_END_SECTION => true, self::T_COMMENT => true, self::T_PARTIAL => true, self::T_PARTIAL_2 => true, self::T_DELIM_CHANGE => true, self::T_ESCAPED => true, self::T_UNESCAPED => true, self::T_UNESCAPED_2 => true, self::T_PRAGMA => true, ); // Interpolated tags private static $interpolatedTags = array( self::T_ESCAPED => true, self::T_UNESCAPED => true, self::T_UNESCAPED_2 => true, ); // Token properties const TYPE = 'type'; const NAME = 'name'; const OTAG = 'otag'; const CTAG = 'ctag'; const LINE = 'line'; const INDEX = 'index'; const END = 'end'; const INDENT = 'indent'; const NODES = 'nodes'; const VALUE = 'value'; private $state; private $tagType; private $tag; private $buffer; private $tokens; private $seenTag; private $line; private $otag; private $ctag; /** * Scan and tokenize template source. * * @param string $text Mustache template source to tokenize * @param string $delimiters Optionally, pass initial opening and closing delimiters (default: null) * * @return array Set of Mustache tokens */ public function scan($text, $delimiters = null) { $this->reset(); if ($delimiters = trim($delimiters)) { list($otag, $ctag) = explode(' ', $delimiters); $this->otag = $otag; $this->ctag = $ctag; } $len = strlen($text); for ($i = 0; $i < $len; $i++) { switch ($this->state) { case self::IN_TEXT: if ($this->tagChange($this->otag, $text, $i)) { $i--; $this->flushBuffer(); $this->state = self::IN_TAG_TYPE; } else { $char = substr($text, $i, 1); $this->buffer .= $char; if ($char == "\n") { $this->flushBuffer(); $this->line++; } } break; case self::IN_TAG_TYPE: $i += strlen($this->otag) - 1; $char = substr($text, $i + 1, 1); if (isset(self::$tagTypes[$char])) { $tag = $char; $this->tagType = $tag; } else { $tag = null; $this->tagType = self::T_ESCAPED; } if ($this->tagType === self::T_DELIM_CHANGE) { $i = $this->changeDelimiters($text, $i); $this->state = self::IN_TEXT; } elseif ($this->tagType === self::T_PRAGMA) { $i = $this->addPragma($text, $i); $this->state = self::IN_TEXT; } else { if ($tag !== null) { $i++; } $this->state = self::IN_TAG; } $this->seenTag = $i; break; default: if ($this->tagChange($this->ctag, $text, $i)) { $this->tokens[] = array( self::TYPE => $this->tagType, self::NAME => trim($this->buffer), self::OTAG => $this->otag, self::CTAG => $this->ctag, self::LINE => $this->line, self::INDEX => ($this->tagType == self::T_END_SECTION) ? $this->seenTag - strlen($this->otag) : $i + strlen($this->ctag) ); $this->buffer = ''; $i += strlen($this->ctag) - 1; $this->state = self::IN_TEXT; if ($this->tagType == self::T_UNESCAPED) { if ($this->ctag == '}}') { $i++; } else { // Clean up `{{{ tripleStache }}}` style tokens. $lastName = $this->tokens[count($this->tokens) - 1][self::NAME]; if (substr($lastName, -1) === '}') { $this->tokens[count($this->tokens) - 1][self::NAME] = trim(substr($lastName, 0, -1)); } } } } else { $this->buffer .= substr($text, $i, 1); } break; } } $this->flushBuffer(); return $this->tokens; } /** * Helper function to reset tokenizer internal state. */ private function reset() { $this->state = self::IN_TEXT; $this->tagType = null; $this->tag = null; $this->buffer = ''; $this->tokens = array(); $this->seenTag = false; $this->line = 0; $this->otag = '{{'; $this->ctag = '}}'; } /** * Flush the current buffer to a token. */ private function flushBuffer() { if (!empty($this->buffer)) { $this->tokens[] = array( self::TYPE => self::T_TEXT, self::LINE => $this->line, self::VALUE => $this->buffer ); $this->buffer = ''; } } /** * Change the current Mustache delimiters. Set new `otag` and `ctag` values. * * @param string $text Mustache template source * @param int $index Current tokenizer index * * @return int New index value */ private function changeDelimiters($text, $index) { $startIndex = strpos($text, '=', $index) + 1; $close = '='.$this->ctag; $closeIndex = strpos($text, $close, $index); list($otag, $ctag) = explode(' ', trim(substr($text, $startIndex, $closeIndex - $startIndex))); $this->otag = $otag; $this->ctag = $ctag; $this->tokens[] = array( self::TYPE => self::T_DELIM_CHANGE, self::LINE => $this->line, ); return $closeIndex + strlen($close) - 1; } /** * Add pragma token. * * Pragmas are hoisted to the front of the template, so all pragma tokens * will appear at the front of the token list. * * @param string $text * @param int $index * * @return int New index value */ private function addPragma($text, $index) { $end = strpos($text, $this->ctag, $index); $pragma = trim(substr($text, $index + 2, $end - $index - 2)); // Pragmas are hoisted to the front of the template. array_unshift($this->tokens, array( self::TYPE => self::T_PRAGMA, self::NAME => $pragma, self::LINE => 0, )); return $end + strlen($this->ctag) - 1; } /** * Test whether it's time to change tags. * * @param string $tag Current tag name * @param string $text Mustache template source * @param int $index Current tokenizer index * * @return boolean True if this is a closing section tag */ private function tagChange($tag, $text, $index) { return substr($text, $index, strlen($tag)) === $tag; } } assets/lib/Mustache/HelperCollection.php000066600000007250152141651160014343 0ustar00 $helper` pairs. * * @throws Mustache_Exception_InvalidArgumentException if the $helpers argument isn't an array or Traversable * * @param array|Traversable $helpers (default: null) */ public function __construct($helpers = null) { if ($helpers !== null) { if (!is_array($helpers) && !$helpers instanceof Traversable) { throw new Mustache_Exception_InvalidArgumentException('HelperCollection constructor expects an array of helpers'); } foreach ($helpers as $name => $helper) { $this->add($name, $helper); } } } /** * Magic mutator. * * @see Mustache_HelperCollection::add * * @param string $name * @param mixed $helper */ public function __set($name, $helper) { $this->add($name, $helper); } /** * Add a helper to this collection. * * @param string $name * @param mixed $helper */ public function add($name, $helper) { $this->helpers[$name] = $helper; } /** * Magic accessor. * * @see Mustache_HelperCollection::get * * @param string $name * * @return mixed Helper */ public function __get($name) { return $this->get($name); } /** * Get a helper by name. * * @throws Mustache_Exception_UnknownHelperException If helper does not exist. * * @param string $name * * @return mixed Helper */ public function get($name) { if (!$this->has($name)) { throw new Mustache_Exception_UnknownHelperException($name); } return $this->helpers[$name]; } /** * Magic isset(). * * @see Mustache_HelperCollection::has * * @param string $name * * @return boolean True if helper is present */ public function __isset($name) { return $this->has($name); } /** * Check whether a given helper is present in the collection. * * @param string $name * * @return boolean True if helper is present */ public function has($name) { return array_key_exists($name, $this->helpers); } /** * Magic unset(). * * @see Mustache_HelperCollection::remove * * @param string $name */ public function __unset($name) { $this->remove($name); } /** * Check whether a given helper is present in the collection. * * @throws Mustache_Exception_UnknownHelperException if the requested helper is not present. * * @param string $name */ public function remove($name) { if (!$this->has($name)) { throw new Mustache_Exception_UnknownHelperException($name); } unset($this->helpers[$name]); } /** * Clear the helper collection. * * Removes all helpers from this collection */ public function clear() { $this->helpers = array(); } /** * Check whether the helper collection is empty. * * @return boolean True if the collection is empty */ public function isEmpty() { return empty($this->helpers); } } assets/lib/Mustache/Context.php000066600000010310152141651160012523 0ustar00stack = array($context); } } /** * Push a new Context frame onto the stack. * * @param mixed $value Object or array to use for context */ public function push($value) { array_push($this->stack, $value); } /** * Pop the last Context frame from the stack. * * @return mixed Last Context frame (object or array) */ public function pop() { return array_pop($this->stack); } /** * Get the last Context frame. * * @return mixed Last Context frame (object or array) */ public function last() { return end($this->stack); } /** * Find a variable in the Context stack. * * Starting with the last Context frame (the context of the innermost section), and working back to the top-level * rendering context, look for a variable with the given name: * * * If the Context frame is an associative array which contains the key $id, returns the value of that element. * * If the Context frame is an object, this will check first for a public method, then a public property named * $id. Failing both of these, it will try `__isset` and `__get` magic methods. * * If a value named $id is not found in any Context frame, returns an empty string. * * @param string $id Variable name * * @return mixed Variable value, or '' if not found */ public function find($id) { return $this->findVariableInStack($id, $this->stack); } /** * Find a 'dot notation' variable in the Context stack. * * Note that dot notation traversal bubbles through scope differently than the regular find method. After finding * the initial chunk of the dotted name, each subsequent chunk is searched for only within the value of the previous * result. For example, given the following context stack: * * $data = array( * 'name' => 'Fred', * 'child' => array( * 'name' => 'Bob' * ), * ); * * ... and the Mustache following template: * * {{ child.name }} * * ... the `name` value is only searched for within the `child` value of the global Context, not within parent * Context frames. * * @param string $id Dotted variable selector * * @return mixed Variable value, or '' if not found */ public function findDot($id) { $chunks = explode('.', $id); $first = array_shift($chunks); $value = $this->findVariableInStack($first, $this->stack); foreach ($chunks as $chunk) { if ($value === '') { return $value; } $value = $this->findVariableInStack($chunk, array($value)); } return $value; } /** * Helper function to find a variable in the Context stack. * * @see Mustache_Context::find * * @param string $id Variable name * @param array $stack Context stack * * @return mixed Variable value, or '' if not found */ private function findVariableInStack($id, array $stack) { for ($i = count($stack) - 1; $i >= 0; $i--) { if (is_object($stack[$i]) && !$stack[$i] instanceof Closure) { if (method_exists($stack[$i], $id)) { return $stack[$i]->$id(); } elseif (isset($stack[$i]->$id)) { return $stack[$i]->$id; } } elseif (is_array($stack[$i]) && array_key_exists($id, $stack[$i])) { return $stack[$i][$id]; } } return ''; } } assets/lib/Mustache/Parser.php000066600000014253152141651160012345 0ustar00lineNum = -1; $this->lineTokens = 0; return $this->buildTree($tokens); } /** * Helper method for recursively building a parse tree. * * @throws Mustache_Exception_SyntaxException when nesting errors or mismatched section tags are encountered. * * @param array &$tokens Set of Mustache tokens * @param array $parent Parent token (default: null) * * @return array Mustache Token parse tree */ private function buildTree(array &$tokens, array $parent = null) { $nodes = array(); while (!empty($tokens)) { $token = array_shift($tokens); if ($token[Mustache_Tokenizer::LINE] === $this->lineNum) { $this->lineTokens++; } else { $this->lineNum = $token[Mustache_Tokenizer::LINE]; $this->lineTokens = 0; } switch ($token[Mustache_Tokenizer::TYPE]) { case Mustache_Tokenizer::T_DELIM_CHANGE: $this->clearStandaloneLines($nodes, $tokens); break; case Mustache_Tokenizer::T_SECTION: case Mustache_Tokenizer::T_INVERTED: $this->clearStandaloneLines($nodes, $tokens); $nodes[] = $this->buildTree($tokens, $token); break; case Mustache_Tokenizer::T_END_SECTION: if (!isset($parent)) { $msg = sprintf('Unexpected closing tag: /%s', $token[Mustache_Tokenizer::NAME]); throw new Mustache_Exception_SyntaxException($msg, $token); } if ($token[Mustache_Tokenizer::NAME] !== $parent[Mustache_Tokenizer::NAME]) { $msg = sprintf('Nesting error: %s vs. %s', $parent[Mustache_Tokenizer::NAME], $token[Mustache_Tokenizer::NAME]); throw new Mustache_Exception_SyntaxException($msg, $token); } $this->clearStandaloneLines($nodes, $tokens); $parent[Mustache_Tokenizer::END] = $token[Mustache_Tokenizer::INDEX]; $parent[Mustache_Tokenizer::NODES] = $nodes; return $parent; break; case Mustache_Tokenizer::T_PARTIAL: case Mustache_Tokenizer::T_PARTIAL_2: // store the whitespace prefix for laters! if ($indent = $this->clearStandaloneLines($nodes, $tokens)) { $token[Mustache_Tokenizer::INDENT] = $indent[Mustache_Tokenizer::VALUE]; } $nodes[] = $token; break; case Mustache_Tokenizer::T_PRAGMA: case Mustache_Tokenizer::T_COMMENT: $this->clearStandaloneLines($nodes, $tokens); $nodes[] = $token; break; default: $nodes[] = $token; break; } } if (isset($parent)) { $msg = sprintf('Missing closing tag: %s', $parent[Mustache_Tokenizer::NAME]); throw new Mustache_Exception_SyntaxException($msg, $parent); } return $nodes; } /** * Clear standalone line tokens. * * Returns a whitespace token for indenting partials, if applicable. * * @param array $nodes Parsed nodes. * @param array $tokens Tokens to be parsed. * * @return array Resulting indent token, if any. */ private function clearStandaloneLines(array &$nodes, array &$tokens) { if ($this->lineTokens > 1) { // this is the third or later node on this line, so it can't be standalone return; } $prev = null; if ($this->lineTokens === 1) { // this is the second node on this line, so it can't be standalone // unless the previous node is whitespace. if ($prev = end($nodes)) { if (!$this->tokenIsWhitespace($prev)) { return; } } } $next = null; if ($next = reset($tokens)) { // If we're on a new line, bail. if ($next[Mustache_Tokenizer::LINE] !== $this->lineNum) { return; } // If the next token isn't whitespace, bail. if (!$this->tokenIsWhitespace($next)) { return; } if (count($tokens) !== 1) { // Unless it's the last token in the template, the next token // must end in newline for this to be standalone. if (substr($next[Mustache_Tokenizer::VALUE], -1) !== "\n") { return; } } // Discard the whitespace suffix array_shift($tokens); } if ($prev) { // Return the whitespace prefix, if any return array_pop($nodes); } } /** * Check whether token is a whitespace token. * * True if token type is T_TEXT and value is all whitespace characters. * * @param array $token * * @return boolean True if token is a whitespace token */ private function tokenIsWhitespace(array $token) { if ($token[Mustache_Tokenizer::TYPE] == Mustache_Tokenizer::T_TEXT) { return preg_match('/^\s*$/', $token[Mustache_Tokenizer::VALUE]); } return false; } } assets/lib/Mustache/Loader/CascadingLoader.php000066600000003453152141651160015322 0ustar00loaders = array(); foreach ($loaders as $loader) { $this->addLoader($loader); } } /** * Add a Loader instance. * * @param Mustache_Loader $loader A Mustache Loader instance */ public function addLoader(Mustache_Loader $loader) { $this->loaders[] = $loader; } /** * Load a Template by name. * * @throws Mustache_Exception_UnknownTemplateException If a template file is not found. * * @param string $name * * @return string Mustache Template source */ public function load($name) { foreach ($this->loaders as $loader) { try { return $loader->load($name); } catch (Mustache_Exception_UnknownTemplateException $e) { // do nothing, check the next loader. } } throw new Mustache_Exception_UnknownTemplateException($name); } } assets/lib/Mustache/Loader/InlineLoader.php000066600000007346152141651160014671 0ustar00load('hello'); * $goodbye = $loader->load('goodbye'); * * __halt_compiler(); * * @@ hello * Hello, {{ planet }}! * * @@ goodbye * Goodbye, cruel {{ planet }} * * Templates are deliniated by lines containing only `@@ name`. * * The InlineLoader is well-suited to micro-frameworks such as Silex: * * $app->register(new MustacheServiceProvider, array( * 'mustache.loader' => new Mustache_Loader_InlineLoader(__FILE__, __COMPILER_HALT_OFFSET__) * )); * * $app->get('/{name}', function($name) use ($app) { * return $app['mustache']->render('hello', compact('name')); * }) * ->value('name', 'world'); * * // ... * * __halt_compiler(); * * @@ hello * Hello, {{ name }}! * */ class Mustache_Loader_InlineLoader implements Mustache_Loader { protected $fileName; protected $offset; protected $templates; /** * The InlineLoader requires a filename and offset to process templates. * The magic constants `__FILE__` and `__COMPILER_HALT_OFFSET__` are usually * perfectly suited to the job: * * $loader = new Mustache_Loader_InlineLoader(__FILE__, __COMPILER_HALT_OFFSET__); * * Note that this only works if the loader is instantiated inside the same * file as the inline templates. If the templates are located in another * file, it would be necessary to manually specify the filename and offset. * * @param string $fileName The file to parse for inline templates * @param int $offset A string offset for the start of the templates. * This usually coincides with the `__halt_compiler` * call, and the `__COMPILER_HALT_OFFSET__`. */ public function __construct($fileName, $offset) { if (!is_file($fileName)) { throw new Mustache_Exception_InvalidArgumentException('InlineLoader expects a valid filename.'); } if (!is_int($offset) || $offset < 0) { throw new Mustache_Exception_InvalidArgumentException('InlineLoader expects a valid file offset.'); } $this->fileName = $fileName; $this->offset = $offset; } /** * Load a Template by name. * * @throws Mustache_Exception_UnknownTemplateException If a template file is not found. * * @param string $name * * @return string Mustache Template source */ public function load($name) { $this->loadTemplates(); if (!array_key_exists($name, $this->templates)) { throw new Mustache_Exception_UnknownTemplateException($name); } return $this->templates[$name]; } /** * Parse and load templates from the end of a source file. */ protected function loadTemplates() { if ($this->templates === null) { $this->templates = array(); $data = file_get_contents($this->fileName, false, null, $this->offset); foreach (preg_split("/^@@(?= [\w\d\.]+$)/m", $data, -1) as $chunk) { if (trim($chunk)) { list($name, $content) = explode("\n", $chunk, 2); $this->templates[trim($name)] = trim($content); } } } } } assets/lib/Mustache/Loader/ArrayLoader.php000066600000003707152141651160014526 0ustar00 '{{ bar }}', * 'baz' => 'Hey {{ qux }}!' * ); * * $tpl = $loader->load('foo'); // '{{ bar }}' * * The ArrayLoader is used internally as a partials loader by Mustache_Engine instance when an array of partials * is set. It can also be used as a quick-and-dirty Template loader. */ class Mustache_Loader_ArrayLoader implements Mustache_Loader, Mustache_Loader_MutableLoader { /** * ArrayLoader constructor. * * @param array $templates Associative array of Template source (default: array()) */ public function __construct(array $templates = array()) { $this->templates = $templates; } /** * Load a Template. * * @throws Mustache_Exception_UnknownTemplateException If a template file is not found. * * @param string $name * * @return string Mustache Template source */ public function load($name) { if (!isset($this->templates[$name])) { throw new Mustache_Exception_UnknownTemplateException($name); } return $this->templates[$name]; } /** * Set an associative array of Template sources for this loader. * * @param array $templates */ public function setTemplates(array $templates) { $this->templates = $templates; } /** * Set a Template source by name. * * @param string $name * @param string $template Mustache Template source */ public function setTemplate($name, $template) { $this->templates[$name] = $template; } } assets/lib/Mustache/Loader/FilesystemLoader.php000066600000007436152141651160015577 0ustar00load('foo'); // equivalent to `file_get_contents(dirname(__FILE__).'/views/foo.mustache'); * * This is probably the most useful Mustache Loader implementation. It can be used for partials and normal Templates: * * $m = new Mustache(array( * 'loader' => new Mustache_Loader_FilesystemLoader(dirname(__FILE__).'/views'), * 'partials_loader' => new Mustache_Loader_FilesystemLoader(dirname(__FILE__).'/views/partials'), * )); */ class Mustache_Loader_FilesystemLoader implements Mustache_Loader { private $baseDir; private $extension = '.mustache'; private $templates = array(); /** * Mustache filesystem Loader constructor. * * Passing an $options array allows overriding certain Loader options during instantiation: * * $options = array( * // The filename extension used for Mustache templates. Defaults to '.mustache' * 'extension' => '.ms', * ); * * @throws Mustache_Exception_RuntimeException if $baseDir does not exist. * * @param string $baseDir Base directory containing Mustache template files. * @param array $options Array of Loader options (default: array()) */ public function __construct($baseDir, array $options = array()) { $this->baseDir = $baseDir; if (strpos($this->baseDir, '://') === -1) { $this->baseDir = realpath($this->baseDir); } if (!is_dir($this->baseDir)) { throw new Mustache_Exception_RuntimeException(sprintf('FilesystemLoader baseDir must be a directory: %s', $baseDir)); } if (array_key_exists('extension', $options)) { if (empty($options['extension'])) { $this->extension = ''; } else { $this->extension = '.' . ltrim($options['extension'], '.'); } } } /** * Load a Template by name. * * $loader = new Mustache_Loader_FilesystemLoader(dirname(__FILE__).'/views'); * $loader->load('admin/dashboard'); // loads "./views/admin/dashboard.mustache"; * * @param string $name * * @return string Mustache Template source */ public function load($name) { if (!isset($this->templates[$name])) { $this->templates[$name] = $this->loadFile($name); } return $this->templates[$name]; } /** * Helper function for loading a Mustache file by name. * * @throws Mustache_Exception_UnknownTemplateException If a template file is not found. * * @param string $name * * @return string Mustache Template source */ protected function loadFile($name) { $fileName = $this->getFileName($name); if (!file_exists($fileName)) { throw new Mustache_Exception_UnknownTemplateException($name); } return file_get_contents($fileName); } /** * Helper function for getting a Mustache template file name. * * @param string $name * * @return string Template file name */ protected function getFileName($name) { $fileName = $this->baseDir . '/' . $name; if (substr($fileName, 0 - strlen($this->extension)) !== $this->extension) { $fileName .= $this->extension; } return $fileName; } } assets/lib/Mustache/Loader/MutableLoader.php000066600000001254152141651160015034 0ustar00load('{{ foo }}'); // '{{ foo }}' * * This is the default Template Loader instance used by Mustache: * * $m = new Mustache; * $tpl = $m->loadTemplate('{{ foo }}'); * echo $tpl->render(array('foo' => 'bar')); // "bar" */ class Mustache_Loader_StringLoader implements Mustache_Loader { /** * Load a Template by source. * * @param string $name Mustache Template source * * @return string Mustache Template source */ public function load($name) { return $name; } } assets/lib/Mustache/Logger/StreamLogger.php000066600000012656152141651160014730 0ustar00 100, self::INFO => 200, self::NOTICE => 250, self::WARNING => 300, self::ERROR => 400, self::CRITICAL => 500, self::ALERT => 550, self::EMERGENCY => 600, ); protected $stream = null; protected $url = null; /** * @throws InvalidArgumentException if the logging level is unknown. * * @param string $stream Resource instance or URL * @param integer $level The minimum logging level at which this handler will be triggered */ public function __construct($stream, $level = Mustache_Logger::ERROR) { $this->setLevel($level); if (is_resource($stream)) { $this->stream = $stream; } else { $this->url = $stream; } } /** * Close stream resources. */ public function __destruct() { if (is_resource($this->stream)) { fclose($this->stream); } } /** * Set the minimum logging level. * * @throws Mustache_Exception_InvalidArgumentException if the logging level is unknown. * * @param integer $level The minimum logging level which will be written */ public function setLevel($level) { if (!array_key_exists($level, self::$levels)) { throw new Mustache_Exception_InvalidArgumentException(sprintf('Unexpected logging level: %s', $level)); } $this->level = $level; } /** * Get the current minimum logging level. * * @return integer */ public function getLevel() { return $this->level; } /** * Logs with an arbitrary level. * * @throws Mustache_Exception_InvalidArgumentException if the logging level is unknown. * * @param mixed $level * @param string $message * @param array $context */ public function log($level, $message, array $context = array()) { if (!array_key_exists($level, self::$levels)) { throw new Mustache_Exception_InvalidArgumentException(sprintf('Unexpected logging level: %s', $level)); } if (self::$levels[$level] >= self::$levels[$this->level]) { $this->writeLog($level, $message, $context); } } /** * Write a record to the log. * * @throws Mustache_Exception_LogicException If neither a stream resource nor url is present. * @throws Mustache_Exception_RuntimeException If the stream url cannot be opened. * * @param integer $level The logging level * @param string $message The log message * @param array $context The log context */ protected function writeLog($level, $message, array $context = array()) { if (!is_resource($this->stream)) { if (!isset($this->url)) { throw new Mustache_Exception_LogicException('Missing stream url, the stream can not be opened. This may be caused by a premature call to close().'); } $this->stream = fopen($this->url, 'a'); if (!is_resource($this->stream)) { // @codeCoverageIgnoreStart throw new Mustache_Exception_RuntimeException(sprintf('The stream or file "%s" could not be opened.', $this->url)); // @codeCoverageIgnoreEnd } } fwrite($this->stream, self::formatLine($level, $message, $context)); } /** * Gets the name of the logging level. * * @throws InvalidArgumentException if the logging level is unknown. * * @param integer $level * * @return string */ protected static function getLevelName($level) { return strtoupper($level); } /** * Format a log line for output. * * @param integer $level The logging level * @param string $message The log message * @param array $context The log context * * @return string */ protected static function formatLine($level, $message, array $context = array()) { return sprintf( "%s: %s\n", self::getLevelName($level), self::interpolateMessage($message, $context) ); } /** * Interpolate context values into the message placeholders. * * @param string $message * @param array $context * * @return string */ protected static function interpolateMessage($message, array $context = array()) { if (strpos($message, '{') === false) { return $message; } // build a replacement array with braces around the context keys $replace = array(); foreach ($context as $key => $val) { $replace['{' . $key . '}'] = $val; } // interpolate replacement values into the the message and return return strtr($message, $replace); } } assets/lib/Mustache/Logger/AbstractLogger.php000066600000006151152141651160015231 0ustar00log(Mustache_Logger::EMERGENCY, $message, $context); } /** * Action must be taken immediately. * * Example: Entire website down, database unavailable, etc. This should * trigger the SMS alerts and wake you up. * * @param string $message * @param array $context */ public function alert($message, array $context = array()) { $this->log(Mustache_Logger::ALERT, $message, $context); } /** * Critical conditions. * * Example: Application component unavailable, unexpected exception. * * @param string $message * @param array $context */ public function critical($message, array $context = array()) { $this->log(Mustache_Logger::CRITICAL, $message, $context); } /** * Runtime errors that do not require immediate action but should typically * be logged and monitored. * * @param string $message * @param array $context */ public function error($message, array $context = array()) { $this->log(Mustache_Logger::ERROR, $message, $context); } /** * Exceptional occurrences that are not errors. * * Example: Use of deprecated APIs, poor use of an API, undesirable things * that are not necessarily wrong. * * @param string $message * @param array $context */ public function warning($message, array $context = array()) { $this->log(Mustache_Logger::WARNING, $message, $context); } /** * Normal but significant events. * * @param string $message * @param array $context */ public function notice($message, array $context = array()) { $this->log(Mustache_Logger::NOTICE, $message, $context); } /** * Interesting events. * * Example: User logs in, SQL logs. * * @param string $message * @param array $context */ public function info($message, array $context = array()) { $this->log(Mustache_Logger::INFO, $message, $context); } /** * Detailed debug information. * * @param string $message * @param array $context */ public function debug($message, array $context = array()) { $this->log(Mustache_Logger::DEBUG, $message, $context); } } assets/lib/Mustache/Engine.php000066600000054143152141651160012320 0ustar00 '__MyTemplates_', * * // A cache directory for compiled templates. Mustache will not cache templates unless this is set * 'cache' => dirname(__FILE__).'/tmp/cache/mustache', * * // Override default permissions for cache files. Defaults to using the system-defined umask. It is * // *strongly* recommended that you configure your umask properly rather than overriding permissions here. * 'cache_file_mode' => 0666, * * // A Mustache template loader instance. Uses a StringLoader if not specified. * 'loader' => new Mustache_Loader_FilesystemLoader(dirname(__FILE__).'/views'), * * // A Mustache loader instance for partials. * 'partials_loader' => new Mustache_Loader_FilesystemLoader(dirname(__FILE__).'/views/partials'), * * // An array of Mustache partials. Useful for quick-and-dirty string template loading, but not as * // efficient or lazy as a Filesystem (or database) loader. * 'partials' => array('foo' => file_get_contents(dirname(__FILE__).'/views/partials/foo.mustache')), * * // An array of 'helpers'. Helpers can be global variables or objects, closures (e.g. for higher order * // sections), or any other valid Mustache context value. They will be prepended to the context stack, * // so they will be available in any template loaded by this Mustache instance. * 'helpers' => array('i18n' => function($text) { * // do something translatey here... * }), * * // An 'escape' callback, responsible for escaping double-mustache variables. * 'escape' => function($value) { * return htmlspecialchars($buffer, ENT_COMPAT, 'UTF-8'); * }, * * // Type argument for `htmlspecialchars`. Defaults to ENT_COMPAT. You may prefer ENT_QUOTES. * 'entity_flags' => ENT_QUOTES, * * // Character set for `htmlspecialchars`. Defaults to 'UTF-8'. Use 'UTF-8'. * 'charset' => 'ISO-8859-1', * * // A Mustache Logger instance. No logging will occur unless this is set. Using a PSR-3 compatible * // logging library -- such as Monolog -- is highly recommended. A simple stream logger implementation is * // available as well: * 'logger' => new Mustache_Logger_StreamLogger('php://stderr'), * * // Only treat Closure instances and invokable classes as callable. If true, values like * // `array('ClassName', 'methodName')` and `array($classInstance, 'methodName')`, which are traditionally * // "callable" in PHP, are not called to resolve variables for interpolation or section contexts. This * // helps protect against arbitrary code execution when user input is passed directly into the template. * // This currently defaults to false, but will default to true in v3.0. * 'strict_callables' => true, * ); * * @throws Mustache_Exception_InvalidArgumentException If `escape` option is not callable. * * @param array $options (default: array()) */ public function __construct(array $options = array()) { if (isset($options['template_class_prefix'])) { $this->templateClassPrefix = $options['template_class_prefix']; } if (isset($options['cache'])) { $this->cache = $options['cache']; } if (isset($options['cache_file_mode'])) { $this->cacheFileMode = $options['cache_file_mode']; } if (isset($options['loader'])) { $this->setLoader($options['loader']); } if (isset($options['partials_loader'])) { $this->setPartialsLoader($options['partials_loader']); } if (isset($options['partials'])) { $this->setPartials($options['partials']); } if (isset($options['helpers'])) { $this->setHelpers($options['helpers']); } if (isset($options['escape'])) { if (!is_callable($options['escape'])) { throw new Mustache_Exception_InvalidArgumentException('Mustache Constructor "escape" option must be callable'); } $this->escape = $options['escape']; } if (isset($options['entity_flags'])) { $this->entityFlags = $options['entity_flags']; } if (isset($options['charset'])) { $this->charset = $options['charset']; } if (isset($options['logger'])) { $this->setLogger($options['logger']); } if (isset($options['strict_callables'])) { $this->strictCallables = $options['strict_callables']; } } /** * Shortcut 'render' invocation. * * Equivalent to calling `$mustache->loadTemplate($template)->render($context);` * * @see Mustache_Engine::loadTemplate * @see Mustache_Template::render * * @param string $template * @param mixed $context (default: array()) * * @return string Rendered template */ public function render($template, $context = array()) { return $this->loadTemplate($template)->render($context); } /** * Get the current Mustache escape callback. * * @return mixed Callable or null */ public function getEscape() { return $this->escape; } /** * Get the current Mustache entitity type to escape. * * @return int */ public function getEntityFlags() { return $this->entityFlags; } /** * Get the current Mustache character set. * * @return string */ public function getCharset() { return $this->charset; } /** * Set the Mustache template Loader instance. * * @param Mustache_Loader $loader */ public function setLoader(Mustache_Loader $loader) { $this->loader = $loader; } /** * Get the current Mustache template Loader instance. * * If no Loader instance has been explicitly specified, this method will instantiate and return * a StringLoader instance. * * @return Mustache_Loader */ public function getLoader() { if (!isset($this->loader)) { $this->loader = new Mustache_Loader_StringLoader; } return $this->loader; } /** * Set the Mustache partials Loader instance. * * @param Mustache_Loader $partialsLoader */ public function setPartialsLoader(Mustache_Loader $partialsLoader) { $this->partialsLoader = $partialsLoader; } /** * Get the current Mustache partials Loader instance. * * If no Loader instance has been explicitly specified, this method will instantiate and return * an ArrayLoader instance. * * @return Mustache_Loader */ public function getPartialsLoader() { if (!isset($this->partialsLoader)) { $this->partialsLoader = new Mustache_Loader_ArrayLoader; } return $this->partialsLoader; } /** * Set partials for the current partials Loader instance. * * @throws Mustache_Exception_RuntimeException If the current Loader instance is immutable * * @param array $partials (default: array()) */ public function setPartials(array $partials = array()) { if (!isset($this->partialsLoader)) { $this->partialsLoader = new Mustache_Loader_ArrayLoader; } if (!$this->partialsLoader instanceof Mustache_Loader_MutableLoader) { throw new Mustache_Exception_RuntimeException('Unable to set partials on an immutable Mustache Loader instance'); } $this->partialsLoader->setTemplates($partials); } /** * Set an array of Mustache helpers. * * An array of 'helpers'. Helpers can be global variables or objects, closures (e.g. for higher order sections), or * any other valid Mustache context value. They will be prepended to the context stack, so they will be available in * any template loaded by this Mustache instance. * * @throws Mustache_Exception_InvalidArgumentException if $helpers is not an array or Traversable * * @param array|Traversable $helpers */ public function setHelpers($helpers) { if (!is_array($helpers) && !$helpers instanceof Traversable) { throw new Mustache_Exception_InvalidArgumentException('setHelpers expects an array of helpers'); } $this->getHelpers()->clear(); foreach ($helpers as $name => $helper) { $this->addHelper($name, $helper); } } /** * Get the current set of Mustache helpers. * * @see Mustache_Engine::setHelpers * * @return Mustache_HelperCollection */ public function getHelpers() { if (!isset($this->helpers)) { $this->helpers = new Mustache_HelperCollection; } return $this->helpers; } /** * Add a new Mustache helper. * * @see Mustache_Engine::setHelpers * * @param string $name * @param mixed $helper */ public function addHelper($name, $helper) { $this->getHelpers()->add($name, $helper); } /** * Get a Mustache helper by name. * * @see Mustache_Engine::setHelpers * * @param string $name * * @return mixed Helper */ public function getHelper($name) { return $this->getHelpers()->get($name); } /** * Check whether this Mustache instance has a helper. * * @see Mustache_Engine::setHelpers * * @param string $name * * @return boolean True if the helper is present */ public function hasHelper($name) { return $this->getHelpers()->has($name); } /** * Remove a helper by name. * * @see Mustache_Engine::setHelpers * * @param string $name */ public function removeHelper($name) { $this->getHelpers()->remove($name); } /** * Set the Mustache Logger instance. * * @throws Mustache_Exception_InvalidArgumentException If logger is not an instance of Mustache_Logger or Psr\Log\LoggerInterface. * * @param Mustache_Logger|Psr\Log\LoggerInterface $logger */ public function setLogger($logger = null) { if ($logger !== null && !($logger instanceof Mustache_Logger || is_a($logger, 'Psr\\Log\\LoggerInterface'))) { throw new Mustache_Exception_InvalidArgumentException('Expected an instance of Mustache_Logger or Psr\\Log\\LoggerInterface.'); } $this->logger = $logger; } /** * Get the current Mustache Logger instance. * * @return Mustache_Logger|Psr\Log\LoggerInterface */ public function getLogger() { return $this->logger; } /** * Set the Mustache Tokenizer instance. * * @param Mustache_Tokenizer $tokenizer */ public function setTokenizer(Mustache_Tokenizer $tokenizer) { $this->tokenizer = $tokenizer; } /** * Get the current Mustache Tokenizer instance. * * If no Tokenizer instance has been explicitly specified, this method will instantiate and return a new one. * * @return Mustache_Tokenizer */ public function getTokenizer() { if (!isset($this->tokenizer)) { $this->tokenizer = new Mustache_Tokenizer; } return $this->tokenizer; } /** * Set the Mustache Parser instance. * * @param Mustache_Parser $parser */ public function setParser(Mustache_Parser $parser) { $this->parser = $parser; } /** * Get the current Mustache Parser instance. * * If no Parser instance has been explicitly specified, this method will instantiate and return a new one. * * @return Mustache_Parser */ public function getParser() { if (!isset($this->parser)) { $this->parser = new Mustache_Parser; } return $this->parser; } /** * Set the Mustache Compiler instance. * * @param Mustache_Compiler $compiler */ public function setCompiler(Mustache_Compiler $compiler) { $this->compiler = $compiler; } /** * Get the current Mustache Compiler instance. * * If no Compiler instance has been explicitly specified, this method will instantiate and return a new one. * * @return Mustache_Compiler */ public function getCompiler() { if (!isset($this->compiler)) { $this->compiler = new Mustache_Compiler; } return $this->compiler; } /** * Helper method to generate a Mustache template class. * * @param string $source * * @return string Mustache Template class name */ public function getTemplateClassName($source) { return $this->templateClassPrefix . md5(sprintf( 'version:%s,escape:%s,entity_flags:%i,charset:%s,strict_callables:%s,source:%s', self::VERSION, isset($this->escape) ? 'custom' : 'default', $this->entityFlags, $this->charset, $this->strictCallables ? 'true' : 'false', $source )); } /** * Load a Mustache Template by name. * * @param string $name * * @return Mustache_Template */ public function loadTemplate($name) { return $this->loadSource($this->getLoader()->load($name)); } /** * Load a Mustache partial Template by name. * * This is a helper method used internally by Template instances for loading partial templates. You can most likely * ignore it completely. * * @param string $name * * @return Mustache_Template */ public function loadPartial($name) { try { if (isset($this->partialsLoader)) { $loader = $this->partialsLoader; } elseif (isset($this->loader) && !$this->loader instanceof Mustache_Loader_StringLoader) { $loader = $this->loader; } else { throw new Mustache_Exception_UnknownTemplateException($name); } return $this->loadSource($loader->load($name)); } catch (Mustache_Exception_UnknownTemplateException $e) { // If the named partial cannot be found, log then return null. $this->log( Mustache_Logger::WARNING, 'Partial not found: "{name}"', array('name' => $e->getTemplateName()) ); } } /** * Load a Mustache lambda Template by source. * * This is a helper method used by Template instances to generate subtemplates for Lambda sections. You can most * likely ignore it completely. * * @param string $source * @param string $delims (default: null) * * @return Mustache_Template */ public function loadLambda($source, $delims = null) { if ($delims !== null) { $source = $delims . "\n" . $source; } return $this->loadSource($source); } /** * Instantiate and return a Mustache Template instance by source. * * @see Mustache_Engine::loadTemplate * @see Mustache_Engine::loadPartial * @see Mustache_Engine::loadLambda * * @param string $source * * @return Mustache_Template */ private function loadSource($source) { $className = $this->getTemplateClassName($source); if (!isset($this->templates[$className])) { if (!class_exists($className, false)) { if ($fileName = $this->getCacheFilename($source)) { if (!is_file($fileName)) { $this->log( Mustache_Logger::DEBUG, 'Writing "{className}" class to template cache: "{fileName}"', array('className' => $className, 'fileName' => $fileName) ); $this->writeCacheFile($fileName, $this->compile($source)); } require_once $fileName; } else { $this->log( Mustache_Logger::WARNING, 'Template cache disabled, evaluating "{className}" class at runtime', array('className' => $className) ); eval('?>'.$this->compile($source)); } } $this->log( Mustache_Logger::DEBUG, 'Instantiating template: "{className}"', array('className' => $className) ); $this->templates[$className] = new $className($this); } return $this->templates[$className]; } /** * Helper method to tokenize a Mustache template. * * @see Mustache_Tokenizer::scan * * @param string $source * * @return array Tokens */ private function tokenize($source) { return $this->getTokenizer()->scan($source); } /** * Helper method to parse a Mustache template. * * @see Mustache_Parser::parse * * @param string $source * * @return array Token tree */ private function parse($source) { return $this->getParser()->parse($this->tokenize($source)); } /** * Helper method to compile a Mustache template. * * @see Mustache_Compiler::compile * * @param string $source * * @return string generated Mustache template class code */ private function compile($source) { $tree = $this->parse($source); $name = $this->getTemplateClassName($source); $this->log( Mustache_Logger::INFO, 'Compiling template to "{className}" class', array('className' => $name) ); return $this->getCompiler()->compile($source, $tree, $name, isset($this->escape), $this->charset, $this->strictCallables, $this->entityFlags); } /** * Helper method to generate a Mustache Template class cache filename. * * @param string $source * * @return string Mustache Template class cache filename */ private function getCacheFilename($source) { if ($this->cache) { return sprintf('%s/%s.php', $this->cache, $this->getTemplateClassName($source)); } } /** * Helper method to dump a generated Mustache Template subclass to the file cache. * * @throws Mustache_Exception_RuntimeException if unable to create the cache directory or write to $fileName. * * @param string $fileName * @param string $source * * @codeCoverageIgnore */ private function writeCacheFile($fileName, $source) { $dirName = dirname($fileName); if (!is_dir($dirName)) { $this->log( Mustache_Logger::INFO, 'Creating Mustache template cache directory: "{dirName}"', array('dirName' => $dirName) ); @mkdir($dirName, 0777, true); if (!is_dir($dirName)) { throw new Mustache_Exception_RuntimeException(sprintf('Failed to create cache directory "%s".', $dirName)); } } $this->log( Mustache_Logger::DEBUG, 'Caching compiled template to "{fileName}"', array('fileName' => $fileName) ); $tempFile = tempnam($dirName, basename($fileName)); if (false !== @file_put_contents($tempFile, $source)) { if (@rename($tempFile, $fileName)) { $mode = isset($this->cacheFileMode) ? $this->cacheFileMode : (0666 & ~umask()); @chmod($fileName, $mode); return; } $this->log( Mustache_Logger::ERROR, 'Unable to rename Mustache temp cache file: "{tempName}" -> "{fileName}"', array('tempName' => $tempFile, 'fileName' => $fileName) ); } throw new Mustache_Exception_RuntimeException(sprintf('Failed to write cache file "%s".', $fileName)); } /** * Add a log record if logging is enabled. * * @param integer $level The logging level * @param string $message The log message * @param array $context The log context */ private function log($level, $message, array $context = array()) { if (isset($this->logger)) { $this->logger->log($level, $message, $context); } } } assets/lib/Mustache/Autoloader.php000066600000003315152141651160013205 0ustar00baseDir = $realDir; } else { $this->baseDir = $baseDir; } } /** * Register a new instance as an SPL autoloader. * * @param string $baseDir Mustache library base directory (default: dirname(__FILE__).'/..') * * @return Mustache_Autoloader Registered Autoloader instance */ public static function register($baseDir = null) { $loader = new self($baseDir); spl_autoload_register(array($loader, 'autoload')); return $loader; } /** * Autoload Mustache classes. * * @param string $class */ public function autoload($class) { if ($class[0] === '\\') { $class = substr($class, 1); } if (strpos($class, 'Mustache') !== 0) { return; } $file = sprintf('%s/%s.php', $this->baseDir, str_replace('_', '/', $class)); if (is_file($file)) { require $file; } } } assets/lib/Mustache/LambdaHelper.php000066600000002271152141651160013426 0ustar00mustache = $mustache; $this->context = $context; } /** * Render a string as a Mustache template with the current rendering context. * * @param string $string * * @return Rendered template. */ public function render($string) { return $this->mustache ->loadLambda((string) $string) ->renderInternal($this->context); } } assets/lib/Mustache/Template.php000066600000011573152141651160012666 0ustar00mustache = $mustache; } /** * Mustache Template instances can be treated as a function and rendered by simply calling them: * * $m = new Mustache_Engine; * $tpl = $m->loadTemplate('Hello, {{ name }}!'); * echo $tpl(array('name' => 'World')); // "Hello, World!" * * @see Mustache_Template::render * * @param mixed $context Array or object rendering context (default: array()) * * @return string Rendered template */ public function __invoke($context = array()) { return $this->render($context); } /** * Render this template given the rendering context. * * @param mixed $context Array or object rendering context (default: array()) * * @return string Rendered template */ public function render($context = array()) { return $this->renderInternal($this->prepareContextStack($context)); } /** * Internal rendering method implemented by Mustache Template concrete subclasses. * * This is where the magic happens :) * * NOTE: This method is not part of the Mustache.php public API. * * @param Mustache_Context $context * @param string $indent (default: '') * * @return string Rendered template */ abstract public function renderInternal(Mustache_Context $context, $indent = ''); /** * Tests whether a value should be iterated over (e.g. in a section context). * * In most languages there are two distinct array types: list and hash (or whatever you want to call them). Lists * should be iterated, hashes should be treated as objects. Mustache follows this paradigm for Ruby, Javascript, * Java, Python, etc. * * PHP, however, treats lists and hashes as one primitive type: array. So Mustache.php needs a way to distinguish * between between a list of things (numeric, normalized array) and a set of variables to be used as section context * (associative array). In other words, this will be iterated over: * * $items = array( * array('name' => 'foo'), * array('name' => 'bar'), * array('name' => 'baz'), * ); * * ... but this will be used as a section context block: * * $items = array( * 1 => array('name' => 'foo'), * 'banana' => array('name' => 'bar'), * 42 => array('name' => 'baz'), * ); * * @param mixed $value * * @return boolean True if the value is 'iterable' */ protected function isIterable($value) { if (is_object($value)) { return $value instanceof Traversable; } elseif (is_array($value)) { $i = 0; foreach ($value as $k => $v) { if ($k !== $i++) { return false; } } return true; } else { return false; } } /** * Helper method to prepare the Context stack. * * Adds the Mustache HelperCollection to the stack's top context frame if helpers are present. * * @param mixed $context Optional first context frame (default: null) * * @return Mustache_Context */ protected function prepareContextStack($context = null) { $stack = new Mustache_Context; $helpers = $this->mustache->getHelpers(); if (!$helpers->isEmpty()) { $stack->push($helpers); } if (!empty($context)) { $stack->push($context); } return $stack; } /** * Resolve a context value. * * Invoke the value if it is callable, otherwise return the value. * * @param mixed $value * @param Mustache_Context $context * @param string $indent * * @return string */ protected function resolveValue($value, Mustache_Context $context, $indent = '') { if (($this->strictCallables ? is_object($value) : !is_string($value)) && is_callable($value)) { return $this->mustache ->loadLambda((string) call_user_func($value)) ->renderInternal($context, $indent); } return $value; } } assets/lib/Mustache/Exception.php000066600000000515152141651160013043 0ustar00 \h?IDATxtUN:%$ޤtɇH ("(J&`("-J -z Jo!''n%AΞٙ{ rghԩ<,h H!d H!dxX=(fPpayuwwwvv񑑑W^ k׮)I޵jժ]vr>|8,,} m:u)Re˖;vS愆8q̙3d:666111--M>vpp(P@B ,X@&/^vmڵ۶m @2|aZzݰaCNMMݼyΝ;ϝ;xxx/_߿u6662g߾}+V P@2|L5kl%J۷^:((衬v]tiѢL_|y޼yv@2|)SfذajՒ DDD~|N{EaÆ"Ek׮dɒ۷oX@2+&LhժU@@Iٽ{k+sN$Çoݻw߰ax6ڴij=d0Iz:rxTou,RH)Zlx +Zrs^yმۗo-ZtΜ9]tquuݽ{+$ =zT׬Yy5jԐ&''O-t:cÆ y@Ν;WRd~H"򋽽%K-Zgv* wwɟH2ܱcDZc1@[DEEXl2;۵,67/^ *Ur +YYY-eɖ͛d%?.sWuNUd*/0tڹ7̼{{{ݻw͛;G]ݥ`ׯ_[W㙅 8hpZW\YhTSӧMUwrr~—zvӝLKU٭r(LNJ <0ee};ow?,)))2=㏎=ShČ˗/}?ϝh=W)SV?y\vUYϘǩ c60~˗wJ^X]kj32'-M{ϓ[5-n:ٸZZ2Sf'E&i6zMw;׺VNZ(nGZ;BY󂤨2]誱T޶l^ĄQ>I91 wv+ Hy{$3de)3s݇{a? W,m3s4zF-M-faia09ZWNצْzz.E ,zٸTjoVĝݏNmkQkцdIOF|ے½{<*aR~~G۶miTTԔ)S.^ׯJE iԨgDD_xH~PNK,9mƗgϜVԿIj]͝ %3w7mY 9ߺe|4a7oڻuo ,ussӉ:vml rfq3%%%UQsQSL :t0'TX1,nYVO>}A^WGu+c62ѭ{ zvu߷qKn|u'u%bJfϚo^ɢ۴9k"#e}{za.Yyӄt;֎ !hZH[9+0?).EהUێ:~Bb. vqi uJ XKON7L/MQ潣Ng ;lh )R$3Bid0[ShFzeKۓeΛkR'k-$ʜzl?MgXX'3,2;I2]fiEsH%-mo%:hcv%,Wo}r0/7hU^uuZHKx*ؤڵׅ +,Tмy󲌅+V/_[nV"m۶7+OK.O-0lӧMݶmkBB^v/ }[(}`WxE HIKK;t0p9/W|7o#$P=&52"Y3BCC۷_شqK-/}ev؞"׀u : [Xg^]R4T!)aa=')*\hgIbU`zRmk{^`=k9H˺ԂYwY&HMpZkJ,ba:%?JbFZ˿S$ZoQ+NTgimc(iy+`÷8^5%Х,Mj㒓 %Gu-`d0̿=z6O666zLLLNСC:RT_<*VTT;$999߷mlkk_JݬcGTr~9| r2+};sk|{Z|ήGϗ._drRJUv م[>]MaÆjժlٲ.vڮ]*Uŋ]vŒyYiSbjC۵k'UzwAɒ%;v [n2F\2-O֡_\H_WN4̙3-SտKs'n葑2h^ /vsVFՆӇ}_]۷.Z@-K&Wfk^4s899EG$0:*Jv2ݰQ7)#zfy`䝏$EI kXg}opɉ6R#}F:h-bGC0 LOkgJNKT{εKjk2sh1UnUd}ƟYI.smdLk[;n7\ 9XǂSVƅgҧKnSv.%*.DZsӓ$}t*jGuTY߷ VK2Vݺu5W^Gp@I''æeG<.雷ׯwx.U: j7n/^3g41ܹsg6[oy.]2Iy- U4#0𬉋o9q/1|۽=!$''wlǧ/~՗ 0`OO=jdvvyY>;w$qttJaWXзfN"J>C :ߗ9dfyܹnƝnꀈ}3e<>C? ,N22 3V@k`HJ9\]aE?L3nۓ~TNV)XZ}~-m92^HUoJߒcYI^ZA֧ NOy޽.\z^=KbgihL]^#﵉ [Í 𰰌Y>]MڰaCy=qDο{ooo3˼\/rj p{u_K̭Q Vo6\UJR,%&&J1ʕ+F2!WbڵkmҤIׯ7Yr}[@2Wi-jank$UiN"5?^"iZr6 ?|m50 ~_}ҩ'իo}g}RT+Ōz}]k LOlbhі4re,l\%,OUsATڽ*`w%yUhi5 96' յ`,%Vդ)ZYè%K *TseeN! mb'.ڹz#nrz#Gڴi{hIkzUnu֙(祒Jnz+hpvoʴoq֬NLHx',^^^xK>={g>57tO͛G兡o=xȽq:_ {/] իӧ}qp}o6Ν;vhtɢ2ܛդ{6s9gL?0C)Ʃ'{wXtΆĘ<wc9x5܆W3\%-aCj|^Kkџѥ|eĈv>q*訵mKߘzyj2m:?_CHiwmBBXd?H=\'{stIF#{ƔٹXZˡp[6')2^Qʡ")#pz{GO Xͽ=%uqSw p;11,.H:iK^uz5#'a~ǸLqϟnڸ9H۷WPU6֓0N%Q>U:ALdXhQy?7Μ9{feٲe?Ӥ$3`4{>t_ y7:#9-Gw`*R*P\rEE%8a쳕+Wi֬˄, 0U&̈́v4-z88-=%T*訤%]6ꫯLLB5zyyIQF:l&Ͳ 1;~%z/8u`YKŊ[n]V[n?رcfsCR $^Vz_t٪'D#5et&P-[1 6X&L iJ2L/̡;J/]dfIA9e&^&3%]6oSI j\B)]򰼕*e~dxݧdw}cǎo`^/B#მFI5;o]s^6R9 IqJ\/TF Hc$رCRrCQɢ2HJɒ%eSdW#e҆&βݔK?)rhųL|ڵk߾} ;XMhNgiiW`3f\~}6ln=!6kOt7Iwxf^VDIVNQ]1:r~rWޕ+W2'1MCL{̗_888$fF&Srѣ?R4c)KpG$CsX[[0RJ}'e˖.ܲeKppdBelmm+Vؾ};7sǏn (Kڢ}ף=:G7E$XFSJ8tAID{]rLxno&ZxVaLLïkNL,YdѢE}1%%7|3`]Z?\/v'XF[;f{{+|EjJ-y +. nݺuɟy0zdȇmDEEi O=zX0xٳg$O&L;_|ѪU˴+.w{oYEM)Qw ?rkP=ZCTddd00^,u {Þ?_1Oxyz2nPk3qㆼzzzdƍ{mt6\```nݖ,Y2qDYǕvڅ۳h3.#7ָL &E>_)nԯ>ryTJ`|rʕ/yЗJ*ERoƓggLK,o)? _.>>>]eʔ):_~^}U>}yCb`g$ߎ]jnϢni?R'GD)RD`Purr7HBqCO֩_ɧ䖬AɴV01 cM5Z @ƔfLS}-<P9W{̘4iĹ{z]tiĉƌ9sITW&ݧt>wM߽|X&C\>ܱc0R,D 'FR.1]|CߨѣGQ2[Ϟ=gΜ_ҚR4G c2_~L3O- ԫ39sF,ll\~*kt&yANēڷoof2eχ:tŋ˖-ۥK~qioe\nYDʜe˖I33K%$iF(A2QrNcWIΉ'QTH|wCHXe͌'+$el˸R}2)k3_#i̙V 'ReҀ&MRvIjq!࿰ȟ߿J |X?N2EI=~?Q| ~#򒪙Y@y:Gfyx&˔,Y2x3JZvڏ?8\* HJ1.rP>5x f.9xefld͙ݱ`{|iIȲə7|dm y+3iVisK^3G,$ɧ>öm~'Æ ;p@ ڵի=zxXݴiK ໶V<~DzW[~f͒zmܸ# + ۴RZ!nTe2e)Nx9JxdR<d֢E^ߣSwAAAs=`<"uJ$fTG*<Hb [[nP?!n188Xc~ꦽKSTgʕCH9܌keiѢEa: .n:"G,zݯJ˲JE6l1Igo[8vXFL;?k׮]_/׏_?['ddz!ZmWOtfgϤ Ju8<UV4n8555k>ٳ'$$K.@I&;3aH)R ZPPPpppn ,$[ /U8tG5jN:Il/J`ϛiٲellٳg޽{N~ǝ;wrxj4___Z׮]{"Zoʕׯ_֭ Cvmǽڍ7u7&jaaaƍ5{ǿRT)0gpႅEǎ w~lHafϟ|r$Çȑ#ŊkӦ1bDΝl2m4$|x֬Yϟ@2|4kl%J0]zuPPCYsڵtҢE |yvdUV޽6l(ө7o޹sgpppn0uwwP֭mlldξ}VXȡd(RHV:t =qӧe:666111--M>vpp(P@BTRjՂ *_vںunAdX+$Zjծ]A9Vtt>ƾ'8+fPpaypvv)))w܉zjHH^v Oa2G4 $C@2 $C@2Oca\\yxxș Kiii%¡ HȩB777 VKȒ}LLptt$HSg􋉉 pqqRJrheyq.&x~k1k7uEEHxlذhѢ;wjQQQִ lĬI<~FMqg)HO:u %$$ٳ͛*T^2?((ҥK-''z+VLfǏjJGGGIz+V4h֭͛7eegr$J۹sg߾}-,%{xxtV nj۶,ecc#Q9swvvoާOˬμG.Uܼecz3@jN> QF YF`ʕ+qqq<6W=} ϷV@-'gϞW^ >tP˖-%bNNN*Ob+W$)ou_PWP!PܹsG{zzfޜN7D1xĝ]5zrtZS+,t}Rj$CɳyiӦϩZiZwգG^/K.&K|xvۻ+Wyu2[dɢETXlٲM6mܸ16E9zLEGG(7 BBB*WlaaM%Pa-+OOO~3v+/"oPT> t;v3fĈQQQw>lС´VZ~j֬ISr"&&*7R-\Ν;7n(O&ܹ~Q*T_r$Rriv$n޼Ycl\rŋwϳd`ҥ\nG.99o.J|-ѐSN=IO"ESNɓ'G)3%qSNDH- *Mȡ5k,Yd֭4ioժ$uJ&\h+V坄 Y{ڵ/ TǶRpL(.*3 SMJ8LHLz+͇BCC˔)6Axxx޽i///Jz$ݻtR_ ѣCrb۶mSLQ~me:::Zbq&~ᇴ8qDke  ?PBywTTz۷oD{<Ң }X+)a2,5 ꕑqżդZsɒ%+ٳ&zVVVNm߾ĉOwO+17o=&f͚͟?_ ͼ7=!puykVݾ}{͚5G KIIqqqYn6mٙ,|ر79s&::ں`5kڵ@lllnLռyѣG?~޽&9,vRRRN'M|~-<<|ڵ{V\rٲe/2QF 壓'On߾Ӳ )SEM6<͛7W^- %홞.ɳXbUVmٲe"ELIJu;v\tΝ;˗oРAa֖-[k̙3Nzw5ke'O,xIGGGٹYM.RJǎ?@#}30H@FC3go6l={I2 ֯_駟J0^x_~ Q^dɘ1c;%̘1C?HKl aĈKrUlU\\܏??+oՀ` *$CiHz/"88xH@R6!KݻwO2Ÿ=c N8xbC Q,% $o۶MJ"AZ":tH əΝk|E.] <8 kEA.v IC2:]bE?sL5_3vXU;mڴݒ<#QM};k,XhL0iҤj ٳi7n,GիŔbK$_%,]T}axx:,Ǐ7#h:uJqQc3T.k.uzΜ9j,F(9PplWZL:յcǎʕJ+1hٲs=nBⴴ2-N-WV(F8gcࡠ_l^y:^C-[LqBD /̟?_I/_otrr’7:w,+Sڵ+::ZZz~ثWݻWI ԧʙ:Pg6m$BDu+E;t`Ĉ.]ܢ1\*hժpc %5((H];3Yy߾}s;Zzz:ƌéS{up *}EQbm*UJQewE%oРz T,STNKU,iӦJJV+WRSS%~[eByriIjZ^ڒݻwkժUիWÊod*b/f]\\d}vvvM0j*U2\Rh֬:Phk L&$$8::=zT]7^|WzS|vC)QӶmۯJ- }||$ã$IВ$vYeI㠕bgnnݺ=; mtmD ]J>T̙3G"nӦM,--T/J`<|p@@%\lٲt&kdxb%.JPI2P*QDJsi נk'ڵk&CaUQJf.y$_zzɓo>~x5ܺuK]`Aߕ&xPS___^00^^}ПshѢ z}PPP͏9vBWbu/^?VSƤ',&&&%%+jOcǎ׭[J~{&M'cgg׽{_~E ~w}'{A\]>% IRZL2JٰؓaCeWɊ >C[:[d_[|~x)U[6|3ͿHJ5k֌7MHzϡp;YNV\\0 Ȳ͚5S{ //%{`b ]^^^ 45jܹs/ 2d_|۷og$3cH$-XW_8qzx f]׮]۴iD_~dN>J*d(....s24e[3>XZYz z-?}ْ ѨQ#I2cƌQH uʕ+t4~܅2Hv fE4RkՏ9$XuMkV{b?,Z9r}:uzC]ժU{U`AGUHtҾ}N<I {7nՇt֭C9>|̙e~ddHa4WuꭆGIDeI^j|a=TAoF640 ؖ))оZ%SVZJZXXXZZr\dݻYy n2eO*UHtɫ|dHYX65NcdTIF6o7^,WO ...}LPRMe(B )q]v͞={fϞ^xСCRG(LRqsϗ啵-]$*JaLV%^!kS-a|RWKQ!qTWvDN.%Ub:}mKr_`k+\MzrnT^]~̝9Ə33f0x5 4y4 FReBUU)r^ 6n|re3I}CL 4Hׯ_rr2g̘1V%ʭuJ(+;WԨQ#ݷiӦvr޽[ ,SJ˖-(!ArcccO:5o޼>}7.^8<<<,,T^Ai~g֭[gV;'.A ( 64.|nԋ6Ņ k5%.~WƏ0Nľ}|>Qc4tҩ~*U Ʒ*@XNYMaV J?dKi= ?\eT6>xbhhNGS>Hֵ<"gʣ7QQQW ++z.]w#>Qʕٳgƍ5ǛY57m4}lwV;eiԩ&M&djVQ߿ܸqs$EH1Y,^nݑ#GdjUVʕG&f˲ Ejխ[^1ϲW*TK.]v7ߨWܕ+W`%W^Ɂr?~С;w6O?\PXfE%N+ӶRM%O6LM_|EY9i5k̙3dzL=Oޝ#*U$/^̻HOe˖2KYhq:"0$zIgFFe<1+m6m$iӘ Ɨ>@G9j }Y@5kf^,_5̷YF*Ƽ;KRoP>ɦMJRf&&&SN`w*j͛7enݺe3 tss+_ָ<&7*Zn=dȐ~wI6',_iѢEUIhT\arkJ1fO%BZJ%:;;/^F={[5k?!ֵkW67zh 6l8sLLLen(o5iD8UM*U̙dIn\]]%-KR/I& K!'Mtɭ[JI{H0.YdÆ ۶mkZjU~7I&+Yr:-[6sajX^=H/R+M.%Un&ѣ:NeժUes7%_ҥK */G .3}5)y\M 1դE2!d H!d H!d H!d H!d H!d H!d H!d H!d H!d >=N>駟xs΍;6ˏf̘H< /^2aggդI?%ZjU9YgR Mռy'$$˗/Q_3gΰqk.\0C`iiikP~k׮:u$YСCZrݺuGپ}{hh]&Mڴi#3ccc-[vy^`2߾}7o/VX^bbb䋒N6lRRRF+_>99Y ٵk *^Z}^^^#FnSLѣݻO8ѹsM*j&N([QL0UVջtҪUnܸРA2cǎݻwg͚UNY+VH'OV*22rܸqg϶wo)sY6TvMmR )d"KJҌIIIEU_иqc)FOLL'۷}m,ɮYY۷_ڨQJ*|Y[rT?ǏjJSd'.]*;T.|i1c?JQ}e+WuN:)]/^HJ.ݯ_?Y}֭9'''_&-ƏcMN322LfJk2@r_H91cFŊ>&G۶m8pCٳol96%ۼ;9|(%0Hxw^"… e$xpZY*Te6PDGǬZԩS)Ek߶ss[ٻ_NKʕ+ۮm_ߢy{jړ'Oəsժmř$g93 ݻxEΘ?uOI7779޿KΝ;}Y&MLZK,_Pm[nɆ nB9;W_.hcc#E\ 3([lSμyz!Cid=2$bccw\,LSgY,Ee˖˗/4uI ɮKIԷJ!` Tʼ,p%*$*QQQR0ɐjBIdAAAjnR h%76k֬RJZVҠZeyiƷo>Bb~W>?޾{yR3ҥKJKMMb̫W/՟ n'NBdN@G+1{W*sdBVTI}ʕ+9:::d\re6np}NZjE~JMMmL~!~>i|ܟs}oƍ?($իWw:6qx˳dɒ׮^+_EL&$K.y;4lRIOY$M6*֐l SNvNZbŐ!C+&oKeѣnݺ}vE9o8p(gWY@ȑ#IVMf6eVD p9aaaJ$tJo&Hkje̝;W~; ϟ%̷OvMmfJ32#Cd+jR/Lf,R͛K7hŊ'L 1 `Ϟ= vnݺu YflRcħb~~ ի۪e 3mLIDO]V}d.]^3_عK&6l(Zo lii! |3K0oXh$?ԩ[n%P~č7),b &~pZ:I#LWZER:/^4iԍ7K2\"@bcǻKt,]._S'>vrrO׭۰ߓdjl׮͊g<۪dI<=xI$0 BYeJy2ZhY})mi o 6lHH '[޶d˖eyh҉/-#qsuu9sε|>:fz*76"Lo'9= Wo* 4ͤ17>1{zzc-98V;;;s^^ηDXKV\YuV*%hii#GR;TYͦm=,ȹkc2sugMn #thxxx{{LگRpRiZt1j |8Xr.;B!Gx5#zOﳯi嗻[~Z(_/_tѢt__JG fG_oMI˾uSSS'h4/*;s[QQQk08N(F!xf{_S*=shlȈ4V9{w.OB3$.*lܸ7ިC|atSS tޒ@6ÇF;wt{ZZ_Ƹi0殮Qc0Fl"\jժʊ|gڵ׎;P#Tv{1>>H|Ed{8& }魩 5]SI򃂂PF4Qkgܴ;GXN5kTUU+q g}&+[n2߰ai0(--ʊDt+=[^^D(顇:o!̕|644v魂{˯QK??=c׮£vcSbmgbUW9Ljf~]F)>+_SSs||]۔丸X ^__e.<[i*>lKp!B7c#`<}gb,v0 ^ZWffUW]m۶W_}5000%%EZQoƁO=Ф/}Tyyy+qϦX|Զ=q|PYXxK.777WZ=7pÛo $MClكv_={w(;vMa~s}ݗ_~_ѭo]veڦMYV(Nyppߎ>//k![lsԺqv ?Xrᦛn_ B߽񆄄xw7m8W]ud&Q.v礣ߺ¯}};[y {EUU^~k癆M@2dEkJڶۿnsOzmW_}trj988etvv:IN( 9гI+B!DPWW'-ֵcԩ-^?T@kjj#"¯y6i-kVcTp׏ϸQ=/F>/[7_N_ss/~~RR,$[TT97nذNO%&&>{{Wȿ7=ccE|t""y!?C {~/ 9Pw.QhիV|xժhs56+`SB!* 4yŽ{ٳsΖޕ֒@Zֻvr箟NIGM?yҼ: x8VFĄg~իWy*Ԙ1-p vիEnFgVr OSm痕!BNyu}}./|)*Z,l6[сu.r e2bcc| eEYk֬X,K<'c|ݣpPD]x9=iJqqnRcB9ihhhj]]]l{Zӵ [U&s< _*)-}G mmZ{{{>>pCoinn [S[[_o_2#cU ExssqqI* +Vq\bx ]АX8\pׯnB!%}}}BhR+-W\Rx\8##,<ﶶghȾ$߸׾lniimnnqd7uyԙgl7ZVh%|]Ϋ}?ܜq 1%e[W27z~cR" `|ؤ`暫,(/[zոYl˾wwk{FL#?= A>QTd7uŷ/祤f/'W!BzBȩB@O"B!B9ݡB!B͐B!B͐B!B͐B!B͐B!B͐~_a|ӦMLz^{mNpA: !Bh'>֭[Aon߾2> ~vg}ƍݜ[&B~_s9}}}b, 111>(FqocIHHpYA30ŀv,XcČ#hW^A#rdߌ {GVce8U1,tJ9\n1T E@`˷r ݱcG 'AD]]]olC! ?Kl6J.qW^gy;JVWWwmAɠ:۶mC; x9]ezIm޼E?Xv-bvP9_|QRRK/D .:==mZ#ʰ aH9˅g]M ҿعtR/8'64 xCИ+VA(HS]m^^Jȡ^3QM8Z f8!͍7800v!|aO=D[oE;www?iBp k 1t/K a#===uQRSe1ڵ CmlCcāTqi^"Ճ>QLfA}}}IBxع=]Vv``&؈LL c)#4:: Kd8fq`°Y8ҥ^ Ӄ0.0,,LFTWuplļvں~xݺugqRfs#xƇSL&*9Nă8G8 8E_{5;N|1黃 뮻m'qR9w^'Br cbbk\]2%FaP1ZQ;[`y7~&&&3<3gSe˖m޼ns?g8wߘn*sϥy_|q"3Nss=)G?}L`Sph :V&`M8IҔtzǠ;v?!O?tӦM/^lذaVݺu^Glb|YgaClgt:qjgΎ{pر/++K9?}FsIstAz-+B 7NO + gY~=Ҡ∳N-eeFPPPYYeiaG =2߼y)5 B"DâFK,qSAz,BpZ4ۢ"Ok(Z8=p~ o͚5h"4)A&.D#D+ fH^~e!ʍ~}_霯B!'åvm?bH*Yz_^^^111]t˕i0h.))wݻwRI;| b`ke˖^{5 $oK0(B 1-((%33󪫮ڶm۫2m0.y??3<."٣/޻nݺou37~gyfttTVySӸ,N믿7D;C8!=0fla+ =.Ӝt}9 b K`P&nT /ۋFWz8'tYA-$ }W\/^[lNr;_Bâe&+yuZmK.//__^{S`37|3yꩧ 됞=3tΏ:0!B.s1+!dဟ}O< !̆:c1Rjj; !dVU,'?9!BB!BB!Bq W!=ہB! !B!fH!B!fH!B!fH!B!fH!B!fH!B!fH!B!fH!B ÁnÉ6m_2xYYٗ;vݻ]y'B!TW%8lnnX,)t˖/_jjd21hNvd JHL .qWWl=ihh~~85-dl|gZ[=== ֭CI3$B!ǟ:ݻ(•n99*+! Uƶ}:R<T_W.qp<(a rA!!B9z{- l6$''宝;rUEEqqZv*II⭱1L_?Ncd"qkk+!qBbFGGrQFFXXؤ'%:d" tuk֮߷/>>>j"Ӄd+V {F#`<###00␦&J"A G 깶Ev`@h:))1py~~uU`@--#G>IrR_5EIapEKL-ZtYZzzG{;rnpL҂^"""ٝшVB- ؓ&8-"W(RS (/Gh榦ŋ 8%% !s _G+=B9}Ө(6űQ~~~>.RVvvyYYu.5-]b044[ v˂W^ *77wxx!oRxdAP܎ۑF1)ffe*+*pJZz2$cb3|B`]]ЭIfuhRSS5M_!-P ,//Z !CŻ:;Pk~]i)/rDsC* ؑ!wjŋXM.մd\s:^^^DCI BjJUGG47!Pj?R!!'ڿLI![B ؠ{`q6&a?˫("tB@? ,ZhFJ0dž$\c@AP8CVB###_PQP.h ?yttUe4Dl_|ll,TfA‡qlMM M`D  ޕl>1:ciiiP{DbUjPl@BJ@oi{a= ǃĆ8Clx0:4Z!%<(A4hAQA;`B3$F\@-$! 4ctE),Tq9_7 ) 19p'!(>!hV=M NV) ^_EECTFĥ_9RZZZxH#񏌌ؾ}Rݭ}%AP#l6 a}BL.Y֧j)UM-fEc:= (s8isHrycAT?zY5W7gѼ&4CBNhoZH!G( %ʂۻ7;;{ADIjuG{{qqq||| U iE:Ă4 ǧ_\:uр@˨ f 2//r%PufL]UU"[L&|`sKzTToW˷/͊/6.>,aK9fe䨦=L`B!dĤVͨZALaɂ`QX,ax̡aMMb电F'0aRCCQQQ==QM :;'GxCCCqqqg{t{L_5;&圁%%'c`DlO7 >I~~ nNE;7>Ϲ\6d0Dm2鼀- =Sn.!!B9 @F'kiJ`4A9i`\%,f3޲l)sJ]]]H@*T* uubκZ\<22wBb388(] Nᘞr$BqTww(qY&EZ%&&Qz{Qwȱ AV"6'/EP* 8\$hoYlŋ`[z77˹Q!$U__vr*s*ڹCBB]]87z=ÙZ[d{{Xth oh<3oZf;Zc &%|<䓡?OǿxlB!p o4͵ {{yTCSR*˱r0:F.#2qH|BBeEΝ;.iiiY8V-0 )9Y)-) P՞K,Az)1]\?0B>ʐ%yyn8?""";'o^ CɄGkkkwڅQ4NYS] {DhpaX?.3==ĬO<~뭷L\ ?k)((8όm۶{{nv|Rz{{qB裏d4â|~BȩY!aRSSOg(*;|BS_?>>cCMM}ed,UWS ^O$wGmO:Bß|I|º2B!'nguܱcɹKIeeePP)dR-p jooY0QrF>zkFFƤc뮛}?O$eeeÆ K.ʆ]veYKGW_!BfvZ[[ah_AKwWWbR sD=2#\:'** ?~ OSoo/&::/?!RTT?s$33ꫯBF-[,]؆[nڴ yRBs577ٳgX,3O? NLLbQ/%B====;wfeg3/6 w㧬TP2#3t;==_q!T7n\j^]{[AA_8׬ncƦp\V/nZ[[b qʺ[BBBmw 5 0!!aH裏3θ+{1PYY)ñXwޙ̧bw!`}?O r T{B+K!'̽KL N ~]:s=;Z-~@J !w`,+55UlT*{nٲUzs~!BrOEH9]$ηvvv 5pHߏB%3ܰa7g%q|bcRlե|}}eۈ',!B!fx<Ou~X bbb`<+ "8umV3g}eː!Osѩr73>ÞI9OXYB!BxҲgϞK¾Zx8),1))[n)..~*++=N ؑ0Y>]tݻw<.4FVx0I㱤k+RYB!h456fZBhǁ7lSOagtttOOsNII;;;J%~qs*WPFFF49l"A"ijj7eri+2ɱ\9*%BȜ Hғ,=% 鄐}mRޛ+&""".ݻwke˖]uU ;я~Fdoo믿^R!{O M$H* A~~?rL&Ӿ{ ֭+ ڵ+!!K4Xk֮l xl6Ð.X鴝jZ.-(榦 { -Z:ǣ4 Bѵ~:&F\1$''#eR:!y?dSժhkB!@`nz=kpp3&&FЭ nv -]ҒUWCC-͙YY"%CɁ@<'6˖/ZYQ̄PF֊4iV }EVfpIB!&! >NRyyyt:MA!8l^y82x\.VCBoV" {VQ!{bccDH J>Om)]UBsB!&p?:l0ѱ'&&Fק9n٬ViY,;~pL&甲 ,aK3bB80(qQbhPcGRQ^ؘ(͐!!BVWU ;3aaauuQv(Dnꁶ )2漎獵TS|X&6\._|4,xc[[۾{CBC!+V8[pB!S$dveHo{`YP툰!!!((eHltJ ÜTT-DLsitƾLFFbR"oU<B3$B!s#$4+lbPǴaOw haLLL}]bikkMaZf0qP*b&~800ߏ@V9C>ȧf##|! &%B9e mokSM,հ9I))MM%%%qB$/O," GL2[hHHbRixx!eegk4Xmd촘͵ ###^^*UzJcNRS_?>>fTBȑrDyrj3$b, ID!B!;4CB!BBI+B"B3$&<,,Lo* o88ZaK!:jZz}: LqbC=- L3\X->k'8~rH!/OOz}__0ñ~OUXXzz:`ŒPqxIqqTTTZ ܽkWfffSSbNMM Hс42r:.%W( ^7)xA464X];wdK.ң u:3 =~)`xF2P(IJJ:{{{SRRbbcFc]m`@SR&E&''#C󫫪p6(1"g``AA^ްܬ,OOOV::28 AAA\Uww7{Pur8&nhhXz`#"JK͎GV\V !FVH [84Pcv~I'6#!t/fPzgɂfہB7^^fخ(/c:*77V}ep!SUe嚵ky99PޞLKBr*G55ɞSeP\HZyYYuڤa2ACfO<pRRS#,¡F*JJNZYQRZ壮gb.#%G D'6wR= r1NCZ0H.]*|8=4kNX(+pdhKGGŋձqq_|BB5EV5ix68,7\T>ݍBhCj"Oxiqu 981Kt{-_.}4CB!"=DZ|"1íp9ιMyjHq&a1!)dmQ7gqN,e6P]l0)*5km9K=j8>>6EV(Q蜳NsYndT E=`Tqag^8_6.[6KMMM:̣igH!rʂBnC'$7@|xboT}ơ!ڕnrqbptA;af Hf6 h%J窙cLZS\9U '$ Nt 2Z^bbMLJknjUX`AĹF3r#"" N|`PmvU22֭_[l[Yg0͐B!t'!!lb[Tb\_W7>>>66VW[$'nkkkCsc1===}nrȽ~A]]m !!!0Q8!idtTzʅZiFM} ~X٠̣cbbPJSc,KiZqk Ʉ!*(":NlokAj6#1r7 FhCq^ܴr+!H??!.o 9jʼn+Nk7{դB!>/JO///>'7ڰwR2D=Ċ53atTVV ILJ2M聛`)22y[jt7Md dFS =OHLtAvڅlxO]{zyڢPh7f,VgAL/*}"v E}gPmlX훰-D[peOOw<+sWR^6qYEځm}wgoX}쌨;ROf?ݡ\̂ -^;o ZƖ') HKYʞ:n/bwYG<ֱ_)vj9Z8^Hh3b !B]]Ģ 1FJMM:ႜhV\AܸkܼdA}-S}m%Yd+e 7 Z=\\6b'L~^$ǎd+lf {B̠m>,{)+YtY?pP 6d`Ck7=-D4{=8}O BN;l6 W.S OgxDv[Ŵ<.1<0мl岾ߖ/d W<ʬڹ/!ЁT ^ˀ0swL$khƆoTMTRa̦tw.-;mch;*zEB^=[î!BjLi$4Cb7.;Xfܽ "niƔ#u >^`O__|⫎yxy,N76C8 7*vG_Gqޙo RO6|3W&ϩL8s=EONb^ʯ;nrhڡ/3yB!/8`kjҙ(T9}љןdžWۭG+]+Կzxjo|}wml{XL4UV{X,JV,vghfm܌h"K!KE&<Xlî g}j?`x`}ҜWƽd7 O͵5sU5cgzoZt3߽?9?vS#Uu3?Qޡ!hm,,nz:0/;[\/t>[B!c&VO~hƸ;n233n6807+0k|6(?;~5~~gaD1hYa.Z^5}w`^lJGbCl2SYaTXҵ#ܸa`O3B!Bh'6VFGP y!ʣ.QMoT$5;h=:pi&/.Pj?`G괏&ƫf?ϰG,IWׅe<F馒b!)3fАODxxģ-K}]]oȨ4!xf```ڵbOwWWuusrsU*OBtON{B!ap2?D6CZQQǫBBBRRRoxx8cbVS]P*J؏8$X&s6Cc6uohIq5k|}}yS >B!)=ݭmm+ooXBb"vtJ ΀!pVTTTZ&+mgZX,QQcYVj+ܽ{"sM-^ƣ>>GՊoWww~~xzE&''#PRRrJ~?ڊ8 !B -Z$`tpPJ.c_v\ ۚzh]$ls84 -hEI 2::o_yzyzzUpp؉Hll6wj݄@C!rT*!W0:B1l<`dIJJۑQQCüXCxWD8n:ho6rҌ^ͦ!!!b2W8gH!r7jłE~ҍpgoY9[<;2278027Z^^-pI2+;}M͐xɂBtuu9ϒN,9w͘KDEE577C5qBp9۲2B!nVp$LEtIggg@@%!xtQ~=Y8SBdo˄ z8皕B.zbB K d2f/F#^bdz ·o}gBW!0h0fFc%C4nkkUTTTOo~` ""¥FEG&Zju]m-\{Lf|G#ԩBfi}5iUGӿިjpb$ Z!yVX=Iɵ{ jaaaQQ*"2^PLT?蠫Sڙt<Gߏ=ii3Fǎ&H8tO!➓IYx=B$ {>B!ddd`0d2"OBN hB! {쉌 9.[V\__ 9 *!B)Ⱥ뽽W MgggJ(!fH!B)Q AZzz 䤂WB!B͐B!B͐B!B͐B!B͐B!B͐B!B͐B!B͐B!B͐B!BB!`09.r!!BؔrI !B!fH!B!fH!B!fH!B!fH!B!fH!B!fH!B!fH!B!fH!B!fH!B!fH!B!fH!B!fH!BѧAz),<,/cO!!B9nlhpc0vl~\<^_k.9s̙qqfH!BONa0O9% >;^_km cbc}}}MǸ8|B!'---##III6mΝyyyr 4MV[n劊###]պke˖E6[Muuoo/JIM), JnZmjkkSL9444`)]qll}|{dddp` I_Yršv8YNjd(8< JNN R]6[,AAAh^.0/ai`X1j5Eʱqo/t:dhgdIsSdZiXvڕԄaj]W[tHWLLJjjlĆt@`FmT*< j:{bjڵ.ZRqBՅ8p@TqFFplsrvB!564dfeA1.B( z0CX/ޅff8 ATt4`0degsB˪hook8rQFFxxr\zjD*+jinE,^QRR0'd%Zҥ!]2$GZɬX|99ȏ0@7.CG %KВ }@Qex!n,:ḼSzkZ#x~DDN ->Lr*p:\idTTll'5>=B!䔥;jmA T*0  aCm:%AAbhsѐ ZV -v2MQpDL4-"_hĻ8JL.!%}j5<Hj RMZ KOOF" 3 22B`esJ憄D6P}ĴیLWkT{uD5[IIIb䐣!Z-AP؉ 3$B9e9̓ ҂1lM.v 1oiipc S[S:ׇ:Md<'4 9`4 d294[^^}ңI{z^~k"jgZ,w\')@Ho6wL6(L-|"ŋqq*j9~RsI:OcJɿz!!B2q;VC[6XNS*0-9-Z3snN0Ck2fC+L_Wyd4=jZT׬ꪯL\;c03 2` N<6!Bi,8xhhHz9d0Hn!Je__ah(1{ߺ^$p1.OgM&i84$yXl\"2:er9qMxiXPѽ-H&t\|;m0f96IM,`9Nz޿5=Z^b`}0ntâ榦{egeڙ !BdZ[z=h_fbJ0$4TѡT*D\JK8Qؘ2DO ȃ)"E%~jT!00Y!ȺZ\| Z4569tPI£V-Hf6z|  O]_sz lY̦ZV<&C}_LfS"Yēg< ZmBberrr0<2x5)!BHXXXjZedLf.Tv|hXxxwO={9+Vә4XJCC'/v"=؏"y!) \Ѐ`؞,'7R2n3.khZ[[=eEҤj4b(oc ** ڼ>OOd<|= ;w&Od fH!B9 /ZLZ{ !B!fH!B!fH!B+,K}}}fllL<(*JLWf###'EK :;),F;ϐB!Ԥ ށ1xZcc#+}"hrΞw$+CBRSS?tN764,[|Ad2 D2Fl{dHT*M?J{zyGDD$$&1fH!BfK\\\bRlﯫ"+À^$ɰlZ$%<W]UtPم{DF$/S^^ƙθr9acllLQVZZn13Q:hhMK+fH!BfX`t>N٩V,ڂlii  "<" !5LSw'^i\ eQA@TPqAMY^5 " q:A&m~'f6/ΐJPT&EZZ"eñ%yrubsyif{{3gg~L&* E`jow:w>,."DїQ@媛SGmPÇr|Ywg{chz{Uc&95%6A_z˓'r`618:^;dCtttLIU`O!SUZW0Hҍyّ׋҂X,vMɄ܅PQ.pNËT2X /..&\.ѣ6 s\occ}lܻ\x<bNIfCknn*m`ph>9sHzI<{{_~AC ] .Dn8qGr G\|:6չՍU=;åDDjx!N; ~~~pGl"nqc`SX,~$%d^c66-*AD:X}Zɟbsbb+zИb 2heN[{Ĥ +e2Zm3^x _5h*\ND`&P0qBH3x(F"͓%d2^u7`f2yYG # 7\ 8gHDDDBCrCBh'\.yU࠼i4"~h6|@.8???::Z_[wv'ˉşbS93flKfYH֖Qi.qkk `n~`0}^\^^FᥥGNBʐ&R\=6F8LNNN*siXDEXױ nt0;Hr$7_# ɐg084S5|W?WI}r8WKшy-g?d:qK*k(Q.D3D쩮QgXTZ[[3uR*#UP10p+3 z>h{{D.jUӞU]7fӧ{{{mz=29*d2~۷xLwW$.{Ѩ\ByN7QJJ&Uhڢ"M5qB^f%s/lŅ<=11dtoگLWJVe^Q&S,=|)ȥakEA@DG O)" #$/ }9]5?Ihq||,VNF__;<8D@~ FbIZzĊJ(?#5K ypp088=AY2:EJno͝f1yXVqRx~Avp"NfP(`$xn7ڌuy54w^wuY;e-64LHAȱh!uALmJdECDDDD_ al||ww7!&;33i?*h0L\%6<2kl=u~k^18˗9CC٫ 7윘8zē]n ([X^ZBh]VDZhTY5H9(""rSSKsА*޾DM~NqONV~qk`k71ͺuBRI " yZmX7-@%& $߿Gjn$J%ͺDDDDDD|>Uh$wgx%^_$b2$""""{MJ9<2*wo>Ç6#,7 sIt}CW!}X4T.Z Zu`0ܙJzbAnQD & 1vsoi6#d*OA&(/..f؜?A2++`]rO*FhXPIHM8qpp"U$Rى=8}gP,=ȐU hmij8 'vz9S]ۗbxxpĜ!F mNpFtCĸ)0"acl0E`jow:"7~X\a8]}>Ԉ Wp0|Ѹv1bPsf2$"""/Ő"&wtt d0oxDlv;#oLMO7.6f8wfvAY5Ikkk.V*\__Q  B"GFT8qRU*x`?|GGUoZc`/Jcl:'&Ptc}lLNNb(*EDPưM)DB06}UA4:#C:f%(ھT ` w`0 _T.1uL i3I2Ⱥkه777-f9FGË&OC- $ߏHb#D4$Vf5]RDDJ }< lx J \$X4k]͒5 Օdj I?7sA,(ERZ,C$&bʟNb@&bZq\b'ڃS53hm `|:reS# (b1J F2;]*"cWwr*.% obP7I7@n7UmpΐeەCLfcclv@Z' {DЅvtt$"\!&٪ze ]|9)`0GNNW>@d|.'"T;:B4n6C칸}0g%x̓rt!)AEC:EB qJ"+<6;;[rGHϯ ^^^~X\|bRU^zS&{ݿ˾r9d9y&l}zzz0mK>eIiuh@(ojꢢ:bN-)PLLDDDDT竞VҬ_AB(K_ģ(Ze!L6X{ٸ[8>^ZZB],hè񪵂 yr9 *W@YY^w:'HכnuLkeD}&q bZ5]kIt:\611ff1&HVמhnN+Ҿ(o_T+D=GNCQ~07}bp[>ZF1Ynz M֨ 8EQ,b3kpSʷ+Z2 >'̌mCꑞ*'C?+i+BHi.yN!fx<.v&fI ˋ$13Z-ҳjn^(.\.k Hߕҝ~JdKvvJF&&C""""z% +cSI:` ¦b j^9*BKK7נLhbT*|>ek `[jR"""js9qS iij':ŲuM!]]o 7(Sfِ@޿{פR ayGAj{<>OV#kM\=E@a+v;$UAÆVWWK"J' n/,, OMO{<>ed8DF$Sf'arKn7.`B6j&T ƮODXTB6Ҥ}{?]dHDDDDDdHDDDDDDLDDDDDDdHDDDDDDLDDDDDDdHDDDDwپdzq?^(8_'"""9eT2)~~ ekZ}?Uloo;O1?l}PRe2Fs9*շmCvc^E_tW(ˉxɐ9b2$"""BpϏ477cS׋|77U|)޵lccxDNN.//:ʴvud2gggZvph:]X|fTXVt:D@0h4#pX4\.mwgECݎSPE*tG{{E?,.;PA7(0H5;uX 'login', 'description' => __( 'This login widget lets you add a login form in the sidebar.', 'profile-builder' ) ); $control_ops = array( 'width' => 300, 'height' => 350, 'id_base' => 'wppb-login-widget' ); do_action( 'wppb_login_widget_settings', $widget_ops, $control_ops); parent::__construct( 'wppb-login-widget', __('Profile Builder Login Widget', 'profile-builder'), $widget_ops, $control_ops ); } function widget( $args, $instance ) { extract( $args ); $title = apply_filters( 'wppb_login_widget_title', ( isset( $instance['title'] ) ? $instance['title'] : '' ) ); $redirect = ( isset( $instance['redirect'] ) ? trim( $instance['redirect'] ) : '' ); $register = ( isset( $instance['register'] ) ? trim( $instance['register'] ) : '' ); $lostpass = ( isset( $instance['lostpass'] ) ? trim( $instance['lostpass'] ) : '' ); echo $before_widget; if ( ! empty( $title ) ) echo $before_title . $title . $after_title; echo do_shortcode('[wppb-login display="false" register_url="'.$register.'" lostpassword_url="'.$lostpass.'" redirect="'.$redirect.'"]'); do_action( 'wppb_login_widget_display', $args, $instance); echo $after_widget; } /** * Update the widget settings. */ function update( $new_instance, $old_instance ) { $instance = $old_instance; $instance['title'] = strip_tags( $new_instance['title'] ); $instance['redirect'] = strip_tags( $new_instance['redirect'] ); $instance['register'] = strip_tags( $new_instance['register'] ); $instance['lostpass'] = strip_tags( $new_instance['lostpass'] ); do_action( 'wppb_login_widget_update_action', $new_instance, $old_instance); return $instance; } function form( $instance ) { $defaults = array( 'title' => __('Login', 'profile-builder'), 'redirect' => '', 'register' => '', 'lostpass' => '' ); $instance = wp_parse_args( (array) $instance, $defaults ); ?>

            jQuery('html, body').animate({scrollTop: jQuery('#wppb_login').offset().top }) " . $content; } //add_filter('wppb_login_wp_error_message', 'wppb_scroll_down_to_widget'); function wppb_require_jquery(){ wp_enqueue_script( 'jquery' ); } //add_action( 'wp_enqueue_scripts', 'wppb_require_jquery' );features/class-list-table.php000066600000057760152141651160012263 0ustar00 '', 'singular' => '', 'ajax' => false, 'screen' => null, ) ); $this->screen = convert_to_screen( $args['screen'] ); add_filter( "manage_{$this->screen->id}_columns", array( $this, 'get_columns' ), 0 ); if ( !$args['plural'] ) $args['plural'] = $this->screen->base; $args['plural'] = sanitize_key( $args['plural'] ); $args['singular'] = sanitize_key( $args['singular'] ); $this->_args = $args; if ( $args['ajax'] ) { // wp_enqueue_script( 'list-table' ); add_action( 'admin_footer', array( $this, '_js_vars' ) ); } } /** * Checks the current user's permissions * @uses wp_die() * * @since 3.1.0 * @access public * @abstract */ function ajax_user_can() { die( 'function WP_List_Table::ajax_user_can() must be over-ridden in a sub-class.' ); } /** * Prepares the list of items for displaying. * @uses WP_List_Table::set_pagination_args() * * @since 3.1.0 * @access public * @abstract */ function prepare_items() { die( 'function WP_List_Table::prepare_items() must be over-ridden in a sub-class.' ); } /** * An internal method that sets all the necessary pagination arguments * * @param array $args An associative array with information about the pagination * @access protected */ function set_pagination_args( $args ) { $args = wp_parse_args( $args, array( 'total_items' => 0, 'total_pages' => 0, 'per_page' => 0, ) ); if ( !$args['total_pages'] && $args['per_page'] > 0 ) $args['total_pages'] = ceil( $args['total_items'] / $args['per_page'] ); // redirect if page number is invalid and headers are not already sent if ( ! headers_sent() && ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) && $args['total_pages'] > 0 && $this->get_pagenum() > $args['total_pages'] ) { wp_safe_redirect( add_query_arg( 'paged', $args['total_pages'] ) ); exit; } $this->_pagination_args = $args; } /** * Access the pagination args * * @since 3.1.0 * @access public * * @param string $key * @return array */ function get_pagination_arg( $key ) { if ( 'page' == $key ) return $this->get_pagenum(); if ( isset( $this->_pagination_args[$key] ) ) return $this->_pagination_args[$key]; } /** * Whether the table has items to display or not * * @since 3.1.0 * @access public * * @return bool */ function has_items() { return !empty( $this->items ); } /** * Message to be displayed when there are no items * * @since 3.1.0 * @access public */ function no_items() { _e( 'No items found.' ); } /** * Display the search box. * * @since 3.1.0 * @access public * * @param string $text The search button text * @param string $input_id The search input id */ function search_box( $text, $input_id ) { if ( empty( $_REQUEST['s'] ) && !$this->has_items() ) return; $input_id = $input_id . '-search-input'; if ( ! empty( $_REQUEST['orderby'] ) ) echo ''; if ( ! empty( $_REQUEST['order'] ) ) echo ''; if ( ! empty( $_REQUEST['post_mime_type'] ) ) echo ''; if ( ! empty( $_REQUEST['detached'] ) ) echo ''; ?> link ) with the list * of views available on this table. * * @since 3.1.0 * @access protected * * @return array */ function get_views() { return array(); } /** * Display the list of views available on this table. * * @since 3.1.0 * @access public */ function views() { $views = $this->get_views(); /** * Filter the list of available list table views. * * The dynamic portion of the hook name, $this->screen->id, refers * to the ID of the current screen, usually a string. * * @since 3.5.0 * * @param array $views An array of available list table views. */ $views = apply_filters( "views_{$this->screen->id}", $views ); if ( empty( $views ) ) return; echo "
              \n"; foreach ( $views as $class => $view ) { $views[ $class ] = "\t
            • $view"; } echo implode( " |
            • \n", $views ) . "\n"; echo "
            "; } /** * Get an associative array ( option_name => option_title ) with the list * of bulk actions available on this table. * * @since 3.1.0 * @access protected * * @return array */ function get_bulk_actions() { return array(); } /** * Display the bulk actions dropdown. * * @since 3.1.0 * @access public */ function bulk_actions() { if ( is_null( $this->_actions ) ) { $no_new_actions = $this->_actions = $this->get_bulk_actions(); /** * Filter the list table Bulk Actions drop-down. * * The dynamic portion of the hook name, $this->screen->id, refers * to the ID of the current screen, usually a string. * * This filter can currently only be used to remove bulk actions. * * @since 3.5.0 * * @param array $actions An array of the available bulk actions. */ $this->_actions = apply_filters( "bulk_actions-{$this->screen->id}", $this->_actions ); $this->_actions = array_intersect_assoc( $this->_actions, $no_new_actions ); $two = ''; } else { $two = '2'; } if ( empty( $this->_actions ) ) return; echo "\n"; submit_button( __( 'Apply' ), 'action', false, false, array( 'id' => "doaction$two" ) ); echo "\n"; } /** * Get the current action selected from the bulk actions dropdown. * * @since 3.1.0 * @access public * * @return string|bool The action name or False if no action was selected */ function current_action() { if ( isset( $_REQUEST['action'] ) && -1 != $_REQUEST['action'] ) return sanitize_text_field( $_REQUEST['action'] ); if ( isset( $_REQUEST['action2'] ) && -1 != $_REQUEST['action2'] ) return sanitize_text_field( $_REQUEST['action2'] ); return false; } /** * Generate row actions div * * @since 3.1.0 * @access protected * * @param array $actions The list of actions * @param bool $always_visible Whether the actions should be always visible * @return string */ function row_actions( $actions, $always_visible = false ) { $action_count = count( $actions ); $i = 0; if ( !$action_count ) return ''; $out = '
            '; foreach ( $actions as $action => $link ) { ++$i; ( $i == $action_count ) ? $sep = '' : $sep = ' | '; $out .= "$link$sep"; } $out .= '
            '; return $out; } /** * Display a monthly dropdown for filtering items * * @since 3.1.0 * @access protected */ function months_dropdown( $post_type ) { global $wpdb, $wp_locale; $months = $wpdb->get_results( $wpdb->prepare( " SELECT DISTINCT YEAR( post_date ) AS year, MONTH( post_date ) AS month FROM $wpdb->posts WHERE post_type = %s ORDER BY post_date DESC ", $post_type ) ); /** * Filter the 'Months' drop-down results. * * @since 3.7.0 * * @param object $months The months drop-down query results. * @param string $post_type The post type. */ $months = apply_filters( 'months_dropdown_results', $months, $post_type ); $month_count = count( $months ); if ( !$month_count || ( 1 == $month_count && 0 == $months[0]->month ) ) return; $m = isset( $_GET['m'] ) ? (int) $_GET['m'] : 0; ?> __( 'List View' ), 'excerpt' => __( 'Excerpt View' ) ); ?>
            $title ) { $class = ( $current_mode == $mode ) ? 'class="current"' : ''; echo "$title\n"; } ?>
            '; echo "" . number_format_i18n( get_comments_number() ) . ""; if ( $pending_comments ) echo ''; } /** * Get the current page number * * @since 3.1.0 * @access protected * * @return int */ function get_pagenum() { $pagenum = isset( $_REQUEST['paged'] ) ? absint( $_REQUEST['paged'] ) : 0; if( isset( $this->_pagination_args['total_pages'] ) && $pagenum > $this->_pagination_args['total_pages'] ) $pagenum = $this->_pagination_args['total_pages']; return max( 1, $pagenum ); } /** * Get number of items to display on a single page * * @since 3.1.0 * @access protected * * @return int */ function get_items_per_page( $option, $default = 20 ) { $per_page = (int) get_user_option( $option ); if ( empty( $per_page ) || $per_page < 1 ) $per_page = $default; /** * Filter the number of items to be displayed on each page of the list table. * * The dynamic hook name, $option, refers to the per page option depending * on the type of list table in use. Possible values may include: * 'edit_comments_per_page', 'sites_network_per_page', 'site_themes_network_per_page', * 'themes_netework_per_page', 'users_network_per_page', 'edit_{$post_type}', etc. * * @since 2.9.0 * * @param int $per_page Number of items to be displayed. Default 20. */ return (int) apply_filters( $option, $per_page ); } /** * Display the pagination. * * @since 3.1.0 * @access protected */ function pagination( $which ) { if ( empty( $this->_pagination_args ) ) return; extract( $this->_pagination_args, EXTR_SKIP ); $output = '' . sprintf( _n( '1 item', '%s items', $total_items ), number_format_i18n( $total_items ) ) . ''; $current = $this->get_pagenum(); $current_url = set_url_scheme( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ); $current_url = remove_query_arg( array( 'hotkeys_highlight_last', 'hotkeys_highlight_first' ), $current_url ); $page_links = array(); $disable_first = $disable_last = ''; if ( $current == 1 ) $disable_first = ' disabled'; if ( $current == $total_pages ) $disable_last = ' disabled'; $page_links[] = sprintf( "%s", 'first-page button' . $disable_first, esc_attr__( 'Go to the first page' ), esc_url( remove_query_arg( 'paged', $current_url ) ), '«' ); $page_links[] = sprintf( "%s", 'prev-page button' . $disable_first, esc_attr__( 'Go to the previous page' ), esc_url( add_query_arg( 'paged', max( 1, $current-1 ), $current_url ) ), '‹' ); if ( 'bottom' == $which ) $html_current_page = $current; else $html_current_page = sprintf( "", esc_attr__( 'Current page' ), $current, strlen( $total_pages ) ); $html_total_pages = sprintf( "%s", number_format_i18n( $total_pages ) ); $page_links[] = '' . sprintf( _x( '%1$s of %2$s', 'paging' ), $html_current_page, $html_total_pages ) . ''; $page_links[] = sprintf( "%s", 'next-page button' . $disable_last, esc_attr__( 'Go to the next page' ), esc_url( add_query_arg( 'paged', min( $total_pages, $current+1 ), $current_url ) ), '›' ); $page_links[] = sprintf( "%s", 'last-page button' . $disable_last, esc_attr__( 'Go to the last page' ), esc_url( add_query_arg( 'paged', $total_pages, $current_url ) ), '»' ); $pagination_links_class = 'pagination-links'; if ( ! empty( $infinite_scroll ) ) $pagination_links_class = ' hide-if-js'; $output .= "\n" . join( "\n", $page_links ) . ''; if ( $total_pages ) $page_class = $total_pages < 2 ? ' one-page' : ''; else $page_class = ' no-pages'; $this->_pagination = "
            $output
            "; echo $this->_pagination; } /** * Get a list of columns. The format is: * 'internal-name' => 'Title' * * @since 3.1.0 * @access protected * @abstract * * @return array */ function get_columns() { die( 'function WP_List_Table::get_columns() must be over-ridden in a sub-class.' ); } /** * Get a list of sortable columns. The format is: * 'internal-name' => 'orderby' * or * 'internal-name' => array( 'orderby', true ) * * The second format will make the initial sorting order be descending * * @since 3.1.0 * @access protected * * @return array */ function get_sortable_columns() { return array(); } /** * Get a list of all, hidden and sortable columns, with filter applied * * @since 3.1.0 * @access protected * * @return array */ function get_column_info() { if ( isset( $this->_column_headers ) ) return $this->_column_headers; $columns = get_column_headers( $this->screen ); $hidden = get_hidden_columns( $this->screen ); $sortable_columns = $this->get_sortable_columns(); /** * Filter the list table sortable columns for a specific screen. * * The dynamic portion of the hook name, $this->screen->id, refers * to the ID of the current screen, usually a string. * * @since 3.5.0 * * @param array $sortable_columns An array of sortable columns. */ $_sortable = apply_filters( "manage_{$this->screen->id}_sortable_columns", $sortable_columns ); $sortable = array(); foreach ( $_sortable as $id => $data ) { if ( empty( $data ) ) continue; $data = (array) $data; if ( !isset( $data[1] ) ) $data[1] = false; $sortable[$id] = $data; } $this->_column_headers = array( $columns, $hidden, $sortable ); return $this->_column_headers; } /** * Return number of visible columns * * @since 3.1.0 * @access public * * @return int */ function get_column_count() { list ( $columns, $hidden ) = $this->get_column_info(); $hidden = array_intersect( array_keys( $columns ), array_filter( $hidden ) ); return count( $columns ) - count( $hidden ); } /** * Print column headers, accounting for hidden and sortable columns. * * @since 3.1.0 * @access protected * * @param bool $with_id Whether to set the id attribute or not */ function print_column_headers( $with_id = true ) { list( $columns, $hidden, $sortable ) = $this->get_column_info(); $current_url = set_url_scheme( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ); $current_url = remove_query_arg( 'paged', $current_url ); if ( isset( $_GET['orderby'] ) ) $current_orderby = $_GET['orderby']; else $current_orderby = ''; if ( isset( $_GET['order'] ) && 'desc' == $_GET['order'] ) $current_order = 'desc'; else $current_order = 'asc'; if ( ! empty( $columns['cb'] ) ) { static $cb_counter = 1; $columns['cb'] = '' . ''; $cb_counter++; } foreach ( $columns as $column_key => $column_display_name ) { $class = array( 'manage-column', "column-$column_key" ); $style = ''; if ( in_array( $column_key, $hidden ) ) $style = 'display:none;'; if ( 'cb' == $column_key ) { $class[] = 'check-column'; $style .= ' padding: 10px 0 10px 3px;'; } elseif ( in_array( $column_key, array( 'posts', 'comments', 'links' ) ) ) $class[] = 'num'; $style = ' style="' . $style . '"'; if ( isset( $sortable[$column_key] ) ) { list( $orderby, $desc_first ) = $sortable[$column_key]; if ( $current_orderby == $orderby ) { $order = 'asc' == $current_order ? 'desc' : 'asc'; $class[] = 'sorted'; $class[] = $current_order; } else { $order = $desc_first ? 'desc' : 'asc'; $class[] = 'sortable'; $class[] = $desc_first ? 'asc' : 'desc'; } $column_display_name = '' . $column_display_name . ''; } $id = $with_id ? "id='$column_key'" : ''; if ( !empty( $class ) ) $class = "class='" . join( ' ', $class ) . "'"; echo "$column_display_name"; } } /** * Display the table * * @since 3.1.0 * @access public */ function display() { extract( $this->_args ); $this->display_tablenav( 'top' ); ?> print_column_headers(); ?> print_column_headers( false ); ?> > display_rows_or_placeholder(); ?>
            display_tablenav( 'bottom' ); } /** * Get a list of CSS classes for the tag * * @since 3.1.0 * @access protected * * @return array */ function get_table_classes() { return array( 'widefat', 'fixed', $this->_args['plural'] ); } /** * Generate the table navigation above or below the table * * @since 3.1.0 * @access protected */ function display_tablenav( $which ) { if ( 'top' == $which ) wp_nonce_field( 'bulk-' . $this->_args['plural'] ); ?>
            bulk_actions(); ?>
            extra_tablenav( $which ); $this->pagination( $which ); ?>
            part of the table * * @since 3.1.0 * @access protected */ function display_rows_or_placeholder() { if ( $this->has_items() ) { $this->display_rows(); } else { list( $columns, $hidden ) = $this->get_column_info(); echo ''; } } /** * Generate the table rows * * @since 3.1.0 * @access protected */ function display_rows() { foreach ( $this->items as $item ) $this->single_row( $item ); } /** * Generates content for a single row of the table * * @since 3.1.0 * @access protected * * @param object $item The current item */ function single_row( $item ) { static $row_class = ''; $row_class = ( $row_class == '' ? ' class="alternate"' : '' ); echo ''; $this->single_row_columns( $item ); echo ''; } /** * Generates the columns for a single row of the table * * @since 3.1.0 * @access protected * * @param object $item The current item */ function single_row_columns( $item ) { list( $columns, $hidden ) = $this->get_column_info(); foreach ( $columns as $column_name => $column_display_name ) { $class = "class='$column_name column-$column_name'"; $style = ''; if ( in_array( $column_name, $hidden ) ) $style = ' style="display:none;"'; $attributes = "$class$style"; if ( 'cb' == $column_name ) { echo ''; } elseif ( method_exists( $this, 'column_' . $column_name ) ) { echo ""; } else { echo ""; } } } /** * Handle an incoming ajax request (called from admin-ajax.php) * * @since 3.1.0 * @access public */ function ajax_response() { $this->prepare_items(); extract( $this->_args ); extract( $this->_pagination_args, EXTR_SKIP ); ob_start(); if ( ! empty( $_REQUEST['no_placeholder'] ) ) $this->display_rows(); else $this->display_rows_or_placeholder(); $rows = ob_get_clean(); $response = array( 'rows' => $rows ); if ( isset( $total_items ) ) $response['total_items_i18n'] = sprintf( _n( '1 item', '%s items', $total_items ), number_format_i18n( $total_items ) ); if ( isset( $total_pages ) ) { $response['total_pages'] = $total_pages; $response['total_pages_i18n'] = number_format_i18n( $total_pages ); } die( json_encode( $response ) ); } /** * Send required variables to JavaScript land * * @access private */ function _js_vars() { $args = array( 'class' => get_class( $this ), 'screen' => array( 'id' => $this->screen->id, 'base' => $this->screen->base, ) ); printf( "\n", json_encode( $args ) ); } }features/roles-editor/assets/js/roles-editor.js000066600000061513152141651160015672 0ustar00var wppb_re_capabilities_group = []; var wppb_re_new_capabilities = {}; var wppb_re_current_role_capabilities = jQuery.extend( {}, wppb_roles_editor_data.current_role_capabilities ); var wppb_re_unsaved_capabilities = {}; var wppb_re_capabilities_to_delete = {}; jQuery( document ).ready( function() { // Disable Enter key jQuery( window ).keydown( function( e ) { if( typeof e.target.id !== "undefined" && e.target.id === 'post-search-input' ) return true; if( e.keyCode == 13 ) { event.preventDefault(); return false; } } ); // Disable the role title field when editing a role if( wppb_roles_editor_data.current_screen_action != 'add' ) { jQuery( '.post-type-wppb-roles-editor input#title' ).attr( 'disabled', 'disabled' ); } var table_roles = jQuery( '.post-type-wppb-roles-editor .wp-list-table.posts tr .row-actions' ); if( jQuery( table_roles ).find( '.default_role' ) ) { jQuery( ' — ' + wppb_roles_editor_data.default_role_text + '' ).insertAfter( jQuery( table_roles ).find( '.default_role' ).parent().parent().find( 'strong .row-title' ) ); } if( jQuery( table_roles ).find( '.delete_notify.your_role' ) ) { jQuery( ' — ' + wppb_roles_editor_data.your_role_text + '' ).insertAfter( jQuery( table_roles ).find( '.delete_notify.your_role' ).parent().parent().find( 'strong .row-title' ) ); } // Dynamically change value of the Role Slug field jQuery( '.post-type-wppb-roles-editor #titlewrap' ).find( '#title' ).change( function() { if( ! jQuery( '.post-type-wppb-roles-editor #wppb-role-slug' ).val() ) { jQuery( '.post-type-wppb-roles-editor #wppb-role-slug' ).val( jQuery( this ).val().toLowerCase() ); } } ); // Create an object with grouped capabilities for the Add Capability select2 var counter = 1; jQuery.each( wppb_roles_editor_data.capabilities, function( key, value ) { var capabilities_single_group = {}; if( key != 'post_types' ) { capabilities_single_group = wppb_re_create_capabilities_group( key, value, counter ); wppb_re_capabilities_group.push( capabilities_single_group ); counter++; } else if( key == 'post_types' ) { jQuery.each( value, function( key, value ) { capabilities_single_group = wppb_re_create_capabilities_group( key, value, counter ); wppb_re_capabilities_group.push( capabilities_single_group ); counter++; } ); } } ); // Display the current role capabilities (on single role page) wppb_re_display_capabilities( 'all' ); // Check for already added capabilities and disable them before select2 initialization wppb_re_disable_select_capabilities( wppb_re_capabilities_group, wppb_roles_editor_data.current_role_capabilities, 'add' ); if( wppb_re_getParameterByName( 'wppb_re_clone' ) ) { var data = { 'action' : 'get_role_capabilities', 'security' : jQuery( '.post-type-wppb-roles-editor #wppb-re-ajax-nonce' ).val(), 'role' : wppb_re_getParameterByName( 'wppb_re_clone' ) }; jQuery( '.post-type-wppb-roles-editor .wppb-role-edit-no-cap' ).remove(); jQuery.post( wppb_roles_editor_data.ajaxUrl, data, function( response ) { if( response != 'no_caps' ) { jQuery( '.post-type-wppb-roles-editor .wppb-re-spinner-container' ).hide(); wppb_re_current_role_capabilities = jQuery.extend( wppb_re_current_role_capabilities, JSON.parse( response ) ); wppb_re_display_capabilities( 'all' ); wppb_re_disable_select_capabilities( wppb_re_capabilities_group, wppb_re_current_role_capabilities, 'add' ); } else { jQuery( '.wppb-re-spinner-container' ).hide(); wppb_re_no_capabilities_found(); } } ); } // Delete a capability jQuery( '.post-type-wppb-roles-editor #wppb-role-edit-table' ).on( 'click', 'a.wppb-delete-capability-link', function() { if( ( wppb_roles_editor_data.current_user_role && jQuery.inArray( jQuery( this ).closest( 'span.wppb-delete-capability' ).siblings( 'span.wppb-capability' ).text(), wppb_roles_editor_data.admin_capabilities ) === -1 ) || ! wppb_roles_editor_data.current_user_role ) { jQuery( this ).closest( 'div.wppb-role-edit-table-entry' ).remove(); var deleted_capability = {}; deleted_capability[jQuery( this ).closest( 'span.wppb-delete-capability' ).siblings( 'span.wppb-capability' ).text()] = jQuery( this ).closest( 'span.wppb-delete-capability' ).siblings( 'span.wppb-capability' ).text(); wppb_re_capabilities_to_delete[jQuery( this ).closest( 'span.wppb-delete-capability' ).siblings( 'span.wppb-capability' ).text()] = jQuery( this ).closest( 'span.wppb-delete-capability' ).siblings( 'span.wppb-capability' ).text(); delete wppb_re_current_role_capabilities[jQuery( this ).closest( 'span.wppb-delete-capability' ).siblings( 'span.wppb-capability' ).text()]; delete wppb_re_new_capabilities[jQuery( this ).closest( 'span.wppb-delete-capability' ).siblings( 'span.wppb-capability' ).text()]; if( jQuery( '.wppb-add-new-cap-input' ).is( ':visible' ) ) { wppb_re_change_select_to_input(); } wppb_re_disable_select_capabilities( wppb_re_capabilities_group, deleted_capability, 'delete' ); if( jQuery( '.wppb-role-edit-table-entry' ).length < 1 ) { wppb_re_no_capabilities_found(); } wppb_re_number_of_capabilities(); } } ); // Change between select2 with all existing capabilities and input to add a new capability jQuery( '.post-type-wppb-roles-editor a.wppb-add-new-cap-link' ).click( function() { wppb_re_change_select_to_input(); } ); jQuery( '.post-type-wppb-roles-editor .wppb-role-editor-tab' ).click( function() { wppb_re_tabs_handler( jQuery( this ) ); } ); wppb_re_form_submit(); wppb_re_number_of_capabilities(); // Display number of users for current role if( wppb_roles_editor_data.current_role_users_count !== null ) { jQuery( '.post-type-wppb-roles-editor .misc-pub-section.misc-pub-section-users span' ).find( 'strong' ).text( wppb_roles_editor_data.current_role_users_count ); } // Check if role has a title or return an error if not jQuery( 'body' ).on( 'submit.edit-post', '#post', function() { if( jQuery( '.post-type-wppb-roles-editor #title' ).val().replace( / /g, '' ).length === 0 ) { window.alert( wppb_roles_editor_data.role_name_required_error_text ); jQuery( '.post-type-wppb-roles-editor #major-publishing-actions .spinner' ).hide(); jQuery( '.post-type-wppb-roles-editor #major-publishing-actions' ).find( ':button, :submit, a.submitdelete, #post-preview' ).removeClass( 'disabled' ); jQuery( '.post-type-wppb-roles-editor #title' ).focus(); wppb_re_form_submit(); return false; } else { jQuery( '.post-type-wppb-roles-editor #major-publishing-actions .spinner' ).show(); } } ); } ); function wppb_re_form_submit() { jQuery( '.post-type-wppb-roles-editor #publishing-action #publish' ).unbind( 'click' ).one( 'click', function( e ) { e.preventDefault(); jQuery( this ).addClass( 'disabled' ); jQuery( this ).siblings( '.spinner' ).addClass( 'is-active' ); wppb_re_update_role_capabilities(); } ); } function wppb_re_no_capabilities_found() { jQuery( '.post-type-wppb-roles-editor #wppb-role-edit-table' ).find( '#wppb-role-edit-caps-clear' ).after( '
            ' + '' + wppb_roles_editor_data.no_capabilities_found_text + '' + '
            ' ); } function wppb_re_number_of_capabilities() { var count = 0; var i; for( i in wppb_re_current_role_capabilities ) { if( wppb_re_current_role_capabilities.hasOwnProperty( i ) ) { count++; } } jQuery( '.post-type-wppb-roles-editor .misc-pub-section.misc-pub-section-capabilities span' ).find( 'strong' ).text( count ); } function wppb_re_tabs_handler( tab ) { wppb_re_display_capabilities( jQuery( tab ).data( 'wppb-re-tab' ) ); jQuery( '.post-type-wppb-roles-editor .wppb-role-editor-tab-title.wppb-role-editor-tab-active' ).removeClass( 'wppb-role-editor-tab-active' ); jQuery( tab ).closest( '.wppb-role-editor-tab-title' ).addClass( 'wppb-role-editor-tab-active' ); } function wppb_re_disable_select_capabilities( wppb_re_capabilities_group, capabilities, action ) { if( capabilities != null ) { jQuery.each( wppb_re_capabilities_group, function( key, value ) { jQuery.each( value['children'], function( key, value ) { if( value['text'] in capabilities ) { if( action == 'add' ) { value['disabled'] = true; } else if( action == 'delete' ) { value['disabled'] = false; } } } ); } ); } wppb_re_initialize_select2( wppb_re_capabilities_group ); } function wppb_re_initialize_select2( wppb_re_capabilities_group ) { var capabilities_select = jQuery( '.wppb-capabilities-select' ); capabilities_select.empty(); capabilities_select.select2( { placeholder: wppb_roles_editor_data.select2_placeholder_text, allowClear: true, data: wppb_re_capabilities_group, templateResult: function( data ) { if( data.id == null || jQuery.inArray( data.text, wppb_roles_editor_data.capabilities['custom']['capabilities'] ) === -1 ) { return data.text; } var option = jQuery( '' ); var delete_cap = jQuery( '' + wppb_roles_editor_data.delete_permanently_text + '' ); delete_cap.on( 'mouseup', function( event ) { event.stopPropagation(); } ); delete_cap.on( 'click', function( event ) { if( confirm( wppb_roles_editor_data.capability_text + ': ' + jQuery( this ).siblings( 'span' ).text() + '\n\n' + wppb_roles_editor_data.capability_perm_delete_text ) ) { wppb_re_delete_capability_permanently( jQuery( this ).siblings( 'span' ).text() ); } } ); option.text( data.text ); option = option.add( delete_cap ); return option; } } ); } function wppb_re_delete_capability_permanently( capability ) { var data = { 'action' : 'delete_capability_permanently', 'security' : jQuery( '.post-type-wppb-roles-editor #wppb-re-ajax-nonce' ).val(), 'capability' : capability }; jQuery( '.post-type-wppb-roles-editor .wppb-role-edit-table-entry' ).remove(); jQuery( '.post-type-wppb-roles-editor .wppb-re-spinner-container' ).show(); jQuery.post( wppb_roles_editor_data.ajaxUrl, data, function( response ) { window.location.reload(); } ); } function wppb_re_create_capabilities_group( key, value, counter ) { var capabilities_single_group_caps = {}; var capabilities_single_group_caps_array = []; jQuery.each( value['capabilities'], function( key, value ) { capabilities_single_group_caps = { id: value + '_' + counter, text: value }; capabilities_single_group_caps_array.push( capabilities_single_group_caps ); } ); return { category: key, text: value['label'], children: capabilities_single_group_caps_array }; } function wppb_re_display_capabilities( action ) { jQuery( '.post-type-wppb-roles-editor .wppb-re-spinner-container' ).hide(); jQuery( '.post-type-wppb-roles-editor .wppb-role-edit-table-entry' ).remove(); var capabilities; if( action == 'all' ) { capabilities = wppb_re_current_role_capabilities; } else { capabilities = wppb_re_capabilities_group; } jQuery.each( capabilities, function( key, value ) { var table = jQuery( '#wppb-role-edit-table' ); if( action == 'all' ) { wppb_re_display_capability( key ); } else { if( value['category'] == action ) { jQuery.each( value['children'], function( key, value ) { if( wppb_re_current_role_capabilities != null && value['text'] in wppb_re_current_role_capabilities ) { wppb_re_display_capability( value['text'] ); } } ); } if( value['category'] == action && action == 'custom' ) { if( ! jQuery.isEmptyObject( wppb_re_new_capabilities ) ) { jQuery.each( wppb_re_new_capabilities, function( key, value ) { if( ! ( value in wppb_roles_editor_data.all_capabilities ) ) { var new_capability_check = 0; jQuery.each( wppb_roles_editor_data.capabilities, function( key2, value2 ) { if( value2['label'] && value2['label'] != 'Custom' && jQuery.inArray( value, value2['capabilities'] ) !== -1 ) { new_capability_check++; } } ); if( new_capability_check == 0 ) { wppb_re_display_capability( value ); } } } ); } } } } ); if( jQuery( '.post-type-wppb-roles-editor .wppb-role-edit-table-entry' ).length ) { jQuery( '.post-type-wppb-roles-editor .wppb-role-edit-no-cap' ).remove(); } else { wppb_re_no_capabilities_found(); } } function wppb_re_display_capability( capability ) { var title = ''; var wppb_capability_class = 'wppb-capability'; if( ! wppb_roles_editor_data.current_role_capabilities || ( wppb_roles_editor_data.current_role_capabilities && ! ( capability in wppb_roles_editor_data.current_role_capabilities ) ) ) { wppb_capability_class = wppb_capability_class + ' wppb-new-capability'; title = 'title = "' + wppb_roles_editor_data.new_cap_update_title_text + '"'; } else if( wppb_re_getParameterByName( 'wppb_re_clone' ) && ! wppb_roles_editor_data.current_role_capabilities ) { wppb_capability_class = wppb_capability_class + ' wppb-new-capability'; title = 'title = "' + wppb_roles_editor_data.new_cap_publish_title_text + '"'; } var delete_link = 'Delete'; if( wppb_roles_editor_data.current_user_role && jQuery.inArray( capability, wppb_roles_editor_data.admin_capabilities ) !== -1 ) { delete_link = '' + wppb_roles_editor_data.delete_text + ''; } jQuery( '.post-type-wppb-roles-editor #wppb-role-edit-table' ).find( '#wppb-role-edit-caps-clear' ).after( '
            ' + '' + capability + '' + '' + delete_link + '' + '
            ' ); } function wppb_re_add_capability() { var capabilities_select = jQuery( '.post-type-wppb-roles-editor .wppb-capabilities-select' ); var new_capability_input = jQuery( '.post-type-wppb-roles-editor .wppb-add-new-cap-input' ); var table = jQuery( '.post-type-wppb-roles-editor #wppb-role-edit-table' ); var capabilities = {}; var no_duplicates = {}; if( jQuery( '.post-type-wppb-roles-editor .select2.select2-container' ).is( ':visible' ) && jQuery( capabilities_select ).val() != null ) { jQuery( capabilities_select ).find( 'option:selected' ).each( function() { if( ! no_duplicates[jQuery( this ).text()] ) { if( ! jQuery( '.post-type-wppb-roles-editor .wppb-role-editor-tab.wppb-role-editor-all' ).closest( 'li.wppb-role-editor-tab-title' ).hasClass( 'wppb-role-editor-tab-active' ) ) { wppb_re_tabs_handler( jQuery( '.post-type-wppb-roles-editor .wppb-role-editor-tab.wppb-role-editor-all' ) ); } var title = ''; var wppb_capability_class = 'wppb-capability'; if( ! wppb_roles_editor_data.current_role_capabilities || ( wppb_roles_editor_data.current_role_capabilities && ! ( jQuery( this ).text() in wppb_roles_editor_data.current_role_capabilities ) ) ) { wppb_capability_class = wppb_capability_class + ' wppb-new-capability'; wppb_re_unsaved_capabilities[jQuery( this ).text()] = jQuery( this ).text(); title = 'title = "' + wppb_roles_editor_data.new_cap_update_title_text + '"'; } else if( wppb_re_getParameterByName( 'wppb_re_clone' ) && ! wppb_roles_editor_data.current_role_capabilities ) { wppb_capability_class = wppb_capability_class + ' wppb-new-capability'; title = 'title = "' + wppb_roles_editor_data.new_cap_publish_title_text + '"'; } jQuery( '.post-type-wppb-roles-editor .wppb-role-edit-no-cap' ).remove(); jQuery( table ).find( '#wppb-role-edit-caps-clear' ).after( '
            ' + '' + jQuery( this ).text() + '' + '' + wppb_roles_editor_data.delete_text + '' + '
            ' ); capabilities[jQuery( this ).text()] = jQuery( this ).text(); no_duplicates[jQuery( this ).text()] = jQuery( this ).text(); delete wppb_re_capabilities_to_delete[jQuery( this ).text()]; } } ); wppb_re_new_capability( capabilities ); wppb_re_disable_select_capabilities( wppb_re_capabilities_group, capabilities, 'add' ); jQuery( capabilities_select ).val( null ).trigger( 'change' ); wppb_re_number_of_capabilities(); setTimeout( function() { jQuery( '.post-type-wppb-roles-editor .wppb-role-edit-table-entry' ).removeClass( 'wppb-new-capability-highlight' ); }, 500 ); } else if( jQuery( new_capability_input ).is( ':visible' ) && jQuery( new_capability_input ).val().length != 0 ) { var new_capability_value = jQuery( new_capability_input ).val(); new_capability_value = new_capability_value.trim().replace( /<.*?>/g, '' ).replace( /\s/g, '_' ).replace( /[^a-zA-Z0-9_]/g, '' ); if( new_capability_value && ( ! wppb_roles_editor_data.hidden_capabilities || ! ( new_capability_value in wppb_roles_editor_data.hidden_capabilities ) ) ) { if( ! ( new_capability_value in wppb_re_current_role_capabilities ) && ! ( new_capability_value in wppb_re_new_capabilities ) ) { wppb_re_tabs_handler( jQuery( '.post-type-wppb-roles-editor .wppb-role-editor-tab.wppb-role-editor-all' ) ); var title = ''; var wppb_capability_class = 'wppb-capability'; if( ! wppb_roles_editor_data.current_role_capabilities || ( wppb_roles_editor_data.current_role_capabilities && ! ( new_capability_value in wppb_roles_editor_data.current_role_capabilities ) ) ) { wppb_capability_class = wppb_capability_class + ' wppb-new-capability'; wppb_re_unsaved_capabilities[new_capability_value] = new_capability_value; title = 'title = "' + wppb_roles_editor_data.new_cap_update_title_text + '"'; } else if( wppb_re_getParameterByName( 'wppb_re_clone' ) && ! wppb_roles_editor_data.current_role_capabilities ) { wppb_capability_class = wppb_capability_class + ' wppb-new-capability'; title = 'title = "' + wppb_roles_editor_data.new_cap_publish_title_text + '"'; } jQuery( '.post-type-wppb-roles-editor .wppb-role-edit-no-cap' ).remove(); jQuery( table ).find( '#wppb-role-edit-caps-clear' ).after( '
            ' + '' + new_capability_value + '' + '' + wppb_roles_editor_data.delete_text + '' + '
            ' ); capabilities[new_capability_value] = new_capability_value; delete wppb_re_capabilities_to_delete[new_capability_value]; wppb_re_change_select_to_input(); wppb_re_new_capability( capabilities ); wppb_re_disable_select_capabilities( wppb_re_capabilities_group, capabilities, 'add' ); jQuery( new_capability_input ).val( '' ); wppb_re_number_of_capabilities(); setTimeout( function() { jQuery( '.post-type-wppb-roles-editor .wppb-role-edit-table-entry' ).removeClass( 'wppb-new-capability-highlight' ); }, 500 ); } else { jQuery( new_capability_input ).val( '' ); jQuery( '.post-type-wppb-roles-editor #wppb-duplicate-capability-error' ).show().delay( 3000 ).fadeOut(); } } else if( wppb_roles_editor_data.hidden_capabilities && new_capability_value in wppb_roles_editor_data.hidden_capabilities ) { jQuery( '.post-type-wppb-roles-editor #wppb-hidden-capability-error' ).show().delay( 3000 ).fadeOut(); } else { jQuery( '.post-type-wppb-roles-editor #wppb-add-capability-error' ).show().delay( 3000 ).fadeOut(); } } else { jQuery( '.post-type-wppb-roles-editor #wppb-add-capability-error' ).show().delay( 3000 ).fadeOut(); } } function wppb_re_new_capability( capabilities ) { jQuery.each( capabilities, function( key, value ) { if( ! ( value in wppb_roles_editor_data.all_capabilities ) || ! ( value in wppb_re_current_role_capabilities ) ) { wppb_re_new_capabilities[value] = value; } } ); jQuery.extend( wppb_re_current_role_capabilities, wppb_re_new_capabilities ); } function wppb_re_update_role_capabilities() { jQuery( '.post-type-wppb-roles-editor #wppb-role-slug-hidden' ).val( jQuery( '#wppb-role-slug' ).val() ); var data = { 'action' : 'update_role_capabilities', 'security' : jQuery( '.post-type-wppb-roles-editor #wppb-re-ajax-nonce' ).val(), 'role_display_name' : jQuery( '.post-type-wppb-roles-editor #titlediv' ).find( '#title' ).val(), 'role' : jQuery( '.post-type-wppb-roles-editor #wppb-role-slug' ).val(), 'new_capabilities' : wppb_re_unsaved_capabilities, 'all_capabilities' : wppb_re_current_role_capabilities, 'capabilities_to_delete' : wppb_re_capabilities_to_delete }; jQuery.post( wppb_roles_editor_data.ajaxUrl, data, function( response ) { jQuery( '.post-type-wppb-roles-editor #publishing-action #publish' ).removeClass( 'disabled' ).trigger( 'click' ); } ); } function wppb_re_change_select_to_input() { if( jQuery( '.post-type-wppb-roles-editor .select2.select2-container' ).is( ':visible' ) ) { jQuery( '.post-type-wppb-roles-editor .select2.select2-container' ).hide(); jQuery( '.post-type-wppb-roles-editor .wppb-add-new-cap-input' ).show(); jQuery( '.post-type-wppb-roles-editor a.wppb-add-new-cap-link' ).text( wppb_roles_editor_data.cancel_text ); } else { jQuery( '.post-type-wppb-roles-editor .select2.select2-container' ).show(); jQuery( '.post-type-wppb-roles-editor .wppb-add-new-cap-input' ).hide(); jQuery( '.post-type-wppb-roles-editor a.wppb-add-new-cap-link' ).text( wppb_roles_editor_data.add_new_capability_text ); } } function wppb_re_getParameterByName( name, url ) { if( ! url ) { url = window.location.href; } name = name.replace( /[\[\]]/g, "\\$&" ); var regex = new RegExp( "[?&]" + name + "(=([^&#]*)|&|#|$)" ), results = regex.exec( url ); if( ! results ) { return null; } if( ! results[2] ) { return ''; } return decodeURIComponent( results[2].replace( /\+/g, " " ) ); } features/roles-editor/assets/css/roles-editor.css000066600000032401152141651160016214 0ustar00@font-face { font-family: 'wppb_re_font'; src: url('../font/wppb_re_font.eot?45804157'); src: url('../font/wppb_re_font.eot?45804157#iefix') format('embedded-opentype'), url('../font/wppb_re_font.woff2?45804157') format('woff2'), url('../font/wppb_re_font.woff?45804157') format('woff'), url('../font/wppb_re_font.ttf?45804157') format('truetype'), url('../font/wppb_re_font.svg?45804157#wppb_re_font') format('svg'); font-weight: normal; font-style: normal; } /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ /* @media screen and (-webkit-min-device-pixel-ratio:0) { @font-face { font-family: 'wppb_re_font'; src: url('../font/wppb_re_font.svg?45804157#wppb_re_font') format('svg'); } } */ [class^="icon-wppb-re-"]:before, [class*=" icon-wppb-re-"]:before { font-family: "wppb_re_font"; font-style: normal; font-weight: normal; speak: none; display: inline-block; text-decoration: inherit; width: 1em; margin-right: .2em; text-align: center; /* opacity: .8; */ /* For safety - reset parent styles, that can break glyph codes*/ font-variant: normal; text-transform: none; /* fix buttons height, for twitter bootstrap */ line-height: 1em; /* Animation center compensation - margins should be symmetric */ /* remove if not needed */ margin-left: .2em; /* you can be more comfortable with increased icons size */ /* font-size: 120%; */ /* Font smoothing. That was taken from TWBS */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; /* Uncomment for 3D effect */ /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ } .icon-wppb-re-users:before { content: '\e801'; } /* '' */ .icon-wppb-re-slug:before { content: '\e802'; } /* '' */ .icon-wppb-re-caps:before { content: '\e803'; } /* '' */ .icon-wppb-re-spinner:before { content: '\e838'; } /* '' */ .post-type-wppb-roles-editor .table-role-info { font-size: 13px; } .post-type-wppb-roles-editor #post-query-submit { display: none; } .post-type-wppb-roles-editor .column-role { width: 25%; } .post-type-wppb-roles-editor .column-role .wppb-role-slug-input{ width:90%; } .post-type-wppb-roles-editor .column-capabilities { width: 15%; text-align: center; } .post-type-wppb-roles-editor .column-users { width: 10%; text-align: center; } .post-type-wppb-roles-editor .wppb-delete-capability-disabled, .post-type-wppb-roles-editor .row-actions span.delete_notify { color: #a00; cursor: not-allowed; } .post-type-wppb-roles-editor .misc-pub-section .icon-wppb-re-users, .post-type-wppb-roles-editor .misc-pub-section .icon-wppb-re-slug, .post-type-wppb-roles-editor .misc-pub-section .icon-wppb-re-caps { font-size: 20px; } .post-type-wppb-roles-editor #wppb-role-edit-add-caps { height: 100px; } .post-type-wppb-roles-editor #wppb_edit_role_capabilities .select2 .select2-container { padding: 0 5px 5px 0 !important; } .post-type-wppb-roles-editor #wppb_edit_role_capabilities a.button-primary { vertical-align: top; margin: 1px 0 0 10px; height: 32px; line-height: 30px; } .post-type-wppb-roles-editor #wppb_edit_role_capabilities #wppb-add-new-cap-link { margin: 10px 5px; } .post-type-wppb-roles-editor #wppb_edit_role_capabilities #wppb-add-new-cap-link a:link, .post-type-wppb-roles-editor #wppb_edit_role_capabilities #wppb-add-new-cap-link a:hover, .post-type-wppb-roles-editor #wppb_edit_role_capabilities #wppb-add-new-cap-link a:visited, .post-type-wppb-roles-editor #wppb_edit_role_capabilities #wppb-add-new-cap-link a:active { text-decoration: none; box-shadow: none; } .post-type-wppb-roles-editor #wppb_edit_role_capabilities .wppb-add-new-cap-input { display: none; vertical-align: middle; width: 40%; line-height: 20px; padding-bottom: 10px; border: 1px solid #AAAAAA; border-radius: 4px; outline: none; box-shadow: none; font-size: 13px; margin: 0; } .post-type-wppb-roles-editor #wppb_edit_role_capabilities .wppb-add-new-cap-input:focus { border: 1px solid #000; outline: none; box-shadow: none; } .post-type-wppb-roles-editor #wppb-duplicate-capability-error, .post-type-wppb-roles-editor #wppb-hidden-capability-error, .post-type-wppb-roles-editor #wppb-add-capability-error { border-left: 3px solid #a00; display: none; color: #a00; font-size: 14px; margin-left: 6px; padding: 5px 10px; line-height: 35px; vertical-align: top; } .post-type-wppb-roles-editor #wppb-capabilities-tabs { float: left; width: 11%; min-width: 150px; padding: 20px 0 0 5px; margin: 0; } .post-type-wppb-roles-editor #wppb-capabilities-tabs .wppb-role-editor-tab-title { margin: 5px 0.5% 5px 0.5%; /*padding: 10px 0 10px 10px;*/ background-color: #f7f7f7; } .post-type-wppb-roles-editor #wppb-capabilities-tabs .wppb-role-editor-tab-title i { margin-right: 10px; line-height: 25px; } .post-type-wppb-roles-editor #wppb-capabilities-tabs .wppb-role-editor-tab-title a { text-decoration: none; color: inherit; display: block; padding: 10px 0 10px 10px; height: 24px; line-height: 24px; } .post-type-wppb-roles-editor #wppb-capabilities-tabs .wppb-role-editor-tab-title a:active, .post-type-wppb-roles-editor #wppb-capabilities-tabs .wppb-role-editor-tab-title a:focus, .post-type-wppb-roles-editor #wppb-capabilities-tabs .wppb-role-editor-tab-title a:hover { text-decoration: none; color: #a00; box-shadow: none; } .post-type-wppb-roles-editor #wppb-capabilities-tabs .wppb-role-editor-tab-title.wppb-role-editor-tab-active { color: #a00; font-weight: bold; } .post-type-wppb-roles-editor #wppb-role-edit-table { padding: 20px 5px 0 5px; float: right; width: 84%; } .post-type-wppb-roles-editor .wppb-re-spinner-container { margin: 5px 3px 0 2px; padding: 11px 0; width: 100%; } .post-type-wppb-roles-editor .wppb-re-spinner-container i.icon-wppb-re-spinner { font-size: 35px; margin-left: 45%; } .post-type-wppb-roles-editor #wppb-role-edit-table .wppb-role-edit-table-entry { width: 32.3%; float: left; margin: 5px 3px 0 2px; padding: 6px 0; background-color: #f7f7f7; display: block; height: 32px; } .post-type-wppb-roles-editor #wppb-role-edit-table .wppb-role-edit-table-entry.wppb-new-capability-highlight { background-color: #e6e6e6; } .post-type-wppb-roles-editor #wppb-role-edit-table .wppb-role-edit-table-entry .wppb-capability { padding: 0 10px; width: 70%; overflow-wrap: break-word; word-wrap: break-word; -ms-word-break: break-all; word-break: break-all; word-break: break-word; -ms-hyphens: auto; -moz-hyphens: auto; -webkit-hyphens: auto; hyphens: auto; display: inline-block; } .post-type-wppb-roles-editor #wppb-role-edit-table .wppb-role-edit-table-entry .wppb-capability.wppb-new-capability { color: #0085ba; } .post-type-wppb-roles-editor #wppb-role-edit-table .wppb-role-edit-table-entry .wppb-delete-capability { float: right; padding-right: 5px; display: inline-block; width: 15%; } .post-type-wppb-roles-editor #wppb-role-edit-table .wppb-role-edit-table-entry .wppb-delete-capability a:link { text-decoration: none; color: #a00; } .post-type-wppb-roles-editor #wppb-role-edit-table .wppb-role-edit-table-entry .wppb-delete-capability a:active, .post-type-wppb-roles-editor #wppb-role-edit-table .wppb-role-edit-table-entry .wppb-delete-capability a:hover, .post-type-wppb-roles-editor #wppb-role-edit-table .wppb-role-edit-table-entry .wppb-delete-capability a:visited { text-decoration: none; color: #FF0000; } .post-type-wppb-roles-editor #wppb-role-edit-table .wppb-role-edit-table-entry.wppb-role-edit-no-cap { background-color: inherit; } .post-type-wppb-roles-editor #wppb-role-edit-table .wppb-role-edit-table-entry.wppb-role-edit-no-cap span { color: #a00; } .post-type-wppb-roles-editor #wppb-role-edit-table #wppb-role-edit-caps-clear, .post-type-wppb-roles-editor #wppb-role-edit-caps-div #wppb-role-edit-divs-clear { width: 100%; clear: both; } .post-type-wppb-roles-editor .misc-pub-section #wppb-role-slug { width: 59%; margin-left: 5px; text-transform: lowercase; } .post-type-wppb-roles-editor .misc-pub-section.misc-pub-section-users, .post-type-wppb-roles-editor .misc-pub-section.misc-pub-section-capabilities, .post-type-wppb-roles-editor .misc-pub-section.misc-pub-section-edit-slug { padding-top: 10px; margin: 5px 0; } .post-type-wppb-roles-editor .misc-pub-section.misc-pub-section-users span, .post-type-wppb-roles-editor .misc-pub-section.misc-pub-section-capabilities span, .post-type-wppb-roles-editor .misc-pub-section.misc-pub-section-edit-slug span { font-size: 14px; bottom: 1px; position: relative; } .post-type-wppb-roles-editor .wppb-re-cap-perm-delete { color: #a00; font-size: 13px; float: right; position: relative; z-index: 1; } .post-type-wppb-roles-editor .wppb-re-cap-perm-delete:active, .post-type-wppb-roles-editor .wppb-re-cap-perm-delete:focus, .post-type-wppb-roles-editor .wppb-re-cap-perm-delete:hover { color: #000000; cursor: pointer; } @media screen and ( max-width: 1600px ) { .post-type-wppb-roles-editor #wppb-role-edit-table .wppb-role-edit-table-entry { width: 49%; } .post-type-wppb-roles-editor #wppb-role-edit-table { width: 80%; } } @media screen and ( max-width: 1400px ) { .post-type-wppb-roles-editor #wppb-role-edit-table { width: 76%; } } @media screen and ( max-width: 1350px ) { .post-type-wppb-roles-editor #wppb-role-edit-table .wppb-role-edit-table-entry { width: 100%; } } @media screen and ( max-width: 1250px ) { .post-type-wppb-roles-editor #wppb-role-edit-table { width: 72%; } } @media screen and ( max-width: 1150px ) { .post-type-wppb-roles-editor #wppb-role-edit-table { width: 68%; } } @media screen and ( max-width: 1100px ) { .post-type-wppb-roles-editor #wppb-role-edit-table { width: 62%; } } @media screen and ( max-width: 850px ) { .post-type-wppb-roles-editor #wppb-role-edit-table { width: 70%; } } @media screen and ( max-width: 782px ) { .post-type-wppb-roles-editor .column-role input.wppb-role-slug-input { height: 25px; } .post-type-wppb-roles-editor .column-capabilities, .post-type-wppb-roles-editor .column-users { text-align: inherit; } } @media screen and ( max-width: 650px ) { .post-type-wppb-roles-editor #wppb-role-edit-table { width: 100%; } .post-type-wppb-roles-editor #wppb-capabilities-tabs { width: 100%; padding: 20px 0 0 0; } .post-type-wppb-roles-editor #wppb-capabilities-tabs .wppb-role-editor-tab-title { padding: 0 25px 0 5px; margin: 2px 0; display: inline-block; min-width: 40%; } } @media screen and ( max-width: 450px ) { .post-type-wppb-roles-editor #wppb-capabilities-tabs .wppb-role-editor-tab-title { min-width: 91%; } } .post-type-wppb-roles-editor .wppb-re-spin { -moz-animation: wppb_re_spin 2s infinite linear; -o-animation: wppb_re_spin 2s infinite linear; -webkit-animation: wppb_re_spin 2s infinite linear; animation: wppb_re_spin 2s infinite linear; display: inline-block; } @-moz-keyframes wppb_re_spin { 0% { -moz-transform: rotate(0deg); -o-transform: rotate(0deg); -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -moz-transform: rotate(359deg); -o-transform: rotate(359deg); -webkit-transform: rotate(359deg); transform: rotate(359deg); } } @-webkit-keyframes wppb_re_spin { 0% { -moz-transform: rotate(0deg); -o-transform: rotate(0deg); -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -moz-transform: rotate(359deg); -o-transform: rotate(359deg); -webkit-transform: rotate(359deg); transform: rotate(359deg); } } @-o-keyframes wppb_re_spin { 0% { -moz-transform: rotate(0deg); -o-transform: rotate(0deg); -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -moz-transform: rotate(359deg); -o-transform: rotate(359deg); -webkit-transform: rotate(359deg); transform: rotate(359deg); } } @-ms-keyframes wppb_re_spin { 0% { -moz-transform: rotate(0deg); -o-transform: rotate(0deg); -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -moz-transform: rotate(359deg); -o-transform: rotate(359deg); -webkit-transform: rotate(359deg); transform: rotate(359deg); } } @keyframes wppb_re_spin { 0% { -moz-transform: rotate(0deg); -o-transform: rotate(0deg); -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -moz-transform: rotate(359deg); -o-transform: rotate(359deg); -webkit-transform: rotate(359deg); transform: rotate(359deg); } } features/roles-editor/assets/font/wppb_re_font.eot000066600000015130152141651160016445 0ustar00XLP$Zwppb_re_fontRegularVersion 1.0wppb_re_fontpGSUB %yTOS/2>!IPVcmap]cvt  fpgmY pgasp glyf[-L.head #K |6hhea $hmtx locaRS maxpa name  post_ gprepA+ 0>latnDFLTligazz1PfEd@8RjZR,b\, b088  @88j/R2;DV_o@lOG  m k km kk ` H I^]ZYVTRPKJIGCB?>:97#!+#"&7432727#!"&'4>32>?672"&462.>'#&'654'32>2'"&462KZ:K-@E*B!&%RCDP  &:!$.HPF)"8& TvTTvT~|zC>.K9Z-%%!D(EGTvTTvT^D,, N[BNNB8B84& &48B;TTvTTY~zx+.DAN ;TTvTT_ .;I@F( G```TXL&&&&## +%54&+4&+";#";2654&+";26".>2; 6  55  G k k ernz~RY  Y Y Y Y utttt_ "0@-GoooTXL+4/&"'&"276".>2 3  ~  3  / rnz~ 2 ~ 2  / Kutttt jR!5I\m~@ UM{sjb ׼  G mm  k m``X  H X I˦nn]]#"n~n}wu]m]lfd"5#5&+";26=4&#&6?6&/&"01?>/5&"01?3>/&"6?016&/&1";26=4&#1";26=4&#"#6?6&/&"#?01>/&"?>/01&"6?6&/01";26=4&#F[< [=P=[ =[e# ## #/N" ## #=[ =[[= \<FR/ " ## # [ =[ == [< [FFFF< [= \[ =[ =z# #  # #8Z$_< ?o?oj/RRj///YY< $4s p5 5A H T ` k +w  j  7 E ] u  V &Copyright (C) 2017 by original authors @ fontello.comwppb_re_fontRegularwppb_re_fontwppb_re_fontVersion 1.0wppb_re_fontGenerated by svg2ttf from Fontello project.http://fontello.comCopyright (C) 2017 by original authors @ fontello.comwppb_re_fontRegularwppb_re_fontwppb_re_fontVersion 1.0wppb_re_fontGenerated by svg2ttf from Fontello project.http://fontello.com  wppb-re-users wppb-re-slug wppb-re-capswppb-re-spinnerRjRj, UXEY KQKSZX4(Y`f UX%acc#b!!YC#DC`B-, `f-, d P&Z( CEcER[X!#!X PPX!@Y 8PX!8YY  CEcEad(PX! CEcE 0PX!0Y PX f a PX` PX! ` 6PX!6``YYY+YY#PXeYY-, E %ad CPX#B#B!!Y`-,#!#! dbB #B CEc C`Ec*! C +0%&QX`PaRYX#Y! @SX+!@Y#PXeY-,C+C`B-,#B# #Babfc`*-, E Ccb PX@`Yfc`D`-, CEB*!C`B- ,C#DC`B- , E +#C%` E#a d PX!0PX @YY#PXeY%#aDD`- , E +#C%` E#a d$PX@Y#PXeY%#aDD`- , #B EX!#!Y*!- ,EdaD-,` CJPX #BY CJRX #BY-, bfc c#aC` ` #B#-,KTXdDY$ e#x-,KQXKSXdDY!Y$e#x-,CUXCaB+YC%B %B %B# %PXC`%B #a*!#a #a*!C`%B%a*!Y CG CG`b PX@`Yfc Ccb PX@`Yfc`#DC>C`B-,ETX#B E #B #`B `aBB`+r+"Y-,+-,+-,+-,+-,+-,+-,+-,+-,+-, +-, +ETX#B E #B #`B `aBB`+r+"Y-,+- ,+-!,+-",+-#,+-$,+-%,+-&,+-',+-(, +-), <`-*, `` C#`C%a`)*!-+,*+**-,, G Ccb PX@`Yfc`#a8# UX G Ccb PX@`Yfc`#a8!Y--,ETX,*0"Y-., +ETX,*0"Y-/, 5`-0,Ecb PX@`Yfc+ Ccb PX@`Yfc+D>#8/*-1, < G Ccb PX@`Yfc`Ca8-2,.<-3, < G Ccb PX@`Yfc`CaCc8-4,% . G#B%IG#G#a Xb!Y#B3*-5,%%G#G#a C+e.# <8-6,%% .G#G#a #B C+ `PX @QX  &YBB# C #G#G#a#F`Cb PX@`Yfc` + a C`d#CadPXCaC`Y%b PX@`Yfca# &#Fa8#CF%CG#G#a` Cb PX@`Yfc`# +#C`+%a%b PX@`Yfc&a %`d#%`dPX!#!Y# &#Fa8Y-7, & .G#G#a#<8-8, #B F#G+#a8-9,%%G#G#aTX. <#!%%G#G#a %%G#G#a%%I%acc# Xb!Ycb PX@`Yfc`#.# <8#!Y-:, C .G#G#a ` `fb PX@`Yfc# <8-;,# .F%FRX ,5+# .F%FRX +-S,>+-T,>+-U,>+-V,@+-W,@+-X,@+-Y,@+-Z,C+-[,C+-\,C+-],C+-^,?+-_,?+-`,?+-a,?+-b,7+.++-c,7+;+-d,7+<+-e,7+=+-f,8+.++-g,8+;+-h,8+<+-i,8+=+-j,9+.++-k,9+;+-l,9+<+-m,9+=+-n,:+.++-o,:+;+-p,:+<+-q,:+=+-r, EX!#!YB+e$Px0-KRXYcpB*B *B*B *B@ *D$QX@XdD&QX@cTXDYYYY  *Dfeatures/roles-editor/assets/font/wppb_re_font.woff2000066600000006320152141651160016702 0ustar00wOF2  xTV" p 0n6$  }g #aғ%c;p cO`AEXdI@H,U,JL2C@AVDt+./ysEO&>Vt2Y;U| -Lx6DF%lP.ц t@eAߚY\gƥ~vfu7M lrǛbJ@n d_su707si69`4s n/Vuyn;ۍ1w[ݼkC~%0 rk1cV#FHuII&LyZٻByRpۓЖBxދqC^P"*:g$2o\K/T4oT `Wp'   * m '<  (8)Vb 2vOhSf&g' Lcާ?QnOJP~VHOItҰ@%r5,/5{^S]O7G.Zs2^Zd!=J{,TFj5fgz^Ͳ]&Ci}'[.r%՚!8drwvfawB0ȌGiӌH. r.L_@eٝ$鲡UnOak l2K3m)Yh Y FI gl}L*yrCZsO^A5B'Ӊj\sߒ o>VM\ٽ:OAQʟ >B t'j%5x ckd;m[ޣ|ŝח[:Ȼw<1ڳ{|wth sԫv, pT]<CWt&Kh0 hF MVJZZۤRv患~#]cFʊ1޼vy[S@eBrͲ?~riMT zoC~ZfVnXdoN\y n.立Ϲ-~6TT`9f{Tctx⴪g+tEpﲀHM`udRipGj$> QJl΁hHvfJd< *<r1#aQ`A@śt$t3|!aQ.r* i!* JGDL-d8C3,Xy_H*cɜn,YV쪲i9G")[u8 '!l'VF X nkⷰ.bgyNƴ{4Ce ,C32aE *ٰE N VdM08iXْ@~Hc Y-mLKizŒ!4S+YY;s 2`XE(;چX97a-4Tɷk聗U+"q$IuqYk =aȦ5٭ }@M2xC0}o $sތ4}?JU61<қm? f?Lzi.o<׀MHO}Y.g8Tfeatures/roles-editor/assets/font/wppb_re_font.svg000066600000007010152141651160016453 0ustar00 Copyright (C) 2017 by original authors @ fontello.com features/roles-editor/assets/font/wppb_re_font.woff000066600000007434152141651160016627 0ustar00wOFFGSUBX;T %yOS/2CV>!Icmapa]cvt < fpgmP pYgaspglyfT.[-head <26 #Khhea p $hmtx loca RSmaxp a name  post\Ag_prepzA+xc`d``b0`c`I,csq ab`a<21'3=ʱi f)YHxc`d8iCf|`e`ef \S^0`0 ( #x푱 0㸰2J.3HLp Pp*ȃ=+}.SsIK|֗߉Uq$k%!\  "xc`@? lxViwFyI,% -jaiF&l Ac ];_ds7~Z/$pweZ 둔/&< MQ|(;{!eQڷDD"PDYd|QF˶WM-=.[AU~:ʱ;f3th=%UUH=RҦe+I+WPˆN"iHgh5(l(R$Ay ͐ʧأVK/yw9?_oQ@Ȏt%_[[aܴ(TvwBlTfF+2Ќ`|+?!Y-OGZAeNK>)qY 3 >) xzG%)as4I0r`%e*8uZ[~їhPwb<[[9QhRLIͣ) t&x̯(?I^mc5G8fƄD"-KSA,;)ͣv-ZܣVSFVb: i/i"E~LA2-6Ôoז+}DO) LUV@bkYլwCVrǾq_33߉ӳ#.=sK|u=שrqfyNY4YK[,?iG:cyA t00CX^!, aCXa%creSIڙXlB`bEj*TBhTjCnTϪe^<9HȚ_1ΕF-o;Wo9R֋?T%bÓl'6xtMU=_TTX HX(ʲlpg":jClad-0fs2s|u/ d9 0'x_1a s|1s$a0-^]AUSOXPSeA / gALUӝ!7^1Le| ]l>@xeSML\U>ܟ}t `<懖v@HEB᧴XjP'&Iݺh7uOS˜ZMӅ+]4pL:y9wwyYơpNbgulǵChcSqs- p>%,)hZt1༆:11>6Pߑp}{9[mCiy ?J1HkN 8iGQ}EEXz~k.iv KVBFQd_1PY>qllBA\3ʄ~bӷK_90ZZCSl`o{&ݘwugh](c&6*;:p=5g4s!zýH$:$llsM'nY|BOښ[#Qk}sl[ kIȽ`9s,[ID8=p QVNٟJ٬XjHEsϼt r_Ƨ47}lMm ϟ1T7 H[H?7|[E! bbmD? [FUkAu %m.vrH]UP:`Jf`,{.h, I|Wa}j@lKKzs&G[F9**q'07IX¶rq  tC l1@Zt]5 Jըᕕfg_ז/_|wfgϽB"e[D{3uh#F9}|=KFLe,2 XLILRSINVÜLU QLILbp%nH>HfaӖN9#92jck6t%ŗBJio#Z,Ձ~ )^i*6޳XYw$1~蒡4l\ٮՉoUyXE[V+?J#ݒp>lO)Eٖ (@mM.azdC, axc`d``(B6__E_bgr9@JX pxc`d``_, @ j!/YY< $4s pxuJ@hUlŅsVbJѺ.ҝԴN4&Jgu|wf3gޛ8Vx {qMqx5<9ޥ⸊K:ATXT9¡8ަ~B~t;ޥ渊p\ùti Wf#K)EK?6ʩNcM5M#F6PAf]Z2Yr_%V=ٲEжv*F#SgjbXϏ4R,a!@ uhiLs劐GLGa1rN%T1Ä?&cD0 xOF&}Ȩd3J~Y_oM]taʪ%#ys72_RFcC?xc`b.쀕 I(U8+)Ms 2yyE qxcp"(b##c_Ɲ  X6102h9 ,>0i4'ffp٨#b#sF5oG#CGrHHI$labuKF& v#features/roles-editor/assets/font/wppb_re_font.ttf000066600000014640152141651160016460 0ustar00pGSUB %yTOS/2>!IPVcmap]cvt  fpgmY pgasp glyf[-L.head #K |6hhea $hmtx locaRS maxpa name  post_ gprepA+ 0>latnDFLTligazz1PfEd@8RjZR,b\, b088  @88j/R2;DV_o@lOG  m k km kk ` H I^]ZYVTRPKJIGCB?>:97#!+#"&7432727#!"&'4>32>?672"&462.>'#&'654'32>2'"&462KZ:K-@E*B!&%RCDP  &:!$.HPF)"8& TvTTvT~|zC>.K9Z-%%!D(EGTvTTvT^D,, N[BNNB8B84& &48B;TTvTTY~zx+.DAN ;TTvTT_ .;I@F( G```TXL&&&&## +%54&+4&+";#";2654&+";26".>2; 6  55  G k k ernz~RY  Y Y Y Y utttt_ "0@-GoooTXL+4/&"'&"276".>2 3  ~  3  / rnz~ 2 ~ 2  / Kutttt jR!5I\m~@ UM{sjb ׼  G mm  k m``X  H X I˦nn]]#"n~n}wu]m]lfd"5#5&+";26=4&#&6?6&/&"01?>/5&"01?3>/&"6?016&/&1";26=4&#1";26=4&#"#6?6&/&"#?01>/&"?>/01&"6?6&/01";26=4&#F[< [=P=[ =[e# ## #/N" ## #=[ =[[= \<FR/ " ## # [ =[ == [< [FFFF< [= \[ =[ =z# #  # #8Z$_< ?o?oj/RRj///YY< $4s p5 5A H T ` k +w  j  7 E ] u  V &Copyright (C) 2017 by original authors @ fontello.comwppb_re_fontRegularwppb_re_fontwppb_re_fontVersion 1.0wppb_re_fontGenerated by svg2ttf from Fontello project.http://fontello.comCopyright (C) 2017 by original authors @ fontello.comwppb_re_fontRegularwppb_re_fontwppb_re_fontVersion 1.0wppb_re_fontGenerated by svg2ttf from Fontello project.http://fontello.com  wppb-re-users wppb-re-slug wppb-re-capswppb-re-spinnerRjRj, UXEY KQKSZX4(Y`f UX%acc#b!!YC#DC`B-, `f-, d P&Z( CEcER[X!#!X PPX!@Y 8PX!8YY  CEcEad(PX! CEcE 0PX!0Y PX f a PX` PX! ` 6PX!6``YYY+YY#PXeYY-, E %ad CPX#B#B!!Y`-,#!#! dbB #B CEc C`Ec*! C +0%&QX`PaRYX#Y! @SX+!@Y#PXeY-,C+C`B-,#B# #Babfc`*-, E Ccb PX@`Yfc`D`-, CEB*!C`B- ,C#DC`B- , E +#C%` E#a d PX!0PX @YY#PXeY%#aDD`- , E +#C%` E#a d$PX@Y#PXeY%#aDD`- , #B EX!#!Y*!- ,EdaD-,` CJPX #BY CJRX #BY-, bfc c#aC` ` #B#-,KTXdDY$ e#x-,KQXKSXdDY!Y$e#x-,CUXCaB+YC%B %B %B# %PXC`%B #a*!#a #a*!C`%B%a*!Y CG CG`b PX@`Yfc Ccb PX@`Yfc`#DC>C`B-,ETX#B E #B #`B `aBB`+r+"Y-,+-,+-,+-,+-,+-,+-,+-,+-,+-, +-, +ETX#B E #B #`B `aBB`+r+"Y-,+- ,+-!,+-",+-#,+-$,+-%,+-&,+-',+-(, +-), <`-*, `` C#`C%a`)*!-+,*+**-,, G Ccb PX@`Yfc`#a8# UX G Ccb PX@`Yfc`#a8!Y--,ETX,*0"Y-., +ETX,*0"Y-/, 5`-0,Ecb PX@`Yfc+ Ccb PX@`Yfc+D>#8/*-1, < G Ccb PX@`Yfc`Ca8-2,.<-3, < G Ccb PX@`Yfc`CaCc8-4,% . G#B%IG#G#a Xb!Y#B3*-5,%%G#G#a C+e.# <8-6,%% .G#G#a #B C+ `PX @QX  &YBB# C #G#G#a#F`Cb PX@`Yfc` + a C`d#CadPXCaC`Y%b PX@`Yfca# &#Fa8#CF%CG#G#a` Cb PX@`Yfc`# +#C`+%a%b PX@`Yfc&a %`d#%`dPX!#!Y# &#Fa8Y-7, & .G#G#a#<8-8, #B F#G+#a8-9,%%G#G#aTX. <#!%%G#G#a %%G#G#a%%I%acc# Xb!Ycb PX@`Yfc`#.# <8#!Y-:, C .G#G#a ` `fb PX@`Yfc# <8-;,# .F%FRX ,5+# .F%FRX +-S,>+-T,>+-U,>+-V,@+-W,@+-X,@+-Y,@+-Z,C+-[,C+-\,C+-],C+-^,?+-_,?+-`,?+-a,?+-b,7+.++-c,7+;+-d,7+<+-e,7+=+-f,8+.++-g,8+;+-h,8+<+-i,8+=+-j,9+.++-k,9+;+-l,9+<+-m,9+=+-n,:+.++-o,:+;+-p,:+<+-q,:+=+-r, EX!#!YB+e$Px0-KRXYcpB*B *B*B *B@ *D$QX@XdD&QX@cTXDYYYY  *Dfeatures/roles-editor/roles-editor.php000066600000155435152141651160014136 0ustar00wp_default_scripts(); $scripts_exceptions = array( 'wppb-sitewide', 'acf-field-group', 'acf-pro-field-group', 'acf-input', 'acf-pro-input', 'query-monitor' ); foreach( $wp_scripts->registered as $key => $value ) { if( ! in_array( $key, $wp_default_scripts ) && ! in_array( $key, $scripts_exceptions ) ) { wp_deregister_script( $key ); } } $wp_default_styles = $this->wp_default_styles(); $styles_exceptions = array( 'wppb-serial-notice-css', 'acf-global', 'wppb-back-end-style', 'query-monitor' ); foreach( $wp_styles->registered as $key => $value ) { if( ! in_array( $key, $wp_default_styles ) && ! in_array( $key, $styles_exceptions ) ) { wp_deregister_style( $key ); } } wp_enqueue_script( 'wppb_select2_js', WPPB_PLUGIN_URL .'assets/js/select2/select2.min.js', array( 'jquery' ), PROFILE_BUILDER_VERSION ); wp_enqueue_style( 'wppb_select2_css', WPPB_PLUGIN_URL .'assets/css/select2/select2.min.css', array(), PROFILE_BUILDER_VERSION ); wp_enqueue_script( 'wppb_roles_editor_js', plugin_dir_url( __FILE__ ) .'assets/js/roles-editor.js', array( 'jquery', 'wppb_select2_js' ), PROFILE_BUILDER_VERSION ); wp_enqueue_style( 'wppb_roles_editor_css', plugin_dir_url( __FILE__ ) .'assets/css/roles-editor.css', array(), PROFILE_BUILDER_VERSION ); if( $current_screen->id == 'wppb-roles-editor' ) { $role_slug = $this->sanitize_role( get_post_meta( $post->ID, 'wppb_role_slug', true ) ); $current_role = get_role( $role_slug ); $current_user = wp_get_current_user(); if( isset( $current_role ) && is_array( $current_role->capabilities ) ) { $role_capabilities = $current_role->capabilities; // True if current user got this role if( isset( $role_slug ) && in_array( $role_slug, $current_user->roles ) ) { $current_user_role = TRUE; } else { $current_user_role = FALSE; } // Get current role users count $current_role_users_count = $this->count_role_users( $current_role->name ); } else { $role_capabilities = NULL; $current_role_users_count = NULL; $current_user_role = FALSE; } } else { $role_capabilities = NULL; $current_role_users_count = NULL; $current_user_role = FALSE; } // Remove old WordPress levels system // Use filter and return FALSE if you need the old levels capability system $remove_old_levels = apply_filters( 'wppb_remove_old_levels', TRUE ); if( $remove_old_levels === TRUE ) { $role_capabilities = $this->remove_old_labels( $role_capabilities ); } $admin_capabilities = array( 'manage_options', 'activate_plugins', 'delete_plugins', 'install_plugins', 'manage_network_options', 'manage_network', 'manage_network_plugins', 'upload_plugins' ); $group_capabilities = $this->group_capabilities(); $hidden_capabilities = NULL; $remove_hidden_capabilities = apply_filters( 'wppb_re_remove_hidden_caps', TRUE ); if( $remove_hidden_capabilities === TRUE ) { $group_capabilities['general']['capabilities'] = array_diff( $group_capabilities['general']['capabilities'], $this->get_hidden_capabilities() ); $group_capabilities['appearance']['capabilities'] = array_diff( $group_capabilities['appearance']['capabilities'], $this->get_hidden_capabilities() ); $group_capabilities['plugins']['capabilities'] = array_diff( $group_capabilities['plugins']['capabilities'], $this->get_hidden_capabilities() ); $group_capabilities['post_types']['attachment']['capabilities'] = array_diff( $group_capabilities['post_types']['attachment']['capabilities'], $this->get_hidden_capabilities() ); if( $role_capabilities !== NULL ) { $role_capabilities = array_diff_key( $role_capabilities, $this->get_hidden_capabilities() ); } $hidden_capabilities = $this->get_hidden_capabilities(); if( empty( $hidden_capabilities ) ) { $hidden_capabilities = NULL; } } $all_capabilities = $this->get_all_capabilities(); $custom_capabilities = get_option( 'wppb_roles_editor_capabilities', 'not_set' ); if( $custom_capabilities != 'not_set' && ! empty( $custom_capabilities['custom']['capabilities'] ) ) { foreach( $custom_capabilities['custom']['capabilities'] as $custom_capability_key => $custom_capability ) { if( ! in_array( $custom_capability, $all_capabilities ) ) { $all_capabilities[$custom_capability] = $custom_capability; } } } $vars_array = array( 'ajaxUrl' => admin_url( 'admin-ajax.php' ), 'current_screen_action' => $current_screen->action, 'capabilities' => $group_capabilities, 'current_role_capabilities' => $role_capabilities, 'current_role_users_count' => $current_role_users_count, 'all_capabilities' => $all_capabilities, 'current_user_role' => $current_user_role, 'admin_capabilities' => $admin_capabilities, 'hidden_capabilities' => $hidden_capabilities, 'default_role_text' => esc_html__( 'Default Role', 'profile_builder' ), 'your_role_text' => esc_html__( 'Your Role', 'profile_builder' ), 'role_name_required_error_text' => esc_html__( 'Role name is required.', 'profile_builder' ), 'no_capabilities_found_text' => esc_html__( 'No capabilities found.', 'profile_builder' ), 'select2_placeholder_text' => esc_html__( 'Select capabilities', 'profile_builder' ), 'delete_permanently_text' => esc_html__( 'Delete Permanently', 'profile_builder' ), 'capability_perm_delete_text' => esc_html__( "This will permanently delete the capability from your site and from every user role.\n\nIt can't be undone!", 'profile_builder' ), 'new_cap_update_title_text' => esc_html__( 'This capability is not saved until you click Update!', 'profile_builder' ), 'new_cap_publish_title_text' => esc_html__( 'This capability is not saved until you click Publish!', 'profile_builder' ), 'delete_text' => esc_html__( 'Delete', 'profile-builder' ), 'cancel_text' => esc_html__( 'Cancel', 'profile_builder' ), 'add_new_capability_text' => esc_html__( 'Add New Capability', 'profile_builder' ), 'capability_text' => esc_html__( 'Capability', 'profile-builder' ), 'cap_no_delete_text' => esc_html__( 'You can\'t delete this capability from your role.', 'profile-builder' ) ); wp_localize_script( 'wppb_roles_editor_js', 'wppb_roles_editor_data', $vars_array ); } } function count_role_users( $current_role_name ) { // Get current role users count $user_count = count_users(); if( isset( $user_count['avail_roles'][$current_role_name] ) ) { $current_role_users_count = $user_count['avail_roles'][$current_role_name]; } else { $current_role_users_count = NULL; } return $current_role_users_count; } function get_role_capabilities() { if( ! current_user_can( 'manage_options' ) ) { die(); } check_ajax_referer( 'wppb-re-ajax-nonce', 'security' ); $role = get_role( sanitize_text_field( $_POST['role'] ) ); if( isset( $role ) && ! empty( $role->capabilities ) ) { $role_capabilities = $role->capabilities; // Remove old WordPress levels system // Use filter and return FALSE if you need the old levels capability system $remove_old_levels = apply_filters( 'wppb_remove_old_levels', TRUE ); if( $remove_old_levels === TRUE ) { $role_capabilities = $this->remove_old_labels( $role_capabilities ); } die( json_encode( $role_capabilities ) ); } die( 'no_caps' ); } function edit_cpt_quick_links( $views ) { $edited_views = array(); $edited_views['all'] = $views['all']; return $edited_views; } function create_roles_editor_cpt(){ if( is_admin() && current_user_can( 'manage_options' ) ) { $labels = array( 'name' => esc_html__( 'Roles Editor', 'profile-builder' ), 'singular_name' => esc_html__( 'Roles Editor', 'profile-builder' ), 'add_new' => esc_html__( 'Add New Role', 'profile-builder' ), 'add_new_item' => esc_html__( 'Add New Role', 'profile-builder' ), 'edit_item' => esc_html__( 'Edit Role', 'profile-builder' ), 'new_item' => esc_html__( 'New Role', 'profile-builder' ), 'all_items' => esc_html__( 'Roles Editor', 'profile-builder' ), 'view_item' => esc_html__( 'View Role', 'profile-builder' ), 'search_items' => esc_html__( 'Search the Roles Editor', 'profile-builder' ), 'not_found' => esc_html__( 'No roles found', 'profile-builder' ), 'not_found_in_trash' => esc_html__( 'No roles found in trash', 'profile-builder' ), 'name_admin_bar' => esc_html__( 'Role', 'profile-builder' ), 'parent_item_colon' => '', 'menu_name' => esc_html__( 'Roles Editor', 'profile-builder' ) ); $args = array( 'labels' => $labels, 'public' => false, 'publicly_queryable' => false, 'show_ui' => true, 'query_var' => true, 'show_in_menu' => 'users.php', 'has_archive' => false, 'hierarchical' => false, 'capability_type' => 'post', 'supports' => array( 'title' ) ); register_post_type( 'wppb-roles-editor', $args ); } } function change_title_text( $title ) { $screen = get_current_screen(); if( $screen->post_type == 'wppb-roles-editor' ) { $title = esc_html__( 'Enter role name here', 'profile_builder' ); } return $title; } function change_post_updated_messages( $messages ) { global $post; $messages['wppb-roles-editor'] = array( 0 => '', 1 => esc_html__( 'Role updated.', 'profile-builder' ), 2 => esc_html__( 'Custom field updated.', 'profile-builder' ), 3 => esc_html__( 'Custom field deleted.', 'profile-builder' ), 4 => esc_html__( 'Role updated.', 'profile-builder' ), 5 => isset( $_GET['revision'] ) ? sprintf( esc_html__( 'Role restored to revision from %s' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, 6 => esc_html__( 'Role created.', 'profile-builder' ), 7 => esc_html__( 'Role saved.', 'profile-builder' ), 8 => esc_html__( 'Role submitted.', 'profile-builder' ), 9 => sprintf( esc_html__( 'Role scheduled for: %1$s', 'profile-builder' ), date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ) ), 10 => esc_html__( 'Role draft updated.', 'profile-builder' ), ); return $messages; } function create_post_for_role() { $screen = get_current_screen(); if( $screen->id == 'edit-wppb-roles-editor' ) { global $wpdb; global $wp_roles; $added_posts = array(); $args = array( 'numberposts' => -1, 'post_type' => 'wppb-roles-editor' ); $posts = get_posts( $args ); foreach( $posts as $key => $value ) { $post_id = intval( $value->ID ); $role_slug_meta = $this->sanitize_role( get_post_meta( $post_id, 'wppb_role_slug', true ) ); if( ! empty( $role_slug_meta ) ) { if( ! array_key_exists( $role_slug_meta, $wp_roles->role_names ) ) { $post_meta = get_post_meta( $post_id ); foreach( $post_meta as $post_meta_key => $post_meta_value ) { delete_post_meta( $post_id, $post_meta_key ); } $wpdb->query( $wpdb->prepare( "DELETE FROM $wpdb->posts WHERE post_type = %s AND ID = %d", "wppb-roles-editor", $post_id ) ); } else { $added_posts[] = $role_slug_meta; } } } foreach( $wp_roles->role_names as $role_slug => $role_display_name ) { if( ! in_array( $role_slug, $added_posts ) ) { $id = wp_insert_post( array( 'post_title' => $role_display_name, 'post_type' => 'wppb-roles-editor', 'post_content' => '', 'post_status' => 'publish' ) ); update_post_meta( $id, 'wppb_role_slug', $role_slug ); } } } } function add_extra_column_for_roles_editor_cpt( $columns ) { $columns = array( 'title' => esc_html__( 'Role Name', 'profile-builder' ), 'role' => esc_html__( 'Role Slug', 'profile-builder' ), 'capabilities' => esc_html__( 'Capabilities', 'profile-builder' ), 'users' => esc_html__( 'Users', 'profile-builder' ) ); return apply_filters( 'wppb_manage_roles_columns', $columns ); } function custom_column_content_for_roles_editor_cpt( $column_name, $post_id ) { $role_slug = $this->sanitize_role( get_post_meta( $post_id, 'wppb_role_slug', true ) ); if( isset( $role_slug ) ) { $role = get_role( $role_slug ); if( $column_name == 'role' ) { echo ''; } if( $column_name == 'capabilities' && isset( $role ) ) { // Remove old WordPress levels system // Use filter and return FALSE if you need the old levels capability system $remove_old_levels = apply_filters( 'wppb_remove_old_levels', TRUE ); if( $remove_old_levels === TRUE ) { $role_capabilities = $this->remove_old_labels( $role->capabilities ); } else { $role_capabilities = $role->capabilities; } echo count( $role_capabilities ); } if( $column_name == 'users' && isset( $role ) ) { $role_users_count = $this->count_role_users( $role->name ); if( ! isset( $role_users_count ) ) { $role_users_count = 0; } echo $role_users_count; } } } function register_meta_boxes() { remove_meta_box( 'slugdiv', 'wppb-roles-editor', 'normal' ); add_meta_box( 'wppb_edit_role_capabilities', esc_html__( 'Edit Role Capabilities', 'profile_builder' ), array( $this, 'edit_role_capabilities_meta_box_callback' ), 'wppb-roles-editor', 'normal', 'high' ); } function edit_role_capabilities_meta_box_callback() { ?> post_type == $post_type ) { $role_slug = $this->sanitize_role( get_post_meta( $post->ID, 'wppb_role_slug', true ) ); ?>
            : 0
            : 0
            action == 'add' ? '' : 'disabled'; ?>>
            $value ) { unset( $capabilities[$value] ); } return $capabilities; } function modify_post_title( $data ) { if( 'wppb-roles-editor' != $data['post_type'] || $data['post_status'] == 'auto-draft' ) { return $data; } if( ! current_user_can( 'manage_options' ) ) { return $data; } if( isset( $data['post_title'] ) ) { $data['post_title'] = wp_strip_all_tags( $data['post_title'] ); } return $data; } function add_post_meta( $post_id, $post ) { $post_type = get_post_type( $post_id ); if( 'wppb-roles-editor' != $post_type || $post->post_status == 'auto-draft' ) { return; } if( ! current_user_can( 'manage_options' ) ) { return; } if( isset( $_POST['wppb-role-slug-hidden'] ) ) { $role_slug = trim( $_POST['wppb-role-slug-hidden'] ); $role_slug = $this->sanitize_role( $role_slug ); update_post_meta( $post_id, 'wppb_role_slug', $role_slug ); } } function update_role_capabilities() { if( ! current_user_can( 'manage_options' ) ) { die(); } check_ajax_referer( 'wppb-re-ajax-nonce', 'security' ); $role_slug = $this->sanitize_role( $_POST['role'] ); $role = get_role( $role_slug ); if( $role ) { if( isset( $_POST['new_capabilities'] ) ) { foreach( $_POST['new_capabilities'] as $key => $value ) { $role->add_cap( sanitize_text_field( $key ) ); } } if( isset( $_POST['capabilities_to_delete'] ) ) { foreach( $_POST['capabilities_to_delete'] as $key => $value ) { $role->remove_cap( sanitize_text_field( $key ) ); } } } else { $capabilities = array(); if( isset( $_POST['all_capabilities'] ) ) { foreach( $_POST['all_capabilities'] as $key => $value ) { $capabilities[sanitize_text_field( $key )] = true; }; } $role_display_name = sanitize_text_field( $_POST['role_display_name'] ); add_role( $role_slug, $role_display_name, $capabilities ); } die( 'role_capabilities_updated' ); } function group_capabilities() { $capabilities = get_option( 'wppb_roles_editor_capabilities', 'not_set' ); if( $capabilities == 'not_set' ) { // We remove non-custom capabilities from this array later on $custom_capabilities = $this->get_all_capabilities(); $custom_capabilities = $this->remove_old_labels( $custom_capabilities ); // General capabilities $general_capabilities = array( 'label' => 'General', 'icon' => 'dashicons-wordpress', 'capabilities' => array( 'edit_dashboard', 'edit_files', 'export', 'import', 'manage_links', 'manage_options', 'moderate_comments', 'read', 'unfiltered_html', 'update_core' ) ); // Themes management capabilities $appearance_capabilities = array( 'label' => 'Appearance', 'icon' => 'dashicons-admin-appearance', 'capabilities' => array( 'delete_themes', 'edit_theme_options', 'edit_themes', 'install_themes', 'switch_themes', 'update_themes' ) ); // Plugins management capabilities $plugins_capabilities = array( 'label' => 'Plugins', 'icon' => 'dashicons-admin-plugins', 'capabilities' => array( 'activate_plugins', 'delete_plugins', 'edit_plugins', 'install_plugins', 'update_plugins' ) ); // Users management capabilities $users_capabilities = array( 'label' => 'Users', 'icon' => 'dashicons-admin-users', 'capabilities' => array( 'add_users', 'create_roles', 'create_users', 'delete_roles', 'delete_users', 'edit_roles', 'edit_users', 'list_roles', 'list_users', 'promote_users', 'remove_users' ) ); // Taxonomies capabilities - part 1 $taxonomies_capabilities = array(); $taxonomies = get_taxonomies( array(), 'objects' ); foreach( $taxonomies as $taxonomy ) { $taxonomies_capabilities = array_merge( $taxonomies_capabilities, array_values( (array) $taxonomy->cap ) ); } // Post types capabilities $post_types_capabilities = array(); foreach( get_post_types( array(), 'objects' ) as $type ) { if( in_array( $type->name, array( 'revision', 'nav_menu_item', 'custom_css', 'customize_changeset', 'wppb-rf-cpt', 'wppb-epf-cpt', 'wppb-roles-editor' ) ) ) { continue; } $post_type_capabilities = $this->post_type_group_capabilities( $type->name ); if( empty( $post_type_capabilities ) ) { continue; } $post_type_icon = $type->hierarchical ? 'dashicons-admin-page' : 'dashicons-admin-post'; if( is_string( $type->menu_icon ) && preg_match( '/dashicons-/i', $type->menu_icon ) ) { $post_type_icon = $type->menu_icon; } else if( 'attachment' === $type->name ) { $post_type_icon = 'dashicons-admin-media'; } else if( 'download' === $type->name ) { $post_type_icon = 'dashicons-download'; } else if( 'product' === $type->name ) { $post_type_icon = 'dashicons-cart'; } $post_types_capabilities[$type->name] = array( 'label' => $type->labels->name, 'icon' => $post_type_icon, 'capabilities' => $post_type_capabilities ); $taxonomies_capabilities = array_diff( $taxonomies_capabilities, $post_type_capabilities ); $custom_capabilities = array_diff( $custom_capabilities, $post_type_capabilities ); } // Taxonomies capabilities - part 2 $taxonomies_capabilities = array_diff( $taxonomies_capabilities, $general_capabilities['capabilities'], $appearance_capabilities['capabilities'], $plugins_capabilities['capabilities'], $users_capabilities['capabilities'] ); $taxonomies_capabilities = array( 'label' => 'Taxonomies', 'icon' => '', 'capabilities' => array_unique( $taxonomies_capabilities ) ); // Custom capabilities $custom_capabilities = array_diff( $custom_capabilities, $general_capabilities['capabilities'], $appearance_capabilities['capabilities'], $appearance_capabilities['capabilities'], $plugins_capabilities['capabilities'], $users_capabilities['capabilities'], $taxonomies_capabilities['capabilities'] ); $custom_capabilities = array_values( $custom_capabilities ); $custom_capabilities = array( 'label' => 'Custom', 'icon' => '', 'capabilities' => array_unique( $custom_capabilities ) ); // Create capabilities array $capabilities = array( 'general' => $general_capabilities, 'post_types' => $post_types_capabilities, 'taxonomies' => $taxonomies_capabilities, 'appearance' => $appearance_capabilities, 'plugins' => $plugins_capabilities, 'users' => $users_capabilities, 'custom' => $custom_capabilities ); update_option( 'wppb_roles_editor_capabilities', $capabilities ); } else { $custom_capabilities = $this->get_all_capabilities(); $custom_capabilities = $this->remove_old_labels( $custom_capabilities ); foreach( $capabilities['post_types'] as $key => $value ) { $custom_capabilities = array_diff( $custom_capabilities, $value['capabilities'] ); } foreach( $capabilities as $key => $value ) { if( $key != 'post_types' && $key != 'custom' ) { $custom_capabilities = array_diff( $custom_capabilities, $value['capabilities'] ); } } $custom_capabilities = array_values( $custom_capabilities ); $custom_capabilities = array_unique( $custom_capabilities ); $custom_capabilities = array_diff( $custom_capabilities, $capabilities['custom']['capabilities'] ); if( ! empty( $custom_capabilities ) ) { $capabilities['custom']['capabilities'] = array_merge( $capabilities['custom']['capabilities'], $custom_capabilities ); update_option( 'wppb_roles_editor_capabilities', $capabilities ); } } return $capabilities; } function post_type_group_capabilities( $post_type = 'post' ) { $capabilities = (array) get_post_type_object( $post_type )->cap; unset( $capabilities['edit_post'] ); unset( $capabilities['read_post'] ); unset( $capabilities['delete_post'] ); $capabilities = array_values( $capabilities ); if( ! in_array( $post_type, array( 'post', 'page' ) ) ) { // Get the post and page capabilities $post_caps = array_values( (array) get_post_type_object( 'post' )->cap ); $page_caps = array_values( (array) get_post_type_object( 'page' )->cap ); // Remove post/page capabilities from the current post type capabilities $capabilities = array_diff( $capabilities, $post_caps, $page_caps ); } if( 'attachment' === $post_type ) { $capabilities[] = 'unfiltered_upload'; } return array_unique( $capabilities ); } function get_all_capabilities() { global $wp_roles; $capabilities = array(); foreach( $wp_roles->role_objects as $key => $role ) { if( is_array( $role->capabilities ) ) { foreach( $role->capabilities as $capability => $granted ) { $capabilities[$capability] = $capability; } } } return array_unique( $capabilities ); } function delete_capability_permanently() { if( ! current_user_can( 'manage_options' ) ) { die(); } check_ajax_referer( 'wppb-re-ajax-nonce', 'security' ); global $wp_roles; foreach( $wp_roles->role_names as $role_slug => $role_display_name ) { $role = get_role( $role_slug ); $role->remove_cap( sanitize_text_field( $_POST['capability'] ) ); } $capabilities = get_option( 'wppb_roles_editor_capabilities', 'not_set' ); if( $capabilities != 'not_set' && ( $key = array_search( sanitize_text_field( $_POST['capability'] ), $capabilities['custom']['capabilities'] ) ) !== false ) { unset( $capabilities['custom']['capabilities'][$key] ); $capabilities['custom']['capabilities'] = array_values( $capabilities['custom']['capabilities'] ); update_option( 'wppb_roles_editor_capabilities', $capabilities ); } die(); } function remove_filter_by_month_dropdown( $months, $post_type = NULL ) { if( isset( $post_type ) && $post_type == 'wppb-roles-editor' ) { return __return_empty_array(); } else { return $months; } } function modify_list_row_actions( $actions, $post ) { global $wp_roles; if( $post->post_type == 'wppb-roles-editor' ) { $current_user = wp_get_current_user(); $default_role = get_option( 'default_role' ); $role_slug = get_post_meta( $post->ID, 'wppb_role_slug', true ); $url = admin_url( 'post.php?post=' . $post->ID ); $edit_link = add_query_arg( array( 'action' => 'edit' ), $url ); $actions = array( 'edit' => sprintf( '%2$s', esc_url( $edit_link ), esc_html__( 'Edit', 'profile-builder' ) ) ); $clone_url = admin_url( 'post-new.php?post_type=wppb-roles-editor' ); $clone_link = add_query_arg( array( 'action' => 'wppb_re_clone', 'wppb_re_clone' => $this->sanitize_role( $role_slug ) ), $clone_url ); $actions = array_merge( $actions, array( 'clone' => sprintf( '%2$s', esc_url( $clone_link ), esc_html__( 'Clone', 'profile-builder' ) ) ) ); if( in_array( $role_slug, $current_user->roles ) && ( ! is_multisite() || ( is_multisite() && ! is_super_admin() ) ) && ( !empty( $wp_roles->roles[$role_slug]['capabilities'] ) && array_key_exists( 'manage_options', $wp_roles->roles[$role_slug]['capabilities'] ) ) ) { $actions = array_merge( $actions, array( 'delete_notify your_role' => ''. esc_html__( 'Delete', 'profile-builder' ) .'' ) ); } elseif( $role_slug == $default_role ) { $actions = array_merge( $actions, array( 'default_role' => sprintf( '%s', esc_url( admin_url( 'options-general.php#default_role' ) ), esc_html__( 'Change Default', 'profile-builder' ) ), 'delete_notify' => ''. esc_html__( 'Delete', 'profile-builder' ) .'' ) ); } else { $delete_link = wp_nonce_url( add_query_arg( array( 'action' => 'delete' ), $url ), 'delete-post_'. $post->ID ); $actions = array_merge( $actions, array( 'delete' => sprintf( '%3$s', esc_url( $delete_link ), esc_html__( 'Are you sure?\nThis will permanently delete the role and cannot be undone!\nUsers assigned only on this role will be moved to the default role.', 'profile_builder' ), esc_html__( 'Delete', 'profile-builder' ) ) ) ); } } return $actions; } function sanitize_role( $role ) { $role = strtolower( $role ); $role = wp_strip_all_tags( $role ); $role = preg_replace( '/[^a-z0-9_\-\s]/', '', $role ); $role = str_replace( ' ', '_', $role ); return $role; } function delete_role_permanently( $post_id ) { global $post_type; if( $post_type != 'wppb-roles-editor' ) { return; } check_admin_referer( 'delete-post_'. $post_id ); $role_slug = get_post_meta( $post_id, 'wppb_role_slug', true ); $role_slug = $this->sanitize_role( $role_slug ); $default_role = get_option( 'default_role' ); if( $role_slug == $default_role ) { return; } $users = get_users( array( 'role' => $role_slug ) ); if( is_array( $users ) ) { foreach( $users as $user ) { if( $user->has_cap( $role_slug ) && count( $user->roles ) <= 1 ) { $user->set_role( $default_role ); } elseif( $user->has_cap( $role_slug ) ) { $user->remove_role( $role_slug ); } } } remove_role( $role_slug ); } function wp_default_scripts() { $wp_default_scripts = array( 'jquery', 'jquery-core', 'jquery-migrate', 'jquery-ui-core', 'jquery-ui-accordion', 'jquery-ui-autocomplete', 'jquery-ui-button', 'jquery-ui-datepicker', 'jquery-ui-dialog', 'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-menu', 'jquery-ui-mouse', 'jquery-ui-position', 'jquery-ui-progressbar', 'jquery-ui-resizable', 'jquery-ui-selectable', 'jquery-ui-slider', 'jquery-ui-sortable', 'jquery-ui-spinner', 'jquery-ui-tabs', 'jquery-ui-tooltip', 'jquery-ui-widget', 'underscore', 'backbone', 'utils', 'common', 'wp-a11y', 'sack', 'quicktags', 'colorpicker', 'editor', 'wp-fullscreen-stub', 'wp-ajax-response', 'wp-pointer', 'heartbeat', 'wp-auth-check', 'wp-lists', 'prototype', 'scriptaculous-root', 'scriptaculous-builder', 'scriptaculous-dragdrop', 'scriptaculous-effects', 'scriptaculous-slider', 'scriptaculous-sound', 'scriptaculous-controls', 'scriptaculous', 'cropper', 'jquery-effects-core', 'jquery-effects-blind', 'jquery-effects-bounce', 'jquery-effects-clip', 'jquery-effects-drop', 'jquery-effects-explode', 'jquery-effects-fade', 'jquery-effects-fold', 'jquery-effects-highlight', 'jquery-effects-puff', 'jquery-effects-pulsate', 'jquery-effects-scale', 'jquery-effects-shake', 'jquery-effects-size', 'jquery-effects-slide', 'jquery-effects-transfer', 'jquery-ui-selectmenu', 'jquery-form', 'jquery-color', 'schedule', 'jquery-query', 'jquery-serialize-object', 'jquery-hotkeys', 'jquery-table-hotkeys', 'jquery-touch-punch', 'suggest', 'imagesloaded', 'masonry', 'jquery-masonry', 'thickbox', 'jcrop', 'swfobject', 'plupload', 'plupload-all', 'plupload-html5', 'plupload-flash', 'plupload-silverlight', 'plupload-html4', 'plupload-handlers', 'wp-plupload', 'swfupload', 'swfupload-swfobject', 'swfupload-queue', 'swfupload-speed', 'swfupload-all', 'swfupload-handlers', 'comment-reply', 'json2', 'underscore', 'backbone', 'wp-util', 'wp-backbone', 'revisions', 'imgareaselect', 'mediaelement', 'wp-mediaelement', 'froogaloop', 'wp-playlist', 'zxcvbn-async', 'password-strength-meter', 'user-profile', 'language-chooser', 'user-suggest', 'admin-bar', 'wplink', 'wpdialogs', 'word-count', 'media-upload', 'hoverIntent', 'customize-base', 'customize-loader', 'customize-preview', 'customize-models', 'customize-views', 'customize-controls', 'customize-selective-refresh', 'customize-widgets', 'customize-preview-widgets', 'customize-preview-nav-menus', 'wp-custom-header', 'accordion', 'shortcode', 'media-models', 'wp-embed', 'media-views', 'media-editor', 'media-audiovideo', 'mce-view', 'wp-api', 'admin-tags', 'admin-comments', 'xfn', 'postbox', 'tags-box', 'tags-suggest', 'post', 'press-this', 'editor-expand', 'link', 'comment', 'admin-gallery', 'admin-widgets', 'theme', 'inline-edit-post', 'inline-edit-tax', 'plugin-install', 'updates', 'farbtastic', 'iris', 'wp-color-picker', 'dashboard', 'list-revisions', 'media-grid', 'media', 'image-edit', 'set-post-thumbnail', 'nav-menu', 'custom-header', 'custom-background', 'media-gallery', 'svg-painter', 'customize-nav-menus', ); return $wp_default_scripts; } function wp_default_styles() { $wp_default_styles = array( 'admin-bar', 'colors', 'ie', 'wp-auth-check', 'wp-jquery-ui-dialog', 'wppb-serial-notice-css', 'common', 'forms', 'admin-menu', 'dashboard', 'list-tables', 'edit', 'revisions', 'media', 'themes', 'about', 'nav-menus', 'widgets', 'site-icon', 'l10n', 'wp-admin', 'login', 'install', 'wp-color-picker', 'customize-controls', 'customize-widgets', 'customize-nav-menus', 'press-this', 'buttons', 'dashicons', 'editor-buttons', 'media-views', 'wp-pointer', 'customize-preview', 'wp-embed-template-ie', 'imgareaselect', 'mediaelement', 'wp-mediaelement', 'thickbox', 'deprecated-media', 'farbtastic', 'jcrop', 'colors-fresh', 'open-sans', ); return $wp_default_styles; } function get_hidden_capabilities() { $capabilities = array(); if( is_multisite() || ! defined( 'ALLOW_UNFILTERED_UPLOADS' ) || ! ALLOW_UNFILTERED_UPLOADS ) { $capabilities['unfiltered_upload'] = 'unfiltered_upload'; } if( is_multisite() || ( defined( 'DISALLOW_UNFILTERED_HTML' ) && DISALLOW_UNFILTERED_HTML ) ) { $capabilities['unfiltered_html'] = 'unfiltered_html'; } if( is_multisite() || ( defined( 'DISALLOW_FILE_EDIT' ) && DISALLOW_FILE_EDIT ) ) { $capabilities['edit_files'] = 'edit_files'; $capabilities['edit_plugins'] = 'edit_plugins'; $capabilities['edit_themes'] = 'edit_themes'; } if( is_multisite() || ( defined( 'DISALLOW_FILE_MODS' ) && DISALLOW_FILE_MODS ) ) { $capabilities['edit_files'] = 'edit_files'; $capabilities['edit_plugins'] = 'edit_plugins'; $capabilities['edit_themes'] = 'edit_themes'; $capabilities['update_plugins'] = 'update_plugins'; $capabilities['delete_plugins'] = 'delete_plugins'; $capabilities['install_plugins'] = 'install_plugins'; $capabilities['upload_plugins'] = 'upload_plugins'; $capabilities['update_themes'] = 'update_themes'; $capabilities['delete_themes'] = 'delete_themes'; $capabilities['install_themes'] = 'install_themes'; $capabilities['upload_themes'] = 'upload_themes'; $capabilities['update_core'] = 'update_core'; } return array_unique( $capabilities ); } // Add actions on Add User back-end page function actions_on_user_new() { $this->scripts_and_styles_actions( 'user_new' ); add_action( 'user_new_form', array( $this, 'roles_field_user_new' ) ); add_action( 'user_register', array( $this, 'roles_update_user_new' ) ); } // Add actions on Edit User back-end page function actions_on_user_edit() { $this->scripts_and_styles_actions( 'user_edit' ); add_action( 'personal_options', array( $this, 'roles_field_user_edit' ) ); add_action( 'profile_update', array( $this, 'roles_update_user_edit' ), 10, 2 ); } // Roles Edit checkboxes for Add User back-end page function roles_field_user_new() { if( ! current_user_can( 'promote_users' ) ) { return; } $user_roles = apply_filters( 'wppb_default_user_roles', array( get_option( 'default_role' ) ) ); if( isset( $_POST['createuser'] ) && ! empty( $_POST['wppb_re_user_roles'] ) ) { $user_roles = array_map( array( $this, 'sanitize_role' ), $_POST['wppb_re_user_roles'] ); } wp_nonce_field( 'new_user_roles', 'wppb_re_new_user_roles_nonce' ); $this->roles_field_display( $user_roles ); } // Roles Edit checkboxes for Edit User back-end page function roles_field_user_edit( $user ) { if( ! current_user_can( 'promote_users' ) || ! current_user_can( 'edit_user', $user->ID ) ) { return; } $user_roles = (array) $user->roles; wp_nonce_field( 'new_user_roles', 'wppb_re_new_user_roles_nonce' ); $this->roles_field_display( $user_roles ); } // Output roles edit checkboxes function roles_field_display( $user_roles ) { $wppb_roles = get_editable_roles(); ?>
            '; $this->no_items(); echo '
            '; echo $this->column_cb( $item ); echo '"; echo call_user_func( array( $this, 'column_' . $column_name ), $item ); echo ""; echo $this->column_default( $item, $column_name ); echo "
              $role_details ) { ?>
            roles_update_user_new_and_edit( $old_user_data ); } function roles_update_user_new( $user_id ) { if( ! current_user_can( 'promote_users' ) ) { return; } if( ! isset( $_POST['wppb_re_new_user_roles_nonce'] ) || ! wp_verify_nonce( $_POST['wppb_re_new_user_roles_nonce'], 'new_user_roles' ) ) { return; } $user = new \WP_User( $user_id ); $this->roles_update_user_new_and_edit( $user ); } function roles_update_user_new_and_edit( $user ) { if( ! empty( $_POST['wppb_re_user_roles'] ) ) { $old_roles = (array) $user->roles; $new_roles = array_map( array( $this, 'sanitize_role' ), $_POST['wppb_re_user_roles'] ); foreach( $new_roles as $new_role ) { if( ! in_array( $new_role, (array) $user->roles ) ) { $user->add_role( $new_role ); } } foreach( $old_roles as $old_role ) { if( ! in_array( $old_role, $new_roles ) ) { $user->remove_role( $old_role ); } } } else { foreach( (array) $user->roles as $old_role ) { $user->remove_role( $old_role ); } } } function scripts_and_styles_actions( $location ) { // Enqueue jQuery on both Add User and Edit User back-end pages add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_jquery' ) ); // Actions for Add User back-end page if( $location == 'user_new' ) { add_action( 'admin_footer', array( $this, 'print_scripts_user_new' ), 25 ); } // Actions for Edit User back-end page if( $location == 'user_edit' ) { add_action( 'admin_head', array( $this, 'print_styles_user_edit' ) ); add_action( 'admin_footer', array( $this, 'print_scripts_user_edit' ), 25 ); } } // Enqueue jQuery where needed (use action) function enqueue_jquery() { wp_enqueue_script( 'jquery' ); } // Print scripts on Add User back-end page function print_scripts_user_new() { ?> charset ) ) $charset_collate = "DEFAULT CHARACTER SET ".$wpdb->charset; if ( ! empty( $wpdb->collate ) ) $charset_collate .= " COLLATE ".$wpdb->collate; $tableName = $wpdb->prefix.'signups'; $sql = " CREATE TABLE $tableName ( domain varchar(191) NOT NULL default '', path varchar(100) NOT NULL default '', title longtext NOT NULL, user_login varchar(60) NOT NULL default '', user_email varchar(100) NOT NULL default '', registered datetime NOT NULL default '0000-00-00 00:00:00', activated datetime NOT NULL default '0000-00-00 00:00:00', active tinyint(1) NOT NULL default '0', activation_key varchar(50) NOT NULL default '', meta longtext, KEY activation_key (activation_key), KEY domain (domain) ) $charset_collate;"; require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); $res = dbDelta($sql); } } add_action( 'update_option_wppb_general_settings', 'wppb_signup_schema', 10, 2 ); //function to add new tab in the default WP userlisting with all the users who didn't confirm their account yet function wppb_add_pending_users_header_script(){ ?> get_results("SELECT * FROM ".$wpdb->base_prefix."signups WHERE active = 0"); foreach ($results as $result){ if( !empty( $result->meta ) ){ $user_meta = maybe_unserialize( $result->meta ); if( empty( $user_meta['registered_for_blog_id'] ) || $user_meta['registered_for_blog_id'] == get_current_blog_id() ){ $number_of_users++; } } } header( 'Content-type: application/json' ); die( json_encode( array( 'number' => $number_of_users ) ) ); } function wppb_handle_email_confirmation_cases() { global $wpdb; $todo = sanitize_text_field($_POST['todo']); $user_email = sanitize_email($_POST['user_email']); if ( current_user_can( apply_filters( 'wppb_email_confirmation_user_capability', 'manage_options' ) ) ) if ( ( $todo != '' ) && ( $user_email != '' ) ){ $results = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM " . $wpdb->base_prefix . "signups WHERE active = 0 AND user_email = %s", $user_email ) ); if ( count( $results ) != 1 ) die( __( "There was an error performing that action!", "profile-builder" ) ); elseif ( $todo == 'delete' ){ $sql_result = $wpdb->delete( $wpdb->base_prefix.'signups', array( 'user_login' => $results[0]->user_login, 'user_email' => $results[0]->user_email ) ); if ( $sql_result ) die( 'ok' ); else die( __( "The selected user couldn't be deleted", "profile-builder" ) ); }elseif ( $todo == 'confirm' ){ die( wppb_manual_activate_signup( $results[0]->activation_key ) ); }elseif ( $todo == 'resend' ){ $sql_result = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM " . $wpdb->base_prefix . "signups WHERE user_login = %s AND user_email = %s", $results[0]->user_login, $results[0]->user_email ), ARRAY_A ); if ( $sql_result ){ wppb_signup_user_notification( trim( $sql_result['user_login'] ), trim( $sql_result['user_email'] ), $sql_result['activation_key'], $sql_result['meta'] ); die( __( "Email notification resent to user", "profile-builder" ) ); } } } die( __("You either don't have permission for that action or there was an error!", "profile-builder") ); } // FUNCTIONS USED BOTH ON THE REGISTRATION PAGE AND THE EMAIL CONFIRMATION TABLE // Hook to add AP user meta after signup autentification add_action( 'wpmu_activate_user', 'wppb_add_meta_to_user_on_activation', 10, 3 ); //function that adds AP user meta after signup autentification and it is also used when editing the user uprofile function wppb_add_meta_to_user_on_activation( $user_id, $password, $meta ){ $user = new WP_User( $user_id ); //copy the data from the meta field (default fields) if( !empty( $meta['first_name'] ) ) update_user_meta( $user_id, 'first_name', $meta['first_name'] ); if( !empty( $meta['last_name'] ) ) update_user_meta( $user_id, 'last_name', $meta['last_name'] ); if( !empty( $meta['nickname'] ) ) update_user_meta( $user_id, 'nickname', $meta['nickname'] ); if( !empty( $meta['user_url'] ) ) wp_update_user(array('ID' => $user_id, 'user_url' => $meta['user_url'])); if( !empty( $meta['aim'] ) ) update_user_meta( $user_id, 'aim', $meta['aim'] ); if( !empty( $meta['yim'] ) ) update_user_meta( $user_id, 'yim', $meta['yim'] ); if( !empty( $meta['jabber'] ) ) update_user_meta( $user_id, 'jabber', $meta['jabber'] ); if( !empty( $meta['description'] ) ) update_user_meta( $user_id, 'description', $meta['description'] ); if( !empty( $meta['role'] ) ) $user->set_role( $meta['role'] ); //update the users role (s)he registered for if( !empty( $meta['first_name'] ) && !empty( $meta['last_name'] ) ) wp_update_user(array('ID' => $user_id, 'display_name' => $meta['first_name'].' '.$meta['last_name'] )); else if( !empty( $meta['nickname'] ) ) wp_update_user(array('ID' => $user_id, 'display_name' => $meta['nickname'] )); //copy the data from the meta fields (custom fields) $manage_fields = apply_filters( 'wppb_form_fields', get_option( 'wppb_manage_fields', 'not_set' ), array( 'meta' => $meta, 'user_id' => $user_id, 'context' => 'user_activation' ) ); if ( $manage_fields != 'not_set' ){ foreach ( $manage_fields as $key => $value){ switch ( $value['field'] ) { case 'Input': case 'Input (Hidden)': case 'Checkbox': case 'Checkbox (Terms and Conditions)': case 'Radio': case 'Select': case 'Select (Country)': case 'Select (Multiple)': case 'Select (Timezone)': case 'Datepicker': case 'Textarea':{ if ( isset( $meta[$value['meta-name']] ) ) update_user_meta( $user_id, $value['meta-name'], trim( $meta[$value['meta-name']] ) ); break; } case 'Timepicker':{ if ( isset( $meta[$value['meta-name']] ) ) { $time = $meta[$value['meta-name']]; if( !empty( $time['hours'] ) && !empty( $time['minutes'] ) ) { update_user_meta( $user_id, $value['meta-name'], $time['hours'] . ':' . $time['minutes'] ); } } break; } case 'Map':{ if ( isset( $meta[$value['meta-name']] ) ) { // Add new markers if( is_array( $meta[$value['meta-name']] ) ) { foreach( $meta[$value['meta-name']] as $key => $position ) update_user_meta( $user_id, $value['meta-name'] . '_' . $key, $position ); } } break; } case 'Upload':{ if ( isset( $meta[$value['meta-name']] ) ){ if( !empty( $meta[$value['meta-name']] ) ) { if (is_numeric($meta[$value['meta-name']])) { update_user_meta($user_id, $value['meta-name'], trim($meta[$value['meta-name']])); // use this to update the post author to the correct user wp_update_post( array( 'ID' => trim( $meta[$value['meta-name']] ), 'post_author' => $user_id ) ); } else { $wp_upload_array = wp_upload_dir(); // Array of key => value pairs $file = trim($meta[$value['meta-name']]); $file_name = substr($file, strpos($file, '_attachment_') + 12); $random_user_number = apply_filters('wppb_register_wpmu_upload_random_user_number2', substr(md5($user->data->user_email), 0, 12), $user, $meta); $old_path_on_disk = $wp_upload_array['basedir'] . '/profile_builder/attachments/' . substr($file, strpos($file, 'wpmuRandomID_')); if (PHP_OS == "WIN32" || PHP_OS == "WINNT") $old_path_on_disk = str_replace('\\', '/', $old_path_on_disk); $new_path_on_disk = $wp_upload_array['basedir'] . '/profile_builder/attachments/userID_' . $user_id . '_attachment_' . $file_name; if (PHP_OS == "WIN32" || PHP_OS == "WINNT") $new_path_on_disk = str_replace('\\', '/', $new_path_on_disk); if (rename($old_path_on_disk, $new_path_on_disk)) update_user_meta($user_id, $value['meta-name'], $wp_upload_array['baseurl'] . '/profile_builder/attachments/userID_' . $user_id . '_attachment_' . $file_name); } } else{ update_user_meta( $user_id, $value['meta-name'], '' ); } } break; } case 'Avatar':{ if ( isset( $meta[$value['meta-name']] ) ) { if( !empty( $meta[$value['meta-name']] ) ) { if (is_numeric($meta[$value['meta-name']])) { update_user_meta($user_id, $value['meta-name'], trim($meta[$value['meta-name']])); } else { $wp_upload_array = wp_upload_dir(); // Array of key => value pairs $file = trim($meta[$value['meta-name']]); $file_name = substr($file, strpos($file, '_originalAvatar_') + 16); $random_user_number = apply_filters('wppb_register_wpmu_avatar_random_user_number2', substr(md5($user->data->user_email), 0, 12), $user, $meta); $old_path_on_disk = $wp_upload_array['basedir'] . '/profile_builder/avatars/' . substr($file, strpos($file, 'wpmuRandomID_')); if (PHP_OS == "WIN32" || PHP_OS == "WINNT") $old_path_on_disk = str_replace('\\', '/', $old_path_on_disk); $new_path_on_disk = $wp_upload_array['basedir'] . '/profile_builder/avatars/userID_' . $user_id . '_originalAvatar_' . $file_name; if (PHP_OS == "WIN32" || PHP_OS == "WINNT") $new_path_on_disk = str_replace('\\', '/', $new_path_on_disk); if (rename($old_path_on_disk, $new_path_on_disk)) { $wp_filetype = wp_check_filetype(basename($file_name), null); $attachment = array('post_mime_type' => $wp_filetype['type'], 'post_title' => $file_name, 'post_content' => '', 'post_status' => 'inherit' ); $attach_id = wp_insert_attachment($attachment, $new_path_on_disk); $avatar = image_downsize($attach_id, 'thumbnail'); update_user_meta($user_id, $value['meta-name'], $avatar[0]); update_user_meta($user_id, 'avatar_directory_path_' . $value['id'], $new_path_on_disk); update_user_meta($user_id, 'resized_avatar_' . $value['id'] . '_relative_path', $new_path_on_disk); wppb_resize_avatar($user_id); } } } else{ update_user_meta( $user_id, $value['meta-name'], '' ); } break; } } case 'Default - Blog Details':{ if ( is_multisite() && isset( $meta['wppb_create_new_site_checkbox'] ) && $meta['wppb_create_new_site_checkbox'] == 'yes' ) { $blog_url = $meta['wppb_blog_url']; $blog_title = $meta['wppb_blog_title']; $privacy['public'] = ( isset( $meta['wppb_blog_privacy'] ) && 'Yes' == $meta['wppb_blog_privacy'] ) ? true : false; $blog_details = wpmu_validate_blog_signup( $blog_url, $blog_title ); if ( empty($blog_details['errors']->errors['blogname']) && empty($blog_details['errors']->errors['blog_title'])) { wpmu_create_blog( $blog_details['domain'], $blog_details['path'], $blog_details['blog_title'], $user_id, $privacy ); } } } default: { if ( isset( $meta[$value['meta-name']] ) ) { update_user_meta($user_id, $value['meta-name'], $meta[$value['meta-name']]); } do_action('wppb_add_meta_on_user_activation_' . Wordpress_Creation_Kit_PB::wck_generate_slug($value['field']), $user_id, $password, $meta, $value); } } } } do_action( 'wppb_add_other_meta_on_user_activation', $user_id, $meta ); } // function to add the new user to the signup table if email confirmation is selected as active or it is a wpmu installation function wppb_signup_user( $username, $user_email, $meta = '' ) { global $wpdb; // Format data $user = sanitize_user( $username, true ); if( is_multisite() ) $user = preg_replace( '/\s+/', '', $user ); $user_email = sanitize_email( $user_email ); $activation_key = substr( md5( time() . rand() . $user_email ), 0, 16 ); $meta = serialize( $meta ); // change User Registered date and time according to timezone selected in WordPress settings $wppb_get_date = wppb_get_register_date(); if( isset( $wppb_get_date ) ) { $wppb_user_registered = $wppb_get_date; } else { $wppb_user_registered = current_time( 'mysql', true ); } if ( is_multisite() ) $wpdb->insert( $wpdb->signups, array('domain' => '', 'path' => '', 'title' => '', 'user_login' => $user, 'user_email' => $user_email, 'registered' => $wppb_user_registered, 'activation_key' => $activation_key, 'meta' => $meta ) ); else $wpdb->insert( $wpdb->prefix.'signups', array('domain' => '', 'path' => '', 'title' => '', 'user_login' => $user, 'user_email' => $user_email, 'registered' => $wppb_user_registered, 'activation_key' => $activation_key, 'meta' => $meta ) ); do_action ( 'wppb_signup_user', $username, $user_email, $activation_key, $meta ); wppb_signup_user_notification( $username, $user_email, $activation_key, $meta ); } /** * Notify user of signup success. * * Filter 'wppb_signup_user_notification_filter' to bypass this function or * replace it with your own notification behavior. * * Filter 'wppb_signup_user_notification_email' and * 'wppb_signup_user_notification_subject' to change the content * and subject line of the email sent to newly registered users. * * @param string $user The user's login name. * @param string $user_email The user's email address. * @param array $meta By default, an empty array. * @param string $activation_key The activation key created in wppb_signup_user() * @return bool */ function wppb_signup_user_notification( $user, $user_email, $activation_key, $meta = '' ) { if ( !apply_filters( 'wppb_signup_user_notification_filter', $user, $user_email, $activation_key, $meta ) ) return false; $wppb_general_settings = get_option( 'wppb_general_settings' ); $admin_email = get_site_option( 'admin_email' ); if ( $admin_email == '' ) $admin_email = 'support@' . $_SERVER['SERVER_NAME']; $from_name = apply_filters ( 'wppb_signup_user_notification_email_from_field', get_bloginfo( 'name' ) ); //we don't use this anymore do we ? /*$message_headers = apply_filters ( 'wppb_signup_user_notification_from', "From: \"{$from_name}\" <{$admin_email}>\n" . "Content-Type: text/plain; charset=\"" . get_option('blog_charset') . "\"\n" );*/ if( isset( $wppb_general_settings['activationLandingPage'] ) && ( trim( $wppb_general_settings['activationLandingPage'] ) != '' ) ) { $registration_page_url = add_query_arg( array('activation_key' => $activation_key), get_permalink( $wppb_general_settings['activationLandingPage'] ) ); } else { $registration_page_url = 'not_set'; } $registration_page_url = apply_filters( 'wppb_ec_landing_page', $registration_page_url, $user, $activation_key, $meta ); if ( $registration_page_url == 'not_set' ){ global $post; if( !empty( $post->ID ) ) $permalink = get_permalink( $post->ID ); else $permalink = get_bloginfo( 'url' ); if( !empty( $post->post_content ) ) $post_content = $post->post_content; else $post_content = ''; $registration_page_url = ( ( strpos( $post_content, '[wppb-register' ) !== false ) ? add_query_arg( array( 'activation_key' => $activation_key ), $permalink ) : add_query_arg( array( 'activation_key' => $activation_key ), get_bloginfo( 'url' ) ) ); } $subject = sprintf( __( '[%1$s] Activate %2$s', 'profile-builder'), $from_name, $user ); $subject = apply_filters( 'wppb_signup_user_notification_email_subject', $subject, $user_email, $user, $activation_key, $registration_page_url, $meta, $from_name, 'wppb_user_emailc_registr_w_email_confirm_email_subject' ); $message = sprintf( __( "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login.", "profile-builder" ), '', $registration_page_url, '.' ); $message = apply_filters( 'wppb_signup_user_notification_email_content', $message, $user_email, $user, $activation_key, $registration_page_url, $meta, $from_name, 'wppb_user_emailc_registr_w_email_confirm_email_content' ); $message_context = 'email_user_activate'; wppb_mail( $user_email, $subject, $message, $from_name, $message_context ); return true; } /** * Activate a signup. * * * @param string $activation_key The activation key provided to the user. * @return array An array containing information about the activated user and/or blog */ function wppb_manual_activate_signup( $activation_key ) { global $wpdb; if ( is_multisite() ) $signup = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->signups WHERE activation_key = %s", $activation_key ) ); else $signup = $wpdb->get_row( $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."signups WHERE activation_key = %s", $activation_key) ); if ( !empty( $signup ) && !$signup->active ){ $meta = unserialize( $signup->meta ); $user_login = esc_sql( $signup->user_login ); $user_email = esc_sql( $signup->user_email ); /* the password is in hashed form in the signup table and we will copy it later to the user */ $password = NULL; $user_id = username_exists($user_login); if ( ! $user_id ) $user_id = wppb_create_user( $user_login, $password, $user_email ); else $user_already_exists = true; if ( !$user_id ) return __( 'Could not create user!', 'profile-builder' ); elseif ( isset( $user_already_exists ) && ( $user_already_exists == true ) ) return __( 'That username is already activated!', 'profile-builder' ); else{ $now = current_time('mysql', true); $retVal = ( is_multisite() ? $wpdb->update( $wpdb->signups, array('active' => 1, 'activated' => $now), array('activation_key' => $activation_key) ) : $wpdb->update( $wpdb->base_prefix.'signups', array('active' => 1, 'activated' => $now), array('activation_key' => $activation_key) ) ); wppb_add_meta_to_user_on_activation( $user_id, '', $meta ); /* copy the hashed password from signup meta to wp user table */ if( !empty( $meta['user_pass'] ) ){ /* we might still have the base64 encoded password in signups and not the hash */ if( base64_encode(base64_decode($meta['user_pass'], true)) === $meta['user_pass'] ) $meta['user_pass'] = wp_hash_password( $meta['user_pass'] ); $wpdb->update( $wpdb->users, array('user_pass' => $meta['user_pass'] ), array('ID' => $user_id) ); //This is required so that the APC cached data is updated with the new password. Thanks to @foliovision wp_cache_delete( $user_id, 'users' ); } wppb_notify_user_registration_email( get_bloginfo( 'name' ), $user_login, $user_email, 'sending', $password, ( wppb_get_admin_approval_option_value() === 'yes' ? 'yes' : 'no' ) ); do_action('wppb_activate_user', $user_id, $password, $meta); return ( $retVal ? 'ok' : __( 'There was an error while trying to activate the user', 'profile-builder' ) ); } } } /** * Create a user. * * @param string $user_name The new user's login name. * @param string $password The new user's password. * @param string $email The new user's email address. * @return mixed Returns false on failure, or int $user_id on success */ function wppb_create_user( $user_name, $password, $email) { if( is_email( $user_name ) ) $user_name = apply_filters( 'wppb_generated_random_username', Wordpress_Creation_Kit_PB::wck_generate_slug( trim( $user_name ) ), $user_name ); else { $user_name = sanitize_user($user_name, true); if( is_multisite() ) $user_name = preg_replace( '/\s+/', '', $user_name ); } $user_id = wp_create_user( $user_name, $password, $email ); if ( is_wp_error($user_id) ) return false; // Newly created users have no roles or caps until they are added to a blog. delete_user_option( $user_id, 'capabilities' ); delete_user_option( $user_id, 'user_level' ); do_action( 'wppb_new_user', $user_id ); return $user_id; } //send an email to the admin regarding each and every new subscriber, and - if selected - to the user himself function wppb_notify_user_registration_email( $bloginfo, $user_name, $email, $send_credentials_via_email, $password, $adminApproval ){ /* if login with email is enabled user_name gets the value of the users email */ $wppb_general_settings = get_option( 'wppb_general_settings' ); if ( isset( $wppb_general_settings['loginWith'] ) && ( $wppb_general_settings['loginWith'] == 'email' ) ) { $user_name = $email; } //send email to the admin $message_from = apply_filters( 'wppb_register_from_email_message_admin_email', $bloginfo ); $message_subject = '['.$message_from.'] '.__( 'A new subscriber has (been) registered!', 'profile-builder' ); $message_subject = apply_filters ('wppb_register_admin_email_subject_without_admin_approval', $message_subject, $email, $password, $message_from, 'wppb_admin_emailc_default_registration_email_subject' ); $message_content = sprintf( __( 'New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            ', 'profile-builder'), $message_from, $user_name, $email ); $message_context = 'email_admin_new_subscriber'; if ( $adminApproval == 'yes' ) { $user_data = get_user_by( 'email', $email ); $wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' ); $adminApproval_mailAdmin = 0; if( $wppb_generalSettings != 'not_found' && ! empty( $wppb_generalSettings['adminApprovalOnUserRole'] ) ) { foreach( $user_data->roles as $role ) { if( in_array( $role, $wppb_generalSettings['adminApprovalOnUserRole'] ) ) { if( ! current_user_can( 'delete_users' ) ) { $adminApproval_mailAdmin = 1; } } } } else { if( ! current_user_can( 'delete_users' ) ) { $adminApproval_mailAdmin = 1; } } if( $adminApproval_mailAdmin == 1 ) { $message_subject = apply_filters( 'wppb_register_admin_email_subject_with_admin_approval', $message_subject, $email, $password, $message_from, 'wppb_admin_emailc_registration_with_admin_approval_email_subject' ); $message_content .= wppb_adminApproval_adminEmailContent(); $message_content = apply_filters( 'wppb_register_admin_email_message_with_admin_approval', $message_content, $email, $password, $message_from, 'wppb_admin_emailc_registration_with_admin_approval_email_content' ); $message_context = 'email_admin_approve'; } else{ $message_content = apply_filters( 'wppb_register_admin_email_message_without_admin_approval', $message_content, $email, $password, $message_from, 'wppb_admin_emailc_default_registration_email_content' ); } } else { $message_content = apply_filters( 'wppb_register_admin_email_message_without_admin_approval', $message_content, $email, $password, $message_from, 'wppb_admin_emailc_default_registration_email_content' ); } if ( trim( $message_content ) != '' ){ $admin_email = apply_filters('wppb_send_to_admin_email', get_option('admin_email'), get_user_by( 'email', $email ), $message_context); wppb_mail( $admin_email, $message_subject, $message_content, $message_from, $message_context ); } //send an email to the newly registered user, if this option was selected if ( isset( $send_credentials_via_email ) && ( $send_credentials_via_email == 'sending' ) ){ $user_message_from = apply_filters( 'wppb_register_from_email_message_user_email', $bloginfo ); $user_message_subject = sprintf( __( '[%1$s] Your new account information', 'profile-builder' ), $user_message_from, $user_name, $password ); $user_message_subject = apply_filters( 'wppb_register_user_email_subject_without_admin_approval', $user_message_subject, $email, $password, $user_message_from, 'wppb_user_emailc_default_registration_email_subject' ); if ( $password === NULL ) { $password = __( 'Your selected password at signup', 'profile-builder' ); } $send_password = apply_filters( 'wppb_send_password_in_default_email_message', false ); $site_url = ' ' . home_url() . ' '; if( !$send_password ) $user_message_content = sprintf( __( 'Welcome to %1$s!


            Your username is: %2$s and your password is the one that you have selected during registration.

            Access your account: %3$s ', 'profile-builder' ), $user_message_from, $user_name, $site_url ); else $user_message_content = sprintf( __( 'Welcome to %1$s!


            Your username is: %2$s and the password: %3$s.

            Access your account: %4$s ', 'profile-builder' ), $user_message_from, $user_name, $password, $site_url ); if ( $password === __( 'Your selected password at signup', 'profile-builder' ) ) { $password = NULL; } $user_message_context = 'email_user_account_info'; if ( $adminApproval == 'yes' ){ $user_data = get_user_by( 'email', $email ); $wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' ); $adminApproval_mailUser = 0; if( $wppb_generalSettings != 'not_found' && ! empty( $wppb_generalSettings['adminApprovalOnUserRole'] ) ) { foreach( $user_data->roles as $role ) { if( in_array( $role, $wppb_generalSettings['adminApprovalOnUserRole'] ) ) { if( ! current_user_can( 'delete_users' ) ) { $adminApproval_mailUser = 1; } } } } else { if( ! current_user_can( 'delete_users' ) ) { $adminApproval_mailUser = 1; } } if( $adminApproval_mailUser == 1 ) { $user_message_subject = apply_filters( 'wppb_register_user_email_subject_with_admin_approval', $user_message_subject, $email, $password, $user_message_subject, 'wppb_user_emailc_registration_with_admin_approval_email_subject' ); $user_message_content .= wppb_adminApproval_userEmailContent(); $user_message_context = 'email_user_need_approval'; $user_message_content = apply_filters( 'wppb_register_user_email_message_with_admin_approval', $user_message_content, $email, $password, $user_message_subject, 'wppb_user_emailc_registration_with_admin_approval_email_content' ); } else{ $user_message_content = apply_filters( 'wppb_register_user_email_message_without_admin_approval', $user_message_content, $email, $password, $user_message_subject, 'wppb_user_emailc_default_registration_email_content' ); } } else $user_message_content = apply_filters( 'wppb_register_user_email_message_without_admin_approval', $user_message_content, $email, $password, $user_message_subject, 'wppb_user_emailc_default_registration_email_content' ); $message_sent = wppb_mail( $email, $user_message_subject, $user_message_content, $user_message_from, $user_message_context ); return ( ( $message_sent ) ? 2 : 1 ); } } // function with content to be added in email sent to admin if "Admin Approval" is on function wppb_adminApproval_adminEmailContent() { $emailContent = '
            ' . __( 'The "Admin Approval" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!', 'profile-builder') ."\r\n"; return $emailContent; } // function with content to be added in email sent to user if "Admin Approval" is on function wppb_adminApproval_userEmailContent() { $emailContent = '

            ' . __( 'Before you can access your account, an administrator needs to approve it. You will be notified via email.', 'profile-builder' ); return $emailContent; } // END FUNCTIONS USED BOTH ON THE REGISTRATION PAGE AND THE EMAIL CONFIRMATION TABLE // Set up the AJAX hooks add_action( 'wp_ajax_wppb_get_unconfirmed_email_number', 'wppb_get_unconfirmed_email_number' ); add_action( 'wp_ajax_wppb_handle_email_confirmation_cases', 'wppb_handle_email_confirmation_cases' ); $wppb_general_settings = get_option( 'wppb_general_settings', 'not_found' ); if( $wppb_general_settings != 'not_found' ) if( !empty($wppb_general_settings['emailConfirmation'] ) && ( $wppb_general_settings['emailConfirmation'] == 'yes' ) ){ if ( is_multisite() ){ /* don't display on network admin */ if( strpos($_SERVER['SCRIPT_NAME'], 'users.php') && !is_network_admin() ){ //global $pagenow doesn't seem to work add_action( 'admin_head', 'wppb_add_pending_users_header_script' ); } }else{ global $pagenow; if ( $pagenow == 'users.php' ){ add_action( 'admin_head', 'wppb_add_pending_users_header_script' ); } } if ( file_exists ( WPPB_PLUGIN_DIR . '/features/admin-approval/admin-approval.php' ) ) add_action( 'user_register', 'wppb_update_user_status_on_admin_registration' ); } // function to delete the users from the _signups table also function wppb_delete_user_from_signups( $user_id ) { global $wpdb; $user = get_user_by( 'id', $user_id ); $wpdb->delete( $wpdb->base_prefix.'signups', array( 'user_email' => $user->user_email ) ); } add_action( 'delete_user', 'wppb_delete_user_from_signups' ); features/email-confirmation/class-email-confirmation.php000066600000057606152141651160017554 0ustar00prepare_items() to handle any data manipulation, then * finally call $yourInstance->display() to render the table to the page. * */ class wpp_list_unfonfirmed_email_table extends PB_WP_List_Table { /** ************************************************************************ * REQUIRED. Set up a constructor that references the parent constructor. We * use the parent reference to set some default configs. ***************************************************************************/ function __construct(){ global $status, $page; global $wpdb; //Set parent defaults parent::__construct( array( 'singular' => 'user', //singular name of the listed records 'plural' => 'users', //plural name of the listed records 'ajax' => false //does this table support ajax? ) ); } /** ************************************************************************ * Recommended. This method is called when the parent class can't find a method * specifically build for a given column. Generally, it's recommended to include * one method for each column you want to render, keeping your package class * neat and organized. For example, if the class needs to process a column * named 'username', it would first see if a method named $this->column_title() * exists - if it does, that method will be used. If it doesn't, this one will * be used. Generally, you should try to use custom column methods as much as * possible. * * Since we have defined a column_title() method later on, this method doesn't * need to concern itself with any column with a name of 'username'. Instead, it * needs to handle everything else. * * For more detailed insight into how columns are handled, take a look at * PB_WP_List_Table::single_row_columns() * * @param array $item A singular item (one full row's worth of data) * @param array $column_name The name/slug of the column to be processed * @return string Text or HTML to be placed inside the column **************************************************************************/ function column_default($item, $column_name){ switch($column_name){ case 'email': return $item[$column_name]; case 'registered': return date_i18n( "Y-m-d G:i:s", wppb_add_gmt_offset( strtotime( $item[$column_name] ) ) ); case 'user-meta': global $wpdb; $sql_result = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM " . $wpdb->base_prefix . "signups WHERE user_email = %s", $item['email'] ), ARRAY_A ); $user_meta = $sql_result['meta']; $user_meta_content = ''; if( !empty( $user_meta ) ){ foreach( maybe_unserialize( $user_meta ) as $key => $value ){ if( $key != 'user_pass' ){ if ( is_array($value) ) $value = implode(',',$value); $user_meta_content .= $key.':'.$value.'
            '; } } } return ''. __( 'show', 'profile-builder' ) .''; default: return print_r($item,true); //Show the whole array for troubleshooting purposes } } /** ************************************************************************ * Recommended. This is a custom column method and is responsible for what * is rendered in any column with a name/slug of 'username'. Every time the class * needs to render a column, it first looks for a method named * column_{$column_title} - if it exists, that method is run. If it doesn't * exist, column_default() is called instead. * * This example also illustrates how to implement rollover actions. Actions * should be an associative array formatted as 'slug'=>'link html' - and you * will need to generate the URLs yourself. You could even ensure the links * * * @see PB_WP_List_Table::::single_row_columns() * @param array $item A singular item (one full row's worth of data) * @return string Text to be placed inside the column **************************************************************************/ function column_username($item){ $GRavatar = get_avatar( $item['email'], 32, '' ); //Build row actions $actions = array( 'delete' => sprintf( '' . __( 'Delete', 'profile-builder' ) . '', wppb_curpageurl(), 'delete', $item['ID'] ), 'confirm' => sprintf( '' . __( 'Confirm Email', 'profile-builder' ) . '', wppb_curpageurl(), 'confirm', $item['ID'] ), 'resend' => sprintf( '' . __( 'Resend Activation Email', 'profile-builder' ) . '', wppb_curpageurl(), 'resend', $item['ID'] ) ); //Return the user row return sprintf('%1$s %2$s %3$s', /*$1%s*/ $GRavatar, /*$2%s*/ $item['username'], /*$3%s*/ $this->row_actions($actions) ); } /** ************************************************************************ * REQUIRED if displaying checkboxes or using bulk actions! The 'cb' column * is given special treatment when columns are processed. It ALWAYS needs to * have it's own method. * * @see PB_WP_List_Table::::single_row_columns() * @param array $item A singular item (one full row's worth of data) * @return string Text to be placed inside the column **************************************************************************/ function column_cb($item){ return sprintf( '', /*$1%s*/ $this->_args['singular'], //Let's simply repurpose the table's singular label /*$2%s*/ $item['ID'] //The value of the checkbox should be the record's id ); } /** ************************************************************************ * REQUIRED! This method dictates the table's columns and titles. This should * return an array where the key is the column slug (and class) and the value * is the column's title text. If you need a checkbox for bulk actions, refer * to the $columns array below. * * The 'cb' column is treated differently than the rest. If including a checkbox * column in your table you must create a column_cb() method. If you don't need * bulk actions or checkboxes, simply leave the 'cb' entry out of your array. * * @see PB_WP_List_Table::::single_row_columns() * @return array An associative array containing column information: 'slugs'=>'Visible Titles' **************************************************************************/ function get_columns(){ $columns = array( 'cb' => '', //Render a checkbox instead of text 'username' => __( 'Username', 'profile-builder' ), 'email' => __( 'E-mail', 'profile-builder' ), 'registered' => __( 'Registered', 'profile-builder' ), 'user-meta' => __( 'User Meta', 'profile-builder' ) ); return $columns; } /** ************************************************************************ * Optional. If you want one or more columns to be sortable (ASC/DESC toggle), * you will need to register it here. This should return an array where the * key is the column that needs to be sortable, and the value is db column to * sort by. Often, the key and value will be the same, but this is not always * the case (as the value is a column name from the database, not the list table). * * This method merely defines which columns should be sortable and makes them * clickable - it does not handle the actual sorting. You still need to detect * the ORDERBY and ORDER querystring variables within prepare_items() and sort * your data accordingly (usually by modifying your query). * * @return array An associative array containing all the columns that should be sortable: 'slugs'=>array('data_values',bool) **************************************************************************/ function get_sortable_columns() { $sortable_columns = array( 'username' => array('username',false), //true means it's already sorted 'email' => array('email',false), 'registered' => array('registered',false) ); return $sortable_columns; } /** ************************************************************************ * Optional. If you need to include bulk actions in your list table, this is * the place to define them. Bulk actions are an associative array in the format * 'slug'=>'Visible Title' * * If this method returns an empty value, no bulk action will be rendered. If * you specify any bulk actions, the bulk actions box will be rendered with * the table automatically on display(). * * Also note that list tables are not automatically wrapped in
            elements, * so you will need to create those manually in order for bulk actions to function. * * @return array An associative array containing all the bulk actions: 'slugs'=>'Visible Titles' **************************************************************************/ function get_bulk_actions() { $actions = array( 'delete' => __( 'Delete', 'profile-builder' ), 'confirm' => __( 'Confirm Email', 'profile-builder' ), 'resend' => __( 'Resend Activation Email', 'profile-builder' ) ); return $actions; } /** ************************************************************************ * Optional. You can handle your bulk actions anywhere or anyhow you prefer. * For this example package, we will handle it in the class to keep things * clean and organized. * * @see $this->prepare_items() **************************************************************************/ function wppb_process_bulk_action_message( $message, $url ){ echo ""; } function wppb_process_bulk_action() { global $current_user; global $wpdb; if ( current_user_can( apply_filters( 'wppb_email_confirmation_user_capability', 'manage_options' ) ) ){ if( 'delete' === $this->current_action() ) { foreach ( $_GET['user'] as $user ){ $sql_result = $wpdb->query( $wpdb->prepare( "DELETE FROM ".$wpdb->base_prefix."signups WHERE user_email = %s", sanitize_email( $user ) ) ); if ( !$sql_result ) $this->wppb_process_bulk_action_message( sprintf( __( "%s couldn't be deleted", "profile-builder" ), $result->user_login ), get_bloginfo('url').'/wp-admin/users.php?page=unconfirmed_emails' ); } $this->wppb_process_bulk_action_message( __( 'All users have been successfully deleted', 'profile-builder' ), get_bloginfo('url').'/wp-admin/users.php?page=unconfirmed_emails' ); }elseif( 'confirm' === $this->current_action() ) { foreach ( $_GET['user'] as $user ){ $sql_result = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM " . $wpdb->base_prefix . "signups WHERE user_email = %s", sanitize_email( $user ) ), ARRAY_A ); if ( $sql_result ) wppb_manual_activate_signup( $sql_result['activation_key'] ); } $this->wppb_process_bulk_action_message( __( 'The selected users have been activated', 'profile-builder' ), get_bloginfo('url').'/wp-admin/users.php?page=unconfirmed_emails' ); }elseif( 'resend' === $this->current_action() ) { foreach ( $_GET['user'] as $user ){ $sql_result = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM " . $wpdb->base_prefix . "signups WHERE user_email = %s", sanitize_email( $user ) ), ARRAY_A ); if ( $sql_result ) wppb_signup_user_notification( esc_sql( $sql_result['user_login'] ), esc_sql( $sql_result['user_email'] ), $sql_result['activation_key'], $sql_result['meta'] ); } $this->wppb_process_bulk_action_message( __( 'The selected users have had their activation emails resent', 'profile-builder' ), get_bloginfo('url').'/wp-admin/users.php?page=unconfirmed_emails' ); } }else $this->wppb_process_bulk_action_message( __( "Sorry, but you don't have permission to do that!", "profile-builder" ), get_bloginfo('url').'/wp-admin/' ); } /** ************************************************************************ * REQUIRED! This is where you prepare your data for display. This method will * usually be used to query the database, sort and filter the data, and generally * get it ready to be displayed. At a minimum, we should set $this->items and * $this->set_pagination_args(), although the following properties and methods * are frequently interacted with here... * * @global WPDB $wpdb * @uses $this->_column_headers * @uses $this->items * @uses $this->get_columns() * @uses $this->get_sortable_columns() * @uses $this->get_pagenum() * @uses $this->set_pagination_args() **************************************************************************/ function prepare_items() { global $wpdb; $this->dataArray = array(); /** * First, lets decide how many records per page to show */ $per_page = get_user_meta( get_current_user_id(), 'users_per_page', true ); if( !empty($per_page) ) $per_page = apply_filters('wppb_email_confirmation_user_per_page_number', $per_page); else $per_page = apply_filters('wppb_email_confirmation_user_per_page_number', 20); /* determine offset */ if( !empty( $_REQUEST['paged'] ) ){ $offset = ( esc_attr( $_REQUEST['paged'] ) -1 ) * $per_page; } else $offset = 0; /* handle order and orderby attr */ if( !empty( $_REQUEST['orderby'] ) ){ $orderby = sanitize_text_field( $_REQUEST['orderby'] ); if( $orderby == 'username' ) $orderby = 'user_login'; elseif ( $orderby == 'email' ) $orderby = 'user_email'; } else $orderby = 'user_login'; if( !empty( $_REQUEST['order'] ) && $_REQUEST['order'] == 'desc' ) $order = "DESC"; else $order = 'ASC'; /* handle the WHERE clause */ $where = "active = 0"; if( isset( $_REQUEST['s'] ) && !empty( $_REQUEST['s'] ) ){ $where .= " AND ( user_login LIKE '%".sanitize_text_field($_REQUEST['s'])."%' OR user_email LIKE '%".sanitize_text_field($_REQUEST['s'])."%' OR registered LIKE '%".sanitize_text_field($_REQUEST['s'])."%' )"; } /* since version 2.0.7 for multisite we add a 'registered_for_blog_id' meta in the registration process so we can display only the users registered on that blog. Also for backwards compatibility we display the users that don't have that meta at all */ if( is_multisite() ){ $where .= " AND ( meta NOT LIKE '%\"registered_for_blog_id\"%' OR meta LIKE '%\"registered_for_blog_id\";i:".get_current_blog_id()."%' )"; } $results = $wpdb->get_results("SELECT * FROM ".$wpdb->base_prefix."signups WHERE $where ORDER BY $orderby $order LIMIT $offset, $per_page"); foreach ($results as $result){ $tempArray = array('ID' => $result->user_email, 'username' => $result->user_login, 'email' => $result->user_email, 'registered' => $result->registered); array_push($this->dataArray, $tempArray); } /** * REQUIRED for pagination. Let's check how many items are in our data array. * In real-world use, this would be the total number of items in your database, * without filtering. We'll need this later, so you should always include it * in your own package classes. */ $total_items = $wpdb->get_var("SELECT COUNT(*) FROM ".$wpdb->base_prefix."signups WHERE $where"); /** * REQUIRED. Now we need to define our column headers. This includes a complete * array of columns to be displayed (slugs & titles), a list of columns * to keep hidden, and a list of columns that are sortable. Each of these * can be defined in another method (as we've done here) before being * used to build the value for our _column_headers property. */ $columns = $this->get_columns(); $hidden = array(); $sortable = $this->get_sortable_columns(); /** * REQUIRED. Finally, we build an array to be used by the class for column * headers. The $this->_column_headers property takes an array which contains * 3 other arrays. One for all columns, one for hidden columns, and one * for sortable columns. */ $this->_column_headers = array($columns, $hidden, $sortable); /** * Optional. You can handle your bulk actions however you see fit. In this * case, we'll handle them within our package just to keep things clean. */ $this->wppb_process_bulk_action(); /** * Instead of querying a database, we're going to fetch the example data * property we created for use in this plugin. This makes this example * package slightly different than one you might build on your own. In * this example, we'll be using array manipulation to sort and paginate * our data. In a real-world implementation, you will probably want to * use sort and pagination data to build a custom query instead, as you'll * be able to use your precisely-queried data immediately. */ $data = $this->dataArray; /** * REQUIRED. Now we can add our *sorted* data to the items property, where * it can be used by the rest of the class. */ $this->items = $data; /** * REQUIRED. We also have to register our pagination options & calculations. */ $this->set_pagination_args( array( 'total_items' => $total_items, //WE have to calculate the total number of items 'per_page' => $per_page, //WE have to determine how many items to show on a page 'total_pages' => ceil($total_items/$per_page) //WE have to calculate the total number of pages ) ); } } /** ************************ REGISTER THE PAGE **************************** ******************************************************************************* * Now we just need to define an admin page. */ function wppb_add_ec_submenu_page() { $wppb_generalSettings = get_option('wppb_general_settings', 'not_found'); if($wppb_generalSettings != 'not_found') { if( !empty($wppb_generalSettings['emailConfirmation']) && ($wppb_generalSettings['emailConfirmation'] == 'yes') ){ $hook = add_submenu_page('users.php', 'Unconfirmed Email Address', 'Unconfirmed Email Address', 'manage_options', 'unconfirmed_emails', 'wppb_unconfirmed_email_address_custom_menu_page'); add_action( "load-$hook", 'wppb_ec_screen_options' ); //add screen options to Unconfirmed Email Users page remove_submenu_page('users.php', 'unconfirmed_emails'); //hide the page in the admin menu } } } add_action('admin_menu', 'wppb_add_ec_submenu_page'); /***************************** RENDER PAGE ******************************** ******************************************************************************* * This function renders the admin page. Although it's * possible to call prepare_items() and display() from the constructor, there * are often times where you may need to include logic here between those steps, * so we've instead called those methods explicitly. It keeps things flexible, and * it's the way the list tables are used in the WordPress core. */ function wppb_unconfirmed_email_address_custom_menu_page(){ //Create an instance of our package class... $listTable = new wpp_list_unfonfirmed_email_table(); //Fetch, prepare, sort, and filter our data... $listTable->prepare_items(); ?>

            search_box( __( 'Search Users' ), 'user' ); ?> display() ?>
            __( 'Number of items per page:' ),//use the default wordpress domain 'default' => 20, 'option' => 'users_per_page' //this is the same option as the one on the normal User screen ); add_screen_option( $option, $args ); } /** * Fix the page title of the admin page, since using remove_sumbenu_page() breaks the page title */ add_filter('admin_title', 'wppb_ec_admin_title', 10 ); function wppb_ec_admin_title($admin_title){ if( isset( $_GET['page'] ) && sanitize_text_field( $_GET['page'] ) === 'unconfirmed_emails' ) { $admin_title = __('Users with Unconfirmed Email Address', 'profile-builder') . $admin_title; } return $admin_title; }features/upgrades/upgrades-functions.php000066600000100050152141651160014527 0ustar00 $value ){ if ( ( $value['item_type'] == 'checkbox' ) || ( $value['item_type'] == 'radio' ) || ( $value['item_type'] == 'select' ) ){ if ( isset( $custom_fields[$key]['item_option_values'] ) ){ $custom_fields[$key]['item_option_labels'] = $custom_fields[$key]['item_option_values']; unset( $custom_fields[$key]['item_option_values'] ); } }else unset( $custom_fields[$key]['item_option_values'] ); } update_option( 'wppb_custom_fields', $custom_fields ); } } /** * Function that checks if there is at least one EP and/or R form. In the execution timeline this function runs faster than the wppb_prepopulate_fields function * * @since v.2.0 * * @return void */ function wppb_pro_hobbyist_free_v2_0(){ $wppb_manage_fields = get_option( 'wppb_manage_fields', 'not_found' ); $backed_up_manage_fields = array(); // part that handles the manage fields if ( $wppb_manage_fields == 'not_found' ){ $old_default_fields = get_option( 'wppb_default_settings', 'not_found' ); if ( $old_default_fields != 'not_found' ){ $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Name (Heading)', '', 'No' ); if ( $old_default_fields['username'] == 'show' ) $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Username', '', ucfirst( trim( $old_default_fields['usernameRequired'] ) ), __( 'The usernames cannot be changed.', 'profile-builder' ) ); if ( $old_default_fields['firstname'] == 'show' ) $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - First Name', 'first_name', ucfirst( trim( $old_default_fields['firstnameRequired'] ) ) ); if ( $old_default_fields['lastname'] == 'show' ) $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Last Name', 'last_name', ucfirst( trim( $old_default_fields['lastnameRequired'] ) ) ); if ( $old_default_fields['nickname'] == 'show' ) $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Nickname', 'nickname', ucfirst( trim( $old_default_fields['nicknameRequired'] ) ) ); if ( $old_default_fields['dispname'] == 'show' ) $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Display name publicly as', '', ucfirst( trim( $old_default_fields['dispnameRequired'] ) ) ); $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Contact Info (Heading)', '', 'No' ); if ( $old_default_fields['email'] == 'show' ) $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - E-mail', '', ucfirst( trim( $old_default_fields['emailRequired'] ) ), '(required)' ); if ( $old_default_fields['website'] == 'show' ) $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Website', '', ucfirst( trim( $old_default_fields['websiteRequired'] ) ) ); if ( $old_default_fields['aim'] == 'show' ) $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - AIM', 'aim', ucfirst( trim( $old_default_fields['aimRequired'] ) ) ); if ( $old_default_fields['yahoo'] == 'show' ) $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Yahoo IM', 'yim', ucfirst( trim( $old_default_fields['yahooRequired'] ) ) ); if ( $old_default_fields['jabber'] == 'show' ) $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Jabber / Google Talk', 'jabber', ucfirst( trim( $old_default_fields['jabberRequired'] ) ) ); $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - About Yourself (Heading)', '', 'No' ); if ( $old_default_fields['bio'] == 'show' ) $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Biographical Info', 'description', ucfirst( trim( $old_default_fields['bioRequired'] ) ) ); if ( $old_default_fields['password'] == 'show' ){ $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Password', '', ucfirst( trim( $old_default_fields['passwordRequired'] ) ) ); $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Repeat Password', '', ucfirst( trim( $old_default_fields['passwordRequired'] ) ) ); } }else{ $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Name (Heading)', '', 'No' ); $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Username', '', 'Yes', __( 'The usernames cannot be changed.', 'profile-builder' ) ); $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - First Name', 'first_name', 'No' ); $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Last Name', 'last_name', 'No' ); $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Nickname', 'nickname', 'No' ); $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Display name publicly as', '', 'No' ); $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Contact Info (Heading)', '', 'No' ); $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - E-mail', '', 'Yes', '(required)' ); $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Website', '', 'No' ); // Default contact methods were removed in WP 3.6. A filter dictates contact methods. if ( apply_filters( 'wppb_remove_default_contact_methods', get_site_option( 'initial_db_version' ) < 23588 ) ){ $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - AIM', 'aim', 'No' ); $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Yahoo IM', 'yim', 'No' ); $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Jabber / Google Talk', 'jabber', 'No' ); } $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - About Yourself (Heading)', '', 'No' ); $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Biographical Info', 'description', 'No' ); $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Password', '', 'Yes' ); $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'Default - Repeat Password', '', 'Yes' ); } $old_custom_fields = get_option( 'wppb_custom_fields', 'not_found' ); if( $old_custom_fields != 'not_found' && count( $old_custom_fields ) != 0 ){ $existing_ids = array(); foreach ( $old_custom_fields as $key => $value ) { $local_array = array(); if( isset( $value['id'] ) ) $existing_ids[] = $value['id']; /* id will be set up at a later point */ $local_array['id'] = ( isset( $value['id'] ) ? trim( $value['id'] ) : '' ); $local_array['meta-name'] = ( isset( $value['item_metaName'] ) ? trim( $value['item_metaName'] ) : '' ); $local_array['field-title'] = ( isset( $value['item_title'] ) ? trim( $value['item_title'] ) : '' ); $local_array['description'] = ( isset( $value['item_desc'] ) ? $value['item_desc'] : '' ); $local_array['required'] = 'No'; $local_array['overwrite-existing'] = 'No'; $local_array['row-count'] = '5'; $local_array['allowed-image-extensions'] = '.*'; $local_array['allowed-upload-extensions'] = '.*'; $local_array['avatar-size'] = '100'; $local_array['date-format'] = 'mm/dd/yy'; $local_array['terms-of-agreement'] = ''; $local_array['options'] = ''; $local_array['labels'] = ''; $local_array['recaptcha-type'] = 'v2'; $local_array['public-key'] = ''; $local_array['private-key'] = ''; $local_array['default-value'] = ''; $local_array['default-option'] = ''; $local_array['default-options'] = ''; $local_array['default-content'] = ''; switch ( $value['item_type' ] ){ case "heading":{ $local_array['field'] = 'Heading'; $local_array['meta-name'] = ''; break; } case "input":{ $local_array['field'] = 'Input'; $local_array['required'] = ucfirst( trim( $value['item_required'] ) ); break; } case "hiddenInput":{ $local_array['field'] = 'Input (Hidden)'; $local_array['default-value'] = ( isset( $value['item_options'] ) ? trim( $value['item_options'] ) : '' ); break; } case "checkbox":{ $local_array['field'] = 'Checkbox'; $local_array['options'] = ( isset( $value['item_options'] ) ? trim( $value['item_options'] ) : '' ); $local_array['labels'] = ( isset( $value['item_option_labels'] ) ? trim( $value['item_option_labels'] ) : '' ); $local_array['required'] = ucfirst( trim( $value['item_required'] ) ); break; } case "agreeToTerms":{ $local_array['field'] = 'Checkbox (Terms and Conditions)'; $local_array['required'] = ucfirst( trim( "Yes" ) ); break; } case "radio":{ $local_array['field'] = 'Radio'; $local_array['options'] = ( isset( $value['item_options'] ) ? trim( $value['item_options'] ) : '' ); $local_array['labels'] = ( isset( $value['item_option_labels'] ) ? trim( $value['item_option_labels'] ) : '' ); $local_array['required'] = ucfirst( trim( $value['item_required'] ) ); break; } case "select":{ $local_array['field'] = 'Select'; $local_array['options'] = ( isset( $value['item_options'] ) ? trim( $value['item_options'] ) : '' ); $local_array['labels'] = ( isset( $value['item_option_labels'] ) ? trim( $value['item_option_labels'] ) : '' ); $local_array['required'] = ucfirst( trim( $value['item_required'] ) ); break; } case "countrySelect":{ $local_array['field'] = 'Select (Country)'; $local_array['required'] = ucfirst( trim( $value['item_required'] ) ); break; } case "timeZone":{ $local_array['field'] = 'Select (Timezone)'; $local_array['required'] = ucfirst( trim( $value['item_required'] ) ); break; } case "datepicker":{ $local_array['field'] = 'Datepicker'; $local_array['required'] = ucfirst( trim( $value['item_required'] ) ); break; } case "textarea":{ $local_array['field'] = 'Textarea'; $local_array['row-count'] = ( isset( $value['item_options'] ) ? trim( $value['item_options'] ) : '' ); $local_array['required'] = ucfirst( trim( $value['item_required'] ) ); break; } case "upload":{ $local_array['field'] = 'Upload'; $local_array['allowed-upload-extensions'] = ( isset( $value['item_options'] ) ? trim( $value['item_options'] ) : $local_array['allowed-upload-extensions'] ); $local_array['required'] = ucfirst( trim( $value['item_required'] ) ); break; } case "avatar":{ $local_array['field'] = 'Avatar'; $local_array['avatar-size'] = ( isset( $value['item_options'] ) ? trim( $value['item_options'] ) : $local_array['avatar-size'] ); $local_array['required'] = ucfirst( trim( $value['item_required'] ) ); break; } } array_push( $backed_up_manage_fields, $local_array ); } } } // part which handles the removal of the reCAPTCHA from the addon list $wppb_module_settings = get_option( 'wppb_addon_settings', 'not_found' ); if ( $wppb_module_settings != 'not_found' ){ if ( isset( $wppb_module_settings['wppb_reCaptcha'] ) && ( $wppb_module_settings['wppb_reCaptcha'] == 'show' ) ){ $recaptcha_settings = get_option( 'reCaptchaSettings' ); if ( ( $recaptcha_settings != 'no_found' ) || ( count( $recaptcha_settings ) != 0 ) ){ $backed_up_manage_fields = wppb_add_existing_default_fields( $backed_up_manage_fields, 'reCAPTCHA', '', 'Yes', '', trim( $recaptcha_settings['publicKey'] ), trim( $recaptcha_settings['privateKey'] ) ); } } unset( $wppb_module_settings['wppb_reCaptcha'] ); $wppb_module_settings['wppb_multipleEditProfileForms'] = 'hide'; $wppb_module_settings['wppb_multipleRegistrationForms'] = 'hide'; update_option( 'wppb_module_settings', $wppb_module_settings ); } /* set up start from index. it is set from the highest existing index + 1 */ if( !empty( $existing_ids ) ) { rsort($existing_ids, SORT_NUMERIC ); $start_from_index = $existing_ids[0] + 1; } else $start_from_index = 1; /* set up ids for each field */ if( !empty( $backed_up_manage_fields ) ){ foreach( $backed_up_manage_fields as $key => $backed_up_manage_field ){ if( empty( $backed_up_manage_fields[$key]['id'] ) ){ $backed_up_manage_fields[$key]['id'] = $start_from_index; $start_from_index ++; } } } add_option( 'wppb_manage_fields', $backed_up_manage_fields ); // part which handles the general settings select->checkbox backwards comp. $wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' ); if ( ( $wppb_generalSettings != 'not_found' ) && ( count( $wppb_generalSettings ) > 1 ) ){ if ( isset( $wppb_generalSettings['extraFieldsLayout'] ) && ( $wppb_generalSettings['extraFieldsLayout'] == 'no' ) ) unset( $wppb_generalSettings['extraFieldsLayout'] ); else $wppb_generalSettings['extraFieldsLayout'] = 'default'; update_option( 'wppb_general_settings', $wppb_generalSettings ); } } /** * Function that adds backwards compatibility for the userlisting * * @since v.2.0 * */ function wppb_pro_userlisting_compatibility_upgrade(){ if ( wppb_default_form_already_present( 'Userlisting', 'wppb-ul-cpt' ) ) return ''; $old_userlisting_settings = get_option( 'customUserListingSettings', 'not_found' ); if ( $old_userlisting_settings == 'not_found' ) $old_userlisting_settings = get_option( 'userListingSettings' ); if ( $old_userlisting_settings == 'not_found' ) return; $all_userlisting = ( isset( $old_userlisting_settings['allUserlisting'] ) ? wppb_replace_merge_tags( $old_userlisting_settings['allUserlisting'], true ) : '' ); $single_userlisting = ( isset( $old_userlisting_settings['singleUserlisting'] ) ? wppb_replace_merge_tags( $old_userlisting_settings['singleUserlisting'] ) : '' ); if( !empty( $old_userlisting_settings['sortingNumber'] ) ) $number_os_users_per_page = $old_userlisting_settings['sortingNumber']; else $number_os_users_per_page = '5'; if( !empty( $old_userlisting_settings['sortingCriteria'] ) ) $default_sorting_criteria = $old_userlisting_settings['sortingCriteria']; else $default_sorting_criteria = 'login'; if( !empty( $old_userlisting_settings['sortingOrder'] ) ) $default_sorting_order = $old_userlisting_settings['sortingOrder']; else $default_sorting_order = 'asc'; if( !empty( $old_userlisting_settings['avatarSize'] ) ) $avatar_size_all = $old_userlisting_settings['avatarSize']; else $avatar_size_all = '40'; if( !empty( $old_userlisting_settings['avatarSize'] ) ) $avatar_size_single = $old_userlisting_settings['avatarSize']; else $avatar_size_single = '60'; $userlisting_settings = array( array( 'roles-to-display' => '*', 'number-of-userspage' => $number_os_users_per_page, 'default-sorting-criteria' => $default_sorting_criteria, 'default-sorting-order' => $default_sorting_order, 'avatar-size-all-userlisting' => $avatar_size_all, 'avatar-size-single-userlisting' => $avatar_size_single ) ); $ul_post_id = wp_insert_post( array( 'post_title' => 'Userlisting', 'post_status' => 'publish', 'post_author' => get_current_user_id(), 'post_type' => 'wppb-ul-cpt', 'post_content' => 'Default Userlisting form placeholder' ), true ); add_post_meta( $ul_post_id, 'wppb-ul-templates', $all_userlisting ); add_post_meta( $ul_post_id, 'wppb-single-ul-templates', $single_userlisting ); add_post_meta( $ul_post_id, 'wppb_ul_page_settings', $userlisting_settings ); } /** * Function that replaces the individual merge-tags in the userlisting * * @since v.2.0 * * @param string $content * @param boolean $all_userlisting_form * * @return string * */ function wppb_replace_merge_tags( $content, $all_userlisting_form = false ){ $content = trim( $content ); $content = wppb_old_backwards_compatibility( $content ); $content = str_replace( '%%meta_number_of_posts%%', '{{{meta_number_of_posts}}}', $content ); $content = str_replace( '%%extra_search_all_fields%%', '{{{extra_search_all_fields}}}', $content ); $content = str_replace( '%%extra_more_info_link%%', '{{{more_info}}}', $content ); $content = str_replace( '%%extra_while_users%%', '{{#users}}', $content ); $content = str_replace( '%%extra_end_while_users%%', '{{/users}}', $content ); $content = str_replace( '%%extra_avatar_or_gravatar%%', '{{{avatar_or_gravatar}}}', $content ); $content = str_replace( '%%extra_go_back_link%%', '{{{extra_go_back_link}}}', $content ); $content = str_replace( '%%meta_first_last_name%%', '{{meta_first_name}}{{meta_last_name}}', $content ); $content = str_replace( '%%sort_first_last_name%%', '{{{sort_first_name}}}', $content ); preg_match_all( '/%%([a-z0-9\_]+)%%/', $content, $matches, PREG_PATTERN_ORDER ); foreach ( $matches[0] as $key => $value ) $content = ( ( strpos( $value, 'sort_' ) !== false ) ? str_replace( $value, '{{{'.$matches[1][$key].'}}}', $content ) : str_replace( $value, '{{'.$matches[1][$key].'}}', $content ) ); if ( $all_userlisting_form ) $content .= '{{{pagination}}}'; return $content; } /** * Function that replaces the individual merge-tags which existed the very first time. These consisted of %%item_title%% instead of the (then) newer %%item_meta_name%% * * @since v.2.0 * * @param string $content * * @return string * */ function wppb_old_backwards_compatibility( $content ){ $wppb_custom_fields = get_option( 'wppb_custom_fields', 'not_found' ); if ( ( $wppb_custom_fields == 'not_found' ) || ( count( $wppb_custom_fields ) < 1 ) ) return $content; foreach( $wppb_custom_fields as $key => $value ){ if ( ( isset( $value['item_type'] ) ) && ( trim( $value['item_type'] != '' ) ) ) if ( ( isset( $value['item_metaName'] ) ) && ( trim( $value['item_metaName'] != '' ) ) ){ /* TODO don't know what's supposed to be here and don't have time before launch */ $string = str_replace( '%%meta_'.$value['item_title'].'%%', '%%meta_'.$value['item_metaName'].'%%', $string ); $string = str_replace( '%%meta_description_'.$value['item_title'].'%%', '%%meta_description_'.$value['item_metaName'].'%%', $string ); $string = str_replace( '%%sort_'.$value['item_title'].'%%', '%%sort_'.$value['item_metaName'].'%%', $string ); } } return $content; } /** * Function that checks if a default userlisting-form is already present * * @since v.2.0 * * @param string $post_title * @param string $post_type * * @return boolean * */ function wppb_default_form_already_present( $post_title, $post_type ){ $defaults = get_posts( array( 'posts_per_page' => -1, 'post_status' => array( 'publish' ), 'post_type' => $post_type, 'orderby' => 'post_date', 'order' => 'ASC' ) ); foreach ( $defaults as $default ){ if ( $default->post_content == 'Default '.$post_title.' form placeholder' ) return true; } return false; } /** * Function that assures backwards compatibility for the email customizer * * @since v.2.0 * */ function wppb_pro_email_customizer_compatibility_upgrade(){ $email_customizer_array = get_option( 'emailCustomizer', 'not_found' ); if ( $email_customizer_array != 'not_found' ){ wppb_replace_and_save( $email_customizer_array['from_name'], 'wppb_emailc_common_settings_from_name' ); wppb_replace_and_save( $email_customizer_array['reply_to'], 'wppb_emailc_common_settings_from_reply_to_email' ); wppb_replace_and_save( $email_customizer_array['default_registration_email_subject'], 'wppb_user_emailc_default_registration_email_subject' ); wppb_replace_and_save( $email_customizer_array['default_registration_email_content'], 'wppb_user_emailc_default_registration_email_content' ); wppb_replace_and_save( $email_customizer_array['registration_w_admin_approval_email_subject'], 'wppb_user_emailc_registration_with_admin_approval_email_subject' ); wppb_replace_and_save( $email_customizer_array['registration_w_admin_approval_email_content'], 'wppb_user_emailc_registration_with_admin_approval_email_content' ); wppb_replace_and_save( $email_customizer_array['admin_approval_aproved_status_email_subject'], 'wppb_user_emailc_admin_approval_notif_approved_email_subject' ); wppb_replace_and_save( $email_customizer_array['admin_approval_aproved_status_email_content'], 'wppb_user_emailc_admin_approval_notif_approved_email_content' ); wppb_replace_and_save( $email_customizer_array['admin_approval_unaproved_status_email_subject'], 'wppb_user_emailc_admin_approval_notif_unapproved_email_subject' ); wppb_replace_and_save( $email_customizer_array['admin_approval_unaproved_status_email_content'], 'wppb_user_emailc_admin_approval_notif_unapproved_email_content' ); wppb_replace_and_save( $email_customizer_array['registration_w_email_confirmation_email_subject'], 'wppb_user_emailc_registr_w_email_confirm_email_subject' ); wppb_replace_and_save( $email_customizer_array['registration_w_email_confirmation_email_content'], 'wppb_user_emailc_registr_w_email_confirm_email_content' ); wppb_replace_and_save( $email_customizer_array['admin_default_registration_email_subject'], 'wppb_admin_emailc_default_registration_email_subject' ); wppb_replace_and_save( $email_customizer_array['admin_default_registration_email_content'], 'wppb_admin_emailc_default_registration_email_content' ); wppb_replace_and_save( $email_customizer_array['admin_registration_w_admin_approval_email_subject'], 'wppb_admin_emailc_registration_with_admin_approval_email_subject' ); wppb_replace_and_save( $email_customizer_array['admin_registration_w_admin_approval_email_content'], 'wppb_admin_emailc_registration_with_admin_approval_email_content' ); } } /** * Function that checks if a default userlisting-form is already present * * @since v.2.0 * * @param string $old_content * @param string $option_name * */ function wppb_replace_and_save( $content, $option_name ){ preg_match_all( '/%%([a-z0-9\_]+)%%/', $content, $matches, PREG_PATTERN_ORDER ); foreach ( $matches[0] as $key => $value ) $content = str_replace( $value, '{{'.$matches[1][$key].'}}', $content ); update_option( $option_name, $content ); } /** * Function that adds backwards compatibility for the default fields only * * @since v.2.0 * * @param array $backed_up_manage_fields * @param string $field * @param string $meta_name * @param string $required * @param string $description * @param string $recaptcha_public_key * @param string $recaptcha_private_key * * @return array */ function wppb_add_existing_default_fields ( $backed_up_manage_fields = array(), $field, $meta_name, $required, $description = '', $recaptcha_public_key = '', $recaptcha_private_key = '' ){ $local_array = array(); $local_array['id'] = ''; $local_array['field'] = $field; $local_array['meta-name'] = $meta_name; $local_array['field-title'] = str_replace( array( 'Default - ', ' (Heading)' ), '', $field ); $local_array['description'] = ''; $local_array['required'] = $required; $local_array['overwrite-existing'] = 'No'; $local_array['row-count'] = '5'; $local_array['allowed-image-extensions'] = '.*'; $local_array['allowed-upload-extensions'] = '.*'; $local_array['avatar-size'] = '100'; $local_array['date-format'] = 'mm/dd/yy'; $local_array['terms-of-agreement'] = ''; $local_array['options'] = ''; $local_array['labels'] = ''; $local_array['public-key'] = $recaptcha_public_key; $local_array['private-key'] = $recaptcha_private_key; $local_array['default-value'] = ''; $local_array['default-option'] = ''; $local_array['default-options'] = ''; $local_array['default-content'] = ''; array_push( $backed_up_manage_fields, $local_array ); return $backed_up_manage_fields; } /** * Function that assures compatibility for the old Custom Redirects settings with the new Custom Redirects module * * @since v.2.2.5 * */ function wppb_new_custom_redirects_compatibility() { $wppb_old_cr = get_option( 'customRedirectSettings', 'not_found' ); $wppb_new_cr_global = array(); $wppb_new_cr_wp_default = array(); if( $wppb_old_cr != 'not_found' ) { // new Custom Redirect -> Global Redirects if( $wppb_old_cr['afterRegister'] == 'yes' ) { $wppb_new_cr_global[] = array( 'type' => 'after_registration', 'url' => $wppb_old_cr['afterRegisterTarget'], 'id' => 1, ); } if( $wppb_old_cr['afterLogin'] == 'yes' ) { $wppb_new_cr_global[] = array( 'type' => 'after_login', 'url' => $wppb_old_cr['afterLoginTarget'], 'id' => 1, ); } if( $wppb_old_cr['loginRedirectLogout'] == 'yes' ) { $wppb_new_cr_global[] = array( 'type' => 'after_logout', 'url' => $wppb_old_cr['loginRedirectTargetLogout'], 'id' => 1, ); } if( $wppb_old_cr['dashboardRedirect'] == 'yes' ) { $wppb_new_cr_global[] = array( 'type' => 'dashboard_redirect', 'url' => $wppb_old_cr['dashboardRedirectTarget'], 'id' => 1, ); } // new Custom Redirect -> Redirect Default WordPress Forms and Pages if( $wppb_old_cr['loginRedirect'] == 'yes' ) { $wppb_new_cr_wp_default[] = array( 'type' => 'login', 'url' => $wppb_old_cr['loginRedirectTarget'], 'id' => 1, ); } if( $wppb_old_cr['registerRedirect'] == 'yes' ) { $wppb_new_cr_wp_default[] = array( 'type' => 'register', 'url' => $wppb_old_cr['registerRedirectTarget'], 'id' => 1, ); } if( $wppb_old_cr['recoverRedirect'] == 'yes' ) { $wppb_new_cr_wp_default[] = array( 'type' => 'lostpassword', 'url' => $wppb_old_cr['recoverRedirectTarget'], 'id' => 1, ); } // add new Custom Redirect database options if( isset( $wppb_new_cr_global ) && ! empty( $wppb_new_cr_global ) ) { update_option( 'wppb_cr_global', $wppb_new_cr_global ); } if( isset( $wppb_new_cr_wp_default ) && ! empty( $wppb_new_cr_wp_default ) ) { update_option( 'wppb_cr_default_wp_pages', $wppb_new_cr_wp_default ); } } }features/upgrades/upgrades.php000066600000005105152141651160012526 0ustar00' ) ) { if ( ( PROFILE_BUILDER == 'Profile Builder Pro' ) || ( PROFILE_BUILDER == 'Profile Builder Hobbyist' ) ){ /* stopped creating them on 01.02.2016 */ /*$upload_dir = wp_upload_dir(); wp_mkdir_p( $upload_dir['basedir'].'/profile_builder' ); wp_mkdir_p( $upload_dir['basedir'].'/profile_builder/attachments/' ); wp_mkdir_p( $upload_dir['basedir'].'/profile_builder/avatars/' );*/ // Flush the rewrite rules and add them, if need be, the proper way. if ( function_exists( 'wppb_flush_rewrite_rules' ) ) wppb_flush_rewrite_rules(); wppb_pro_hobbyist_v1_3_13(); } if ( PROFILE_BUILDER == 'Profile Builder Pro' ){ wppb_pro_v1_3_15(); } update_option( 'wppb_version', PROFILE_BUILDER_VERSION ); } //this should run only once, mainly if the old version is < 2.0 (can be anything) if ( version_compare( $wppb_version, 2.0, '<' ) ) { if ( ( PROFILE_BUILDER == 'Profile Builder Pro' ) || ( PROFILE_BUILDER == 'Profile Builder Hobbyist' ) || ( PROFILE_BUILDER == 'Profile Builder Free' ) ){ wppb_pro_hobbyist_free_v2_0(); } if ( PROFILE_BUILDER == 'Profile Builder Pro' ){ wppb_pro_userlisting_compatibility_upgrade(); wppb_pro_email_customizer_compatibility_upgrade(); } } // this should run only once, mainly if the old version is < 2.2.5 (can be anything) if ( version_compare( $wppb_version, '2.2.5', '<' ) ) { if ( PROFILE_BUILDER == 'Profile Builder Pro' ) { wppb_new_custom_redirects_compatibility(); } } if ( version_compare( $wppb_version, '2.2.5', '<=' ) ) { if( is_multisite() ){ $wppb_general_settings = get_option( 'wppb_general_settings', 'not_set' ); if ( $wppb_general_settings != 'not_set' ) { $wppb_general_settings['emailConfirmation'] = 'yes'; update_option('wppb_general_settings', $wppb_general_settings); } } } do_action ( 'wppb_after_default_changes', PROFILE_BUILDER_VERSION, $wppb_version ); } add_action ( 'init', 'wppb_update_patch' );features/content-restriction/templates/archive-product.php000066600000003266152141651160020222 0ustar00

            post_content, $shop_post, get_current_user_id() ) ); } else{ $message = wppb_content_restriction_process_content_message( 'logged_out', get_current_user_id(), $post_id ); echo do_shortcode( apply_filters( 'wppb_content_restriction_message_logged_out', $message, $shop_post->post_content, $shop_post, get_current_user_id() ) ); } } ?> features/content-restriction/content-restriction-functions.php000066600000026540152141651160021150 0ustar00'. $message .''; } /* Return the restriction message to be displayed to the user. If the current post is not restricted / it was not checked to see if it is restricted an empty string is returned */ function wppb_content_restriction_get_post_message( $post_id = 0 ) { global $post, $user_ID, $wppb_show_content; if( ! empty( $post_id ) ) { $post = get_post( $post_id ); } // If the $wppb_show_content global is different than false then the post is either not restricted or not processed for restriction if( $wppb_show_content !== false ) { return ''; } if( ! is_user_logged_in() ) { $message_type = 'logged_out'; } else { $message_type = 'logged_in'; } $message_type = apply_filters( 'wppb_get_restricted_post_message_type', $message_type ); $message = wppb_content_restriction_process_content_message( $message_type, $user_ID, $post->ID ); // Filter the restriction message before returning it $message = apply_filters( 'wppb_restriction_message_' . $message_type, $message, $post->post_content, $post, $user_ID ); return do_shortcode( $message ); } /* Checks to see if the current post is restricted and if any redirect URLs are in place the user is redirected to the URL with the highest priority */ function wppb_content_restriction_post_redirect() { // try not to overwrite $post. Can have side-effects with other plugins. global $post; $woo_shop_or_post = $post; if( function_exists( 'wc_get_page_id' ) ) {//redirect restriction for woocommerce shop page if ( !is_singular() && !( is_post_type_archive('product') || is_page(wc_get_page_id('shop')) ) ){ return; } if( is_post_type_archive('product') || is_page(wc_get_page_id('shop')) ){ $woo_shop_or_post = get_post( wc_get_page_id('shop') ); } } else { if (!is_singular()) { return; } } if ( !($woo_shop_or_post instanceof WP_Post) ){ return; } $redirect_url = ''; $post_restriction_type = get_post_meta( $woo_shop_or_post->ID, 'wppb-content-restrict-type', true ); $settings = get_option( 'wppb_content_restriction_settings', array() ); $general_restriction_type = ( ! empty( $settings['restrict_type'] ) ? $settings['restrict_type'] : 'message' ); if( $post_restriction_type !== 'redirect' && $general_restriction_type !== 'redirect' ) { return; } if( ! in_array( $post_restriction_type, array( 'default', 'redirect' ) ) ) { return; } if( ! wppb_content_restriction_is_post_restricted( $woo_shop_or_post->ID ) ) { return; } // Get the redirect URL from the post meta if enabled if( $post_restriction_type === 'redirect' ) { $post_redirect_url_enabled = get_post_meta( $woo_shop_or_post->ID, 'wppb-content-restrict-custom-redirect-url-enabled', true ); $post_redirect_url = get_post_meta( $woo_shop_or_post->ID, 'wppb-content-restrict-custom-redirect-url', true ); $redirect_url = ( ! empty( $post_redirect_url_enabled ) && ! empty( $post_redirect_url ) ? $post_redirect_url : '' ); } // If the post doesn't have a custom redirect URL set, get the default from the Settings page if( empty( $redirect_url ) ) { $redirect_url = ( ! empty( $settings['redirect_url'] ) ? $settings['redirect_url'] : '' ); } if( empty( $redirect_url ) ) { return; } // To avoid a redirect loop we break in case the redirect URL is the same as the current page URL $current_url = wppb_curpageurl(); if( $current_url == $redirect_url ) { return; } // Redirect wp_redirect( wppb_add_missing_http( $redirect_url ) ); exit; } add_action( 'template_redirect', 'wppb_content_restriction_post_redirect' ); /* Function that searches and replaces merge tags with their values */ function wppb_content_restriction_merge_tags( $text, $user_info, $post_id = 0 ) { $merge_tags = apply_filters( 'wppb_content_restriction_merge_tags', array( 'display_name', 'unrestricted_user_roles', 'current_user_role' ) ); if( ! empty( $merge_tags ) ) { foreach( $merge_tags as $merge_tag ) { $text = str_replace( '{{'. $merge_tag .'}}', apply_filters( 'wppb_content_restriction_merge_tag_'. $merge_tag, '', $user_info, $post_id ), $text ); } } return $text; } /* Add functionality for display_name tag */ function wppb_content_restriction_tag_display_name( $value, $user_info, $post_id = 0 ) { if( ! empty( $user_info->display_name ) ) { return $user_info->display_name; } else if( ! empty( $user_info->user_login ) ) { return $user_info->user_login; } else { return ''; } } add_filter( 'wppb_content_restriction_merge_tag_display_name', 'wppb_content_restriction_tag_display_name', 10, 3 ); /* Add functionality for unrestricted_user_roles tag */ function wppb_content_restriction_tag_unrestricted_user_roles( $value, $user_info, $post_id = 0 ) { if( $post_id != 0 ) { $unrestricted_user_roles = get_post_meta( $post_id, 'wppb-content-restrict-user-role' ); if( ! empty( $unrestricted_user_roles ) ) { $user_roles = implode( ', ', $unrestricted_user_roles ); return $user_roles; } else { return ''; } } else { return ''; } } add_filter( 'wppb_content_restriction_merge_tag_unrestricted_user_roles', 'wppb_content_restriction_tag_unrestricted_user_roles', 10, 3 ); /* Add functionality for current_user_role tag */ function wppb_content_restriction_tag_current_user_role( $value, $user_info, $post_id = 0 ) { if( ! empty( $user_info ) && ! empty( $user_info->roles ) ) { $user_role = implode( ', ', $user_info->roles ); return $user_role; } else { return ''; } } add_filter( 'wppb_content_restriction_merge_tag_current_user_role', 'wppb_content_restriction_tag_current_user_role', 10, 3 ); /* Content restriction shortcode */ function wppb_content_restriction_shortcode( $atts, $content = null ) { $args = shortcode_atts( array( 'user_roles' => array(), 'display_to' => '', 'message' => '' ), $atts ); // Message to replace the content of checks do not match if( ! empty( $args['message'] ) ) { $message = '' . $args['message'] . ''; } else { $type = ( is_user_logged_in() ? 'logged_in' : 'logged_out' ); $message = wpautop( wppb_get_restriction_content_message( $type ) ); } /* * Filter the message * * @param string $message - the current message, whether it is the default one from the settings or * the one set in the shortcode attributes * @param array $args - the shortcode attributes * */ $message = apply_filters( 'wppb_content_restriction_shortcode_message', $message, $args ); if( is_user_logged_in() ) { // Show for administrators if( current_user_can( 'manage_options' ) ) { return do_shortcode( $content ); } if( $args['display_to'] == 'not_logged_in' ) { return $message; } if( ! empty( $args['user_roles'] ) ) { $user_roles = array_map( 'trim', explode( ',', $args['user_roles'] ) ); $user_data = get_userdata( get_current_user_id() ); if( ! empty( $user_data->roles ) ) { $common_user_roles = array_intersect( $user_roles, $user_data->roles ); if( ! empty( $common_user_roles ) ) { return do_shortcode( $content ); } else { return $message; } } } else { return do_shortcode( $content ); } } else { if( $args['display_to'] == 'not_logged_in' ) { return do_shortcode( $content ); } else { return $message; } } } add_shortcode( 'wppb-restrict', 'wppb_content_restriction_shortcode' ); features/content-restriction/content-restriction.php000066600000025230152141651160017135 0ustar00a[href="admin.php?page=profile-builder-content_restriction"]{display:none !important;}'; } } function wppb_content_restriction_settings_defaults() { add_option( 'wppb_content_restriction_settings', array( 'restrict_type' => 'message', 'redirect_url' => '', 'message_logged_out' => '', 'message_logged_in' => '', 'post_preview' => 'none', 'post_preview_length' => '20', ) ); } function wppb_content_restriction_content() { wppb_content_restriction_settings_defaults(); $wppb_content_restriction_settings = get_option( 'wppb_content_restriction_settings', 'not_found' ); ?>

            'wppb_content_restriction_settings[message_logged_out]', 'editor_height' => 250 ) ); ?>
            'wppb_content_restriction_settings[message_logged_in]', 'editor_height' => 250 ) ); ?>

            'common', 'action' => '_section_style', ), array( 'element' => 'section', 'action' => 'section_advanced', ) ); public $section_name = 'wppb_section_visibility_settings'; /** * Register plugin action hooks and filters */ public function __construct() { // Register new section to display restriction controls $this->register_sections(); // Setup controls $this->register_controls(); // Filter widget content add_filter( 'elementor/widget/render_content', array( $this, 'widget_render' ), 10, 2 ); // Filter sections display & add custom messages add_action( 'elementor/frontend/section/should_render', array( $this, 'section_render' ), 10, 2 ); add_action( 'elementor/frontend/section/after_render', array( $this, 'section_custom_messages' ), 10, 2 ); // Filter Elementor `the_content` hook add_action( 'elementor/frontend/the_content', array( $this, 'filter_elementor_templates' ), 20 ); } /** * * Ensures only one instance of the class is loaded or can be loaded. * * @return WPPB_Elementor An instance of the class. */ public static function instance() { if ( is_null( self::$_instance ) ) self::$_instance = new self(); return self::$_instance; } private function register_sections() { foreach( $this->locations as $where ) { add_action( 'elementor/element/'.$where['element'].'/'.$where['action'].'/after_section_end', array( $this, 'add_section' ), 10, 2 ); } } // Register controls to sections and widgets private function register_controls() { foreach( $this->locations as $where ) add_action('elementor/element/'.$where['element'].'/'.$this->section_name.'/before_section_end', array( $this, 'add_controls' ), 10, 2 ); } public function add_section( $element, $args ) { $exists = \Elementor\Plugin::instance()->controls_manager->get_control_from_stack( $element->get_unique_name(), $this->section_name ); if( !is_wp_error( $exists ) ) return false; $element->start_controls_section( $this->section_name, array( 'tab' => Controls_Manager::TAB_ADVANCED, 'label' => __( 'Profile Builder Content Restriction', 'profile-builder' ) ) ); $element->end_controls_section(); } // Define controls public function add_controls( $element, $args ) { $element_type = $element->get_type(); $element->add_control( 'wppb_restriction_loggedin_users', array( 'label' => __( 'Restrict to logged in users', 'profile-builder' ), 'type' => Controls_Manager::SWITCHER, 'description' => __( 'Allow only logged in users to see this content.', 'profile-builder' ), ) ); $element->add_control( 'wppb_restriction_user_roles_heading', array( 'label' => __( 'Restrict by User Roles', 'profile-builder' ), 'type' => Controls_Manager::HEADING, 'separator' => 'before', ) ); $element->add_control( 'wppb_restriction_user_roles', array( 'type' => Controls_Manager::SELECT2, 'options' => wp_roles()->get_names(), 'multiple' => 'true', 'label_block' => 'true', 'description' => __( 'Allow users which have the specified role to see this content.', 'profile-builder' ), ) ); $element->add_control( 'wppb_restriction_custom_messages_heading', array( 'label' => __( 'Restriction Messages', 'profile-builder' ), 'type' => Controls_Manager::HEADING, 'separator' => 'before', ) ); $element->add_control( 'wppb_restriction_default_messages', array( 'label' => __( 'Enable Restriction Messages', 'profile-builder' ), 'type' => Controls_Manager::SWITCHER, 'description' => __( 'Replace hidden content with the default messages from PB -> Settings -> Content Restriction, a custom message or an Elementor Template.', 'profile-builder' ), ) ); $element->add_control( 'wppb_restriction_custom_messages', array( 'label' => __( 'Enable Custom Messages', 'profile-builder' ), 'type' => Controls_Manager::SWITCHER, 'description' => __( 'Add a custom message or template.', 'profile-builder' ), 'condition' => array( 'wppb_restriction_default_messages' => 'yes' ) ) ); $element->add_control( 'wppb_restriction_custom_messages_type', array( 'label' => __( 'Content type', 'profile-builder' ), 'type' => Controls_Manager::CHOOSE, 'options' => array( 'text' => array( 'title' => __( 'Text', 'profile-builder' ), 'icon' => 'fa fa-align-left', ), 'template' => array( 'title' => __( 'Template', 'profile-builder' ), 'icon' => 'fa fa-th-large', ) ), 'default' => 'text', 'condition' => array( 'wppb_restriction_default_messages' => 'yes', 'wppb_restriction_custom_messages' => 'yes' ), ) ); //DCE_HELPER::get_all_template() $element->add_control( 'wppb_restriction_fallback_template', array( 'type' => Controls_Manager::SELECT2, 'options' => $this->get_elementor_templates(), 'label' => __( 'Select Template', 'profile-builder' ), 'default' => '', 'label_block' => 'true', 'condition' => array( 'wppb_restriction_default_messages' => 'yes', 'wppb_restriction_custom_messages' => 'yes', 'wppb_restriction_custom_messages_type' => 'template' ), ) ); $element->add_control( 'wppb_restriction_fallback_text', array( 'type' => Controls_Manager::WYSIWYG, 'default' => '', 'condition' => array( 'wppb_restriction_default_messages' => 'yes', 'wppb_restriction_custom_messages' => 'yes', 'wppb_restriction_custom_messages_type' => 'text' ), ) ); } // Verifies if element is hidden public function is_hidden( $element ) { $settings = $element->get_settings(); if( !empty( $settings['wppb_restriction_user_roles'] ) && is_user_logged_in() ) { $user_data = get_userdata( get_current_user_id() ); foreach( $settings['wppb_restriction_user_roles'] as $restriction_role ) { foreach( $user_data->roles as $user_role ) { if( $user_role == $restriction_role ) { return false; } } } return true; } else if ( !is_user_logged_in() && ( ( $settings['wppb_restriction_loggedin_users'] == 'yes' ) || ( !empty( $settings['wppb_restriction_user_roles'] ) ) ) ) { return true; } return false; } // Retrieves custom element message or the default message from PMS settings private function get_custom_message( $element ) { $settings = $element->get_settings(); if( $settings['wppb_restriction_default_messages'] != 'yes' ) return false; if( $settings['wppb_restriction_custom_messages'] == 'yes' ) { if( $settings['wppb_restriction_custom_messages_type'] == 'text' ) return $settings['wppb_restriction_fallback_text']; elseif( $settings['wppb_restriction_custom_messages_type'] == 'template' ) { return $this->render_template( $settings['wppb_restriction_fallback_template'] ); } } else { if( is_user_logged_in() ) return wppb_content_restriction_process_content_message( 'logged_in', get_current_user_id() ); else return wppb_content_restriction_process_content_message( 'logged_out', get_current_user_id() ); } } // Widget display & custom messages public function widget_render( $content, $widget ) { if( $this->is_hidden( $widget ) ) { if( \Elementor\Plugin::$instance->editor->is_edit_mode() ) { $widget->add_render_attribute( '_wrapper', 'class', 'wppb-visibility-hidden' ); return $content; } if( $message = $this->get_custom_message( $widget ) ) { return $message; } return ''; } return $content; } // Section display public function section_render( $should_render, $element ) { if( $this->is_hidden( $element ) === true ) return false; return $should_render; } // Section custom messages public function section_custom_messages( $element ) { if( $this->is_hidden( $element ) && ( $message = $this->get_custom_message( $element ) ) ) { $element->add_render_attribute( '_wrapper', 'class', array( 'elementor-section', ) ); $element->before_render(); echo $message; $element->after_render(); } } // Render an Elementor template based on ID // Based on Elementor Pro template shortcode public function render_template( $id ) { return Elementor\Plugin::instance()->frontend->get_builder_content_for_display( $id, true ); } // Retrieve defined Elementor templates private function get_elementor_templates() { $templates = array(); foreach( \Elementor\Plugin::instance()->templates_manager->get_source('local')->get_items() as $template ) { $templates[$template['template_id']] = $template['title'] . ' (' . $template['type'] . ')'; } return $templates; } public function filter_elementor_templates( $content ) { $document = \Elementor\Plugin::$instance->documents->get_current(); return wppb_content_restriction_filter_content( $content, $document->get_post() ); } } // Instantiate Plugin Class WPPB_Elementor::instance(); features/content-restriction/content-restriction-filtering.php000066600000026102152141651160021115 0ustar00ID, 'wppb-content-restrict-user-status', true ); $post_user_roles = get_post_meta( $post->ID, 'wppb-content-restrict-user-role' ); if( empty( $user_status ) && empty( $post_user_roles ) ) { return $content; } else if( $user_status == 'loggedin' ) { if( is_user_logged_in() ) { if( ! empty( $post_user_roles ) ) { $user_data = get_userdata( $user_ID ); foreach( $post_user_roles as $post_user_role ) { foreach( $user_data->roles as $role ) { if( $post_user_role == $role ) { $wppb_show_content = true; return $content; } } } $wppb_show_content = false; $message = wppb_content_restriction_process_content_message( 'logged_in', $user_ID, $post->ID ); return do_shortcode( apply_filters( 'wppb_content_restriction_message_logged_in', $message, $content, $post, $user_ID ) ); } else { return $content; } } else { // If user is not logged in prompt the correct message $wppb_show_content = false; $message = wppb_content_restriction_process_content_message( 'logged_out', $user_ID, $post->ID ); return do_shortcode( apply_filters( 'wppb_content_restriction_message_logged_out', $message, $content, $post, $user_ID ) ); } } return $content; } add_filter( 'the_content', 'wppb_content_restriction_filter_content', 12, 2 ); add_filter( 'wppb_content_restriction_post_check', 'wppb_content_restriction_filter_content', 10, 2 ); /** * Function that checks if a post id is restricted with profile builder * @param $post_id * @return bool true for when the post is restricted and false for when it's not */ function wppb_check_content_restriction_on_post_id( $post_id ){ global $user_ID; // Get user roles that have access to this post $user_status = get_post_meta( $post_id, 'wppb-content-restrict-user-status', true ); $post_user_roles = get_post_meta( $post_id, 'wppb-content-restrict-user-role' ); if( empty( $user_status ) && empty( $post_user_roles ) ) { return false; } else if( $user_status == 'loggedin' ) { if( is_user_logged_in() ) { if( ! empty( $post_user_roles ) ) { $user_data = get_userdata( $user_ID ); foreach( $post_user_roles as $post_user_role ) { foreach( $user_data->roles as $role ) { if( $post_user_role == $role ) { return false; } } } return true; } else { return false; } } else { return true; } } return false; } /* Checks to see if the attachment image is restricted and returns false instead of the image if it is restricted */ function wppb_content_restriction_filter_attachment_image_src( $image, $attachment_id ) { if( is_admin() ) { return $image; } if( wppb_content_restriction_is_post_restricted( $attachment_id ) ) { return false; } return $image; } add_filter( 'wp_get_attachment_image_src', 'wppb_content_restriction_filter_attachment_image_src', 10, 2 ); /* Checks to see if the attachment is restricted and returns false instead of the metadata if it is restricted */ function wppb_content_restriction_filter_attachment_metadata( $data, $attachment_id ) { if( is_admin() ) { return $data; } if( wppb_content_restriction_is_post_restricted( $attachment_id ) ) { return false; } return $data; } add_filter( 'wp_get_attachment_metadata', 'wppb_content_restriction_filter_attachment_metadata', 10, 2 ); /* Checks to see if the attachment thumb is restricted and returns false instead of the thumb url if it is restricted */ function wppb_content_restriction_filter_attachment_thumb_url( $url, $attachment_id ) { if( is_admin() ) { return $url; } if( wppb_content_restriction_is_post_restricted( $attachment_id ) ) { return false; } return $url; } add_filter( 'wp_get_attachment_thumb_url', 'wppb_content_restriction_filter_attachment_thumb_url', 10, 2 ); /* Checks to see if the attachment is restricted and returns an empty string instead of the attachment url if it is restricted*/ function wppb_content_restriction_filter_attachment_url( $url, $attachment_id ) { if( is_admin() ) { return $url; } if( wppb_content_restriction_is_post_restricted( $attachment_id ) ) { return ''; } return $url; } add_filter( 'wp_get_attachment_url', 'wppb_content_restriction_filter_attachment_url', 10, 2 ); add_filter( 'attachment_link', 'wppb_content_restriction_filter_attachment_url', 10, 2 ); /* Formats the error messages to display accordingly to the WYSIWYG editor */ function wppb_content_restriction_message_wpautop( $message = '' ) { if( ! empty( $message ) ) { $message = wpautop( $message ); } return apply_filters( 'wppb_content_restriction_message_wpautop' ,$message ); } add_filter( 'wppb_content_restriction_message_logged_in', 'wppb_content_restriction_message_wpautop', 30, 1 ); add_filter( 'wppb_content_restriction_message_logged_out', 'wppb_content_restriction_message_wpautop', 30, 1 ); /* Adds a preview of the restricted post before the default restriction messages */ function wppb_content_restriction_add_post_preview( $message, $content, $post, $user_ID ) { $preview = ''; $settings = get_option( 'wppb_content_restriction_settings' ); $preview_option = ( ! empty( $settings['post_preview'] ) ? $settings['post_preview'] : '' ); if( empty( $preview_option ) || $preview_option == 'none' ) { return $message; } $post_content = $content; // Trim the content if( $preview_option == 'trim-content' ) { $length = ( ! empty( $settings['post_preview_length'] ) ? (int) $settings['post_preview_length'] : 0 ); if( $length !== 0 ) { // Do shortcodes on the content $post_content = do_shortcode( $post_content ); // Trim the preview $preview = wp_trim_words( $post_content, $length, apply_filters( 'wppb_content_restriction_post_preview_more', __( '…' ) ) ); } } // More tag if( $preview_option == 'more-tag' ) { $content_parts = get_extended( $post->post_content ); if( ! empty( $content_parts['extended'] ) ) { $preview = $content_parts['main']; } } // Return the preview return wpautop( $preview ) . $message; } add_filter( 'wppb_content_restriction_message_logged_in', 'wppb_content_restriction_add_post_preview', 30, 4 ); add_filter( 'wppb_content_restriction_message_logged_out', 'wppb_content_restriction_add_post_preview', 30, 4 ); if( function_exists( 'wc_get_page_id' ) ) { /** * Restrict the Shop page * * @param $template The shop page template to return * @return string */ function wppb_woo_restrict_shop_page($template){ // check if we're on the Shop page (set under WooCommerce Settings -> Products -> Display) if (is_post_type_archive('product') || is_page(wc_get_page_id('shop'))) { // get the ID of the shop page $post_id = wc_get_page_id('shop'); if (($post_id != -1) && wppb_check_content_restriction_on_post_id($post_id)) { $shop_page = get_post($post_id); setup_postdata($shop_page); $template = WPPB_PLUGIN_DIR . 'features/content-restriction/templates/archive-product.php'; wp_reset_postdata(); } } return $template; } add_filter('template_include', 'wppb_woo_restrict_shop_page', 40); /* restrict products content */ add_action( 'woocommerce_before_single_product', 'wppb_woo_product_restriction_start' ); function wppb_woo_product_restriction_start(){ ob_start(); } add_action( 'woocommerce_after_single_product', 'wppb_woo_product_restriction_end' ); function wppb_woo_product_restriction_end(){ $product_content = ob_get_contents(); ob_end_clean(); remove_filter('the_content', 'wpautop'); echo apply_filters( 'the_content', $product_content ); add_filter('the_content', 'wpautop'); } } /* if the Static Posts Page has a restriction on it hijack the query */ add_action( 'template_redirect', 'wppb_content_restriction_posts_page_handle_query', 1 ); function wppb_content_restriction_posts_page_handle_query(){ if( is_home() ){ $posts_page_id = get_option( 'page_for_posts' ); if( $posts_page_id ) { if (wppb_check_content_restriction_on_post_id($posts_page_id)) { wppb_content_restriction_force_page($posts_page_id); } } } } /* if the Static Posts Page has a restriction on it hijack the template back to the Page Template */ add_filter( 'template_include', 'wppb_content_restriction_posts_page_template', 100 ); function wppb_content_restriction_posts_page_template( $template ){ if( is_home() ){ $posts_page_id = get_option( 'page_for_posts' ); if( $posts_page_id ) { if (wppb_check_content_restriction_on_post_id($posts_page_id)) { $template = get_page_template(); } } } return $template; } /* Change the query to a single post */ function wppb_content_restriction_force_page( $posts_page_id ){ if( $posts_page_id ) { global $wp_query, $post; $post = get_post($posts_page_id); $wp_query->posts = array($post); $wp_query->post_count = 1; $wp_query->is_singular = true; $wp_query->is_singule = true; $wp_query->is_archive = false; } }features/content-restriction/assets/css/content-restriction.css000066600000003535152141651160021234 0ustar00.wppb-content-restriction-wrap form { margin-top: 40px; max-width: 900px; } #wppb-settings-content-restriction .wppb-restriction-fields-group { margin-bottom: 40px; } #wppb-settings-content-restriction .wppb-restriction-label { display: inline-block; vertical-align: top; margin: 0 20px 10px 0; width: 140px; font-weight: bold; } #wppb-settings-content-restriction .wppb-restriction-type label { margin-right: 15px; } #wppb-settings-content-restriction input { max-width: 360px; } #wppb-settings-content-restriction .wppb-restriction-type, #wppb-settings-content-restriction .wppb-restriction-activated, #wppb-settings-content-restriction #wp-message_logged_out-wrap, #wppb-settings-content-restriction #wp-message_logged_in-wrap, #wppb-settings-content-restriction .wppb-restriction-post-preview { display: inline-block; width: 80%; } #wppb-settings-content-restriction .description { margin-top: 10px; } #wppb-meta-box-fields-wrapper-restriction-redirect-url, .wppb-meta-box-field-wrapper-custom-redirect-url, .wppb-meta-box-field-wrapper-custom-messages { display: none; } #wppb-meta-box-fields-wrapper-restriction-redirect-url.wppb-content-restriction-enabled, .wppb-meta-box-field-wrapper-custom-redirect-url.wppb-content-restriction-enabled, .wppb-meta-box-field-wrapper-custom-messages.wppb-content-restriction-enabled { display: block; } .wppb-meta-box-field-wrapper { position: relative; padding-left: 210px; margin: 25px 0; } .wppb-meta-box-fields-wrapper h4 { background: #f1f1f1; padding: 10px 7px; margin: 0 -7px; } .wppb-meta-box-field-wrapper label { display: inline-block; margin-right: 10px; } .wppb-meta-box-field-wrapper .wppb-meta-box-field-label { font-weight: bold; width: 200px; position: absolute; display: block; top: 0; left: 0; } features/content-restriction/assets/js/content-restriction.js000066600000004363152141651160020704 0ustar00jQuery( function(){ /* Display custom redirect URL section if type of restriction is "Redirect" */ jQuery( 'input[type=radio][name=wppb-content-restrict-type]' ).click( function() { if( jQuery( this ).is(':checked') && jQuery( this ).val() == 'redirect' ) jQuery( '#wppb-meta-box-fields-wrapper-restriction-redirect-url' ).addClass( 'wppb-content-restriction-enabled' ); else jQuery( '#wppb-meta-box-fields-wrapper-restriction-redirect-url' ).removeClass( 'wppb-content-restriction-enabled' ); } ); /* Display custom redirect URL field */ jQuery( '#wppb-content-restrict-custom-redirect-url-enabled' ).click( function() { if( jQuery( this ).is( ':checked' ) ) jQuery( '.wppb-meta-box-field-wrapper-custom-redirect-url' ).addClass( 'wppb-content-restriction-enabled' ); else jQuery( '.wppb-meta-box-field-wrapper-custom-redirect-url' ).removeClass( 'wppb-content-restriction-enabled' ); } ); /* Display custom messages editors */ jQuery( '#wppb-content-restrict-messages-enabled' ).click( function() { if( jQuery( this ).is( ':checked' ) ) jQuery( '.wppb-meta-box-field-wrapper-custom-messages' ).addClass( 'wppb-content-restriction-enabled' ); else jQuery( '.wppb-meta-box-field-wrapper-custom-messages' ).removeClass( 'wppb-content-restriction-enabled' ); } ); /* Disable / Enable the user roles from the "Display for" field if the "Logged in Users" option is checked or not */ jQuery( document ).on( 'ready click', 'input[name="wppb-content-restrict-user-status"]', function() { wppb_disable_enable_user_roles( jQuery( this ) ); } ); jQuery( 'input[name="wppb-content-restrict-user-status"]' ).each( function() { wppb_disable_enable_user_roles( jQuery( this ) ); } ); function wppb_disable_enable_user_roles( $element ) { $wrapper = $element.closest( '.wppb-meta-box-field-wrapper' ); if( $element.is( ':checked' ) ) { $wrapper.find( 'input[name="wppb-content-restrict-user-role[]"]' ).attr( 'disabled', false ); } else { $wrapper.find( 'input[name="wppb-content-restrict-user-role[]"]' ).attr( 'disabled', true ); } } } );features/content-restriction/content-restriction-meta-box.php000066600000027246152141651160020660 0ustar00 true ) ); if( ! empty( $post_types ) ) { foreach( $post_types as $post_type ) { add_meta_box( 'wppb_post_content_restriction', __( 'Profile Builder Content Restriction', 'profile-builder' ), 'wppb_content_restriction_meta_box_output', $post_type, 'normal' ); } } } function wppb_content_restriction_meta_box_output( $post ) { ?>

            __( 'Message', 'profile-builder' ), 'redirect' => __( 'Redirect', 'profile-builder' ) ) ); $wppb_content_restrict_type = get_post_meta( $post->ID, 'wppb-content-restrict-type', true ); ?> $type_label ) { ?>
            ID, 'wppb-content-restrict-user-status', true ); $wppb_selected_roles = get_post_meta( $post->ID, 'wppb-content-restrict-user-role' ); ?> $wppb_role_details ) { ?>

            post_type); ?>

            post_type); ?>

            ID, 'wppb-content-restrict-custom-redirect-url-enabled', true ); ?>
            ID, 'wppb-content-restrict-custom-redirect-url', true ); ?>

            ID, 'wppb-content-restrict-messages-enabled', true ); ?>
            ID ); ?>

            ID, 'wppb-content-restrict-message-logged_out', true ), 'wppb-content-restrict-message-logged_out', array( 'textarea_name' => 'wppb-content-restrict-message-logged_out', 'editor_height' => 200 ) ); ?>

            ID, 'wppb-content-restrict-message-logged_in', true ), 'wppb-content-restrict-message-logged_in', array( 'textarea_name' => 'wppb-content-restrict-message-logged_in', 'editor_height' => 200 ) ); ?>
            ID) foreach ($current_user->roles as $role_key) { if (empty($GLOBALS['wp_roles']->roles[$role_key])) continue; $role = $GLOBALS['wp_roles']->roles[$role_key]; if (isset($adminSettingsPresent[$role['name']])) { if ($adminSettingsPresent[$role['name']] == 'show') $show = true; if ($adminSettingsPresent[$role['name']] == 'hide' && $show === null) $show = false; } } return $show === null ? $content : $show; } if(!function_exists('wppb_curpageurl')){ function wppb_curpageurl(){ $req_uri = $_SERVER['REQUEST_URI']; if( function_exists('wppb_get_abs_home') ) { $home_path = trim(parse_url(wppb_get_abs_home(), PHP_URL_PATH), '/'); $home_path_regex = sprintf('|^%s|i', preg_quote($home_path, '|')); // Trim path info from the end and the leading home path from the front. $req_uri = ltrim($req_uri, '/'); $req_uri = preg_replace($home_path_regex, '', $req_uri); $req_uri = trim(wppb_get_abs_home(), '/') . '/' . ltrim($req_uri, '/'); } if ( function_exists('apply_filters') ) $req_uri = apply_filters('wppb_curpageurl', $req_uri); return $req_uri; } } /** * Return absolute home url as stored in database, unfiltered. * * @return string */ if(!function_exists('wppb_get_abs_home')) { function wppb_get_abs_home(){ global $wpdb; // returns the unfiltered home_url by directly retrieving it from wp_options. $absolute_home = (!is_multisite() && defined('WP_HOME') ? WP_HOME : (is_multisite() && !is_main_site() ? (preg_match('/^(https)/', get_option('home')) === 1 ? 'https://' : 'http://') . $wpdb->get_var(" SELECT CONCAT(b.domain, b.path) FROM {$wpdb->blogs} b WHERE blog_id = {$wpdb->blogid} LIMIT 1") : $wpdb->get_var(" SELECT option_value FROM {$wpdb->options} WHERE option_name = 'home' LIMIT 1")) ); if (empty($absolute_home)) { $absolute_home = get_option("siteurl"); } // always return absolute_home based on the http or https version of the current page request. This means no more redirects. if (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') { $absolute_home = str_replace('http://', 'https://', $absolute_home); } else { $absolute_home = str_replace('https://', 'http://', $absolute_home); } return $absolute_home; } } if ( is_admin() ){ // register the settings for the menu only display sidebar menu for a user with a certain capability, in this case only the "admin" add_action( 'admin_init', 'wppb_register_settings' ); // display the same extra profile fields in the admin panel also if ( file_exists ( WPPB_PLUGIN_DIR.'/front-end/extra-fields/extra-fields.php' ) ){ require_once( WPPB_PLUGIN_DIR.'/front-end/extra-fields/extra-fields.php' ); add_action( 'show_user_profile', 'display_profile_extra_fields_in_admin', 10 ); add_action( 'edit_user_profile', 'display_profile_extra_fields_in_admin', 10 ); global $pagenow; if( $pagenow != 'user-new.php' ) add_action( 'user_profile_update_errors', 'wppb_validate_backend_fields', 10, 3 ); add_action( 'personal_options_update', 'save_profile_extra_fields_in_admin', 10 ); add_action( 'edit_user_profile_update', 'save_profile_extra_fields_in_admin', 10 ); } /* we need to include the fields here for conditional fields when they run through ajax, the extra-fields were already included above for backend forms */ $wppb_generalSettings = get_option( 'wppb_general_settings' ); if( wp_doing_ajax() && wppb_conditional_fields_exists() && isset( $wppb_generalSettings['conditional_fields_ajax'] ) && $wppb_generalSettings['conditional_fields_ajax'] === 'yes' ) { if (file_exists(WPPB_PLUGIN_DIR . '/front-end/default-fields/default-fields.php')) require_once(WPPB_PLUGIN_DIR . '/front-end/default-fields/default-fields.php'); } }else if ( !is_admin() ){ // include the stylesheet add_action( 'wp_print_styles', 'wppb_add_plugin_stylesheet' ); // include the menu file for the profile informations include_once( WPPB_PLUGIN_DIR.'/front-end/edit-profile.php' ); include_once( WPPB_PLUGIN_DIR.'/front-end/class-formbuilder.php' ); add_shortcode( 'wppb-edit-profile', 'wppb_front_end_profile_info' ); // include the menu file for the login screen include_once( WPPB_PLUGIN_DIR.'/front-end/login.php' ); add_shortcode( 'wppb-login', 'wppb_front_end_login' ); // include the menu file for the logout screen include_once( WPPB_PLUGIN_DIR.'/front-end/logout.php' ); add_shortcode( 'wppb-logout', 'wppb_front_end_logout' ); // include the menu file for the register screen include_once( WPPB_PLUGIN_DIR.'/front-end/register.php' ); add_shortcode( 'wppb-register', 'wppb_front_end_register_handler' ); // include the menu file for the recover password screen include_once( WPPB_PLUGIN_DIR.'/front-end/recover.php' ); add_shortcode( 'wppb-recover-password', 'wppb_front_end_password_recovery' ); // set the front-end admin bar to show/hide add_filter( 'show_admin_bar' , 'wppb_show_admin_bar'); // Shortcodes used for the widget area add_filter( 'widget_text', 'do_shortcode', 11 ); } /** * Function that overwrites the default wp_mail function and sends out emails * * @since v.2.0 * * @param string $to * @param string $subject * @param string $message * @param string $message_from * */ function wppb_mail( $to, $subject, $message, $message_from = null, $context = null, $headers = '' ) { $to = apply_filters( 'wppb_send_email_to', $to ); $send_email = apply_filters( 'wppb_send_email', true, $to, $subject, $message, $context ); $message = apply_filters( 'wppb_email_message', $message, $context ); $message = wppb_maybe_add_propper_html_tags_to_email( $message ); do_action( 'wppb_before_sending_email', $to, $subject, $message, $send_email, $context ); if ( $send_email ) { //we add this filter to enable html encoding add_filter('wp_mail_content_type', 'wppb_html_content_type' ); $atts = apply_filters( 'wppb_mail', compact( 'to', 'subject', 'message', 'headers' ), $context ); $sent = wp_mail( $atts['to'] , html_entity_decode( htmlspecialchars_decode( $atts['subject'], ENT_QUOTES ), ENT_QUOTES ), $atts['message'], $atts['headers'] ); do_action( 'wppb_after_sending_email', $sent, $to, $subject, $message, $send_email, $context ); return $sent; } return ''; } /* return text/html as email content type. used in wp_mail_content_type filter */ function wppb_html_content_type( $content_type ){ return 'text/html'; } /* * function that adds proper html tags to a html email message if they are missing */ function wppb_maybe_add_propper_html_tags_to_email( $message ){ //check if we have html content if( $message !== wp_strip_all_tags( $message ) ){ if( strpos( html_entity_decode( $message ), ''; } } return $message; } function wppb_activate_account_check(){ if ( ( isset( $_GET['activation_key'] ) ) && ( trim( $_GET['activation_key'] ) != '' ) ){ global $post; $activation_key = sanitize_text_field( $_GET['activation_key'] ); $wppb_generalSettings = get_option( 'wppb_general_settings' ); $activation_landing_page_id = ( ( isset( $wppb_generalSettings['activationLandingPage'] ) && ( trim( $wppb_generalSettings['activationLandingPage'] ) != '' ) ) ? $wppb_generalSettings['activationLandingPage'] : 'not_set' ); if ( $activation_landing_page_id != 'not_set' ){ //an activation page was selected, but we still need to check if the current page doesn't already have the registration shortcode if ( strpos( $post->post_content, '[wppb-register' ) === false ) add_filter( 'the_content', 'wppb_add_activation_message' ); }elseif ( strpos( $post->post_content, '[wppb-register' ) === false ){ //no activation page was selected, and the sent link pointed to the home url wp_redirect( apply_filters( 'wppb_activatate_account_redirect_url', WPPB_PLUGIN_URL.'assets/misc/fallback-page.php?activation_key='.urlencode( $activation_key ).'&site_name='.urlencode( get_bloginfo( 'name' ) ).'&site_url='.urlencode( get_bloginfo( 'url' ) ).'&message='.urlencode( $activation_message = wppb_activate_signup( $activation_key ) ), $activation_key, $activation_message ) ); exit; } } } add_action( 'template_redirect', 'wppb_activate_account_check' ); function wppb_add_activation_message( $content ){ return wppb_activate_signup( sanitize_text_field( $_GET['activation_key'] ) ) . $content; } // Create a new, top-level page $args = array( 'page_title' => 'Profile Builder', 'menu_title' => 'Profile Builder', 'capability' => 'manage_options', 'menu_slug' => 'profile-builder', 'page_type' => 'menu_page', 'position' => '70,69', 'priority' => 1, 'icon_url' => WPPB_PLUGIN_URL . 'assets/images/pb-menu-icon.png' ); new WCK_Page_Creator_PB( $args ); /** * Remove the automatically created submenu page * * @since v.2.0 * * @return void */ function wppb_remove_main_menu_page(){ remove_submenu_page( 'profile-builder', 'profile-builder' ); } add_action( 'admin_menu', 'wppb_remove_main_menu_page', 11 ); /** * Add scripts to the back-end CPT's to remove the slug from the edit page * * @since v.2.0 * * @return void */ function wppb_print_cpt_script( $hook ){ wp_enqueue_script( 'jquery-ui-dialog' ); wp_enqueue_style( 'wp-jquery-ui-dialog' ); if ( $hook == 'profile-builder_page_manage-fields' ){ wp_enqueue_script( 'wppb-manage-fields-live-change', WPPB_PLUGIN_URL . 'assets/js/jquery-manage-fields-live-change.js', array(), PROFILE_BUILDER_VERSION, true ); wp_localize_script( 'wppb-manage-fields-live-change', 'wppb_fields_strings', array( 'gdpr_title' => __( 'GDPR Checkbox', 'profile-builder' ), 'gdpr_description' => __( 'I allow the website to collect and store the data I submit through this form.', 'profile-builder' ) ) ); wp_enqueue_script( 'wppb-select2', WPPB_PLUGIN_URL . 'assets/js/select2/select2.min.js', array(), PROFILE_BUILDER_VERSION, true ); wp_enqueue_style( 'wppb-select2-style', WPPB_PLUGIN_URL . 'assets/css/select2/select2.min.css', false, PROFILE_BUILDER_VERSION ); } if ( $hook == 'admin_page_profile-builder-private-website' ){ wp_enqueue_script( 'wppb-select2', WPPB_PLUGIN_URL . 'assets/js/select2/select2.min.js', array(), PROFILE_BUILDER_VERSION, true ); wp_enqueue_style( 'wppb-select2-style', WPPB_PLUGIN_URL . 'assets/css/select2/select2.min.css', false, PROFILE_BUILDER_VERSION ); } if (( $hook == 'profile-builder_page_manage-fields' ) || ( $hook == 'profile-builder_page_profile-builder-basic-info' ) || ( $hook == 'profile-builder_page_profile-builder-modules' ) || ( $hook == 'profile-builder_page_profile-builder-general-settings' ) || ( $hook == 'profile-builder_page_profile-builder-admin-bar-settings' ) || ( $hook == 'profile-builder_page_profile-builder-register' ) || ( $hook == 'profile-builder_page_profile-builder-wppb_userListing' ) || ( $hook == 'profile-builder_page_custom-redirects' ) || ( $hook == 'profile-builder_page_profile-builder-wppb_emailCustomizer' ) ||//?what is this ( $hook == 'profile-builder_page_profile-builder-wppb_emailCustomizerAdmin' ) ||//?what is this ( $hook == 'profile-builder_page_profile-builder-add-ons' ) || ( $hook == 'profile-builder_page_profile-builder-woocommerce-sync' ) || ( $hook == 'profile-builder_page_profile-builder-bbpress') || ( $hook == 'profile-builder_page_admin-email-customizer') || ( $hook == 'profile-builder_page_user-email-customizer') || ( $hook == 'profile-builder_page_profile-builder-content_restriction' ) || ( strpos( $hook, 'profile-builder_page_' ) === 0 ) || ( $hook == 'edit.php' && ( isset( $_GET['post_type'] ) && $_GET['post_type'] == 'wppb-roles-editor' ) ) || ( $hook == 'admin_page_profile-builder-pms-promo') || ( $hook == 'admin_page_profile-builder-private-website') ) { wp_enqueue_style( 'wppb-back-end-style', WPPB_PLUGIN_URL . 'assets/css/style-back-end.css', false, PROFILE_BUILDER_VERSION ); } if ( $hook == 'profile-builder_page_profile-builder-general-settings' ) wp_enqueue_script( 'wppb-manage-fields-live-change', WPPB_PLUGIN_URL . 'assets/js/jquery-email-confirmation.js', array(), PROFILE_BUILDER_VERSION, true ); if( ($hook == 'profile-builder_page_profile-builder-add-ons' ) || ($hook == 'admin_page_profile-builder-pms-promo' ) ) { wp_enqueue_script('wppb-add-ons', WPPB_PLUGIN_URL . 'assets/js/jquery-pb-add-ons.js', array(), PROFILE_BUILDER_VERSION, true); wp_enqueue_style( 'thickbox' ); wp_enqueue_script( 'thickbox' ); } if ( isset( $_GET['post_type'] ) || isset( $_GET['post'] ) ){ if ( isset( $_GET['post_type'] ) ) $post_type = sanitize_text_field( $_GET['post_type'] ); elseif ( isset( $_GET['post'] ) ) $post_type = get_post_type( absint( $_GET['post'] ) ); if ( ( 'wppb-epf-cpt' == $post_type ) || ( 'wppb-rf-cpt' == $post_type ) || ( 'wppb-ul-cpt' == $post_type ) ){ wp_enqueue_style( 'wppb-back-end-style', WPPB_PLUGIN_URL . 'assets/css/style-back-end.css', false, PROFILE_BUILDER_VERSION ); wp_enqueue_script( 'wppb-epf-rf', WPPB_PLUGIN_URL . 'assets/js/jquery-epf-rf.js', array(), PROFILE_BUILDER_VERSION, true ); } else if( 'wppb-roles-editor' == $post_type ){ wp_enqueue_style( 'wppb-back-end-style', WPPB_PLUGIN_URL . 'assets/css/style-back-end.css', array(), PROFILE_BUILDER_VERSION ); } } if ( file_exists ( WPPB_PLUGIN_DIR.'/update/update-checker.php' ) || $hook == 'admin_page_profile-builder-private-website' ) { wp_enqueue_script( 'wppb-sitewide', WPPB_PLUGIN_URL . 'assets/js/jquery-pb-sitewide.js', array(), PROFILE_BUILDER_VERSION, true ); } wp_enqueue_style( 'wppb-serial-notice-css', WPPB_PLUGIN_URL . 'assets/css/serial-notice.css', false, PROFILE_BUILDER_VERSION ); } add_action( 'admin_enqueue_scripts', 'wppb_print_cpt_script' ); /** * Highlight the settings page under Profile Builder in the admin menu for these pages */ //add add_action( "admin_footer-$hook", "wppb_make_setting_menu_item_highlighted" ); for other pages that don't have a parent add_action( "admin_footer-admin_page_profile-builder-private-website", "wppb_make_setting_menu_item_highlighted" ); add_action( "admin_footer-profile-builder_page_profile-builder-admin-bar-settings", "wppb_make_setting_menu_item_highlighted" ); add_action( "admin_footer-profile-builder_page_profile-builder-content_restriction", "wppb_make_setting_menu_item_highlighted" ); add_action( "admin_footer-profile-builder_page_profile-builder-content_restriction", "wppb_make_setting_menu_item_highlighted" ); add_action( "admin_footer-profile-builder_page_admin-email-customizer", "wppb_make_setting_menu_item_highlighted" ); add_action( "admin_footer-profile-builder_page_user-email-customizer", "wppb_make_setting_menu_item_highlighted" ); function wppb_make_setting_menu_item_highlighted(){ echo''; } //the function used to overwrite the avatar across the wp installation function wppb_changeDefaultAvatar( $avatar, $id_or_email, $size, $default, $alt ){ /* Get user info. */ if(is_object($id_or_email)){ $my_user_id = $id_or_email->user_id; if ($id_or_email instanceof WP_User){ $my_user_id = $id_or_email->ID; } }elseif(is_numeric($id_or_email)){ $my_user_id = $id_or_email; }elseif(!is_integer($id_or_email)){ $user_info = get_user_by( 'email', $id_or_email ); $my_user_id = ( is_object( $user_info ) ? $user_info->ID : '' ); }else $my_user_id = $id_or_email; $wppb_manage_fields = get_option( 'wppb_manage_fields', 'not_found' ); if ( $wppb_manage_fields != 'not_found' ){ foreach( $wppb_manage_fields as $value ){ if ( $value['field'] == 'Avatar'){ $avatar_field = $value; } } } /* for multisite if we don't have an avatar try to get it from the main blog */ if( is_multisite() && empty( $avatar_field ) ){ switch_to_blog(1); $wppb_switched_blog = true; $wppb_manage_fields = get_option( 'wppb_manage_fields', 'not_found' ); if ( $wppb_manage_fields != 'not_found' ){ foreach( $wppb_manage_fields as $value ){ if ( $value['field'] == 'Avatar'){ $avatar_field = $value; } } } } if ( !empty( $avatar_field ) ){ $customUserAvatar = get_user_meta( $my_user_id, Wordpress_Creation_Kit_PB::wck_generate_slug( $avatar_field['meta-name'] ), true ); if( !empty( $customUserAvatar ) ){ if( is_numeric( $customUserAvatar ) ){ $img_attr = wp_get_attachment_image_src( $customUserAvatar, 'wppb-avatar-size-'.$size ); if( $img_attr[3] === false ){ $img_attr = wp_get_attachment_image_src( $customUserAvatar, 'thumbnail' ); $avatar = "{$alt}"; } else $avatar = "{$alt}"; } else { $customUserAvatar = get_user_meta($my_user_id, 'resized_avatar_' . $avatar_field['id'], true); $customUserAvatarRelativePath = get_user_meta($my_user_id, 'resized_avatar_' . $avatar_field['id'] . '_relative_path', true); if ((($customUserAvatar != '') || ($customUserAvatar != null)) && file_exists($customUserAvatarRelativePath)) { $avatar = "{$alt}"; } } } } /* if we switched the blog restore it */ if( is_multisite() && !empty( $wppb_switched_blog ) && $wppb_switched_blog ) restore_current_blog(); return $avatar; } add_filter( 'get_avatar', 'wppb_changeDefaultAvatar', 21, 5 ); //the function used to resize the avatar image; the new function uses a user ID as parameter to make pages load faster function wppb_resize_avatar( $userID, $userlisting_size = null, $userlisting_crop = null ){ // include the admin image API require_once( ABSPATH . '/wp-admin/includes/image.php' ); // retrieve first a list of all the current custom fields $wppb_manage_fields = get_option( 'wppb_manage_fields', 'not_found' ); if ( $wppb_manage_fields != 'not_found' ){ foreach( $wppb_manage_fields as $value ){ if ( $value['field'] == 'Avatar'){ $avatar_field = $value; } } } /* for multisite if we don't have an avatar try to get it from the main blog */ if( is_multisite() && empty( $avatar_field ) ){ switch_to_blog(1); $wppb_switched_blog = true; $wppb_manage_fields = get_option( 'wppb_manage_fields', 'not_found' ); if ( $wppb_manage_fields != 'not_found' ){ foreach( $wppb_manage_fields as $value ){ if ( $value['field'] == 'Avatar'){ $avatar_field = $value; } } } } if ( !empty( $avatar_field ) ){ // retrieve width and height of the image $width = $height = ''; //this checks if it only has 1 component if ( is_numeric( $avatar_field['avatar-size'] ) ){ $width = $height = $avatar_field['avatar-size']; }else{ //this checks if the entered value has 2 components $sentValue = explode( ',', $avatar_field['avatar-size'] ); $width = $sentValue[0]; $height = $sentValue[1]; } $width = ( !empty( $userlisting_size ) ? $userlisting_size : $width ); $height = ( !empty( $userlisting_size ) ? $userlisting_size : $height ); if( !strpos( get_user_meta( $userID, 'resized_avatar_'.$avatar_field['id'], true ), $width . 'x' . $height ) ) { // retrieve the original image (in original size) $avatar_directory_path = get_user_meta( $userID, 'avatar_directory_path_'.$avatar_field['id'], true ); $image = wp_get_image_editor( $avatar_directory_path ); if ( !is_wp_error( $image ) ) { do_action( 'wppb_before_avatar_resizing', $image, $userID, Wordpress_Creation_Kit_PB::wck_generate_slug( $avatar_field['meta-name'] ), $avatar_field['avatar-size'] ); $crop = apply_filters( 'wppb_avatar_crop_resize', ( !empty( $userlisting_crop ) ? $userlisting_crop : false ) ); $resize = $image->resize( $width, $height, $crop ); if ($resize !== FALSE) { do_action( 'wppb_avatar_resizing', $image, $resize ); $fileType = apply_filters( 'wppb_resized_file_extension', 'png' ); $wp_upload_array = wp_upload_dir(); // Array of key => value pairs //create file(name); both with directory and url $fileName_dir = $image->generate_filename( NULL, $wp_upload_array['basedir'].'/profile_builder/avatars/', $fileType ); if ( PHP_OS == "WIN32" || PHP_OS == "WINNT" ) $fileName_dir = str_replace( '\\', '/', $fileName_dir ); $fileName_url = str_replace( str_replace( '\\', '/', $wp_upload_array['basedir'] ), $wp_upload_array['baseurl'], $fileName_dir ); //save the newly created (resized) avatar on the disc $saved_image = $image->save( $fileName_dir ); if ( !is_wp_error( $saved_image ) ) { /* the image save sometimes doesn't save with the desired extension so we need to see with what extension it saved it with and if it differs replace the extension in the path and url that we save as meta */ $validate_saved_image = wp_check_filetype_and_ext( $saved_image['path'], $saved_image['path'] ); $ext = substr( $fileName_dir,strrpos( $fileName_dir, '.', -1 ), strlen($fileName_dir) ); if( !empty( $validate_saved_image['ext'] ) && $validate_saved_image['ext'] != $ext ){ $fileName_url = str_replace( $ext, '.'.$validate_saved_image['ext'], $fileName_url ); $fileName_dir = str_replace( $ext, '.'.$validate_saved_image['ext'], $fileName_dir ); } update_user_meta( $userID, 'resized_avatar_'.$avatar_field['id'], $fileName_url ); update_user_meta( $userID, 'resized_avatar_'.$avatar_field['id'].'_relative_path', $fileName_dir ); do_action( 'wppb_after_avatar_resizing', $image, $fileName_dir, $fileName_url ); } } } } } /* if we switched the blog restore it */ if( is_multisite() && !empty( $wppb_switched_blog ) && $wppb_switched_blog ) restore_current_blog(); } if ( is_admin() ){ // add a hook to delete the user from the _signups table if either the email confirmation is activated, or it is a wpmu installation function wppb_delete_user_from_signups_table($user_id) { global $wpdb; $userLogin = $wpdb->get_var( $wpdb->prepare( "SELECT user_login, user_email FROM " . $wpdb->users . " WHERE ID = %d LIMIT 1", $user_id ) ); if ( is_multisite() ) $delete = $wpdb->delete( $wpdb->signups, array( 'user_login' => $userLogin ) ); else $delete = $wpdb->delete( $wpdb->prefix.'signups', array( 'user_login' => $userLogin ) ); } $wppb_generalSettings = get_option( 'wppb_general_settings' ); if ( !empty( $wppb_generalSettings['emailConfirmation'] ) && ( $wppb_generalSettings['emailConfirmation'] == 'yes' ) ) { if( is_multisite() ) add_action( 'wpmu_delete_user', 'wppb_delete_user_from_signups_table' ); else add_action('delete_user', 'wppb_delete_user_from_signups_table'); } } // This function offers compatibility with the all in one event calendar plugin function wppb_aioec_compatibility(){ wp_deregister_script( 'jquery.tools-form'); } add_action('admin_print_styles-users_page_ProfileBuilderOptionsAndSettings', 'wppb_aioec_compatibility'); function wppb_user_meta_exists( $id, $meta_name ){ global $wpdb; return apply_filters( 'wppb_user_meta_exists_meta_name', $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->usermeta WHERE user_id = %d AND meta_key = %s", $id, $meta_name ) ), $id, $meta_name ); } // function to check if there is a need to add the http:// prefix function wppb_check_missing_http( $redirectLink ) { return preg_match( '#^(?:[a-z\d]+(?:-+[a-z\d]+)*\.)+[a-z]+(?::\d+)?(?:/|$)#i', $redirectLink ); } //function that adds missing http to a link function wppb_add_missing_http( $link ){ $http = ''; if ( wppb_check_missing_http( $link ) ) { //if missing http(s) $http = 'http'; if ((isset($_SERVER["HTTPS"])) && ($_SERVER["HTTPS"] == "on")) $http .= "s"; $http .= "://"; } return $http . $link; } //function to output the password strength checker on frontend forms function wppb_password_strength_checker_html(){ $wppb_generalSettings = get_option( 'wppb_general_settings' ); if( !empty( $wppb_generalSettings['minimum_password_strength'] ) ){ $password_strength = ''.__('Strength indicator', 'profile-builder' ).' '; return $password_strength; } return ''; } //function to check password length check function wppb_check_password_length( $password ){ $wppb_generalSettings = get_option( 'wppb_general_settings' ); if( !empty( $wppb_generalSettings['minimum_password_length'] ) ){ if( strlen( $password ) < $wppb_generalSettings['minimum_password_length'] ){ return true; } else return false; } return false; } //function to check password strength function wppb_check_password_strength(){ $wppb_generalSettings = get_option( 'wppb_general_settings' ); if( isset( $_POST['wppb_password_strength'] ) && !empty( $wppb_generalSettings['minimum_password_strength'] ) ){ $wppb_password_strength = sanitize_text_field( $_POST['wppb_password_strength'] ); $password_strength_array = array( 'short' => 0, 'bad' => 1, 'good' => 2, 'strong' => 3 ); $password_strength_text = array( 'short' => __( 'Very Weak', 'profile-builder' ), 'bad' => __( 'Weak', 'profile-builder' ), 'good' => __( 'Medium', 'profile-builder' ), 'strong' => __( 'Strong', 'profile-builder' ) ); if( $password_strength_array[$wppb_password_strength] < $password_strength_array[$wppb_generalSettings['minimum_password_strength']] ){ return $password_strength_text[$wppb_generalSettings['minimum_password_strength']]; } else return false; } return false; } /* function to output password length requirements text */ function wppb_password_length_text(){ $wppb_generalSettings = get_option( 'wppb_general_settings' ); if( !empty( $wppb_generalSettings['minimum_password_length'] ) ){ return sprintf(__('Minimum length of %d characters.', 'profile-builder'), $wppb_generalSettings['minimum_password_length']); } return ''; } /* function to output password strength requirements text */ function wppb_password_strength_description() { $wppb_generalSettings = get_option( 'wppb_general_settings' ); if( ! empty( $wppb_generalSettings['minimum_password_strength'] ) ) { $password_strength_text = array( 'short' => __( 'Very Weak', 'profile-builder' ), 'bad' => __( 'Weak', 'profile-builder' ), 'good' => __( 'Medium', 'profile-builder' ), 'strong' => __( 'Strong', 'profile-builder' ) ); $password_strength_description = '
            '. sprintf( __( 'The password must have a minimum strength of %s.', 'profile-builder' ), $password_strength_text[$wppb_generalSettings['minimum_password_strength']] ); return $password_strength_description; } else { return ''; } } /** * Include password strength check scripts on frontend where we have shortoces present */ add_action( 'wp_footer', 'wppb_enqueue_password_strength_check' ); function wppb_enqueue_password_strength_check() { global $wppb_shortcode_on_front; if( $wppb_shortcode_on_front ){ $wppb_generalSettings = get_option( 'wppb_general_settings' ); if( !empty( $wppb_generalSettings['minimum_password_strength'] ) ){ wp_enqueue_script( 'password-strength-meter' ); } } } add_action( 'wp_footer', 'wppb_password_strength_check', 102 ); function wppb_password_strength_check(){ global $wppb_shortcode_on_front; if( $wppb_shortcode_on_front ){ $wppb_generalSettings = get_option( 'wppb_general_settings' ); if( !empty( $wppb_generalSettings['minimum_password_strength'] ) ){ ?> $field) { if ( (!empty($id)) && ($field['id'] == $id) ) return $field; if ( (!empty($meta)) && ($field['meta-name'] == $meta) ) return $field; } } return ''; } /* Function for displaying reCAPTCHA error on Login and Recover Password forms */ function wppb_recaptcha_field_error($field_title='') { $recaptcha_error = apply_filters('wppb_recaptcha_error' , __('Please enter a (valid) reCAPTCHA value','profile-builder') , $field_title); return $recaptcha_error; } /* Function for displaying phone field error */ function wppb_phone_field_error( $field_title = '' ) { $phone_error = apply_filters( 'wppb_phone_error' , __( 'Incorrect phone number', 'profile-builder' ) , $field_title ); return $phone_error; } /* Create a wrapper function for get_query_var */ function wppb_get_query_var( $varname ){ //if we want the userlisting on front page ( is_front_page() ) apparently the way we register query vars does not work so we will just use a simple GET var if($varname === 'username' && !get_query_var( $varname ) && isset($_GET['wppb_username'])){ return apply_filters( 'wppb_get_query_var_'.$varname, $_GET['wppb_username'] ); } return apply_filters( 'wppb_get_query_var_'.$varname, get_query_var( $varname ) ); } /** @param string|array $key Query key or keys to remove. */ function wppb_remove_query_arg( $key, $url = false ){ $striped_url = remove_query_arg( $key, $url); //treat page key on frontpage case where it is transformed into a pretty permalink if( ( is_array($key) && in_array('page', $key) ) || ( !is_array($key) && 'page' === $key ) ){ $striped_url = preg_replace( '/\/page\/\d\//', '/', $striped_url ); $striped_url = preg_replace( '/\/page\//', '/', $striped_url ); } return $striped_url; } /* Filter the "Save Changes" button text, to make it translatable */ function wppb_change_save_changes_button($value){ $value = __('Save Changes','profile-builder'); return $value; } add_filter( 'wck_save_changes_button', 'wppb_change_save_changes_button', 10, 2); /* Filter the "Cancel" button text, to make it translatable */ function wppb_change_cancel_button($value){ $value = __('Cancel','profile-builder'); return $value; } add_filter( 'wck_cancel_button', 'wppb_change_cancel_button', 10, 2); /* ilter the "Delete" button text, to make it translatable */ function wppb_change_delete_button($value){ $value = __('Delete','profile-builder'); return $value; } add_filter( 'wck_delete_button', 'wppb_change_delete_button', 10, 2); /*Filter the "Edit" button text, to make it translatable*/ function wppb_change_edit_button($value){ $value = __('Edit','profile-builder'); return $value; } add_filter( 'wck_edit_button', 'wppb_change_edit_button', 10, 2); /*Filter the User Listing, Register Forms and Edit Profile forms metabox header content, to make it translatable*/ function wppb_change_metabox_content_header(){ return '#'. __( 'Content', 'profile-builder' ) .''. __( 'Edit', 'profile-builder' ) .''. __( 'Delete', 'profile-builder' ) .''; } add_filter('wck_metabox_content_header_wppb_ul_page_settings', 'wppb_change_metabox_content_header', 1); add_filter('wck_metabox_content_header_wppb_rf_page_settings', 'wppb_change_metabox_content_header', 1); add_filter('wck_metabox_content_header_wppb_epf_page_settings', 'wppb_change_metabox_content_header', 1); /*Filter default WordPress notices ("Post published. Post updated."), add post type name for User Listing, Registration Forms and Edit Profile Forms*/ function wppb_change_default_post_updated_messages($messages){ global $post; $post_type = get_post_type($post->ID); $object = get_post_type_object($post_type); if ( ($post_type == 'wppb-rf-cpt')||($post_type == 'wppb-epf-cpt')||($post_type == 'wppb-ul-cpt') ){ $messages['post'][1] = $object->labels->name . ' updated.'; $messages['post'][6] = $object->labels->name . ' published.'; } return $messages; } add_filter('post_updated_messages','wppb_change_default_post_updated_messages', 2); /* for meta-names with spaces in them PHP converts the space to underline in the $_POST */ function wppb_handle_meta_name( $meta_name ){ $meta_name = str_replace( ' ', '_', $meta_name ); $meta_name = str_replace( '.', '_', $meta_name ); return $meta_name; } /** * Function that checks if a field type exists in a form * @return bool */ function wppb_field_exists_in_form( $field_type, $form_args ){ if( !empty( $form_args ) && !empty( $form_args['form_fields'] ) ){ foreach( $form_args['form_fields'] as $field ){ if( $field['field'] === $field_type ){ return true; } } } return false; } // change User Registered date and time according to timezone selected in WordPress settings function wppb_get_register_date() { $time_format = "Y-m-d G:i:s"; $wppb_get_date = date_i18n( $time_format, false, true ); if( apply_filters( 'wppb_return_local_time_for_register', false ) ){ $wppb_get_date = date_i18n( $time_format ); } return $wppb_get_date; } /** * Function that ads the gmt offset from the general settings to a unix timestamp * @param $timestamp * @return mixed */ function wppb_add_gmt_offset( $timestamp ) { if( apply_filters( 'wppb_add_gmt_offset', true ) ){ $timestamp = $timestamp + ( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ); } return $timestamp; } /** * Add HTML tag 'required' to fields * * Add HTML tag 'required' for each field if the field is required. For browsers that don't support this HTML tag, we will still have the fallback. * Field type 'Checkbox' is explicitly excluded because there is no HTML support to check if at least one option is selected. * Other fields excluded are Avatar, Upload, Heading, ReCaptcha, WYSIWYG, Map. * * @since * * @param string $extra_attributes Extra attributes attached to the field HTML tag. * @param array $field Field description. * @return string $extra_attributes */ function wppb_add_html_tag_required_to_fields( $extra_attributes, $field, $form_location = '' ) { if ( $field['field'] != "Checkbox" && isset( $field['required'] ) && $field['required'] == 'Yes' ){ if( !( ( $field['field'] == "Default - Password" || $field['field'] == "Default - Repeat Password" ) && $form_location == 'edit_profile' ) ) $extra_attributes .= ' required '; } return $extra_attributes; } add_filter( 'wppb_extra_attribute', 'wppb_add_html_tag_required_to_fields', 10, 3 ); /** * Add HTML tag 'required' to WooCommerce fields * * Add HTML tag 'required' for each WooCommerce field if the field is required. For browsers that don't support this HTML tag, we will still have the fallback. * Does not work on 'State / County' field, if it becomes required later depending on the Country Value * * @since * * @param string $extra_attributes Extra attributes attached to the field HTML tag. * @param array $field Field description. * @return string $extra_attributes */ function wppb_add_html_tag_required_to_woo_fields( $extra_attributes, $field ) { if ( isset( $field['required'] ) && $field['required'] == 'Yes' ){ $extra_attributes .= ' required '; } return $extra_attributes; } add_filter( 'wppb_woo_extra_attribute', 'wppb_add_html_tag_required_to_woo_fields', 10, 2 ); /** * Add jQuery script to remove required attribute for hidden fields * * If a field is hidden dynamically via conditional fields or WooSync 'Ship to a different address' checkbox, then the required field needs to be removed. * If a field is made visible again, add the required field back again. * * @since * * @param string $extra_attributes Extra attributes attached to the field HTML tag. * @param array $field Field description. * @return string $extra_attributes */ function wppb_manage_required_attribute() { global $wppb_shortcode_on_front; if ($wppb_shortcode_on_front) { ?> errors['blogname']) && empty($blog_details['errors']->errors['blog_title'])) { $blog_path = $blog_details['domain'] . $blog_details['path']; $message .= __( '

            Also, you will be able to visit your site at ', 'profile-builder' ) . '' . $blog_path . '.'; } } return $message; } add_filter( 'wppb_signup_user_notification_email_content', 'wpbb_specify_blog_details_on_signup_email', 5, 8 ); function wpbb_specify_blog_details_on_registration_email( $user_message_content, $email, $password, $user_message_subject, $context ){ if ( is_multisite() ) { $user = get_user_by( 'email', $email ); $blog_path = wppb_get_blog_url_of_user_id( $user->ID ); if ( ! empty ( $blog_path ) ) { $user_message_content .= __( '

            You can visit your site at ', 'profile-builder' ) . '' . $blog_path . '.'; } } return $user_message_content; } add_filter( 'wppb_register_user_email_message_without_admin_approval', 'wpbb_specify_blog_details_on_registration_email', 5, 5 ); add_filter( 'wppb_register_user_email_message_with_admin_approval', 'wpbb_specify_blog_details_on_registration_email', 5, 5 ); function wppb_get_blog_url_of_user_id( $user_id, $ignore_privacy = true ){ $blog_id = get_user_meta( $user_id, 'primary_blog', true ); if ( is_multisite() && !empty( $blog_id ) ){ $blog_details = get_blog_details( $blog_id ); if ( $ignore_privacy || $blog_details->public ) { return $blog_details->domain . $blog_details->path; } } return ''; } function wppb_can_users_signup_blog(){ if ( ! is_multisite() ) return false; global $wpdb; $current_site = get_current_site(); $sitemeta_options_query = $wpdb->prepare( "SELECT meta_value FROM {$wpdb->sitemeta} WHERE meta_key = 'registration' AND site_id = %d", $current_site->id ); $network_options_meta = $wpdb->get_results( $sitemeta_options_query ); if ( $network_options_meta[0]->meta_value == 'all' ){ return true; } return false; } /** * Function that handle redirect URL * * @param string $redirect_priority - it can be normal or top priority * @param string $redirect_type - type of the redirect * @param null|string $redirect_url - redirect URL if already set * @param null|string|object $user - username, user email or user data * @param null|string $user_role - user role * * @return null|string $redirect_url */ function wppb_get_redirect_url( $redirect_priority = 'normal', $redirect_type, $redirect_url = NULL, $user = NULL, $user_role = NULL ) { if( PROFILE_BUILDER == 'Profile Builder Pro' ) { $wppb_module_settings = get_option( 'wppb_module_settings' ); if( isset( $wppb_module_settings['wppb_customRedirect'] ) && $wppb_module_settings['wppb_customRedirect'] == 'show' && $redirect_priority != 'top' && function_exists( 'wppb_custom_redirect_url' ) ) { $redirect_url = wppb_custom_redirect_url( $redirect_type, $redirect_url, $user, $user_role ); } } if( ! empty( $redirect_url ) ) { $redirect_url = ( wppb_check_missing_http( $redirect_url ) ? 'http://'. $redirect_url : $redirect_url ); } return $redirect_url; } /** * Function that builds the redirect * * @param string $redirect_url - redirect URL * @param int $redirect_delay - redirect delay in seconds * @param null|string $redirect_type - the type of the redirect * @param null|array $form_args - form args if set * * @return string $redirect_message */ function wppb_build_redirect( $redirect_url, $redirect_delay, $redirect_type = NULL, $form_args = NULL ) { if( isset( $redirect_type ) ) { $redirect_url = apply_filters( 'wppb_'. $redirect_type .'_redirect', $redirect_url ); } $redirect_message = ''; if( ! empty( $redirect_url ) ) { $redirect_url = ( wppb_check_missing_http( $redirect_url ) ? 'http://'. $redirect_url : $redirect_url ); if( $redirect_delay == 0 ) { $redirect_message = ''; } else { $redirect_url_href = apply_filters( 'wppb_redirect_url', ''. __( 'here', 'profile-builder' ) .'', $redirect_url, $redirect_type, $form_args ); $redirect_message = apply_filters( 'wppb_redirect_message_before_returning', '

            '. sprintf( wp_slash( __( 'You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s', 'profile-builder' ) ), $redirect_delay, $redirect_url_href, '' ) .'

            ', $redirect_url, $redirect_delay, $redirect_url_href, $redirect_type, $form_args ); } } return $redirect_message; } /** * Function that strips the script tags from an input * @param $string * @return mixed */ function wppb_sanitize_value( $string ){ return preg_replace( '/]*>(.*?)<\/script>/is', '', $string ); } /** * Function that receives a user role and returns it's label. * Returns the original role if not found. * * @since v.2.7.1 * * @param string $role * * @return string */ function wppb_get_role_name($role){ global $wp_roles; if ( array_key_exists( $role, $wp_roles->role_names ) ) return $wp_roles->role_names[$role]; return $role; } /** * Functionality for Private Website start */ add_action( 'template_redirect', 'wppb_private_website_functionality' ); add_action( 'login_init', 'wppb_private_website_functionality', 1 ); function wppb_private_website_functionality(){ $wppb_private_website_settings = get_option( 'wppb_private_website_settings', 'not_found' ); if( $wppb_private_website_settings != 'not_found' ){ if( $wppb_private_website_settings['private_website'] == 'yes' ){ if( !is_user_logged_in() ){ //force wp-login.php if you accidentally get locked out global $pagenow; if( $pagenow === 'wp-login.php' && isset( $_GET['wppb_force_wp_login'] ) ) return; if( isset( $wppb_private_website_settings['allowed_pages'] ) ) $allowed_pages = $wppb_private_website_settings['allowed_pages']; else{ $allowed_pages = array(); } $redirect_to_id = $wppb_private_website_settings['redirect_to']; if( !empty( $redirect_to_id ) ) { $redirect_url = get_permalink($redirect_to_id); $allowed_pages[] = $redirect_to_id; } else { //don't redirect if we are already on the wp-login.php page if( $pagenow === 'wp-login.php' ){ return; } else $redirect_url = wp_login_url(wppb_curpageurl()); } $redirect_url = apply_filters( 'wppb_private_website_redirect_url', $redirect_url ); $allowed_pages = apply_filters( 'wppb_private_website_allowed_pages', $allowed_pages ); global $post; if( !isset( $post ) ) { if( function_exists('url_to_postid') ) { $post_id = url_to_postid(wppb_curpageurl());//try to get the id from the actual url }else { $post_id = 0; } } else $post_id = $post->ID; if( !in_array( $post_id, $allowed_pages ) && ( $redirect_url !== strtok( wppb_curpageurl(), '?' ) ) ){ wp_safe_redirect( $redirect_url ); exit; } } } } } //add classes on the body to know if we have enabled private website options add_filter( 'body_class', 'wppb_private_website_body_classes' ); function wppb_private_website_body_classes( $classes ){ $wppb_private_website_settings = get_option( 'wppb_private_website_settings', 'not_found' ); if( $wppb_private_website_settings != 'not_found' ) { if ($wppb_private_website_settings['private_website'] == 'yes') { if (!is_user_logged_in()) { $classes[] = 'wppb-private-website'; if ($wppb_private_website_settings['hide_menus'] == 'yes') { $classes[] = 'wppb-private-website-hide-menus'; } } } } return $classes; } /** * Disable RSS */ add_action('do_feed', 'wppb_disable_feed', 1); add_action('do_feed_rdf', 'wppb_disable_feed', 1); add_action('do_feed_rss', 'wppb_disable_feed', 1); add_action('do_feed_rss2', 'wppb_disable_feed', 1); add_action('do_feed_atom', 'wppb_disable_feed', 1); add_action('do_feed_rss2_comments', 'wppb_disable_feed', 1); add_action('do_feed_atom_comments', 'wppb_disable_feed', 1); function wppb_disable_feed() { $wppb_private_website_settings = get_option( 'wppb_private_website_settings', 'not_found' ); if( $wppb_private_website_settings != 'not_found' ) { if ($wppb_private_website_settings['private_website'] == 'yes') { if (!is_user_logged_in()) { wp_die( sprintf( __('No feed available,please visit our homepage!', 'profile-builder' ), get_bloginfo('url') ) ); } } } } /** * Disable REST */ //add_filter('rest_enabled', 'wppb_disable_rest'); // this is depracated add_filter('rest_jsonp_enabled', 'wppb_disable_rest'); function wppb_disable_rest( $bool ){ $wppb_private_website_settings = get_option( 'wppb_private_website_settings', 'not_found' ); if( $wppb_private_website_settings != 'not_found' ) { if ($wppb_private_website_settings['private_website'] == 'yes') { if (!is_user_logged_in()) { return false; } } } return $bool; } /* I should test this to not create any problems */ //add_filter('rest_authentication_errors', 'wppb_disable_rest_api_authentication', 10, 1 ); function wppb_disable_rest_api_authentication($result) { if (!empty($result)) { return $result; } $wppb_private_website_settings = get_option( 'wppb_private_website_settings', 'not_found' ); if( $wppb_private_website_settings != 'not_found' ) { if ($wppb_private_website_settings['private_website'] == 'yes') { if (!is_user_logged_in() && $_SERVER['REQUEST_URI'] !== "/wp-json/jwt-auth/v1/token" && $_SERVER['REQUEST_URI'] !== "/wp-json/jwt-auth/v1/token/validate") { return new WP_Error('rest_not_logged_in', __( 'You are not currently logged in.', 'profile-builder' ), array('status' => 401)); } } } return $result; } /** * We can hide all menu items */ add_filter('wp_nav_menu', 'wppb_hide_menus'); add_filter('wp_page_menu', 'wppb_hide_menus'); function wppb_hide_menus( $menu ){ $wppb_private_website_settings = get_option( 'wppb_private_website_settings', 'not_found' ); if( $wppb_private_website_settings != 'not_found' ) { if ($wppb_private_website_settings['private_website'] == 'yes') { if ( !is_user_logged_in() && ( !empty($wppb_private_website_settings['hide_menus']) && $wppb_private_website_settings['hide_menus'] == 'yes' ) ) { return ''; } } } return $menu; } /** * Functionality for Private Website end */ /** * Functionality GDPR compliance start */ //hook into the wp export compatibility add_filter( 'wp_privacy_personal_data_exporters', 'wppb_register_profile_builder_wp_exporter', 10 ); function wppb_register_profile_builder_wp_exporter( $exporters ) { $exporters['profile-builder'] = array( 'exporter_friendly_name' => __( 'Profile Builder' ), 'callback' => 'wppb_profile_builder_wp_exporter', ); return $exporters; } /* function to add aour user meta to wp exporter */ function wppb_profile_builder_wp_exporter( $email_address, $page = 1 ) { $export_items = array(); $form_fields = get_option( 'wppb_manage_fields' ); if( !empty( $form_fields ) ) { $user = get_user_by( 'email', $email_address ); if( $user ) { $item_id = "user-meta-{$user->ID}"; $group_id = 'user-meta'; $group_label = __('User Meta'); $data = array(); $all_meta_for_user = get_user_meta( $user->ID ); if( !empty( $all_meta_for_user ) ) { foreach ($form_fields as $form_field) { if (!empty($form_field['meta-name']) && strpos($form_field['field'], 'Default') === false) { $user_meta_value = $all_meta_for_user[$form_field['meta-name']][0]; if( !empty( $user_meta_value ) ){ $data[] = array( 'name' => $form_field['field-title'], 'value' => $user_meta_value ); } } } $export_items[] = array( 'group_id' => $group_id, 'group_label' => $group_label, 'item_id' => $item_id, 'data' => $data, ); } } } return array( 'data' => $export_items, 'done' => true, ); } /** * Hook to delete a user through the GDPR Delete button */ add_action( 'template_redirect', 'wppb_gdpr_delete_user') ; function wppb_gdpr_delete_user() { if( isset( $_GET['wppb_user'] ) && ! empty( $_GET['wppb_user'] ) ) { $edited_user_id = get_current_user_id(); if ( ( !is_multisite() && current_user_can('edit_users') ) || ( is_multisite() && current_user_can('manage_network') ) ) { $edited_user_id = absint($_GET['wppb_user']); } if (isset($_REQUEST['wppb_action']) && $_REQUEST['wppb_action'] == 'wppb_delete_user' && wp_verify_nonce($_REQUEST['wppb_nonce'], 'wppb-user-own-account-deletion') && isset($_REQUEST['wppb_user']) && $edited_user_id == $_REQUEST['wppb_user']) { require_once(ABSPATH . 'wp-admin/includes/user.php'); $user = new WP_User( absint( $_REQUEST['wppb_user'] ) ); if (!empty($user->roles)) { foreach ($user->roles as $role) { if ($role != 'administrator') { wp_delete_user( absint( $_REQUEST['wppb_user'] ) ); } } } $args = array('wppb_user', 'wppb_action', 'wppb_nonce'); wp_redirect(remove_query_arg($args)); } } } /** * Functionality GDPR compliance end */ /** * Function that checks if Admin Approval is enabled */ function wppb_get_admin_approval_option_value(){ $wppb_general_settings = get_option( 'wppb_general_settings', 'not_found' ); if( file_exists(WPPB_PLUGIN_DIR . '/features/admin-approval/admin-approval.php') && $wppb_general_settings != 'not_found' && !empty( $wppb_general_settings['adminApproval'] ) && $wppb_general_settings['adminApproval'] === 'yes' ) return 'yes'; else return 'no'; } /** * Function that checks if conditional fields feature exists * @return bool */ function wppb_conditional_fields_exists(){ if (file_exists(WPPB_PLUGIN_DIR . '/features/conditional-fields/conditional-fields.php')) return true; else return false; }screenshot-12.png000066600000236261152141651160007667 0ustar00PNG  IHDRdN_tEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp :19%IDATx \SQ*n.HHEز%ffks'36hOZ.!M54ҺꆓY?t]^χGܾۧ^kˎ/#,^Zb,`1g޽{,`1`1`1@,A ӗŬ/=WSRx͉ WLjq3ӝ@aNAS2!$fsn\܄_ID O9[Q^< A~;n=qZo 4w3B"OP" SOL`Xs#iNNړٝ3[ou.o.C '/UzmֻPowF fCWua;3˕5rH X EdncmC,r^\tmO/{=| n}<}ha>՛C̼k1ճn]-#{E_"Gzzo~KvFdugsZW '$ Vh itכB7}8S,K"FN^YC`c1mּ7.ٹP܈m{/լmi4K>+^R^pţ~׈6IA|6,+^f5oV}WԷ~JnI L1WD{cE 77Wm}aQZylVbmg-ecU7kFM]ih4&srJFvBdPYg^[tc[sW}ЕF$u]IPxdLEW4j kɠ]gn*PQ.I!ѹv;g_RC oo`%O+ ޼o-}<$2P-L޿'\V~< w*im}{C{Z?ho&fMܩFAC=vavxX[n\ۅBUi.-Z=ޟ/7juЫbnY E}y?袥m?fD yW=ޟV/iތq;*0_>=ӪlaVL(T5(eXhӏ[YVS9 yej  M]z-;d#xݻw/++UV/2wѤ} ^i@ HҌ"TTT y}(u 9ln^\NnNZQi 222ZhR+ٳf<0A͈a#*%/Y^w̴(+Bp|m S-DC"5@__\vzu)_TpEAQi iAм4nx*׭RC3sZ(&=gݺD"QҬN RJZkf%R xZ'*NKyD6/Dn0ְBqFZx.g}NG<׫Wuxj gީFoSEBҲťu$d>o_\/잻醤MFO*<bj cp0d~rj9#^36-_:fic;j?vg@S۝oeD[ޞex]?SNφ#,d]< @7knRrf$, 9iDoX>a%R I1p0+?;ovMSNJejvrf)D~(΅bXӂr[=EE a!^;rNeq&:MoOKy pepVȲxuu`}[/*>أEFBԾƿ4Vގ.yK-n(M8jge;͂-8]~g6$~/Cmfw?օoxKԸi04.B,tyiaR\h]Ӳ:z0e%͝0_7%~0f7ŵw_XiqKv4ͣDGr] ƺL8𦱙n G[\ūy mZ_d*bG2`Hmߛ-_nlnvNtz{uȆ4ތ+ wsrNΦUΗ޼:o,3wh]уӞשQk<~wHo5q} <, Bw7B} .E #mU;D5s e g#鸱X[afcWMog"R1A"'KY{yfDbG;^L6/[ҼWGIޯmRo|"ZN8Ycuo%Y֡}׵'~]]׻/$ t'& '՛o &nsr_'=yݭHsŋ5hQoo:u'Hsm![M=x_='H5'png\{Tea_ B 03bmQA=KR򅸰%՜Q&d_mfyA}e=}3Ijo<{`1epL@iA0l]=9Jf7_u:6J4ּijW8 葫N8iRܧ}uT7Tĥ8JKCFVkM8ĸȆO}]PA&}e2i-gSS #Z*?DfuՅ! wEiam]5~WկP^Oú%Z}=Ui~[mj11Sr:hfڝ'' kel;NZK)ENim]3ѩYCxqg X=ZEi۲'8F3H}X0zH8RMjjIMXq}?U{<̛ʻ~es3Mmmwo/?_4(:6fGK䚙kۋ%fz;AC[y ]y7Goϼ{3|nwj)ojwn&[4v+;^[kZ:jwЙtɶ~s}JjV:&U>h_gw `1IB\غdpQꯁ;#g_* y뾬ʕ0!_RhNoqS9+NT% Դhbm顩YVhaq7{uH~nk}Oj4-X1E+PS9Voѭ/+ j`:lQj;\zۨlǜztt7tqWC>hstxᐆq߁ݿy$cKT,축3 :p,pwaA:d?}`"ˠͶT~ɈԨ0o+a j"YY"4ҁjex(6'T*39tda%V%ͺqoZ}T[>o)_4ƮVKw\ZuXʟ_nV|l`?oJ-fͷ(f'.|;.FT.>~p{Ϯm}II?L`#nl4#.aP3E,ׁ]TÂec%5$4nq4^~k?hܷc/?noZGqHL!Nw]Yb<`aОo?լ7-.>旟 0~PW6PҤ;Z0@[ _֖YRt)|rY::wbg1`1`1TTTY/|X*K<k׮"_.Dx,ZJ^t,,A b X `1@,A &of3԰aGkx=""X֫WuOٽ{rrr + bFEEK{Jmk~fϏEi=fm(IW^0' O;h7WlO֩ gzNnDžl9$<6`1g`q\6mM*W+̊Cpq8-{l=z"4),!L>Vz|uQc[XkpC-vMω;Icˎ"0`n3Vsھ=Ԯu~' xI=(H?2\|ꉴcY١h^prыsz@̨{9ˏ2n7g e;a\kw,8V~?wku2U*H9 kh95U{V\:*M?CwUڷ0iV_WyҔSi鲻<=<:|dvgVrLt̕[,^$,.)Nݸ%Rػ+f^?;eڲ1~G?ISN%dsE)|)|Ky r&U6mL!˽n~ ɻMo k@ޣݻh]Pg ˊLb gמ"Ŋ=IGIX<SvJi\׀*G|-鸂<^Ҷ8~Qt{jŲS/^qGumm*OϋH>~ziMNNzv6i n8pC&TYګecJ =X6(.H;CikqEE$o%1֭[FVwR".E[6yC&*k$!ŁnBG;VqJDؑsE]?3Ekq/^LNT\bhE4Tq;.dˡpPٝ˸nF}t|rfߊ2ifiպmūjāu4ڮ "U5s5C 2Do lw?VfgܒvׯMƎݽ܌DR©(kMblUEpmeUcqQ΍ċU,_5,iDq4"I+IjҸ59]G*Hr*lWhn$D^7wj_JisZCe>E}!ޣm>w3kl榝?&D+<OU}`ԭ>Xs3!bךU?jw3( yoNK\r\E:7WisX4W__1Xk"DYӷj_~D=Ö윢ꯥH^.{Uı[Ui\Z];WeEEeѡ\ܵ {5Ѿy<_p/:&bVjn`ڬץ5P,( fhwn_tD+_jX?~3K-xh^fTK*i^SjFZCv4א#ҏ.-ze0iBjFzca{w1܃ɼ"D3=*5_ͮIJb)u`Z>p"D$oDR(Y9#]Zj̖zȧom=u{2F"-gR_%ã*JO+ܾU#ҋ7PRASW֫+^nP{Hܶk7kuh۠RӣonּYK΍Hr>]{7s>ZM.m؀G'IT, Xfګ| ٝKӯљM%y|[Ku'1= L quS~pˁJeC;x3b<*Yb"G0̌ٺ;+Sf Q(nq(O(_:jJNJnQJS,ټ,}[5XsM<\(<<+sb:B}!. )>4*pȪ!:.AӜ p )MޕWb)Kc/(ɪl8w7.~F::PU(n;3U~!{k5h\E}:{򮞏:mMJ '`1ɭªiLqWSKŝ_k)оҿd\O/ݢOgXwjYXǰHIFņ7奜yWy~HZ<0]MQ.\,i0V|C3Jް: '4x7/ anbTfWmEĹKvM[Jh`t"mo^Pi`inbȕ&D[W蛚۽3\Xp;}n{k.J?ߋN T9nwzJ|=#9{tn"oٳazomh::p;K+ffo<".]b Pob|e_aÆ,/QmT[]f /!tH^ 5G޹[(T5tއ@SE/̌y֬ac2 }϶:0kr/Ufn?7Ly0 w^pW~~;蛖5qeSnqf̂5&׳sw'r#{ /WyB%&S\ˍgbUö,>hFwk[vBw0vǰߏCJ7eݾj= :Squ̲ ?{&CxbU}wO7~ߵѯ+^XLf]KjbZrZiiI8JX1Ʈߓ>R[62;x(ˢ ;TU ֝Qk?Z:coOZ{CCmM*;i<晁8'h0!ֹqB:R߀Wv)Wc̭6DfnoPkG0iYY rȍZYs 3,~ZzZY)e1夂Z7y]kc-׸ GnYܰ師OW3|pBp3s"TϢ+4++Hjy_MǫϙZ7Y; aSK88cblgy&|YńсgSMz}϶BV}gYtjAѡJ(D;CQc=oƫF \X\Kw/7' Q$&>/$o?p}^~jԎ諭l+۹e!sw+KYxZ[vC57f,X\}!ёGXTTTobbRuW4:u,x,N[S /:c~ #-OyGo15^S&,}²%mXb(7wX:,"-&2GىG2GEܛ!'G=|B%@ݻwm|-_ӼۀֲlaԘ{b-i]wW{mU>_i^CyN/*UO쿩.Fe%A=}'y-i&XU)7OxP_.I&b_'~k.qS&:dnPDv4ҬEoL@],\ڵ  .&:IyYպ]K](W]Ħk[r2j^uQ%*H QqߡjJIDbzqdw%eIn|w%I0N?6M}QCOӥȾRŸ˭^ofpTSvB|m!暹;y9=?CWoh5R+M "7uEriu)&͍xI a^wjfOFV$ϋ !굫Ӯf Q±kiv&ҏ2+sM{sz*_Jͭg[ MG`>'L^͸+Sj$?HiG:ҏtdQㆊO)e)e'Wo6OQb=eܷr%9_8A~_}I UZ!MԒ桱+|& ɕ Ic0j|kLټ')B."u5 >Yʭas1B1o=èڲ갳y~6盘HIIPQQyH|[Mܼ|9_)^r>z0hɟ_7ĘYd6owϘ#C~7z!ifx.n_3>>72=¹roZ'U19hЉ[T4哀?j,՞j iۄe 5i^1˓/,PVm5o%G !4Tyr3z늂k|R؂~ .yo_Ox2ȹ{'JgMJ 2_1U(urzQjr+Iӵ_%NӂOORyҮI3[][}&k1ٵNm2X1Tz8caez;7LVr/z`a'M. BY?b^ŕlص8ϋc'vH"1fvv)NUqryp!½Op_A'iݵy85=EFډ֟-|:-kAUM~Ŵm--8ʼnn=WD2kDPO*YutdnĮTSOrTΕq[yŧݽ qxNW{Q)329`d6~-x||ZdEyZKGۊ-Zg,cc곒Cle.ڶ,,Vۿf7t GR`\-nqȻ{ianjX{u.9T;?.DwGT-9#cGOo٪6{'{3 bˌ_3*6S`cG-q/~˩X#jmLĘx?0;Y*ߢ]Ƿ;b̷̜݊.jYшp~_Wj嗿E0gw =# {gD3Gn>v4,O>-}ѡdsв:)dҤhefV|vKqau.Lݭh;=hZ Kը’pQm[ *ApQ_1ۡiu뭦<݌m% (m?v0Ϻ)g;ݗfvtCR&#')J2WVI_ٹ3Gι;Z:Ϝ1c#sCϜ~k!$ ef)DGJ뜕F;{Ojajn/D4W'aھբٯ5*+kP1(굡>{3czkx}k]ɹ5v#֗;w@˱iVpyL+ m9kg/VNT,hzȧӓ-9{E<}"EJ)[~׀Or̴D^a!)f%Q,\z:5&J\t(ׇ2!$i}%b T:P+XĸE WJU]%?Ϟ8Ys:թ{x_'fytC՜iT~wԂ~XrEWz5U{zM#zbG|ޞkOwI$֥ohJd] _`UǐI3 2~ߴB^K trӜ.u[Iſ\9w،^T&+djxϕ[V*K>ϩg8sE{x)Jd7 >g7Mucktͧ FM\4cb9U[6Ƿ ykUPך{WC e[1a0m@굶X)^6"3fgҸaK&x>aDG>V梢|VR)֧݈7Zthhh-[&(6jmc,^Vr-P\fZ|s5f-Xlh.Fd{'g2ȍYWPk&L87/MX,ljs=Rhnš@QZ"%2XzeSK0XM.o*ŗgYYflKKݹKSYrPzk\לU^ήW(eW[S#4ospG_]i%O|?yb1F/ K+{<ݜŖ|Ec-!:Ki8݇-9NenZ]? G 5 SPi˺F8Lff{4 g|bV_OwdH9kQ˃BDJtnE/7=9k I{gZ +lrid@}NlU>5s99M]sU1 R"|<Ʃ;Ov7Z I<6$;aLO]LKL -Asˎ|BFm̞2<~\[)^́dɔZ8=eqNf}?8][}T1տ Oda7{neBff)Z`7bKfY{3Ycn2{\΄Y*dWw,Y=?W={.9 tw/OQTT^PP #-9v,ZOO _tt|~/c hQ7Dtۑ3:\{IܥT{Ϝ]YbOmiLFk8ZCUVM&i}R;wy'D{L^lC_(Ogy|@Y5./v|ngyсaLHåq>//9dz/&di9O"7зй%p1A ߩ͗ 脏dk\ y$v{-v5a.ִs#D,,Xq8\#$G[Xu0;}~ n'***:z#Ƅ&ɲ>{nxx3;Rr*dfCiYcM6ꊩߢ'Dzq\i:^JG<)ӫ}) HRQ)><'2Xz~Yab=]P&ӻvD%+/yG YE 0!/~ssqMLwr, ~J۽2]J )Z=o/QShD橖3qCګ)n)d 9ϝR)O+s]bTmbN3꽪+ 'z-*䢪%%$Lm Yy֞UՕK$r~Ȑa!AQs6~<2IOOiӦ _l{SCL ?~WM L`U(٤|^ (:ݪgܩҵFOTg,tsq]5:X#rvڰ+|~[jHkK3ej;4aobMKSvZ | _`f M 70};pmH}n; +"N_HIi|bE/$:qC >|lD Icr 'Hۺwȕ7R[eIKZKS*_š5x^lCbWgu)}L xè>VU"ō`PFMf>֞j3J/6u9!„eG(oWguq"jNR'PXXt !t6G#vSW.u3K-LtSufF#,`#>w&2?~[4]7i/}P*U?nCOߦ[կ.T]7[yH7N%[ffdbkwg% gS?M/mUKoڞTܸrsQԪ͛wFڻ3-8:%˹P:U\ .q+<7|kԧ?U8v.αw&H9m0O0'-'nx|BA,LZ1Y|4gXOG;PcOk1sנM&6wX`p&_Ps!XöNޟvv?CtL'U=NwL`eAԶo=ѷxH\c #4ffܙX}ᒅ GG`xPu$pR)GcyRr:?tŒ߾g:=l`w eT PJ{Ϡ UեYgcל xxЯ~uu%s̀].VOc/ZLompaL!^kXmD Uߓ]}6g{&osn'~?l_45܈qK;jR/cs1!3Ѿ/R^9X,666~nHOOO|.A)뉉9fEd)M4[X#*M[9%0@:<ۙz?{\΄Yxmi\e"!X <y;bqΡ:Ā1`bx=bLKc[)͝Q04,oU11W,&޲B»7#+#ҟPbƅ#w م?:@ ] `RIrEm<^PȞ< œj<S扝+1F=}=+Jew \QY??YiD-ǠmQ¬ &a1 a;TY%55 [0U "6p4IP*LUdZHBI\LF*UqatT*xR} X(O(Iںy?(inZ_Y{w%eb1Y%)/#q)ёֺ R!8h*b[X&#b# > &+yrZCUZZ}%+ ݕ3;x㜑EfFy=|Rj&bx=$v-U7}U%WnDӮO73nNlv8がmkP{=Ui]JdnS VrV7w w1ӼnQ]f sVݾ/tCN8>`z b m8~ +Kq[Oߕ1Nߕ݃`V@5-8"$-8bAF} w~{,74#zc#[^-vq?o[Sbs/0tX:X&ӑ^u& PI :K{EԆXB-ɷ;κqeƦLc*ndV-U7: CJRujj$ *]>>R-UfC7I:AuPCɠ+wr1J'~^_&zdgER:+ X 暍 v6Ԕ,=nz 5 jQsPz~sFp egR)ҫM[FLѡ5NuٓOKx8 $%mACEЖDEޚᔑ+oi<; ?714wk܎]eޏ]7I(1M8q-)H{UgbUk+,M.hЋ%UdV#&tЖN=!_JUQTePT= [ NQB ^fs#0{ZR֧Qml%UkxIəS7m\],ϦKOJ1 1vrzdgO7sрQUn(Qm b1!tP-yֶw ׇZm4EUoo:"MRk[7/{>][T*H7N$sݾBπvk'[Wn{.Tt󁬅> J%w¢@㒘~*wۊu^,4$᝽ET"˦:Lo2I"BՉ) HS]{-:&+mqF<~u27z@QOM}0 y.^Y5{)(#sGxxVoEбo)#5fd5Wvץ|WOqA p>(cyC ^RnyM3\bqnTTBHu\, ?Ssy"ܦE%Z=RQr3%%e2UMx5/JrVؽ} ))N6U9 FE{ݿ1lqMm x "p\wkK#>mCAdӮz;g]=#qH&9qcGHQ9YM8Yd9v:=Œ|1v ’/Xuu%!+q5"QX:`ч)=3관S +}GMc;u$2F,DbδۚCԋߚq#%c?̽99:|5L*2Op4vk1B*/L'x9(SEFք[Es8nO)=}S)4Jk%,ĉ<-".oصo'$Q - G|nmW&gTgm2uF6oo]W6=ň*:-m[$U;Wo(N N]ͧn]t_-:y "eԕi>kc_ “27 %iE__SnhirYVEsyRN( )YBOKOщ&T Lº_`2䨣*ǎw7EBׁ HHLF?LOnmT**P!u1Y2=YhHg\+vWl@ k6kˍ;+iSu~hOf.~]tu53>u t:߹zǭZ; ۔jT;FgV#O佨S:ZT=?YWHi¼z< ;AZke<~>TzSI?w f/~6e,1i!Y+E˺8;qV$a,R]G[Cbuy=f=fsHzDjSވtns0N摊';-&;UkjG$W- _C\B4:(5)hoYN35)hh#!X 7zu@ ¹D AVIo:%ٞ~o & u}଑ yFDAdy$\.~z4b_`&!ҌsܙYGtLYݑ<+zSz UzRZPMM;SB_RQz 1`{,RQ4&ѨZL?aj̘>B/']=%0.u ny?,ˊ e')%)erXlllܚ˴\:$Ч9@ÿ1'&O>^YL M!Le*^lBci%TegЩr"kکTsnB]C Չ*7_jHWVK+7~=ip3SLP} zѱlj@k?>wg:tLMZs"XB{L=[AqaR%Sx7aܕi/Sq*[&[\8)B{n`dx;gְ?)/Eg5ҜR{V{OVEx19qpԭiH1!] KNbbT^kҎ^ OҬ_/U1 Rw2YroERB~TEHiugUŸ?O\}JyHҔµR}Rau NlU5s|>h̢X}F9,"siײia W}PwBzߤ>!Ş(0XAwe1B&mjFuYV-;H(ɗբܜI2| @GDH4Ii R>S|0:IKzBӿ鮪K4~$S*wEZ^=V]+č5yqVR-ׯߴ=Rqeuyy^7QE5:/Z*3oJʓV_m"NUXJ{TuFu \X~/=>wrt$x.ku|?E[ur51G!磨2u+>Y^Ѯ>PL^ImXH1!^1)f^+Γj F(vŢlYǿ1 U!nٜ͂6>D8GےTk_ ]GSUwLBwrm%?<τ/=!8JAKW ǻ>H;)QF>7ՔiY<31=y&:oVt;!Uu7>Tꄂ{C&OhDQYJհS]!6$eωa4#>^IbSg@G5E_o5OY!Unޯ+yE^f%.^4 91ni m-Mv:7NIEMЀܿE6s?=kJ Q7>&VM4X<:nABmt A__sfiq&_ ܼ=C F˷v߀=N""Q usFUg^n7aϚy-m&'˩ r'3E~*,!v3k:Yj3sreSz Ʀ&ԇĸ#@5TcK1_HL8Z=%egKp[S*²W >5+lYڦ[b=b=G/O-VWf>\Tu]OR܈s_:&;i͉;$!tb>dYȗ^_UiL:^`%ԮȾGs,H{zFm_9 DCԸB}C-+,K/w|-:4=ʹ}'=nl_uºɔ껬HPvN͖6;gvyMj,s%fMQwyťKUVXm^GgAVg:hk~N̚iⰸ%:z|x-[곞!{Wn+#&.U.)UDWǔ)i(ǻF,춝G/}kŒFePԣ=HQmɆWm&٫+W. pwֲ{,7cB{.Z,KKR"/BLG=FkH)Ygoj%!B.!NЗvgGȁw+xϯ,i1@띙F5Jŷ;S{]`f\/+ǢuU\o@hӰ :cV40 ks.HKK@nWkߗV'K3o=JkOQL2>_Yݜ2yީ?K\ 1D]Df^֤ۛ]o߱N7NaZg"Bkb M|1Y}Ui:x]չvI\s'iDHR+[^yfqs#s#7&e_ׄ U\>nzw [d9ɶήŀ3gU@#gvsXNw9lYM7\=[EܜFNj+/z pwtsqMXgG3 UǥyN[=.ho?uH8{ѻ[ŒG-]ި(/7r8nUjX͍-Uw<.=&rRɓij6rHYNVMFY5$ԩ<; c94nM5;FrE!_{9,_g!Ys͙rt .&d+7?_{r nJfʋO ʥY{Ӹ` qKv ,XFV,)rm=þիqvwYÖ<Y$ *#.˧zz|v#K /=$q NDη</'LرeqsT|{K?x!k<jW[~܁۩˄=EwFl%_\]`nOϱe;B^C}McAɸ877{]MRg,3~G_|roRedŪvLz |S FO JH\p b%FLwW=q"ET@v6Lr2Wis8҅KguG$I#3ŜDZpK+v9s5DSY)sYUB {vXvLV(fu}~{9Ϫ4;:ykpy6#8s#oW^-M޺z4\{Kn?9KS.!vVMSɰ fAaye,lt%X5Օf\3M ,> ݚU|,iS+.c(^WVWYpWGWʪwM\IqojIۙ ˚Bn|\'p/ gjZOdc̍lxo瞃NFJ^i?ռ ݜɺ HN[[a^c=i/'Ag GXڹ^:Cu,[ sϘC:t̲ l;r]w#d,,r'麺d9:SAFx} RP*S=e'i.b1fR-?0B9 /;}?'bvW]L=|x<"xD"&  v9=n[H1;dpd`1@V3utU.|`1 X b A@a7a{g@aɕ:F ѣr%)d/KXo`ϧMDgHm ,L3S ,1(U-ƚM:!iLH1EV|Z)~Uj[>$_Yl1~i}k"sqgZDZ!U ؕro?=!4G8,x!I$J"M_n":]`n\wBw=7 Mqކe7E)D&s*'c+-4{WZXQ]Uڊ.7TժݦpBudhF3Fb7FAdJB8f,=Cl?yulWaw3~$7U53&}ebqr#B=|yy3~z[zqKA:3ѹ,xO_ԫ>$?y"v R}Nt[~s/T V];YA F>{2Jvl`tIuX"lQڏ0^CΜ%2Ns8HCJFO>ʫPb& EyJWC*akJBՑLfޣGDvZ,&DxP\&o8? xόV?A?tY"stFJe8Qe*) q \_!nIr"gD rofq E+,jdʝ#.3Ue"LVc4E4̕uʞOJKʺfVsz:N7u8l( e];(;q_l:B<YRT AI% a\:d޾t ԚbF#X J1Y q|+dQMYl:gşMgݖa1`rʟ,WhWj WvJϺAo]wxrX,666d[X, UG6tuu1i}?BA**HE9B &`M.a0ў>t8"&DCJ!.' **G,WH*d1&>$ :b}. u *X˥ UO݂,U)ۭ;bx)L&РJR *0M9خ.5c{%H,S岰1-"fB;sOkRu o{/qzw!R /brgnXA5XBD(z%?/X"b\݊;%x'PevΎL4oMZ}׳Y:" -<3"Y5{k/8]3:R7% Y3³pbV'qX!'yԅV{8|qccREcQ^^`0b`~h̗ҍh/fm5C"̭wUxN]][f%ݻgeeǢܼ_Q7Aь68b@;7ItOuo?Lq܆/܆7=뵫Fg1ϕ&RThO @8>3Dx `NwA#yg}٦&40Y Ogy̬_?< >`6h ]l~Z)6L+b ,D& Vj_ |{v%Ja?D}R. X #0EVZcӕpJtq@]072GCFFNz<=dd,#{̓.|[h=,=AL_%DA/֩-HL)z,!ٿ.|oә35M 븅r{8+E{1}zs!塷xz/trj5p1CYUOqs羢 >09%;%0F [Dtk]_|%=!~3oJ rњ5vأ<rn7s>R/RHqRWd2UBr))O2t! -HZWJaDxrm4I;fncTIS[o!HrS[s?piem+}v{_.X@\@2C$=Z~9Na$_wW 6{n"︬ui)>u٫\8p=QpQ [܃!XV]^F,m^E#돶DUAORI#Q_%ǂ%'( w"ֽh}U62PZm}w Л-7wWٯP?w|۱CjU#_\`2qBBLmt8`GG<>4A)$~ R`mɺpkw}݆9CABZ]qTJuFvL=C0`ߑLd/ӿ^T) *03{V^-'{8z1&Cg`(ti3].IKi̅-^%7},Ic5(4c{(H{A.BLI"-cY97)ɒVye9mm]Uږ笺cGԌfy˻a{;T[3,Oj"Ͱ[A3&'0W۹ kM壍ϯT ޢaM 9Q]b<[kM Vop-&gNTq9UV`ǦQq59LXx-e]\h<7 Ha $?8~nc4մk4_v@w],uZmGGWsBgiTby,3.4D ;ɼ =x`z! &&jThYqٶ؅MO tvvLM*~Vgvm=w`۶MX 2-h-/Y,B,zvĬIGquUk)8ҽP Z'nL[Zb)-ݮ5Y&wC1^[WVw~sR>a m~ݠhZ;Q5qsR)*C[\l]ĖKu#{H}sn^L̅;=`ͥ0ʜ 'ª3soqjum^|!ׄh jZverBs][C/9Xx*@o^z~ QUWM`ZQ.4J}jNF3Npd h-ap`j; ?pc&6* 5 ʴp9B2 &a B􂚫Y{57vhMXP=` LßL0"X ui}6ќlTE.4ʪѝ<4euU=K*9՝,^V ;a $;śf0S?BfO[Ty9kN}wB.v?ju#!ړ4uieiά,AUQ\ڲVTUqw&dayέQ |iAƆ9?CX[M79]OI{0VNn^Q"YClZSHĊ[.0Tk5עUe {rڀvFdb֠m3Q2|ٌ+\z3Ck4vaJp-zL% ?:b,mT^{!.:GHZ0 7W XNXa/_=`Ie| hhtHȼL;[Lzd_fjEw")ҜD5Y ilj.JJm4sX#ry}]HJ9wA&>GŕFV/J'K^\pќx~R]δsܽ-sKk>8WĤuq.R~5?E%7Oɮ48R&(z8d|oh7H[L+6C},l!݄hh2>AhGឪԎs|6e35<63p嘦;&# >a'P>C39(&{m/k֮dSɎ7en0_>IJ״wR;:i ƥ) ~.tC&#M-@ rf8||1RW7m͠-\\X,ԤIE gU/˱grxKA6S,xBfk$UO[Qe1ЅUqvT$Rz~705(D&}ffh΁)Q%85OrcD\W<9ƯKyFEbzjm{XGW\6̉v89O?6:9g*I_t^TYvCgN% [Bm^>\#!%}ÏC,MĐuXpfJzL "d|@֭2µx&=}|oǰcVT{ᴨ Yc~Siw DόVx*>LFRikkeU*Ӿʤn)t{ ( (ᒳmg˯hq ,[yS߁=$n} z@ޏ`(ܳZ%o p3_66:h%shrl?/5];nxBpI"?PψnH!-4 |pHЃO2|י/Кpb<CXҧtϯ^-NQBYXy'@_taR%2 =D*8&b_o6)ѣ߲=S.勔hs7HV}Ƽ^޸ )Jl_=賞.LbX"$´CuC2A9Z |SZiwlw`IS__W"'O钇Kӂi*?V!6OrQY|$5 wz(2[ȶHMˣmsʻ&Q:(nkH ;CrN8y 0ax v ѯp颇آ=pR-0HVrXNȉݒ / 74 w$y eM 0risŠgvXڐEhndNqV7qIQރo1/={HTVIwŠ֟L ؒAYA|釭x?zJM*pzV\'޺hLf^wN`04]z)?2u}N7{Ҽϒrw{ľl&.ϟ[y<7d1saM#S[peLc|gVxb({˂m*n׫Gg%7'M-<"1:]q^)=dp~EyK'qAʍx`|zk|tm%Ol^uYfI~ᓩ['H:wö?BեAiόVx*>LFRikkeU*ڿ}x@ID@!>  GwC&b ,b ,b ,b ,hqt:x"-0Y ,b =;O/R/ f߈: R}]~X ށq|g0b&݃?$-fۢ7>4G11mx0Pe]a=qzF<L ԗlU`yGꮟ#D]ʜ8u̐QW/3wv?/Obϟ9і*^]z`J Az~MIaC"O1xh\YP~5;kY7/'$nf|["#xaPK+qp2w6NKUe:u|{TLfuӆz 'pz Q('oȬl_hqwT)N?\Y.M>}C]0<|r2R@F52/_CsIB7(Anc $9սcy  AӗE eiq+2ʴcm(#gA u{Μiz\X-<7 >0) )%ے}B uj5p1CYUOqsv$ ;%0F ?\wu*$х /R˦YU@֖'"\y̭ $jim֍9I*B\'z[][WdmĻ[sldgdvˆ֩Odž*JYM> oF?fbM 6\:ug.uucG EWKO3o'r`AZUw{9H}p~qubM?v Mo^Qt,1$t?uSt2 kVΰ|Mj )S.BmE-=Ev_'0o_BD~DV(vml7sׅv+dp~!" $%ma\1z sK{oĨn%.qu+r6w!*_E/.d0ONOKoYP kQzЪΟRSA&u z~1֡St#* %5 W;]q!HY9^tń` Lc(~ r OΈ]\(!lnrʄ5_f~(Z(~S=JU6o؇AF$DX]Ad =~ZNȳ*ke?: ČVTtݵ7 w=Xf p`v\r<% c5)9ݢAzQf7;c2)\Rp 5eP_fLN`L 5ZTq9:MjXg](>5 "S4ƱUdX+Ǽ2לIˮ*mTsV]ʱjF3iyxiDYnK w|lm. _ӏE`TN]wam{Xt7OVDu_*wHTm=ӓW* EgK[ՂVHc2a;:nb;*<%6g;ڠqxewU]Uquu"Kgۭk?i-԰ +՚ϙ]?:~z} 3ŮIWhF\,ԽOcv;n&[~Xc(՞Ot0&EI.]d'/T KSD6\'&uNi  V'%v,43"-oȕˤڗ4b زW< ǚn]>[pqCFBKK%l.KuSٗBN,gmB7*[La I]ג&5ZW%), Y&m Շ_Y^6^d{]ixOBgM%YwQϘM^1\[֋ӂ s:LIeU辞i*MZ'BgpjN]wa5z7.4Q^{2<[!o@.prujDq%=xbimRWpg$}u EmWƋ'J'ȋRx.Tak\aI-uirZFkoC5tvZkve}Bc??}|TJ9w4!#ܼnJ:"2ѮLl5T (BՀ7$tФӦgmS!f}bA ܧQ&\tFtZ?2v%;7z0wOvӛ._._+\2[CpB4:6'x|%)sb^NhV /Zdנ fL~d{tucC5x4T=yHMrcl'zp9(v+7bY9*jp}JAfbB rf8||LH]ݴyb6zpCOsabP 7'EX gU/޻X3~@#uCtḱNW ]E'S7,EEq]lp R'jEXKop Cn},rKy֬G1^Re}Onꢉub4*+&cG<Ϲmə_qr;|ΙJx+d8eb}@w ŇPs[OGw)X 'R;{܈5~䚵3X^߹_uɺ5B@FV٤繏o`;Ҥ E]LׅJ]&zfwSha766*J[[(RuU nAW[?!5ڋIdth5?li 9/:#ԥR}'S~#>0}%{bwB,IdEoK($YņXΩĀr~AdIU4}H=b Nﻕ7|4o`i ԥ5)Oo"N>¸M,Plvr,oS|zSyy9033Qg1ZE6RZJJJJY.߉K4Qn4bru}/_ہz1S\p={ `4+"NRHv~Rjuy$SDbX(JX^.r_|zOIXfU˒q>+% )yݿgD |FœkmxpDta껱vR:&Dzqpbz}Z/d1<6_sl^)9M)G9fz`3M]tQniNC_f0n.&л0YJdC _^fp}ۃvZO*Ut|DGd[4}C4V9yvή$}(Z][M ֜3tZ~´]d0vآf ɑ Ur\=gh šX ?Ptz>л莣^L_5O}CiDbw幤dg4ܘ8SDQz!ٛff],<*e457GnNrQ[{5fu@YJet"?OyX>u{@ui1<Cn}xDP^^`0pz{3s}{y3蓩m2݁{}?&d~C @cÚ)rmzx̖xV"]FqBKSnX1괵 h=S.)ѣ՗䃝lIT}^ІM=ϗ_7139QTʊN?q[tB^~/;|d|f1Rm#D]]z`J%'cmÑX7-&ZTzܡB{SX\wڋG=crok2=Ι8z5LiӧV4vo yyV#w` G"V͞hu#/\@>ӧT./eCäԝ1͡_l}iȌ|שt6=5|dx2k4&U/;0DYOޣDwKCJSr%'_i*Sv{һ)f:pYEšq|;cĆ_zakw5KUH>ߤRG^Fbj=3v;Zt4G0JUThN'yp(3 333M,L&`&@?zNG#ށ} ,L&`pJB#u}a)x@ID@!SW&@0Y 'n=|ĮOIUr}:mK_, U9tK#n"`'zI7gT A7)MQd 8o@ᦛ: Qu+{׶he8ôƺù~܏m^t%dq "52ѶU Z'*C?ES[jR7EljG)sFZuŕ[.zx&.$i=\`9t5\(!j ~Fk=8zL,66s e#d߿YjuS-^Tes=W>OX)_=w˿yܢ)?N+}/xu۝|Vd[jo>)+;;.i孼~)7cΏZ|;9@'=#uyX_O\B|^L*If]&4q:3>uL<۟FzpU?W yĿ[I^cK?ii "Vf޿)FӸ9YYb2AD@vx՜{]=1Y+n0!oig~O|QȌ+h.sWpMQϩ/uTz[HI]m?yRԵ8OYC]ަ3gj|m5q OU;[izڂޜ[^tj5p1CYUOy}?qQ3ٙ-1J`ɟxHy?~fKd쏾xKzbe3f|s VDY~pB_5nbw^rs ￾|/Nsy+{S?Sߜ]CmeURuXپF?xqxQJ%_wpl0f#e:_RlD><\*W뫤8rgZ^q\U)d wThQD zU;Qu[v?G7|⻲{hRI#ͭ[]Al\W/{~8%RѶssqKW6=O.r%tq9Qd 5պsVm]~cza?՚}e4*L'c4\*a)0)eBэ!>s4*JvGs $ *Zz4!bfbE9aR¨L1~ی_쑺|v֥שof>sI#QpQ[ [܃!XV]DF;>S=庵%;WQgi.Kv_6Y,V$M4ʋ7ǨFV(nͩ8GvGd-?frps;Na$|$U$]Fe[>5͜"-!UE)t TɄCD]_>-!W1 RQdB#Pq u 5!7ax'NQ($8]Żô?"&Dj"ycQB?oaLi;ҬP[RSmО!xX rT"e"{A.S#ZG{o}~יz,lݪ9/՞b^S" gh]g[ߵr_f֗ۺ7G!dK b쳕mϥ:UJ9sfG_~<@Nߢ?[XC1 ӎzW̜bxD gB_#Ҭ8t 9%J&Pr-¨t) qmްSwI Ns̖_ּ,;(iJh%ߖϧ+e>},[q2]Y6ta~Ƌc Bkd CV^L*x|)K:F͡H"j1joۅtٙ7r AFts\ME%WFY-؜)r 'w9inqPAr3E te Vɮj߯5ٶ2qa$j [E$5KE[}>f3}iQyTb gt -C<) ((JlWִ9w/_EpU*Ndׁj?M==v2_J[+r\{mGۯ}I?se((M_#y3z`OLy\d(!o^,'ʮSq"u7 W -ֿTTJuFvLԿ {C=疰wt̽k]JӓMPs09xrkWWn[p?RC˓53gr~hyo/Ĺ̅[ݚ\Rnsa$jbwpd .KtnHs3,6kcar\]CxbPx.FLݕyN5*5sL/#۝D3H a{Q:=!6P OpbMX vynЌ״w9e:R•c>AzEСzj0+2bBg^5Ԟ^\@j.϶;1l ^=]p]%gۭԫ~!lmWC2sPE6aipvĞQmpu"gY)**#. ڷ=F'SG1O;ãci|¦Vז|5e\s#??G[RAfi;Y0шRYY-"DjJ?n!ͯMk' ׶&zv[*Eec,^(Պsz=#i;H2y.F9--MY֮k؂)7OVDu_*wHԲqO Ӣ,B? Y&{mq50|)Bo5l0lއk!Bo^z~ QUWM`Z'CcN]bJ;Ô>v ^ZKd@(u Gv[QE }L,ԽOcv;n&[~Xc(՞Ot0& ݿ|FM'<`l~hkvR=dKWR\fDZ.oDF.\4dUܝ6v8! Yy+F[֋ӂ s:#IkD-S[{5fuNu+ֆ~:(- wvmEٺ#m;kӳޜzz(FܓXɟbiY\0۰ M-:!.( u/.Oۈ{Mq\bVmU\n²E4dnJWtԱ?m۶Xgਤuc1d׼UaԵK|}9M5=~{ڪ+_7V=#sg(Ͳ9)2t=(Beavpzu*8=h;W aa|4>NjC1bzaoTӶ]9/,@iDnGc;#~TN̫ p8tGm>&r&gTWGuURzgZ5ڻx)W*Cx5T9[9vbHᆪ0d[kMtI 5r´8ӟ7Njt5U wTȊ3f*}?v_8.C^t2f}ӏTTsg,3j;5;ÝO/U* c JݦekuXlE>z e w &l|gDc9-ZdD @쓦ȓ6 Xm=^C;CzԢp1vU_ݻoFၴ;Q}7JJJlllNSqkL{Mk_6ʗ%H}6.WEN%s.7on}omZ6G'!Ybywz.Pyzv#J[7 {ul;O*$TUsIf2[tezsɌRڮ Sti]7;gaaaf,&hF'7H ϣLpB{Ýw-mݓǓ׿%&rvš_idF)aEʫ:dZM%׆ u߬Zvg׹WN%wqz9~6tfxv'_~:g2fȵ@pz>k'c'#[ѧ'{ksJX= ɏ"L%-ΛUf*@KǚhVV]mWOqF.:QȾ3tZqal.]ב _qa{ʯ-fcΎ5Po\kP8t98Z%hi3w\N]{xICFڵ!-=y߯bz֐Xp_3*W>Һe(М)'mBVtѦp_u #OPxߠ!iwnA]NWovr)~w}I> ;Ri=\poypoC^^gh,Cfqh+W mo{z?\l5b4 /bQ0h ̞]zwg> \'ү7(w׌ j2mJoJ^>ԥA3]'{)Ɲ?ڵ>~ߍ$7۾>ќ#nI_mc_ߝ&G.}uG5X: u;6B//~7S'}ܣ'ߏz/Zcޜ*+L]-ҋ'n?^{tǞ̅|z\DBϊ.K1U݅Za$ďzߤ!֖4m^/$C.>?0? .ʗo+gwuX{PF JЬ )="R\q.Tk8y >fo--5x Lp6:aus ƴ;2e(hFg:M4A:!]W3Dsq9r/}ˍC%eAFsl{M= ]ۿIZgn/f{I=Ƹ|dK)jZb G;:| W]<9AWmj|̷eü&[_/U}0E;mI/C]KyF}_ 2! ii/;="?"bۛJ?TC ;yc_͡-9ۘKkֈyzzw(~ٳ{ȹ<ޮ/М&gẂKK-l[shY|]v8TSR6-]:2w[\.)G].5FK.e'o5"1/)*$Ӕ8ImL׮ܞlЄ ?ep[s?]{ow?C{A,t[ۙ K]+K }4v\+_i_r|=; S:|[j4?_tysCkH<ůwwDIL#,tyBb_IcFO(n.Eͩe(~ݹ/G8 {%NBtwy5$x~{Ǘ&tm@ ⡣yEޓ\{o+mjg\Jڔjr:]b3ʾc q-.û/؛yAeʖ6:^ؐ{<ĺ0Csc&?՛[phf,.?ɣ4WJ.eP%W[Ev>?+x1⑯OӾcMrt>[!XA^ox%3OaY{2{SUM0{/ Y-9 ~.#^Zq&X6*JN~!Z=mc olҘzDŽ]6~ܧ*J :hocŃm̍^<@3KACb?)dؔNTM;8٭T*mypoC^^ghm&~d/sr -9Cp=;vV=)\7D>(hX@@ XNcZV@MA b X /_fOpyӖjwt=i43R*`p{l\'4O_5~~3 ,'>H[9x,Zɕ[L /R7-^IYəF3ۗla*~㌌UGHߚC2}2fΖn>.a\hȺon+dT@+Gbu\.]+8F9,r*)Q~M7M~yV]'4^e+{PE[-7Qn>DuݛSwBK:FvI V*}ƤWL*Q7-2be# T!ʅjq,*@qpYq~7̌RDJ)s>0vtj~C5enL}XLmly>~^J:2pMM-O6 W(2 }%F)Ee |esfa.ŜuMQ{qw2vjcVYة_8a/BnWX_&v]TJ>}i\G9['?p?s[1`=WM)_YW-*EWR-,xwh%1hfu10:\!gpRg||zU˂!"[F$?Veof߄M50mrmmWce'aښ ~X5cQBj@U)>2B|G|uvq>ܚO ߂!Oتj/w//YbiVKn܄3w?t89|֎,cމmv*n^Cٶ9چL˝ t6 46=:u"|2Wv\~HT럜Law'Up!_=rQξ%;DRr2c3J 48^GU=wUW|"B6CqӽGTvSyMC/NZͩ%[OzۋG]=wfǪ;׍>k;=VCO8ugizXCGHEW] a& Ԩ&v,+l%S}ԩ5}ة] e,]^h[`8/+wKBHK{F[_ >W?[ó3Eqo;<9Ny>)%]/,esjTw.ФV {V=:wQ}n+6_G ?tVx==go:\g~ڹg56Y=NzHwM\>3^y!Ǝǟt3aw'\Zm嶪'+ZJXoTz.Uro-'Ln[y, s U%m?*TTq + -V[xVVҪ [ [{F Zv̲YޑC]:Wo[@:Ytᗅ(]_BtؾV}`Lχ/5Tݡ=߭=VVn?pO:#BWTxp*}ܺ,j}f;TLWp XIĪ|h_ۛ4j܂B!C6e|јO$4|YcTQɧP=\Pm^9{͋͘B>mzMRC;z}볳sl=*7 %o<>YʰPݹ@-~!fm(8[SoW׏9Wo{OML!9fyɯ#+=R]mjbr|;T,Cdf^aHPAU 7 U7>.gKž۫YH,\,.I'a"Mc^x\c (۸5~ff)aʵk5g'm1&=fmYKg՟d~;r#,`8|KԐ 4g8qOX㢴5^}sQFzdi:7񽧦aaweI[Է/!ZyW/d `P??;[nSZ֎%W*msYG]w'Vg{>3ew,xwΔI]-*\$ #r2ًSM4)aߌ-9_ΙJo7^ַzR1UՌQ5]l~ӻ 149vW0y7di ge^c )Q2xQ|ܵ%*'q\E)^t2f}ӏTTsg,3j;qpUo!/Oe~}oIL.4kC>.n_Sg||zU˂!"K~X^6ŒoRf縱6Lѥ:όT1KUޜO@=,>?Xܷq]{6ښ1.},6(X[qipP\顅"4^C;6}k;{ S̷{ 猟]>}9@I,*S9{a+sU)Ii+Ï>^xme٪y.;bB/v2}ည䮙F%>a%,5io۰_nLה QVEmJduU)} ͘Y{ضr# HlwԈaZXH _a/ 5$QQV7,z^7LKؼ<رho3Bd>&14;̹É8#v؟o԰i3"|ИW9Z4m?UdЈ̮n=FVxǸZ'S)޾ xmE3;5z)WP3WVlul%9F;j02,D5[WxUlX+F+暶OXw,?gmZ7TSٿ_GT$w2^Njמo@Z}ɑ /G6/WoK{hשjwTB.jK?o-cV) PFՐ7hIFϧe(&O߯oYYپiDDŽ.e0 YS&ãI:v0[^49әN zk+<{O0N+NϽs[nϦzVQZ>qtqkE.V'gKiq [~qy?̓X1Yoܔ*=7+=㧩&:9:%l3W=2gME7-m\[Xצ}R0l\ˏ XyTDśǗi}[~vrf͜OGZf(l_Q8f'> |'z|!EֿV,W]w~9S3PZZɧkϝc_ 077wn&%ؗ|7JJJlllNc[;Tz+@'4,,, iԺ Eg{ݟ^[ܹ {b(5Xlqÿ?>RwC ZZֆ뮟.T1ZZpw)'XriZZg6ʮ],;緯Q3z:…u a`1@,3R)@yuaf1`1`1@,pA1Ojaf1`1NãVRsQzwQꃌ"r M~e+#R F-CaǍH}Yъc7"O[a돵\)ɳ-i}^JsLcŎXUNDqbē#<]ںף`).&1s< 鄰_!}oT/3j5"Xܡz!$7Zb*-8 L2ms{̘n=j™{v0NrǙj5m&~<ߜMC }ݓ/tԔWZx?Y˗ Q7 ?`~t =s6tsc^ O^ki,gBC\ƽ=kՂXq!ӊ.Է HQUoНܽv^a]zԹ{g+ma~~E6ĕYtTn+zN3MCu,ϔGK m۸:RlpQ[bںjDi"ѾFv=TPr5=Zn1l`ekT VVQ3$@5Xܡ~O6XwjO7޻ޣY8:t&.鷴4%T+_g#bfWϫ?'EV;'f)22^K$V'_.K_ϊY.(c\fP2}Fq rV֏YJ^8mþK 3C;N|!߾_3 CzGsWJ>b۫Bi-WB(?cÊVC4_]XChT(ÆL4ug c488)]>r|AS>Tqr׺4X/nA]NWWyuȴ=IAr }wzA4cp|R)h^yyyfff 4jY|O箃|YsTH1=3k)|ou[Q7-K T!bvR?jWNѡ#d3nGWӍ3 ZZ360hFe;;e/(\&v${ڿ;[ W(.O+>2.JȺRQ8O92ӸɌ 6d+. AI4*ūzq- wQL:Yn>s6|[I%W܄y*{e K׫T[׿*ʹoJZ1QIW8x@,F3ӟOߩRK/:Vugir8d/%팓MܰicG38ug S'0%ݽo[+p\bhVau, *"{߫Lʮ3>UXS2|)+9sp7nkUTai/I4$wҌ;> PgvVVU{V= &''x,Hȫa=wog&s|~Mb+!s 4jNI&.bN|{]XqĖe˓y߻(/?xN\g;J ?,^&w,ڽ .=m~>n1Ri+[b:7:mT1jۜczNN%rv8}|'c|91Xt BkS lԫ,tnh;~n/z/|afŸfKeee%%%666wP``1YXX1@ӨcB nma |qMp3w&pu$o}5͎qSTƕ3՜hΙFhb X `1@,3hI3#510:\!gxh9j9R,q+jcg$ %>g'|&iߪ3o)rLI"3R-=cVk+11v!;8:0eU^W[ QFfh!b M)1s\Xu@ͥOS< *XҥU.Zm8Z6?3 BÖ>X9cqg) cy/:OV6,]=ˣRgdla[L;M>}aة]LGf': ˥!6nc5Qvc Rw6ʇpg/:׶((oz$ K^] Ks6|1Y"FkL:՜/c-vufc XhZn7cup*Д] ۊ-ʪ-ahx[r[U0͚p?_7;Hio%`qz?mUsf+sm<]@D!Ǒbq,&h73"HD2"7(\R;˄Unኮ fg]dBFL'lY$$ٮouY,1Hq%sqaeB WX{i#\åM=A m܆{z:uBU0{`yg ]:s)^\~1bٴiP)si&x=kkRQYz&Չ_ΙK*?#R~VvpZ^U}fȳ]NoR缎v}Ҹ6+9|i3eym0亸:nۙmOuu(hkw)qw)֎鎔Njͨe(Μ,U垕݈f9kq\T aF[o "]#!Pgas\䞨HZRTG%T]t?lY猅ClJ{Q!v5mҶ\XRᖒ:.`0ͧ`qK#޼lK8*ikG@]{񡎕mԨܪ&G'K4uaׅś(/_xCj-ަrT6o+J|.CS 3M1i]-\z&-\=\_!gk>OVzeý|<5$[=N◴55`ӹN;{lij:gs!yak33n.uRK?qO/+;\}H/zs] G3I%5=|z%y[z i՞AI߾JH/Lq*\zIQzrW|uy?L8YcRzE<'+3ΞjTTm1+ F;JDyRC׬Ңc;m1Tqˣ{3 ?'} ',F Pm$72cPS\M`1Yјb>T-`I ʽR\l1ZB*'~„F0xПO 4bƷ&!XsAͩL}fb3+y6wY;OIb,Fs|~qw)os1oR8QF% TzNјEΌTlKO 6N^|zW2c̍+Ò L T!ʈQB{Uysc+ D&emQ޾:x cgO#p,Ftzuu; )%sK#ɚrv&?=oV֕s"+gC +T3 ⲌQ܄yC{U$f+ߨR}rxAxR.Nު t<['$(U 3#M1B4݄̐x{4R~1uq{m{sb1 k2uP9zԂάw>1`xќiMeaXnߴ1cdzG7>~Ez_iށ=7DŔgG2+}p U SuĴ"LN M-!tA=4$B}8$0(f͸2'⣘}KG WtϞ3oc喺u9[Z\5~l{ó 4>4wUk84~PSSS[jW6knuZjꀖ_z6sW[x+@yVl۷cI~Zrj ]pT8~5Ԝ626 9叭yK&_\WeogrȨJWs-&e] +'Z6ꆜե̿zꈢyWN^2 '>hZ~I٥<p=_Vp'}z:dȐ#8qu{V3856.yyCGtKII1$Vss  soz뜙8=+SndH478Yi4윌zPYw  LC= b1A,  bX @b1A, !bbbbX @;6pBwO  bX @b1A,  bX @ub 5?1f$'7")S5G-K1"CO{Ãn}XLVݖoO ϛ5/[NjhO]>{u #顣v|#i(HM۷ًR_E#HRZϬo:p֚Ғ螕hMIi֮muU7_YNjE9+;G*+#˞ym.wƚ-qU *'ڴ^9q8'gO֋RBiego/ziY^}OP4if?QdC|KÒOfMTޢlXL)!NRwwe}$3KRƎ(s9-i;{gGCHMKkڴ1p\3g1oN|eGQO!%-f]Dz2%tNvJg=|rႌp<[/<'ٵoj؎yBr%BU[5N-7N]vCA?w:`capZ5]/kzr+]?wƅ״t.o]R̬Ӷ;Kb1 ѲKbSH=fWO}fWF 'xsOrׄH|;/-yhjX|ua$ʙƞp\ꗕ=(Ik^y4wtt2mkk{}'-Jriٹc?lmaڂ+3ޝ??)))~H&%% ,&!bݥ89o5plx`2*%b"5kn0b|х7>p%c!9̜/N+:=LCgi(LC@™z  bX @b1A,  bX @\C;.%% œw mmmx-6,@,@,  bX @b1A,  [tDk'F"1fl1bzEO5Ǘښ1uC=J,7h_}MIb1Alg @"a=cHQ~^Ǔ5%5[ 5XLo{a~Qb1B7HZL˛<>/^+bba$)Wнic][ n[huidֲ;&F*CbҘ#Oo,#+955^a'XZ2tU7.?lQY'*JΚ߹Ug-Xzs*$#md1 9SS8᎚XHYckf^)W:{EcdjZZӦ3^^wٵW_NҼg~ ]0t'w ̓$5W6w-\҉9ͬnְ|5%7秿f^RU>pAFMSO۹sgvA{Q:zMUe7ZPRZ{;@$(Mf-^;ivy$pϞ>4)szG9O-7N]vܑI!}WfxxgK;ޢ/+3:1  a͇c5GR6tt/ZyΆ̬ӶBڈ3^yVVFKȩzwҿ0|΅-!oθ>/"֔^[p쯔8DzvB"C8xAE4U+ ~q{Ǟ]= WgTF~}ʊ]z9KsBˆeK$kF_4Ce7;ސT_y}ٲ yEgOYLeegd)wdez{HIմ>;cu+V_򵢜G?U{ѹC;XZ~rjNZV/b1Mo6m:&G[v#&G+-T^dš!32-{Zp@.vXL;:nAމyyףU,g_sÛO?D_kػsm/*d]z ݶ!=͌5b1WܽPyTVί=}ž%^~a<9甆tfuCK׹[jQǢ!쨫{JJM?+c]SwlufԜsjze% .;#m=Z}7 1 J_hhmm2dD'Ox',?4($Xss  P鑲K !9g_rnꞙS/+1ny i)/zG߼;sƟjx [_;owϟ=XWa^>|PBﵵ?^SzΕ3>yBF3.[?ur'}_Kgtn?7]tiX~yќO#p%i:߿=OF^ۥ7.<[ Me/=Vv矿X>.{W̜sQdߑ'ߙ}ӧܽ/z={R{\cQ]Կ4dtÇ}XnZ'>R'K=zM7 赇:ȯ/!t5ܿ=ϯNK[]Vb_fsмc|]Al9qA1}Сa~7ύy7UxX"?+?0M[S>nkO/q_ߵ쓶ly&h]9¶sXoU|e+*.vb|sKkkzas,3/ ݿi>\ۻ]-dEmS?-[6?𾝟4{ 53:}ry]r '8oUH} F|憟x7_m-+E_xK+-ik/]luW|v߫^ʣxm}W-[\pJwwo}g^8-a~wzUŗK9~o_£׮>3Ǧu+_}I_*4^9ݟp۪wE?յ<+{>?񉏞9[^3V. '_6l7}%h޲7'\~ֆI|K|׶l?zk}G>O-m{?am~♝OSNa?'z[~}[y_k.W>rNX mvP8~a+OWÿK'Oq4?pN:PIY֬5'vA|'k9Z?:{.5c/l-iWg?0yg{"ÀA|oL+Ϝ9Wgwk_u{?/?=?:g[à3O'F T??_~oÔ5IENDB`screenshot-8.png000066600000251527152141651160007616 0ustar00PNG  IHDRd>;tEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp rOIDATxxU߆lz'@]ޅC 4*OQJ B'@hfvp]@N=2Of挪yr̐&!d H!d Hrq@UJ*ɫOKKKJJ 7ny ]\\6mڬYVZqÇ;v,000""͛?.e\rΝ{]JeLxxSΝ;'IOSRR233ee \]]+VPKoܸsΰ0v$ 6m^jӦ gddl۶… GGǧzۻ[n2+W `W@2,:t0jԨjժ]֮]{رbYsfשS'vڂ dXԪU?lڴ /Y7**ط>\ΝndJZ[bŋJtsvvvA))tHǬY<==O:5mڴk׮ڦU6~x//ׯ'7odPtmvvvgϞ>}zI*E6痐УG޸qʕ+"Hgذacƌy7qܹ{vСgϞjɓ%HaҤI |C/׷aÆ}R$_wuӦM~Z. "ؼysʕ{Qz]v )Stwڴieukgg׫WU 7x^ؼy_]6СCDݻwWTAAA1HIѣ=駟6ڻwW޽oݺuevOG}^~eOOOϟ믿.d>4SS߾}@zΰAC ,w/?n޽+W(h4iұcƍ JjʪM6<TΟ?_Rd".Rr?bٲeK.MHHПo_K/X:d{'N5}N ֮ߨD\|F?~z앙^|Yo0W֫ollן˶o*+?)3x{w:|sbb5kd*/0,߷[owhRSRݳ`j.y5GVTy䛣4m& ~}G޷Rsg̞5SEK^B~ӭ\T* eg|@5-ImRiOfJOd ͍-Z[UN?ƚUg<;mnJyuN- GYV&Tg,O6U;s\zsF{u̞742iLRcgJ?u”KS]S묿矚|FvV5]\ޟ\E(;IV_Jje/L ☙x}d޶*.a)kv̳g;Vwt\˻GEFԑ|k׮p IRѣ LRԨY?^FFFƉAS&})#GF=,,-޽+uYog)^Y+FFF~8h@|||A߅B~4횘 ]={FRے=*aR~R?쳝;w3cƌ+W3f޼yZE i۶STTIHHPRMg}sg]&o.)WjjּŸS&qG\rvvyFY %ؾM&Mm[ߧ9{e'Nګw֖fSH[6oF;nƌiǎ)Jnu >4K>99B?_ JS>gj;Ii'쬑e<}ZA[ˏ,OZC.e5L߷p--6(3Hjgbl. 'iO# _iq;2J?/gԩYf,]~H~)?xݻw===?3zѯ.Jt<|s5);s)anݧN€~x7oݔb—~mΝ;jԨ)c:vԸqG H ~:^$32[h$ç{m */?/I2|Q>mckaXz}C^,YREF)~B__ߕ+W>S ((_VkW^ tݣ>ٳfAk47B?"U"#ӌ!66CEykkk[j[O<+A.^`_䴯x}ɰ0ٳEtĈqqqE gϖw)HE:R)AV^}9@ d4[[t$%3s^~E9|hrڡ jijذÇۧ֕T_xV|YubA {Tg}1FSȴɕ윞kJ_T]\Qir$.!1Suoݺ)iSfPVte=}gN7nTzyy .gΜ(YcXJW:88l޼2kLةdxaOPr=lozk6mN8^y{\xH-[>T^S&]V[`Ett5ɰ@-ZzDFE? @“aIt w9{UJ#Pe˖ zkCI5^wV=t5i6mԩSE_I{:ݍ*|JnK,%U̫/sv$1jRJuKHI>A#F7nrtIVbߐM6mӦM>}L*- UߖR~ Te8TrEׯ[;|zzy=S%''F<\a(;Μ>ݲe+1͛@rh^ţrޣѴ2rֶ}>{"##jxb˗7IkJ>>|x r9eDDĊ+SP霦+|M%I!  XEV /HV/]hgˑ ˁ]y*U=bhh(G!!$O{n^K6oXv!fee%!q&~g_X}}rh>{7Ghm&tQmhbڟ\+ޚelʹn}FBoSf;X522ߖr/qI&&&o(1Eq}!@{/_Nr.w|s޽{ԑt^ݘݻvvP^}%֭֯Աמm/tvQe GtDP} -lۻ㧟_G?Ҹ]n/k{=^zpppQ[^9'eOV[|j=qC}ů:n9?~{7o|&i-Zظqczr6l^*FCooo @i{j7FO[o+ʤ{rHukSGxcҔO899~5er!˻~eԯo۪{\IxGu߾wr҇'g}s<2} 8U:/F]=Ĥ}opuecUF}<+mirDfn1@%#qԨyϛَ4wШ .fOK7(ūS] %Ohadn7)ٙv9n[w(e @+JKK}]]+Mz

            ml6[r?|73 #Ns} Ҫu x۵sǼ\w߫Z3;;[S'OLHHԹˋ/lie%{~ߔENɀÇ_z3](ᶐBAF!!f̘ϞEi<]vf͚3gNѻ1>d.]zW2K۶mu]'qa8-=T̈́՜җ픍XA}ǟ|,hϘ彵O… 헥pÇV=_>boQǏy =\)s9Wܾ}%E[n ׯ_o,HkQfij=%aaa >d -.Zyz2dimm-WZFeѣG:~.%*,zwA u~-Z۴~M #SiC ?ͥӬ~I ayo (w]^ ׵_-[̙ /,k׮=yBshd}niGIvZfT*TX\~]EjՔ8߭~~^*^חM!EU}h%ɔUH6z.+_VxCի6[Y$RDAU̘1Cȕ&e442`2X nt>쫯Zj5:tCs$ԜLhnTEGəYE-R)GGLJn+++%(蚖0%?ÕXˁΒjN%[*AExI=XY e=R%(ɪcǎYReG7 &ƒ Fi%ʊ |"Ca$JSUN6)La+]oEdΝÇر#88XVekk[^nݺ5mΝ;&M:qD! lU#~崀>XyZS.[VϤ=D4%SWX+J QuyL$)SH S)wRǫWYRlNXّtAWP2~J<,o%J#{D} 155ׂ}L0Vo)<u>d8MHן+zٔJHS"|;&{icD\aLݻ%(Wxc7VVVJ=zhIVW.<1s5JjlT0Wm7XG3d HţjJ9֊UFFFUTX~{ŋo޼ś0٨9坡g$xglK.13О4+z]yׯ_ϛt$c2SxeQaok2%?/( /u5f,z[[[t hdX_LLL 05jL8vڋ*o,P33zٳw_~e߾}'MTP_5S7U9mtE̥n{hIfowJN7|/wU )ׇ~Б#G$>Mz7%梻^WrZ1~|ѹK_](F7Sj-dg=咐PEz!IO-[t҂LOO?O?_f͘1cۗ;JD$kl en7bjJ+-%¼JV =/22Rr-7o^:pyŰc}r}8pQF}Eɓ3f|27t%<>⺋mYǻ I98)]u3$+;Acn[Cٳg{nI,luN{sBl]k,nʕ+*X:BsMR<{l1v?c='T/(ԼcAɴVta@ULИYptOl&]dr |BL6MѣYWN:U9wULuO9%?X`~冓x_^="wqY\{nmOg!J87nr+}u?^9Jf4hМ9sKZ{U=(aL>\7'?( gA?wrT~y'O5;ǝ*i ⩩={,dZj^v~=j%z;f-,|΍7ZZZ*'@K|rvRZ5IJr](9PN}-\9'))IL=DQ!!\K$[̑'02ҳ jJ wAٖ~ oSVxfZ/|KUPKN6MrA)v;C999އ3f(!bT*wzo:RBfP=#o^Q3W2իWߌ.}*Wd\EVzd_ُ>Hr F I>f$kŋKugϞ=+ Y|rM(5-F6ˀ4%R?XF|$P֔9C'~ᇇw ={86uV[[֭[?IJfƆD&fAjjܹR-['x|9C6]4CÆ u͚5ŸQIFFFjzeӳ 7uQWsJ/h:%]'qg\j[:qD۶ms;y򤇇Ǟ={}#" 5yO4;R H؇ y-Zw&͞=;55+;;XR4M``௿*oMҬ·eTE\Ff<}'Ӥ Ju؁<J:k֬qssk׮]FFFT#-߿?,,_~@iӦ|PV^ رcǂ PbDZRxѣG{ Ҹqu̙c{)VO#77RdRRiΝϟ?5 /ЧO~ߟ]{uƍǢTjժ7o0ɰh4L*Ֆ-[s]OGለ/R_I )E ۷g͚dX"WޫWʕ+3&LXk׮?}ɰIRݻj#/ܹsmF,@2, i=z4&&VZ[͚5.\߲ 'NܼyGOHH8w#)g͚eaa1a___v$Ruʕm۶5o\򡼞={6..Զ^Z3g믿zPP=pF6l Xb%>h ^dɂ 3 Zj}M6UҚoTTTo矗X(Ás a@2,C:t0jԨjժh0]vcNJe͚5ׯ_Ndڵk ,سg;aմiӗ^zM62m6nݺݺu3551\re@@cr]tիW*U1N:{ldd ǧdff$KK *4l駟X76nܸcǎ0v$]%5mڴYf[+R>vX```DD=O2rڪO,5ԍ1l–]w.4&6fEDEߊS Z4q|[N٩i󗔗̮⒙?x,Xmi7?3<"VXj}IKcVNsOl[[ۆ ֩Sfl:?+ѿ-W%ϸv#o vjt9O͛7WRĘ&0.)u6r$CS*)HO͛ *&%''߿umԨ2رcW^[lYjU oN<֥KZ}ȑ˗/gff[hkk۪U+ | (4fTFFy'wީ$C< $YYYIҫW^I;vر۷Kt|(㝜ԩ#9PRjhsطo_333%@޹sG按155(ϝ;׵kW׮]C 1xүVqjwNIVk) R$>}zÆ ?<<<--I&ׯ/SIժU4Xvde wAf)ضm[gggyOG7y$ 6h@IHHS@ٔm::ĭx zt2Nؾ4 Ql5cJcc1= o =ڹsgXln6kkky'1ꔷ/suuUNDws 946VN$ePJ=m:2ozF-=c`dI0.'/Gc۶mfOϞ=[6>>~UV=I 埙\/޽{O^wΝs޾[}U6( [~\ 5bĈk׮9 JMpp%YZZVViӦ.]>|xݺujZafdd-$..]ںUVV #^z{q"S@{ (WF*eMJɜp8Ӭ':믿K/)cWL<7K_{ٳgoݺU{u@{xx•+W*R-[H,\~]7\nʿ.m۶GήO>NةS\#+Tзo_[hٲeCIcZ#s^HeHwg 9ZG2,_T*%>{{2^l333]%ժUbҥʘM6\2LII WT]O<:$S=zPGYfMHHHFFF͚5 ]ߤo:tht"ݻw=zC_~d(% /ݻ#ϟСD_")ڵkO8аaC_iݻeAݘcǎiӦÇ/z?.qqq۷;ᥕke˖ޞ;wn^H%MUPAיX &>}Zy{Ѻu$.ꞁk} رcQF)Jh̩D|Sr"\wߓ)P%YFM6sܹsoݺe=7{С6mڰ$G隖.L4@0 ssӧ~ӕE% JݿuS}||]pɺ^uɶQF_xᅨ(]f[v'|\Sgj###p!VD֬nݺXXX+V{ >N۶m{Z2WdaVB $'Y``3g 6lܸnݻw*7oެYnRXXQ...~)iLR/{!x W`/@x8pOSN[$to8{|Eܫޱc[5jTB_իPЃ Sjqqq34lNꫯ\.Qjܹa\j۷oܸQuҥcǎwޕ:nذ?۷o/[!ӧυ re9!G2[K.GbŊ\c"""tpϦ;W\뉂d$dI\\~2̹֭p|yJG K6lؠ?UV%ҲqƹMHHy-//KOJKK5d΂¡Od7Yf6mzjFFdwooA}/_~zzz~wΞ=<f͚%߿DuEFFJ1~^zկ_ԩӧOKVTkժղeKid333@xI դʈ_"(H@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $CØ&x,֬Y*VtyddTޥ~emx͛t333+hofN3v2gyzǺ>o|o9[hÕG-ZqkΝ;mZf3gΤ{/eZޱc---ԩçʻ];;YLOHH\3vxytaA9d4~FRR#m ;111%wRJb*KVSu .8q]6&&&.^ IOOoذAjn镑9oNHSRRIvzv.կo_Iq/^FDDi`€睜<\Fڵkfff6hPZjaaannnM7Rlei%ƍҼvvr q#0𸵍l.>>g\v&vz@S*߶;j555={ZhG-VTxꩧd@ۻW_O?wSZ52N<tDNQi4ؒE* #Zv2W@wScoVRӳj*Zlѥs'3k 5kڸQ 6%$$\w[J0{QFFr0O Nh,7Ч2v!D9Uhݾm9*{7Sԩ NNjLJJ(1ͭnR֭Ǝmll\R&n;t(X}uZmoo'<\ήT5kԐPIm۴h4&M~=}*TPʫWvbƘƍ݋=#j2-$T,_t @m:=RIKs`VapeXO}/o[ki؋L+:ߦ4;(Q+VaC_RC_);u669]Ťh'`G[w@8|PgŽGUݰaߦ6[ !v=D[$ffܸ>h|PVҢE:ujM6l@U=[ syMLL*|gaaѫOll]ظ#G>}WtmaiagϿ l@{!k>g}3bİU^re322 ߐdÇf+Tp?gP>q瑯& Y֧Sily2C߶Is7,5KOO9qFz.VFaڄ5GL:xĦcYVt5ɢa&v:&^4>(9h~eѣ$qu䭛KFammmggw-wwweC%2} Js-w7me~wyK;aiiiȫWD*Uӿ~$϶kRl⤩aaa׮_SvA[ v<_gn][h>fA%g砼=&nФG-S+Pf$M?RJ,*n3(ob5Ym7Nܵ/b´iyP:Hcbcwo]AF9tҥ(d) }.55 /iI۶PDFFIdml\VK O>sDUDf d)ɇMM URY{ !qȀ{wS3ݐrR'MҾU2:!1gLVVW^*.\W[e1h/DGGߺu;11Aޮ_gee3kw(GN>=ˉ&o s,nddt|JOTxsΝ:hl7nUCbcc rz@=hooAA2 [myy=?u/_۸s.^LOO333emȄ/'{EDD:::K._"ΟS"X{U'Ow$ 7mԔA2, ^ï}kutMv];dTn2|k=Uf5~CoWr% x5zf}CC/\ް/>>'I̵1cFoxX`PI]>>z._2ߥ֭`7WJ2TTvwV1A={5n(W2 |% ਁ'mwJvvv5kϜ9w-77>ݚ4i,LLL7miӦs}d#W^烫yz*ɰjժ}6nӦ-.HuppݻO<(T %Zj'zĶOɁ#GKq׆\^٦ժo*Q49 0*㚛Ȅ;Y`Tmy7zrZի43VaH7^9v]] (BBB\]]KF@dgg_r~Ə_uHJJrtt,x2nF~iUf]wi[>~5鉻$lݝk,bdmluVxDi&.NʊdeIh4PgǮڠe 2۵Tť_t:aθ~q7Z5}2+&&F}<"#66~ߨH=}>gH[%+6^->cټ^v64qYjLی ^RϜOx%U1|Jq~oN;w1]zFi.d\͹?;9EםFlRtlW{Gvq\y\M (I%d$C@2 $C@2 $C@2 $C@2 $C@2 $C@28)7Ja9ʿwi@[vm eiS-l[(ʽܰ$$q;>dmٖ-K-"|('N<~zyg村^G3 !d½f475fegtٟ5k.cSSSJ)(>t(qqq w\))P;mmmCS.WXh(2{&/Fc@@J\?4CBN&''rrZx:p@˗CN㜀x8::0?-CC111ZzTAqIIHHȸ,Ę( ͐B!~n76alv\YYYG=w#  '55)&iBrLn 4qqyyyӍL6uuu_P7+q2uD$:44oiٴyiiiZgٌ`֯;FFF)GBQ*UAAADD")H";'҂`(]rrzz8}xxyF$[zCD;j#|N:VT456vDksēR=ktQ:dA)))ii)sUӃKC~||<^TܪUғ2]]]5UBBv76RU@guDq JDڗZhC}=@IvvtK3$B!g?+**`5؀wARY9)իWC FGGakQ؏2*jƍKKKG{[[ D!];w"1F1+s6Wl6цh<jQ33#nB 999AAAV珏CZdAZ d X__?:ѣ\5 !IJ2DiK@$#9>.,,Ĺ(+("6\.QjNdjokDacXPkr#6Twtt\ (+, և:*..FTx@ANA]|!=Ű?7c, B!(IhĠYSĀLxV5bESj=ccc" 4CaK!3L011q``@00=${k-=bddBh!|NNLCQtL nNn˷QtH9GINNMn*g:6GacbL{ ]0YC)K]!QHZFx n4:< N޷PP(!x.>2] \3|zzzn緿mccM7ݴe˖"M&EBB{[1 !BM+VJ<ͼu킋T*fР;A@i5'$,4b34Q988=-ȑܼt̜CY`}& ~#- 얼qEa&= 8yoT*᱐Բ|Ecc4ϻh&4CrqbD/җ:! !r.%(**uww߷r_ˏtޞ9s#NZٌ4qqsG¸:322f=UT\,NGkT*.KL#C:|pXh( :C! D ~w9凁~ztJz'dž򉝩Q]T% 1N`r`/ +Z"_#Gӻzj|&gc 咒>gyF>-=٭Z SOQ577@qy8 '*--6CxBvInA+6L,Ew=457=Z[~%I!L&f:hC &5]Ѐq\8g?E0›%t:v[z1]%ZGL@na-"=5of1oY"Q4,Y,M֒\ĵ#396 !=D%r- [,b|). wrIEޞk` W;}!ccִs Y0lmmFq%[jaZ?55h6bC&{zz v· r~UC(gzOVɩ}]yӃ_}}]/ -⡇r-|lٲuVEEEw35vttǫT* '/_}Ֆun N||M|n.pc2 0C|OjikCS>(00Vɓdeg7c{mEŬH]b|XJJKahV,wAHygNnnKs3"yEU"ܼ<9Q1oʨݮo@&XWwvv#|r0:1D^8%-=hCݻ.E8`mx<,J=`@M,ѱPϹfCKOtWƨe~Wt<} ?!!>$(qqq]w:Q(p# 0{AHBˍśq675I>p` pp?3o={.K/T!MK!!C_?kANNf(/h0]+ǶS!<7P;=3(G||ܚ5,B!+7kg,L$jCO'XfhlܴI~YA;%كe-x:ZS# >ʫ |,Ŋ|AHg2A6lܨF~O .X|ΧOQ7鹧-|Q4B͗D)5>*w*O=\| !vb-[a~l6 7 Fb\q7MZGYZJB?66vE3}yO9. dߦ_.oed۳z_:td||"%%ytZG{?jbb"55kƷbzj?l޼j~;!|*o|wGFdO^6ۈF{%~Uo _\X "rB%x;)kD#-:&qF1HLLꪮ^z5KBo~뿎=;򏻆v;DN"ꪫp}r· w?(em,7CB_|W_}_Y;k [}?33R_׿(,in?o )?RLLLzzؘgm֜.nVz!r4FON Jr?#3S!?S+0 _ kjj{, >EEEb_Wؙdx%:thΝ}}}hdd~\FGGC49L\{&$ee妣Gᇛ7o_ W]Y[l|'VT*{RzzL0Ú̵kظqݾ}5"G=99?mڴ~׮=7|5V(ϩoB9 @ìYY壠Zwt3:88!1qR+3 >w}ke֮]~AAmmm{{W/|Ajgq:"(([oݱc"A7I Y&VPREɽ!L|2[|bJwW/SRtOO000xHáC?Ue2!a<Ѓp9'fxlRRRo{sssY;Z>:kW%䗾 I/o>o<[$_)OA;/nkx<Oe+uA!B 3$dYhbCCCL~yOoo_bb’ccvR1/{zLbjbb|gg+B! 9mnذ0w .uÇ'&&={Cvk0Psjg>3=6R|GFFvѣM BI@G\\~ן`))_K*.Nsu۱億.PaaW^oX,ñ[̜^.6*J/AJmJ!spyBxڊ yVv]piTWM/ŤRFEedd !g ###˝F___l!g)555 |!WRWIIIFYhdijjXŊ `(OG{;lP%077W;99i2z{z֭_9x<|w$rY/xB!丈m].bg⃿9QH󜵷GGG)SL}}:N.nsI"߀AAA8j f0{no,**B---ᐐ]rXy@yʊGH=BZ i!A(GBh:&&&;;j!$ fZX###ɢ[ f^}}}ڰq#FG:;W^6h6C m퍊Zvpԣ ͪU ~~!]^QQ0$ܴy3…QBɅ4߶ XBVa24hjXܼ<",554xAaJVChx6))F=Ϗn{p|b".w=Q!w1%%e_d+-˄LĈEU~Q9,+3$@!d^6(¯d՚+Mz<4 Jrа0N722wޣG 1z yUޱ1kN,,bRRT]UKFP_d(͐!!BY656:$Da\\\^sB#cMoh^^^F2OET5k +**7vww߷X iXnb2NSz5|B!$ʞZ<7=,1"T!=+###|B0g%7W gTB|{}f #39o5r/;% Y+vrr %<쐜tԱq'..<0Rg]rrr^p8nwww7mit:cwnGHlY<.bbbDO&f c?6A̐0i)|z 0>50YV8"!!bTU4BRF{)bL5쌝1Cq!Ԕ*:\L":&%;GŪNxTT\l0zވ̬,t\-mmAM^vB4NMM&i~A%8\鞐7͓, B9^BCC˷pstO9Jt$XB!̅QB!B͐B!B͐B!B͐B!B͐B!B͐B!B͐B!B͐B!B͐B!B͐B!B͐B!B͐B!BȹC0B!n9-T*!!", B9^Z-mSB͐3[ v{vvvDDKBӃ !!^!!'`JJ B^ʢ !!g0BB9A9|BB!BB!B4V(!B!ܤ?pKK2 Gq\ccc^{޽{׬Y'b;::~H!BN f >.->ի5C;v}3!B! _T?7tO?ۻ}W^y0䫮***'x<iiis܄juWWWUU͛gx (UVV^verf.]vMMMl۶ yQ-^3LOyy֭[qB!>g(A{챎|app0t.,,L!u?`esW?r)))ׯ{8 'KKK , ^l6Dư9AaIII~3<ú[>|__XB!d>i^}>_p\joMJ`ƍf83ˊ "bJ(_7߼k|Txx%[n8voTdB. 34 0w}^|6l)=[n e2:;;_eQB!Ơ6H?yV;]dׯ߿?鮸 ߑ]wu0@heee`'}ʗ_~h4݉AAABl?"d%-KRRB!B3<_WiwQQQZRRB|ɀk.2;o׮]/BHHx~ߏ]tEk֬9|0"=K~\PL]#Ʉ;j54G󄄄[ʝPw$`_җ@!MPjmmz7t{} !AtOLL.k*Hhjj*'7WӝKW;7ly͐L㖨x?ãG żC3ml6h!6*k۷9qt8Svw_7Oh4f@OOO~xSO=q7xWUC=|eaBYMMh`#0(("<\88XnETw1::*DGG&5>>(Ts K:sξYe~//~4---袋z-XBn\bNNp5ktvv$ !,Ԍ 4GFF`2hȭ34`hj_XVL4LNM†C'+Ҳrď^o't:/ѱTi6t3b ц(g#,,,33S|qKB-~4矿~XTT?裏 oePPЭ WlooOOO뮻~oƐ+믿HƍY_W\!3bLV*.BYO`@@_lVbf899٪[ M\\^^ @-Mdi$M{Zv钓;W4?l킅b Jl ,Ut4}XfL6˵gHrrx$$t8axRav;E~Јkkj`w==))cccݎʒ$h!VT456,l@Y.d?Bl6ac@@dBKrb|m @WW$ "Vzj``U=(xnkku`PmmmhFL|B‘Ç]R# Pz^귧Wj5!αQd5%5UL1;PqbcGGQAPz䜟h22oY>=BK,&Ǿ{$۷o73[$__y|[p+\мO~ 5B@wSC}2* ԡ4bq,?x><݀qP8diD+F0b'NtVBF1###**J,>2S`yyyQ}OMjTkԁ9雷B&6yQ(Yl޲%OL3B~rO% dK'333++KwX,BN%p4OP``~A\I!=<] h+((B%:` S+##DBCŌ i(MpH{ ` pBl0 ΤJ%:'Ðd^$RǾKC}e{ttݰPd>99Y7؀,-R\XXNIMkOHlϽRD,FJ ?zNת׻DvrbbUQ8}rrj 7~ F<&Ic@EE;/?,D 6M. _F3$$5N͐B!&4,,??_TZXXs NvQvuvjSSS8D$aaa c00 22R쏊;푑"q\}&ڊ V7!KVB!@`thؘ؏=b;QۗxAa! @ 0 -dt==)))؆R\cOOZ"Ä, B!L&ӔXP5$CDB I;| 900VZ5olZ< D<ˢb5!4CB!2CCCz}Iiy!P̴cFhZS}ȑ#1aEC 3q^OP/ 9hRB!ժy8c잱A7xQET#C )IJ:rll /t^Դ45!4CB!2?#v2 E UEE>n︢jA͖0GDh3x<$Nl c4YMx8B!,GӍl LNIIzOfVVKKKuUT-...Q]BT sZG$1juvv6Ϊ9p{srs[јʊ&D3ɢ///eM!3^|mcv-ÇCRB$`0,I !BBvb[<8N$䌀fH!r:1!AV=jmm&%%BA%D'm#x3ϰHy X&gQB͐Y v;|%HNgOOBĒqr9Zrr9!gMJ 188B-$'(!fH8BNP9 BhB!BhB!BhB!Bh~nUU ƳwރI;oߎ=CCC| B!Bhgvg] evzY\B!3wywbb"))+,--W^yꪨ'|Js=s#T]]]UUU7ouhrrW_Z^{?att>_|fr-{Aҍ7 dB~˷nz$B!,Ώe痕uwwtݏ=XGGGQQGGGpJ\\V6opKUΝ;44`0TuA <ӹ111Hܿ?r۷?DC+++3ϰ !B!}SZZoop466ʔJ$nܸ`0Cьoy%ZZZ|kfѻiyzHꪫ."OMM}NII("*ш.ν7l؀[ns*O1CCC?яd燨oڴ _a!Rv; ӂJ=۷e6abb錈X~qNwW x>FFF555=333xT b#66Vi2u ,-aU~_˨|; !M !43?Oh_+---ЭZRRi4O>$k׮]dwޮ]^xp;tPaae]9DNUW'jɄ;I 5XjOM6`xQ*x?lݺUT /n)!B!p^G2##Cv*** .{=_]W_~}}}OO?",((XZp8g 4+FaÆ4GٲeκzK{Wwğg!B9epSK.$11QۓO>iX^ЬG=///66V"_ ڄ=CwqB )ʫjǎQqЋ/xС#G,4ܹ/&&###ov %~c;%%nxǮ %zznz+_?:B!B3<X$d[n>94ieeeW_}#<fffz]tE ivo4}MsBE/◾%8E\<t_ooocmܸպ>fBM&SzzfMLLLNN?y^h4,=B!r Y4`Ayyy,krVRSS;G}r:7{1Vm6;=?OyN'KtoF7rrr85!d1x<|w$މY^f}֯_TЈ+""BV!BifHgbbt ?|pwymmm؉====e]^z>^w88T]]b$B! >gH箻kvbZW-[|s>QJUYYb$B! >gH !KO>gHY!9CB!B! ͐B!BhB!BhB! }K˒O1 o:~899ɚ"4CB!r6nڹ$&111qzJ{==3W{ʜ'GhB!dX^qp\#""o>w䔔SSQp=CBNpӉ{(BN }}}]]] ^w*  Cɴ2@rDqz_ٽ;"2r͚59O^osS j99"ꪪuluGtn]rhC[[ҊRrkl-H@<n3Gl6\Zϟo55):SD$1p=7rHn``vGFFx t8vIp!'sC9efetvtWj޻gϪU:::+hXNNNTU[ZPCCCWhoFhhBWmِ1mLLLQQQϯxØLd:ظIZyGNߏxk}"9>dn!!N|||OOOJJ B^ʢ8X,UEE@˛h[Vaf\.8 6) zcۋ9Haemh{ 55xs/(gtti^qFD*RZZ*uuv" !B6fdo^piWI8V2d644Yۭ6[Ii)d# OƌFcYy9*p !\ZV5ͨ- OQ8׍ESRNBWH xcc8l(6L` 'Ջ•&jhM2'4CBNʶ_!,4Ѭ_8=3ω>d4 h4h[4cjh  MmCRRFFF""#Eт-`QQQb"'j fg2AKěvKN6 ;u:9!<{1Ys G>O1I?} Fxd~52јpQY?T + || hnj1 hB"juacC3 ?rD*j( !::/i4CBNMC!deKs@?5j@ .&v朜a8/ 9;Kufg` ,gOP`b|Qfs'O?zqG/n7> #_>!`rj2&9{6't֭###ό_Pѱo>^_\T3B!٤vVZfKPk퍉qqMoo/d@LKDx8Z񓓓'N_`ta:;;u:_%b=55'IIIH4\%DDD ԷDTcPOd\EG{ot:x \.Պ "F]B|VX a#6LbB0NĠRs8pB3 X'dJXfMIII ; O &%B9ͅK L,)VYb5y'0UWs*֭/^L̙YY---UU؏>Ə WjokC`YYY؞*IqVb )+/o3Fc@``R_P0+LvN`8TWCS;cV m>" Igff}?iGv ͚YU[P n'"<{f ,7'ޫPdfdXġ'}p^!y1d!Wd'&cYB!|k3rcg2zޱnذḦE=xnwkkkarrR,SjkjU闛z;?p||(Ia_*iB!475c#((("""9%e +Camddx9QHǨ999Zmmk֮]"r:-vj577(cbbNM=ʩ%$$gdpLB3$dŁ3KBYQ/''NjjjFfPDxq`Z333J%<ωzoL(_Scc~CeoEo6!22S__YȸT*acrr{-LD(Q#*47!!+L v{vv6Xr8ΞlP X ?!S_Nkn-[kb|<<"*`ӧypB###jaVVV\\B9z$WWUccCuux3$tcݺY񌍍[Zp-aaaYپL&.ajrR'ֵDZ}!!oy S!37 C׬Eq i nKs3<0((Y Hd RoK(h޽6nS(aE[f萓") 0!ӵ ͐t B)))h" O%J}W]PX,mmxR`M.H5!Lxx86Fl6H,3j/( @CCÚk61 khCCFSRZt[fFxno#G֭_/`Z-t.$$dVli|PphG-!?ubrr $ϡG(m!"hc:P9X*$~RttU ]WTTcCNq8@7wj!!r@)ߟ(B<~ЉԴ4Zh0%86)izOl,6rޘq05Pw=%>/paaNN23?g gddDEE!iii.>2")JbN?_`D!!0$Nr./lmnQ;w++/_*.Bd3PN OEIxi6fKfll3az\B0i$'J?y`c(gH!r"#" 䞺а0_p8i(j`:fy|&%%$&&&KJKrN)^L"WJHlCUvl/  7BwW[7+pRY\R 5_WWvڹ2p6$Mt"QEC!#6۪U|vc!35(B\7%5/jVWUK ͐B!laKWF!>f~-#ݮRf1>;ـ 홝cDFcF# 닋{{{IΆV->.tZ944- Yݞ.mBh6nmmm#ѢgrѤȑ#wرP~sˊB!+ GB9jyPpJv\OPpǦ-p:ӒN7Ԕ܏_cl (%ɿ :g?s@Cc>{h244顤K玆[ Tn:8[(qFf&$r?]6y۱ghhH|VqB!eFv-KOOްHNNtOJp8(-'1R%?ݍvē.kbb`tw d2ju6 9#NGƮ. s8\ #KKKJJB!㪡4\o*Z<8hَw}? mGG($+29hҏٱcw= 6\B!@rrrsz g[2!!!e4T -!GĔvWfVVKKKuU^"~gE߻gOhhhzFcؼ&11CLNI:TW; [~ehH<9QbD,--ݪh%XhHHfFaWsssM[V+OS W^Ա)RjHHLlmmギ@!࢐G a-mmǠX&Xɹ@B?DVZ?0>jj|͛go]v=sW׿C/^Z4F^wu* Do~ffwYUUsF|qg^s5>f/kIܟx≃^z wX|·mr^yTVFF-/-832SWW755|W=}`9Bz/ŗ򭷎6Rϔ|8p*Zx<|w$މ+h;G9rHdddjj*Ѿ {Bhm&׿uhhhڵNۿoXaYY:EBpNx \g͍imm}E?ϻwNIIٲe w//'0?YBh4.a()!'GN/o^s5  '''?Sppdhh/RY3}El| 6`mۮZ1f&[(**ַuĹ. 袋Ç~K!-~zA$tM7ė_~9(BO#MMM/ҽˢ Bqhmmz$!4nvu=0ʅu)agw۟'hW_=7t+,&^;pj033S! WJsLedd(3ҘL&~39-sx!Kn^^J -EԄpppdp{gկOK<X.aD7,[t955%燬^~e??FGGC?__ =z ;CK/?j?///++l6[֬YĶ3ޱo|YnOIII^z)6T*DK.Oo88{͛7#<\QI ~/G袋z-/-~zrX\\\SSz!B!4cs}@,c>B1BtppBW<444/&G=^կ7߯aSV ahhL00b;&&Fr KԉCf7*wi__ dڻw?p!z!B!r&},ʁ?}|FB~rϊG䗳νHBne.2|uߴBBBx-ugrdoyRH^z_XB!䘰ϐe7򞮮%/Y|  ۩b!AggQDZB!B3$- 9w}w˖-Ka|K/}wp>ә"uK/YVVWW']!B!d.b۶mkÑywFFF.-į|+/O>鮹lCeee_>k6o !,^~f;6RNNN` pB1 wG❈>EA!cYT*͐s7XB6% 9GoB B!g"| B!BhB!Bh%t:YdpŽ@!4CB`{zz(d-]:Bi3rBhZokkgiB-RB!4CBl9dB!p4)!B!oJԶnɽw'ӜXBۥ-e)Kgw)a -Iĉk\nMr-ɖeuAHC|hi39Ι3 !B! !B! !B! !B! !Beh4ҲR^oX8`6E}EE]]+Ɔꪪ%iB!dvƽgbRF߿ӎU**++G/,4x%^^^ʑrykkkV-(V/;H͟$NhTt0; 222CBZe\\\Ě{FDD޵ u5~~񁁁vTWkZ뻲SR&Mh4=h[v_'tjX`BI' o<~NhgH!BF#X۽rZmr``;88ࣿ?4.ȇ"Hd'(M&lJP٧z*ϯX4xbX\WWWoo˖- LIH777-tAەjϱ<L~`gH!riYfscC}%+QS4 :)T# WNejT -QTMkK RDqH"@Iq1;2s@I5舌I.[5͐B!ZEWUVi9fA+[4hCh79z웛+"9{<-=5_QQ1o|* $Jru*aWZQ2Xhin3ﵒcbc6|LMKk!!i4遊 Eppff&|\Z"#[8$HPAARMuurr2v: '/5PV8T (H=D6iY*]Ξ3׷&-c 2SRRCe3${{{l.TlE"psSS޼y=ceeeB1lB㴱:t z%q6NZ3vX2 B!Jkkmۤ6@Фh<ĸGD"%#3}|7s]\\~'!V"ӓ Rr+ (E6`,2XD/s H^CCCaP'xvuv}P S FQTghfuevEC]JLy䪮NY111sAN% Dl===bEZa;@ xͺQcc8U1َPšDua,(TdzFCd:ϐB!da;:pe>:OJY(Mbק8ToTqN -ڻKpƫsp B*47C!HAtd29N # ZmV[mFN:jO//!fH!Bh깻6m00!h`h]&̡KqNs8Oddd{[[qq1Gł<$LZF$;w8b舳#SZRiljjOg'FۋbMo횓BB ^\X"ft [9ܲ>l\!䶡 w~`d/{h㎮ӜZƦ"fvs(H!!{q2BsЬw'34qP j:l_Ӄ!!$4t};__۩M-+++w ҡVt:ȕ:I(Pɠ"#{Ph<VVVJﮀ,TW;>dae@˥Aܼ766i(rddI~~~㏢%$ h4Pi1^/z1V0**AɁ'&kBmf@EZ'&k9AbrYzzɒadU}ܢ8UIP2 WDBSrPZzAV__k}4V ܐ%1h"CEF3 4+QcPprlBZCrr8/1 V(P5N 9.%r|ljBNk)+'$$$9%h0@RRS`#:EEppUUkHBC w$,XIJw !!!ahb&19  3+KfOͭW .p)Xj:pBEh/++3QF$*|wrR7fqٺB٧9Y D@}B5(-)nMzP_L/" af"(>iע &ªǎRp(p,C"Ҏ̦F BR:jrLp,hHx !7xK.a=B]$p۵FJB3667+ 9گ:s-?b3444//oɒ%|RB3$B36_{5( |e?` r?|7߄BofO`0_0['!/bSS, JXtjƑVTf=2,H+!P_s gɮ[nZ3 >,3-;;pw$ ,4[,q޵k1H[oE8ϑ !0VS,OzM#*U)r4o89`FEEAlJ6YFaNސZ{nnwKpA*JU[[ [xT#B$$$ $<V#VB~!鱱1^ jll [a֭"-쒙y7C 0=F lڴ !/r /A/_. y^e녫OoхuY88XiΝ;.]h}kJJ rAAOSl!;sؔ;HgTFFz$l㸷b޽{V)y >pOQ8^{M,Lꁔm+ścbfMhSQZRtXr<:=]111| gb@Z"^=\pA``)£9U"΍75@é 3ܷo&]]]XTY8LB¦`>=FLixxy@oҚ^Cqn:d}&%%?vTVV: сb:]x5&:UmCa¸!^xa\\L! %TzzM8(`iG/iGj:f! QmEΓ6N'Ʉ2CH݆Ðf;/)y1444J!}Iތc1'p_o/]<pvs[[Q a;wܱcGCC< 6I#$8>,uM6nᆠ 4R 6~~~UUUjtwvkkk믿sˑ?5bק(ZO^RT=iR7(PqGGov|~4~%no]S6j-[U*Կz47'?*J Qz]jI"E]ls">jw&BiC3 FFFDC*nw/>ErXzzzUT&%'Un4XoX?88Z\|C7q*n8>Z8UM q6–/"J  n9R~!C Әi3z^^=ݑ#JMK**pW  ,} FɄ[6T-{vt͟[3?bja_#<Ǔ(- LUe[AC}}n^mTwo`P"WYkҥH^'ڐpLo5KطRL3"P^fdoE(om-L&335mּ<)~feg#{W8,ukKK2D%pRo 8>͛7gϮZ'>Æ\p"@{1|e"??n_Rv Nff,K&BAVuzH۳>>x׊pa/-]su 'd6c8=::J\'UeW(z:U->^́n` :z#fW:\:I_*|q-HNNO~" ֟?)88.vN58Y;J .mmma(tymݺ 2zjGȦɊ+_L3U~-[3ĀK/txxXRuww#0 \Rma&īQ7p_|x;1//O56Umq!.//\raJJ ('<EwӉ(YD 8.b=8X7oꫯ0C!X@ Bx-!;5 >+;noG2#Ɉ'2޵+2jEzo iS鍗 m'w3D6#󣣣Lusu5[{A3 (eDG0h3x{[lȥ6j ݻm]ǮgR=쉧rCCVmtz#e```:+O6r7q$jZ𩧞r|_߯|cv۸[G̋/xڮimm}~_B!?[ϼ|h#%'';cEKK [hsP۶ U*xN8ҾgDGzKcM1Դ4i b j4555K.}sJKmGxJ&N$ bJa&7N۫6 yyvfV{[[WWW޼y I Iݳٶ[[_lfOuGAJsǎ );!۪Rf> 64770ZB۷644ffc?bNUUUaaaօBN[̬(j)1IO|hpPn8%=,)pÝ`de0B3>d}l0줏QBN!Bi!~}c#B3 F[_ܺKF;h Lpjjj>sX!wtDDիhѤp\f [9B3o* A!b )jꢭ +JVxCdLu^{kKK{[[Xx84&CU!Ouuu⹕ZGh\.j$$Z[꤇ [L&f; hlWW[81hxPшM|DXA4!6­ Zu? CSB{{{Ѫ RB3 ,rĻ'''GŎs~$' ow17 B~SZ AB¤W>ddfКaqq])))z - f̣59T\]V^Ι3!U*l3>!f[$RP(Wb=p† H휜_gMӹTOqx̝ 2'^i:233Q'+IDNKNIFN:XTNMKC*1̍ $ps/SB>93h5U}Ez-Hiii\ll!O1r\_ؽB9NN5Zm@@Bۛz2rT,z Bf >FQ.[,d B!rP(cbJKKfsywB!rw?XQ#'B!BB!BB!BB!BB!BB!BB!BB!BB!B9pgB!>t:+!!Ba۔rѤB!B3$B!B3$B!B3$B!B3$B!B3$B!B3$B!B3$B!B3$B!B3$B!B3$B!B3$B!B3$B!' *UmM 9fyߎ^,ţwSWWCCC !!Bꪪ2ҒF3갺pţ)g}N655O;j=== -Z/;͐B!#\\>pr65-K_o=n|E;3 AAA br8{zzzxx{pgB!zjuKK˰шtDDD|BUWU(ʤd,ݻv˄lE###55}}}X L67WW\~[{{`@@ggؘ;==477FFRSS}||&!Ĭ^CBCm 3A F#ḱ޵kU: J  ◕!pll,5MEyy޼yHtpppxxOKO"775!Q799N~!bkllD)PXHJJJtH=:::ƚ"@jk!9jt!!n|bDN}JkKc~fy؈zyyC Gqm E#ↆJK׎)ҩ;:"##+ļt2MODuuu.8$$33I7A8)v?7464#rC'wg~s328=p6M8T/Nx4CB!2{hj`Shp;HMKl@EE[[[LL8N^rKюC.@V5a/qߝ+O;HOiPޅ3?b1Ғ-Nlg!r2qddd{[[qqqll$C066f .j[˳)rbhX9!YYYhⷶ),ζ=h | }M1UD$i54)G nzFqNH3վ<(T =o#+4OIϱI MTOjoq&Bτ؄}>R>~+p |m=t ӗrd1ͻ#!rUo3#FIMgǎDEp0"b#,NIOz4§#daaammmdO t:777f8߯j6Cmoo_$.?5(vL'Et9L3?N v~>>z~lj {A8f#oAuw7d>SzpRרvu)NsWthtaMk]5}2k7cm7t 6t"bAݡV#oP '!@kk=Z:U]]A EKkٌYBͣ"'yp"6v`^V<餃5 f^B3XÁț7ɾig*P32)9: KT@(# Y{OHHu!JWW[j5R̞3yQ|쒘$ Qkjks ia[wW'd:Sf8+u*:Rݏrķ^r^\t_~Z 0gõ ?;xF_T2ڣӋ1]=%]+_x.[FRi㗶~]rdU M&[ ơECE%͟/*h!{^).)6 ÌG)yfrJJMu5Qq;)*V ᑓ iiiqquMKOw ojloHIM3վi Y٨Y,ryBbC<,_y P;۞BshhѢ%%%&%u>s 3w./ܽ[t [_1b}k*Sn?޵ +GyJ\A( +}>Y߿dXU5A:S{G-XF彷} a!0߿H'v?=x=W,inmWX?z&5\s+,.sոvBăئzPxnqu%HWa!yf;/oB6byAU)99$١Vw$w* ߿???$|9I$9=qBE.x[}-*.FS').(=3ͣ^(T"CoZӋ]&1,MtB!'=Jx\e5B+'uCƇ:_3Ѻ>*X9F%=lz46b6w^u9aB!xW>IVʚ!8 f5Uɚqg7?\Ўwɛ;R=aQ&IPpXI݉,fc[:B!x//={ܹs޽ѹ99BhG<#u;vvowϸhY7~9.N=7wZ5+nxSgg.] NQrd46^{[uw H2cQB!Gnź-Ydҥ/NKK nL188(= (4mL7}gj+~"Lsڹx/{oex3)>_4h|Ϥɉed+)oɬ]ps2  |Ն&|_6Mv⍟t ڱP^97N_tuc?r=Xo" n1XLNõ֏x`TsqsBhZ1 y;sW ]}}lllTѺ律ﴥꕚ16>IeGgF[N]Xt7E<5XSos <xh[~naц\sWjGdMmָ(.>/ =эw3O]qp\~6zy9ɒo^MYPǩJo!B3$lfxRB!9|k!8aZwB!qZ[z=d54,,%%ű?i``ToooeDDLLt{656vwwc7))Iz VW 2hz^#"#mckkkPe~`njj2V___C}y!!B9'$LJX6@OOO1118Qĉ9^^^Pŋ#rxBh~Q~x{a#LKmU]]PZzb;c&-h!!B=;;;GGGRRSLXh &JOOа0`[]m-0..NBPy扭}}KPRycfsKKKB%Ek7MM !N%3bGGMy]m!-rb.=J52<9Ȯ;/FfȈ@@jjx)"t,88U$Ts_Qj %%%EEGKIhzzf32;w̄ĎRrr2e1*䪦n&U]%Kvލn#V: ;1 0--b ǵB!Ns.[ZZRbxarV cYC+Hh^^^a=݇̌}hhFd X߈$^>#t2*`SLVlR I}z0.haoookKKvv6j E./+aDLl,'?? [hr^;D[xqBBBv'EuBNrrs=1^Gbl7EBVFjZIڃlB3$B@ZRG"ÕAt J~ OOO9oooxU32c0---d2ن08_kZ$hܹp*m???ؑ a"xlEbcc!:!BJd#44Z+E닐]_q"vG'%ۨx^(HxWg'TXXXwWՅNZq3Ml\ ;8B!dNpﯟO//.0j}{&ifz:q71p紁l-cb`SJ6 f`΁qrШeawEo0@*4=yҮ' 򉣶mVi Qd29%ex"[ \*Tuu0OA8sB3$B!I.J/]40ʽG] q7h4J#P`]xX>zyz.555А\@@H =gYTiIIJjjկަmzsLgEe;N7*F~#1űo"} j41d28B!d  tbsl';jyNTOwwhXظ主ڠaCLAUWkɆl_e?'JɬK}+v31`ljQ:]r4?!CN&Z W*g>m p_Ն#Pˇ ͐B!dj乺FEE‘fskk+9@={v464456"h4`D"lHr*jkk-ʈyBeDFLѫ:<"fԥy;muYmŵvuu!!ѨVX%?b4wˌWUYC̠0< '-:T`U*H!A ZZZe!&%B$&%JJJFM&\wCUl7DhX\2""^2%9b0&!>^R2Z0JKJl)7/+;;NFYٓYpssSWW"#dRr=ca =U(iiMMUUC2a19$4*3Y,ryBbXc[M')U(ĸVT)tX`/`$?.3DGG !B[jkkg}h#%''/d?)ڻ7*::DBN *jHB!h0 &%B!1+uuuʈC%fH!B,^P'%%6B!|A9CB!BB!BB!BB!BB!BB!BB!BB!BB!B9pgB!>t:+!!'#===FUA!\. U* M !4CBNl-tIIIެ B9\ C[[( 9*zzzrd( Brc4rrB3$B!B3$B!B3}:a~}M`ȮF!Ba8&}jjjָca6 & W!󓅄47\ B!;sϙ3_/nٲe2Yie2VPB!Bh3矿dɒ+뮻6lҢP(֬Y3::g`` >>k E/}xx8""Ν;mx1oe|#G"B!(|pZX,W\~}JJJ```]]ݿo VrrrZ[[_~{AӲe;,phH裲0,>*++B!}i III֭4LVV-b2^_|g?b $tqk+W9F!B3)BBBoFY?kEǠ a 7o k=?,ϗZI=CT.]8Ϥ^/uuu)}~zݺuX{yyq.^8**"#B wsj J\n'HkZ[[_uwwwz:-y/$'󸜈|W~?p!!!+ܾb4iڵaaO=Ԋ+v!~_}b}}p9b!uVE$^x… w}g5krrr^{ ˫VOL&X!؛oy]w}}}P. شi0ԴaG}t)nٲ,--owڅZ#D]AYQANr޼y;s|Ν"{#_|EFF-bT*)NZ{(=܃7nV(^{-KII 1#'Bp6^hˬh[,Nǚ<Ɂ g}'?1tuu)ow)[NTBx_~kA>,*Q^^馛W^%%% LJ7QQQt뭷ˆHȃ<[h %d۶m׿2#EU>>>+WLII==IeSQQ㏣ 5&^i4K/e' DHuV}݇lSķ{bz!H (,,D`)N?|i|gvܹ|rB5pq>g&@C"Û{:FGGgv?,??DjjjvIMN ;wg_Aʵ 9.**b s9`/LUN]$'q(C qK&,, 1#%//O>2[^x|ammmgg'ʍBaꉭ0뮻V۽BvZ|U%VC"(2j@f+JOB!g8QFpy9^VVzu{Ңh`SҚ8s[4F,f6ZHmGZ8sP>,{޽[rQч9`zoZ888(HcAj>!j⣔a yNN~`t"EbN3BlE \ɬ#!{[1X7%%9^RkϮ->.GB!,A_X>>S^xAx飴iT*mw!^D =uɿ=mj 3:/V\y饗:F% *..NHHزe l6 1cN\]?]y7pnܸQ<;KdŜfN_i~rQfұB! u (ҨKuf#I 6cWWc;I(":Ǩ ]t ~/o}7*sϒ%K5-ҜD5W Fbۏ:)Jv/G!B3$~;1 7onoo_lّv)TTTٳgxx᫯6\/¦-[9`ZްaC___qqsN ;~+"11%ڎY=$ 4'ARRRX8- [o!qqqsmڴ bZTWW;=B! >gHLf͚?^OHH뮻f˜>_~ꫯFFF^|XrrrvФnՕW^)G>-::Zz^vv6488sqq3ga*&& .x rڵk$7GQ7xO>.\xwb-&J!&c[o^<͛W!BN6\f:6l`cii{VT_}U}}hPs9SBqr-=qh#%''IfBtCnH3$sB`B!XV!NJaJʪ B!'3$䘱n:BqM7*!B͐B!r"ѤB!B3$B!B3$1r`0!UR! 9 mkkBk!ՙB~t8 !GRx!.rZ(Bhr6 !B9hRB!BB!BB!BB!BB!BB!BB!BB!BB!BB!BB!BB!BB!B9YpgrtvvFV!.r<44TT*!fHȉ:.))ۛA!`hkkB~\8'::ZH!GZʪ !!'0FZH!G)O!4CB!B!4CB!B!4of7< B!B3<.xu---caa!>>R_~ko~R5CCC>fB!iiivRTX]]bllU₏|򉟟_\\EB!B438kjj0ÞplظqZ^xr\e˖/d2-YK/uuuJJJIVV_O>3wVVXq%?QEEE^:##)!B!dF9GzΛ7EtTooo饗rJDDķ~~z)䧟~ 믷n` .ڦ>88BRRҥK[oae˖uuuo%' ?0A{7YcB!4㗠~( ^MMbJyfYa+ ܷoV__Y{obkj?"jゞ233?#D%KTVV>C\p|yfD*>m*YYY~<#B!B3р7"̰Kt*" )mB}'|/~ ҉ Bࠠm۶_zQ) oY{;|M7ᜯdT3zI#mꫣ!̙/>Qi~;NϟN '-Ty>C~?GQ˗/K!I J S }}}rHfxYglݺ-@;xBF\ly ]!BFi.\v?h 3.{-//Gg8  h"a/~ 4rϞ=IIIJABqD\rIuuc=J3قó>|0=____[o/)++lK8IJGBW!Bf%|fخĊ]nR|իm7-$?ym@b+<.'.©X{ a U?Z 8ꨭZ*bEPA AȄ$$! {$75!=sɽ睳 I!V."Vqq}=1ߵv2L*yԏ=XVVֶm۾ˇz@_zz|_Jy@K/4I:cbb}YIׯ߽{gӶK7d[oz^^5ZhMMUyooot#G]]]&&$\u|++z?=rR^#̓/ʠ81~nܧ7eefw3s挩S&+ ?$W_sU|CI7oj{dffm#|9V]녿} 8 -[?ӟ_xe>ڨҟ5s$v{Hy**+?K(466JgܡCI#GFڷo  0A!55P,'Eyxxڙa35oĄ˖ݠUTYLy)KqIRdM0Niccb+d22bkkۇ>z\A2~Bݳ 75}YEEM6uww+w߳5kִdeeש?!3//o׮]2FBĪ3f|9qǎʡ/Aҹ+Ki?~\8oL.ZxB]]u%NkkҥKV~}wϳ|J~N}G~d͚_>Ieッ_)5+scookh*B?Yx&2y~,Ŕv%ʒgqm**2M7/vvvm+z=-#+~ 8r |O$__O$( 9GT~U'@wT7n%? , 7o/J o~d 0Kп_Bb՚5k֠Wo<^{))3tN7zz.]T)/~aؕW^o~}%CMv,'&&FSR%.^UUuZzÝ$k4yɓ' 3b̙}ISL:Ft 2oe7rV",4Trڈ"4dDmMMjjij3G-v,>Č8.uJ95%Mh`P00 ߸4!a۶'%}]ZZ>k֌ /Ht~n R?O=GpŜ˗ߨwp~S{ɧ ϵk M7θԥ6OwOw\Çttt8#ƍ+<_mƍMO͕@;}7fW){zyyキ>7/ߕe GA!.@ooƜ-[38_\h{Ƭ1Bj|71kjj׹6ZاfA6A--=+ R"Ą?q옅ѱd7fYjjZCcV7~޽fff:~|_w=y/ʕWݷonzl "JL\|Ç6CELѓ`흝%FJQz%]Ұ>pe7_M2ď&~xUp 9HHkמ?V;u.rW^ 3y^`ʸŋHt<==B_~SqѢbIƍmۗʠZ2C ^3ZjiiL)ɻ mhhHOψ4~zwy_s]ꚜ\>4iۜ.ca'N䌌]uLnO6mӝZPXXYY%ꫯ80YZZ^QQ!Itvή;b'le3u%ISzyEo??6~,rtrojj/ݸɓl=~}o9)q~WDԴJݳvMV2oS&#J4=%єp+޾}ܹszz:vL،|8fpڻ|)HR:?~}DppIiin(K74#CҚ*H?;ΔGV5Ukk˦M Ug],]d`6oޢ\F{^á3c>kV^cǎ;9:zM7ݴ\CU$&&Tdfey{{߽5k ;J mۿTN"9Jڣ񦚚*vEEEFEEmbT+J:N,g>T i}[gϞu3bDp^Ɍ^^wY3gbϣGrb|;wAAALL̏yyyy@.>Rhh$.6gj/7Dw^VVvRX(ߢ]ʪ߉J-G{{;kΕB@2.p> .iM $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 sV0*K$)X"+DY'_+ֿu n,uy)+ p̰O?7wk =mǎ>ў4Cy7v鮬גleݺjٖۻwϞvVe/%9Z[_Ww6ԶC}}IJe!(e߾3x楖=}<<l޾[Z%oM:*}^iF/s/ޫޱ׸gkR3x-?6uuu55M͝iievN455MLL75)S)}9bmctvuu:x0aDkkDU999R015 25>xWVTi4&*\WjᤤWWCҒQG_Y'Olnj;nI=&eUOM-ku,NHh&K-v,ܤ]i hgz[頟Πj|v5J\8zi<˹ݾxro51fzWֱ`cO>"lۭ# 4} n-˨ťJ, C>Qy[WeUs̽< 58Οed贎pYHI?[10kJ4{Ϗ,]KFjB HG%Ƭ4 KO&e oO(~ d]2VQQ%InR8ĕVm$JXWW?f(I+Ԓ+BJ HIO/CdG<44\wl1C̴=ooowww+++?%%%AAAJƩWގ$AF3\)IO[fԦ p,LK/I}_{fW^靲DR4G'-)YEMnráWZA)=<<\ot6^ighg1Sq<3s}WaaaPιd4n|KK$klJ$EGFEI%r6eH(qlwJs,Ӳ=ݕxvtWjtnM1EW7m]U#:4^9lXP&=v'9i&쳬+MltI[[ .7,t?íYnjz^yuUBiI[ 6.5#ŝ7K&TOғȴ Mhkks7ޛ}wCmΧ8h4Ragni9xPs ___P~Q%m9z}DSuĉrHG{xHf{ $B-,l'eXItVFɳMꬮQAPTکj>|x5|.+l,f*$_(I̐!tε%NM74J>,-q#Yreu͜o]I?!Zm˾1˥ffm~As׾(m'CbISnS7%:K2T+cS{K{{q;4@r&`ood[t9隹9'ջ7m^[bbm*SN93"$$5%EvćzhAYYYEee||Hr9r-ՕĿb7&ͭG*i6:cPV˾+T)5mm#[I"WDA{xzyNJ&)J~ vswUoeYNJҶNE9QR@eY_kNSSY.^a>k$Ceden+.V.2<f;%ӯߕ.al_|{Hg4}][]]>] sv4ut{DO)-UTy>^&VՃ* lz{SI=-'4&Fמ) z]"W¤&3G۫UtU֜a,XvdB#=e2e. m&BWV+ BӘJZVn]vm+SΘd4v9߿a~yk[[GG"= !mmm }||$I$pdW$s#AK_UUѣGK***=""B9=R$R=juAAq6mZxxRnnn޸q'ZZZ>M2DzÍCcccʪC& +++ .fg#00Pb\\\T G*hyfKDD ͙3Gr0p޽˖-3gTfff~ڵk_z%coo7+ _>===**jܹ|~vww+VoqƔI =φPj6/s60uU3BA_rss?իyQF UiiϘ1#22r*f3ϾǎS:e)8 N9-MMM^^^lWtt>={466jd?nܸ/BSO=eeeUVVfii9{l駟HD]WWKxέ[fddH1co;/y_~ݺuoOn8 dcWgmm=bI8FvƍMMMaaa .tvvL(*>eL `{,YEyí*YT9g|]viQF)79{;s۶mUUU%J=/iӦܹXt^s5lZ%bϣr Ɇ $n~|IWWWy?zVZV׬Y7KNN7n.ҼSZZ}~uJ K}ʔIGS^}u?$?V^Qajj<{8>P"!,55U)zΘ1-<qb=nnn<{ʕ-q+vquqλB>dNœٳ<=<&O?ud??߅]+eMFIUiu `9e$)[ZZJTi޽_}}__IgKK (@2ill,(( 92b1}>Шp;;smúztJZ~$޴b,,,佹yW^9_-)@2IMӝA:jTQδAGؖnbb)%%%Mn _C#FO0]-1c P0c4ygXZZ.~qXX()pp7ꢠB)]sU#_A^Jgw O S<6ōٲYfdeV2uJݫf&!awqyqm#GF$Cֶ33={tYYY7H2ؘe1cFX74j7%5*V+xZj 'rzz'BCBG?^)mxI2{RRR?x|/,@2Hϐ0&;2LMM3g31q+H#-C+NKSF+))}7,~Ĉ` /8L2TOt~mʔI&&&C;d[orMQzv{49:!pqp!)E*k_UP9A(©S&_67彬ܼkI\>B_o@):U՗, !e(33+3SOWw4''G^ĉ~~CNEGG͘>m}=)755坴HOPu MINusu;~aggoSz zzzZhXX s1330OH8fpہ>j}}NKOIzG7"847trM7X(1*11H`MMdegeRJa/ 6mT9tί**ann>jT$gZZZ*=e_ϮڃFQ;oXz}FƱ‘#W>P@?,psTVVqYJNN7n.Ҽߗ2ggа0IYYcJꪪґ112;nkfffDBcIզJdǎ$YYXXYQQQ\\nkkHOKknn ===$VR(-)T:]\fvjMdtQq ;;nbbR[S8T2N#z().3\H pf),ᮞ}Q7&6ue9jBgggFzh//mF kptt477ohhh4nC\WXP2j(Sr[ vvuٝq%JV.K<FT53Ҡд+Z-yK uچiV[S#/W7AO%Wcq]Xl-j|ax{{KA2)y566U8JK+** wmjlh驫|||޾^Frss|(Q& c^^29ؽgN<ѡѓJ_?SEE2Ӯ'%9)RCMuSj<]Irqq (.*9qLDEGKTZܥf ///GQ"t1mO{DdDaccceeբV|2i߬.i6+3SSQgtͭ)?QQCE;9# N>_S.!.%NN +8,%!Tq]NzJJJLMME*!.o555999v#cbX?Ez@2 $C@2s= t,|X@2B ?4sVb!Qլ@2 o ٤wbmmhXpޱPE廔$C^VVF8a| [TKY9lR;v+kkkw)d\}\8H!d H!d H!d ~*YwTUUU[[ΪsemmŪ!piBZbccshʤ@8gImmΏ|ʷ|*d\ۉ!'@2 q4ͯZPcLLT7̺0I_y\]D65uvvk.jhPYXUnn@] 1CWWWoo]hɐ{OI5sG}*"B0gsW'&&VUU=vvvw>|pMMd%Kȹ~iyy5\1gaa͛N|򮮮w===_`Z^j?/ڵk޽ NNN&MqLMM̝;7 `ӦM]xw}7##Vfann=ǫ\{QT66Aܥ+%э=?;;_^}SN9RDAg]Rcaao) p߾}7nlll lkkۺuG}dhRrru%#s˖-ҧYF:_ɓU߯*(P԰U?<< c:W_}UYY)娨(:ŋ/YDb+W455YZZ*rĉFh 쪪jDA &L8rԖ##+q۶m~wI|g5( L8y HUy!yƎ{ɿC./KU7U/Uppuuu\]]͛6ܲeѣG 7loowrrRksW7f`OȔ|Iq,))QJ2 %mR/}$":::ŹmRnkk* 6٤U sU!!իHgp-$&&ٻwNggAv[ll;$曒ǎ;hϨ(IEEEsĉ#Fsrr=</ᇤҺi')i...cƌ+Jھ}Geeŋ544nnw IR#lllL$)NA'R lX8fL%JfNN?ˠ~w}|e7S/w>ITI>qcdhP`$ĉs#)] 9ߛH_멢Sl _AA>vl ļ(w0**R>Դ `z&KIISItb%I-$tZX8;}4%뮻v* зl1*:ꑕ+))NYN+++)Ϛ=4 "w 1Ȼ! p=3U"Qd&\"iS[ZZ}|aQҵXG999WWWWUW;9:wuuڵ[ Qg3w;[p] !lfΜ>uʔb3H?i]vp,umT/Δkljh^h4חjjjSR`6mM7θGI6%tmӀ7K xQ5= K:nټyɓVX?@2wuzСmm999ff{S:STTT_rƚ@oe `---J O)Ǐm5DݢkN'''WZrСs;иzJXtCI;v|モ-8K<Ezz~^zi1>\ebZu`d~Ooo/u^]Hkίѡ:}񌔻( ]>tq\W_/11z*彠PCsV⨧qGVN:ll$&NTd"O^_x𔣣)9Ö1W^y%77WMM$::漋 Nn۶-&&F׿|K5!!aܹK{WT<&Mn!6w܇z(J20QK,:cL9sIJmw rWG?6mZYYٲes܈#.\x=,zecϞr٥W^~.Y4>~da|ھ}/~IvI^>_<3<7zoqwUqhѯ~KO=tmXe^=H$m}_G}K.{ɓg͚5z訨Gd?w٭[јUtנWs_T۹UUU?"e͛/kYb#<FEsb((˗ʮ]C1m;rDF'GZ*1F&qCI %? իW^>?|1e;ScǦ^z)5zt꫽h5jd6ozۘqk;mٳOYV|k7.n3 ǭ}-}@qqP~gݰaC O8196{8J/ ?~{[nx㡫 ģSNmmm[7oE@F4}s_ddd-[R~jvl2_b,=f~7ɹ`r^xaZsss$_##"b X%e˖%e/20/9??Μ9QesϽ+c555ф&}ꩧ?gԕWںuk20~|Ȥя~B߾}D #2IKKˬY?~"گup]?;Ծ+zx***/FСC 7n8cƌHhHNGF"F KZr b/rݴiS^bŋ'kE\'e|#1k1bS̓ 뮻.;ΫᔕԔ<4mڴ|Rm?>I7ҋdΜ9gݻ'?ɨ; 4}㘙3gK}t:2&mnnyIƏg677/]4Zqʔ)8qȑ#[[[kjjCcԩܶm[uu_~09tdɒ^z)??ktd<9j01\50wor .bIJ8iӦŬ~ctMTpBH۱c^Ɔ dF}Sbeeeu_ZYYs>#mZZZɞd Nv@k8f P(C!e2B hKme'>}ԈC#؋ƾԦ8(,,Ս_*3330ٗ ĎCi89@ P(C!e/ mXj޽1ܥK}Ƃ.XP\\|jAmKdƌΎE 5ebƍpFFF^~~fnlgPݛda9?E߿AZ[[WTWWq晶3(CNg}vǻGp1---z2wޯcǎuu1A%*xqwcc2w]@pdgg'_A<1Mﺦů6'eW} 4.[^sͤϾR- +>i2<EV]=-2oW+[s\{߾}]2Dž4Fqw3n1PW\$k+18uuu6ոlyէ_Knۿ2ym=c۰+/ÙK^^\wم[HTҘUپؼ1>n.9M7n$}35|iC맿u.y:^δ?VuK[y*K۱c^Ɔ z|9Qix'?-TVH%%%Nv@ P(ÓRV(pRa+I]Gd++ 'GM *$ 4e2@ P(C!e2@ P(C!e2@ P(C!e2@ P(C!e2@ P(C!e2@ P(C!e2@ 8>u,Ҷ8y˰Ȇ8n9@ P(C!e2@ P(CN/ ™ɯIENDB`screenshot-6.png000066600000234102152141651160007602 0ustar00PNG  IHDR6Gh^tEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp c4IDATx|M-K%f]bREKR5J:n#fڛ1 fD7=YB%D>g>sOns7Tb4 $C@2 $C@2T25jԨ!6662>333555..ˑz>oxH_[jeoo_ʥwCEGGB_Qҹs^zyxx(c;v)Iz2#LLL,--TRzjժ5Ғe+Wo޼922ɰ$C??gyM62aÆm۶9s&..#tTٳgɒ%!!! H: >KlٲbŊޓ57o޼o߾:uለsn߾ bccV|!CCf͚ndxJZ[xtsvvvA))tܹH===;6y䈈r۴ѣ}}}/]_z@e`[ns̱1cƔ)STa=z 8ʕ+.\`@2,?/|?lذ]vݯb:ujǎ:tٳZ e/@2,Ǐꩧ:$?^iPPPFzNHe/ڵڵk?#Z cݺu...=zU֖-[W ĉt4yuvagg׬Ys۶m.Hްa nݺ/l{Ju]R9r=^{8p࣏>zhǎzvi>nEk+?hSG?~,t\O[̟-kJ(o} ϗCIر}ju2+;IVW-3}*Maff6W:tREvի,KYWӧzdЗu͛Rڵ}W>"AV˗ɰQڿ?))vNuŋܾ}[b4.-9::J,ܽ{wc&%3fͅO:… |~ /O] Rm:99W*TM G[:ͺe&nI՟٫d&|ɫnhR`U*H5H8Q^ٝ»rff.~1A 9iffrМѤi?5u-F3o&M/EN.ϒp|%$*igÆzq#W2jժܻgg>ص[I&Wj՚קO֯ fjϞݒ"u9kaCd=wzt\Qr]~}^Mgoo/UxWU+W.ԩӧ9|HR5hP9lD ͛Q0z?mۺC@G]2o%4HzBz7ecǍ헅7o-c:vԴC_H SSRSS>h.IhRI2qgM&׷_U ۷ RYi˯ K2p@ٟN<~xf~WVXB) |q^^발&upppvv^n]i8ZhQ)ׯ".\=Ӛ̨l| wlңGZ||1hժU֭k֬џgԨQ 6Teȑ#+֮_iwT#iCN<ԩS/CZeJuv*h4oFڪn!430U3EVVLLkVeM93Unc%TZ ψ;[FOGssscߞ/]Rcb_z+126゚}lPnrC \x(V,[:##~2VF$af"% :LQ۴moeޕTv_d ;;ɾ˺f~4v҄Ud̋m*ⅎ~)luߪc%K+Em?]t ؾcΫWӧo $^r{i˯mَ=ڸ-nΞeV!֫`%-շ-nߊ [h!wx&M>\CBB$J,9~(gn~ Q^[UJ#P~b~:s 1f۶]o:;vxbdX6?Dݦ$JF t3 M&OBBfhU. Jj*-\淬ĠAU޲tQl7Eg>O "%E+++cco effmӋ\$ƥK[3g|Y>%/|aժUKLLuۻpLNN0#LJLRF䷛IE{]}#ySnou ٻvmJ _)Mm[~7gtӏsK`ZgQۧNFJ~ %.]xٲ{6==]w%OV^cO/34ȑ>$XKR`aaq+t{@դmڴcǎ~'w7|I0s-.}/.mg~9>͎ӞvGRTHGJ)a 6:tQ \~(088xMbdZI\ 43iY?-[LXXvvKRJ==+*;v|{6 V2e[j]ݎ @nQM*w)VurLҨZWZTKhՒuiSu(v053𨩛n횤$O.,]Yf2,IңLB||rRrݎB) ߢevVV oiݺullcRh[(}TWMz}67M.Ę-:h릍#U+nKP.ZhIZS!Cʨ)/^4]-ꫯ*M 9h N)n/R,Jn@ت FWUUW1t=Мˎը;Xs [ƧNϽ`ee%!if_c b.7z'r/I@r] C3:5"u̧^W,hIwۯO?;LLL䐵W'$(-@;n޼;Ofo(1Yq1J LZF9z۶my;vl/nߪ%tkݘ[6w P~%6hڵuֵמk/6ȿXvT.<]=r -l( Ga};q54=^z\V_^=y=`b7w:O/E5j:diwݻ_z.ZFҚdzEk֬)r|0/Tra@@~vdhg 2S.}nSӢ/lIhPhR5ynt04bn`hфdĕןe9iezo=[s}-9kq _|y/:̰jCiΞ9#٭222t\Vbs]Μ,]x+?ӧ&З?c|7tO[ObPojoI_lܐ{av{2~X.h_on5&=|hgce}`mcz%Kd۶R_NP j EmպIn?CqSlȐ!y4%#F5h` *8gh$[*[hqKu&pժUE@|no^j$X6.\ ɰ$cdLLLJ0oo>N:ڋ*7n&P33ٳW^ƍӧf9CUYj­Z lzش,÷r30PR)y̼ٿ;IOtJN]tRzds;JQ ͔[ %&&&hO$''r=zHғ?c…-uT6lX~/_ܹ=h'˿Tk{IԩSy/tRx ~z6dTo7^}T*..>0lagtt'KG;%S."_ޤT)gbJy3v횼:99fvڽ{ml,&M5*mczD<foOFܠUN;W6kQ\ãKuPRѰaCOO4hР,bfRܐyZVZn<^zU^]]]o;ԩSj!C4/3n=A$n :{ΎbO3YjcNn9|kntqqU|(Z[[ty{SYDS S%*[х1mW1BcguV¡ѫ>tS:-Tdh`{rŋ&M'(cN]T=QI9G`;]qׯoP..Ucnݺ@SYNF\bx{Q:G% 4h̙%z-Nx0& Y“҆su᳸:uJ9Y*Xŕ\!-J y$dVɅ7Դ/VFӬJKG텣faxД9>wݷo_3XXXl߾Wmmm[n}˚0<&oj7OVf͚%Z~={*iuڵ5j$˗/dhddsf;a[FUw,OʫWzq3HuRdx{K,133+zkxx=bXXc[u ymVTTgҥCH܌K/9-4FFFTYF V,L KH/RjNV*n:!qm)66ѣm۶JK+x".44}|#" 5餹C)UHuRCHwo7o/_4cƌ __߼{-Jh:?[kLӑ*U)W_~SiR:@ ˗k.;;|kޓڵ+22o߾@弽ɓ';S^H)R ޱ߿ZjRx{ ҨQuڴib+Uk9o255ԴsIIIO@5`޽{/۶mc(ht%k]rBҥK^ڿ${9888!!!00P<ͤR_޾w7od01_7ndٳg?$J>>CKʰcǎ$va޼y/f@2>\fݻݻlO>7n>}: aضm[Zqرc%nٲO>a_@2,C<<<}}}nݪV{f͚ab!ayضm[^^Z_j׮?|W%HѣW^ѣG~O:u_1pӧ[XX;6((]ɰ\]paÆ ɓu//iӦҥK/#G?TI%>|K/$/?~YC;;!C 4H,X0w\ $wSZPPPll=ߊӓO>)P:4k֬pv $HetŊ'kn޼y߾};u$sݾ};;giӦ gggoذa۶maaawڅCzufjj*cٳdɒv$ ťK.?2&**رc'OᤤdbbbiiYJի;;;7jԨqժUSrʚ5k6mNd_ -Iϯy[+R ;xC'C}5jԨ!666fff2>+++%%%..ˑz>ox!?2 d H!d H!Q%'' PqH!d H!d H!d H!d H!d H!d H!d H!d H!d H!"2.mDEE^z٭\VgfffdddbbbeddTNxxxd9stt#?Z@rrr233ֶ¡1 p_ȡB{{{CCCJE(Ebb|iXYY *B%344.dH4Gnn9m|] $CyG#x.HPّ d H!d H!d H!d H!d H!d H1My&,y9:U_y·sssJE;h4Ѭs:ӊIm2422P٨O477_76S^Ff̜%!+^i Tm[Zjc7>Lް-'*:Zd#>df 4qw$M9C_bbbHHHTTT^^mF֭K6׸_gG\I ~-\D2`ݺunnn}QT&&& jkzQͤdhQIdKOOOMM777UTMJKK۵k-,,իפIe/^(KY[[lٲf͚22$$D憆vEV߿999vvvz)sFFF9r$%%ֶUVJ`h;Q2yV 0gee%I~&mڴݽcǎ7n(Qwrr[@I}۶m{ cff7nʜ񦦦eSvjcc#oٲeFEy]˦nV~odռf_^Ihr*JrW^-I/GEEeff6kL] d2V`:urssҔ2ܡCYҦG`۶mV*o]]騣iӦ2 "| x0%o*2q?·A 7n$M9CA]|9,,;wvvvNHH?fW|#/]$NyuիWWNTxs 946VN$CR) AڧVYlfD&+ƺ$TRRRu߭K.MRp@F#o߾ܿLLL.]?tòQT 7}ɱŧ5AVN{Y. f'O1bDqS-,,֭۱cG"*#GȀ}BBBVVrӠNdddÆ XTzlll ccciUT\ %&oά&77WurC+K7 Mx! q]k֭73frۺQ]wҦw͛7˗2ܵkիP$&&TZU`jjFkԨm۶-[lnnn]-C{]>ZQzvݡCqqq%GDRnݺi4M&XkΝA2?1W"Nu˯K2|8 4̙3ǎ+yǏ iwvݺu}=[l9t2K2r ۳g?KKK///???e|.]۷rJZ-y2E.\hmmݪUV+s888<%\feqQ{ʅ&Ph~8Qn|B^z]YU9t6ALL3< WZU^dݻ/k1lذVxѺd8}t Pze#y{{wF?yD5NġɉOƽZk uBb)Ϧ2W^^ޅ IU*K.j2557o2f׮].OQУJ$С.FEEڵkAAAG566QO>YݻW\)Y?''˫۷6lإKdɓ~m MjժWfddXYYU^ARZyUyꩧz w>vӧO'&&ZZZzzzJzQ6ѻwoE<< .?~ҙm}74zNh_?wtt,r_~WVZ] iׯ?i޽3gB}ƎnP_ܫWuYqbMF\]]u3;v,!!A}||,--ud6?ͅ &N.UV]J2믿toI@9ˋ7@#Xh2g͙3k,~=YYYۿ/^+k[`nf͚ 2DBݑ#G~駴428::Oz5eI&ޔEDD{Q#F@#oʰɛow SNImӦL0aRMMHVV! >A7NO ?=z9sfҥ#Fx7.\PJ26 3,U۶mMLL>es=T7gÆ {5/233cd]v>>۷O*U:/^5~xeJjԨш#t\~]aү²e oKHnX#KΝuQ|pĉs>O *դ+V?~|ڵyJtqqeiӦ 4]v#GԝH8,u)WJ|ꩧϟaRi4y:uJ7&99?ӧ.5k֔*]jhhسgOݲ5ڴi2[KV\ieeU^}jQ@aΝ;\ef͚Ç#ѱaÆ>,E@EWFFF.Zرc1.\!xٳg7lؠ mvԨQr'skJl߾} ?gB6xb1l&WRZx_ %=ZՀY&t>\aqcgg/gٲe2rС_?!!@4'NTpppttt[:u|rIQQQ666M6֭?p̘1͛7_~}DDDP'` ypɫګWk׆޸q#--M_޽/%UW_}%Y7$$$!!Mw:TK-V^}8$Pe˖-%U=wʲ#I,Ijعsgn^z;F.Ow…F>۾}nv4դСCۣ֭>l2]7ڵ fZEN}gi%叫Iӧ4h ~a/vڵs'$$8995nܸw޴ܼMդ@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 1MYowѽ]~}Us?$&&R?4W^333W9xprr} nfff-|8Z3fgzz0r_͜]d9[ex_ysjl\zΝ;mZ|'NdffQ_eZ޴i{,--֭#-];;_NINNY:)))vvaA%d4zFjj#m *xkk;FrppPTe*vU5kzbjxyWWtDĥ2T0? /uR ꙚcCL͛5md}>.Ssme`/_`kÍ `熆S-ejjҩS2F'%uei2 `2p5OU~H|\%,Í7ڵ{O͚5.\W:wS322e672XJR``;w\,a履䄅_խ[ =>66]Ťk'=SaOB㐡/:WZq{#]tYW ^ۦu>ʃVh[Ҫuܘ% O9k49fk܌}i̜2цM@΍1?f8zk$dZChEz''f_5uvc4>(S5kzh_n^vmjjFTWӳ0הԒY`)} LHHزu]9!!qǏpppx:XXZ§*[4^ڳG_R͚5_0k윒7$rȐ9~UTٽgﯿ>ʉsT}G◬ Tp:O^}Ɋ3sPpv}zh2behMA 5U'(B0p5О4>Gy/'I8eY?de_N\G_mvLe^^+V?k4G;.%,?Rd>OdddKl֬ivvΆ 111Ye[-[j)'nh)ajj,%ѠJ"kcoA%98i{*տsvNInglQ_*~B$[%CS&ݤ?O{)?=wK.3g׫<-k׮$U+,珈)G1=ztu>0yZ7dq##cǎTVVċ[vԱE7nrjR`{{=>rDd-_S 5kO''G&75::ˎus_SO׭[S{TjҠc2a?ftMafhm o~|ؼk'l:!U&;^SenV{o:(3;w9!? I^'ѮIGwlysWNJx ,([CGJ #0p%E.rjs-Z"PR龎_XypdwlڴId~BHmO6n* >Ѳ+N8u5WWݚ5k*LLL>5kKe>bccӦM'z65}/^ӧü<=dXf1cF]ܹpz ޝ*99`?e/fIl^/Ŀ7soD ο̽3Lj&[OiZȡOLk[$#m9ssmAq ~ZεK/-#=g? s2Wwf/^z;F6'cw…F2=ztY!55lCHH3'%[ԫ273ueg~ 40O ިJٺ;)[v)"FVq,ˍο?#)1q\ 꼄 IANuĬsҏO^9qYp5V~W.,c$" HHHH(oJUځOՉ+&$ɠߣMQ>0dLM\5ʕqt ڎISJ ސuz橳ﲲS)kp8NjTĮ "b2$c+//W " 0pHho/**cWR]FO?~!JWWWOZz7 v!XHDc,((f2cggƺѱw߾تBFsz`zzznJ"##$;;{G8/({ {.s5JOKC+*+oΏ591T*=/&!XHDt'Hz>ln ~GQ,/sܹ"z{`nn?p@>1##CLl6d$TԨjt:((F b1t%?X>??6, V#Gh!]b)--UHg]~RQ11>(L* qE((((,*WXeUUSS4999x94448>(*77tqX=ޗZўnTNNo-!~8ommErR}CCwWבG7]`qqi-S8df:t1G}}}MMM@`dx9! "!DǏqB#E\6V:91QW_z{{zhD"^G+9s0p nmzB ɶ!klj^ZZBh2KHkbA mnnƆ;ffFFG.GF۳ ")a)Ba=wdmm-E_!"be&L&D͵0YXbIIIHvGiYYYrP*>죆5==<6*hܷo0Io01~˵1cOB̉J1 :n;GfqB&rdOOc񦲲v՘E8G6@8bm@Ex  dΊPQZ\[]M'VGkQ&ңhj’+E3j9D"<ꭨtjbѓ+gϜAB 3:.$ZĎC/UKCrCzˣm #!Ncga1C,B } >E;n0]ow /055O6669~ȑ#d#vEnB%If΄xδYl:^'v.Cq)/?yN[@EnuדAsj&#tb 1 (Z?̹rxXFظ ڿtmJ⢠jP7s[Wl9"={v;ayE|nlW䰔Ztflq&f3cՊ,o{@~Kg&dHBw?PX,1DDDw2DzDsg644\<6D+A+..X,SSEEERжڰ6S!MVVVJJ8UuGUj5ȦB0際,"lGNGBD25g ф]-O_r^ޅ F%y۷$:9_Ļe (vhCc#LL7:vM877{0筷Z:C=R7_/;::/򗿜t>Pov^?z(UHwLF9GP'Pucc#1 "QX,554;'BGH kCܻ{3NM&sn7y5:2RRRwCJlz y5 [ȐJ.]eO:C',ĜBAXxӇ4$ny\>LR*nU v>v6_qri^XĮDc#bo`~@~2 k ooKK ~'=Ӊ,g6{^{M^nwlB{WeWWW//,  (78 2a[[[SS-yÒ؉[]ŧ>Q=!~mhh+wBЙ8B͌9r:z=oZg`~aaQ955%*<Ao`aM.mƮ[gF?Ӎ1DuUUU_}}]|テZ K/㏋U+tȑz(d??U_8::jRT7/_ ߿_'ˉwy< dِ KUK63(0(U<!""LKtRR|Ca''%*"!e=ݘw.RqIؘxDUuX Ϟ9iXW_/caq,)Ϭ[5zcՍJ+J}S}>f'dell NH2v,_#e9$:$.d.JQqqoOɓ']*++H4VJDrC9֯Ajjj ٞ{C6#:)[zq'+uzfe':^Uձ؈wYTQvfggcť`{.0VO:QwAEEw%{D>|7&&&>W9b4ӢLR,UK6m/O݇ՌDDDw_r$;{dR$qk|I9ɐ+Zݸ0fuҸŅv)~7T!]q4U.T*?]i-Blx_,D#q)*EJ:lN|-54$ Y}bVq}(+O4F7fʃ XH}#=UZLGG2t[ozwWO|"KS]GXR4~{C]jɦRwB$~艈h%x\ʪYsnn?qӅGGo]ѝ~ș3gVWW11.Q) _?yUH+땛וo<X=vp>ntycccHhۿɇBш*g3 lv-r+ |+nYfyNz\G/^xNO=U՛@(nN#2PZBDDDt{&#~/ZPk))yyqk Ͼ[^777w߾}ۿ/MMGGȈ8w~w0駟~1?gggN.*O<ıcP3|[ߺB>mǭs VjzyEˉH8dff'R.ʫvwjM|kϐhQT z{OZ̙e-MffIIxB:.8fHDDD  #t\l.S3 Ɔwݲw/gץK;{(,3$"""ڝpj B))k{npJ00H0 -,UYUhVq33E.>r3FGMckLJJJNNVXl6l*U$@GՃy$UK~xڀ%gJUVV%XRʷhRMm- %b2$"""BBrz6VW_/DzӜssx '&ә{`4!uwwC|V, QMJw>!qA>\-At]q̐hwBWHHssRz4_4oKZmi'p%5PH~+r c4)gtJRL~xqy-JfM:f_#-//>|A~>(!!$$b0;;{jE[^^E۸bt}"yC3VUUԸU.+$j{[qrrٳ zuy{|bMsK O(%~"""iԔN aR8#T!]T(eddlZ ,WX'CAivR|k4677cEt)1݊T*UDDtU-*'Ao0:F<';;{nvV~^ba~~$l޴4219ܜ[dtL1|z1(6dt#*F˰ uųIINNTAAMDXoQ|+059i\Bpll$òы/VWYY{MD7IfR0ՅfKJK6f]Dj 3áRrRh*/jjZdJpT"vʅ]Lt3Ѯp8N'KD* d2ݲ-Z[ }(H mG$lcD$a?""""""b2$""""""&C""""""b2$""""""&C""""""b2$""""""&C""""""b2$""""""&C""""""b2$""""""&C""""""b2$""""";G h|B2݉\ZZbW]-Jc2<6%"&C;|rZ "Z`pjj  DD73$&NhgoQ|+ ncKKKDDyB>!1|+_7ɮ """";~oҗ_~yppP~T*oB%F1g>}ZRݻ7AEY^^.f⋣_׳Y$"""""&Û ,##)))W }>ߏ~Mرc>ULDDDDDdx}Sjmm_:o|FPկ~_|qxx74d~~<ꫯF"IQQs="^?>>vḷfgg~mͶŎ=\nG>JuĉGy o%筷޲hOssC=(1^g-w꒒JjÔĹt4ԇTi9?~"Un=Z(((8p7Ο?/L<Ԅi$vŒh%hD4k}GDDDDDW15/~_cӟB^ꩧV$y!d3d(sVUKy睇~8-V / vF"4 ߿_|B4">3f!h;x Vy饗!4b"""""b2 Bԧ>)ɴe))8w+bX>OĞc= zѤl*x㍉ y81v\199?1-x)D^vfb"""""b2??b̔xw}AW_U*f]w}'^T13|{޽{/]cג/W%F2TznёZ@ElZ4=qCxb25aI'?{ۋd(ko+?[N^<kΞ=!s[2W9|>~sݱqldJe_ + ٳG"8j?wC28Jnll/qvԩ+9ff0LJRĞ[]ػ580`0rlCCڬ<o 7q$&Û q矯Wuntt4Х°8wk*rMKٚu86+ mXfF͍ CS'Ofh4---HN. bg~^n0rڣ|>T JhoGr:~:8]eq-Lز2u9}}}X j5z6OJN!%JnǑRZZl.Yo !hEb`Nss3:j] XObaF5&'7ҥXM7 wjzZz2hjAa}&?['&R"v"=ZJy@A;V{{oADDDwj~r1;qrAtASHj23q#ux8Vdx7 BNw>;744 9>u aww7bOII Ѐ>e[5]]G؟SҭݑadVT`ιgQf=s\ZZB3m Q^"H#`KhD2ZFq>cfaX>>44UXTjhsk!>6"D8D&@ yBsK Xn R.bX]}=bjOO?p0D>qzoc.y=cU*ټ1q=>tEE萎Ʀ&Q~<htym==w٤H}#yDDDDC˓nxJD$ rrrpѧ n{wS&%+!\.q/=|aF<Q(MdTd,bHңAJD»TT m3PXnik#l99b0[ g*>l,fLԋNq&&&333 -,`*Q zocH][Ķ$nBt煢э>rJ&*'XH7&%"""ڵpDkj҅[8֗*q잡V`]sKpX/Ocud0L ]!'&nrbF"`ȄƺԂسHVN1 FhAD4#3vk-l/.:y)AW-$͉[-#W򋊋ϟE޸(j@~/y4V\ֽ^l8,*wib&nLMef\މ>!ޅ?'%=Nw> Kd2$""""l=å囯 HlsKqb+>9676i%.5TD(&Ҁ|!Jn]BrLҶF%35FMn.F77Cw5p !5Jz"^Z,驩΢ش)B"ņ[67dBh)~&nLMSH^ ICV<Ѳwv^EEEd;óIv-aǚ4r6Áx`))P!MLVo>}VVWE6H&nd5sdcKÕ cݖS1hu bٿ? #55ylttcQ‚n{oc@;r޽61(M*55Gu᧘8r(&9}V &C""";]qqq(Nպbj k\Tlrrr;jFƘD@sK JÑЊj"eL@#,//!"#--/OX,Cvf~64$n?ii~###(sfA磖ё^bnK2n7Z,nN\i(Qh[>Xz=6+bNv6&䦍0z6mP8tmB:7&%"""p_]UݝƦ&Ćg-XҲ3mm84GZwB24.^_RZ\ JCJh43o՛kdF&:MIdd]$ D={l! ˣ%%U OZX,pOKMM܌TXLJfE^{F$V0G$1qwEGUUWcd6؜UqѭzocbdN=-scc-e=ݘڊҦ".|WtDׄO "ߥS+nY'*}!>IIIMMM.cvU…2,XZZ^]&@;SSSlj (^ZzzuuFAC2b`m*:*-ʿ8>64 N$xhtWJN|)--y&ӢϷ㢖jjkrVr\U*((4"e܈^lgz=2L33$"""vrן!.ҙiRTl*CΜC[z6--tww#"p^k"&C""""ڄZi/^JZsJNd4466Ub-K%.VTH#HlĚJxIt'٤DDDD1_ `$ӠBڢӳZTp8ubatKRAD@ ^~\~?MMNLq_1T*ՂϷ l6[xj33fg]8Ue2Nכi,T&9.(JbDL+JMX m&%""",˂{䤤|^/ ikCT3vPTn^PVVA= ̌WլO~?ϼ^oaa?~̙SNF4SSSdOO[oeўzHRq?vppsP)zϞ=Ot:z|U6-?*7ޘ;--fi#>}9P~wjj?aeeNC7ϝ;V1gϞ} ZGE^{;ckjjRD@__RFYYYHHxڊwKJJ>mU`dppwy}gQW4y饗Vk<ދu_~??)((@PDQXwźw%ttt<ȜܕDDDw&N )Z-qYĭ9$11' ;wW^X,' Y`8~^x_GMJ`vaa?i⢘7XZZGdBL yIݎoKnl$"")NLNN?HII?oxFƉW_}UT۷o}'NxŁ/~G8Dq+UQ~+DR-**g$IDDDDDtEpiX=ZRR"WWW[[[{œ^4b>Z kjjv`dN y"""""&q+G?'۫vNx 矯2 b?I{/RJJO?UE8v|Xrg?xbWWW쉦ۄ6cǏt:xꩧgh;8fob_ii'?I+'|R,VSVWW^tw{GRaud>hII 0<<;9DGYGFFۗ36Cp똙Aha_Ӯ(m]jZpTQQӅDl6F7ѝɐɐ ɐ ɐ a:8;fg7ϟikキ=ELDDDD |'X^^x.ttY\[p8v 7:b2$"""s\hWS*jqZm6oݬzoح^ۿ뒓 RSSoL3npu)kR CDD;oQ|n%Z]ZZFO<ܬjfۏ=\{{{QQQ^^X13cF"NTgdݻw278w:(d2WTϴ NkXbP0j۸2dQ1;*%exfKJN^ZZZzz:)Qz; uXEP?@YYYvv͍P8E5,)) .|H$bXreu59) MbҲ2ђQՅӧNՍUa孶].AV,)-DZZV[z0ߏtʘc[O__]ob$C@ee9G A;KKb7b2$rrr v -RvōvGq\ׇr#!RAjj*EB "o&74$.sc"E ?ޞ| XEԵb=ݚC!!"455Ɛ"jkk6.^fMaӚ[Z?>n?^c3WWWQXӳw>ĿVxMM3?"&hĞf@ AO"G/l569  UbAHY N ⃁OrۃW\qh4\2Ut4d‘Z'u>1 /K""Á2k7999~X[EE"F[#i444zd$j#} C%.>k4[,"@cy$Cݞ-|=d4b aX9Wl%=@?R8r%P\RXҍmƪ-BKlo^qEUޫ]]"b/E'dee%!! 8Dl]4p K9/PHDm.-Z+@iӭGD/(,4ߛW\1-=].Øro=!m8KI==D"U(R\.WaaN[]]E ۪xۻi͕Kq_O2El|4E/oklKХ;Q[mhdHDDDD ''&<b rm`և}zZӉlqzza@:%ZQʊ8OPf,$:e~X"k33ONN&hlFXU#K``jՊH`V{VH\."_\X,-X, y=44L@.[uy v λvn'" c+5? 鞱W&^1d޽:^MJDDDt'ήDbYRYU%ngbCh&199ssgϜAiݿ?A*++RJ%^zɥeeg0E%5Ս mHeee޸XcSZnSW_vcjjambbBT-S^Qa.vv"!;\ & s U/Lɓe돾Hn {!U*̉ xe=Q"-5"ڸk7R!%W<癶X펭ݘ}MDDDs#UTTlz]ᘱ뤓HѨp궨H$,}MDDDDDD\$-T*k`#1nѸNsdxXܭ=3ΐn?%%%sEѤ$дgɐ HUռɇ֟""""""&C""""""b2$""""L8pfǔCG{Tm[ZZ-z}蘙83?4x!4p80V v$Dj0а(x<#{] |>ZUZVf26] n``@L'dj4XXݘ(׮LJR1dHtuNv%-ERlu8N׮4 [VDD䊫*񔖖j4LgffF"ki %DkniI<{lf܌FlZ-ʊ}zҥ#Gްx&jG/..b?bVV+dHtBW^^DDW+ NMMa:Q*,r~.}fb Yp#Xrfff|||yiIV# b19$kyyyc\XX@Q@eggo/ 3mm555zAىb/.NNNZAlKzzzYyy[vʪϵhoG¶klE\X mC˕WL~,YZVgcf+龾VH' ϓ-eLDcۙZ_;_wy^Dm;}Cr`0X~ܴ^/20-tR3;7VZN_ h3DD;ς"3ވ(]~Z\CIKKK=2>t ɟe$1 /REbZ>Uuci.\( GGFZ[8SihlD(u8:;;۷qR̆&^"!"dB##/xuuu4#"E'bHbwx<3mmȥ1Cb2$"""KJ`/?mrQHO_QrrOjq%n91{'&bO|[#:11m4š#uRJeU¢?:íd2!|\,9\7i[uhXVj`0 U6cuuUͭ ۊMTʏ7e}-۱[ؙպ].姒\l؍bN@D޿?By%e;=_ 3_|Eq\wDDDD Ą n{jjjhVFGFV$8 h4,NJmf|]$% B6Vqq,Br܊Aw8"^ᔔ8׃S~;1> -NE"bŽvE˳lXM olF'c)ӰձL9^Et&ж̿J2 Q5E d<}ǎ{g7E*v1Jպ "UVUm1{&&&IIMuM&%b,iqUZV688x /ьw2 XSiii%%? 񱱁~qg+>1`eubg'QrJJNv.2ĽsP8`SSVQbeEVAKKM--)J4ٳk)doUjߟє Q eee%qˬE'`PE8QT;HHHIIJ'ӝ@E>D333U8_~ez}_|qtt_:N8<ޚ~fc2{1Vo|_7O)--?6|E|9sfnn/>jNs߰ GBЛoURRH/3ٹ3}vw)ӿ~[1RE-+8U"f~H&Zs'WSowuuedd<+++v=BĶ'|R3Ͽ\}>wvQ={P??DQT̉t:_{JN744D,'O,((8r"w""""p;8l5Ւwyj1JIIYYYIKKhDww믿h,N>,"&~_#*JoܡDDDDdhh(# /d{^@r;zV'u(ˆ ?@{S\\, ҽlk[o?ZZZaiiB:_#cD!]uX.nWHk_rܛDDDDa GWMw8q_z|7;wC_egg1޷YU!J rrryyDDDDt۩UAw^g|{}_C&x a[ZZ<Ϗ~+%h ΉaꊋE9"""""" ?hxcǎ>5ց~}k:n _爦hhh8tPDkkkCZ9WZwwuuu`U?ܕDDDDDtU8fx{'}`/Ԉǘ]R(Gt:W zzz>,nzcXrrs/ˑNj3$F|!. dHDDDDDdHDDDDDDLDDDDDDdHDDDDDDw.>ϐh|B2MóI ɐ hT*U0d?E]~ "b2$LMM18[ߥ "&%&& ?DDWKR!R""b2$!iƳI ɐ ɐ vuҥK@4 ^W,>7;˾ ߔ/n">hw}ZZZYyrhl!gdxx} *r8P( 2N5fgVi#JR9\aQl>ֆ>ĜTMffIIN+-  nM+]ZZ:{ڔRKb{#:ٳZ[!N5Mѓ؜{Kw[!RDBK*nVF#rKRRABKVWFZ&_`@Ȍ]P\]]E2 eCCѻFt lC!'Yȑ#+(-ȷHd,;sn0z~cDDDDw%Z]ZZFO<܌l66`W{{{QQQ^^X13cF"NTgd앆6W@zzziYx96: k">11uҐJJKEZb[YYY@\P(t:뭃Zfg@ 1`g2!9lNl9IK~>F}>/eMM J@r+++y&X\\ufWH^,mGP,9Ȑq HOKKIIbXX08%IjkkO:R6ݖp8<:2Ę!z mLV#t>UUt#AX]YfeUUUގŰ.%6]]391B|JNw4 76j}fbC9k&C"""" nii )<++K!d0pHx'mٌuen=@6 H +:4]]Sݷo B"-) QAƉuEB@BP46/1cb|<.^vRXTG")FBE٤==]ݽZ,BЇ:M*<`ih45 5P7bw6ݖ5snL"(sE:tdh4Ir~~mmhh@EXx|le^=DǾ>og:X]{$iܴEGXeҖV`V9qBw&&3FcAA#y$.833##Ven?`ER'$"D`ۓ`1Ʉ V>@E~@EcӘcZ%K =X+''o\}RRR"X HF#] Х ipc2 諥千L9)9FD{VG233Ѫl}z}e?g42Q3fv{F1Pw(-,J=6:"cNnnؕ.6!].EzLpQ%m v-;:{{{ߟdY)t!Hc4]^pѪA~|t bÈxXr<~..5D:E9HwHTh!V$CG‘ZZZZ.]®)..Bw>פӧ d^nncS6% "/5bvZ^^_0$gIиP~N3&E&&C""""P/%%9p-?l !*\.$U$כensd2=5ى2 1WnӧN:) ;sʪ:i(rll,٘!jz|l3?]^it44'/YUU՝`ת1)}d*Z[S$W-/*Wp;2<؟th^Cc#bykȨb4[wurςpDS}>=Nv}?]N' 722?8OIMoʼnSRZ<6:-=7fg[w(χp%P]ktMF7^C2+9/2Llr$ItfsK Ȉdq4^5Z`0 HkJWBx+ ԎV?m$jb2$"""+,,x<WȁS1w% iq^f84kBx[g>p ے-ٲv$NѴtRҖR \ZF/2KQ.\ /({$mvرO9޲-k˒<$u8ɣ|ߧc=w-t(3LTF9jy2F@r`a8CjZZ iʼ [nvMLL#nLF?]tvtV-HDGJ  aNbb^gfClB"63J#tm 2X_T*<U?2<<+,SN8;ׇF9B\³ING)))%===.ᡴ,|҈7Mgg'N{vF$kXf2222@+ Eaaaxjp`@9 2@Uu(4VW_ߧ %d[X1ĕLO>+((hmm|h#6M^~۷#Vh8HPھțkRYYEП+W"klis~)oI/3_AS''9p&sրQYy9ʮN|Qj_xjvp.[gntfyBDDDt A9c:F*?~?"񗈈tdHDDDDDdHDDDDDDLDDDDDDdHDDDDDDLDDDDDDdHDDDD>p|>߶[n7N-|=p8dܥ{|`))) ,3>>zsrqև+77WPp#&C"""":ꕫV⩩)TzuGKFAR*-j[@ `6 !\nUTT|˵g3:K<mݺ@Wg$>(.)OV;{xebYłv=&&& ''oerJVGGF\.G$JKLJ@z9ߟ-W&VٰdfVVaaPMM9ccch'fL#^VTV{{z& Ѥ- ~ABWcNJJJiYD"ٿtss3 )@ǧBJJJ=n7zKHH7dHDDDD8&ůUV^H\GFFrCf544 5acIڊVS[ΙQĿUW +abbbuW]]um!e>3LgGT* %@8Wr%r>jڷOµ~lN&E8{[mm r]JXcŊPzQUD|VV#R"YA쮪Bϼmʕ+NWTott!T d2  okmEQp}4x""" dhxybbg1 dff"$$$"BgKbe$WT(*) A ~0R'UFK$ y`0,|l"IB$C D*)- %lT.c1DVHXMIMB|,,--EUъr̙ XI(*5-j aaTt ZH1shh,D\g p}4DDDDSp p__uM ,J|Fgf]1Cá44<+!" HT*#z&U"OJ$>mmE2HkHH~/K =w_D DL{/zPSS]!GoDLDDDDtRB:;;׮]p]dԙ]Suu5"={jjjjQhtn6a,j[Mς̕ryÚ5&qp(~9cQ+V}>~b37ꜱi3isl1h4oD DDDD˟J C0*p:SvҒ =BK$e9܇*͹:!- D/"$ǃL@$CL611!ȵGGGC!̠,oBw ʲͣ##(RoaOGyrd4C"&Vn>g@ 0 .pHA&%&*C $ uBD\Tib&yX =A#|Nt#I!D1i ,5--ȇʪ*$DJKK233sBy}}H2RDєNDŒZi1"t!n555! a>p}`@xyT65HzqqQ Dmv $=AFS58h2ܱCxޫB}q萰La.tiEe' r,)JM3gJ ؉37DZ:ӳt8F*)) m_ OBWx >x`~^^zF"cZ"lR""""H"gNƤ$!BC S 1&C""""%(VE7O 0%Zx!juNn}>X,V*+V̾ !ѱѤ~8%[#&CZ6;9~{"""""b2<t[<Њ}#6'+Ī}ell7>ghDذ&_$%ǃݗ~;i7܃#79s{ =Q{,Ͽfy ψ%(Vק\m'Vip|f >?&y,\%#wBXr?(J|_3t?WdByUYxX.+z No}N>lw<ބڄzQdo ?24!^q86ee 0ayU3\#Smoo{nH+WŤh,0.v,\%:Y~Bn_ik0afz|$߯AM'Z{rkԟ4ߟ]Z0jk٭+.MW0ݯ/%â@`2eϑ&|fSޱ'\%r/84g"|5邳ָ‹fgƤh)_;_i {lؔ߾۰)))'gv y;O˫ʥʩ\,/n3iw\qA7w|"8OV\0C#\|mb`;8Z̥ΖC=jg'E%qsIʩ{m֗0?W~bcOKpmƊ_I=ҍgb"oǻ@dE{d/"/.jNcDDDѨT. 58Fh4 @L&"PHf0k0z'\veYui^i_b4MJYYIlVgDbRɗ_v =:c:qӺmTN'w#Bl*)WMwgt,q񯎈ɐNd(Μt])'33s鎑JJJ$ kڥE/ɐɐ ɐ ɐ ɐ tӧtwmviMM≬ؾLDDDD4}} eՇ]]==܌ƗWT9MFޒQZ?ZnLbZAAQ֥67cIt e./exhhv}>oXfdhWNN[{G(dB󧦦ZZ;o%:XVVj7lhĄ?hEoodBqz >9(_GiYY7><::±ul5v3cyD@4VRaޘ<š{csf2$"""pP~Jd0)p^fll.P&L._a-f308Ff.܋+VL+555$9:ںfZltv Q%Dc(j~Zh`SS X! J1#GR5'`5dXmV\)$Ww:H? O@윜Jddj,*N޾jj!$GB_UUWcył5Y`_ʜ CoX r`FX(a1lW !;aV:36e#3)BHhv X (u8Ҹn*EExD9 Rn:4!lB_!k~5{i^x6)]L#X?QJeff&ܱ@AantE"ؖV$f 9!y}>:g 1' |RpӐ "b-8GpI*DHV%CH F!/?_8%΄DvP,w W. ###Y*dJ%Sӥu.59o6uv,EЍc:K XLMKCo 9+j4t(48@ +@&, ] 99wjxd44VbpUP>R_ii)"+dyy9WbgCQ $.q̐hñ5bOӾ}8ǡG `}dgg"eq2Yx&&#S Uɳktg6wڕ5%EetrDs8Je- * EA$@ 9.`wFk} ~#RV̙HH\`ݣ~)OE[>ĺ"vwmo|/"ߗ21ѱMP~BDxT{_q!bp|5:2ܜ7rp|(~dSv<4#}>t=hP`B1>a9a^ +*={zzzj溼H JpbfIRaa$Cb4{ M&c5(V ,ߋ0(Q_"@=g.?E"{G~_vmF35# 6&Q8vi&C"""":5Ǵ@jy6 RpGĀ{H2l"t #^w:(p\0-??dxe"lb:YCH8l7X+]6kc:]~AUjkkUQPnu޼& QTxhQdp2DM'4.l`Y`lTawx3{qɄctp]|,>A(Ύl_zЙ؋Q)V|=X`sh0Z9y5D*GhRbp>jNN* b&> _҉ &%"""Z{rzO}}}b937&8dЈX8HOO_dMjuYy9 J8gGRDє:yYD< Ñ/R\\\]]Vju9I#B4"&XL+ ߪ u}K۷^oغ>E,(ًV guRYTԠ¢"E 0ajjkك~NMMM`!E[ZZObRZcv gn!އԴ#7ܡV3c]Pܥ 5t3% rYӳx #7Pt3ROÇ i#//3קgd c0$7,%"&C""""Z zO[){:C"""":h{{+f{{{+* pҏi?m!/ωɐ}}^7)) *) ! bUTTaEԴ4UZoO2a~~~8$T{Arúcc:nU§c jerJVFƛݮVQ1uFYz5kdBڵko V랞ٴ޵sguh8=88qʄ"=4 HГ##\qqqvNNxQyܱ !J%%%UEVf 8+;]֯{n,,H0svZ[[T3`75,//Eue~}'DtMzKWX,}7""":[,+7lܘzEx.(t6&FDB"C3[r"dIэNMM!!̷ RAB Zm6QaHS111H"%Td{v*<##)<ĕXh2jjjKhr[k 6illDH *IݭP*׬]1 A[n]aaaǡCs'FuBMqЈx`oZq86jb!1R N1{;j·~~M<OdƊJڅÏ-0ʕXnn.ؘb1⊰dzFDxEĿ̌r:fǛgU**+"qhhHR ƱS,fzu8hQLy[Rt@i lb://omV*9Y" dX.JPcq /( wvt\.i"BC23Mgee'&<11ҢVl`((,D8Ǘ/o h+HcccmmSâ~Wq'E=="Q?]""":F!_H GQbc& 5&^oxCrsr 3-3I*±p2\W͜z||Brrs d;KUUU0RNMuI"(4:7<4p:<"kEEuE!|[{w۶!%^+*S\MH!P]EOd&b2|%\>(_8ogR[ls=gZ /iG믿>::Lb w{챕+W~+_Y)E#2E͢(~D6繋/%49g,ǻQlԀ.xN`juuu=fy,Cņ"W  (KJJTS[u,ҲPZ1C/[-[?PT 8v™}s6AXk g[C 5 N+4^g({UIdŇ~8xdN+//}wlhڸQt͢>QCCӟDDDtv{xf}6lr!JD\n'$I>5t"LE?%h{{#ٰuЙ Q(Z*ɒ&gN%hD-ibbbCN#P932PgHvԊ $Cb4SBcȇFB|B~ͷLuu׿o}[|^zkV%+V/yK_vU>,]}{Eb$ޞd$ #u9Xf޽QbqiiiX  fF#\l6p!1Fe'&zzz+*30#3Fؘh\Q aO?9iXf=??dxxbbr\:5AD5uQ-KJR)Ύ|e Za2$ta"(s6A:UbKSaMLNCCCc!& _Нx ?_eccc.¿{y7z}셣u&ʏ,jlm,*.q(t;q(*.Fkiiz+33w*x[ZR0@g-x<[Z"Rʕ2WB55s&JWXdΑt,>TV tuvl!{8Cp|)HWf¢"a>#~ tlՃ7)UZѥ^qqGFb2<5\|őJ =c$y8~"/yz((⋃%%^Do@ZTNaM}G<,aig,Pfr|fegGԅ,a͚yVS9fn`@DL[FHԒ#8tB&nhp3>ȏEj5k.%لv7n\g_HLwyq5::* :q@z<\.L} K/mݺU[y7xl!"""oe24""jUT^trԧrPNlloꫯz<3H$^jiiB!W]u^P(|Mp %%%edd3BNw^KK˶mT*^o)<qƍx}~?NJ‰aX/Bkk+-[VX_UUUȖ7xcII T"""""Z:vA8'*** aD ofEkjjr\p֬YsZ,Lv9LOO۷ O*FmF Js?KݻX;"""""%%ZKp"ZfDDG8gJJJkED4'߯jDDDDDDD;&C""""""&C""""""b2$""""""&C""""""b2$""""""&C""""""b2$""""""&C""""""b2$""""""&C":rt~E[~ "b2$:0w,į(~KDDvщk__bo+\X(!ѩyLCDDDD4MJDDDDDdHDDDDDDLDDDDDDdHDDDDDDLDDDDDDdHDDDDDDLDDDDDDdHDDDDDDLDDDDDDdHDDDDDDLDDDDDDdHDDDDDDLDDDDDDta-?~TZZ+ddwH_|/^].sϿwojh/BL6Zۅ;Mpwo5~+GΙ~Cn';;?錍bL槞~ͽZY;w﾿ _ug.`s=퇎[˻麺7^zzF暫}Z^^.O}?-;MCCO?V333ׯ[wg>~o}aSRRDDDt1Jr鎑4y>td_P_YYy;;h>s{]]=+V9]vo~Ip8?xLI̹֖/G溉36nH$C:QϤl߾l2y<ښќի֍ ??/??_۽{:n ł\ӛM>ܿkn: m6(Jpݛ6!t:|@ /V&i07o>/'f3&֯oDӑ'RIcZl &''Ugy- UV匎)JP''#C◿t%%h8b}Mfee(- {dZ_$MJDDD 燢κ~y8lkkիV!ab˖OS[Q[+/ 2<<[+..VGjjmmJ^CD|||vv֧/VIMK O_djNMM]yoT*Pr睷owdy 155u͚)QFS*zBWBCkdee!'4qEKK_LH{LBs.͛jϱr/wW:p䚈贐%v0{;zŖ˥RxVZp8 %@LH$O֪jfni ]Z+56n߾`kklll]]#>:;J4f߰fmF-&J֬9<m{wǟg;*1Z~pޟ|ߞ={w(t/GJerr2b020sǎm~;|BiZQ97|_>֪800zzz=+B"t. QJ/N? =DfkСC52 tOlcfoVbhFž%%?޳ɐNΐ Gj4W؈O?p ^ @ ̾\/bșu[.<X_S3==wチAx^?Ȋm_.c:eO `&zbxŧ&U+;g/y-wuu &OY(4ɝN3$"""Z=tvvUWUd A8i0Gl6+> EоÇƑ.䢃[[O~09<<鰺T*Esi[o# ƛo޹֭}jc.1QdJpݯ͓O=m%Zb]*^}eoo/֞~NVONN6ߏePU snĶGoYga<!"q|otlBŰ@Nv6bZńpM7'ܿ4== w?+*rYkkCO q̐h^HJ0jʢ¡G'WӃo,DS(o7?=޿\|CD2ZSSgyNzH࣏SzŕW^1V?p;["eggymjȣm$kGw~z}Cz9WkQpiMuu\ ?z~< BPYY+X|s箶C?X(f00Ȗ{9>dsƿ~n9g+ Vu166VVVƾ&""SNOO# q~V]_$M^5q[v}GS? NƇ`JJdGZ }g*zO1af~GV WGw?4x-9E1&3ϲ-r ? &YzIg/ww wwg>uKAݿgctROOMla:3% b$"b22{c̩]K>9VuEܛ OIN$ ڷ8W&㖛dE&'riJzOB괛" ñ୙T56/;)gٷ /+h4K5X" ^%]|^׊B-~)tirzj!wKyUy%<%g3+Dm. Wno|>;}wpb>COX_}k0Ť.:O-"d?sh7|^}͖lזO}˦ǟELu?C}e_5~ϟQjWT:zGx>ハ{$8Z)HPURB:4"DKWE^jxOS.9oOWƊS`q/]zW frRMnU/GMO`y/~HF}Ӗ_M$]|^LFZ ϑʫ\.$/?&sԾf[ƜS_2E='O1=Lt-cbPy( ӱqٶGwy{8[;=O@BI\zFN9xb]ǒ/q=bՉJag0\ӊue%|gs[>Ƶ84Y0li[|ɗ]. =G>]pǦ[A𳽹m C#[:@:wwdow0_#gz F3sfF}dmMN| ]UFOjc*aM}ڿ~'?R/9Rky~0DDDDDLːǫ7ccƒr>3sdrcI³#^Y$*űG. x}8[}kx1;1\wEIHk1=g?(tH84+C,tuB7 >\ uVV8&Xaj~L3i|h&]@o{Gi} 2a|]u_+LЈkG,Y""""": IoކnOII9 owg.TXJLk6="36P_;h:'_0?A, D)Ya]IWϽ"<1"_հnZ{3M?}Ҙco32WPDk|I(4)+.P&}~I rcju M@FMa0*#:#űʍ-_A(!3 lA(C!""b2d2$S+VRall%rzzz233DKh~V]_$ ɐ ɐ ɐ ɐ ɐ ɐ ɐdmr&&={>:i=ݧ~Ýh3 zjuOOmLJJJMKKII9r,KKse2YGSSSMiT*ۻW_[[+x<;wh\N.xƺ0!H2YZZZ~ADQ xtS,%$$`ڍqכqU`]j&|GQ0>x09y$H2i"չ\.^ +;=#x{]ԮXCI 2sMjjjZ[$IǡCCZZFC,t8 +W"8N9OÈX[;Ҹn0d2U A&h4BZb tbioo_zuxu$im/MRYy9z>r^,]UU5ߴ=]tog΅ɑHN8*$C٬NN^(zT,.1Cށh;`,t:]FF&0={ĕ)d d@G ^"$ T*l%CB0)l2@$&&&8D6kP dffd2䟡R)OTfd  `pL,[IIIQr8QTᵆGFJC]jnn.&:V$7{QFFNDP*)!9:YEMKpu8A/,((++F]|)(G$'Ș RI+ =yooo䤤ʊ ԗ! dVl@yEZ>ӪWYY1̮d+z僓~JvѐʺWxM9J KBҾrmN?Ê & &Wii4/CgK\]]][=c{ sʌ ٵx`nn.3v_9(vquSe_\y2-Y1cjIZK;}*o9jTff]RDӐм܌t*$ ݡZYZ)P)z1bDH͕+P4,<\yASmmvc"#MM/>,$??Fz[SOطo`1iͽutΧ'aCn4*aB8{(uueʨ[]@%%%!Qbz^ZO~]0++k0&slll:#" .GZVV/ (77ꫯ^hdxYz7333U;ZZZ̞={>MsG455I\;cccW_eee9:::;;˸@2I1a„QF]"7~bv… mll.JJOG### $ܹsccc۟I{ٸqcTT}'u6m$Q6nS*O:_u%&& _|ʼn'|Ay֭[?^SS#sȑ/Vʕ+YIz7o YtiׇIgɒ%ʪׯ_ lڴi255u텅fffR{k-ܒ.IZ 722zdERGz%?ϲtΝqqq'NA6pY`G:Ennnݖ[lmm]]]322^{5/֮]+i . mIIIvcHVK7n;;[Kʪk2eJHHR۴iSzzzCC2ۃ}HHYUUeqQdhaa"o KJJ TCY@K,JcuY Rt['s$"66sLV%Kt]&&&w}ᄏfckk{w(]ܸqcrrrxxY$_[JAv[dEе񮔷t[z5e_k|:^|NS3BE_233iFF䟇~xժUFW26mZXXX)f3\]]ycǔeeeg\bccQLKKiQQQmm+!N_ݻkjj%|p|LL̿o Z?Eaa3dQuuukkW_}eee%K\gee͛%oSRR$I922!Oݷo_NNJoq5^@g޸q{')Z9vԩC'&{5 pQt=mdxҳ6l$n$>裛6mJKK ^pdB|kYxqCC򰇻KrL[oݹsV=zr#>{~mii$@ qϸ hʔ)&&&}^^cy9o700TK<==o)((VVc@rrrsssKKKjjN:vz^?y?~kk”kkkwwnmҤI ;8v^|Ey@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $C@2 $Cp1eҲ'zZ V>|2 ݻP>88ŋ<<ܕ9:n׮v[[[5\]]WzB߆> 9僟~YeUn)e=yģ k]s;7aXۢbcc3;6$3BBbaiSBBU_y5FTO?ں1x?͜9Z*Lݽ3FNfK)p[[[y9cQFN+e__ (kTR%7KX^*J׿SXT8rĈS$C$^ 3w&ثjUxxXuu'dfZz]]\\³>+[rMʯ9Y̚}I}Ȝ!3M4ѱsWO^x|)k4H .M_0_Ilnn.}PdJ__> |g&;;'$$dĈҲj*ew~^7Z;;;eixxxhhvUaeU]^JLn$~ۭR033i]]ݏ3: |g'1 ѣG=J2jےe~~L77XذaFu^&44*2π* G ӦN?|Ϳ$'t >S`p ;B+++)$$$͛6n\{r§z?QQ۶6}Դ9c'A_>ff„񦦦}cǎ˟=w/1" ,465eddy͞EnnnUU,COOϚm۷GFVջ/)ѣQU3001==Cngg4|x q)}+)Q޸s73O?' 0P))Ƥ?f&&&͜926YΔG:,KOj|n6,PhB??_'JۻwTz!08`hJПJ#ǻko'T}_jGZU(«'O1復eff566[O:O=pÆ$JԩֶӣL /\p3NH=qʜ6### xIdfzzƈo!i镕ӦNO?+ڬVVnnn) MOtqv9~DUUIJJpJ}yǹ+ZZZVVU<}`{{A [[[׭{O?*VPPrSARAbbbrՄ| !?)G;9pNj_=N2Sx)5,00 3뤼omȒ >Ymmg2ܶ낂B)|Rv-[R,|H# 9\)>d>j8i4e/nMI93bDĊSRRXcHa`feeyzz>RPP1iZZ=xHd$C@2 $C@2 $C@2 $C@2 $C@2 $C `dX;0@2B $CpB3!c!GaRXYY1pnP~E巔$iieee} ZXX(5 Q#X([  WORVZϜ (!>a.G3΋L 8[ R\XIIIuR06<{aaCTTTdv^ 455ɩcppt^^^Qaa[{ChX]yy999'LPNjii9t`}w $C!4K EUUUE9:PFFFg} ?BGGǠ`I9ice~YiiaA#%(8~<:&F混K t&&&F$4NصDɓ|@2cg?IVffff嵵ۇX[[+[ZZ===efGGǡ%K ?_BWaʻrOh4Rnhh 't*sXXt[ ÃfGyW^ʒl:j)tACB8P[[+/[[[mllK{麥!ree + py:m$ZzYh7rH++"ƏWNR#FIJ=qBU#r|e׬T wرBy٭I55*,]jSE$Ϡ`e&QS[%tڑ8W $C\q $)eWWװ[[['/ꔐsrrr().V݆,`bb" ^VVٹYH':I}]d$JzX R'qH555> ?j5656f)3urJiںi /oh$Ƶ9tk ;;bddTQ^WjZ]A7q1d.H83QsG{rsshb홓:nQν,$.9J9WZV)$'KދMzaMMM5Kdg744=Zy)N­NH[ڬml8+!!H㾦M]Р<'SSCg鷦nHrsvqTRZ]]#e煅uuP_o8ߵ7>} p9=uJjjj*seeeņTWwttTVVJ//^[jR|KKVɇ=ѕTv{ɓ'kkj[ZZ4z[s*7WV֦>yRžÙB!->CӅ:'''м܌tIV!SyjEpHr<<<$=rDedƆ/倀cǎi;:\\]C$ +++ XTX?"]]]%ͦ8!agt ?ť)W𾢝OQQKzTa ay]9h H{| FSS^+|Z:ens OH;8Wh86ح`(/}K$CzJtzƽ"C[yyyFF# d+ KHiiiEEE1յL$C2ÇI~h4Bpq{TTT o)C$C2L, $C@29h4iھjTwXߕ~o7|3333";::FDD̟?ުjVcza'gggOOϺ}E\DzIkQutvP:"v;wnlllii /hcck׮CK \xTꫯLLL͛sfNN֭[[o,XP__rJKK˗_~Y߹sg\\\uuĉҙYfmٲE#|7(̏?8==}ٲe111o OHHXn_~eRRF뢣U f۲eG)++%fO8&Ո*TƆ/!pq:::d*M9%O2ԩSe_|w^Cm۶I*=z@IYERY[[ۘ1c|}}̆ )HZ(%g\Vٍ7Nށ6o,srr>3=ckkLIRɓ2255"L#""dGFJ%6JbhR||{'fii)/,뒾(ݒ%믗&L4 %$Ë;+$''KpjkkS-[LI>eRN=U>S%..nǎ...{zK rs{ٸqtU׬Y$_^/'ܹ3--MVZյיvkۇ &]ڷoQr]mP:&*&YYf,pqq&NX[[i&yi$H1cHC<%ݥݽT)Pbkt4*((iºΗ̮g}VV*9י' S:}xWbXJUHT^ | k…8#iْ7l/a/77W9sʍ=DA N&L Ӿ!o9x`SSrCTgs1E ͛7K7/R2MYYziHxeCE^|Eʣ5 #Ѝ$IW9.)3/ N ,'|2cƌn-%%EҗÇ*Kd1bDMMĪ[r-SNjoo?qdŹsڹk"""t:]aarq /^PUU}]w*.?~aGG;Cf3Aj垨My)SwPҲ'zZ VRx7OH'V<_9?44dǤиe˗ INNNlRm;v|WRRbmm=6jѢ666W5L~4##}oa-{ف6,,˯wrrdʕCfgggffPh4+/;flmmoY" ѿpYQVɸ^J{KvĈ)WQQ0y$^>~℄1Y]kkkRR&1O޶_vYёrxr򱉱26\,[ZY67c, [ZZ?ē'MtpꗤWWאĤkg?1 :N1Cȿ@>>>VVVC,_Q-e(. (% ]ϿSy: ILMoqQk..䔔L??_)>|Dd?W*(-cZAA0_d}&/?_X($=#I2=z>&&%I2<۵HTu^[Q`kkƌ-=˓@"WWײҲ2{{;wI!""| k Ç|XPPrﯹfՓ'G+| !Yy2]`4ؙFR.HHH7giYi~رQF~x JyʔɚΥ6]dijRa6^zW?ظs<ߺ>:xW_mۺuIomr eie)^665edd޽G^Jͭvvv:cq)eegkhhPf}ſرVV]o*}M###SzrYRpqq6̔ sM8w?ݷ 3T st:ݫ;3 $tth飈g-F ̇NNjk*娑#_\*echB⨻G6Ox\^nu?JYE7(sNWsrNϹnr |!+:&ZWRR!奥Ww%#ﮕU+LIIg >Ï%N177Wӷ41V*2۶-tҤXfMMg\ZK>u*!33K2HՒ lR!z]wu#GtL'N8qBʆ&MUbbرQ9*KJJ;o~!)Hf[=卉I>#pԴ rs$VVU;^`_mυTVVxx/aa[[w6uD۪={nj sS:os|}AV!Ig!II$qbd|I}tT^^.II.32rGRRR;ܶ뼼f(ѫ iLHvvvkk[dd9s1uK=tдilmmXZZ;Vy&Oꆆ_A>477766t:### T8c#ovee]QQܹsϿ{ܹsƍ /0pO>2$nm…ꩧ$I.#K/ @2J, /H&llllhh0,ڴiSVV>|ŋT3z~~~*Mq>裔kky^~σQ_}՞={ k>4kaa!qǎh$)yIII2{2?33S(kbb"eu:ᅲc...SL6mZ! ~`SS̙3NnݺD_|q (++ݻ]y&_~VMГ9O<̑7,!ݺukjjF)mJۨ:WEsq|L˗//tժU.ٮ۷jLGvGo^ygI}6lP7@/pϗD… cM.QMƼyTKSRRFQ5k,+V0P[[+@r,Ztittɓ'_k ()TbL%>Ç}C*~Y#G\wuJx#9D"v!ӛo]K;x)S k///%w0&ݐ@hX*&00PZ7:2byyyʕ+%Jپ}s4혘 u2wqGeۥG׬Y# vЪs4 $ɸId*,Xۭɟ/K> WW׭[fff* aI}oei FDD&HO| kH?9sHx#7߼gϞ]\\,$K<3UUUrPPJҲYLz6i_$(gzyyN>GFCCó>۵@$HD|wlCMMTx uD U?v]* '$$D)5*G; MnRWWiӦtYnuzd-aaa҈e3yT Ut[GXE Hܕ|1d]bϸdx6oz{wС>`۶mSNUA39o(%guw7Y]/ Th"LGGGQ;ׯwBݲe m]U캍dкٸqcrr|:f͒p([kݵ„ $(ɶ穤22O>vX)ucQ_#ma-bZ\"4AAAw|%3rt^"gg36RXXhVѣ%Ⱦooop2Sfԓ;iMKT_]P@ʠt_9 wޝ*IVtX`OIڠr?"4ت*I}(dܔg|@|_7Ui{htKQQQ~innrn*c5o< x"[GYK/;za*K±ц"$&$O2HOW^QOfqptR$˞ďcǎ9rq0 '=dKL$jw!K_|EIe(''^뿵؝;w[.00g{zzJp]vD2<>>>}R6_)o|?|HHLٳgoڴiÆ $EH8q9s7@i䥗^nOs$0H${=EȖ-[>,M !ϯ#-Y$..N2Xj/KKK%i}?Ϸo.F2 ȆKAgVVl̙3O.g̘!vڕthxP{ssszZfIRDc8 `ZZ_$M 0*$vv u =<J-&.WٵzüQpFCSuuuA~䷾ba[[[Fz]nbbbgooQUUU__ߵNFssskkkF=Z.)3F׳%t:]>}z ɍ&g󆆅$'ˑ#F|`/!.Z?5^Raw\<ýoj<{WOd騩k<oW/}mmっ˶^Fݭagi83<b7ubS^zba_wxL\'pv!Wt&vū_oDi;q\Жr-*F?}W =ڵ5k{Yvk%SWOd8{Tw:@a.JYܢaϋOuoK֚N-{Xiu_g[O|p6Y|e{|j̈}}GME XZ[Yük {6z>U1F*##GnU,--#BU&&*-L[ /|Olp6٩\+[ʶ'oP_Ϗk|][me٭^~Z:R@#3S6ZX\״ }gD| :JJJBBB.Ϛu1 BV#syjjz~%+H!d!X3HS/sA| {x.KE@2 ^Ϯ3bo)sV#+w!d H!d H!d H!d H!d H!dgJa ~*:3uQB3c p(C!e2@ P(C!e2@ P(C!e2@ P(C!e2@ 9{0M P(C!e2@ P(C!e2@ P(C!e2@ P(Cq4z^IENDB`screenshot-1.png000066600001231263152141651160007603 0ustar00PNG  IHDRtEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp }"/'IDATxxSUѽK]@)mLeʐ=TETPTALeZtҽw4i7oH:BiK)ӧܞqM7sͼZ30,T4444@1(m-=89;PHTT(P`V{+//G'$&Q碣Q ߯_gNssw37`XO>|`ia[oFGF_|v":.((AW#Hq]tҵ+gJeP`ǍRYRɓhb=uf=|x-8Ǐ=v }ƾZlپC=w1ߟdV™ԴȨ~V6;&:F*511TSK_L&W*u6mtM[%mֶ ??##Tٳ{I'@HH^rUlϞ9$ϝ;wʕ˗.9s&7';wKegSXlvm??giM=}7boRKZ_^S}Q+K˺e33Z ѫ7W~~n||J hTcc ͛7p,vJJ dee􌌌F%41q$u7oCl־޴ٹy1w 0辁m3u9?{/J)VN[!niiAՕ{^/W6GU<(oN-ڵqq7oSwpphrо_~}MuISg9tDNN.^PcEOOψ][[4oaff>`&^3*>oQFDk%Eۏ~(Nۥ \Ιq폔 ́-=){? -***--}$#Ǟk\.eS>joZz^C"N:8$++ݺsc'4o,֊_yh9yvtrLHHlݪEoXlԙ&"""CORbl2!!٩VRt߾}唥O*,)0;wՊEMm-))kS6ڪo:׭k7]N}߯\~'LÇs62{?wZZX@96azR1Gg8NƏz%=^<5v?{޷WN8ynj^Ԫeˤ ^^ >qUߘxyst|+VV}z=omyׇfȨݺ۴ݷLjՊeQImٶT$3<%5M=# |T*\\]'O3ŋ5&$$ٳEڳz/>+YҩÇsq8u?O8~tZz_6}V 6,@kY,V\.tDXؿQ$*0cZd2n:)Z4[ewiOn^9N^yii<<ڴ?ص{QTT*U ;fg ޽w]ٳ^xShccd2O=d=|AIRTǣ%V"Xv_.^.1&FF,_k3**v_R=w?6^ ڹӑc'NԔTĄD Ҿ)HPwtrpwp"ꨨ(L֬Y3ȈHWov^5yϝ]N^~~zzUw-4~0*0XR5mliQvАǏc[y{G iӦ 08LJIl\HXPon 69Zz^8uf}mgkKOoZjffs>E=4, 5p@־ͪXG zk!hNGcb~h!-i9Uaa^!!4#]\\\],ED5?O:CG߯ UzzL~|| ҕΟxQqtTTT߾}Awh޷7BBC bc$$&-Z31117~4YW ?gbqɾ4Vm;v}8s+WYvv[mOjd99{wR(w}0Sxmf^+|>}m;6m(rѣG3nqh3_t9!dkN9:M~]^k7@-tnOnj7qO0SfV?ڼE Rrr߾Ǎ-n%u~Θ9SewKJJ*F^^EFFfA~Y3b.]X y{ 媴k׀ss"""npebbmaauhTe#ЦM넄DEP&l6ⴧ1Fө)11eݹ @ U 8qPۃ7Q -  q ϿY3ss3066ѣzݺ>z\kNT~:]{MLLN>Abl6_~ڶcZwENbkk۱c\xQPF}P(AuؿAA=~xWW hݡ}{ݺp8XpʵJ8Ht(EkZ54;\KvY[[h9s q0ʼnNC%Ҍok[X`cڵ?ڵ1dYBB/_?&L֤gZrŕn]iZg'Gu;F?| .lw*ܶWW=7߳c+FS_o]pC)p-ϝz MߏH*pf mL&Y!:;;ܙ,yWG喵;y/tFFF_.J(9/tޟpίZE_իV #c'N}xIl_6 6[p/]˅ݺvVϯF>컃/ZŢ%B:;?ccip knm&Ɏ>R*7kqsoAFFB[ԴU򸼕+ЄJ~EHͳ& 19%  9u3zN7pJfM&h65 RO2wvZZWKQ t̵V;BfVlyƏ[Ƀ`me%~([;q̬,$'m++uFZ? .0x[Y,Q7dKHX`T۵Qޯ[[dddÇ̪KF :y߷?T?*?=ok:8oW־:O/oup/ 8 5*\>-j[ ۢɅ*oVSϓwrt=틗P`j~E*0̣T*/]z7m5bxHA<Ų1Ozn?=~KӕQ=_{3+|LfCViogӳŘ#7߷>I^CЖGV&; cF016ڽC]S[ zs/l?|蠟~GRZx:xp~@@;9zT=;ծ/##gn}%)xocAJR)=nn̬82*ZTZ[[?uC{H|/0hU,<"2{\QH{3>ˣ9|2w6̬U\q5/6;;-orZ̫us 8C.(00ІݛxNC%Ҍok[XZϝKFv444444 H H H H H H444444 H H H H H4~T@`LS1S ` !+U"PAԍ׬щđmc2`x R%+rYb|it .Gga|_? 6`f,S3JP+Jn_s]U*E!Hv-ͧҚb1L*QJ%$yrR$br89[&63/ C Dx]026b6cKn]-SE:3w88~N+ +Mu*`lnapa%bihp˥! FũX!:uuA.ή<fSY곑iKKI& .^D=ˣMy+K3Kn]SfW}tVVVӦM'NأGeff&&&Ң跃âEPɕx>tPUUZPPSbǎkooc9x`J(ܵUrC&3*,6hvRo۞ctרP|Lw؉~[dұ} KCx֭G=Hef9s W^}%tLLҥKgϞ=rH'n޼bv)2w޾}zܹsJE"W_}Ek )2dg.Kry񱃒[Wk EVF,33n3OG o킃?ٶ :**11/*3&;;ҳge˖ IJvFו/[Pdԥ'GFW,H[ s4}k[ft!==-$$EeffEĽ P8| u2Lx톟#{ ڴV)g]uꅜ=q~'$3~r@;vws-**yo'Oqm8\Fy墘uo;4=8{sL*֊+*{TVN}BCCߠhbر}m(/?RRɞĔF#0\@KRU 'N237*l6FhhsDr]{B‡ zs5Mɝ7# T >_R)m8Pݱo]qkgd⠾Ҳv}رO>gϞ p :_H^]\\M3???::Ke^^ڵkǏ˗//\̬Vdkk۲eKdBf͚/9_y0y}I'3ܼٚ7o04ZZqlln- (Hx}mV|gF~f5erRC%i5fCX ,oQ._*|澞l&CG wf\7>(:[ \5] :fX,H#vlc>l k+={P!3(m+ $%¢ߝrYGc'N;:44flR9zhѰ^~֪kޝ2~?~2g:uhߵkgo(BS`o4>h \xqP_s9r~Gn'e{ݿvZZZeK0?{^|Y;={4iR!\D"Owߥ>f̘>kR78%)S999ыT7)ٶmjkn͚5:-ZΝ;UW?|aΝ;Zw$44tǎ=R!>kK*) :N*oySbl6OOM6Ϸ9ׯ_ ӿZ+q͛7٣ѝU Ǟ^T.uy{L'DUienQYE*Րt]-:}WRY7;m(=_ mjf6z;ۧ_w/PSޟYCNK+@vu9u,YP;D"۞U-++K7o\Ys)7˗SQBqܠAΝ˭D_&mgg*Tnܸرc}]uĉ__QbA՟nȊX[[Vv[*^]reeHx߾}/_6mZŒoݺwA駟R 1cKeQ(oO67gDŵX5S ,?9ṞȲ29ed*]?]U|,ܿӌ64N8u[C52߻WAY.߽{OP~iiǐ(Nןyݺuhmزeˏ?ؐ>_~%e:ݞݻw딘j:V^]Yk׮v<~CGlP538yh>/ K222h S;wܒ%KtR4f:S&ߵkKeQd)rb\Z,ϳ#qiWЉR'r^eMy'L˨[lg\UH{{{;99Ǘ ?:nKpk(t_ڙ3g'Nkp999?V$ގe2چ .<|PgΑ#GBw9ڋZڑ#G|3pfƕ+Wnٲֶf{YAzȐ!zrpp-4+RRRBCC}||g[fMllߔ_1l0zq1ʯ8uE_\ZaÆ K.aڵ<<<}ݎ;x>JeOdT4پ}{ZsټysmiG\]]sssu=pB c D"ٴiS ssboҡpifffNNNRF ߵkק~j[6# i{4 )J¢˷ƌS<={ A Ν;W^Tʕ+a{)t^_׮]KNNn:K[nK,\@Ҿ}{__/ѣP N8J%M^>i)/@~N\bʖlY6l{/$1f|rNNo޼=υ MVuرCmٳg7߬6lWA~XH`;w4hЩS4[5}tvtt\h5ҿɓ'+ƍbeȒ)Es\m;2U/pCiɰQ âbi#f۲k'm27k$) (HmYʼ\_4@fp $33355UY[ʇ(&Ŵ(_~])k֬|8?,X $$D{6J;U7R:رcuꊢm<,L&w+} M+rqq2dū Yt?>Gƍ6H\|YpكimmtR*ׯӑlխU/W]KLLԌ'@i9~mMֹ!9: ĉu.֠ʡLꓪWP8LAX"O3Yc0NystiLTiTsugLL˂tBlLmm L dnݺR@ 5Ed `x9s4jq86Ooh}LB5vjcc]Z?wY\n_|wP(o6dȐuwOwFZ~dٴ BC{ܿ_3ݣG*:)xxxhէ |E˩bޚi;&}܍_*mt4_`sb td뗞"g}?鵺R鿣|L*zjr8 .lҤ .G ,ּysz(!!A͉/WFFgЮH7ao%%%N:li:W+Wϩ;mI=oV ky<~S6 pjNd=--->}ZBGHOOǻ(:qqz45hNEj Ce5lS7afeCݾ. ~ +b0uV>3_+*Y)144t_~eWGB*ei E_ 75O?i.sU*N\ŪqܹcǺ53-^~NC= |X,i̝;^JRnvLL渺[M%|V QZ.Yvz-TJEɍˢ3r~*)JqjZb3ye=U2^6BеGGǙ3g޽VR4U*ZeGK} zڠ}˰a穰1A0V{Y'ኋkƵ}x!ĕXStJYd[M|lGתF e }Zx-//kD\պ* yC\5k;V*pTZ]\\(o߾C e_&n$m&9k֬K%~31[nse#ZUMs}1^5~5iBQG>"c舼5Z~41vJ?qO$7HÂYp]x.=l3oI-:}Tt$ّ5+:E^"?[K<LJ,v&8R# /]o377)7~_"SSyqm%&MWQIEg033/ʪfKkG祟}]ͮ<^ׯPx5R)sr}n2l{ﲞL&ϣ90&Z_ EFZѡ?Kݯbj{zdm\[9zqlJ.G׋Nmt3u}o֟m֭/_Csf(f5.cn5* m֬Y oeeSҳgO^CJą]6YKB,,`1{*e?{o<-mnvjHOe5Ғn9Mxނ]Kn\biz纗}">=AׁkkӦNIrrr])`돜ܺuzz;f!_bbbSxP>B u7Ȗ!UԩuKnժNݻwsrr^ϗ5z^cV hgfzfg!)Q)EJL$ ؂N&cZ|8j1deicXFd Gеgٝr puE7]iJd2??f꺦1jqqq}Y,G{#Ghb/V^_E ƥK~Xt_=[ll޽{'Mk)JK,YjUF~h{T_56ݪU+M?{l޲ R4?xxNG*"7G&%+2hY{F3Y&l{{sn+_G & YBgvGA@G@6vinF`[ۚϜS7Atda>LGUZZ>en6;4vz쩓"##,X0c oooFy[-[oSԱcG''NUZZO?͟?_wat4eQ ׮]4hzfBA%%%%***00*U‹oիWҸ}h(*Pfʨ:+uwwps]4ռQ^|zuᴁU:dӃGvuuU2 N:}QFuE]{"O>$$$55u͚5׺ukzcd͛7/^y75AԩSn 2Tf7q0~k[o4UI"/G, #+sEb"344q/)CW;Ԝ ;z9. GUѝ>8TRxf}YF&3>. xFü61͍ uQWEKg{2iFcҤI7o6w\ ;qzHM`F}m77u֩;uwԉZLLΜwʩ+ɢ~~~O3pfJ%B$e~BD㏴jVi}||F9U?mT*2t|:crF;CҥKfͪbx{m۶LW!WXQEB5WMs4/ݨ@+}Te%KqSHr&oϯ=?ԔcdTn /ϷIۍ-ܝ%4n-K''(hr&_⸺?}O_tdɭ*>!H4B͛7nZT!7.f7Q`ohABE}ᇕ5-:i__{ONքZeU_PVx'm!֭)W6(ET_uC íiO믿n߾MgoooddD!nݺ5w\)\… ,X3##㣏>իW)NRlH$tLccc߿/+nS4gO6>BŨQ٣...Q1pTs_gjݬ^NNNK,YlYϞ=͛?ӧ2HXEQ T͟XڵZՌbP(.p!3l[er%Aw(k~{/dؘҘ8vM-&O+>r@r&U\,qq3V`cb29MeҐ}҆9UŻIn 1fO8bU:uj޽j߾= Q,7V/(_0E}G#FhU/ŷ˗/wX_z֭ҥ!3Wubȑ4Na@Sg38EqQуoTB֐Jno\SP)6v0Q7qlJ!za[۔mYRT(Sf+ٙlE^P)0T*&GV/c 8*nZjEb4>|822u &wϞ=׮]kllܵk)ScBn<}S5WWM6ݸqرcaaaJ:XZZiӦgϞV>czDq@@A*ёri-:wlHc ɜ3g۝;wTi7oS Jlru[M5OLOC'͌6v2|~tʕ<ڠ#^aWyWuަs/_p|;УG\# Mmd(;$s!V\EJbkLMtbMQH?viQ,g)RKʓYKU*۴@-ɅԕC?.,'dO5?h=ͼ H(9cc#MH$fcKMTBoC %*f&M(5('PDzoA&H""")4E\;;;'''{{| bqxxxVVVQQG@ɜ68JD4?Q҆@aB֖j³JNNVyK}#k::M>^ut~T,ժՃʪDGl霡o-ڼFhCb(KE{KުYV&' :tar䤂?~{4w~XB#+OIܻ].Of0ޑ۬}g_YEDtzjhW8HO2>TQf׮]/eLLg|tC hnW,cc\V}RBQ{Dz7;߶ɔުՙGУԙL6MttՋl\24α(,/>zinAޞ)Z"<(']lllN 4*믿|_ LS3ٟhBtDh(>rPd2>~}z*K#Cb<#=(29b OrZJSxf[XM&EדAMR޶ur۶!}=lk6u.'Z-39%%)) c2l4JTJ/~R"%AT񄝺sCU\$:u$: ٔŗQ,gr8f$؍Ն 6AѮ];ͣ/֞yʪmmm\ά}M,-,joہ ۬%?ٖR2;AtGרwE^)JK\PJkaMc_a>,d8Ev,65?k~}h<.w҄qIIVVF=W/yOkWΟ:w'̼/_\=z ֵ6uvrċjS t*Y4aiDXoKJTtv~v UvRzabѩ#a*mmkz(o"HWl׮]>c#Iݳ._6wڷ[GS\RR(H'$zo'=}*;uh\½Zzp-,:ZkiBtl,!NGAeinHN)SK#C9M]I A}9twQIIY6萖Vv]$s+W,ʾ{/,*~ܬ߷>Ix@-{oeX4l2'[uug &uURIiT8mQ bnn6xP''j +$X,VIy3p桒fjKWL3zDAA Ս?oڒ_P8n;VVA{k}g?633+*.V*x@ͣc]j\/FyDpP+h߉)},5uiHݜ'wШAm"+S(TOA~U8d/2/4/!o k7@#]?" pc*Axzk744444 H H HC㐞m6HT_xڵkF}YYY;w(""b޽~7@*j mwܹz[]O^ Tc/ѕ+W6ɧO9rq N5k֫WLfeeU^XXֵk׺Xxjj `aaPpp+W&LSc:"g |p{7ިp4mڴyu)Ry!kkk7onٲeժU5r…cǎedd/˗/r-޽[kuAp=BQR}lذbxzٳEEEZZt)hTAp//oegg\>sy ϥdLBݽsNNNfffp$=uSSSڞAEGG1qDoooJlvczuvv60E'O^zuvvvL&} Hkڴib&[d%22$$$Q biiw5uUͯ\.,,~ȑ3g6iĈ5HHHǎ{ @ ݵsޭ OII=~'U*D#ᡞbX:3X"==vЁRѣGϟ?O"ɓNORSS);wrHs;w0Lz￯n:x`FFeȐ!.?Cf7nXnݯJϭ[֬Y(w}뭷ƍw >}L0!77?3gf{Ν;O:UgGE(_wDss}=Z-SuIRWWӧ{zzJNN?~Lupp~ֽ{ٓI;~?iO>LO)))pm[ر#(((;;Q[RR=7""̌ꇞnbU즚L&[~}ll,Zڂ Zn]@_tJ̴1cкh'M4ݻKul2uqxxz~h:5b۝FԬQ;@ݹW"lْuOtӾ_, HII}ý}v:+yyyi:HOG^M;]=-6??^ m۶ zQ准lJSLQW mUzT 7n\X[pXERQVv^-6vHH("tw7gǻߺ"*^ߟN93w'vfjr4yMS]]6"s}lժiFTTS0`5|]cǎÇZSԡܹs)l3 q5mFKBMpjsS )oC_Aӧ MMB+|%d(q&2e k.ʺtK#?W677%Bkl&(d5y )Pٓ9me]O<ٯ_?:+(P74<;K @ReS".2+F&p }Qʢݻw"7PJqfAAA x;Kv. >̪QiP@Fգ)  XӬiݺuBΝ;iccc)QFٕFH@2gw(S\L{XQ͛7N}jllLGfQiEFFo/*4^˖->m4ٳg G.6d1BfZjȼyV6551b7nЊS~)>oI||›@~)++ۿo/ M]\M]-#=b݅KF/jP߼(,<؉.n%M1-% Y[%\vR -9lߵڢKmbJ<<<(P}رcshkצmԨQŸ'(P{F ֠ oԒރj*8M(<QCЛ7oڷoO@4ISZ0̀:(RNy?ٱX,ZII2Ϩ󆆆 ,`Vŋ)}ٳGNm .Pv  DӃ4zƍ)n޼(EiDR$xEjRDDكR]~~~Zĸנ2(Q_~;v7o^;v(ˬ}?RQԭ[ÇBv!kM9bmaa!sExx8-kQTT]Y2׈b! * uԓ Ңh*OF+(_KuiudR&*--fS4}G+!iHc.vZv%%?UCoYjJCGK7`)(%g;;d=#ihL)M\i>ꘋمёYNs4T/J;u$>:'.XSG{>CL%߭\j YF~@BS6n\[qR-Ŋ9yOgf HTkr/#eL4iec)PZ)0oܸ?X,JSn߿|>}L0Aq)xLJr8Qh"3f@Ζ-[ڶm;f 3g0#RՕ{K?sr,իɓ'S$DgϗK-(iN X~vg(T_xI[__V`\!—-V5h 7_)XXRq0"r<_omqWgLOi>mN\J*.jİ!+9Pmn6513sybN|yujcR4ڵMqm-fJ~ieMYC:9`?P^\-"___CCCJ me /\0rHόE366ussfZP>b. h7l0UIȑ#[NKK+}7_{n)n'FcQb֋?иF M~S&QO:r>500L+2BWttth޾}[f+)) 8[ngϦ2vXZP!W17i*[kkk1߿QRm$ݙYl+MǏ{4h`nE=Oxfh@'J_ȦYG233DPT'5%?0@~C٦ݡ>K֓.﷥Sm/=n+ )hn[BGOn7ՋssK,?TJљ3o^)_BmJ]s?-ofXƖZzy)7y-V\4n*+Y -+ H;ufєKKRR9I#?& ù 322$dϮmo-\pV]ZZz)PS555u̹cF qjKVƮ0<`{{{jS襚GϏ3%"I 48zhRR(jS- LMg###oT4}jSE^fjj*=Co[lɜޤB qөS'ZlsS4ٳg>lffVfsڴiӡCѣG/_|߾}ڵ|2[SҢxC 6 Aor_z4o-ݨ)/H~%Je\lbuQLqԹ!r~$NAHҨ 4$2r'99nRWWZjmے#7*ǡSmB>۳;kЋƮ@񃚰ԔC-AZ^^^;v%u1"*(ݼy3##jEcccl6Η.]ʜ#M6Q60a@ t=L4޵kW歮OS Beb)Eb 6 R2e QgggJA0VXq-[PַxΩ+++Kk͜᤿4'NP\V2YݻwҔ+<[&QudPPPظq-3>d,!pe]T233h800à .ڦb{?|@ASɔΙU oXg;Z- 1&H'}dEJ{]IGGښ9-LS*=v.Z?$V RϧЮD¿eiN>MAKp\A9e3gVx4ر#۷o9sTޱ,~QN׮]OaMCۑv .PPΫ?>W>Wv }Im`֫).##WUG\VN7ZuM/כ(yVeR*&uGg%%Ƌsx= WKD'eZާ%Q[#ȯ;߇"ӴL˶Z'mYMy9亖4(?Y;LGyD'y߿W,uqs? #Cv{ccY3:cwW.=ɒ8ylRr~. 􊉍ؾݘQûo`OW~2$-(Z̚5thΘ!l,㻾ٹ>|EPMdϛC4jEJM:uOx:=_!a }FEpRXrR^T%jt+*_6&$4ں.Hg)(y2/ӴbJ[|'Zަ;ᤝ9z|מϞ%'jnM9(%YBYRtqNvAdxYet*3+ !ש;e -9NדIݟ?f;;u*_B[GqS"Y%Sv~jqt& %%JI-yڧ}rp'-$ C!Ζ]'o]]%}:t7i ?͏G~tAA "@@@@@@F H H H H7+ظwJJ ~`&U|FZx&) /9JȴkZZZU,UUT&M׾m55ՔW>w=Vx=C-_)<>~DFFsa-7EX2͝5CA^~ Lw3 [0wYqq'Ϟ{TVVںi}-* /ۛiݪcw.((eͬSR^iwo5kdee]~Y>sR:rUFxF{!j%%%եSs/R4=;={T鲥WV4(3Djjb٥r[PP ` "C=SSSΜ,/?lɲdN.cG8s})N*{ ) #^x 4wƘO NA[5s+'44\UUU0+dL3mҕkN۝5b3gW\so>Sǎ؝>~E%ŦVM9vn\ }U.n!;n:ylRr~. O˖1qͽtuoݹ7r7oGuLMSSSQuAR48u S'MPRRVZF:66nۅfھ%>>a.UgڬyKͧ%/$Hlܺv܎ۆ{xvy)\i+IB3ҕNx[G@ihAAAAAAA~-6~DT4QP 999Ҁ߁{AAAAw{!))UJj MѣFn--F,ݿ_74RUQvrvA}z8t`yyy-=^/ڵMdddܿ zGfhެlaaax9[ϙ9ܼn1XZFw:O~AA|\zɼLMܦ)ٌ룣 iqq͛wЁGOfЯA-YsF0X4?rP`}L^p8f[h>X, ߾~޻ۭSMMKt],[fY)..NJN4,^8ol6Ez %?%.>mC=~ 'nbfQgUPPdC._)*qv2YYe+ ӻ3쇭U >(*$4S򷸸?4EA ơ! ()1v.Z,444444AAAAA~$G>(bv..YM[44@Y5iFkdٮ߼Ms>{Y`KpBBÄ6el*F]lZBR{8tTXx`{al/o3v{ڹ> H|z̏Sݖ],3<ئ4[hߣ[ HMRݩs?"K򰚚{SO߽@''$'#HbXB9Lfnmeݧo_m*Y VX?/H'^0w6=~LQQQyC;yrœŸ?L}iJÆ 324䤴*YSͬ+7n'O?t\lڎWz٬)=pAA OOWwQ92jj۵7g$.:ܾ{嫇z^O:}ۻg#K zV4_71!QVNȨkN,oQ1y6ק"vk?t%% 4U楇zഴ˗֩mJ x).aꛛۻc?gy}.jjwҭݶ>~'*1z5¨}܅&K%..bbdk!L.G ٲa]Ms3g(qqzz۶=rR%*:= KIMp8** -FҸey eUXxxNNE jjh{H/ jպa^|Sglݲn/h1"22=-='7WNNNG[u6G8 GlPIYeFFFL>w<&i~;llӺ%qjEEES0Ĥj^cs|i1ԭ_5cboܺCd⸱fL[vy99} wM4I)H8ugIQIm()܅ԭhddڏ^nhP_u{;ꙛ}kzIKhb\rqptעs(uâ+K-t}zb3fWKݰA}>ZZݷl2}M5$$$h73nܺ}xs8Z@ujjj=z`sކFF锢E X"&:IikkQ˲r-.^8Pups` Ȩ)3PݳӴĸg )Px8q,e U |"jm?p E5Kzm݄jNݺv E_> ;wt媺R۷c$&&ÓNμxEQ_C'،PgSTzֵ\M[SmjbbKLO׫m~󶮮˧ߺFp(~**s^qr~~[wQ<Mpƿڴn?dNNά CB;wpl]nE}>U ׬Ѥq#u711>{(Np(zJsRpB[n(&rgfe:rj|ۥW.UQV `Z ѓ ґYSk< @9}|*ہN4AG[7A ՆP޺iZ%Bya iRt4X|0$=VVLn׮KSq'Nа(SOxW^/}޿S首1 i߶ 5+_<Α{k>{>yp`7^tvxH VaC} Aua6WF6[ͤh1ݻu9zhQQQ?T촴tf,qci󥇤9 `3wF 9~yK9AA^]:u- %=JztKIMݴuW[h:ӦL\p/E`lC^w;P*;!^&Iu9`GdΥ )l**c ΞC7;9|(.k =v4>*[6{R !/=}Y]a jÖm+-1u2xEuiɢ=uMLL؈Ÿ?i8* ~5i 6K7k۷{w3tLغ/AWT ]S(K豣(qoSSSSNFmwls=Y5n$HS&/}-]c^j2g/)9S+Sg9tX\\<6d3qjO xGUUu٥'RfHʟg.|"Q۝?Hm*^:$En% |qߦеv?{y鳞q6e.D&-}7edegRUk玪**Q?z<ڠST ċ/~}T_NNN5[ WӉKy=ɕֺU f/ϟꌩS~PTbr%eW!@yt۶mRtPP(SͦԹc!qY'l^/]gD+\dߦuJ칫 jfu~̬,jJHL مE!~} &w0cK%pRl(&Ѡ~=w=97.-&_Ypϯ.(&& a%OTWW+ )/sdEߤr{pM!8/$R|0eiq109Y&E߸qCg6^b:l۱[e511{m;?[w._OH5>r`O{M @GG[SCwpHqet&_)K~LݢAVMLsaaA2޿Yޭ; |&}\TTgmUvaR*vi?ztl߶G?1fQ#D>>|>7k뎿#JK*y 7{xy{*MoIu&==]ׯ)Vrjz?X*wVԩ8@uejۮs1+W,--o߾-=q8w2%ĤPZrrB~췴<6$wlnQ `l !je( u ))ۆ* r|w`RU3r_ڼa-:߻r`+Me.@c.WWS}SҮ\.dܲJ淼&s׮43s:yڮsLL{$ Wg%}Jeffnܲh~ԯIUnNFFA...nĜy]{Obbq#"m}ރJ,*y ] ]LXw΋IgωSO:Ν5]-艃AvmJ祌 d(S)|CpJFoу?msLKf>37el6fA޾{ʵ;ЫKKmNsR'O?sjX{E/(=r`OU4y][Zdq^6o+sרҝ2{p =X9~۶m۵kAZMU]bAmؠ)qc6/^ӫ瘑í4;Jӻg=sfMտ|&**bb>5a͖*$2+ mƌe`&{gfn5̎TUEUpe%@QJʡ'10 PPP5b؍+inViʌټۃIJU6}ўݻQۖ^+V|6rar{!Hw֍*w_wWwY3R O߷[M=x3v s릺MD>6qGnkmPл`WC oޖ%--]oUi2r`[wݸѳG7}cSS аrw'93+}M oTttbbR5|ukakfxV-N?Т>F%{]K"rW+L{.BIgݕ޽Pᐒ̺|5;~ mmeմia|Bc^~-l&N\AAe+ǼxپgAwoYsǃQl>zdA;v{_խI%2{еOywhڪ=uy=hب:wwŚ2RT?)F;LժE3&|AZUUwiiÇ .=#nY5iLރu 9=k#-p5offgik7ĸz]QwQ7UFL$UKu\D\fVѩJ--r"?Ub%ϭx*$3˷=˭r{o44-[n׶mێs쉃|tjFݺvnP5/ z>66?eCz%%%=p!?Fe3fϋ S>b}xR ՝u2k>J-78U͛R6WaxDOn}:Zii[pʸӛ ÇeH]];rڵmCg*~͒Gs|#jn *:cM* ^@%>H9;;߾}STT_Ԓ9mу{W-_mt%̺U.]-.**zq9lFlhQuAZG&F.u,7 \ONNx^$~җ mK%w']?-Vr4{eThn,_3ښ+Eԡ}[* U%$$؝_rGT=y?hݤ1U/(mG_e/Ojvgee޽{,+)Y Zgt5i[פ˴Ǎ5w*Qcio9Ai7cl6EKSa۳s(:Z^tk (+hSΎ/vJ\{vm_vó.kڸq6==]YYY%**"킹Bn?Zju_6ozI/99YUܼ\޳zNQ`7oѶ^f Eip)8y)KO96eԴX1EĦUF]:utpt3~2m)e%%fQ j ͛ܶi̳545iS&&&R]קsTUQke\tTUTT9􌌸rfi`Ϯm+V^jT΅E19β=)3оIWWPݺn]; YJwꙛ]tugCcss545:o;| $ao ҙNKHH,]У{׫n}*-#CKC .'׼hwc}f"N "/'-^=ES^^AzM|2Dڪ E8ި(7Һݳ̫ K)X⒒Z-N7ؠV˻#"#9"e-[nݒʭM6h uݺd޾vTT X, M M4(:vhws.񍎉 RQQ6[6D#ˆe|Ҳ-7]]#>~,++kh``դQ;[3?sg}}B¤LM۵mM)|*wTg&f(0OW@bQ(ii_#o߾Q#K1q;JհE6m;mv[.J%) 2i<tBbx QoZ[3ŁU(l:vh'+#6n43zt=wu߽@VvKꙛEFD3~cGPWWOXtEpp6- ŋ-[R[BBB.};oyΤ$mmJsVmؼSdӧ{Bw;ncc#h}otpG&>ԑRM@ɹn%%ž{Ξo3S)H3{xd<[[5-&&m ":Hȴjݺn:Y݅Kٵ}GOیyᣇ7}Բy3))Z$RSo޾;g4ii!**k?ijР~ppz[& (HX"ִjLtA:sϟ3ky^{bN2;ZII11)]ݨ玿=BYI)>!?'JOS]]m⸱:YY^/: ?k،qZgϞDV+>(*B35k֨U@WWWSSSYYcEEEii 1ᑑQe> ~!Z#M8""my9y))bNn^~tiYYB H Hß$8$tаQ~t(Pݖ-''gm:v{0cbg;[tFZZ:-mCжc S7o{ҳ ~`9>e=:bC H<.] OMK;t8JP@:,ᛚ?-繋wvvIX"9NϞ iϾ|Y/GGfeg'%%Sh㏝< +)))xd/"͛.ӡbVX^^NfͦM WF BDDFX.44dLSGaJQQQAAAinϞTzO36ϟJKK woRn%''ТA3մvspuHIIuhV^z%::1(+2 HJcGNMM1lJzzE[􌷁A:KYڰvek**Cp%ڕ2Mˆ;lѭ *@>rrDAO?3)p8?ыBxsgsb:֮Zֳ{7^3qϝ +IJGr-UVVJII6kqqqAA-Y6dT uuӧTܩPT7#-%VJJiiiAL?}|fM5)'%}wAuoـ ޽pWY:::;7f4;mw#>!͖TSUׯaѠG^G}{kJ1wRcwdK jۧ!QRۅ -JaLIM,ifw'N}㛛[rL`3FAk egg+*(ꘚ4 -ۯ߼MVקu_z15YVQQ7̀Ma7[ݻg[wy|98$,ysZjq칧NY22FF<ʖfbbR%2߻yU#annc'dbRҩlݤɴ)JkزO333O:WSUQCO`{:OvYL2̚>9"wq;!&R ^vitRE;~L.I۬Dy nQ~i0$4͖`r/l 􊍍,sG@~i~ͼRƖLNNN~iH~ zGo/^;j//D5Q[]]O>5lv.TFDF}9yܼ%w-^yI{v70'$0)ZZZz!cbb9VhjhٝGZ8/FYݺԧQ#˼|MM O_RL8GBMGBx87YYT'O ?PmߴϘQ# IѴ=ӨƯ1[&J5$ 4QBZ;*l'&r/#7_w̄އ箽[RP(qFjj,KuQ@ j򅅅yyy ,fM\:N/ BkԨMN2%-2Sg3=l**k7l}=kYD{`YG:7 -=FeBlBBY(dP1NB_4 u9]¢"={֦,e?ps}OMG4***W19z[s('+)+)3ШKiP @в4a[SB)|§7KOOWCCC2)%$*"w[[+^{`u]*))!A_tGt޼2}6}.y/=F`fjၟH`e٢~۵i]w:s.5&A|X4?nJB䃇٣V͚;DoPpVP ANg^hI۶=p?iZ8AwIrr -w`~>ݸ7A%3zİ?LIIz&oT,kW-:}vjZZRR2g[׬{$Mzz [ABDFIOzydff00ڥqk0k<{(DD|PPPhP؉XDA|Μ6eXF$&(E58y+odEEE}}&r;NvǏ5j<{֫ ~ rrz--njP%0nڅK>AgHZ4ovξONI..PW722knVq9DBVVvK:owUL5UUw3SӞ?ve滷o7osr0ح,+xEN8rȱg/\UֺÄqBb׷ C4Ɛ R;/}!kni\OVFIh p'ȯ2m̪)9> +h5OTok([*zOẌ WwܽMlڤh D077{&9?`̄IX;mBMMDA wi֌ٯ1r e̪Mǵ6m1tulڏ j#R"/+OC4̲[~F[|+υwex [X4JJJ~9[ݦ `jLyZfM k˳*Xвrn=AA_Hn^ *:h52cZ8kWH?ml '>){Ae՜թ?~HVVM/k/mSC#5%-,JOexGA?xp4od4 Ӌ%~SQQ! Ґo,*ʯm>B_Jw jd9窷%d._iK9jnZ]'T;-HGUIrI?#)((;2::--]YIĤΏmF D &&=9[e1#7nԐ  NHw2k(4$=i/“p?$^]Ik:l7teؔrk4ؙ֛_d`/mU~7 ⛯Dٚa)YGQsbu¢kѳ3r_{q8t;O_Yo?Y邓ښ\Og,-(h׳t63e]=7J ?]5Rmoݣ~=abᚒAfLB FKkKv  ҕDf^<jSȓnYX oRVM'vh;w86#ǰ|Yw?Ki,ٌ+Dbǡ;/׃t5o:j~led9<%vz(ᚒ&  vMǴ2$[91l*!eyUGM es|zVGUqf^:^EM贠E66P2<='/6)*Mhm]ͅ fw//WtGoт; Kuʍ|zlm##6|+pyLoei&  > p}cYJAe:N ESEmnf ]<6bkWgBTiBߜԉRVSQ)׻Ďym~('WOOc鏍Mr7nhPyX>-UWr)   y-ԡVǭJ)-ǙWfǤdVFxyga)_)F%4AAA">"VSsR%Il.D UUy $caQiu/U\PT"ӳW| ;ث!-j) |:+0.]_C o3̹$-MAA+;ojWXS^~iXPku̡OC%gzvSXN[ѻwTUR+Ĩشޯmy:&@C%2-ogkiv4SSG]X^^% 먩? K IȰ4u- ZzUGAMjkv͡㮧o ĕ[}?WZ@td%4AAA/ mW"< Jv;tkbd=*dnߍ})* ~U/~N';y̸*13o~׆ՔҲHb[P!5o{{XSWW{/8N`ߔwgu#,,%ݎ;Z.825%ZȪ^]w}$44ii   FVfy [y9&w-fPVrUt*ě   yemxv#P~%G@AAt's}=!9ip.1AZ    i%*%ۯx jjS~mZ   b)ecOB3`/M^O^MAAAܑz!Y¢!S/zRAAA7ܑN}cj&   `QAAA i    !MAAA$   4AAAA|(X?A]Ӌ   ;DU̙3wܩl={vAjފ"99M#i?yn*Hhh *ݻwt"t۷ٳU$$#ӧOǎ).ALL/L>B U.00sr3gΞ={*+*s87n\h-[ܾ}[x"w.?oYYY4 uDh*tQF;wRo-p$??ˋX...Rr4… th@oo/rQ#GL}:MM-]Md" /e橩FT~} ,,,0aBff̙3Q +W{ȜMFܹsYYY(aLLLdxmb`Wrr2lС40//=BSԮ]{ĈH\H8 ܣG>`$H sωp0@cKHk)۷oϞ=exO-\066]=AXm6./Ƽyp1" 8Jww'Ob% v* 9`5lؐK/zUVEEԩS9#5EQ#'638.v Ek`-&z9>].$2GȡnkkSqZ 0$9ػw8?"#SK6"C4Q@`dLIAA\O?ہcɒ%03¥L  FwHciij > Cݺu f۷׬Yk.'Nl/"`36mxbYYYl8`:ᡱ/),;$2ǎQN'3W&suѢEpx/bw4ۼys`}V v}Iz^p8$ 6CvFCmٲR-F>XZv-sc蟫WF9"VQ@j<OA9/yyy~~~hΝ;5,c#DQȀ{ LAܻw/ы)0`VGze5jQ ;<~x%# C( O@9UeÈ@T֠"bfؾ0L@_ VQ#)^ U #ZrJXIAɱ;ðacPxQ͌z`($b\!Eޯ_? dDϦ0A\¦-`X4UtPXt6&QB/6;??M<~;۶m$A_l-sA#`A#P*Vh],0*!0 `ܘ7dB9" 8BV008/+([...6-)5p̧ *A#?y&e8#`pbs ر͛7#Goܸb` zq! LL˗a8!}'%^i"C47tP+laÆ*gΜA! "rDo0|imm a TVf͘? |9ˠƌ.yb_X4WWWdX:5x_v^ C"+"Bꌌ7”g͚5aaU޽{p9"3 \4gARfb ޽],)b♽".,, XYYqg *pҥ111pZ욽MhF˗#OD3Ēg#O m ׋ *#ڵk#B׹s ۶mCSe?_48w}ҥKFedh{T iSO"cAVi7_ir1}f蓰`I؜vG)\Dτk.ĐU+l"HE!RH#(dS05 =wQ0n[nA4ɮ5`M"ȖCYݻw8kl%pٷonN0L{{{a :?0$@zɞ Lt?nR1Lm*57Xy$etd/x'E:qZsGU":< 5 w$ICCCVS(v'''Y_xQ7&ębP٩S0c'I&ϟ?G𪩩! ->$͎" !AB177f)@pp0|wXFSp(7[fqi ;70g͚իW/XmrȐ!%CBBO%LEXyNjJxѣGސEJ!-\x)3gfj XP,t`A >y$SڥnB|v`="$ 1vѣgq-,,ح44*[!?U_aJAAڅ /^yfUU#J`Q /L ˗/ٽ /QO@їƌ~Bx26A>#J3/CHf? ]!yGMKKc7!0XEtӧ$"g)[ر# 8J\XR/7oD ֭[蟰***k6AJυ[Kx0!A+ti aÆ9r CL#Ex”F)"" <>HH _mA'gsJ '-3R`ox$ G9L `V^V \ ei4i­d3`wލ qr066`C4p]v]~}Ŋd\-W"E^^HG.\xi2GJ!&bSsy:t 1Y쪹Ȧyn[r{G(( H#vfiҥ4D8/pjy5kDm6[&sN%mɠk^96KTu:u4zhرc3ңR(vr p[n}ŵknܸ1sLɯ`āS-Û`#:R . J ?2|AZ|pOOA"&!1_˗/[E]|]ff&ĀsSЊԷ…/TQo;Ç.666}4lْ?0%lb%ٛE؍8c݋Mv@𦽱SJc0qv!qFb% zEoy-CIg+d$Fm_6kOc*CE777.WHW*):wq&M8;;{~?ユ(1`SاK0vvvi"/sI;xtťiӦ(p֭ݸM3t"D8wLF v// l D/EZno{ŹM$U<= ~DW!!;WB?4-.<,۷oܸG̽pU62r)uuuĔ͖eww! W׬Y3ȹ8D]2PժUÚ\n+W(s/̀myꕕU>}֮]koopiboذ)2eh۶m/_ / n" / wAPbcǧOJW:O߼ysr*,,L7?Yhh {TL&ԟ9%%[ b,xÇYz?,XFmq .]J zNNիWf1 00qZ!`i0q"%,.]ڹsg.]RSS|HsQ,//=(ƍcݻ __ 9ڵkV@V"ac."9Ǖ%RN{…nݺA* QF-^xǎ8Y"ϝ;k)oRC */ZԈYcxA^ѻ`?ްaS^UׯhC޽{%v~؄[naF⹄ǎ}x@9L!``_Zl 0cǎ]hЙE7qF ڦM}a \p'OFa`V@ɣyQThr]kJmpC2qAUoٲ={Fh 45{ yI#w@EE ij{bŊcǎmݺ9QXs3g$ iC }ycccRKVﰀpӦMBp >Ά 退89p`P݅~Kݻw9z(qd|r,o۶ %Pdqؠ o޼ ^(j;5eʔy>4yȾx#&"ٳd!}߿L}qO_ 9@^ĉBQQG^3Òס|nE, FFFgφ@h(2ޝ3f P^f JP@>`d[ՒQ;@jj**_>W>ǾuEte7 %w*(@c|a8/YR; t/j\cG3xu\0Y8 npqNp;~8b$T n" FiܹbЖhy&'OFQ5DKZ(!4|1#MLkqW(\+5GD(0uێ 1.woP#|Cgo}}m1?eddY`-QTI vBޕ gϮH#Kرc1 n$! A"!JTȐ{/_ۈ##"OOϐ9Ж...&&&7߿;K,QWW/ECC#---??U["rqOFUWWWt0==7n`IMT6)))III:t(=APdH|3Bz߮mk7ĤJEYyά6];޺soz/jXpʕDccK%IOO䉓[o޼SVlذaXXk\͛79r$RA" }1zzV\YDR۱cdOe\A!9H;ء&ujDEE߽ĩeBƃ55|_Osڼu4Ny1C|_>sBÄYLuAAAw뚛`wXYΘ6ENViĘ*DyiURY|%&U37762{пBAAA|BlB.7mXcaQTɿUܛu9lȨtu'%]LM?)9YCCcim*)+y:s5kdFժi$=~E{ ס#Z4@ƍ8yկWwS3NHL4tԼ3ڷmc`_PpC%EŎ~|mEEEcG3rfzzƵ7JV]6Uk7EGG{Y;v@ܹ`=YYjjי֩rsso߽m\pAAAUKH:er ߸-S999?mjY4?oLt'$$g"++scfM##$kffC O@֭ZB㧙P^͛A?<;'';MPZz`eȻ7oa{ۇrrr;nj?@EE~`}=9auK^4mx@(y~pAAAUKHct%+.. ÀN555PWWRTރ^2l*:8y &M7IZZsBz]Xu5#Nڻ: FCHdO>\^OOáa.9|3P$.ݦU6h Sg֮mkh~&OU|LN5OIIVZh~pnjAAAUNHUVFj s}]]e/2d_>4t|h3׮U _]e )},>8$D䫶QYYZZJJJr\7]|Æ eeC]$ӡoAawFFzzLHKST   oPPPPS,84yаp.;l9]lh`)kѠ-...O.11ۨ֩][MM5!!1//Orvd\^_LNMM>k=Y< _Mܡ-,׫k^"棣u(   )U˗B.6kDIIMPpl\|qQJlެ:KֺUiLzfhXr6/??OM_8s"C/>N/b?f<){|y>v6up ;g]:GEEklڬIG(>CnԷ)((8{l6m4h* {ȑt>z{b.]79szz"\GFF6oȈ!t??-Z~ UVv*0[___LÇ ޑⅣcڵ9q~=/Z8:77WEYD_۟6naN1C=}6mZ*++}N6?ʲ]{<]|޾{mnn!ݻ@\]~ u5Nn͚&ulԫđe6%s RAE| 8gΜ={t޽ׯ_xyy%8@_^zӧsf;w H Av%5B \jc~q޼y?ܼyڵk_9rdԨQ0充eff#}qMSPE7aV^<℻Ǐ߾}e055uΝ'O1bĪU`VX1qDVgg3g΄yGJJ wƯ^zg<==g"c'\-*gXi?l?DflǖݸY14E`%;l׉-}:~ sy;<]]]: "ғ ۷6,""FL444֬Y>w\rABx;h ٳϷ4iR-[exQO> 7ս{wWv +Bd灅c" An%++`…5k֌9vׯ۴iܻO<_F |YEEE!gϞU~͛7p* M6-Z@/cɓnݺ/#JOO_jtݺuL|Kn߾]NY8wܣGSNeOs}ѣphvڍ9{5~XQ*Qjwa s|+W}.^\p i$X^*n_0Dϟ?0@8q" a_;wbޞ]v1caD:::_^W\{nFF1c7n̟G bŊMg``ҥK*bI___x1a,nݚez!4uNNW~}`ΰ]09=(('& ܶm[HHP0}c6_&nmmPWRRR``qN8VCaGgPlXT 4)6hTTTGb  =d SЪUÇ3{׃ tNm(LU k׮E O6 }h|l={6| 8; =n`NwAnjINP~CO߈=PSmmmX#Fhe`G<`ii#KZF&LF%\ ¢"N@ ?~ _[n!CM(޽{K"Cȇ80h޸qشAشwa$a7ǀ=r,Ҡ3%ZLIWWWYYY[XʘG$~ !Wa s`:ts 돕o߾E<+:0//p70\ۋZw˖-666v! =au4ׯ!`[6l؀+(lF ߏ O9 3  eۼy3j' 86RX#/" #Bs&ٕfD,[駟Z̙3W^kW|uhyH (-3e˖#E1j5ƏfCT8-B/ MKK! փJ㈫ f͚q@0LHA/Հ "\kΝ;?{.}lg4+פQ@<@pփJ,Af͠j4iʧsXPlҥׯϟ3 bA)c`#oƌpkD 2#&m ʅ֭4dݻ!exP i}Qq.* @8Rd&6 ȑ#Gͽ Y¦y,`_€IaHhQ5:LV.\5Q*=z899 !1zȔ)SP~ܢy߶D1V^ eή>pCn!paџ{xx@?pU@P;t Y@G)`O+/VJz0iX@@i)-:3"$$$.ӧ:& =A!+ѵP+DZTf֮] [j*4d!-*2[[ƄM50اN jذ!w#`r7n8H$?]h9="76mjEZdxD ɓ'߿rnpQ\Ԏp V›# G^_ ginnΟ 222++_*cѣ9"AgD 7<0#ѣP p4QNHs _vhmn@ԗ+Q٠["FEKi=$qaňP-3y.!F֭[aII9lOh?XwK< b\GGYfAذYAt5 f7ΥZEaLCϣX~~~0h"S }>}h.^B"71c LHkl+ٳzi(sdߌh۾}{  >shey ?@${*z,2\9 ;PD^K6autxvSNHP_xn լY3xT\bv ;t.(yY[C=pBneRRETV-6ɜ . 0`M*@߰b-XQqU@z ilׯN-^o߾&LH.J+7\NJ"+DȼT$[r̙3Ν;i Ë#8v\'4@E5I"'ԥvSY["D{n&W s"4T\tr!;ȱâӧ|G8c2[)0CIX$<"KV^-+w8V)e[ia۶ms>HcŋlH<9K؄fgt"LK4h[ٰaCHM6]x Ϟ=ۺu+wNwMq 0Oг: ۷o}||IbF\@b[*+X%w?.(;" 08H~FZFQN֒lR. !M|4|#FHHYn]b&TdbH͌ ' ɟ!ݻLv_G-ELLLBY& 4eeej 7tP桹WԈVk",Cy #zyy yf 0G^|*WM&%}ݕ addȗ X^*a;̪4Ö++w!#""$YGG?| r J2p={Bۣl\ɠx?~do0gBZEa7n ȃiKLxzz08q-v ^z177GERSSmllbޑ9l&q=`E^`-S1vٳgwF5;;=/b8D`errxpyH>Vf,7vFL=1HQ&MH vDyND`RR?_d!!!ϟ?ׯˣGԗI9bF,,=z8z2+bқ fx1X$W.BpK$?ӷķ 7SokSp?:HFx;vts9}^^4KKܹ͛l,== sݵkm!G|"Zh3י0lܸk׮߉CO: =<<|Kn R(j޴! e˖)((LݻkVZ5`(pHp("W4!Ҟ;w.Z{ >=D+V@߃޽;:6!A 1$Xy^*aDȮ.ÛI(v|1aب~B?#CePxHqfM m۶˗Q)Dlz$A3,˞T0bho#~Ɣ0T( $ٛ7obM6h Tz#M[n0`^P+C*#Ȇ*@ <'ObyaDl2 ~=,5r>p Kex &̥z* z ݍ qՊ^$p:1~xW^7]w }u޼yPx"S^~ǂY@fe"/vڅA , tl)}DBe2A0搵{=z4B | _utm;v DSxDZM߿?)) f\lذ =AiAB/]Cl…fPD9sfݺu7aC% ڶm.4G  "pڴia˗/E2&FG9~8L*pܫ¡?9n߾}y9s| Y 00 E"e(s 1""o߾NA*b}vqÇ×`]e9 Xz';PBpi[f V"PDłΏnɾ~ŋl2t۷nPi⬇@/E-nD1<\Rܰ0vwwG؇qঃpݻ2$(TAH! N6Q!5gѣO>R[ {Fm"<%ii00\8[8]w`BaQe'uKPY08d1ү]JBgz ڴi3ʌ=++K2;ihl233f]:ЂQ;} ñjʂS _>9;%;R`L>55gVZ^  '#W}ʔ)fab9rׅ020qf SZcб:i$@"UbiHΡ&hy_*RFɓ'C?~g fϊ+;kdxDr ?eν0 *Yc\ޠF xFLDĉϟ?ԣl޼G1beԨQ.]MݔfS%QPP+ K}ZEcA&Wnwr>=`)oy i;qMDp 4 MU?o8߹sw_U~7? xbuuu4ZJJ T4QOU؊uIx Q(.. ѱ7 'ӟh}v*94   b&    AAAQ-   Tkۮg~}dGAAAR'5Y{n& r/=^޴insrrO:UPX(2I\]]ݻ=yI/=^   fffƏyYYzmut v U5Uq*+(~fd|tyB]   H!mg/ g|\DF&%&a7eY2scfMnwF z۷ffB [YYu@zFFjը'AW^yxx|NOO*Hp^NNN$ T/S}}+KK,XY[={,335 j4p2}}}cMMM}^^^޾Nߍ,, 22>ccc32#>|ybhXCd`ii&M6ռ9VւzU?0 **ڢA3sӿesUv>i)ɟ!7;GQQnNNNBB$ /͛ HuG:+3 5UKIIak1ڭ+ooMj+Vj5j11jXnݚ8]?;ze_x+Ujjڕ+Wnܸѹsq۳삅 > -wpŮ^:7E:՟~mCxSg"   !ĄԴTkkRҢc+aOS޾}{m u=}֬!ZZY[׭_EEk׮+ _ӂ;;;[K[K8+//2dHTtCNAq___gcc˗kjjʔ|4!y ZZZzɓ'?caa1n8333M  d͛VXXGnnNumQwǷXXUE-&&Z\&T\T,(> yyyVVש}""&8hÇsrD#1$E# ?ժUA նm5jZw/O/~cbbJ--m唔8T\Y:AHN8[hff`JJJÇOooӧOשSMYڱcǛ7oF7n?966Ngʔ)Pjjj,-[/@K,iӦZhHb |rגҺu8 y5 222PlUȃAA.?966ݦLE^V.=#wX~a۾l\tI\&*7KSK3;+Bǃϙ3!QVVֳϰ򵟟O?x"KڪU>}l!S]Ǐۯ_B?'۷J:tٳ3:ߨq%??ʕ+[K[ 1rrJrNN726пǏD!d]]ݖ-[Ar544:v숅-ZxyyBHCB/Z͛O:㯣ß |SS~SyyyΝe/6NHH8~8t`` `ܼyVHt9ҥK?|O'  B93,@ć{XrJnĉܲ񧌎bbdg9rD 3f…?}p o߿JxY\DkWW7,tMy>0:AD9::Κ5W^666ijժ[z vTgϞ###չ5X>zhnnnyƍ / .d?y}'!MADلtݠAiT~իשM x.nΝjgoGDDDDD鎝;>|0 BhD >zXlLuFV 68~xd/^8; :ӧBWUb{rrr*pFf,k,6$$$--QFaa/_QWSR4DDF 4O<2ӧYf[nSTR0~<xDaۉ rrs/_%%133ɵkW G)1֭[VVVuɈ0VCÔX[dfeikkd1 K K?_?d: }||bg.u7ҽՍ % } If޼޹o׮T|D8!!!77OvN_£l,M| ~~~ݾˎ:b|N._)=zdcm#L\&WOCQڳ_<ߨQCqtMLKy«DDDDDDtRRS0ߡC 8]gϤXTX,WqgTFШ<ŋAAJ>9rdLlLJr ;~Wv]Ξ={޽qcǾzREUUCCCMMUM?#*L[YIU;uv 544lܤq ߿ 5-U[K )=//?%%SN***-[UVRqS} p߸_SSSMKKO@VWUg#"""""z``bMΎmZ <|p^ TT\UXTj713#}wt$^t{ݽcҲҬܜꖠٰan]ggg]t ϝ?>PWSK8p`^LL`PP-ϘQTTtĉ'_|y!J  |}ut|CɹvztL4[[JޡS7+'^V +"xի7lPm-O,"""""w HxGR`1H1H1H1H1H1HYDDDDDDD RRTlаaOhA+H(5MW7e)'WߦMӦAtJ2NlggzڒbHM4u>A0&&fÆ ?HIJfѿutt;߼qSc`hбcǂwΜ># ^^]r2_ """"022zGvxxxn޽WTX1NzEDD4mTAQM6jjjIIO~8qFn~5HCS&ikigeg]~ݻ)//ԩSG55,__ߋ/a| \]]MMLO􌍍ذ"L/>;22ڷѣfxd'rrsg畔\\mm x^UEv\g!Q#AZSS[}[n"9o}ç}M64bU+Wa 8qYDd#FFB؝emc3lА4v<ܣW KK̮=q+^^{|}vYTmn޼}{Gza  `ը{ިF6k-[2وզODDDDDT7~٘:k׻vХkĤbM--L<*̘ۨQ#)..NHH}㓝mjf.^9Y¼HX`NNWLML%6m}'ٴh!m~z kky.]&,WVV604OJJb!""""""qޑVWS/Gϡc/PWW+mS__ߊKQPǀyqITSSHZutM-Z$<,+юɓ'ΝkmLܤi:䑐E"ꫩ"KETIOOW7Wd{""""""eG-oAFDF&$$aQQ!⨆Qs>Ҳޒ=l;wɕ͙3c uuuccbgHˈݸaM+,(LOK􌰰WlAAA^~q]?ȑ#cbcRSPH [UUT*ny~qڵsl|eeey9VPRe%%a{۴iJJJ123+snnz?vL} V;sz@::yy._NIMIHH3fի/]R\\2x`=ݼpena>d`MM윜k׮GDCnovV.(,:|[Y.a!BJovuM]U53;;""""""z)w5i"""""WKE@DDDDDD MDDDDDD MDDDDDD MDDDDDD MDDDDDD MDDDDDD " """"""b&""""""b&""""""b&""""""b&""""""b&""""""bf[!##;BDDDDDoW8M-Ғ 늊jj999,#N,]ʧս^e!Q1.Xs+F۷M2055ʧ.v˯""""";HΛ)1ݭ_~,k9"""""zCt޽zzuzZzg*Ս[[.]_t)9910зfnjv::cXDDDDDT ԩsܼ]9}۩g._:䈺Z^f~͛X1fV.&xU?/As@Hhؘ SJJJׯw`āA ?.\ҿ;?yR\\lbbtB*H'c'N֭Z NNN6XgN@jjSg=xRN}]tƳIIvxܸ靜שci'E+}4d݁AA)Fs mgkW\\tŁ]pHٱG*qquub*33Y3a''ǎ?zH{3fxxx~J"KwpӻvVf￯g~7oʌeee+~Y۱C; .GF:]wr/䒟W//@BbE=cMEVZsQC_=iXE`_||_;6lQ칒"""M3IɧϞz 6u򴙅EH٣[ k;w|a@@{1UV;cmmݨUƏMMIYnʠ+/Y%|}G>xpj+WѣWX0l0E-/Y|F7jTLFڻ`bRooj԰EǏMkY\] M[?TRJLlm6ӼYկguzQQ1B/l7ͤ c1p銗tu[T\g_pO-lgg[PPhll~{0FqN xacm]ZZ킅Bxf99Kڽ?vSHvݻ:ffeK-"""""zA%Ł;tOP` Vdf s33S۶V|RllB͝;W[[K--̬L2ddd()* Ob_r[nFF)ɅE&&O>g-Oxӯo!HXx !p"^Μ>Eb!&~4,qmZmWv߰҃> &ɕ cظIk's0pG?Ѽx1q#Աߊb!aiŲ ~hfj/w::*%5:t0GB}Lbb]J_P}vDrYZWGCLQQzBIɮ;ҥ;w/_\9FjjjWZZVTT\|6}_vDCC)uXZIII@`0<OKt!8D9 dۦڵ=ndl$1}zZN=g1hgzva%3PZW"*jm,?~ة■2A6VGDbQ͛222'L(|. Jw͕l,+;Kʟ6eS3<+l w׀c'<1|!دXDDDDD 9-o%wٳ7v싨a:zz³_<1r&QWW%pChiik;::o޴<ؠAظ̜\[R\Ż5c_M+%!E۶mgΞy:ow=WOO r[w!!E7rT.U#0Ωi}}@O*c\[͛ ;|rrs#"~~/E'""""Wny٦EGkAEEQEb..'MRSUUy/_IMIuFoڸQo_iii :T__04,޽{w@`PrnչSG ^ӐՓĿj]y-TQQiެQ{T)WTͥayM#&@TttbR,ZltQ#D7 ۉ讨جilӦ =&##iH(a $""""z-ACbLfV ObGԸG_-_6rE5װ:OCC!ܻ:v.,*ZR>ٓDŇRWWM͝0ez6SSz٫[0EE%GbÇ ?u[lQZZuA733(_覦 %H&RnhX8aڷC>qúvu477,c&Li0--IHȧiZuY٘ 1i""""^+W%Fs{ѣF5٘-v" *((;J龽ض31)))9yo_. 2? ԙsrB?abF`KJJ;sA:>!QXTW,Ͼon "=?y?\ ҉Aiii;vƀ3gL=RaaG lia1iXMM#N*++Ř?@U]][7wMԴ c#C+FBzEޭ˱HYYٚv%Cf۶-v=ZV&jnn֤UzBqv?խ_߲s5n[-سCCC,rCIIXvz\ADDDDD5?C gXDDDDDDAAAAAAE@DDDDDD MDDDDDD MDDDDDD MDDDDDD MDDDDDD MDDDDDD " """"""RFFKHF#MDDDDDD MDDDDDD MDDDDDD MDDDDDD MDDDDDD MDDDDDDD DDDDDDD DDDDDDDRgSRrttlٲC^WXDDDDDD_P;HƏѣQtt7[ccAGϞ?rHqq?Ѻ:}{-m۴StNϸ}ˆIy |.\z*{֭,,))i׮]޷oH "r"##/_6BsAZYYISSSvvvnAvuuٳyWm_/{Ûj )>}ֿҋ/>yD%dff޺uy㣣YVݪC<*<~Z͙3gÆ ofzzzo˖-}QiirǏ'&&ʾ{u=sȑgE-]T,RV5^Pn>>>1XWED嫫aX^^~yyc{{:!c,-ze&Om}`P0us>ƺYBBv=ϜX&f/m۶)+-=e!x77ɓ'v9V۷?/һwnڴK.K[[RUUժ[u?˜|Q'(z)((['w 2!cƌiٲp*677WTT<ضm۷Lj0չ%''/YdѢEaS$w0H뗔ɩ_x\;6]t^0o=A֭]5bؔTCC ߹{o.6[a4[wYZZZ_~=TQQ5Feuʔ)+%UǶˁ+B :6L4f0c&}}e˖;6l8lp O%&&z߼Y6y 6m);;׮}Q_\ZZljb2cd mh`}Xo -ZHٵkם;w[l9yd6WZ% S ?~Mַo{OxvȑEEEkxxxZZ_~٦M;wt>^V2ݦ*WbEYYYXN)۷oggg5IÇ55{J,իG`{1#!nZRR2cƌ?W^sέW'|R]ę3gψ &`gϞMII1bmuE*(Fl^rr2͛ck׮*((t[,LYZjU;BBBvꐫx7}^xXp;N|#vj*'..eº۳gϭ[󭭭QVVVX{mc;:&vᣏ>ZhQ֭}PZ*˺iӦG 2۷c8""( H('N\pC ƍݩrGj<ăt&M>CT?JQhCVyeee_u|||AA.gX,Zrm7oތƏ懃`E.=9]>p511F=^hTh֭|:{ EX;uu޽{c½{ Ȝ**~'e,Jb㩘,ZE~$f֎ ӱ1'b]Ӭ_]@^v-.1/fAb/B|8 QK.rP)RN7((HX`vď;)Gk$m?*KOOMTx1XШQ#pD&*78Qڸ_ʅ~VX2;v9su&QUxCqQHP(1t\RŒ蘢'̈P:]葠,v;ngg'cm/#GE5p@tv5A )e-׎Jϟ =\d r#?z3%l$nڴi#QMQy{KП8GV$*~'OΜ91uSٳqԈjkHj*A͛DA #Q(^96(%|tg%V!ˁV偌\۷G#ٷo+WV*Wu]2d:8/=zܸq#Zcff&Z'|]r.\~g8.-e"ՠ=c8դԹ]H HX&\ŧ6m**:ԧs/Z݀/_mr„ iu׵kWd'1D=cv VR?ڀ֎U>>hfVs,8b &^޸q˟;w.Mܮ];;Ѐq`qk۶-?IA - Yo߾h {vINIF?ò^9ǎ9⧅ nݾ;7z6FNjc+(w},K :@S뉞hF\EWܚ_5ⲍkpzpCU+]qɟ2eÇ{krMh*7[ԯ_?\oW =TlQ@X]fDg… Œ%:a蘢$AQ\'-f͚>}E(>wkv׸~D/RN*FΙ3G#ot^5zEj:ķ )VX"7|s]t@, T{0* fΜmԡ{ڬn-R^ C󿧧q͚5CݹsuUxUmS KBBzUJ<ѻ00pw]}Duw'.4~OMMEw;ڡ03VCBB,^., C8p\=ݻKL߰pþ"?H1%0 vA!K4cP2cƌֈ`sڵ*wF8#k9sfҤIg5dZȕagvr*#%noΗEC, ;eٰꮘHYʅWѰIJuuu4 phE8 qSkpr,Xpa!HK9[U9-00Px1%4tԇ fըh梤$ Fz>al۶]OCz1Mva+ݑOX;[EtL, kχ~(;=rK0" .𹹹/X]ZZzCt~hO.]^5z!㢎3,<0#6L[;wf} Vυ]n-O!!5J0b((,MTO)^M5B (&S54407b߿sUV|0J~ȑ80Ύ8! cu;{D U{#Б}u?4`Ͼwp癳mZrΩiiwO(z3ڛD]]]xN~I<,⢵xbO>_r?]%[lsE\ # ={v޼y7:\,DWnݺu„ #ƈ~%EjXt_y&)(>#z3bd/RQvD?ZSV Rn \wն6vUڔZ`ϟ_~ӧ-Z$Ȕ)SZj%u*/MJ▌Am۶MTЋ/֮][}D9&5kܾ}ԩSgΜiK.5xhدcw8/%$$^ll]vȴXjwN z=zXbbA0$nXʕ+ԩ!6_TT4jԨf͚5nܸK|___huDT"۶R2fhhhnTkRdu>O2^MKw, Ǐr0YuPJJ ]'p$ _;~^WJKws^~~>WbSgWyJS?S~!CຘK&\^GV ,ܹsOƮaKD]4\Cڳg6..W^UhjjbpKSap޽ = PbFGGG7F ]{b( Xqȑ޽{ck:~o۷ZuTgĈ+V0hlMA!^*Ģ5)2Z˱cP={Q5d?uKv̙3OMM?H9Z_渓vv '/f5RydbVwG'J"222,W]a—{~'?'<ۨÁ E3[m?@Dr g9|T8jW_!]b4B ]sܹs^Cᅬ+{̋ !k׊O?!l۶ zo8{,:R4͈Xy펓.ڵ }===iûv횅Lk~62^uoXEoǞUu? L $M:MBAq8ًFR"cHEl׬Y#ϰKӼe˖onVruT]+… Q(@l6zEBӧgyT~ |뮊t-ks̙[l { W޻w~ƌ,YyІ5C_&|6RZ=TժܼI&!*`uĜJGJGFJG}q~LzG $`4 5kt걺sr#&'|s\nfGYQ*pJ šT,DBb#Q8մo~TѣHJٻwoZZϒ%Kq]r  ,X5J![\nBBBp”XīxUKwUQD o߾%$mXW.(?xӦM_l P -*e|Ν<MK}ccclvwp 7i#iJtO8}Tr7ݛ,7.Ǐ={vI ݝ 6R۪.զ?uT7_~e.]vV17s^ө #8yg~"zy5ܑسg/պsNiiQnn3g$nuٴ[5)N֦LHyy/fggܵ&8{Nbb7oh"4Hk^v ISSiӦ/wT)00~ >|x ?"OY~}\\ ޱ]{}]YYÇ999vvv> "")jxk7n"""""WKE@DDDDDD MDDDDDD MDDDDDD MDDDDDD MDDDDDD MDDDDDD " """"""b&""""""b&""""""b&""""""b&""""""b&""""""bf1H1H1HEjbחeYQQQ,S""""""OiStQVA1bbcMTc;w`(6QJJJIII;.ޑ'+mͥ{--G>:|˖&?~r9axаDozХ0? ndT32&L׍3SN°ʛ:3gvF3dUmdo}sss׳0  GIOO/**j޼i 1~޽7n(--mڴ)Sr79rd.]$ڵkWg ;w *c{;t耉͛7b<‡Zl7ߜ9s+--Mxߞ={Ǎgcc#+V`._MJHH322tuu]]]EwwWPPPعs?cߴiӆ 4 4hȐ!틉0aG?~xb|:HW ζMutO9mkMtl2]v!F~g߻woǣGN>]O>M4yallܬY3Ѣׯ_oddt҈qH ;`\\\zj$Ϟ={"#o 6DEċ-DӧO[nԊ𬮮rĉ͛7YFb+kkk[&!~H[n511|v\^^BƬ\R/`ϟ?u!m۶m֬YmڴAg&""""zAm|L{.\hffUUUwRxV{qsƍA:œ9sttt@+++TrJKKS"?a.]=z  vZ$y$?T|eUcHs=oXXXg}tBVTTӧXl?zY, ;5lؐAbÆ 8-Wufgg رcx]yQFFF111c/cnhUܠ=0F2vٺuk?|m$X^6WI"76%jX> aɢY05wC}A ՉA>=+zKϕ+W; // .T8..N""1_^@KK w֬Yvvvڷmֿw޸q{ؒqVVƍ?v%$$|RMںukVK<+TVV_fӆ7jhѢE6m߆YȨW^l{DDDDDuSoM[FFFu!"]SRRΝ;+WfQQQEEE 6W0555$$Db^C=}FFF w/]?zI&ݻ733+XpW޶ʪ$WٰV LMM=zDݼys$;w`ƴ*ߩSOOϤ Ϟ=CvNNi7 #e-]vAAAK.>~ܢE [ȥ?"_|ѠAwvv޲ew^>={fffXI{wu !s٘ĉsQTT9|)Sƌ{nd&M̛7O|tttƍo߾ 6XZZB2y4aa@WWWxﺻ; of͚a#2l{ŗ p#ү0êa7&]vm54%F>}'2xlӪG~ؤı(++xo/n@-,Sk7--'}u022ӐQ1ν{6oXTrr_==zQUUe@7=mj1)/ /'/ebyyyK,Om۴Bֽu--=#'OB:Ĝ\ڐ03adAa!fOHL:|줚ZV- 򕕕 [X[wsrr:$Scc!qYiFgaܩEkXƺ0WaQQfVcV aj#QBnؠ'Iyk7rmm,V|^jjarJIu QWWҤ""JLP\\-~p9}]_ebl)ʰ1SQVU**GÜ+11qse*^TkA:4$&6.#336.d)l=vaqpOC¤W/))**JHLd;#"""""zgn\ tGb2wv], 5m 3jkiuꩯgml?񕫸l'E0r"R+5jK[AAIHr|ByUWS251v bj[^}|8Ɗ0#=^EEP邂?/^6X򧤕]d}Ɣ ))wGDnݹg@מݻ86.۵uSWp+4Ǝј&>y!?NDDDDDDo>&6mjms.Lp֝3/ѽKgl`J{@DDDDD )2BrRrJwYҕ{|XDDDDDD_ iZ-7kW{i!a~A-#MDDDDDib&""""""444444AAA; (gqw eq]`Egaaq],;[`!H$X@cd''{nj@ @ i@ @ @ @ i1@ @ RH ׯ_ϙm;vk>#N:=vN]{lrFU\Z]~CLj'\ҽgu7nbM.ƌ{`Ç~ #ۿdيCG>y$ԍL11zMI{{}`3qW^۱Kw5uǮ݃ 2?xȱ_8/\Cxy!=] F:9d&NrիWAAbشys&LJ_3*΋`R y?‰ _s߹3AƉ!CJ-S*L$NΝ;9ˌ1J(esZj,3WO>T=7[7q7XptLĘQ,ԭ]C[9e̹ Yؿ5j(,U4g߻f̚$~NZnV9=ۿq%JG-ZԏъkubJ&UBqhѢ};A@ImԨQJB?O]pF8ogĈt̛8@ i;'O>|7v]bqnjUOOL7h={Z4kܵSq Ok1tيzk~]8ρW+fڵQ|xCYH:UJY8uL%Krر׮Lj=~x-7]z-{mZ+D!{6G ?slre#Ed;v 1J-R{&inZ5 [[Od]FڼbN[s;r3L=[֬ٝ >3G%sWozkx0yΛ'w1T fW߾I̔1)/3M o޼8eڢ%T]% ի%VluVHdn֤YӅKܵOĈS$Oְ~˩owڳ| . N2EjUjV.;cж&VZT\ّ ~~o|qkשÄ 8Qߺ.T֨;o)院۫{JwO^^+<'N<ڴj,im{-YڵϟSJ s WZezp1n3ߧ烇~7~EۻcmFͯzz6_WSڶ# )S$_bIWznvzY@ȑSH_#%LW^v7nF)kc¸= ze zif=z< i$D8Ǯ_/_ƎXM7p{1c(T ?[.GYn QJ%\vw?~ٳȑ##7mT0Oj-~0V9gkTl8t((ݿ.Dɐ>m*+W,8LW9/<~YD.Yyf{.2$p aÆX, 'N?oQa„ٷ ̯8BUHw)rdHQí~u12Uk>*:rfφ#f͒ vʚE킧  WѣG˒)7Oeꃇ*WwxGVCdɒsvM3g5 1 /|C?? &(YX͢G A- 9?gˍZn`>$wΝnݾ_pĉxŋYx遃={0A#|8mۢ˯߸4Ux-[D ?qPq,ԬH)kW$qtTr nj3s(Z6FJ&FgHd,,yhC;wZ(\=SN cdyԘq֬&! r{׻GO ӤNmCph^=td{ɲ*4}qSgyyҦI4C0xyБ'-T 躱g{!|)1L?cXv0Bq {̟=3|dɳg5eL5}|} > j ! gΞ1E;g?IN]?o޲mU O_[U1u4u*ҤIݬqòK*7aǏ}ȑ#.T\d|y\s-RT2TBvAA{ }PH?~**+)c캗r8qO&攥jJ֯Y*hM3U+Wک=̑=}t!*ڠEƝ:UZ2N=wguKw7՟}_H,`@(s,2\…8iZ#{6"7w y3*)'WMuZf3Ajщ2JWUYEEG bfV[RmرbE k%d̤?}J+Jɓ'Sa.m5KU+kW̥W bFI}!rQ[4P qfX*o 9h1K$.~f\~c舿'βd΄&ֽ w*_L+uv^H(uk:UJf OoH!;5>*&J`vݱlN՟SƲX ikFwtya4_L)U՟Y[lD]mj*N}jk_ɒ&)Rg\H?zYO_PN$Otl)bǎe@`D GJUoʞ-Yv۱k2+\JzLb=zH{c6Mik{}9iRova}x\3_M2fFJ/^{Okf!RH5UQ+`?{W !W_9sdwd%^~lΛrUe*ea_ƋɻM7,^lDHn^1iJv)Y}i0aF11*z3W{!mVrw҉:3˓/ZdؐѢFet 珁ĤgEK-]޲Y:bji'BwmOn+^ֳuitx Dݷ_=L./632O1>Yu ߯#{?mQXE !/n\Le^3<Ј~vP=\"†}:^_@}mZQA7><)[d*7|=όw~Țh}/>8 qi|FhJ7s $-rӽOzPӥ iki[ub9[67rZ]9e%u0,O\~3g K/]~([ ?Gg(͔1r`/[wNGack{kDUɮA;Or:[npy9ۇP=\گ$!N[쁶qq$:8u DZg dyc/]z֫Wt 5'&sŋP Aq'˗=hmNu/zA ~!W_}{8rӧOf כ{HWy"???H\4՛=Q?kɫr\rWf+kTbƍC|ϗ'L_GElA{SSzp-5w|MM[!;C_߻#E*Yا$M4K 6|YwԩE,7h/_w ˛*e7n>z~9gxhѢU,/o$H!- smBko$Oo7nܼd:ǩ~wQm!BQwϳ'™P,Ez#1ݻtr4ְA=Ǚ5Ol!3"e 8v5iyki+UR_ iΕR%_Bֳ 2e^=F؂r?s6\REzTVyݏ'ZکnW +S%L0dP_\%wyPk,7戾wс{'?D3RE?7=-[V˗ ~*=R?訇J[@'NBUVcLĂvZ򕫵>k?U I|J2QT'~?x0~[ݻ7o=zpIa„9lp?yir%B# ߍ`[_kVO:!鮧yN޵s̙F6lرc̑lR^rXx>b6Nz:(GlQD8[FzJo3bau.mѣ#j#Eĸ [*7P3c%$&uo  GZL)GČ#cY44iR J*_ݓV`PS"~UNٚM93˖./^\dVբYcqu;g<Ωey ̜){Ij1x?{FNѸx2ӲM~[B'D"5gmGjxv6R=rj9иas&Ib's*gNDPLj]mQl?/~f{,*YBCѼiQΕ!BxnԲZ;gUT"ƉhO$;'Y&¶-~ӓ E %3:-Z4TVŵkqH6ΐ>ݒP%LeOg ? ~IIđb@ ʨYMwwBn\"K7 ǷZo޼YzxЯr:bܼ~\ "- H8QJL,ZdƓP?QָQ}@ @ ݺtJ  ~ J+W:LmָM 5ec@ B1c ׭۵kV7,B r^db @ |gp3@ @y!v @ @ @ @ RH @ @ @ @ RH @ @ @ @ )@ @ BZ @ )@ @ BZ @ )@ @ BZ @ @ @ H!-@ @ @ H!-@ @ @ H!-@ @ i@ @ @ @ i@ @ Xtm, Μ9l2;;;?~XL_۷s6]]]#ccŊb ]VwΜ9b {9rΝ;5~r֯9y?Yfu9884 ^xa5k{n \kʕLD(i uؾ}ŋC)ţ)8qb8_|i޽+v0Ɓp۷o_]wqq Jz_҂6mtG-7WZď?iҤaD1b$IĈg&QΝ_lٲFݿ_I<$8_wwڵkS>?}4'=:Ά}_],bCWNL صkW``'O܊)"Qf͟mȱc5jO>'R͛ A<~xƍjՊ?LxφѢE>Z}˗... ,pvv֟ymӦM2eׯ>֭[u˗YΜ9+GGǎ[lٝ;wr9n(3gbŚ0a›7oGڵ)Rŋ~'zzz>z!֭[?<(PQFjtlL?ws$I ˗/RSJo>1cUZhѾ}{`+V?o޼Z?0L+Э[7h|U&j۷㽫WV-ZH7 ={>z(a1cFWto͚5u9sj619 /9igP-@Gذaf͚1ޣhsҥ/^vڙQСC 'nܸ+Yl񤭖jh菲i&  *@)Jo)Sp,>hѢ2Uv2dc٢5 t5jBxaÆxI?}V󅱃0U=a^R%XU{ӄ-T1/eƣFj5!P1n ,!ly'Tʔ) .>m^رŋTRá2YhQg >ٲeC±|=z0瘟 lN܆XI._Ƶn:WWW:`e˪,f8@$ ĉl\iҤԩ Z!#\%`2"+c5D'tBsY+J]J,6 u= `Purq!c(%1#3B%룊(6jLj9MglDtCmEK.%///,Fx3qƕ.]رlgCQGEE(Qeϩ먈W5kV%t>M;}L Y߲e fs>*᳀z@bG ֶm[D-Oϟ(M:u)챪Ֆm 24̪h,N>=Q`9r(RBYaE}sEm%JH3mڴ519kF5jא>>iONv9r$;lޯ_? ˫,=B1eUOSCdv8 CLj;vfժU4K0899m߾6D1U-cƌXlRJA_$Ll߾}i]vt~Ϟ=;\IƅJ4֭[! ȐČl#JQ @qJ)̙̈́3XH/^Lн{wu2RgE mF@zxxР ـuiz #Jr9q,C߻wɣ1͠cY'KbjyŊ=z{dQG%[)yG*үDvaխZ"BYdm5Mu)L3 8q Ƥb-c>1R BLj# jp8 C3b9S$Wd[xqvKTwXYK.1- FǾ8D?,ҠPB5k.̙{iOj*U a[HF}jσʕ+g_6}1v `Sd"BhR)~H$ 9rbaL´@ Aˁ艝Ֆ Hs4%V g8|TȊ8 ʼn;_q, U)Z.213kƴFP^=5@ E5j*/쇁?UR 6ڵ2֪QӮH[%|sR!KXʕ+d 2Pr;Ga%v!bTݧdq۱>I&%ߧOM8~ʲ_P^~1H7o:Re i{ȑjVgv`z+!A3!iAc`LKЍ)S۱cO mڴ֭Jn!z=ջlyP}̬MJA%*k lw(QXi>X;w.S <.Lj>zH??nalkܾ}њf!F5;h РTY>>>5=$c-Zrر<.'|`ǀ$H@1I4rHeX;8>I3x˗/={8 , Cx'Ɣ05jrN{-oӠڵk6cƌ͍Z_lHs`([83%BwD "-"P#A(*U r9bs~M4^|yժUFЄ nݺuuՋPHs;6ZNI E+:u 4 TD ;ѭ:X= }||h`8Pƍ VF )9slٲM+W\LbΜ9idǎ[^m6N>O9ؖC}NNNw.zRH 椏W~՟"?=}bP0Sz/^Ċ Q~xPg'L e/@ @ BZ @ )@ @ BZ @ )@ @ BZ @ ҂WW={TCǏΙ3' @S ,xeΝ;=vG~ctm۶}J /_0a… Ę\~TNHO ťK`(۷_x1 -Ӹq͛:ut{Æ ݻw6mڗ۷]\\] |D Sv}yxx4m+Wl|f͚}}}ݻY9z7oB#GܹsOxp35kVΝA"9-@D}eL!@0v2eʤJ곴F-͑#}fɵ3f(TзlIGG$zڵkϟ?#FtQMш5}tTfnݢD$I{-_ ѣG(#F'CKg[I& .YÇѢEsrrUV)XB$Ps'!RH "n޼ƍBW^nnn&LH2eÆ cŊѣoU-ϝ;׾}9s5ѣGCg7~رG%)Lf͚۷HSbĉCS}۷o9X&9| D`j)φ&ЬYի޺ukJbGGF͛Wmy֭?>F +3vϞ=?W}={K֬Ys޽/^@L7m$IԩSG;JǏZkH/^l6 믿>>;w2dH֬YL0`ĉpڵs^~f4iq?~<6iժvرc˖-sN TR\9qiA?}L2 4U+˗/ohhD0"Gl潶A-^zEM6t#.ۻwcǪ>: ;͛7ѣa„ɘ1v[/48rȩSh;،}-zH)R ӧOo#uvv>|/9s_UX{)Sf޽Pɗ/_vn6۳gMmJ*EÅ 6i҄)R`!%K@>Zҥ1%<V֪UK͛|dDqay ڌiӦ # IyϞ=Gk`X|ƍ6ĉh7۩ l͂-7˾}֭[׶m[f(oߎ =hyA .^Hq1cF\Ҙ =;"]M& < iZz{@ i"vaVZSŹBlᢃuTŽ܌4!!1W\-"RSd&u CNKRZK.RJ%0aBv [C/7pz\ԩSaguV!mW"Ejljk֬!# X&+ t@٠ qV54KуW7D*0n}l[[pZ ITF} xq[%4hauADՄ \gYH`7K.c:b_KD,)ѯݻwgJZt)m"4Yz"erQ 6VAaLrJUHָD_>$Io߾Ga/QBgɒRgŊvfvǣ-UTŊc%ӇQd@=ҧO|iԩ͛54;gyvÆ M6U0)AVX)0p-KPQ T!^S',iJcZ<|r{6f3gΝ;ٳmul/2 ْ͛P?pݺuѬW\AB/M]]UE;2cgq0]BU  K/sga{NzyyQݘj ȸ9s=zBƍwUTBQc b¬G3iZUfK]D(LJW_H ^{.Z(Im h; 局p4W{)SZ_cZİyaO)_~ ČjYQz6t9{fÝ;w  5L1 t-4i˗oȑ꡸ } {PHSQemsgl#rz{`uŋ:w\L93cƌNUٳg!3gΨjaU&.9= oTNNNG!G@Y$d!BZ# Ϡ uD,Y2[tCѐCuf͚ڕ"č-DX}z[n:eʔM6 2㒘4Q3x`ĩ$R v"QD8*V"m `]z5Pkκ… >{L]E[ͣnlBǷf#쌝3AUVYdџMs w-Ͷ%...Rٕ}e`zN;SLEeC; 0* Bt={͛7ϖ-K 4mEYĉ3~CmܸqL`+Wi<~x(QH1y\Nk D((>eʔH&͉'~7;>d!BZ# {=[H9rO s퍻P6zP~,؄Of͚&v[^a ("Eꔪ=E &Pxzz:::~O{-ZtRG4b'AN;X1+V,Սf rέZ+ /ݼy3((^z`!K;ŘjYf{ݻw9z">yD롘\Uk?K^Bǀک[=-00ʕ+Eզ@53"a„#Fпn~Zp0.%K4lЪ0IRNvZ;I/Ʃ4>:…l) Bt0SWV촑0OY(bŊ&ׯ7ۅ݋/2fHg̘A%Kː7{؞qt%݄NA-[S1n&!& ҂iӦussňatD 6n8lذ5j< dȐGb&F.]ǏWy׽(SD =+cH;wKڵo?C>ȟ??u&JHGߺu o-Z3gN +JJ0'@F줂P4hIlC-vL2WF/^rTRÇ'H SLYf9sÇ[(EҞG#VZUT)(ǖ0hܸq~&M ܾ}{UV6 ѢEc]]] m#=q+=*UD#G(D̵v)2d2o߾1(`s*ɓ'3Kj/iܹsLPuVlB,'܀}`ʕ+;eׯ)쁱k+:5NE|_vq/]3@JD~.] 8Y&UmjzE!r?sJӧ7k֌m !Z6m‘^9c%`Yrpٳ YES850,~cǎ֭[[':[g?nK7fv*E.\ {lbH!-аaCNCr +<;|p A{EyEXH.4~tjM6½{K1QF-X]HBykB;t0k֬mMuѣGIvYT9&ҦyP4HzF"AtW)S/^|!֞6, KǎC4fF=z\1bJ= _e22(30͛JLj!mZ]\\LݧOl?GHPÖ2w\ 'H!:C :;;SƊK=gn#+7Z;=r,g,)[CoJ zEzU3d<~xuFv*(4x3B=BKNb'# ab @MA9G-pImW"-xݻSH)Rk׮m۶@%a„1bĸw޲eҧO/U@ @ ߿ʕ+Hõk;@ |M}cΑ#GÆ ,w-@ 6@ @ H!-@ @ @ H!-@ @ @ H!-@ @ iwsm۶GLٳLB AlΙ3' ,Y"3%|wxE._=v˗&LpBv߳gΝ;-׿}vٲeVq)0nܸ4rYfI bLիW5OhРEҥKׯ_zѣG7o޼q˗/wssӯ}6ԩSv-+4k Vo޹suvԉC A|QN8秭AZp№C؆\o>MV tYv{o3Z;Vܿ?SFk>88xʕRH v!~3f'EpTR)Ǝ{o'ӧOGvmE:rȸq>WkVB?O>e[~#Θ1AY~O{Wѣ'I$bĈScGR ֳgO$N8a„(5GshĈ[ Oa#Gʕ+jԨQD\UBhU _eʔSgFȑɯ7oѣXC |9jœ9s~wWƈL25&L6l.]Gu?M4~~~֭[cwnڴO>cǎd_ |YZji߶m%vأF!&ZhG:Zk҂ #Gtww/]tǎ_zդIuv-ԬY5W\A-ymTTU FI4[_)̟?E˕+WVGnٍ={޽?F:uʑ#.\x̙#fȐYf,C.XҥKK 5jԇrSNd˖-&M7o,<{l Ԟr-[v 6ȓ'O ho-Zq߿SmƌSav\|9=dѬY֯_?E|u=++V… 7n8|JR,^ ,+=d{Me8q4jԈaݛgΜ/^LeΜ_XW|?lL}2e݋zĪX]vJ&Y}mp[R8'R {҇3jMa'zzz gϞ=a$0Cf_1K.Eb 0E1Azr-] i9sRHwNƁ,`hEݛ;wnE/_D*!XOKZСW |xe߲ԇ4Zh?&oH.zMCU0իW6e#Lْþ.֓T?5!J!Nf_2e U4C38|E r( 5S05ܠ=FXݾ}{'9ΰB ,Hj: &:w.\p &ԩw]Cܸq4h!6Q'87O ѥK_1K=IK4`ӦM: Yʍ˗/'FPf,FCb֬(`jB . /bD0;ׇ6i3006?wܶmӋ-z5tx*B0"E -E)3Xf͚(ET̙3VWTTIR,(s~00)e6^H(QyŰ-A_҂z1 X00EަMi7n-@UovVx6M+TǑy"JM4=@BYprB [о} m%r8\hʌmoыr .L1@\Ћ.鿵#p-"8ydR@ժU7Kʔ)t7BaÆ:uM6׮]* ˳ǒX"34!)S&t)ϙ3E ۶mK߿.0j bWRH ~ʕ fT+:iTM{;Zj!#m ɃZ Dj՚6mD&X+WX ׯ׾B|'$Ib98SPlAтD Bt!K=&KefI sԧN8KhA=Fuw+ơlhЮrEpٲeP7n2c޽fJ7C +iJ QxVF36x#NÇӠ8(}Wzǰe|2DKPP;K \ƒݽTR!՘U Yjx Rh)JV;Aт %Jh [l!k 5Mb[:z4PƍGI0aB{jAx``K.MA1&Zo 9ۼy3nݺڥ# x";1{nƌ5:QQ=zPa?.^cXjxQdR„ #% gݼyuYO@@̥j?!o0T&Mํ5 }#TtcƌiӦ |Q &_-r賮_+7Б)XoIW˿a6B||s UUJAiƲ|2#.ǏGp+HdQ^ae˖ϵkڴ)'N̙sهB UI&ըQcС%KD4Ŋ}bw`//WPnr*g i {* WÇ8/ / gΓ'On߾AD 3gK311QK]~vϚ5Ν;y+CxE(.S)(Ő!CJξiJ`J$pOo8}-M/^fff9AǮ=|p4 CCC `Ν;C6'\fѣGDЊtcpќW$,l*]j*-?>ڸ⢹m۶%!C'S3ҽRMnR^#D-ޑ(cTyMM)%=? b._ڵkG9vJ*'<={NNNi_ ZjjՂ422}(`b"V<2WL͛HEi8Z;44Yf}4iҤzS[666:I |uOZu2XqݟڐHǎ~[h!!hѢdH#!_QvWWW᧊+[jYu6l k_~]G1 Y,=qP/e˖E) #ߟ>}ZG U 57tʹG {Y-Jd!.moJ~A3:-Kh^zQ__޽{J36z{{K6"TQSWp%`1ݗk N؈?a tb$C&v$(J YdF- G=sLOOOUZr$ VPC> M%C7G%G2'M|LtO@mn1L:hS݋2zPB]/4r;wl3VJ rw؍7^h=%yL/ Ei/C\ۢ#@ /.TTfM=6 -__ddbԩ QF3ݸsNҚbʾ}7wBC m۶jFQ̝Q< ?hР ժU2e8p lNe QLcvZH}M`"E[5b߱c!f]J ^v j׮bVXeΜ9 1(޽{7o޼{n1^zB>gϞ /s(Ç߿5ZX}Gbydsppyf):D޳g=}ݾ}px] m2j:Hɓ'Z ^hGGG$@*7Ě6m!rnݦO #ʐ7`G@]v]|Y!ҤI ,hٲ%7EF8:bF HG*%i?{ȑ#uI{ahh*j鞞 De[@bqo155A v?-Z|dN>ME_#U/'FR)OzmooR],,,LLx 11.t?q|yVUй#5''/_E/78gdG`OD̢yA_ 6.^547z[ BW$^fMQb8"E=z}!XĤu֝;wVUTYpQ? KSN6 ~ʕ+ubV03~7q[m„ p7y"""Њct.1qD87-kʗiӃ,ާ&-8fΜ/94J~$RYDϞ={1lDG ! xʔ)w?>N^ =$Q~ 6 ŋї}jT?ZJ^K-H@E/' L]2aRT( "R׎4>z7n@`;|p4 \>4"DEcjhةk*jڜcǎEKEѣGC̝; \ fspjsvBID nD| 4.s݋FsT־Y'qܚ5k5} O q&?%E 8~rJ̙cǎ͛7×zlH>.X]_:gjcbbࡵlR=|_-suK^z+-wA;uTqKO˿bpCk zJEn=!B!_ &3gܽ{CwDFFΟ?_==x>gΝ+>>-BEOǠ#=x~ߏ5R_gbaz-͋F\ˣ (?;q~~qqq)_\qjժ廎fE~.A^Zs͔i3_|em]r{4} 2޵GZv9>u<ܱk35if.zv‶\fʼnST\նg9x~B&_ Ky>=tHML1,jѼ)>_qrѢYĤĀO}o|}tus-S pARRuI^=uhV$I߁C\%ɪ#w\aϧph$2*ƭ-7|ݎ^/_ȺfM4:h0K{_x 뙘[[Y8bX Ewr? oiqqq{p>~+o}}+|ߧgu<}ʗ7U -y3.[ZZdIBem~1Z4k2 ]qː/,W\V%Jthmn]r!%&ggyNLH(T*MA65=|^NC=sZmw? իۍ6Lc,,Iv^eڂ bsN:mu>q kWylW]/J+WN->͈Jǚ𑶠%lںoiҹ0b}I$N!B|AF ݾI8NmVH%D 䨤qH *?ץ;̬hZ5>{.kaa^oަxn^~do޾#\j`ldekլa/_ހ/'uOjv ~ ЮuIw!IreU%!!!ᕷxtDpS477{HA8\ܹV^ZV-:xʇ _nm_?o>*Һe %!W'ǟǹ^ 歯RZrm(IajǝFFFHmOA@;qJ~8gfI"K8:-74l$#~w%Uw/CGK3&fLjtP~JwAH7:[6p ^v]!#M>ޡjP`.sw@LAܩ\kXx*dk73gN{u#E N]-|LPwpo޺-yc0ޕkuާ~ص+S'LVO]swASg̒ Șb t^}wvmܰ)dxxp >rwai;)dye$3eBox|%~:սJpuӬ;孯| 4R7S>Q3J5[%18q y\ !|:8"M>[YZ6lP/Ν;jN4/B&EzittKQȉɪ>rJZxI=Oc)yKJz۽'NӤQLC~J(>_-] eXS&5o$f'y{.DK ;noS_WָQ S)3 x~8\\uDV^޼yQ+)) u4DFEJnqJjQQQ<36M:Ш2:$C_k<zz]2lhi,7>>Rv*%g,i+Qtk+BDRp.'&%ʷļAqPsH)irRF˨ԙdŒظ84߿O)ZhhhB4҄td܁ѭ x~Ehl'2>VQ0E322* U^ܮWΫ3BEWb;k&ǜO,Xh?^?t+8:o븟oN5۩3gTҽazOzxִnZE;x 1xeSxN0E\Z d;m`PwŦΤ&ja߾ps_@Ɩ?_9sFQ}OlxuMvgCϓG¥'N4 > ]LЂ{ U}h/^lPIImFC(ͽԡiLi>ƌ:(m%V߼|7!d8|*$E*_ʕĔZ'Ȝ|B.,>_~ ғM5y4tF8_:H%[Fu@ǃmXvX'B)^:+TJN sNϞ?y(ck[I6Dx2NŊDqF ߮`SNgݑQQ>>s* :N>)46D^׼d2 E$-_D ϴkEԽ7ABL&oR_ fg^111\w=&Z;~F}H<-?c=w! P1]חnyfLˉ5/]v 4!d8"M>Q u5z(uO}͛lpђ^fϕ%ik9s?K*Pr+Sq렟IYDG,8$w׫CZ'''C֩S+_޼E|D@}+y܄ukK )TbΚ ҭws/ʖtqdĨa:k.:iǮ=kTCY{۽]pv;uh +VO8F)ahXXTt!?T aФq>\"Xty}ڵil}{ʂaϞeR_k<ONn$m~G\ـf@WQq"*J8oܒo?x%׮UCe^xijS6i)iَx sllC ]f~%E"!,,\EFeJ.5i""".\ej)  9wbڿXn{>ᅏH{;keckݲWmJ\Y4Q5.(mQZRݣRKLL=fx1K{ҽ9y͞9rаwϜpC/wL744P˖)=a丸8ybVȼY3qEf t^++2dŒ0/_PByJ !PHhrS"'O}bZ'{ԨaukVlݶd`ŋ[֭]MMw8|]pDE| X[NsbB"|;wǛ)SWn LVTNmO#-ZYƽ{uB0[7m,Bog@7s#FU™FjM7J PLA~*N+Zĺd֭g>];wBv:8u.8|¦*T073ːLZ`.G.tj!>T9h@w:㓜diaQt)ן-۰!;ulw(4'7 poڟ&ij-صG!)3PJ.VB+׆mtƭxi196:غy6kAA ,XF!@g"=wX={.fiٸa{dPG1{;w_qhbbngY̨U`_8xY(%J3gGA!ه _1w_Q"*::~Uv766VWWY.HV'=oPN+dn3!BH&4!?~wV\4&˵kb1zukSEgg<<Ǫ̙̊=ooc5>B&D5w=eoZ;+>zj̩2$<~~UFB&Kd󊋋@QO+W3&B4!jpÞ:eu?&Ĕ fӵ[ IlP|l/kEFDxRܬ~lNI+֭Z@N 316үO/igB! iB2g;ܾ3g.EWcʕR ?{M[9fc}wY ac [ƹR ;GX|i]'O]|`*QځB!҄d1/\8eZbb7>>>7]-߾}E{111Y__xu1qVCBBLBWB!Bkk"..nּBE˗]՚5cT y>}vϟB!m4Tx{\$cZ52x1K:{y ˕;U۳[>>*\UnN 8 G@WWi]{ʕUm.|DY"!q^ean6~hJҀ[_.بP:kPƏ^8tDDD륖Gt z' jvU۫׮mH@r)ÏT 0(Źp򆵫*'O<]!_7mȝ;\KNN:c6'4, x1K%!X۽̟=M*c 0;͞!칔. WBBCN>Yxoov^etgKP Ө!OB!B!M@VdeeeP`tt ::l@ẙʗ+[3Os~}zExBElܰ\GEG;hre͊Sg"C>H_XoyPح[6Ǿ/]y -v*-֪E3  )p Uަ>,<<1!U#B!B|m+W.M;4tϞ?W٣[MNN;p(d'a!=J@V*t@@aZW6BEkC :ts 14oܼ`,Cr{u*[VB: @DL)+޽dhh`m]bQB:<Ôx׫Su 4N W*%'/99Y 3g(B!B,j7T:%WAGDD'z%UIE@: ?=kO=K"֪$)9IsqS^gR+==g,lytuuu0$)¢az |x9"2RBu!"B!˂#xѲEʔ)^}f(I+!kլ1x{bݻ4j;eR}xSv? ^0Zjɟ3gĸ ⚊s2ׇ2>!#dmݻuSUR ;IMcT9GǶsP>:LmР_dTԬQIHHO1FvhY}ttmZ)B:oS'wa~DϧQ.OfDW=/^ /.fi9EE}reߔXؒ'.]Ԥ /ZFDDR0m۴޲mGP;_(wB! i_j~'"##Lߚ4j}"ٻPqqqq 0^-yƿOpg!!Mڵ^46=100(weJ{R {o߹'%%`vv2˰!;ulwȨE^Ȟ.ZϕK!#g !B!$kѥ !B! iB!B!BB!B&_k…111J&...6msy樨 핐sNOO/B&B=|}}oܸ^?Β lܸqԨQIIIY(yï^*qqqRsNpp|}6\lp~dB&Mڵs ]d Tg@…+ez}}}KKK_tҌ4wܷo~L6 ,l 3Ūr#B/HB7HHH8t萑5k#GҹsMu7^ >ѳ!PHBOpʕ3gN8͛kNw߹sիW߿occ3`kk˗/XbڵEEM6=ydɒ%'''8m۶z9}8 ~߿y˖-:/_wm _b.\񃃃u*wWԩha-p\i… ( onnޣGZjE)nݺzj JJJӧRdm"wܸq 6{uyٵk2k,??ܹs#!C2i 5c Xh{ٸqc||<2tbŊh'͛7E[n(,rM͛7;,,PB(RnrʵlŋO>m, !!!ym޼9+W.T2Tqi[{B&Br1RJA?~\!j*9-UT_.$)WddÕ]gՃDZDDĨQvرHDԗQ+TgϞ͝;~={DtlұcG666vʕJXΣGLMM `Knذِ"dΪ˖-wΜ9-VVV+X xڽ~ҥK#/0mРA,^ݻpΝ;CZ#?0R!߿?brhiZPW9W^ݫW: ۷o/Y$[[[.|6MKC)"v B!M!E5qD۶m;sL?iQ%u7nܘ4iNPz#GMP"Q;4DݸqQFrrݻP={nݺҿ̗)Skx4I4lrC *4XEޠr!睜ԩc{ /YPfM4 Uu5:R?lcc#ޓtY߿YQɇoHmT%(]tڵ͛W~}h{_x~Māw``P_ٳgb2E۹s'r  I+G5[5̙3͛%7i,RJiUb*b|MիW{A̋IIIZޠPq8B4!W^  BCC`;wTV ?#G*_:66Vig]]],:ХctK;wJw/a7PnN:PJ0XUz5jV۶mL!BBȿŋ!WΝ+-5c WWƍŕ<,Y&߿_>¥J277wqq}!֬Ys!vi|HP [NNN{Õ@颴\˗/""B(IM1v*vA|/a%K##;;, YU<,XPCH{i "sohU*ի=ziFFFicW@!҄B;wQIǖ+WٳB"ܦMybŊ5jXvm߾} 9 i7id_LŔiW\ Tкut#Y[['%%xOOOB +Wްaûw !k4hP*wG@Ʈ^ZR%lϙ3'DeݻwUO sŋ755U[n-B*v/RE7o;wдSUn" G!BBI///_Si;$֭[8Pn]ydرE͜9SR#7{P dmVf*hڴiT+WG, ʕ B~#&L>UGEE'B&qFbb"~~~?oܸqԨQIII8txxիW݄/^|}zٷo۷oy|±[޽U9r$..g=!BWW&yݾ}[QFcǎo׷400>… +VLW73_~v>u}9::WR&B!$`mm=dgڷ͟??Civܙ%B!PH|UPAC}7aÆ^^^כ7o߮]ثW{lUV.۶muիp‘#GM6]v)#k׮EFFѣYfAExÆ 駟7o]`"$}v?/^ |QgggҲ[nbX8>>~ʕϟ? ~WF޺u7tuu˗//9߸qQv 3g*M=PGrm(fڵ/%3X@̙/\p&Msńs=z$үQƔ)SaGhhh(oQquuurr @cFuD`gg? YȚ5k֯_L"9rɓk֬Nk"!!aϞ=hizB!PH9GCdh61c@V5ʔ) CA I 8~xH;w888@ԪU թS+⻸@*UJ˖-2:m4}͛7ȑX: ,46!wtt<~x߾}+vĉsHテ҃8n:y)Ν;\EK!q?~x()@<#zz  \]t dɒP 9DqFqSh|ȧ~!PHB=6mEQqUkkƍ 3uT//e*ϛ7õ2quuGz">$$jԩS0sQ BCʅ44&M@CH F|d)66kݺ5vQ*9g,F%e3:vXZ5P4XZr?ug4h "@:tHܳ ʕ+KCB)SFlDΡEE@j ) خ];IeBlKGX5 nY::4?-ĿJ!7"񈈈E*T?---'Mtu{^g QN> ځU:( ҰaCh;wDҜjV:G4{;Am !'{ .||.A!Bd/J*5bg+R(pּ ?~(@(%hx"$$ILLLLJJR5k={VGn$Qd ZᐠPbx${nh'd [ +VԩD`ր҆SiH]vA}AAwӪUzAB#F`(ѣG߾}2")ȼ˗/Ł:-]#Q:.mPv|K3tqcƌiӦMfq9Z֑Wh!hˇ!QLyF]Ԣ>& 4eX BZ}ǎ(21A/ "dbB!BK@6@en_===iZ yJ˅ 6m4`*U@͛7ODHKh?];wTV r??F)2d|vɼy۷o: YرcG*A!q Yf>wɓ'EΝ;#'NXf all|k׮9r.ׇ腤u$ l۶ݻw'4vZI,5Fiֽb??t萓Ӝ9s,,,ՑRm'RTʵ5NK-JC"۰5jM~ ~~~bWӧׯ_s[lAe޽h۷ҥ 6FEEYb,'OD=sPPl 'ny-b7oܳgb)R$Y=SND6n ِ&\,X",,,gΜJH[_pϟGmX6QQVGڥ`"*TL2ҰV ,Y}&,,38 [nEn5=88ݠ"/*Wp\:D -A!PHmG_ mǎx6""B@.CUZRAjN>)ˎ-pƒL5jJ"m„ ˖-[hQ"}%J+ _ ÇիWQ7n <#'J 13g/v]$W/[xqlD2&nܹsGH8P FF5ԑy/: NX@< o%46-JC"ڃsQMp+$1tMzPғiw44;v,RG 6,..K.ݰa \޽{ .D녎EB ZѠAlB&,-*UKLCV}& !\G /08C;woĊ(G4QJI&G΅  pUo>зu;t rZHQ)YpN nbp!G"cM SN!3cp@pv˖-D E;}|hŁ/?#}$(fh#u8 [ni*9\~=҇-}ȤRد#m}}(yv  bn|nݠ|PSxjyĉcǎ/^<88kQIw #vڍ;" OC?~FC4H#B> &T+*ULװ!/_1c| \-[8p.Q֞f͚<|m۠|B::::'-sٱc͛LLLr\xBjJ  >4$  d׭[ _`7n5H(744tڵPIbĉ!]rm.C%&&B >O< DpP1{S$XeGMAB6hB-!2Qj 9Q:k#8ʑ#GୢPbntLL ֦Ce}͜9_b\ 666Vi3Γ'On߾A<9sE/`_ \mM~ I9鮞XUΠ| u *M~VQUVʥ4TVrmJݻ0թ\& j@eT&./EgB&/gϞA/'%%AA=}TNn?y̙3i|_V'''޽{瀀y )XXXhЁ鮞9tWgP4 ݿf͚Rd YX: .M>}Ǐk^߻z0sp שSG\jFFF0Π64T._[>B4!|u29~L/keQbEuuZGlwssNJJz da *WaÆwAAA%''KNKnݠ-ZԴiS(IdJR:9WOЀ3+`dd`b]pJFuVYZHjժ*U ޿_rEe9rtِ&iX F`|졡bTK>8p@xB!҄Dw.|Y?U;s6mʕ+ub2,,~&L9x`DDd DlFthRJ&M*^b2offS2Nwu@i:Jԭ/x"نݐ?hnnrJ KK- 8q-[Pap#rlH/VBɒ%]v]v USpahl9Q$2|!29Jb\B#Bܽ{tbC%~닷B!_&BH\hQ={+WNIE{yyȑӑJ B!҄Bo|mH娨(###;;Yfڴi|!/ NnB!BZtiB!B!BB!B&7pwwwppPp˜!߳g'=Drr2#V7!B4!2I75*)))d{ܸqk׮'f;vy7nHLL!e(gwﺸ|2I۷۷nB! iB2Ò%K4o)\pbtuQPNlmiB!%|bܹsv҄ lB!B(Ive޽k߾}.]1**j۶m9rXݽ ߿NnnZz5#dii٧OZjtBCC7o{##e˦׵k"##MLLzѬY3˕+ײeˋ/>}TWWvÇϝ;ҥK1bD|| ricc3tbŊ!lkHvذagϞ"3ݻwGjmڴB߼y?v^zݻwfff0fժU }7n WȡU~*Wɻw>`+W" ?^WW O:J׺u"iii٥K)S!Sŋ#!#n޼1gϞ:t@E4@ONNF<ڵk#mٲeS'Ç?3VٲeQB޽{UVQ/AEG!gΞ=;eʔcǢu™3g?2Ȑ&&&MMM'L-9ǎCVDؠϞ=C5>x)!V1b֎Ι3g̙(k W!k.;wnfAC'O4B X:;;g{lXYY>*(u-]l, <[n̘1j* hh^bAADDD MwRSSWw""nϟ?GDC$ 4XXaJ.\`ii٤IЙrGaC`^z;wAZe'DDD``Ht5RkÆ CyAJ_}}$g===߿@䖾Q٘`ȏ%1fldc[ Gečm'P@@.D4z Z *Wrׯ_#T#V^\eZlYX޼yW<'+m׮ѣGΝ; ju>@RRҗ{5ZnP9ن >)^8"ܵkFn߾}+WNGG⡸62Ν;jԨ?~|mz{{Ϛ5 "11q˖-(Dy?~Μ9AAAˈsO8ѪU+$XOOӧwUE`;r䈗WR"""5k^/VZ %666+V@m-,,_P@DDDD yݡC.Ǎ'믛6mB0BAAW^H-Bnٲ%b򜬬nĉlK{H8G)mmm8ၔ^p]7{?H}h~2e]z%:|ĈZuBpp]޾}'r8q&dТE ??ƍkȎcׯ_| ĦNaPV-gg[YY͞={Æ .2v[\`ݻƑg̘qƵk"c 76Pg[jjj"g%HرcѺs&&&JfSo^OOOA?h/:hZ^^>-7A… ˗/f{@k86(4}UO4ѿ6667Ω|eԥK"""""i ۷;**t}X"^˗111zzzuqqqɟ??Ft- iӦ .[[[RCv2ŋ޼y3f̘*UDDD[͛߿/S̴iӮ_>{5k:u3444!![j Ҷoߎ޽{XXX :X9xv۶mXlgg׻wo--ŷ@TyNNNyUŋŋo߾}˖-13((hڵ5.\xѢEQ%]]͛7ƍ AwYk׮-YGoVOZmذʕ+Xr!*WQX֭[O<-ZtժUF\j*cjj:u[n˖-+QB'?x`F mڴٳgf[P' CʃJ wUĉ/]g򘓍(g׮]3ؠ&&&ݻwwʔ)b 5zuC'X%K4ѧA4=|p>}(92s̥K"~ÇÇ722zٖ-[ ī4hЭ[7 Y"!*T s/^V^=D D#D#ᵈg '?}3G'O___)sǁ++WҥKbի# | Pgnn.\x, :t("X|={ ø!eV+==5k#b(HARWf. * !*["y3F>VȴOXڵ k(]2nGs"ZlYׯ)/&c^z&Mڹs*(Sjʓ'80(5mI)݋Ma&*-(G5F!)lLBסR?gc4&%%m۶ ˋ >+Fť5ʼn։ `P1Heɋ/7l zJyI$Ǐ,ѣG"Ha:ҥKI7^"_ӧƔ+ܥpɓ'={˔)W^ǜX5# b7oި/f͚6mȗ/F!8qbhH;v7o?ܪU+[[[TvDndKqRED-j`+1bbb>:*T233_li""""iO .puqqT4S^9qfe-Oѷ^WMgϞݸq>}͛#ZիשS'9*Wڵk^~}fϞ=VAKQU"F)Rd…/^駟4h0_!6߿{ƌ666;w Qr#oСu?Zyvh.&αR :+tttJQv5Hea||Ç?dY%'%%u޽\reʔQ8[c&r&ž FEEIsZj!ĢZ QȓM4qssCDd3 ,إKߋxkʄi՟͛7?@[Fccctݻw[#Ҕ+:wsNmm*U$''#bu X"er[m+hݺÇ]]]^q/͛ge-5j@ \|SΝ;2$#VڵM{J$ɓ'ϛ7-&&aÆݺuL$f͚>Ϫp6mjԨQpp0D@tR1s6ѣGQkFQoߎFpO:j۞{ekG EjժxX~}4S s̱˃QY ȑ#^^^J@}hHh۶-*U`x 5d'@VJ-Y9sF_pafg"4Ȑ'N@A, #G #~$X===^ޟ /G~򥡡#4 FШhȎc##L.\A!Scǎ&MHE؂VVVgƒ@?A<@sn݊V+WN9Hgo4:::GGGnҩ>\b̙3i""""*iZ^^>N$7nܘ1cbRbžȁC 6Dw''aÆLDDDDi_ .QD¶mw}5)ҥKEխQ4޿CCիՋBO~Mʖ-;mڴO[}xjWv,444441H1H1H1H1H1H4444441H1H1H1H1H1H4444441H1H1H1H1H1H4'bPng'Q6-ZAEJb'Q61H>׃H1H1H1H1H1H4444441H1H1H1H1H1H4444441H1H1H1H1H1H4444441H1H1H} kٮkO:$$$xl2u_'68xhۂ~1v¤+WLjqZ Zbwo˶O DEE/^ &&ocy  cc?xaݪKLL4Uxwmr/X ;A({ SS/)Ƅa^wJO-Xd혰0/sﺬd>*Ю߾رwIS/wNzemNfɄM߿Mk*V(SuHJJڽ/1ݨa?'c?FLtaq95=X 3SSw# nR4&w,\l:8{һ@\!$4lŪcnj;7vS.JMM=ڳ/Ò>'?U|k)7fO}{‡/_[o޾%=C)jbif\\܊kQi]9X _|&/\)ZGGg9ʕ1 ? |*&U#k_ 2۶[IUTIL"E< |Ļ㜈#Ҕ,[qȨnhXXrryzx~hzU|Ps_G$z׮߈66NkZ>R8WZ!k.c䗵*qGC}}o6,/]AZ:b, N<<(DOWҢSv]:Ő`W^}A^p5k߼tijXsEL͛Mƍ?syl;]5D} DDD D9 UL B̟;K"kȎ֬Q= R:$%w"-bǟF ^xqȠ[R TI"YyzyofG?Փ㈈7:}v?UC߯E+VkӺkȖjua?I^"{6^:YػwfE )҅! Yz͊fXPTT4r|QϞ=_l%Is^\rIboS!K < /PgZ K]{7XU9ڸn2;Z!ZgK%_,-&G8TZY$/I¥KoPn Dz0-&4jܨum%.^|т.K֦cqߧLRA6;~r%%יU*WJq\k>O?owO߲wÿaCH91(|r 챦'U=߉Xlɿ:t(ϫݻmA@/\*k """ippIJpMMM:wl}ϞKK\@q?Z!Rnu_GIѲkT&UOO̹s""ԭS;_|ϞIC6+]Tcz۶Dв-??ISE(Bĵ.W7nB5wU6ٱw!yYcF!;?"E-jTjՇσ^Ǐ}zrmmmfMt_|"CG=x =Kf*|礔Ԫ{e Q;$ʿLINAKi622̹۱@z6!QxuMML^)/գspptȗOa0yj[M> jioW3OylRyGU* }[<NHH8{i'?ԏOH(R0\..ظAAxꡋn֮UCeƍսDN%N&*ӳ)fW]Æx@W8{޻_4_>H߸y=aӛ_zbŊbG=6o1p@?/0ܶiJj(mFd` Ii+VUL`>mh6 ΒAcSgb+8d|ܥQLMiiXaGjXz;"])ir8(\6{XHAwG6S>TCv_G vO`q\Q8{7"B;!x'QӧfeI ===1yKUGM;v!oݻulVp4gڔ7Sn]8 Gg^4AZ:pZԠ-Zf˾_1q7#޳C.uv;sReF;p&ܽ+_DGqn0Dq*ҥ *$^(︸"%>нvFRR+l!;,w{EK9hqի[oy>z}k(ߞEҷ]9ZAiߩϊkNprw|?4h㋗e,-sƤg?.j>I7 +ZH: < u22JiRRjZޒzďC|/?uLCvD[[[\p!;(Jvf ߻+!p=6m}o9E:=>&&&=2e)|la^Z\`vhh]DаZ*S޼u[,lq#q4g.]&99Q31 {;[10iKcx4i@M]ciaDxnC0>i8IwGq +7jԓ}ū|uyGCBB .o Jw ѫڴںqϒ$d?DGDD M*eܵN.FGgܥS=;~Iǖ/.,wr@P?ɡaaR_xq). 7U#BxѢF8߽N#~~iם)"{k+T(/_Qm϶H*U*`K׺o!&Ԯode֐4R ?D]htc'm?(fVhG;6R3:t[9G쇾>F8}ZW]ϽfVhh6D$Iwkլ!E6H?ٳ3DHC:k[߂ZtyM;diҘٹgϟq 4i8= {3x!ϯ'4mH#&-UE65},X2㴎Y/_ZQ~}x1-͚`k>DOW]ddxkFש]9⦾3>OKUvA|iqdS:YZZH!jf&Ϟ?7fTY+ڊ{V4lvCw.9̴@r(5SN=6obbϥvX͛>5E,-G~5U{&6ZJG}^=]f]ӻ[m_GtXNm33zzi 㐹k;vACZ5#Ks׭,mS1Ѱ~]3NEGhE'ֵ'fT6uj?wVϸwCN[@rZ--,\&'QZiwģ.ԮіJ+Heհ~=qo|/]*׬QM(;2:uhNYcAk;Imul,`GDDD Dٗ'Oۍ7ǒ~ ZCvD{N}z9zwN(s}QqcIҥĩعoP8?VL0GQqBBIG|{.a=t[͚>|/E"H5Ԑ]펝5}#iH\e_h-[\~C|m!y%pq. }beUfg-vO02 jV|%mkjj5KM4n-}zǙxÿث3;o+LM0ul4-IqL[>t_c0qShִ}ZKRnҨч/ew;s 磳"5 KDWj E8V,2"""ra«/3smCEÿbEbwܘQ[;Vk ͫڵj89*$;ٵJJ)b_UK$KW0͞ѧwc,Z,/NDQkWAx ֋֩Uy1'ۘ~J+زǼti9_>-c֯YzWj]-;t鄢jv4G;6g>aiW?]d8Jp ؾusu<7[պeŋ֦UKccuIRv=讑ܙHҖ?ٯSYɃȍ-ޭڷm-2ڷ̦uh)O *K1b7{-if&-ѵ|zu& Hv]]7W MH7m!HWZeݪevdY+B%KfE},(vc,}wSL󉈈ۤiU {+{;sCGin!ѡGJJ ۔o-&v%&&"{#DDD,MDZZZ'|N9q7ĸ}а[8;Ye+o9MDD MDD.\"tZvvX<312Hv 孝{߈?@@… ř|߭kn]'PӦyCNjްnǦ-M_#""oi"""""Żv1H1H1H1H1H4444441H1H1H1H1H1H44Qb?,::@DDg&ʾm۶|w`WXѪU *:uTJJJ9&͚5cWԔ@DD*EFF~55jԲe0!=9{ 5߾} i>ڸ~A988,_<::SgϞϑ'''OYF;DZÇ Yw9 ԠUe -YySdǍد_7o@DDivںuƍϯr(ggg֭[+V 3gΜZHOZ_ 2E-}vRWZs'O}}}++vըQS9xSXD jii}jcǎUᡣ2Q8Gf޸?300@pRl7E\\ܹsWdؔDDD M_"+S}wg̘1rƍR9o߶մi>b...Gԟ={6%}3244̩7>i($"""il iY鈈s!p:99*TsuQqƍ=^zxݻUĉ/]gϞ8c1===D޽{kixTXQLԭ[>z("qPPڵkp‹-By-[={h޼ynݐo5dwAt-#իWօၪ9XT.]Z+Ш>}5QFxsww{,X)DC9עׯ_u~֭'ODO>K.ED}b^~~pp0*ncc s0<\]]/Pr狓uQ q3444!!aUVbC@1Nطo7b:o߾bsgjqY v`ԩ&_b*ԩ#ʶz*//QԲeKī9/^7j EHH+GE V' [ˏ3J*jjʹk.l&111޽;x55k`#bݺuX; nS+L?"%%﩮]^ŋx[X[[[ -ogVi &]:t3g 0)_u|b<4}܅m!"J2ebcc1=Qy%Rk &r8v)jÆ yfϛ7OUH,ba@#3b{yyn->V!;`!2<<stuu-4d* (]ydX)"5d_"c;?*ޙ3g6hРGE޾}{bb"k1S[լj7ntz?Ͼ}vҤIHHA<XYVe˖Ek̙3H?ūW׬Yi 766C$([)1\y{M.]4d'/bRϞ=` l .lkrh/ D<>Td#GEHZy\eVB[`B xnh^`+Wnݺ5w\buh>B,zcժUcǎݰaJ%tcfxs-_Ne)7PڦMbbbjj{!tZǎU AAA hxL0BիWi3` {1YFW177E)$L6M_Pa"7rZY~= ^UD 'TժUy84}CL ׯ )HKV"\Ů8ZPe*j%K0}_ GFFH#,Ike0$=ݻw OJJ8}'Oj׮-E͛7#y5JCv(Om߾=vŪ* !D߱z%]]]i[*1 5j\~]x#4lPL#߿_zJOOիWG,tBQY@;p@߾}rʡPUˏ+5%(4NaHi oggmglGGG1t02Q6R"2ի;'ec=48uG^+W,wء]Hq;CJz NJSWHEHpΝ{g~|~t8I;Y|WXTịGܹ#>$ٳa&""boHŊ܅fO{E#?\}rn!#tc>>>'I5dxT.ֽ{w)!vUb?iJ 6mB;Y9GJa7 م/:[YUܴi'N >-RHb H"0  !"e13ARHt{+Z*8F"߫YM ^xa1zj5%d: C LͶC߾#}&u; b?rt6Fƻzjddxd>:bU"&&DkAuNPǏG?[̶O)ҝ1 *1H7D${||ARJ׮-SHRzk#={V:%gnܸq>}ْnnnZZZ ~6Ϙ1C>5)/ijj+slTdpD>8A]e?)Rd…/^駟^f͚(~ ~\=:uSZZ lڴi DѣW$ ̬]\\*U$ĆVj23+!^l̶B{/WB?ܽ{___DYL`ڵkfffϞ=[h.\YmсJ˻tbccsȑK+Ad577GT0cˋ{}to^|GJ>AmCBBBrPua:VfYI&nnnȇg5 5k411AW_znݺ[|qX& AN}-V_g/EVoݺu*U}R0zutt-;PBjV02+AygqgAJ Hg ڵ۷ ,K֭['mZj5h/?W_eejj+GCh ...SNsNV*栽;věZAg={HS.W/+l֬͛Ϟ=+-;^/vdK*Uh, SjKsOs7(_~]߫W/teld qnhl&kϱG G@Ps۶mg͚e˖rʉfф={,YiӦXZ ݻO(}aI@ E;wFfNNNF~FPVmDzݻǍ:JDhKKׯc/^<88X}}ő ,7Ç/W۷y^C}>|;x "}AE'DDD M~t62ԩsE<<2؈#VX1sL##g=H/_)BvɓE>|xFn݊5bY99eb:gϞN^tq @5n޼ikk믿nڴ #** ȁ3fظqڵkT j߾=".b 6P%l"R^"15Dz@rC2_h2򛳳8jaa/`KaT ")_zxx,\P'4|ر(pܹH>*|AN8&"gjqY zꅐ)~#e˖jtfNB㱍P Vmll\vm u֡dqe2 R12|X===sssqVe}b)}mee|9+W0SRR0$,:}#l.\X|lQ3>;hZ^^>Nޘ1c2$..iذac9}}MMM՝h?ev˿@jet/HQjjj;v 'ĉ]t)55hѢ^^^ L w4*ZXAg8p7DD MDK[[[O4IDKO~Mʖ-;m4{MeðZsZdeGw27[MDDw&`-[L2E7JzZb׭[7qDKKJ1Ww:01"o>j^HuVbACccdZP}?Im_e,ZJ+&"#DDD&;;0rڴc>c8ԜF,̱Ə/ge+O; ч5cx. }AN⠺ʗ?hPƇ%Eu>#?rHї 3#΁֨<~Hvcș.a7t|嬬g;r/Ӑb6hРz$Eg[ZB9<ʗ>gRl< MDxDl3UA{ؙTeک3[z )ۭ^*CvC")UTGiVmmHΤ̾{l~eޛA(39z2sS+PU!ViqgyMDDDY*8[2r'<+\f[r<*Zmsiq:`C+ ҃~N x}w,Ok?[Yw挔=:;+I>γJm3Yi߃,Q.D=߿߾}{*U*U o[j AN;R!w?>g??^Vhz3߭!GVVeaJ/>:h2) ArUUDDDӪ|W9vG;¤$??? "ENII޽!CZhGDEѦ_id(kf_DDאvi蘙,XS_>s̗/_|dɒGA,]a֭[sҥ+WbxٳɝЖ7oJkٸqǏFp1HOjˇ(ۡC<~ƍ1qС(777_HǏz/e|*k+ݳg8*+*D+W`u"VZuСwvqq/[KK EaXX_._ŋjի#$_t /OHH8p@߾}rʡ|<զMTnݺ0wi#ڢ4XEDDQZ׿;="""""iO*P!txxxppH=B#C"cGt!Qڵ+00P9uc-"?ֈ =y͛7HaJJJjjj||Ç_ %KDċ/7l JJJzX;ճgO1?99L2xJرy~VZڢ9?n֬Y7n`tRVBBgT&&g^[T1ce*tEi"+l,S^N:ɿ E WE믿N8={̘1E""""/rK͚5MLL|||^Zn]q_.+++qX& &&F\`lhh9+wVTdIZCqlٲ zzz%ҥK۷o/?~ >%Jy* *$֎>Aca򾾾* ,X`.]-Z{$j=""""\#Ҕ[455;t}vD'm۶5kCbb-[ʕ+'nذ={,YҴiS--ogeE;v@9AAA۶mk޼VWXVZ˖-ӧRgrrtmI֭;wl‘fUzfc@F3K|C;w֮R *.&֭ɓܚ5k&M*UYbcaa+v),``` n.>w\v…sp韆H8((P`ԩ-BZFuvv͛7_xXbYY ݻwfQ`6mzْ#G #~ 58O}ƌ7n\v-"7ٵkWTT&&&#F@9s&?+AZfĉ^^^]ic,^vmqzј;J$޽{.]+\}۶m9rU*셯snƌӠA_~Y׮][d~aərVtt4o@DDk#Ҕ+555;]/iBB“'ON>cii GDDDDD XtippItuuzFFF#FPye57oްHy~5_n"""ewop\   (AAAA!    (AAA4   FAAA   HM%[W )_|zSS F_'op@~ћ Yk-߳ zpj7rS᧖Y9Az5M   i`2QE#rSɤE;  BAAAAPH#   H#7CcZ)+/MpR>LR/Ez 5ڹnb;   i)1^XbX @k8NƲl8(T&3LƱ̞IV+r,4@9GnڴR]sC쐾_eXf ԐjE,C^lxjXr9AZpZ2.\K+&i   i/bL&3HJ%H!#9ֺBFdEE3~1`45eZAq$(͚*($l2LS*bv =•KJ(夎z:\ۥzliiEP'mnjtAlTnAP(`mI(3.sH* 9/AK[*DUHW\Bt7vl.fjtooYiR.K *\ӚM/uzP?vNXfɯKy"V1O:NVb(ǵԿa 6uPB;FA7QZ6 7/77///?? * ]qiF3BUAo(*.*r EE͂T}u=OxnݶmM-9=t`XwDgv^h2Z-V,Ax=tNNk4^*i!Yh2x}۾c%ep՜ k1i4ޛ51 Bj@墢:bPRRZ\R_,3C&kwr6h^oksR\} %,[,5i2n^@#yEMpR)ݼ)F&IXe*.d ^ A (Aod:+]]73Zh~U9ݵ$襅 ~D/ d46!>=2Vd5H 5fX%Ih kdL:AW[me Z(+dXbi2ۜLǏ )qv3'8+MنڥR_4@.2ϋ,)WiP4C+*̇hh$@ӉjY9^4e!;zQ֍!31)VWm($%Fz=( V Id>ՄՂVbA 2B'-TT/N'umCZW"kҔt>/K˖shwm[!̦Ǖo4D:"p-},2xxzeciLFt$:Aƙ5@*7'Ilp%zO{oL|= yyho:e썔p''z?8e$нA/u yyK.~E߼9OmV X6+QA?"1*-YTY+ïz /ZP9ڽ<ÃJ}g'su2n]z{TCMj5BmŇ\z,2V+u;e?}{ϛ<=ĩ;rj+˖QŲF.-Acw&y?$KO_-`5 fnޠPSL|U3S^V)U`dmUf&hg>P8[l.B9C^JtcѤz}}9s:gR,x &d3EG&M9?uTu$ɱig Ak*zLoULD%BiH{qЪ䜌 "-)YNxFr&'q4GsVdVVh+՜VW_de{4j4I:J$4뮐++wNс*7AھjG:I(NE)+XX4iAQbJ/+xyZ]EY׶{Ο3Ba4Jc);q#hԷD<_}=7ptezCu}U}Tj=By` aT^rFGZ<4RXhCv/_O,R5ib.-mЊJkwlyb*%3g֎ϴjʴ{c+i→ɼחJK\'M[Ԟ:qbxCYK^!7Bw}ԔgeS_d[#% ,]qY<{}fvt^!tdёGY<U͔h0x Qp7h3o(=}ӓz,>y0qR?\gUb.q>:?襌-2l iL붲&M @JЖ&O'繷nñ c# UM`@+rSIq#>-|Y:u𡁴ɬT_HBbL&ֻI O ecK|c5 {G@?{ˡ\M\V;(_:͞+KYk^vϾrׯ:Z~F䢹Q(@ld'Tcv1f )2sgY%Ó[I[r7P6Jf [zTy1fbMzA|5jQGYKK ~ӵ(Zr֮ğ`1;n"+3 B陿1,od9N+w AզM&5u/GkJh2Ört7ZK%;&C2E蒓DžBgS8?/onuPUQReu|_b 92W)jǏϧ1,{}m6u.)^Q}.sU8肋^ILgF1\\mj ;|oPMմuR1Z:;`ߟ>#F^Ӗ \2'&M)Bхt]z9ʴEPr_9d4?/]VZvo>11kOR? W<ܕl^ǻ6n9gN*[ YcZo5mfÒI(Xo΢e2 |J4syl\w(ʥB{\Q0\]r"[S,CZ%-?G]5y CQfS&1dNKdejP;|.%H*,oRiB7w FgUa?gf@GhZQ~ݦGWXCIKVZ)C@,c@.f,ك#@nAj\aed2(*{:)tU+s2mڂگ)Zr ~*Z`eU YW/,c~ӓ W8@ڧVE蟸X(E6 }yqݸdg^6y6قLP ._rDuG.llLCc>;_9+=.xfKy `9+Y2S,X^A5xzzŋJ6dGw,NyW1GD33-E1+UjcS"@$w?Z|ysJd=9=dTli5,˓/;v.{xw7.jn*N'K[w%mO_Tg V-{n fcDq__mokkDDp]4҈ъ붮JrPBF&J6ssdrci3S$#?E[6Y"g(ɠ7vnk`2{>"lIPf`dgZ(Xxxɚ4mO)TcdTc..VkW°?%[ڛ5 YWJQ v4R{zHzLZBF Tjh3\^V-oDЖz`NMq 'XQKYW@pZKH/?ң#TdV2`*yRZT),˂37t[^} o˼ρJ~K?m*jvwg'_{)l6ʇUxN9-PW3 R!ɔm3Xnjբ+)*Xծ] ^ho[+/jjBoFP Wb[uWmK͑+E'[ex8J\Z kT!ye^6 !eF”͗<<ȫʤͅtqQ7CVmݼt{ikPXfcz' cŭn2cíg֔\ݼf.ӸrQFь\)7}s~-Μf?(+#W@gM,5sZ}A~vAܲI6*Tz\ѴΪ~2;Yb^Lo6I3CGr> _nYO8Ir9eĵ  JrQvyD&3Wwʴ zw#Kq4YiSD:ЌTL-n^TnjƳ[ϋI'dbZTͱiV 'JX8}͛wldEShV;R|Hy v˓N;Z5gp`Cbl1ax<{jJA#LY vnpI=B^)TyV&&j.2^0< "V P'+nbu4{խW-+AfWlof_kSW@/JǼfmڬVhƫ|5GزmOOj2+ADr̅{ J-+4QtH+p'Ew9gDҶNo >iVrhzO~)sd(JT> B!n%@Өܼr.~E[?#juuїn7ƃ,ɳWbCd+σ(z B[N9/Af\<ghI+#,cnICG D=o/'RT'ڎ'kփ#xTP x ~xP)JWW^0˖v~w~~"+'=ennLN c^ yַe(na,+=Hy"HVV.^K#voۜC'2Ϧ植],뗟]]sg$mώg@ENȑנ,X[ -b&sEK@6rrޞAi4I@{t|wRKƂ?}@f ݥK)É'VPRLeD*2%w^^9rؕ {9f\|)ᄅRd,seߛ]Lf**2lJNerB~0+h,ާE+;w,Z͙-nj$jÅ $/O}Z^2Wm$S΋W&*]J+\He賓i']P#SqF4/n(}rJ=}Zj4gN]zqjd˥KBv]D?av䦂o4=P(S?z?識6"JO8?%ruf+g&Lsiyk~+8 ({tgVj<9h.YC ϴTѺU~ӓoE/k 9Y*OOVP%NbJKXgoykP\ArIR^w.s \BW(*F&r3FtJ,M54U?+*OvrvE'CCq7 ]H&tN -ݥ{b-AՖ)cndhq-=Ba6 z+z`8'g9B&+j^ T`GRي87 $f4!/ؐFVIi,` zrڳRnR=CRO;Nyrpr9 \;hr*\! 6c{d2QoP(@#3Mnr-F>1awO-8 -25즢X;j 9GL:x}xdoVT0SA.Wd29F2y4q40X _> o&7F]mS*(ʽCLBk5eZ05-c0#J+ȑpG#+JŬ̔tKf ]ɱiڙS'J;[[Lm] i=LII }*Rn$_+wFӦM[`AiiimϘ1#K5ܭ}2RRR[#m$`-DU2lLV"ö @Md+ TA7dR()D2jdX28figq|xelbl'Ed/TUL̐4%C de(ɪRJ%#2Mň e&/չ$AH B'Ӷ@ڭr+Nh B(4Ҧ5FV6}JrL(mH iry6ALRjjaWdq)VM)qH$ R(q3TS <#*KVxOVnj`*R5)*ҊxyծU|r^&qU@}8䪾 'c*ʗ`[JUH/G\g}B!j5'ӑv\s%'lOf5+uj0,sMoqt*elMF+_)ǫұDammt6tj~hD J"  iAC\i/i-*VӜW)<Mvpt}D \xBA:me ȭLNv < MP;\ڿ~| =1Qa+Tt)'<>+pكFG;FAVonC=8ϪLxsIR'F!ttR"[2ĨȄdr1<6&@Z3'fl\ J Pgb& R tͫ梉PH# 8A~U '.$#= _m|p< F-MϠBL(ˡ"& Vĵ_Ĕ;3"PI#u4FBieeA / gSU#cmŽ>6$@9v&C кȵq<*--CQh+Hp,--m7G- Pљ\ r ^/bErDhio`] u@cPH#^ JSe H=ee2Y(4 7 Uüj4-t&$'OlODLhrcF#F-g=7ң\ HQQ3؋l F76,$*Ә1(Q%Ï=R\Wv!=%8ߖ8:~0n0< 4߂u^v@A -m.bNv yb۶vbK[~25bBbp7:uG+4b 444//ە|RiLL6mΝM;Θ1#K5ܭJƳ}ǭ&8"   MPH#   (QH#   (QH#   ܵ4   RpD4  ? 6@-ݻw퀃(AAFF@%3f̸ہ h=  R- @;qY4Ҩ<4PH#  Hx)d+ ްa#|R #(AA<G@ !7784mZ'oSi^/<#(AAFp484h   R=8 x;S AAA4  ԙ=1!1{3{x|k~F|xZ~ (AArj)3&&bBuըβtR@Mn0FAACpdBSK&%5K萰m;3*s[=6P1&yEu7,<|)PH#  MblXJܲ\!kiD%R) maƵUF]L&ia ? 8%HGiM~tU tW60L~4 iAAZzRdpb> QDJEH]>-Md&%Ii0Mo0{+s`@ DvՅr$TT(g ǡmp U KE;wV(/ji  r HMϐhXMEL4M7R0;#= хy61A[uֵkסC{ѢEo#x4  _ĐJ.Xt!&c|gʮPoA@7SKA=%T Z3#b=.k a %:|lH$y"!>AAAJRP޽{BAAAZBNHUk!&3Q K멽E;us@8m I@9PTmdvDg2ir \r~*vSAAْZҡM6$]NO[SBc+]TqñeIBbv؅JjOw^s)o\vB(b2O G㠐FAAzGڒھ◬:YDW-.c^j˞R];pqñDcl! kC8alŻnp Upj7  rGӋ.ғcCl?bWTИUƆɢmc&DF۳'Db#"]4+4&6,$2i)B5KJ:.qd.@+3SRWkwjp U1GڋF@A7nQF)F`8yGLӴjO@@T~IIIo!NFAAA   BAAAAPH#    iAž}*m׮]ZyZl6xQEEEuB7=1x,F&))) nWϙ3gꫴ۷:u )r߿6nx1<Ν;FeffnذA)`2=ZPP e$%4y??uTr݅,XСC7ؒ3g~'!{}2!HZZ]%_~ii ,cIN)#""~'"[nq,믿{pkϝ;?$9HRNh'!/cČ$<*Q)_ҥ |J?G_}ŋ,X Mٳɓ4i"Y%_yѣGڵ_~),,T*C 0aq&iѢEiii.g̘ѽ{Z65==o)--ussz)BQ5猌 OOx`ܸq CsUx0BBB–-[t:_~~~;UfffYYj>}{9J%Co۵kOwM:'~?iOilsŊUkܻw/UFgN8qڴizKj1e Q[ʕ+>>>aaaÆ )},Me#mڴ%5]p!wTȜ9s ӥgϖ̟?C W=tH4= smlҞPFn 8ٯ_z,ȑ#@ ?l2R"ERVR³;b6/=tt 7mJJԩS5k~3$;wnܹ ~W"Ư\rÆ ;v]v-z]CTA wW^y!n>,D:u Xz7ސnOЙU4ͱc^xWYxII[oպuW_}j&%%&ĉ1c;moo>}-yq!!!EEEE9pC/KI#` U_@ Bd#Fn%< 7.]ݲ~Ϸo>77I {R^4<==۵kgN@}iRTN#{u宻гgOsINN۷6m|ANNyyyldڴiӣ>:~xٻw#Gv@<ԨQN GP$-[BtGWv믿U.czkm6AyZ-ݒp]3*!!*^F-yԩݻw. 憀OsrrZhQ3tyVǧ! BAQ'NԗΖƩ=ТEAÃr&M:B>!ԯk0d2Vp(/^Hs5 kҵI_ H&q:#= j8Ph.APH#7-[9Ru7xJ޶m|曎IIIcƌiO0`0{=W_}>!%G IpO8eڴGRi4PRxP#4ZvƃtzZG5j,(7 4l N.APP5KzA̻^C_~Gv Lj;ԐsI7Z̅ ȝHJ\t2踔Xq44~RhE \4%A! iO@FFF15< נ<ڵ YvB?6mڽ{wJJ?!Z6''fu:HZŋ@)]cjĥG6k̥NKKǭVޡCS; @Ҁ㏍F#,[p!<8իkzjt߾}{VYσ޽{oϞ=틇ϝ;g_|@up|w'm+ w̙37Ie26$$fiwWXqyҦ W_͝;FA tN E#FA$| i-_СË/X/ݴi8pmfg Fv@ꋍ7R u̗>6} F"!778W9IEz}ٝNIIIo!H# ?XU4 Y A  UIOO|~  NnnASzv#Hv74   FAAA  82*#><$fO]  Hcg45oEM铪)H-K㶪6idgg_x1??1i//;i-BAAA({IZ(И[CcbBSݯ_&MH?z-SXTTB4  Ao2OXXyAz'+{1 >TyTظ1 86*+EMI( W<.3\*glHcvnK R+4< ?͛HWJy_*tHXҝ rss%-jfJj`tz]IIGvN6 4  TLE.J^zg5ꏦbݚᵾɤčLHN+cclڢxq_ĊHAG;ThETؐZEQ6 PFl,:|Pl AAʑ3ƨW(|99.AKR."E'&]^^S++lc::)R+2*,֦ILʶ@pJ;LKhAfZmm4gGF: .dxx[Po۴iS}ر{ŋK,ˇ\iiiT[nu LNN uSix꘲c̵]_TMTCAPH#0{իWw^{Fs 3f̙3 o3AI/쪔!6RL\._!aέsTmAv#7K.}yyy*Cݽ{78 0}2eL&rmٲr^x:Hp~ȑ#CBB ׯ_v>>>N)?w„ 7m4{lUbGf͚O>/M^RR[ozW%[ً#ѐDMbŊ6 Vo߰a"JN> άjqqqO>Q\?UlSO޺uo ]z3o|t5HtKiXb u$S8rEXQ5Y:Nq]FrD?⨤Xjrn:A ڍ@E:<'K.K A5 1@!ҥKdd$BzѣjРAR5ڵhdZj(aP"} 8pΜ9tSЇ:u>طo_,˂lbI{3m۶~w {}G/  tJCσF_Ϸ_պt:e! W.7?Ï?hWUKݻcrʕZfqKeeeՍwwwթ[H! jӉzʕ+>\RR!Z>/^V/O+V2Am<_ɓÆ y/Rf̘1s?ӳ٥r͝vœy2# o %Vr14:_ÍvkЖs3MSx(NAj#W4,#BiPlٲeȑ[9A%^p10ڵcd2I>SvI ui 4N퀬ZRK#GLON 7@)))$󴴴[!{ﭷ.t/x;x>z}'H&M$"Ď7(M6(*,(UP) 7lDDD@]v`ݫW/XSi^bEaa!(sJ{#Cw&M~~ֵ/R*vI%y w}lս{ws!(VSL:4pϯJӦM~鯾J ;}tpKÅ ?^z[JS׭[WZZBi@[nCmtdʫ{dwK LA+? *"٭77]Ziߎ-;֢pA@wЈ9^4BCCM8qڴiwZA&_GژXR)yWiM.ìʦݨms s( sW+Rn&S*~Ԧ**%} qFͫpS0 3F,蠠vRk dm?eZcu‘z##><u-iOudBH#ȭFTY rX)A/r 7xO9ex ~:#_!*mJ:#}` ;3{‘[9*\, HXqIJ&AA!  H#Cf|qU-}Cb[.vR>\d&{ͱU Ga1ظ@;l[Tq!q9yԼH[pZ  iAAi*MNx2`"6=dip#BmI 17fMlSc-5 FAA+:: TMEL KٶS\'>:.0:qg#HONqTm-5 ȝH#  2SĐDǰ j%)\qTpdE!CBkWK% BAAA&ծL&C]mN&."d:RinAAA ө3Io .GΫRA!  r}2j24ZLㅾ Kq3lkC'ER R//uD%ֹ:  iAA΁4({g5i!BR%0l;1{kb/b]JĆ%F"s& I c-u*AݡSwB#_{H޴iӓO>Vo(SN9sGSf_~۷oPPЍc2>䓇~W^9997o?~ 8h|}}Lo2OX?Bc,%W(dg͍qF5ji4 gZ`-i)*.6"hd?n$n/))i-?T˿رcoP5f?NGMNNF!]^v iȑ#Λ\t PGBL6 FQSNd/f[Bĉ^=z̞=?5k?Sƍfܿ?ht-Z'NՐIKKKHH8}Vڵ+8ZAA4\$X\\ Rg\bJ?>(Q\BQ kjͮ"귻uZ;~k7BmͮK]JKKrVam %Q.ߙ &j|ޯ^<9|Ϙ<9wWYu-Ν˖bqY ׯ6-+V|'͚5U;;W߇VѣGPPPZ_E{DDѣɢ߿̙5kg D +KII!ol޼qK.**ڱcǠAnܸA \ߴiӁȱ---I9>&M\zĕRzzFhɓ'7nx5XPjիuvޝ¢쑪:t`ժUkܸj 5woϞ=-ojԨ\5j َcǎm׮O9Z'Nعs[rss5jCM%zg}ƪHJJڼy3e#lܖP~j*pԨQZ;͛7yS!,]Weff\-..RHoۗeΜ9TLհr~Q t߿￧xippp.]UoTS-[m۶u,~O} VZEIFtm =z9ڵk)']F"GUNjevRd .1bh"//CC !RK{G&I}2zӧO%N>}͚5iv zLḺcHVIIId\]vzɡ6|zNm j Fnh32oX%'$$3fp&,ݻr^p_{{fgtQ͛7k׮݌!r@JJ!P6O2 \έT0cǎ~~~t">}Իwשּׁ*PO]rE50'00pڵZS{|>-kQq;6[n/^RV\Y9ÞN7E;>dTU6uTjɂȷI~O 4 Pϳ/uޝ#)i[hh(ZJJ Uɓ ?^u-IY (5{&ܹsg֙tɢ')r>""A^J}sN:|=v_u2&r>+tO=ON[]]]׭[CH>}F"J)FR N˔>zhMJʣs_,0Wpor.-KcRTf:Pz8嚓* ݃TWIW&Λ+ _P*y 1Hi" @x#H$K,A?ӧO#"".\H"ܸq#%%% 9|իWuedmP;tЋ=( H*?||ssm˫uڴiSffTmmm`aa^=ſ{bb۷k׮moo?bĈ ^0 ׯ_G'YN4ƄߓN0Ν; 3fСC+NJp ka׮]k֬8p`ǎ?~|eKKKt xߥzV6$b(~lLcUlYH"###%%ͭy-ʪm۶lcڵ֭kӦ %Ϙ1͛NNN۪6t2k,Z8yƍ]fgg' ===yٿ˭[铨O>FUmJ-^xqժU¢_~FnٲeΝ| 5ѣGǎVZv5jDy6oޜYXXヰA"99E EŬ5Z*zNWID6ׯ?zWXX}󫸺>#҃}H2tt۶m .\l"[l#-Y`СCI@Hy{~g 6$?ٺu ϟ_z \t/ڵ+ WD2E*7ˤIj֬IJ&_^=R##lLcǎyzz=HnϞ=۱cGnzVVW_}EO{+VPh7NmM6cƌi֬ݻb^W$]/P NJ+^ %q<~FDK9(I RF 'DJHZ "H }\Z)`={d VVVlt́VkժŴۭ[79$!'$f[~mrN:9::Ν;W*ip+ݰaԩSIZsȑ˗O< xxx8De٤T26mM:d, d9r;wbq֭޽{SSzBBYpp9޾};..NMssscDzi...:`]v@U  69L+b92-=k>FD. e)JKFڡ>DjBY\5$y!j?F08\iV-{yy%''WHsy)ɓ'>|ny֜错䄭hB30oZZH_xDӢ333#""ܽ{wUE_2"&HIIaZOf;mڴ7nH$oݺV|>IY¢"m׮][z5kXJ~~>H#߅>G^T9PRh͙̺("CrJnhyŊN0a\.'ey4=ܜ\Y8Xzu6W136vԩSxs;o/~Zp!-ԩS(Ƿoߞ"^ ı"?Řmۏ%qBdkǀb?de$Ok`^՚(Y) `^(3֑* -mc@('Q"7i=wM]TDiѣH$&&_ 6<~_~v҅گ˗{999Qf{{{ՠcrlr&Z#YziTm,0`U׈s,ͣ4ւbMVud\߱ȟo4U(ѵ V3"H 7%Zˢio۶MJ*-_^*^p!N(0%]뫞=eJ4iFr{_ded0\aGi?NW-:5V*hﲇ)^sJ=1FZ,aǢnD8WpoI,U<:RsSeCkN@.tVnVvhEq }hpCxƊBBJK$qwy|zAx@?Z^0aN?Nx.Rihh诿9" X?3ٻ Mz! BW:%^^)V/...,,bo?Y()ˣl66G;WCut\mX4JȑA3wx](=,TKieS*i$LAreZcU6UCağ8gyHT*JY#9D7# Tmụ_#avP!b_KԚW:j౜T1*9;-j 0O N&=.'/v^r:%skh\5Ӧ\]U " PPZ;jWr˛V|ڈ% ָ|b4NVѡfλ1[J,$ml~I# HlU 0/ZϴIx o^͛#'93z"o0x47JT%bhmhrI]U!M.i.g? -2'D%,Y*!7n<<!/=ioh| NJW %q^ZBTzڣ8%2*m>1;ݐ|dCU%a5/T)}RApaWZd2Yzz:Nmٲz!RSSПx1zΜ0ۃDcSbt*4rGOHTΰaj]yCeZ Fh+LF u3Բalθ1m%ͽa9KGL05a?L$>_>1JY zAe+U b:TGT%G3}޼yڀWS ddd̝;leeլY}߿Zj&MF❗WvzuyС 4пעE|>_O #k`Vc*M{-ZK#Y#3wEFE 41. wEk+b93VS?@us5RN :'҅[ >'YQn;{Ĩ85!%H*d~fz*ɤp /grEϭ&IU?~*3gN:utR^=ddс-[9}?|ͱcǾH~@ ׯӧOe2ov%KTMȐ\ Iyγ!&@+q乊K( hc@0Ru呬b 6˲TWsTx=dV[R P( iҮPUSȂyQ29Om.A1,19]Se<@VyҢE ?:6I_;wuVnnnF|||3gΐ~g7f{}FUV-ZhŋV$nٲ7899Qo^Qnݻ= n޼9)))33חAbM6Ng&G%nР#S 'za;j^/JWr E2V=uִ@GW\\vZjA1e;w.]8_|[ݬ~ӦMyyycƌUoaa!)7U\ngK k֔~=z49]kJ]&MjРH*Yh}HH;i6A+^žzbo2bT7&@Ϟ9-@2+Eʸ HYtdd?"P$ CZUGGǏw҅LVoܸA~R"Sܳgy;*%$۷M6tqBA"РAEEEѣ ?777"$.\RsZ"yʔ)LW 96]j97nHM )Ӟ={!wh3ךB-bu)jVlr-w Px{{_Hय<` 6{)vzz:-Y򈃂q.$iiij"}EOOOM̌`Ոw;wPPQhG ѓv/ҥKfwiݺuoZN۽{75f޼y-[|#+CՕ..͚͜5cNO=z}%ɐ<3 CeR(Y֭WXsp{;Os[YJI2jLSJ+i?k[q߷{pdqo@kd8-ٳg鯱15k$w-x33\ݴ`#jзvN_g~Ǹs/Ƒ>-حXp5wJWi.\6U[ F)nT:Pz8嚓Zbq%߲AhE|*]mVlI"MCXz($ه^=:+9-{~7" ^=zDMdu G뇔?Ey(5֓IO>MMM`{=k֬si`ʷ`b)3Zƒǐi!xVLݤu11e[_0: pB=z4Ic{cǎ9sfΝ< xIU]d2Yzz:zT6RSS)87 ǾlNbHd:g\peVP?c[_ 4)S9r̘13gܻw+nNx$''ܹsE8q] 0qw ,yyY!zVWjon( M.ͼR /R>oDnP%yHOO裏hÇtWC-T,߻woZB6[ý˷l@,S6L%upv5'U +)V+I1 ( =IZ{\=3(ֲMG sUuFFFJJ[͍Xu~9shظ{988ٓOvXRwZuqq7naգG^~+W?~j/:ufevءčI=ѫxU:Fj""K G %EEEuU999ej+99و:իW?~QZ^z5}pd{f$iiij/^$lUfffDDU#93f`Lk.ru67o^ZT4h1 Tw1u"j۷[wލ79tyjZTTnݺ/Y75[O]kx xa^zS>P@УGHMFݽ{wc ʑRxb֭}JJ[oRΞ=K/$Ldc֧Ot'''*P3iIf͚۷oH^^^$F|]4nB.{Pm۶1bDHH[ZZfgg=~֭[}@Q.]ћc` x1—Dݏ?NF@I1zhNӧ%Ν;7gPئMrvk~~/}rqqJN5k$zie3=ٴRZ5<|W\ڵk7w%K031UqƀiӦ[n٤$]iDK1o߾]vYYY9;;HR&C߿&M5jݻw#"",--===)\I,XG&L.]kx &vD<5.`8d>3L%o!#mHO<3f ip޽`D ϗiI||iҤ"3@p40q9/ 7nܥK1cT^˗{O$q2eիWIj֬igg>dKK#FhVAmٲwIBaff֬YJvرf͚m۶q McǎUj 'O 8p 7}ժU{_k׮ uX6mڔJiԨERH`"f#((VZׯ_'!~'%9r$*377>}zseUO˴SB[i>$`j ͛7oѢ"M1vݻ?Ӣ P#6iС8/H`dHYSRRX͛233 }}}}||=zDZ{1v2 =s Y45j֢nݺuQߥKRΏ?ՕׯdɒG5"WN:oٲ%55uΜ9:ub)={47 }UV]vP-YYY-8p`ƍ'=zY'O3fʔ){իWFEE4mTxƌ7ourr0aB֭٦6t2k,Riddl)hݻGͣNWlw%M԰wyAf aaaa'O֫WoԩӦM/J;i$۷oz)}޽^WQ񇋋KOYV-S]DwwwEkWn PS4=Cn|AU -ٱ_s|>IX,1b9->|H&\PP߿FMժU2d)… UlٲeO>D@Z .^̙3*nذaHH]P).5j 0" *G*P(G6mU~rS:{쌌 GGGKZ !S%%{̟K\2lڵui۶3!= l]4T (;"РAƍ|nݺI$#GV^bĉÆ cw8)RX.uPXXHWO9BHrY#Gۗmbcc\S⢧57lpɇ`SǏի;W^kaaikkKe޿*G{,}JИ+kG,m}'~fN1GȂbAEcq&^E{?6&Q3M@A{nS3} f͚LJkF xqK.rgV14iii*y_ Ɇ3dmmM9Buu?1J6hР ;99dݺu#5)MڧO1cPGGG/'//$\+V:uj„ r<""B3\ yPyp|;t%jQTfx1  +[uU]GDjlTq+>?Y`V5H`=zDdݻwh<߾}[^{JqqqVt788^hѢ{ܕETm.իWC޷oŋՄP%8h"8p?L}…o%^rxĈ1{*Z ;wh>BK.jbR1,--)P6VZ)))oK9{,8-s-.jͻUnSKW>(VZԥG qs @mEK.*!.R#O x#L׹32T5.In2Ve!}&6*ѣG8Wqm۶CQQQ;wLNN>rHRRJuf͚G_ҥKك6lH@&|'OXK07nH%:q%lߩsnH]:U ۰FpJ),lw5WLVłR"s//Z^JKGND(ͭLReR+d BY+(d"Y")k˭i)NK3h@E.R2b8^jPJ7hzO!LM/'iPQ4W *6m۳mmm4zSM:uׯ߾}CQ6٪oF*ޯ_hFݺuϟO%רQD`OblذaȐ!ĦMNgyx !~.ARX`*8]8JŎ]#LB{JǙIxs_R: RR]G&_1i4 ԩS?J43H|D-}ժU|m3_\_k&+QKD-Qu#3_%jhfT–U~}rot5k %%lZkk^ {tdϪŖg ٿnܴHLO4P̐drQp䔂R F2푬bu *+`BE >@(U[R PZ^:^eY+?hm\bj((;4>w+ _.uwkY7*[|NglTo|Tej> U2V<ԛ̮ɩ)Ӿ/P\:;.=&$Q=\Ӣ|4\*T+z*U:8REZ!-W9-\ᗓP;*2{ i%OTS@8op*=b.o~jsMП6oyWkjKx8/ 5/KP(lW##a芧sWP(T5~Tc=X|Cs?gy}a///L/\~ѣGk~wƏr6t2k֬cǎ޾}ɓ'T{=~ǟ0S~jOrr29*wɓ7nv횝P(䪑 jUtt4[ZvF1wܱ7n;Jh_U)0/**ʲߺuk߾}Y"E%R լYxƌ7oe3 ZnM9%Ɏ;޽KKQRQ\|L;K>b>^~`D ֯_Q2հݻXH2UEs!&$%s M]x1)qΝHMZ>iҤ rj5y)ڲe?ZSNJUё2̬}O>-si  :|[Myyy6m" Ӡշ~c͚5EAycH-ȂT"Miee]WWWTDڵksO}:MzzӧO-ZPۗ_!Z\\LܹC=zuL^RRRS999L @"-HI̙æy3Ӧڰaɓ'iN:BY֭[e2 T~K" *=zD"ooo2j2Fc U^J޷oŋ#T6plٳT/P[[ی窋{o޽oҤ2f͚]v_{{{:"]2~.}6ij<^ dYlk⍢"D,ڈS>ySߵk׍7.v]3Ӧҥ [VoڋMSe,2U+]HѣCZ;}t>ܹss mڴR|__#FXYYHSN͚5ջw+Wnڴv)((`iժݻIW$Z 8pwyw6Q,YFK_W^}i!,,%'666G}m۶CQQQ#&fՋiذa7n$ T )4-P9Ҿ}{ҧ5jrs80:t*l4J@@'O(V"f|>"رcvvvd޽yf:()~oJ,K2llY-86" K\ыHvIظqcKLҥKwvv={lB٢E ŋ6lV.c$e=s O>W^\\ 8~>6Μ9s֭$ƴݝu߶m[IMnݺ۷SmmmؑHשSgǎ{|Q"*"mbOD} O9\PPl2Z]un5k<< E(`poJ;]S*-ǕL < 5Rf[) `'[ɹ& @eTTD_'xngɈ Mmbmm=a_mMDDDDD DX5 ^j"""Ra* """"""b&""""""b&""""""b&""""""b&""""""b&""""8{Dʢ"<}J>UåAU@DDDDDD MTADDD̜93--UADDTJ"<<"8+lUvlYf~GdȺ&b&'OyyYDDDI/Ry_3Kqw9؍ɛU̜?)zWfHS&**cV;YYY[l9tBqÆ {'%%Y^kԨakk{թSik٨{{{3@xxI|}}[l)駟bccǯҥK5k333g###w1y|D}{OCY%/'^6bkwރ>..s`'q.cilll'wB""%.uV44QYko*J '&&oϟ6l\bnnJOhر86mڴVmϞ=ȳ=zٻJ*=b9byzΦ/G{/4CW$GWӨ5B%IaD D͛gϞmݺuFJq֭ CNhӦӥK1Z>|{ׯ_EgBBB5Ν\5q^z[D䈈?SRRڷo"g˗//YTTW^_u޽{}є)S򇆆bɯxّZPǏ4o|̘1ro޽{bbb,,,F-e<==RyQ V84QiXrcbg͚թS'RYlnn."rKΝ;6~!b3bŋ Μ97@ƻ ,DlEnOjժ277GLb^W_us%"c9-Z,L N:5`eE@k[f̘ ,_|Bupp062&8맆5k|?޷o=eȽbgFpb#GbbbGbHy֦롂0]39?ktSӸ鉈AQ!EcťTz{c^oDӢuQĞf͚;wrm۶-lݺutt4bҫV/ce:99) /]fff+̙$K.I .~~~"#7oެ_ڵkFbbz/px#РAx˾[1~j^z(͛򍍍7l؀Q6|Ԣ7矖 \P0(vSo "_~K5N=f4?LkZK.q}C&́7Dx?|㢣h?/.c%2`aۯz/ͯP]\&LX|K󧱳w %fK*E MTbZqB3k׮9RΖ԰aݻw˗/#h[n˗/OMMR °4hO?!c#'Ϝ9I&&MZjI i//EodLL &NIIy^zzΞ=yA~#000##C,^C>x𠹹;wM&..G z)zg#֖T;AS(\ Ѫ=qXq OGUOQ=T:?~? P`~ t՚4^Ɋ.c$y˷Wi@qEdOZ%M/ 2y`z?7p1H؎;sNdRY,27tƚW>$N:iE,2Fo Gݻ/[ɓ*/?4Ssss8quF]Yʕ+#kժu}_xq =Zn=k֬A&M/UV =4>G5kT*xK<)Zۗܫ.qR)q\`xjU Jdݏqy8{W UY眥^E؛Gc]Hk.ENp狈A:wݿ$j344Ēse8!XZZ޼ylkknmmU|gݻBCCKlYiQ^^^iii8Ż8Dk.UV%QyzwH4pnc.YyW?TI.PkVꋭ^?qǏoٲnݺ"?))iΝ֭Clܸ9yϝ;3?H7o7 XTQ l5Ϝ9S5j߿k;vI&{ްaCNy&NbŊM6aK---JUyjժoV$ܫo߾ l8ꐢK4_ /[м{ٲe`zZQӵk?-!!;+[-'333##Ç zK2˲0TH۷ogee]tiӧOg#iu˟/BlEO{.1%T e "*W#]GYZhQHHQڵk !"* {y .HS2^BHj""""c%""""""b&"""")} y?ɥRP{#1Hыd#I^OƬE"ҁHQj/z$)X={dJ?xEX'a}^%)Brޥdb)c?%1H3i2+!ץƒK%՗=<JŜK}]:)4&^r;&^* WT.Eګ:W{iqaqT#ozmEOfMD{©)d.%qҾK4!.o$yE.^c1H[1c>H>c\IOI noM)h$%uMFD DT֬Zf͚cUE~oxHX#ni[-%- HSqaOOϨ 'Nuc̘xQ*DDT31&\ P_-썐\ܖHk^fS#HdDBa4'_}եK 4hPRrQ "((H ʪgϞ|J |]tDDD1M+_UワI>{ߋI^W>%Kr@R|VEMFD DeرcSSS1p@mڴibMժU۴iS(<<|̙(~o633&""ztҕu Kt͛7Ϟ=ۺuF27n,.]dhhزeK-B1cƌ?r[l{nFFF:u/^xp''?nݺb{շnݲrss۷/F"_pA^20| ` +WիװaP\ޯ_CySRR?n``мy1c`i[t9R9a„*UhmlݴiSHHHRR;#)[qqq/FsssQoӧOE*Wȣ>͸QDD/ظUiz*8;H9k֬N:yxx<˵߸q#11qĉ޹s޽{qegg/Ydҥ_~% 9so{!i/X1}ǏOOOzߥK7|͛k֬5jX]BB0rSȴXBGOLMM/_>K X.j s׮] \V케bl߾hذ;P_[6yjժaQ܁De {q%B$Y=bQ]n~k[XȾ霼gmN{ \/=JWOV87TA&"""M9yJW`gGInבtUYC]lfwt,p䈭wEnD DDDDD0qGU(zvQ Szjb'NEy =DDDDjCF>( sxzsv4o;&mm!O4~tޚz7١hGaLrir\{uK8vös睓穯km=9cǸZR5z \ĉBȃ!݈m븭@#2kD MDDDt⭷~e{ugme'<3?=6yy'_{3?u }'k@/!}5F^L?},kZPĸOUpZЙ_4QǯZ5"lHoNC\Qz$AdDݏV];Խ<5-BBwJ=X*Wr@V\w{W+ZٸصS"@T^Bx4QŠj秴ȒFimw;=}: L϶*<<"UU砜eR(^_?oX }oh-b@TBx8-2H[K.嫉λ7[ *En0{dZJ]2qB#GY B"rGUrsћaqyR|~2PfVxRO NP qY:q@DDeMrruEGG׭[m{BBҵmlРA#Է+;if%kܭ\rmW:WVnw8k8M^^e-###&&X|4~v5%%Eڵk7o޼I&}Qvvi+++ W[ZG* 7W͇uE\ VdwBƉŸMX/KNaǽYVfyѹDeGNNΑ#GF]Jkk-[gK#U*J!Y) ?Q @W~/觿 Bi\tO۶m5k0SȾa>>l*:UAK.nRR?+H_GZѥW* 4ۡ*b&""""zJe.>~n4㭙aCv.r-R+GZY:77waͷXW/&""" I(AAAAAAAAAAA*(cV= g%c]645jJ """"ǐ M<􉈈*#MDDDDDD MDDDDDD MDDDDDD MDDDDDD MDDDDDD MDDDDDDD DDDDDDD DDDDDDD DDDDDDD DDDDDDD DDDDDDD DDDDDDD MDDDDDD MDDDDDD MDDDDDD MDDDDDD MDDDDDD MDDDDDDD DDDDDDDU@IT\nm7LLL6~螯;㿗–~MV_O7dτ^4+,rf17sawhCflٺ] gdd\ U##o޻͛5- rZc dffpg !۰w'=B]o{ W,^:^""""bmC3s?66''/MMM-khloҽ렁T1+ep_9Ew޺~k/ܦ9̂7|755mcx?H /ug7}s5u XTx6`eH.ѳ{i?{"EKChsrJ2333pSV$׊Cϋ^|:*4jsb߭Rl0~&~ֈ99:t1nzO }oY~dyhO{;[q7=0PZSxjx[o8?xy&,lm֮+ ٵga`,,f+x_t9;;ʪ;S?'u+z0ܲEeJ_@nZA7l5m2x,S~7VcJvyIr?Sի׫gQ >~%V%eH +W۶cg͛+js[B/]~…ظ8Zujw0ЬCcU8$v 1ty ߦu+bAz:yh~܈A*]ETAQyO wwo֌N##!z!v^III׮aJ')ol]tfYnf?D|eBB?Y*,?#=l>69glf݆Qoidd1xՔ*7xy3j]zuȝ!;777W ={ʜ& t jġo.we? {ztӹ'b@]Vbb"z|BB*UyMssW^n[xKa Z\ """"zxi7=;y[/kִT*&R4Roמ6WNz23;w }gBωx)2&stN{>FWZ5ܶ#155EN6+mEkN^x*U* @ |~޹sw߁kx{7%f"E;84FU+Vt7 IMMaϢZll K˼"EcoSt<_Mr6pvAW hӺphlw0Vg߁8P컀`牣RX?eDDDD G:dO'LDػ~F\\^>l'r5\5+ZZZ"~W&&&m$ܵKgD5I=hk΄% [pˑo}ExUy񻿸xWWųۏ,V3Y>\K*w<ھsWff5׬HssCؼe6edz;ul?gͨ[zjxKth԰K*Wa믞Fu׫Wwbɿ`qr쩣N gw֯0! N Xթ#'?&Ga|LllIޅ:uj#""""io99a%N~}zBT2ms1|yNMMMτ.WVsJ^Ι3gX7w!S$@ %x3>pz@9&Oy&"ouwIu y˗i\{*nixmsnu+mۈ ~9{CC1y S&J LZh>hk3uJ KZ """"b)fMKtw_\/$ޭ]V7!?74_`7W r\WWT)nB>^Q;A\5po55;,<|RիW5[>y*rWTz'""""brs~bbb11ŀy~,D} Xcgk>d0thMijTA kk԰\cUVLTwEiy-[4?bjj^vڹaYY,޻W"9~S]ZPjޒmmldfoLzsu6nz-W|W-_Rx5.ž+_]F ~܈ysqtZZbdV-@EO!*֭Z"Cffe޻cw\%1UH5j&&&磒ouO#H&&i `+]}=r0]Ѽw+#\ 6Gݼu$Ry~h;CvߌUдih+Sԧ\|Kֈk._IHH,Zj%X"v^ik/b4=O:*ozMKaaQ;oz/"|6NRn]v#dӧWOyÇ!j_'lLEJJJB{r!(^T*G޹|5LPϿ/΅Y*?ws~566Qɫ SRST1+W:w޵;POڹsk[)^cQfU̢ ؛зO/snAvoDnw1~9.۲EZ5k&%cXDž֭ZK}A3XB&&͚:3EDDDD TG|<{>1{iϣק7^yYR=XAZRr/W)݇ Fڲu;oGw"ڥ?>h'#޹{O,\ R>rܻSŀ}ZE'$ZZw+WGEBj$X:Zwյ_1lbb<yb"l\ p0&? \,)Zs0~ժV- /~By][i\ODDDD MSǕ˗,Zpc۷{y^^~5--Kȍ[H322w"ﴯ02h_HwIIUVm`]mr1,_. X~Tj,,,5jЩCϒ_ɓ,g +?H?ƦMj{lm.[qL(u]+W{t52~cI}eƻwJ5,Q<&Mի$`aQ}۰)d$ի<={z߈27l2Mg5"7q|7"#O>J_7]r7o=_姉 X ةY Tlմs֌odQq ̬aauzHѳ3շw/FؽwߙгO_~d&""""i"OZ<=Tǃ}UI}k۬X""""zfxiwKlZ>%Oxtvvv={4c41HEAAAAAAAAAAAɝ;w-ZR73""b̙iiiZFLLL@@@||<7zl٫V|rg{ҥKu~9>aJe!Exʕ+KUϝ;}0ٳWٳ9DD DUbbѣG5DEEm۶-33ğoVFo> ߾}ɓ999ZFtt_հ:uT\\r8 z6~{|7onٲE1UP,a}̙3g<ءCp|T0'r"9k9}4bdڵܹs&"z )1ݻwϞN81.]dbkk:uߺTR W^6w׷f͚ G8p**rq+ښ5kZn]R*VVVC _vMs|hh%"bرce`'N,kii9c `Qc=TWOkC۷oFF7lpԩYf<cccsŊ;vd $$$%"bZ*U5k9ϟ/GRRRF͛K.xb;uok9r$...''gذaјF0{߾}:t(~V\900P>};wRi߾=R=$XoVV֏?{װaC1o||EΜ9Ff{M>W_c%pppmZjР-w{~7ÇcS[nbƍ&Ly饗FU7(XBq}4P-jC]pq͛3FLiӦ$wyY,Xp oF ھ}6Vt9s<== w=iI&`Eeܸq;v,99VZ#Fٳ]z={_ݻ8ذ-Xiz'3DkԨ1w\qJ+T?__ߖ-[_~YpٳgѲQ,j^>/@]jJ+ha/ 8]gJ|7oތ]*im΅L$(bx>'I}.hwssswwGʧ5o8c(^`ckѣ%]pA:h׮8-48N\ g Z3g> %6{80 7{{{QTTрÇi>u  C1|=' 2cxժU8q]6κ4=y7h'b>}D[?n:u*R7ZS߽{REM=j;B/)f9Qh}?rAa!*aOa;A{jܸ1v]#_|Ƌ6=GAjy30yW9-R!NU[\eZ^+ - O2|DAmc?G',, 50T[oebbsί -Ǧafڴi6(FI> M7zF 2=G~;J#s̙(2V&+9 `UVEUبN:$O1%ܜbwh1;bܹvUcՎ%cpY>{_%4-y/N> QHT݁>Ň,n 1 ȥlnݺ>4K@oC3f_n>##_!Z۸q#R(wq|~8S)1HSv#䗢 AAZPh-$0arD3 9wE 4hR _I?w]^–u +mݺ͛7?GGGJ$pT޽&R% ?4|GIP͛uhme4GKXڹsz쉟hU jff.Q4..4 \]]\Ql???QoH_5&;ӷo_Q?7kEHdh|-RkD\hp-Z'O>qDN %:RPEzBu,{h>|mVyE:w% ٵkW1͛%u6<63lWTv=8d 4Q홑Q^Z ѨQVhcb{Qh p>[9p v<‰ݍ"/iAIIsFaC"zQ6,cx>zf9Ml/NT>8Xk7nb#G*_ݡgb?&EAPN{u-q4iHvJOOיu~rO:b8񦦦/_[iyIG8j$_| ݋޿Ȑ!+V=z>28}a`Ç㭗_~Y$B\X+9B˂""iz>ӼPzɒ%h)tE1%Z-Fl"<́'o.gh޽[4hI\vHEA e8kڴ)ҡ}9pVٳg=<|&logb466=\n 8 +DfmwiVZA8cǎmѢ<^\<£%idƽx}!vqxyyєđWb ӧOϽ{ܹS^]\T<]EO\Xyݼy3((νV lǎkppoQO)Gz-;bKy廉%tE{AHs`E]El&C1cFG! @Ν;cFyQCCGݜgwj/;wfc/ԭ[ _lxqO5b 챑ƍ))):_T,̋ >>/_>b|ʋ/V ?֨XB4yTQx!3Jۮ];|~4bq9sFPg3>5YYY#FpttlܸuH ի:EMӳv$q9IQ_Hr"N{xx <ip *jP?؏8oO&3 ;5ҨUqWVo߾w޽ w|dPHܹC~auyٲe;xh*AhVZ-TB?D/^‹gl#-lrݺuh˘-{ĢZ.O k֬V`X4Q(O׮]ѐŽ@[@qaSSc~]֢-+33sʕ=uaoo}`-{T(cT8G"MKK_-`k@ڸq#j-xqը~4E58>zZa6mB Q`LNOڵk1 իt.MHkbEIO>u (JŎoუs7{l^N)QZlǭ0<'u?c޽ :f2d׻b5X5oGi&MCl 堄8YxQC S J9*Ej̙3(RvoTfu6l̙3.\ua9/&Gpݱc9j)..NϯGԔ6]vۨQP8`5#ңnQ{/nE z뭷.]_MHHQ]\|qOvd~ 4Squ;wŗ}6|}-Zf{0&]&ᅬ;P4Ydiu<X5$BKۋ|h$%%!醆Z⁽Zs9!49ˮDmذTs$AZR/ R>ESU-f4FьKyƌH&SĨ"x{{ϟ?G5>>>h͝;5=ztgԳgOtѰ @۷FcI&ah|˽C8nEU3Z>#d_EŋQtkuIqƍ+B%{… #^{ m۶r0,dK8GcOȑ#$Cn*ZH,q܈ 8!v.DsfgD0é@~5{l˓l k3f ( szv؏ jiԩDgfm۶!c_~e:t0;OVQx^*WZBw~jJLM|N}S oA,#7=777⠠۷cJB/Q]\$mdx"Ҍ-"84mZN8\Q7/ҥYGE[Hrc +AHǏko Y.dMlVL۷NT[ƉZn]VVV:uu l6#Ę kUZ^>}Gsqח;e7=YEiӦ[[[O8$NDDTxiwW/&"""""z.WDDDDDDD DDDDDDD DDDDDDD DDDDDDD DDDDDDD DDDDDDD MDDDDDD MDDDDDD MDDDDDD MDDDDDD MDDDDDD MDDDDDDD DDDDDDD DDDDDDD DDDDDDD DDDDDDD DDDDDDD1UE\3֯lǬ """"b2$2`NU6T6oڠ2%=+eFYDDDDxi7=QmTUAe &YDDDD MeHVvS4,z """"i"""""""i""""""r+7WC f*U3PiU1H#CC##a +s L % Woe&a9F&FFFOT]%z&"tvvvVV1fi""""bNJR );2*҈iiƦ32M+W2 (BNkdh f?K"+f&)--MͪTlە-\Ux Wu_d# lZ~(1x۰@l662604Gb. f*M=5563SCCi""""z~x4=\s?&qӲrmnڢMfVf2WSRSX}ǴܜGMYIIH}ϿRrs3smmlٕ |{=)cޏKD&'qqsrscc3qɉR)/5-U9Yؿq$$&dg(To{3+++5-5R iznl@|qfٰ6-򆩺{V-VwjU]VMOG@̕ rs߄=ehh`Uu(UJeI/f׾Xre3#q=KUsյFXDEQGDcՅFR |J, Q`e. &=JUM]ljvRl*fffcFneU[~WՓ|Qȟi70Y+i~̃Go.]mTjNJr;Ŭ Z-07!1FޭH;zoˌ[ݢz%S€w¿?lHJs$ķY)1ԝ93MP9FZՅֹ73sFt6*㳱?_0 (;K4P4CǀH( ~ֈA*USc+rjvrV6IMMʒ256R̴qrJrFz&W޳JdԔԌL-*+bԌʦ+.NO,YF))cV99ȸrV\%q3*U̐StS`<[ZZVZF*VmV16!#3G\R*ՌMUč̴ P5}%J=ش$ԔJ&T,+ fkldlff-v!j.L5k6IrvzYX_êղq1\S&_O7Z3V_pz԰UqH7[+7/HLb߭SHȪ+4j**dhMFrr;('CI$ޑޫA"H" ( Mzf{H ٔm߳{au[6/N{9̝ErJxkȌg+tFᝒ"<=*>0K馢&B!f_taVLIvKQ+(GB<ʕKLHѳoͻ=W܃KP''񱱲b%ˮPʫ6 ϧzָx oUdKW'W>v^+HP'0k5 94kpn3W%Jmjo WVsZcr68~̒isc'V;r΃wMO+WzڪOWRQC"%,vtty%$%(mZZj+;QbSfxzBrT\s6v5cs~ڿޣU.8zٕp]|kB|wʑ=o> DfM3Cl_=,beT&ݾY蛡juTp?B [G\ɓ-lݚ+Zm>sRZ(Wd1J[7+vWpD O O SW¯ST_)B!BEŨw1huKVf*^2jMݯ޻m>NJLf);c-lt_.Ɉ^oHNNvP؈eZb0h4i.VMՈBEڱBi_+؝Vq.UdfǛ۹C5oVa$u_N}ʷ_տmdBEHhx}Nd#MF?VrTuj:jv.\TN|T啯Fk%?hrgڔ?NT/OLy1Tq^ⴅzVq͒-O.0óuhe@F:u^kVAز7k,YdPAfgQ[gm[ܷLYF*XȷB#%=};j蒒 ъ-ۦ</mL݃r, k,XGiQa[U s<&:b{>P19e?v5yWݐ)U}]S{@P#g랺\k!E\DnZP( BT>wU*eަ?,ٰ۔VӽOjjZ͙UA 6W*ZqSt `xC ҲYjtA_衴Ȉsfoh<;+2&&,x>A^u^ ҷ6,L  Ouh-xՕpJDGȩ3jL/q6>L`h Y/ >F)V?\<潹ZV[7{s]nAh5M{C>E3grYRޞaK=*.XsRһ%oM$Tj I'qqХ:#o)\t Kf:ceBl6__}}} NzSã7~QQro/%aW"Gqq1))iAmG?"7 >8"*سԏB.֧$)a%ɬ[.2MB*GN Ti3 UR,|KTHՒr\pGL~ɩZB!PH!N!=tqKV*Uc*o9en*gkr7[>ְ V(w&AB{Ds!r,+ șM'g\ULjx0 yB+лB^_c%J/3>8ZͻHpϝ3w,e)U*]WeZGє|3{ڏW)ZVARe>:jNCBBHD&W{xx˱(qOܞ j:5.Wûx;i8Z/%'wϰ%ΆDmXf5b*,)̵fBӺ5]dry™S(d ELGdҥQWi)gfn^z/rU z7*||\߇O!BKSɿqFjq"# PP*f=B*o6~ 璬ЧcoUY{I}XDPCƟ9}}Eʑ# }y/[cG5ʍ8zjDDړ0-nM*/YOI;nigc.JBPƩ9JKBUWPh*kC̏\MazW6Qظ;:`/u){w=U ~>^^zָEGs^ W4*[+ dwo]b KEY tY[̉!?? ̒n\t''*OO]xݯxz&{처W}^֮MKIjwWnOP!*xpJ"Br{oStn4qgM{qM Kv"swO >b I!X#B!% o1!'+=Aw|JULNV'CRBK:B2Mxŀu:B g0@`==<=̦H'%4i^&7|jHNNQ$\%t:v_NNӤbCRn|]6?aYMnduZJJFC!9njJ*醢 T|i\MZ զ$%%i5;B+b;Ɛ{nJdy&UVk4ZOPp(ޠ7ˉz)ҫ(;xAh(qUjQ\Rɩ]O)nn^n <*,Enwˠ|zP67]J4\Ƕԉ XjpU>^2ZS{)i=WMP*4i*77/ '\ ]!B"M J4%[| r3N~::fjdВcMW<^WH;: LTB)ܴsO[{[/B\ 3M߸y{CzMsq_V* eUAybQdVmrTrLR*ZnV7Q<^ӛfWLew/1'Y\ܖ੔CwP#3Bڏ3_/7䮱pԍRʱƵ 8]T>Co.xBMf=h2 [)֭ 1V7k0Je|ۖzcpwV7Z&՚cB!PHJKdr_B 7U"2jc~jnTߋ9+Do+ٜ`e1Y\*|WڱPFj]+d^) hMf4T̼7W6x+se5m_J˴t.V!B!B!B&B!B( !B! iB!B!BQ)Tځs*|4!B&$HjizH֍ B!"lǜV5 ryݖ4!B&EF5zXBiER"A^7oYpPځB!d% o1!'B!=҄B!B4!B!B!M!B!PHB!B!҄B!B4!B!B( !B! iB!B!BB!B&B!B( !B! iB!B!PHB!B!҄B!B4!B!B!M!B!PHB!B!҄B!B&B!B( !B! iB!B!BB!B&B!B( !B!B!M!B!PHB!B!҄B!B4!B!B!M!B!PHB!B!BB!B&B!B( !B! iB^#vnm?xOrrr/ni3hUB^A=c>4l2,<&uΟOi1uB!Mȿsbl*緊#OR.^% 9c0⥘x!o4:.!!F Νdoa  "~?^ wߧl8,TRy)d{/YnW u,Ї>޽ X4oOĂ;!W_ֹ+:nۼuWFrN2-7{\ٗ!kھsWXxMU?/b B^7o^vO""t:_5lаA=\;߳w9/eW ߭4)!TT77{FΞ;/> *Mo SZxytwsj^\EV ʗ7ObRҍRSS!}[%Y!?ʵ7-X|Ydqk"~EYb;{-]kOV,el=~Եk7>EΙ3G֭zubHG Uj-۶ ?ŋ 2G+?޼{H482`5X+DQ8F+W|W`7_qKVx{cE meJ-WFgNIIkނ+W>|i^ 0W9+gΦMMR>dʻdޠN7H*G=v%͙#MS!۴}^s,:r6%9% 0az5\Lrnq$OMyl@oܔTtZ5~;((x^?wBrԪ899 qssBv ׯ:nODxxEԪYǒm:?W^m{`eJԱ=̋ 1{ !wAK9[;wKBq#8~EK^7)I'::f'O}.L8/`9wCD=Ζ5k7o}_1ѾŋYs6 Dzl;w%~~ o!҄L/MիL"~6닗.? GaC1l By 9fǤꨨ(/ ߀/RXypLȂ9.F!-W]ϛ'74yp7N> o> 3a?.A:{i -=Ҝ\]]3WRk7nl{~Ͽww`իU_"BZ@o޺܅."$@rU\)&6{Os氃P&|s&^1l͓n5>"e5W +.[\*VhʕAF{yPFn>rv:&e5IPxFW\7n>|2׭RNmƔW.WRYT8tCC۲y3˗[NRlvŪ5B37z'#o EFfϞ(;w-\bŋ*Y".>^eN΄EIEgG غU tB)[beJKS"רV%iH3;TX 1k9+1Lrpq*öRaNW8sМ9rTV%-Msŋc*/Z¥pII&x_a#FJo߹stR 7">  sbŊ iB^V,4{Gm[tsӦϚp1ʣN4`]L7YqK,yrO W?JSN}e+]L3E-Fh4-CdH,41#p1Gm}!77oB\ҳ]A\˜ <9Z67jSgP;aKd˖ {nܼuGp}gcL~ ȉ׬`--\y}99mQCt2K$V~ayo,yXL1Ǐ'`t]'GM͓{bNz?ժVYSp&?/{d򕫏DʹfDfM,< ÚgMݻv6GT||{4ʵkOjkTZmC>zjybPڲMߧNyBuDN4ZWNgWHLV ҴgmuQ嫞7_IӤ"怳ݞ^FP.f .ٱճ98狖s[E;>kot1: +?ψ]d3z);dMDRT^|4ykY0gVȉҿͰ;F=*5-b7߭P?xoRSScbgg9d5[$4a;<ĂeqaʖY&͎Ӎ0Ix+9PAEgQ/_ wܽw)S[iw{b9r<:e1kzvw93INbR:2G-Q_|./JvoR yn 7w8޻W^EPikoV#6bL:|nqWeJ[lGn:n%KhPBl8s)]5# x@eB2Dҥݼu{?Wm2q.F+m>hYV 6۰ Oaԏ˖F 68"""8Ezt;!x0ʛ7D)EvJ, kA&kg͙g>o޺-›Ї#l嚎=1QC7nKi]{%o"L3w"qeʕwdSR%%#\euS9cdBд!v!FHtFbYeLcC߯w׮Rŋc%K7eܺ}[ze_ 2@yM_:.l0 E/+|hٻ?""R:ƵB @\zv{-ԪQ}l2V+UQv\9s׃ , ܽ+n6._Zt)xĤ$颇\!jҸ!Ukȟ_V߻\2mشĩwbO۶TJܹ<=<8,7f<+WIju^+[Yo[g; 6 ?v!VYY Gej,K:`5r"{l_ܩ8l^=uz4w]v+fk޼2Y脄bEX Cޫ/E [p]77͝gU Uxkׯ?4ݸm:?M9];uhAK[P>l_ByQW^_|dyB2Au+Wp{?(LwrJW^3F?=pPPR?g@?4ݒ w= , |;(Ah.ܲb_fSyEa9'Ni"Mrjը;(QXNzExxz<3bjժ. {\"LL7q1]FI Ùsm?Xti\v{cמÅ .nB!M@m|dqZ7(ƍ@^EwE+^t!ɺtD'utF޿YTOSEK@Yd gw5wADdddToLsv5nx qTBiOm7^h \LАȟo@ !Im8 xŐ _#s8߀cPB="Ӷf-;6U .4A' ?xHէ&/q?2L:e>=DAZ惮;ع !99Y#1P̗ȗ/o*\LAjV&ί߸LMMwvݪV*^Zx-1:A(MrJńqc-rLf8o1O]T|\}5)SS]LSr 6 @'v+;7A4yylK,^<1 P:w`^eBLVɓJUH5c ؤ"Ezϙ#+W"\e2?Jw)XG^^km|j0sySӫ 9+W'NfMMs`LxCxwJ%\D ͗7֩SiS/\|5.o,Y͛z*NzO>˫\zqjbE-?w#ǎCiTTWnE6sc9J]l%hr.Y20"ĚlY5cwB'j^c| ȕsٳ;yLtLG_\J.ԨV͛PnnH >Nz?kΞ}"#ЁŴdooﹳ\|qtCJ ׭+:}:t0zLĉ=>}?|p׮]>|ȞO^:W\4i֙!1ye^Iy **j„ ݺuԩʕ+cvvkkdtWF@2& qƝ9s:u|/(KF ,#G^pߴm?q^`ƌ}}}_Q> ԛ5knos9rd޼y E(i^YdysҦMxk"שZ*BK~1ƑgϞEQΝCs~~+{y x?PE˗/g*TxwիWg͚տbŊo޽[Pl"ӳdɒ_ !C<~8555{n1!!aPk>((hԨQ-r4w߾}X?WB׮],YrєŋwSNXѣG9slѢE&M>y&d``… O>=uT?BJ{9R,L8p¡ ,@]|}}WޱcGqQ_bQQQN0BF8Cd2H־}*JF$匍U(e˖޽{\k_;v,11I DQݗ.]b:j]a丸8"ƞ:{rƍJeo߾=<Ŷ'a s?~Μ9ٲeۿ͛~+ 'Jhq6m8 ЀP ah~PxB SMnΪ]| gΜxAkɤ@lp<p!Om`IXpȈ0 )?8GsBtO2?ňpI[OR{f̘pŷn݂GyaŊᏐn+R\v N ٺu+3|l:x#8cP,(6 ?a,@A>dɒ30 XbXȴ #j5"SR Cf4 AB")l޼9B>6߸q#_~ZY5-XaICBO'OoS722$BiS͚5CtAD2nWqpt›jРA!!!țq EӪU+0.@(s!mk!B-P(%UȆ[Ǝx*;fyB;: T'`o0uy`t @Ccc/Jʟ!Dv_fAG@7*˞ WT۷׫W4Q˝;wFJct : `H:.m"*BA:5!rʅQ\9ȀVЦa%="~:V󃎅ٱpwrΌDdO>֪U (-քe좥R QX,`=4P'CȄ ^x `}]E4MFp(] Ë;|Hwhl5j&?~b-a͊`Dɉ.hѢ/pĉ:u`{C$}8.ucOPx?hWc5$E9R8gnO5Vr>r< 4!vA~gIl50pUZVZM4髯B^ؠA/p=P;QQQ.Vy7,VCb+.G;mڑ bbb8:fDp+Nȑ3۷oGaUS^={ 03aj'ѭb\LslkRR4_+3H{GԪwșڵkhܸq5,XtbsEGײ~7֭[G@H Ƚ027$mRgl!=&E ĦaWΗDWqf$"E1qhSҭ:K,Y'^"/b{go4>Jxd9IBcC!rk^x1xEh YjqլYYfBMF;d锖饛"GݠJ-w$L݃ o8 )WZ+>xoq^0r< 4!vS̙;wg-ڔ)Sf'|ƍ׭[O?"!+Kc)oe3LH۶mZhѣGQx???'cF{3ѝjF* d1F\|qюpShiE nulz6󨌎tf۷oWT %|}}!q1Z ܻwSUfOOOqF t;•ruP84_9!6Gi}eA-~r1=Xy o޼)ڊ%*jժ@ŋҋ nݺ'ND$Nfᬏn]xg@u._x5] ^K}5))I4[l3Y=0 ,#G` !l7nܸt>"q1;1:$Tθ {=ܹspG"0Do%7$͇3}ZbekϜfm:4k,**ٳϟQDF+Q~`du:t={|$IJ j~w>}4b& a}0QlYN:AbX"GDDEgnH{Uc'^|M6at*W S Ҋ P&yNtxEB-r2x83g?~s͛ZCwG}4bx:DVx[8>ߢE ]zfp;v YGGGc'>" ʌ6mb`[FTC+ :'wn߾=99y.pٰ$-[,YZ %Kj׮ kʃ8/L7-.U3j@"U2eօwV0ᅬ ![Bb$np] 7IKK[lYѢE\Zj[nԩS(Ͻ#`^sÆ h"gBb?^t)?!Eo(̱炐:#T* 9s`X-PHO իWcH"Cχۛ4l~6P1a״3Q M#r̙hdK?@ 04B̛7ߔ(Q{M`o%[@v #q$=wΝ;ᡑ n~בy~Qf̘Ѷm[_ B<@߹sg(S̬Y>}h#kIqAjժ_G 0):J'2Wmct+V~֮]N"N;F-i *-6Z*:X@o CyN( ˽{7VZգG*'03W\A͓5kF!i" O>JI&p܈L':5pC]f 6_FAO?Ν; jLT7n,_<#7_|رc!QY$?ŋOT_dq"&&!{Y&9"t ࣑.\1 6Ě}A xwy,B) wQ[*gLm bZҗ6n]x'ͅ!*#eG0C3뮅HZ,X[!޽8͌7ߠ;>M1gN<ޮ`} GZg[I@;=sA 6<|8J%N<9셉m۶=~M >dє~- PuFgn_~gFG) 6sgv|.W{`A-]4PiaL`4 :2(qhtZDYZ-&ᷠYp;w~[#qހ>s]dß~?g$2=ϟC(dRir]WW]v%&&qǏzZuVwwwG˰kFc0<%KT\*8 <<\\vmcƌA!gڴiŋ>|xO \'8p &&˫H"Ȝ,VkFѣGU_g۶mAAA zFwcj7!B!>WB!B4!B!B!M!B!PHB!B!҄B!B4!B!B(ݻ8@;\RRRLrUeK2Ǖ+W-[F;'{ i7ٳ'[]paŊz Vdd… cccŦjK,qёt B(;w:/H>ܵkׇb9<<IZZڡC-_[[Ӽ_:?%ܹsOVZqӎ==_~ 588yNyٵkŋ3ٳg9)?ﵜ$,,lӦM<ٳ _E`h4!!!߬_>""#e"3 2SNݺuCYe(h;wn777,\\r4[ukK}}}i79r}" }V͓'O5k&_8qb̙5kĞF,XqJ`xd/ꗃ4)**jرGΞ=?Y;k&L(_|׮]u:]F cˤBgy~Ae6~xo};3gԩg)K.-^8$$7jɱ8N (mڴ^)OHHԩӛrJPH3g;wǁ+WG[ 4hԨQe˖MJJZp]]]K*ճgOɅ]v !mj߾}GYjՓ'O<==[hѶmӧO#B5˗?C,TT /N:bŊG̙4iĢ}iԨ">k׮w`X|}+T\hh \[z;i41118x ̞=… AAAUرc~~~q %\ Px/4&2dHժUq۶m-=qtlT;|1?~ءXbΝ;ͻ{\.GYX=*Th̘1'NXn]DDDrr2-Ժ5z7oFOVk&S\+O 0/uGB9;wZvm.QJ^zaM-fl SA ɓK,A?ɕ+J61o_ V1,\0D/1*Cz}ܹ10E8S9s*@J[1K./lݺ>ppsе0(t:G};ns1]wW61=GDwww_tÇΝX-k֬SLDŬBlKWEVB׮]Q/s3-[<}Dauo ?Z;̓'v*-l{7od2x3TPT㔡 cf|Ӥ` mD,Y)sєnݺk|B lQo Q 65]tO+@fX@\{`L:5ƍGDkذ!ƻ4ɜ#G'abQ.b BPTVDw7j‘ZLsd,.nDF_"&Ml2=a1Mq\07)<4ԩ';B~E(֮]S0tk E^hM͹݄\#E;FڄP_G\F 8Iؘ'cAz &`WpCV_>\Hۑءh$s9V',ZjG3YAbљ%"Ohp3o_8esN$  y!$I}ҠW1tG޽{N˖-ͿD'ADg( D\ Ю۷I<AOӦ#L<Ŵs\.\@"*N!b-,~ 3 P2H@QkTĮʗ/ˣ0j*W 7)Ӟ6D换Kã0;2E8=Ui&dEX~ho`4`D y#{)?@`nݺ `Qʁײu(\r8aEcǎcǢx,a_~%քϱC ްa`OqfP+A`I=Y<zVZҨЅ[றfsʅ i*HqK8njL pM{j֬ꄆЎsZgǶ5kgd5:a_PH7h 8 /?䖇>.]ZT`#\?WLJۄW@BE/COҙ9k̓u!0w Hp8*Q*lx/ ~L ɐw(QL2HdQ~f{{PÇ#l䎷B!*IȑCf'/uU]^^^(:rbQjw#",Y9 f}Pqۢ5-@wX0 BDZ7n` nЙ$v f >fŊM4>t_}&޸q#za!Fc{v 3fX.~رc7o޺u+j݅+͐.։& qu֡v#Fuհ-D3[V˗?s VC?ݲe ,(N;Se{c{F|)SmڴAرcڴi8ѣo  f ؕ&:~)~uܑ\}$8;߷#kb; mgJo9Wu) hbJ(N%%sJI6Q}u̘1XݻsL,ӺRnUZ&,1DCMGJ=^">罖oЫW/{K1s {mO3z'3 s-dmIt?`QHR[2(i/d8WHWZ^~}rrr% O:uQ rĹ-[P{nݺ'NDH(y_7J!(JҪU+Tx@ZΟ?o߾2e`*U8quq\eEBllQJ*IѣFqƥK,,Xv%A[g^"## m- ¤pΝ{)/Gu1%Q~M6 uu)xA#: pO 6lx񢽽YTj3-2i3gδj*R|zyf82k=Ńb emqȣ1Pĉm~`?:l:2Vkĉ@hWredYkCYB`y xbZT;6ac@KA%}Θ1cŊ()A#NU TٱcGڵ###w #) ! ~E(ɷJ-<<<ĝR z깸( DZXX"-&a`_[PhQ,n=cڴi*7praXaٳl2ԴVZ*2p6I ߼y{ "|8z#>FƅzWh 6 L2+111ʳ4A@lRŜPqfh$'@ݪ Ԉ6 t޽{ap(!! p"b mqȠ-&Lآ@|W fԑZ$Y|h!thf##bŊ ř1dĘEeC󂺲Fe"BbcŚqƭYf!Kp#I[3{)dTfΜLhwZ=QRu!mkkG !e\~EҔL%Uf-|Ǹ_J 7o"K8#l3f"y"t={v%$ 4i$ב Q|Æ )H72'xGqB Ν;00pΝ}jի  M!B! ?E!B!PHB!B!҄B!B4!B!B!M!B!PHB!B!B% `ƍ_U<==wءqqq=J~͛7|奼fĉ__>xK.رc͚5 *LLL,,,2gǯիW#0aB910ְi-YHZ+r*888;w(P`Ĉ۷K(1x`q[͛E?2D؇>zhppynݤK...!!!X_^=E,Y[PdI#L2;Ӽys+PE]m۶-00PBٳgW_I4 bPTc  xq TuZYOڵk?~l%ٻ=</ĤK.͑hdddٲeG-P@r02͚5Cf͚U c;v@,** 0&8ۀ}/// ??Pekg a^`'{#Ƭro,S ,1|P{0S05"VE_g rT,,,Trq,c1fa{ &ƐǩPGŦכ=TB٥jq)eqlڸq4i"ه?~ a$5f… ]Ѝ0_x0C2ǀȈDEX PͭVp$p |ʂe aEP ,@x<&&F܌E APRް۱cǰ\2΀CK('f͚/iUV~lT "ٳgʎƙVѦpxmԀt5ἱ p2 cO9Q4.:"rT)Gc!6!B  %ViduW(3i$zQҕ hbEjR*--D~zj=eӦMPMMq'a%֭[sRubŊ D78r$`B(>|r:2/ y`7t#E -?fI422gh߾=, (Dyq6U0xbhضmXdOH\d@th c0հ/L-CRЂ†k`a"ׅI-dF/H?F3gN21 JaIDitȘGuJcK2;3ڌQvd KV1H "RTŦכL(!޺82mq҅!B:,, y2-~ٳgGHU1A"z---;UXQLk^.h j2N*Y!A&&Ӎ)Ӛ5k +<pAϟBr[*6 {nI/'l.]KCDoC ے֖V__`K*%S.MsP-Z@0| ? +$zUx8op8;ԨQ#]0g#0L<\ ,>lW:=c(300P|åKFސCs•YGp nkdɓ'fϞ ϭxXWL #Tv(pk׮=(_@zKP /"&Z=>ͭYf=pzw89vXD?d k<҂D!A'ABD`LݻWST{RPcZׯ_G(5jN8d-2/:bz Um ` U%Yti-fVO]\&}ʔDzXQ,"  %E%]]]HM&c0lQRXXm"|&k-%n(t2#N}t+\`P>|X\NS~JS|5}&YA(G; ΙdVQ.HD IݦԛL(!&uzApB D߿?\!ZC (Kfeʖ- $4?eV/*_椒d iB>ҡCŋ/ZjڴNE%."JaѶmF̑ǰBE-7>sرca|dB4$4eD.\رcǞ={S}J dLOr콰yfpLec W,KĵvaiqBTy*|1.EP+֠Qo2IÁ!Z4zU'7D6b]( GX)lRP^u   !2TG2}V@O@DE POz.PYy$4~1E@pc9#H cVrI&&& 2сU Ʊ= Q|aIiedj95D2բ {"ƍaJ'pꒂ'yj8\bϠ정#""k5nݍC 0#ɬBu#iѢTf蔓X3 $z`gl⺛Ӌ[’ o͚5ӥ6YKmN*!A&&oeͪO./ ǁ`ϟ_paI0;vv`͒%3 -DWah"K^rСCG?~ fff={5k@8QOի7YIpHU12bŊʱ\Ejd2N%IWEʫ<>Ekrf$Krjy=4"RF>*řP7o^ܹa[ٳGY(Bu%FɵeVqҶI(D.]BT6ܐm&.H[KuYVϘ:2#.IÎ6TOVzivr1Ǐ_jÇql6M[$j?'@+V dɒ0k<3 %&ĜvIK)WrCkI+q#e˖!-Sh-DRpYS|P0e˖,z{{TO?h"H/]/S}u(nt˗+}B 6۵k$e\\`[`lb:nݺo#0s"oh8q`0ŧŋ;vtm۶tI_tI: n a.\.]||ӦM( q,Y?Pe-9۷c!nnnbn[I|!%iVmlذzO\Μ9MLLПQpӴ4BX?~\Oqs@-/]6Ν;DxAC}]L2ujAd ao޼9|d9#.iq x۶mhA8X58 X8eteʧ^C`e< NopHqh65H߿c CO\^XƦɷz\ʜ26fAD5ںu+W`*U atk|,E 'Lk*J@cI(  \!Z``YĤW^G<+a2v/[ {֪UK!mhh$fƍ'fjڴ),#Vx $$,#DB7xh8PJ b%| -')>>^UVbJI:t "TGGG8m @֬Y`bРA0P@W)"-[@*yPE=r~bT%<vFoVjeԭƍ.HB\']&drܹ7oyTu*& ;uT4|9Ep'կ%'fff`1!#iٲJЉ(_AL*7tfԏҝ+1h˒  ER`ydRV[7w0K,BZIB=ZFO1x"Ȍ8͆ {yUb,N ŬT4oN92f _RR`ə3&Uhׯ1B y&:A}HSJhLa YF ߏ1 -#8ȷnݒ^/W:$SrY 1׾ctMO/_FL~Ղpƍ'7oD#}efϞ]xqiolRͤ4!ƌ#}YM]W&MdŦM|}}̙Ð #M2Ν+Z(BgϞ8qB:y篓G*T(w܁;w,S ]&FhhxsՄ DFF9rqYM#k|$-}ӧ͛ǐPHl޽{wݻwÞ®us%on->yyyEDD˗ZjchhhggiIתUUA>χ*U rsdVXʕ+Bܞ|s|M ֫W/kk4-tU.Iw+v B9  Z`j}}}ssܹsQvnRJ:ڵkk֬_~*"so\@b1 !+p°)8pɒ%ŋOYvvv:th3eʔn B D|lllXйsоb1 !+dʔ)_$;wԮ]QF iUyfWWנ2eXZZ?Ǚ3g'1bDlٰΝ;CCC 5k֧OY_o߾͒%Kٲejaaj*OOO鑰sayӦM9sTNG 677֭+7o ʕ+8PBQXXhQ…7qĆ )@fy+++q3?tЫW޿m֪U]8::bS9ڵkץKwعf͚3gԖm=zzyy7o9YlYHHȼy֨_Ç"aPUVt oߎ[nر'OI ʥ311AP922-2zhQ{4ʕ+޽+ա`̘1hӈsL2UPa"G5nܸ&M5Ynh4رcQJ*gϞ|r__ߍ7?J7o^T_ [n,>w\Ѹ* $Svڅ$]X1T[*iӦEpM .8pV-^ѡC-[;E200+3϶m._ΉSxqnܵNN2~xfFt%K9r1f3`cǎIeq³gbEȀFfx:GSTReРAX~ŤIYyȀׯs(zش }Ãhsv x F nO8-[ 3%KpNUu!$=)X t\H^ڷo) SyˆA{֭[aZjAB.^F0P&zwJ*' lDoܸUVMm۶8'btr(>v,).C8U BIϒ%8'G޳gOL1 ['NXzuFQph,gzWP "666ݳgϾuE Pn߾-.u$:^B&Q%T&ϕ+RF[c]k={]A@sw q0F޽{1ѝaccd&޽a???lBgț7/Bބ:Ɗ+ 館R}ƅ*@@~8+­B)n]BΩ<3(/޿rNx&Ǐ'y_%5-*Y$|r$18DS4nرcn*3'OBϞ=S .Vj @FGG rQ\;~S!`ܹs+Ұap|,߽{Bޔ  _~9|pDDD hktѴH]eӦMGFXd hg$ԍ ʖ-+]Kđ׮]^:fI(=Ag+WNׅhѢ)|;wսftE%n\|ѣǏ<'51\гgOx0\d> 6lŁIWuxG,Ygamll5jχo\\7k N~NǛ{>|p)sfqީmS go2_1cFvgv֬YJ2K.rʡC9\~ϙu%=.-Lll+T .{Km7|8`ll|TѢEK,y%D7nܐu"JOΉD3g8p Y-\p*JjwuL%X7 :{ٲe2#KnOd@rŊCBswwGP!525hI;wRJٳgݻvիWţ(r֭ FU>";K#KgϞf͚ayF\C]lPbkeWondd榼ס;ٶm[=cޅ :x V@鐟ɓm]vޱc,Ğ6nݺUx񄄄gϞʷ f7.IT^ Jaee.]$ I&!<ӫ~`,P7s:::vټysi>sMTPm~PɇQGuVy d$6C2N1,PpSfmȸ'elڽ{7<#mU9}СCϣ5Í"7oıi5 Qp1oSnܸq̘1.3lG%t9s1u("8YD5!7 @>ZpҥK@!҄-fff&L˄J((F||B * B^p'*TBCC5,X <V"\^f }4HYH#;w͛-[焳 8PJ۷o= дiT}葃NN϶$D YX_r $Nx .~Z|+QaÆM?TZ;_"'666TD5oܸX^2NPC]Hsr2u`ݺuhDMJ@guuOOO^QQQȆҥb ;;;DfX;Dӫ!)qW444D({DEE?aWf%Θӽw6Ҩ+&+~6s?˿.;d]4iԴISibΌ8:r=$؇HxFB(Sgo~Ay}mlx;v:~~_-)+&ݴU*EnDFFoLRoog=}dNYWI"y[9_K:rî~~qqq!Xoy+J*0pfuW7W۷bfI'>>>,, fcv uuSCхv :], T"6ş'#;q UdfV腷7 6KϙǃG_GGG%$|02ŏjtվs7om ˥8!n]1Y|*#]۸Rgޤq#{ !QTLnN|w}6ֿ:z/_]8eKhִe̙{ҵ/ﳧiRZ?vȘ Gs8dp|_S ߼y۫G7"B(LllxOΎ$m=p7zv06?z/[˕EX'>|@̷YXjq) ͛5_%?ժ*ɗ7/Eyq:0xUNOcbb;Ҹuٳ7#zfRŊM \dGڥ[dbE(1$}ȕ+W ޿y;4u;32rhٲeӫ !'8$D]Z-mݱS r0IS.\eKCm9?sfvh|&L :9j<9| oy@]%Sg<|8SLŋܱ}N,ԴɓTSzLh\\2MF"=u?iۦUHHCG>}̙63˸n޲̹>ŋؾm[bSv͚ܲT~&n7#MMM7m<__FDttvz(T5F TH /[bڶʧ9x7>A,tS,)]j͛췭]8ϘQeq7QѦfG ~9s&@ϭZO3gw{nTw֬B mvfj6#?>/CP5ܲ*<zɴP$3)?ՙO<=c\=R$ij9 ;v9>{AqE9ק&選e x Ν4q7BH; X|8!AA/]Q\YA(6? y<\Y)3y(VxG% n`78/f",*T ^Z/I>;y-O>~J"+QbAOrrudd7WG4 \'ؾyMJ,):ab'B Q6v׻g,BZ7+BJ!/Q;~rUv`6 1kU` ҿ2C@1w<$xu!:h@ Fpnm蒥+fC \/=X!|*gZIk|_md9c{380~n#4kܹ0rk7kK~~{?qj?IV";rDI22*UHAd9qf|nִ ;萖͚\#qڬ݅:ֆE_qnH~!]R/S4;*!$]PƝ;߶ӏ+o޼bn];?zXeϤC*vqP9'NA8 8| ֯^ MYϜsһ:= y0KHb˦M>:n?afZIӒ䅴tդA/TشNZ*Uѫ{WI?Qn(&2@{Cmf%YdAܽwAO\iCxiCʀI*U~9B* <@ X'q+4ѭ# z(ŨGh{wz=wus+!(htLM m[' [e~++&^& j0\ԙs:VvjݾKXX Ơa2)St̩bj<Ъ4*!$]yG\sթc- 9v+>{={i޾{=[ոO||V>5|'đc'f˖u)E1EOzsgΟ/@t,KCu3yîn7oHgPPN[Ww,¼azgϝ,h$>:eEHY@JG0 PJ%y>t(\Y.:4oX$ѐZZZn޺}.}|I}w_(ԏU*WD=B:a+#Xu*B~K'"/(S!wx& b.YPRn=U EKy6_auc\uP^J>-lwK??cA L=x [@-utML:o+ȇTq ٷݻ\rA+.Xe2HYd_Te&ݻvN4!IXXXȕ+'ȕ.-[LK|yJ%!jxD[A,i;(EF#+Q"ɽ eڳ[q}aoY讈r%֞5P00/l. |ItΈHi܀"U>JGNE?FT)<"Bnjܹ%h\X|lK~iMɣ>mozW+Afߡ8ZLW*]"o|RIy4vԊLt45ƍ}wOqXɷ &!㌏Gn] aœ{$F3Ҍ,Z q0Rt]94&Cݵ]lYG7-SdAÞ>U֪Y]Lrcbmǫ=idg:(HR}IRRE'O޽wq ˗/״q#iZiF$(gCZ'Oǚ$66.N<eл`Nu.]m3 ǎD9ԣMKE'+/WbC)wj mt90R1~Z}ɽ~֮dl/ו9xJETt͢h"vmU4x? hݲӌeֿjS1F|| +dD 4MM6k{x u'O~Kg i:'ƾ%uH@!܌iODv?4G亏=IAV4!vre4&={2K5[;˛WA!n600oxB͉ULYgi#D&^P<,!Nm(M+fs1Ο_ ?MCҶMQdwKXlc``~}||]=SlF}2Zt3M>w>z>cZOCWn֞JݲX+]PA2{+*0P2>ʖ֘D6UH\OnV}X^m@ aӧ7_gf$\b(b+$V{3g,U~v}I' X%/Ub<&zmh}6͚-Xw߁Wlnڤ@1Ӭ 4]oˍkӫVuWMڒ޵UP>!ჟXX.RL[Рx5wZ5k0 }ѣ_Ǝjwb%B| tٷΏ 04r)eAۈCC@B7a'`?ch/U)QX9eƜF >΀He_ֵs_pPbŮJ[CvQLt.Yz~aHDD%kzMZz eKWBG¼^ڟ.#"#r!#1!!a?֪Th[M3eW &$塳йs+TSkh*4nq{5.Wj<3DDa۴j wܹzjc6mܨYڒҩ͡#u}uZmV53qAtBIWl\$1# /Q#&NpO"z\-[to=ŇUgzG>gL- ]6ԧ5kTQLn ǝ啻8n?w~^ѴOkoqbj%K@P, |I@LHnҍt Io_n{6ƌw>8ԣ['=Q ;!q3R̅h ZjbFwWK_ 3<|B:YLutL$M B2! ng_%BJZ*}OܬVVWg&3ο x9Kyr-SZz@Cx;y)]x\2(-[9\r*YFKfؐ;usQPn'*XA2g.`l\F}zcAtÇ(R4RJeu[{/$4ÇLK(na)jVʿQTt4ɨbEl޲mB 6ih~O#9]HYB`8Εߟ5.,R"M_-իmzN+g|vƿoZ ws΍nӴO=Ȩ|rpͱhiku@ ٷ׋obɝܼ0ļ4e"ko@du%{ɴ@D[<#cj⡙o@Jս> ɀd*Y>Lơs>/?> yhcr?sE>Fz'966X+-ل Ņm dy  ngL !3#MG]r%SBYdquSz5!B!҄pØzRPB!B4!Ŋm٢9tHpUҿO/ 1B!BH:ws4!B!.YB!B4!B!B!M!B!PHB!B!҄B!B4!B!B!* B!B( !B! iB!B!BB!B&B!B( !B! iV!B!B!M!B!PHB!B!҄B!B4!B!B!M!B!PH !B! iB!B!B/ˆ >$'N`efm#V.xyy-\0**Je9x7oX߱5svv>sgΝ;;wdsp;v` iLw._ҥKVVV'v˗/3عsҢ>|ͣfĉ w׮]_g"mš}r\8_F>>;v܊666Pˆ#2gzz M*U!u5r277ڲ,!csN:_deť5 611I^q  de ٿ`ssэ7"j֬אKvvv:th3eʄ57o~ɨQ 4'/>TS)(ƒTDkb ؍}ψ,K,SB|W;"Xɑ#t&—TUf,_|666ܔ)SR< 9rdտvOf8nM6U;wܹSvFIk޽ۺukd}ӤPUQV P76PB]t >}PH ___#F2i'O +RH+T 6A>u 5k֜9stرcz+Uߟ={-,,֯_+-gΜ{Vw_y{{}6k֬u)Wӧ}||۵kױcGT (򉄶o a( .@$ 2211СC˖-5 7nܹ˗ D...!!!ݺu爈z*NJط3sw/g܆z>1s\z/,/88w0BVZ4u?F>yxaÆݻϘ1~EDD-_+2 k7oAjOlW1cứhlР%L"ԩS3Y|Blڴi!C6Lȑ#)Sv9i$6&P|y$`~L'9<WW{ϽxbkbBX*Hw޸ d`_W> < A?Q8{uBZhCq0a•+Wے$Ib pB <IO^~\_Ә^. ޽{7!Ӊ8q۷nQWG޲eo%|7PBK7"\0]vt`Ǐ'،۷vDMT 9rF )}*Rt'}@}g>!#7yYSVҥK[J[+IڱcG\ĦM0jZF4}?-M4̞k7Vƥs}?G`] msez)Y A1ɡ g.b[zŋ:96X{dRHAԘ1caEgL͠Zju 6"Sn۶ EW 1aG!o$*X WjTScctHʄ Gdb7QZjDy҆9s {T[MlG1LUl٦M="+:v.SDՅ i! Q2tP g_NӸqcs6W\͚5[vmժUy g}D޽ stcHK3 7kt i~ W 3g$TxWa%aÆ,͛FVv󬒀I@i(QO?oΐ  K.% hٳA K$zo'MޓdɒQ e*paۧp֯_ߥKeO6mHZha6` ,hhɓ'g_#l ׭[ /xw s=͹ bGJD̶~ø&L2l۳١a +nÃy:Z2ޭ[7+ Zd I*WF1yGdƱXklнX[lZ l"7drD2Easncƍ(\:>+H.}# u0s1 Pԭ[EٸqC!Om)UTqHd9K؟3=C&Z O} 3`Ygb1@sv8F!S.[l¿{Yk_܆/`ĉٲeСCҶի#u7Ei?{v >ri0Ltv"瑉gQ8xuBZ@ VpR~!7z11cf7o@cꠔgxOJe]dQ/^49&$өgޝuVtҋҜ.pam/^La.Noz)Zt! SE 6^S݁Gbv2?`KYf?ʕ++W.J1sCVce kbDJbIzpŸaQ8o%ҒdɒMsH|1E)wž}&LLƎ_2<~gYdPu%ۡ+V,QǕ Eq^]"U`?(P\JעEb1<"/÷sSǺ?Jd6Fޒ!;4f[k2ٳ4iDԩS8p͚5[`OXܹӣG)R=/_n<6Fee->ݦpȐpm۶Ю]V^{2oڴ 4`6mD33zjrGcϟoԨ:$'1>m0-1|Zbz5# *?.[lΜ93gΤ?M{C;~s>h]&JXLVX1bĈMX/R[ 9rƍ-[̔)Ç @}F?7۸8%nʥp/?*Eڵ,-B!ϟ߽{“(À(cǎ&JhنwfGtȑ(Dbm4@'z˿\޹s'!\eo$k֬tB*͠N:é8ҥK׏Xnvʕ+'ORJB\}K\]{nх=H,_|)A(B6l`sAVᅮ< r0B^+Z*prJ?Q׮]2ڗ)ZD;{?`oRNaaa~ ^|&[&"K,&IKy/)+ tlӦM΃rr^Wf͚ٲe˝;[ s=WdI"=JF;&F{gmViy`) ׽{zٽĸg_h^MZhѭ[={l߾ݥ(ÌHa< dhҥx=Zjx-5jċgѢE$8ӳgϖ-[^/^|֬Y 2x\#&M*VUߔ)SpݚpԩS8q?,Rs v'rPZ٧O[@aÆ9s*Dk}>|8'"u 27$K,mڴK,Aɓ''jZ_իə ̗/5jĠ͛DC,_yлwo!*3݈7@JxqL2ӧOg&)TK( ;w.0/'|EzEO?4orʕΊ~WN_~%Ie- xK-[9sϨΟ?ozM8saÆ7ZOK{3.}Ŋ2xN#ucFoׯ?fc^GA^g!Ge~EL ItsK `Yk׮M.6As1dȐ&M`V l vQ3Sm9%y^zZjKg{ ǨtW_UP`fϞMg蛩=\( i!bZHxI LMG#%BCʄ)*ɓ']cNndbdθ1*Uۏļ[noZR\5k^LC-WXXq;w/L>dl6*+zڵk7t^zQ5o\ozw59͌3d9~P>}ȑ#˺-iO~x5k`j49GI͚5MBu:t{3.}Ν)SdN{;Rָ1sC^:3KfO'>pؙ+Wx=vXb7{;̾PBjR?I$Yf56Z0:BQ'Y6?{ 6nB),3,[s>}͝{ bO4Ȩ^(ׯ_rmo{\F 0H<%8̦up м6C!xyAlH={:t)&Z\zQFqBmtFZ=;|pƌܹqƽ{ZB!CBhhhSHqԩ)S<m*x(8}ٳÃ;uqB!6wݸq/_*U*2hm#p.KB!_ !B!*B!BB!B! i!B!BB!BBZ!B!*bŊ˖-{F:yŋ?Bwq}^zUB>bĈݻwLcMSfΝ&Mc}[b i!ҥKmBXXX&M~><FQŋW͛7GݪU_}Ȑ!-Z5ks֭;v옳:oٽ{jvtٲC*'֯_m鿑UV+=jYY۶m֭{ݻvΎwqe= 6m:{ll;O`P ڵ+?~C3yڙ(.qQ*Xt'%@;wܠA3gL>ˁYq34rҥXQ.O tުAD 0%ʔ)S)G TB'NJX~dɂ?~ kg(zZdIΟ?Je˖ӧoAAAeʔYf9gb!FD>yBd ou[bW۷pԊ|L& VC&L@kvLh?(9s7nƌ3e*IRJէOLټcǎwyH"fMXXةS:v+W[n-VK/dѣ?uXNNHӧOkY߶ne;k׎ronN:Νۻw?>`{tX.NСC.]~A{9Zv˱7a@BZgΜ15СCR_~#ybƌYҥidٳg?LrرtU^RJ"oO(Q>`G3fΝ;SH /4hЀ򫯾:| $H;w-[#Z]}8q'ڇAA|r+VHL\_>}`cBȻMv{=bia„ WvChڴ9QSh>>}o֬Yɒ%ٳ,YBW7Η/[]-O:ű>VN&MW&\6HKB3gNE^Զmݻ(P ^%d~)`34|pƎnwS=:rHs)S4aC ;vmXbfyʄ>_3gNxx8]ԬYi5_SQ@FywȑG7n$1b @8޽{3ݝ;w6Z/W\AX)S&Ɔ /BXomЁ. ?O O?]B+WRƏ~msgŊM$ +G `_~aqE;f*2'H>Yd~q4uyFyȶ=:RbZ7xUn]NʕGg'b##%/?'(sׯy䱶gqǎF{98R)q:uKQN`o+ۇ8p ^i2eʰ=L<&<hU[э#VYK&Mzʕ+g}YDZ%JȟRFDDXTΧٳnDQ^I2ې#b֕vWE~ft}˗'eoRsLh;+B}.Jb&?~8t(۷oOhbŊ'(_ǜA̭HDi~IcӼi)1ݻw߰aETt=?AQ2M*f644g''NluT< ۉKu5ņeh8¡24|Ga1)JASK,]۽ 2,Z}18b.Vb6}9b"[kac(ZỌⅨCBBL!!(FppR>2Г2BLv|*Tʜf:6mڄOFh,Bx PYWc  pkcȑߖΝ#6o߾MtŜl鲴ֱ:!gΜg{.Y$A~޽QrMañc cƌ"x\<,,lĉ`F@}t]f+W.WuHtY'#YQHNrZ= >}:Yٰ?EI)hvm7"W>.956mClBzj>~nEdΜvY& '!۷/NÔňI@fH,!q'?OPtG}D(g&6a.6g,EPkNHVP\2e-[ֶm[TX/\{3L1 y0NVS &BX^qR=z(bg&,`xx0wb' AY ipa".ޛZ75̒%ǕƏ>w6W|cB۶m ڵkսĈh:٢E۳X-xKѣG)}/_}J\F=A$+3gDϞ=I@9fLY\AAAb<]r\z Fa4>qD>}^zFrرjq| zީSf͚3C1encP,1s$y67ߟ`;v V8n{D4iL僔pf͚y-XTdI XbĈM6Ń1}^gsa9Wrhi2C\fhQbP*v&Kv\HedCGZ2gΌ#شiӽ75k37eXXX$I2pJjp,Q `f 6${9cnAƻw_ 2$Jh˖-Hܺ[>v\rɓUTHbI*R:ro)k׮=h H\8СC֏4xe#X{s"S&Vv܉SQf>㯖uЫ5 zʕ+G֥*0ƓKرcf1ARʏ{|Ⅳ'vӎgiOv2(âe͏T#SN٥E3vJ.ݯ_<Xa{Yflr iί#E.hi24<,"ReNӇ,Y|_ xb b-:#- 3fLPPyO f`SN,[,~lx7oޗ_~YV-p|9&L`!\p,>ر2Oٳn8u>n|{7jԈs[nYyt-fʔ) r sHHG,:SF -SW^Mj $(\0_dIԩ'On txf͢?T9WXi\oq^xWy޽ YI(T-Boʕͬ);w8C*|NkoN68z(Z|y?ev.\ؽ{w6H2%..*T7x"XU?b/?ޜMBzdG%{t}ŚhDKAa25+Vt0C玽3gDeʔ2"âEEaZ)\UpF:uj@)Wjر8+L[g>}`otzMeޒ$IlHSy"5k4M6!P9GB>]O}`,ڟ!X#90֭{;Æ[XY<,b'l(MB_%f[^qi!BطoÇ3fxΝ7ݻz@BB!“ӧOϞ=hܩS'+BvqtiB!B,zXB!BBZ!B!P!-B!BB!B!TH !B!*B!BBZܹsҤI<طo߫W>>|x۶mܹȮ]:wܰaæM2&R4ib%$C hѢŬYĉׯ}v\\xqo=z ?~|ܹ\jӈjҥ8<ŭI&O;ﰦcǎ73ՠA̙3ӧOɫ>0Dchz2uT`,(o=c6pdOxE#H"57oQ&(((s" c(ӦMkϟbŊ-[KGa͘1cצM)R$NW^SN"~#&),\0 4)惔w%J)S&vӧOUP!7tn#֭:thɒ%cɓ80)8˗)5^֭[{>S|L& 3N&L`Ȑ!/^l߾==FBI i!bׯS58pRJoƝ;wX&# SN֭[+K/Yko^JV]v:tҥKO RӧO4%أG831h#<ҧOk=[˗/ {^cǎwyH"># BZ< BBBv[u.?8`s/߶lҜS_̙~U\d͚5)͉_ M4yW[jUBJtmݺuirG9r$/\2eA=cG3fΝ;SH /4h~ &:uG9s$b9""T~,WX k7o^zuǢ;}v:uY/_88QF:t(UTK1}v? 2-Z0x3CCCϜ9LK!]Kē'O%KJ~ o5yI>S1YR o$)Ag 0y t^:Y` ‡ٱcnݺ=Sv_nĉO aaaΧiċpذaAe̘ZO4cf #ܹ?z ̞={ɒ%LO>ٸqcҖ=|8JuuYy#1sDw2|PK."\أF2ae޼yh)aJY,ʕ+s~w f/x8p Lo}:|'?裂 K PcԒtfJ ("9A ϓM!k׮1\r >%3"mv j׮]~)ɜ9CP`t6@~2#;7uб5kp4iԫW\rf=1u9rX?:;a9RVDeHv-jUvMo&3Ђ!Ҙ4 ݮ];<\&ʑ|%''KVDp£g}7o^G$05kf طo߲e6mڔm'qyw0Op0a. Qpac&d$$ btڷoSl*GǁGTe3-)P>9tl*ŋ2FFM1 IF\FPEL]aA-eXժU)9:ECb@(^8\xqsF7 ҥ 2AHꝊ|@P0`[׮]骿G!tyׁ+ĐQjf|,ʀ@8(Q^Zj9RVq^~_4˧O3gΗg}6a„3g5+UX?/YرcGsA`i>go<5ӦMs8գaK駟|̐!򩧞oܸѺF--ᄆq>p*֭[G`둒rt2j˗'81YOl6gHX@dVw@]n!>*Tk׮<%VVjhGcEz7dPK{6l0Dxu)hX~&O6@iqә(][c$ޝDʕ?^qE$I?~|w!=RJ`ަ}6ç{6ŹGZ,Rp_>wƍ;rKtٖ=u[#z6lh[rLpSLTL7ss/Vf̘-)P~0uȜY3'}zC1asA-M\ɟZBc H+W\W O>>{8@< d׮]?СC=-cY[H侴p[ػw/ =+DTT0MZ?GOQv}72g?GWGE1c@%b "vg:"^Hܛ㊩ә9s2޽{,Y|ݣN*IɃ)1+m߾mݺդw§iRLSEߣgs)cǎXc\֥7odKc8XNj<#Gm>s5k߿|Pre&"JA0E`.dXU9r>lArc'?n9XЂnjTBݺuIY+(QnA͌kBVLۘuϞ=λا!{4%THFH|V =zH/^P_pk ,Y-10ygv3e˖}q|(љW.XڵkJ,?5kȓ'zjr})0gP[i9}K_}zx.ue:eI6mJ,ASQ?`)k:w;7nĊgZtO H{W,_6"u12O 8=,MhEݺu#ܾ}p\+YY&-Ν۪ޮ 1# ,x G^zucǎԩ6m%K\'ONt>m4"Ngʔ)˗7?$?S&ĩ%Hp¥J5jԩS#y@>o޼/VZuc?ڷiҤI.] *neț7o v\'!XqΝkYeW^a.z߸qcҤI^.S$æO/'L7iۯnx@ E1qĤI H ZX1JGLwk׮}]ҥDlFQ,l@!Tr+:pIUx?4 2 መI"Epe?s˖-}&Oe˺,k׮^X=ޏA1؂ 2"$.;F@!I&]h:t(~3ъ+d团﷧zɗ/qsȐ!r_{PPȜ9sVj5vN /N.ݦMM^_/4"6&V²;jժ+=,^Y~2dػw0{lڡYSGinp3H̺Id}ݙĔ)S|;V{I x "GM@׮]KSGw3o߾D& ڋc- ~f= .J*!pj.]Y#GܴϞ$KgϞǏ9r$lC>}7nD):>,:uDZ'e Y$n׮`^hy^Hut [ds5k,[Ș1c2T:LX*Q 75kEMLQdrcW֭/Iɓ1I,<:3fE׸>.\ %BI:w=+n۶ͼc߭]jՊqʕ('Gg#K,7)*c]`Me]}9(QhѢ}ر#7o=عs'իdlO>oͯc}B FMBMŜbZha=Zt;'I$!9~8fEߧ>ȟͺIx$BR pwmڴ>|824*=/iӦ})b n\r'O$ ;v,)*tuԨQ :SL.RF@ SPRlZ_[q+% !eZȱǯ^zȐ! Bi!B!/d͚5qXx-! i!B!'/^BBBn޼6m_=+xѥqץB!B2B!BB!B! i!B!BB!BBZ!B!P!-B!BbŊe˖IBɓ'/^XrpڵAڵKB/K.ݶm aaaM4_}6mڴaÆSNe?F}ŋW^ݻwә&Io yMΞ=喫Vo=z_:u;vL3.ƍZBB$I(QLRHa>2پ}ĉΝ;˒%KΝǏ!C:dɒ>0`@ g!1i󄇇ի{Sv2y&B"N*U>}e;v;E1kN:ձc\rIVxKLaL$B!THq7sE]z'*X#Gƌs)R 4+ꫯ>|… Νe˖3g?q'NŴHXhҤ W ˣG>}O?tK.%K쥗^_>|vݻ'OO?R0aի]F6mjN{K 1Z{jժB oXn]FZre:6|[{pppn̩l};zȑ#ORL9hР۷o]={vԨQ7oFsѣGGyğz66B _|i_~9s֬Y&Mz+W6lЧO#FJjŊ0[>b,]tС3f0OJ?Y߱}vǰ^{/_;vڵk||z-ؒ#RNN¨1O>@xL2ϋbpg^d mܸ1Gd?s߂ y3@!P!-s%F>S5k-Q .rXX $,PWoٲo߾kצ&$6l9?-U\I4ϟ?g͛TjX۬Y3$}'.Z(L44VSc{r$,Nz۶m\pNg_{w}Sڵ=~:믿"n:[l;}RW< ,` e׶m[ZBN<9+;L4Uw=d]tX~m6 ô\B#q /^xbłYz!ԱcG,qӦM>Mn:L;h F%V`SSb >(f/`Tן|ĉ޽kh~k7mgԩ .lԨQ̙-ZԫW/4g!ExۋsȳgB;ܼyXXVuH"7nq4i<2`*Uk̙3ɘ6l297ʕ+l8O< 0ӦM#&oN0IIXͷr*X)\O<>}zԭoyZ&Q_z%kg}mHֻwa|?{lD$jׯ0,TP6mf̘ѢE sñs=GEAFEe8  ˆR^{fd)ӥKgW{,Vj"I$& [lYvB  co1„?#G`wUyҤI޸q ZjoO7nG!}s6n\'B2jժGK!ύ ! iG0S \v$p֭9rܹs۷IcL2-B%d$'N7SK!eʔYlY۶m+T@ 'Ν;={a͚5T\\r $ZA{Iv=/4X @dΜs 9s~{]dIjWSawlcN/ӁhGv1cpg;vf͛79Q=\1@!P!-b;$6&L /5̒%G}d_裏X}s$ۗ_~ɓgd|b㛣|ԩf͚y-XsPɷz}Μ93gٳgpp{]J.`}Z+FѴiSJ7Zݻc_y<&_߶m[hhh׮]W޼yscxĈLUZh?~k[(N !D=⾐9sfBݦMY߿L1w&-’$I CK.g}6cƌ˗/?/qzkyҥK׏DނԼv]{n+I*Ց#G|~"Eڵk4|h j -K,YϞ=Ǐ?rHp4i̓ ;oժʕ+y{M[~}{K]R%42eP3GY?<ƍlֺuksb_)Y.lѱۏļ [nW\tiߴ#G$"W^P+-zp"NpTzF>|8ʓ)S^x Х>#Cի5o޼\rcǎD3]>4>#5oE6w/_p!44?((sƢ;u4a„ٳgch8ҥKGy3-Z4m4N"WTwԩC-[`ʉlٲBڧ9 _D͛7c1bBS<3OAI!i* !裏J,i*Z G!B8H ᖃ>#K.Y !B!TH !~8qDܹ?3SCB!;KB!"f믄B!BB!B! i!B!BB!BBZ!B!P!-B!BB!B! i!B!BB!BBZ!B!P!-B!BB!B! i!B!BB!BBZ!B!P!-B!BB!B!TH !B!BB!BBZ!B!P!-B!BB!B!TH !B!*B!BBZ!B!P!-B!BB!B!TH !B!*B!BB!B!P!-B!BB!B!TH !B!*B!BB!B! i!B!BB!B!AD B!"x a$K,B!"^BZHB!"{B!BB!B! i!B!BB!BBZ!B!P!-B!BB!B! i!B!BB!BBZ!B!P!-B!BB!B! i!B!BB!BBZ!B!P!-B!BB!B!TH !B!BB!B $qֹ bwܽq#ݻqrpIB!x0茴BUB!*BUB!P!-B! i!P-B!TH !h!BBZ!TE !BBZ*Z!BBUѪB! i!P-B!TH !h!BBZ!TE !BB*Z!BBUB!BBB!BBB!*BUB!P!-B! i!P-B! i!h!B!TH !TEիW}Cramnݺ5r̸|ޣ$1s΄IShشD/*װi#GpY˷K\yJ ْuz, >p5xR˖G?7|_U¿pboE^,RJwmwTUjܼ%v #y,5Chզm*58o/q;-`F]қ5g^^_5oS-s}~ұSCmaFq_ ſ_}?X;~b7=Dm߸A>Bd$1޳<3/t|ݏ^?~6z,vؤ)>tCGT,ڵkO8}EKfΞBrec\8h>޺u̙,3ĉ0~5fwYmG/\YǑC;p#njcl-`O7a2;w5fD'M۷\Sp7^ҤI{*:<88YȘ1B /=~wX{lwyc=1C^Q-123M裏-Β9e?'K SSdׯBRJ#GvLbr.M̒)ÝѼ;[mgim-u9Y}?MĞ&L eH"kլ^ Xֲ+uo11NBBUwpȑ .Z^z}u_s>yP}znݾJn׬3 ժiN-Ruyo5m;{޸Aĉ?zu̚9vxLo~SENj=""L3g7kĀ׮7 _|ڥjJswnd玝W/>2#e׽;.oec~M7H0,?~"/+~n߾m>޼yC;r?NBBU3gٳED\.:{kذq _.˟3ĝYք :u 66x8)R\pa]T#3n Ş/|{l_ ~ Qz*7lƚr* 4MJS+F`i!3[ln};gނsϛ'O%ɣ=zeK$SOW{ʿb1o*EʕGs'w_t˿|TGvDXصkד'O?oަP_Y~RW fO?{7dƬYsQ6$I8+ikX~sp>>fWL6m ?AiH'u9~[{R,^heɒ|KM^~ÆRŏ 8c{sAk׆4j_;.wI6m1LVt8QDm/aw_򊥡:Ҭ"ϖ8#yhi} YR˛S E޸z ۿuMIyַZ mOΜ6i񒟻~֍5U쭵kYȜ)xi~9fK̙RQ7$HӺP.\lsI/+v>UͨWӏ?x狾լIlYm¿c^} tL3z#צC߰cm絫2dP\MEyYwY6 ~p<ޢDDD?/_qԩRgs3l|eޑOWk=W]ˊm;v8qG)u>|ٻtx8#M}UjyXn}y.(aP'Q7fecqTٳԧhҨ9Éf4 Kr*5) 4j ?r*}32e^*5nd\eDĥUT[M}Q^_{\t&<0w/={ǏgH6Y-O?˲FZFhoܨa˶7g2o_3~m̔1cٯ(c nݶꕫ")| Be+>$"cIddz%H6?q ;y,߬W'YRkǎȟY;3Ct|+Nkw Z5#2.zӕ+SE&{sBZ*ZÐ.Gj׬5˦Yv18}mJSX6#I)΁~O2Vmm2-S)[TAA T55ǎg,/~E ?) nwy? ma.K~d;l]h ٙ~vvܻoAA cB:55շQϿ2u+MmݱϯڼY"1>*J {gsɇ|&SmX,Ͽʹدw;3=3<<xdog6g?+/]47"< V i͛܃/Ls14\H dМip2=ϦcNOs iEV~ŏ?{9>\BNg<ӧ~g7o~ hn!ZBKa}Lv5$o̸pwOΜ=3= wwث )y7C \ 8>H~!"~~۲i?"SGV9? ҹn n޺=ђGΝ9C.ߞ$ MtHzF.ֻׯZABоRVW|tqXfMSR(E8۠^F {ޢU散6]={SR,_XDMްzy. ú##t„;|)T4஝;"=+Wg[w)Ob0L>mTto˅c嬢^Si$=?v2Խkgݾu[5 {ddj_G3ʖ[VuBM\n㸱gsզJԮs>뼍'hO5fݺ٣Q?e󦨤{HIIEËmŒ(agp ҽU42^reV uSZU8a^;pBMR%6nza׮|k\2m6wGH\tz?)t/Q#$(4wp:zxh3g!C>Yƞ9FHH?xi#@B!E4>&,,tGE6t/WL6G.]2ҩcJ)rըxjK-Xڠ9K( ?nM}z&GlBÌF [Hj*--Plg9 +˴㏝4d[1^0=pWIo9W]rqIvp+I\듽kرsW.!J2l>0$Ir,ϞeBڟ4sJaaap1$8_l\_pf Xr‹ϣR ~f n6}Y}o ۺw&u \N|uh?7<♡FD'޹Q._[Je[N֣[u ݯyuo@? |$l@H(Zf_= ^mY&33hl~ ]'>s is4AmsOFʶ5k tעiii#ߏ]/]hQTɒlq BH42Q:ĩԿaֹν};SHȈ{ЫB:gϞc='ܚE'O;ӆ)>bЀ~y;͛6V(V 1GtɨҥXSfM~YP5"LH߹tl挍wܳsűou -q xO/h f\B~W|1'@%H?L1#Ua3' u=nyw\z߶Vͦ`?9g>Р~=&i >{@ɾ/Z7Xb@Ԛ~}{4vLAY3,q׭] i yAFT_F/\to[XCqO>>oKDFB/~ Ą4 7K\ .Nڱ<Ӯ0nlo/͚6[Gs?xyw7M_|-qr=ALH`d HEŏF._\]lȉ;#rF /#rė׫˴-Fo Zݴ8ҥ˗oݾ}BGcGeKvmZ YW0?իU[&yC{wm\bal_f?+Ad=5-W|a lv5\< WR!jJJ{7UN];) ]-xmIAzZhK_m\rߺg߾c{ '7Nv^O'JɃr{ְ[\ZĨQv?A˜N)"y{՘=`P4Abe/v3oMn0|8Kg0auj'923~K^x˶WZp̜3FڵqOԷwϗkF{wj}[$%w{_uœ ONCCCfi߁Vs^Wn߶ /}Ưa !f 8qdpP mZ{ـ3gY |g7)r?ݷ=:b!?+BdҥJ2a50ڥ˗6vO \8RDit_5D\lQ\eV}vܐgF(x¥Đil}PP3ݸ ~ [9eZK?;/&7kVcNkZffLݎ٢r7m6cVT,Y0GS%6[F>((h=q5f' C=uN? Ԟ&T4脭Rz5$W^jђ}S22{ucގcu͛pǂ;~JPl;vjժ8put8g{:TWoFNd6) гU_94T^:k-$QuFAwָQC /${2[6v!u [n#Y(_3V9m|B~_p0bD8y=%)ODss2UJe`]@;r< HիZ 0i.p)qKD6kCܫA;ZH3=!; ֭]޽gx ndO:Sy߼uNREKFS5%9V[[ !PQjKo[zTEE;Qj^y.ܫ%W l Zo Ԟ&T4˥wޟҬicܝ0dG<Ϝ=7hrUzqjͺ#w)ja͚4*Q<-|j86>7jP:-)9 + %bWZ,qqr̗,[av\nj\UO Yǎ9dЀxLh߮M:ٰ@6L.Μ;P?vzlcS!nӏ& =n}a'*<_O|7xulPD`K>;zBо_gYm~qr0[OҭKgw ѱC[V:uu)v+q-u??^MȀr ,ɔɅ?:۱፻|][H=v?{t:L >lbRصK'b0{U>qԆMN'@%c<'"{晟P\;5w~ Ο4OUsRt_VMzm:."g#qM2Ƌp~6(|om[ء۞0xm7uq<"Mz3?{.oqэ}Q GD疚._==7t2zmWݲy3VmK ]]eU{؜U9AB RģJ(r+Wgdd@YFEZrSv3[Z ;q2--gE/WU~YsgbB"/UZ ڹ璓9 C4|>| ٻ?!1Q8rt.jԨ B >i~= 5㧅Km͛ E՞2}6Hʌ9{ީ3gS݁ -.>) \ҐAs-ktw?",n٢ުEs(۴nc\5Fq֌yᘣzA֭S Iz( oY`hPM5@6]xٱ'RRSryDDx5ݳRp$ P|fMp/4>tiݐ%v-((($8b ;zЧ'Yrk*R94e(Ukן QKXB.ݒ Ǡdq/۷ЀB+[sCrOС}[+teDO~v7n޲afhZcx/ Jre*n2WE~<יxNH-\{ޤ7ZjmŋP\^OMwwi40EZ|`qzG|4$T"IMAA&[/e6?0Ƌss r5v2kܲi"NE G>ޛйHJt$9Mf qZ44(XlJEj:sbӎ߸PR4AAAB j5uO(3ҬgOۮ]vf`iJUUat%Rݰt52`T4 ҈o*ϱyiNˉNQZ%JTbYke&R9C?gR~hFbek| qOJNʻx !+ jYYvaeLw9rlN+fQGAQk=҈Hץvrr9fX ;deʩ;vN8ri  4AGPŵK'դ%JJ.Çsi1ot$%n^/t]_8$69D+0K)ɦ}sf?-4$TV5ǫՅ^2˂CW*Q(!߼4AA@ĿNFĆ#-E0YVqi\6+=*kϐn^+8v!d3 {jx+o+V~TYa|X(n9}dR!9*>i(Nq:3il۶m׮]d$))i޼ydĒ%KnkǎT(v%[=u޽{gΜI'P4h8RZ+0Y1S:D*d+>8$p86xurGZ|*QJQV=^[Mko~lT4C8ŷxBug+i`2 ,)lV*o$''Ϛ5ٳ3xk]pAPTXѽg۷tҟ7&u-qqqׯڵkpp6 } BCC oѣ;tP[.11122~2e\.w\ /rywD:#"":u0!O}qi 8kʕe˖Zj&ѣ111O=T?:?Z|;y\L$ +up8l[2IAfd)jܸ|xvEdei{Wk) ݏ~0i?vO0椙]RSSW^}ȑ:u߿|ӦMJ W_}չsG<x, -[".G~'Г)JeTTy&R&L2mڴ޽;l ӧ6f͚H*UJZr_wm4!őիZ /h)aඡdzTDZUyX?DB jI\.Nyu+'Z#qMZyuᅬGm[op̙3/B #ӂ :u[Vԅ1cT\9++gϾ~ tӧO(Q==\s7f%&&nڴi~mɒ%}կ_ڐ 9B&/-AXR4   4ZQ$ewMSWTw*q%5v=Np8ĵju|pHK\$}8[.qwdQeayJ|QK҈49 sĔi4hᅲd_}U@@ӱcwygJu_5..h4»4i2vXFÂkBx r >f͚yoq͛7DEE 8e˖iX ~p__{֭[{6Fѷo_l9rgŽJ.=tP͛7!?bY}6Vٳ'o>$ ׫WK:uJ*6mf]W\uN:oD_O̚5 fddCb^t)٫W]0Ν;wx\VZ۷o>}Ua8fD2|Xq #0`65jQpH3.^TToݼysܹgϞ7oavBH9+L/ƙ0a”)Sj?9w{wߕ)SKz;d2=3,>\:˗V6;vp3%yNff&/3>R}8歷+ M an[V^z-[8xK jNsNAa%Q-/J߿MQ_~?ׯc?Ni݋zCP4s^zkUy}s But:,Y  YWE |8^^o-@,^>s89c$$$ I8t[@AL<>#QXO?,P5VjU'A+kǏGbp!țyy!U6laHHeOkΙ3 \SNHLi}7bL$ _WUka0GB4PH\jNWlCȲov?.W&+[^٠1{`gGNCGˢʉόGL6v]eTҲHYrֳ8eH'vUoݭ#.~@Pq[EE.6lޣGqG snܸNӍ5JoA@ O ȥ @ln<6\i!}4CJ q/GI> ΛK.ħ{,BpH\"{Yp~5p.`^XyHŊ_a4 ݻ+ =L@Kz{^|B^:\_A( spp%lVC-ljǫT*UC=_Q; uញp_h8LH\ŋ`?̅ O6~-Z-`|h䲡Vn*uvZ(UH⤤$țW罅?%hniOB=]WZ9m4&V+) G)# \n꣱$W⻩wӄaq4hfΜnڊ xJVZn|כhv mJ<) @Aɳ!!b;1]1o&ovFmkN4uNŴxVY$d[$jܺ1YjުH4TR4S@E AjU-Jx^ռQܢ*Z(TYgZx@؇rg{nࡎXnݺ{8bA>|pYh;'13!Vٳ'gڰaCĩw}H(ן c9rQ;BsA{HyN:}mۖ8ҿyfIZГo5k/HO7nBWu mDN?$СCXcVOMMI5jYt8}۶mH :?o< nk tBҕwKBcIoyF^祮 l6^1Å OիWw|=Z J{ԟ@J $Cf۴i&quBF^M Q(p(%DêJӆlU<9h7T"+gͫsv *  Rh +3 _WW ?ZE]Ò-b ˱ȒjRi̗[bJi46  zԑnQ-.ڮ]SwC}# Pظ}6"sYYYxNH~ 9 1ue H(6 R:|g~@̇ 6-Z.]hѢ6!fJ6mťK6D_ʇ_+ݺuС~uy;k( ht28q'e\BcIۥ2e3Tk/\@.D8mLL̙3፬@Ѫ?1^v@j"GCH@޽g(eX,?I8bM6OF[vرc„ ;wڵ+yO/[ r ?[<p6ڈ:jB`\n୊PX7YrիWqpmE:u !ӧOõاEk^-}Ϲn,oHHĿ\"pij|P]5ıټbLӾ m9vHy;zui>4LHU4JەKcԭC?KSK-(N<04a ҏ ;5j oٲer95ec,ǎ9 urJY]d|Lj } w{Н~!߲eˏ?}3Hs5ҟglgpʇ֭O?A[Q)Rt\q:䓭 YF*zO:M6PSRt޼y bߏ%ͻ6G q sF7 T<!3 ӧO(Ը "lw"YK?4o|/~!Q !Cp7>NGf}y{^0f/*=?!7 Rbňopٟڔ/P,n-=zpU;T 9 ӰapoC I\tݻwB!xnrzذav7c(߶m~jbνyup^oDÆᚍ5jٲ%r?䈭v U[]Bo #99رc'NhѢ}6b:zNߦC=Ŀ5Z[ƍuGpJUИz4owyi )6D`֖]\_%-~%(j`6{5[vPzNqzsXacqSyv>,S*}QGNaLhԍ$~JR0,4~t8qk!D䔒aDioo9'\bB@Qr޽=A8\"BA9W7۷A-.b5jԨ]3rPk<۶mO `Z/^4k׮6I ;wί) 38 E"2F2"J^reǎt!._~=>WY͚5[f ,Yŋdy/|x=ݙ3g YMnMriii{?[|.7w\L^A{ϭҮ];4&q+ҥKa6#= =H!d*; C pY ݪnz˖-^:2֍԰*|{hy/z&l={Ɂ"##?N>n:T` ^3xb\K._ܺu ѩS'tm5$3}tATF'΅A`/փӢPLvz37-?G!~7X4A:. qeFxuԵkW…к!/ id?}h"FBxXСCQt v(P"aշ~" 1lz-y,Aw߱H7˟={d ܹ3bJ.Y8jyL:ufB ,w5Y pB=(p6MQR^}U JFfY'NO>GF,>~_~gTv_o7Ń7Ϲ!}Q^|EjSxx8{0;&:-ثW/zlo>ٟ9** r8o&2G7o؂^4]Zhc4[nO»*U߆;Aa'[MʇWŷG{"fK.H3 YVCڄrȟ BB=!"gu}3^Ӷ#Ph{S5km޿r#!6fNQZً75,i4+]".: *rbo=vAU%̴}4yunMZcZO^(9vP(ɫTW5j&=[ӔeX:߸~4(_ (T0d_y,\qƤ Qp- Qg2vጦKOyJm'8NERᲒܧZ/m^$-lId!5{NQZMEBݶzH!2m}#D^:S_:R)w3u:S' :FVDʫbvd9`9v8c ۙS8T4AA%%%eʔ)RiӦcǎ%$ p8}$9^j={J^L9kN*.b=z)ů %~:f޿B|*/H(jWl+qn>z\3ZL0nZSrRbS85z+6kiA&.8B^aj?Ao޳ӸmeNZx$ve N&MAA&sa>sJ4k r#ʹA' o:25ji2ڮ^]drɖ %Kl6_H!aeU*8GYhzUhڹ 6RFzVRԪN&''  HHDaU0d(=vNr8I2䠟sIOQq<'K#K(kW5m).._VC]|q{M>8Dw Ů_<7pL]?tC q'YWnAQ뿵]jnlT4;N{zW?^i޽rhޮٌH3-~x +WW5oj՞tϴ(5L ̀~ۯ^NC!  Q0xi2 z{/ݰbѮo-Gfb;Vr* ' 8ܵ(Ü U戏ϼv-돭Zu5{)kdruVsvC9\yaޖ#3^eKCõ=j:S%;)+% c+B !dig_T5j-VCE#RɩT!o}1۬`lrF8j@ï   HHz qAϽ&]hXr0-rܢK˥Z-ε>l2`Y2|PphܰF"88-m=q'!pDyJ]1ڽ`'v7/;䧢bΉzU#鎢Fߔ)'a7mۨ_DHJu:iD]_P3FYy_c1dNAHπ,WԪÇ_`ORQ@|NAAǶ=!քG9deOY1ۗۆU>0 )ا|Dԭg+?N(~iIy<]eQeU-+Dr֠#9ɑh9q|p|SE?З$EڡoOfiN*W9RR!!woITj^lF۳|EZWO#v֎Y-nxAA$ Ef3dgU6j&j7հ`q. WkɞG[2 UonP6Vֶ( H=xHY67ڛ 2 wff$PZrJt{nemd9r_Jl ߺmb0δ",B?{3]@qPIЋ=$  @CNA0uCG1-_3S..-ܷtIS\͖|`Ȁ M^׌6K=v8YҰrQI#Jd sد_AjR4}_H#,!Jv:_4/!ڵ}ido K]s9RSeekWjzq&  HHPt)\igd($\Q KQɡ~#I8N7|#%|/}/TPg a3n9zH]q'WnP"*6,l5#]SIl /B2eP|Xxяg˒Ghza$R;zN}[7,[+U#8QAAAB V iҺGY KQ*:GBJCBWI#"O<)m/:&NbXN47p-MlW.ٮ]1ڧ2BYRVLЋgO LeZ ׌SWvBQP:A7e& ,cVWil)V5oQ!hCX^ۥ \`m8i`p֖ N 0D@J|JQӔźINAA$ "?)8[߲nrLbԖJ-$Ze F8;3W/eۮNihqRt+hTܶnȤTZ -$R)V-Iݬo2ΩCFM2Ɋ^\4AAAB ,"RHTtxC|V"8\n޿ ]8mq+dr6d*(j~Xie%XbZ]1%wɤ!aK?/孉昃nři&-C'nёJAA$ "6d Qd9)d/;!* K-[VVn@2VN+n(`w7#~.+xJil #5%y+ų,N >N^dZBAA&SUqrFWoׁCǰ%`YT٠/* AAAB <^ZQ%'9VQ Cqu>;F6:vϤvdA!(4LYuSprҧsHUqٙS(GO3^|Y"h-ESn83fl%~MIHH5kX.11qܹfի*ɓK.:*Zqd̙3f_iqa}[N=? ixSٸbGZ,d腌š.}+{ih{{J^$*ڥσπrZ]vBRI2>S`;-N\Ưߧ} UDzؙ6uyߟҐ#}z˖-"_}UΝ+Vޣrp T*s{T-* 0CJM6a-ewϣm;c0 sͰμ& 2]bgϞ=ÇR!!!SN4 gΜy4hPJʕv{Ϲsf̘/VZzjJE6j3fLʕ?~?7(\O7 [jtYVDWl io:D@[2- ݨ{皳 n*gv_K}mtpmQ2^mUp'T ix443L=3VQB(9ӝV+ pZ|D unB.hqvL%Μb|@1쟵+l"\̍rr9d ;k&Itԭ[w*Th&.ɴp}jժ9bŊƍsZ߿?V+}_>(ץ  qu#/Z ˛4i2vXF<WKuͥ_^g}644#.1bĈ}B#EEEW/}vzzL&SΨQJȞ >>~޼yN0kڴ)W\v<DZn.O?0U~{.(((Uo޼9wܳg͛7:tRy۷o>}Uد+Wܼy3Yݻw/sիi@~׸8ѨV= vڅK\ܮTRO=ȕ6H_VR5zw0aBRRҭ[7W[t8f͚P6a(b٬Ynݺ"m^t) (229ڵ׏d௿aẅ́4d< nܸ6LII 8=>ƄIGÁgff9s:|_/_ 4@w #}˗a_᭔8x2iʔ)kf{=LQv^t 6خ];d i^`wq5JLX]m~s[oYjXfɸ<MϚʼՌ}R%WR4۟a=vNµYo?/>omߪu畔1NlQ:a=ǭ9l]. U #NK2Z>Q7zad~M#&gd52@yp| Ǽ$Qo$ɭ]B7s6mų-l%˴?lhV6.d.MvRD/й^m׿U ]@ !ME Tj3i/,Y)3VGbZh . 0#Dŋ݆eRO>Ճ`B iȪ^㸬 !EA e4s4Lm~Z ͕4MY*g"("-Gz>x8|9=rⳗUF="H7JjRKe]2tלbN0`$.JH7J`U:uj={&iҁkΝ W.ȑ#mڴ9|e\OTL޻woؒ?#Yj(^RԠƕWR4[~M`whZYJ],a/YtQy{=x͚5_%eGGE&k<2BΝ{{U9Yy<`ၰן<=_Sr1g>Q7z.0QxayXpӹ4LSFVl׿4:-獟KN~c8x9v^7Łp3o|)C:[*(1kjm#4n3&8Ky'3svo(|ߝ)(\N T'b9X7¿V[9?sUz'8[E&gz[p#ZOzi5=2^J">#ꯇ'ִ~;='ﻳמZtws:v%L@D/?[ˆ_M> jT5 MKD ' } [F-rrr/ܸ=ny $ɛyAj-wH䭥U䜘|{V]%WI3$DicG t!AE\"q``IT-uƍC" DvKK˳gJ7y"J K<#Ȁ֭[$6旘Q*ŇL%7JN1;)WJPܶm-ɖd%JK5jԐ<&qt+.&mSGӷo_{լYsĉK-ZПAǛ(Jb^%OInҽm"3zܵkvQ፷>>\tNNκudG WVҍRY\6MM˲2}]5Zd$LMM=}ݻ6l(qZ7[ڣׯ/s/o{W\R7xC} k׮rη-RxC?)(,/H;}]rIZEV= 6f%fu_PD/n~Yfc廛˭>;>UGÆլX)ҋWǢ|y̅GU+dUG_3s l:bխ̞tb.Hw*R>9&9`xoIG>T1IN+KT-veg!N~~K]A5e6l xM|]nܽZ:Y|eڬc}^&_ɕ邴tD&o#vm]*]FݹA6MV}h|?bMGLZN/g#AgrF#_ez7r\p]xaFF9uv/lhh`cWE= #GN0aɒ%CtET~E,%U` 9M %=8p'OPqKk)DMKm_l !w}ܹjNڷo0/di]rJ*EH#Ƭ3I%<{}`ӛC.q43㗚~ۥuڛk.%eigj\] IԵԘ텅y9ymU[t{q^zqKh~AԢ$@hd ]/[D&I;WT5t xQ'-80i!jֶ-?dTN` ɿ?W9^(_27u\u"Jc/!Gٽ~5#C*Aǒmt_nȿ#E~"oܸqoVŇ[u$iXZZ=zTkI+WLHH8vdoo^2:?VӫV:f/ر㦕H_`={~M6͜9SW: r>ӭ:{))ϷnݪTa)4,XWWWJť\3goov֭Ò[W7P5XE? [lOT~MAAA*uiFtΪx.>Wy##F/ޤKed[dUǏ-zE2}֔d5q4Xy:K,Ť t ۮPrVzL%sp֤V˪3%Tד kqK_t1*hlhWNr ;gr'XjUVFtkX03R-5@2Q7,=v T­P_]:-91ꇳ \qF9)<<<˗T)>sݬ`OOO]Ç}}}w-MYׯ_i222bbb:wܰaڵkH*Iݒr?S@R*$i/_NIq\ŋeYFCN:5$$ٳH^TK]lWttVDQFEEYt~m۶-rDtvvU;wGVTolԭ: vɍJ!JߤIWnٲEv:'OB$RduZvqcː[)j?~KSe;::Txr=x{X\ʏP72d0/V)'ΖM\m-.=q5cogo'f5ˬi^YZdsD{TZ((M%mjU3,5Fu_##߰DM#ϗ3km!EvH;ozXk‹\lZ\zmoˉu,՝3rGEnߥsrӹ~2*i =z`;kۻYf .߿?i>:ydcccu6x֭׮]+ i[YGvZvkD;wJ=VVVEo>>>Fbe{%LJ񑴟~)33k׮O>)5klo˫e˖չyfT2Wt ل+W_N:r% uԩsғ3f̐ޖ/KKGP^/z%mХ#iɓ'%I-RQ+faa!+6Ket;ə)IS 4XxqBBtsy)S̙3G%Vm۶Wƍ}Y*%ܴil*W?s_;zc KE-Z$ͭ2W\?ZhK~K'Ϟ=/Uquq[ԶJt,s>,ִ45 /6~YyEAffǺiyBc0?ׅ὾>6{5 MTjV]GKu/ʻuJTnU˶حAWR-?/ +t:ul%3G\ڠwK#7 6=NkRq]JHu1O̹V|]=ǚ>d_lZbW"kYkw^)$^E7i5nW53IʭhYORkvr|dzSHA@lkmnly]a51 ?:_4hP 4@&Eahh8zhQǎԩSuWF yӯJ$!Y?^$jժI^nݾ}\\\V-7Xbd+B/;頠I666Lcj%eI󒒒$B{갧$+"YTkllܬY3y_Nr}]~~l#mq^h͚5iiimڴӧJ$IJUϜ9s˖-˓ԭI"m5iC&t>7FU)yR%-o }qéCmyѯK'do9,MoT 'V}TJ|n/}!5x=bL ]tkČ$r[i[Tx{5m9qIn^rhz =ɥo=@ԳsjAzzOMvXhh6߁K VEN^K]~<E(>A E\ti߾}IIIӧOWgPyxccc &>eJ':߂#xqjSIn_hi 4R4@@@H)A E HhR4@@H)A E Hhi  < )))999tEiƆ  IJJvuu5337Jʊ^7qj7@d'''Rtyg ) #E4KK/R4) H Eihi %99Nܯ+???!!i ǎ^=f̘K[|ǎ/fwc E\\\k_2n877viڻӆYf?@|!E߻koo-,,LLLzqc@%qj7OzVj'Iaaa P/͙3g̘1C yWvܩ[D^֭=z×,Y!999RmddgڴivRӫW T>@wtrr &MںukAAALL,.լ,ҥKC e`4@$J[npp_|!k ܰaDYww'OXjӦMG?~ي+.]*y300(Qnoo/iYʗ/_.a{رRgYZZΘ1#))icǎ24Zj.\h-ߥmaaaFFFua?`4@obӧO/]V$NKɡCڴiؼyҋݻwޞ5k8p  qW򰉉Ir gggU\,پz]v_QFΝgJ?LKT.i /^u[[[h+jժVމ+o̴4'''*w5UmZTJWD&6mt҂3goOn׮GR4pXή]ŷsppzjyiZ XtY111h4%oLwַԓ~fD #GH/ӗ/_e@H:th߾} p6nx…+WY[[Kyݺuo~Y0''G\Z'NLJ4Qzzz._ڵkAAA۶mSǜW^ݬY3yk֬񱲲bn [5jhĈ[lYjFS zڏ?877W2m~TA-[6mڴ*ŗ^;88Dn-Z4i$[[[{W ƌ#{.ȷ#jz]t۲u[@ثG8ۚo] ONN144t627޴ǎ}yrrr~qO;/G6߯lQzVmW=w$5te+V;~"+3˹4--`Ƭْphޔ>痽W^Ζ]ʖbbc?z,>(]K蕸bׯ{Ru˛'33s˯~R ߫-]2[sמCGHTNM|GI=jM|K|Rr/[ p4K@>udIF}<'56.j:t^۸aEIM{qIѴoTDݸQC)y˫_3ך5͵q۟w)mڤ9|%ΘFFv:}F}ЪE3gɏ`ƍ^00,w}Y;vxvQW.]jW7(Hߠ}kw IAx!/@ELl-[K:vx\iafukɣ^Zj՜T,SK5Y`ǯV|bZqnݪeaAK|wJ̐-jz'<9 ~D5b]7nڜ]t}O9&f|tZ4IWI /Xg{T_Ѫ>`j_ $nk{1RtLDX)o=o`jK<5UM8 D9')9 TQWݸCC'Y]=w;uƬuitZZ$I3eoVjZ[I))ԨaĤG>":ķ6ٞ8y6;AiK >3n-uw&q!ޜܦuloZZal`pHh7k,.>.|w߮R-;`٣N몡.E5W H?C_(lTfmإp3Vݻ=e+W~lūehhb/\Tou t/Y"6...>>f׮Uk`~=_Еd*5be7kIKrcڵ<=TPuK]ZDqKKKwڏT2..% e9\4¢y3ߏ/%y4n`G|XKuU_}ٹ՜jvԱ/YjryUip|X2z}zVVVS!!![h7nP'?1o"Q+Ʀ[IEyuE+9I5BT;UpAkb3Bz޼yB Դ~-44TRR3k,yOn޼Úm1Ø1c迂ɓ'-ׯ˓ܫtt*++̦MFu8kbY)ɡVc~*ۓ yi퍾c++-On?i#&͂? *vV̈́§ {Ƌy[H+,jxi9܍Ջίq>>~ѢE$JUUUgΜ);ׯiұ΂ih'&{رG~W]v>?MDDmi)q+ $Ob[YYT.4hI&v٣/;dF99'Nl!~ү'=M:{ԩSMLLHoܸq޽a5474?W5%avpk qc`Ҥ3>ʴe2rs`r9aC#~ ?H/(s1bG}EM?$݁^6RS|^Uj7cמ+H3χGKG{ ' IrIn vEY)Ҥ,eHoȑ0vR܊Ug$/N+ JJII)W7MC JIJn`/Z9{BRbYVk,T9cOr_ˆ9ټݸ]+xc?Mff&~>>|^^^j^dd~~UvC J+Wܹ3}uss? fϞ$h߾=I;ڞCҍ>}iʍ*** QQQd>Ã>XYYFfj)q+/^ iУwC|י"PXL|  33VJl Z m0{1ǚrʴi @ lmmi#4x`}C2J7O2Jj؁s*[oq,_{O%85^jO2}T[I.dx'bSe?7=TNiu䴔dlzpe1 T2FyI]㼵UPU|1BӸcrmmow'^=/vyc<+22bmllZߋ!׻wOXYY 4hɫI zbRw3TUU%$$0bt&;3\PP`"к? 3_YYƔًFjUET؂X(#%fOt6,g$I)/P/Kx|^]ߠ&ϽXR#E嬆9hg}U{H7Tq7RQn]ESJ%A%*J_Qjw*no9^Zs;_G"`^vZSзo_ǎc4U}/^AX|9$P__OXp{Ȑ!;vmIgvڂ EIl֭,Z$S-[}h;˗/WVV>?42wܳgcǒ}I[XXY!MΫf_ UJO-%餧rj|{NGw*2Ё/ qWOtu7O:B Hv0RÂz5(F[vmuEyYjSt|gvY71VVl%5TשxZhn :n83%E+za!i +y(Fx ~׬oST];d'c<)0# +rsslv\\\@@awH~%nWUz#8ql;B67n722/疁wBw[q.HI 6AE3_v iB ! @HO}O? U^lOqqq_|ENN &k(HSS˗hfffӦMsrr2ԩS.]ڣGCQdΝ;Ϟ=[II]f a۶mtÙ3g~2xyI-{GO="pN7II ߄=9G IajfYP 甏=6Ye/ª́ɵƵ}WC+ ӎp+hD'=vz Fff&hffu/zW~~~VڹseN/]k.ғ''KIB?~xʕ~sss?>)ٳg3 lmm]]]郴4eK JߟTllФ iHsaaS2obO>Lݻ3ii7fо}҇;'# 麺+WL6*3xVLْܥPbBZOOܜ\[[˴ ))7ŋv\Iqtt  NC!vgpJGb.󓺂,_7&b }oY. APHSz/K M(4R N+ (}8*mWux1`G=j_M0}ګhIt5P=2Or8&.jǛV՝+廤ߕ6lXnH'ϛ7z߾}ڤIs &&&22`oo/]MTHH:%AH"bTT B999O}4ꊊ ɴIb3ԩSCdgg;v6Mj&ygSRR'Nd~jhhAz泥Qn~EVW5oϫkٍ$};#Y #}#`OuqcPK%҂Lp3<OIlfeZLvIWÑ,FT0.e[h(gWY-o~GC?9Ո] Mn󉏏gΜIB@*dɒ<_]۷/icǎ1BZFFfȐ!>>>ǏM|rJuzҙ666 pEooo?-iEEEsssKQ)ڵk ,h)sƏ?޾};FPYk))Yfx~E>}Hʒ}Ic[XXBZRRrܸq65!r޽a``ЩS" I֠$m壣 MeRmn'Ƶ_{;aOHZIM7CB:f:U9O ͭt4V}R w'y$|E/$\a1 R'k3Ç?*+0\kS X@H_!**TWW4hА!C`wK0gr-R0! @H4! @H4! @H4! 4! @H4L@H4! @H0! @H4! @H4! @H4! 4! @H4L@H4! @H0! @H4! @HejjkR>I)i'5̲ZALd+*`x3SZVᴫ)(*HgMcc#:B ~rKWpCZF֒kKJȃ_nwOL|Śg.OXշyРE_~C[)ǃG,]](?jԲk'ap~'+ovɳ?/|~q=$0l@{/MMَ|^is\s">ϟnHM?jFξݰ}ؠ~4 5|Wތquvp,jgm)TCK 6x!38M'n^JSC]ZϘ(!=vP-vm7&>qؠ-}IJITU4XPV19EBR&'.!yDԥcF ܿJqї߬+#C}~ˮݻN)/^֜9e9tպǵwuϫm1tE} P~x5*&^FFz~z vȉʪ*#Y&P-?k<_KWo>znܱݴc"~9kZJV]]dudFܽɷ+>ϴו\RzR ߯Oϭ8R< ynAaeuVBR*(riVgfM% 0Uw'^R7|9{Bn]FHS2g˾{#Cevo]KmiOsS3F љ_2KzF ɳO\{[= Aq/VٴfP)se55._{"ӭKIFJJJ^ xYT\ԸpL'[A̟3_ì\:pY9v6V_,DlsZi#mY:s3SOrguuu?6"Y=:E%JJ?ianz^ mo /?sS:t^v/9VZJ2~i/ôsQ饵g&d&U&yy|\ ErRzZj-i˼ds+YV]{58VױkٍM<jhlk3+؂چF/ ãT_9v_HGWVk>HOw窾a{Tu58Vڿ<RE]2j\yUFee/9LT_/k8co+m*qô*9i^ =\4Ӝ_Z[hk3i߾G'ܙTU;[ZzfeUAk=4q\=D'SӤdNLJ:tn$N@'G4}Xyy9э Xrlڹg:%%E˾ٰc**ʧ~<}ajbWܶ$Z)GC w>w隺 P+hH"-#>xs֥#RBԚ4j/CA[Ktu:w%%7lSQYEzfV. &F4 1Q. f4\c$-oEY`TU==:Qvݺv[ jJ*nު }ؐUҜPDtr&' ,XJ$i-<*1[K՜^ SR)ڹՐ +#Չ bej'!19gLA/#c,-l,,jiYqLVV W>?;)%UOWYTK͡ໍ;I8 gNG{utHtmztPޟ6q>{1ۋٽ-o̰*c5HK?2;܅5#s zRO0Pot('Of}q#FPH?(sS%|T2P?$jȼR%݊9|xIM]ٍM~}H/l(GK,!8uf!+eD-M@|Ɩ<,O5fB5!la2#a;;v7$+~FLlzs3Ǝ II'&m8t:!?C^(&.z ]C݃NG}=t056z_ߦznٵa¹1qQ3r)\7Y|ة]H^DI Ѻ|}8{X`= 8#nک "];Ϙ2>=IF)o3܎ּYrjDnd?mԫi̚2~؞CjρdSǫ^FVr߱#IS}r)uӨGڌF-?'}l[w 9E#=|0y۵Rhrn*#yW~:xt͞Fѭ;HHGp8.gyі_~!eحkGs2cdoKoIRэ4C%ӁB c#د7m-Y8Qko<$w-W43;3Zc*,#wt;0xڤ1v6At!-EMM?xx43-ȃHcmy9)!thB$;^ܔܜybsc#dr3d!4<b^R2 sSR}FD&"(#+cnjLc@\BO?hKJ54I WRR\}Ֆ4fp@$59Zht4pB )C5U'{lH=R濞}ܨa!M\;5"4eNm-e4Zd>^sfL:q4_QÖ,3rfLǎ:}؁}{1eo6¹3I*+) 25'~aۻ:q!Q 4 ~ޑ[JyEŹx}bIl6B )hFwڅ0 ΜYmj}؋H~ 66R4Fz;;/d_HM\0wOEбN;BKSKIP[ PWSfdb`& 7FOYlߙ]jT9j)>(5TQV&xqF#5}ٍ;/$Y ҥ͹SBBZRRCQJK80^jəhrf97!uJPU6:뫒,RKb kp n'/`7%B{k2R}܍5t%?gnTГ2Os I/}Saіwau!+@Y-Bg9)#5*-R[GYX\Ãԫ:t2PSI(i%֕=vsq07XSS{7gCS'j"?@K˚ 42ҭwԌ]ԜG԰(6=~ &Aݒԁ)H\D~aaKEn竸#5RRJJ.H6o5JhZRO[\qg-m:s۹8Κ6P jəuwO͓5۹455U0{:;PHtg,KR˗ܡ]]]9{^Ch^Ҙ>#vvֽZɐ\zGw7J'¢z¢KQ鶔sKdoCGe+0͘]7%zFU] [Z< [2Ƨ@?n>svd4K sfG{'t8 0iGj yb ;M3щ\DyE؍m)` |^ ĤT-Y8(3WL\ۮ[^R*KCM›O*[uPDANPAT7]34zE%̠i"E(p?sYuuUi|e~ݙeɩi#y%%eKWQ &a=V}]O%A; +Kh$&'NrqI Mb_m,-+gIib3ic'_n)l)h4`PeiW z8546RLLMy1;7OR@‚~{|v~M=q*74pI+*(#3eN^>d k2iY}迹ɔDgſSixþk7)8ۜJ<+IX85ӣ3D!_g;^D`=bG۾C:X?n_WH0mΛۘb2Аl ۛ>< {QYYS)V+, >{Aǂ`H0΃پ E$c)Bݺk,EgLlTT~eu}C?_ʝ\N{928ē'fu3}QY,w T(l]_;f&?lJjzDNJ@;]RZ3 TeK &vwT2߸5޶lvEݡ'bW٪+2|܊2R] Uu%5y?dJ[GINVlD^Z` EW#VoO47\d@[]G=xSAmE\Q1XHRoy8~ȣ5 BP_/>)\|w{_ֺGVv.y?+,VNtLl.ʸƤԴ/i؍VQɩMf\,= iWK9t*%%Qݘ44\QY4uh6PK@^~![ zzvWb3ãw)d[iiO>rB|:k*DA$5ӄHmWUQ }Ltc[:$tK%(vҼ١%' uʪ*j7KLK"?Dwpƥ$3Scr57/@_]3jR"S4 @Q3|6Ϲ=zܕWٵSsC~W UY9/'wϲ:\nH7$ZsIEQ1q401&խij+FZ|ʍ[%iWf3khK!.#N2r"Fv-8y %616d0+H),kjkSJo @Em{v}=w֧Q̡ũԴ ݙkDqma&y3鿉Q}}}Ff*(?z_ sO5cojbįs( }yiYX"sSꨒ.v-9˷Zj#E$9\kY{ Ї*F{1**I>H)i ӣ[w)/XtӁD\̪`Yj6O>*_y_Ju'Ƶ'([-O7FTv5F$tr\ 3օ,4R/D9Q2QS`z\i-7*̛-ѡym^N%BS/56/X+JluV=g\Y~bqˣP\NZ#PO>{_EFQz'k£bP#)9 b KW]Mz_F#}UTlϤgs8vE,8:s)e& ӹfcݗܙ%wtsA(څjO&5X\bbߺ\ʙI YYq^&F|W#vL_V \91ʘҖ>#vֽfTNUXT,INIs捍;wp{W˫B_U?l^#-L-uhd~cGk4ussőD؍mt,>01)T4-Y8Q'O y7Ww2s?=p.gGn;+FԶ0 Z;y ie.+)*gW=ީs )(,*,*e.fWXƳ*F_6H40Sh&o~PV{;(}VTT![w5y LѢŪc4«#9TQV8gBJh~R=DK}wѯ ml4$AiD2a/(NP \{*"':<_mEWw5xʾp]7UƦq D6L) ~xWogΙ ܸrö=$GN  >Epr^lsZoczF;zmu^=q$8̵ nw2,B[fH|M&"j.6>\YUE1F$rzUuX]@P@žuFgsj}ʡ%5  sR(IhHʓJ ņ:%9iUdžk*Tf~z9be/ ELRjj鳅kSrܰrWHCg~2jk"j3uȼ䒚gyj։/"Q{nU/rc =`Z^F*WHEZIK>L=e9& NJ]U&s)=*>)?\BDt`b(8fIܜ)dtmʻ_P_PϿqqBEV`]8;Qr 亝dsx`^Fb7:WHx+Zj\K*y #_M>NyEyBEPo [fZETL|dt&sՏi/ ISgDΙ Wv;o՛ Q(C!PȘmxt`'Hn͟גHeYV؎M Z- ))'ϸ>~>Y}=]2<[4EW:tHNMg`>PUUU4P{6%̄2ab7Cֳ+iKxe-Yɩ˥gf|m̫[,MzN>nPؚ2.Jz/ i,yr"9y]>c>bFGeǜ|z<?zV7gn4 f2m~k7@I\iT364`1kFOҠ.+#˼x`^|n+y~$[Hb!3𡰩kL(SY*fb[OmۜpN}ZڵSPzhȀ/^uoB"$/`OHJJwu4v>ܡ-w*>+{TU(&>2ShϚ6Q\pɶAŜx=٠v {ag#s'v4V=inCdF9}~̵qwoI{C5Rwli''""`U^r4Mni)rCi퍝`j\oKU*ko;^bu;ݡǟ(Np3bP żLJ8$3 dko|Pf+ȴROYw(GT!Bz@摨؄n/`%p|3Q@na22]:>B܋tAA|\DΝ?UWSWȜٹ˿dd7~pQ _zzzv175!p3 ާ=KKIEEsg1d+D6i- O,)!ٷ'Кv[;e_O&F͛\غ %La%@Ji-44{97KYYu7i慟;ϐr;'N_S*˷̈́YN^/[ ? zcf ,с ~HGFmr4ඔsK?WYg;vuR޽̼կO/(Q" :Ι1knP#Y[ և #H`>=b:vLϘ[E7CRy"SͿY9ac~-Yɩd f1ĆZZք$먪Nrg8RO~_+/٣wϮ}ȍ ]neșHc҆x*kb'xę)f]HKWG<" 0x/>p-(,*`tU_߶ΞGPcG )TՕֲUkٻS*xuև ɉϗ)n|?p7{Nb~oF")@:ӭKG&7o ƍɩ;q_cgT"h;o&>19+;wΌɂ>U91wXYt[w NݎwN~Ao'Q!''kci!xs8CQ$%> coK[ÌvC ߳g'|

            stylesheet ) && file_exists( get_theme_root().'/'. $current_theme->stylesheet .'/local_pb_lang' ) ) load_plugin_textdomain( 'profile-builder', false, basename( dirname( __FILE__ ) ).'/../../themes/'.$current_theme->stylesheet.'/local_pb_lang' ); else load_plugin_textdomain( 'profile-builder', false, basename(dirname(__FILE__)) . '/translation/' ); } add_action('init', 'wppb_init_translation', 8); /** * Required files * * */ include_once(WPPB_PLUGIN_DIR . '/assets/lib/wck-api/wordpress-creation-kit.php'); include_once(WPPB_PLUGIN_DIR . '/features/upgrades/upgrades.php'); include_once(WPPB_PLUGIN_DIR . '/features/functions.php'); include_once(WPPB_PLUGIN_DIR . '/admin/admin-functions.php'); include_once(WPPB_PLUGIN_DIR . '/admin/basic-info.php'); include_once(WPPB_PLUGIN_DIR . '/admin/general-settings.php'); include_once(WPPB_PLUGIN_DIR . '/admin/admin-bar.php'); include_once(WPPB_PLUGIN_DIR . '/admin/private-website.php'); include_once(WPPB_PLUGIN_DIR . '/admin/manage-fields.php'); include_once(WPPB_PLUGIN_DIR . '/admin/pms-cross-promotion.php'); //include_once(WPPB_PLUGIN_DIR . '/admin/feedback.php');//removed in version 2.9.7 include_once(WPPB_PLUGIN_DIR . '/features/email-confirmation/email-confirmation.php'); include_once(WPPB_PLUGIN_DIR . '/features/email-confirmation/class-email-confirmation.php'); if (file_exists(WPPB_PLUGIN_DIR . '/features/admin-approval/admin-approval.php')) { include_once(WPPB_PLUGIN_DIR . '/features/admin-approval/admin-approval.php'); include_once(WPPB_PLUGIN_DIR . '/features/admin-approval/class-admin-approval.php'); } if ( wppb_conditional_fields_exists() ) { include_once(WPPB_PLUGIN_DIR . '/features/conditional-fields/conditional-fields.php'); } include_once(WPPB_PLUGIN_DIR . '/features/login-widget/login-widget.php'); include_once(WPPB_PLUGIN_DIR . '/features/roles-editor/roles-editor.php'); include_once(WPPB_PLUGIN_DIR . '/features/content-restriction/content-restriction.php'); if (file_exists(WPPB_PLUGIN_DIR . '/update/update-checker.php')) { include_once(WPPB_PLUGIN_DIR . '/update/update-checker.php'); include_once(WPPB_PLUGIN_DIR . '/admin/register-version.php'); } if (file_exists(WPPB_PLUGIN_DIR . '/modules/modules.php')) { include_once(WPPB_PLUGIN_DIR . '/modules/modules.php'); include_once(WPPB_PLUGIN_DIR . '/modules/repeater-field/repeater-module.php'); include_once(WPPB_PLUGIN_DIR . '/modules/custom-redirects/custom-redirects.php'); include_once(WPPB_PLUGIN_DIR . '/modules/email-customizer/email-customizer.php'); include_once(WPPB_PLUGIN_DIR . '/modules/multiple-forms/multiple-forms.php'); include_once(WPPB_PLUGIN_DIR . '/modules/user-listing/userlisting.php'); $wppb_module_settings = get_option('wppb_module_settings'); if (isset($wppb_module_settings['wppb_userListing']) && ($wppb_module_settings['wppb_userListing'] == 'show')) { add_shortcode('wppb-list-users', 'wppb_user_listing_shortcode'); } else add_shortcode('wppb-list-users', 'wppb_list_all_users_display_error'); $wppb_email_customizer_activate = 'hide'; if ( ( !empty( $wppb_module_settings['wppb_emailCustomizer'] ) && $wppb_module_settings['wppb_emailCustomizer'] == 'show' ) || ( !empty( $wppb_module_settings['wppb_emailCustomizerAdmin'] ) && $wppb_module_settings['wppb_emailCustomizerAdmin'] == 'show' ) ) $wppb_email_customizer_activate = 'show'; if ( $wppb_email_customizer_activate == 'show') include_once(WPPB_PLUGIN_DIR . '/modules/email-customizer/admin-email-customizer.php'); if ( $wppb_email_customizer_activate == 'show' ) include_once(WPPB_PLUGIN_DIR . '/modules/email-customizer/user-email-customizer.php'); } include_once(WPPB_PLUGIN_DIR . '/admin/add-ons.php'); include_once(WPPB_PLUGIN_DIR . '/assets/misc/plugin-compatibilities.php'); /* added recaptcha and user role field since version 2.6.2 */ include_once(WPPB_PLUGIN_DIR . '/front-end/default-fields/recaptcha/recaptcha.php'); //need to load this here for displaying reCAPTCHA on Login and Recover Password forms //Elementor Content Restriction global $content_restriction_activated; if ( $content_restriction_activated == 'yes' && did_action( 'elementor/loaded' ) ) { if( file_exists( WPPB_PLUGIN_DIR . 'features/content-restriction/class-elementor-content-restriction.php' ) ) include_once WPPB_PLUGIN_DIR . 'features/content-restriction/class-elementor-content-restriction.php'; } /** * Check for updates * * */ if (file_exists(WPPB_PLUGIN_DIR . '/update/update-checker.php')) { if (file_exists(WPPB_PLUGIN_DIR . '/modules/modules.php')) { $localSerial = get_option('wppb_profile_builder_pro_serial'); $wppb_update = new wppb_PluginUpdateChecker('http://updatemetadata.cozmoslabs.com/?localSerialNumber=' . $localSerial . '&uniqueproduct=CLPBP', __FILE__, 'profile-builder-pro-update'); } else { $localSerial = get_option('wppb_profile_builder_hobbyist_serial'); $wppb_update = new wppb_PluginUpdateChecker('http://updatemetadata.cozmoslabs.com/?localSerialNumber=' . $localSerial . '&uniqueproduct=CLPBH', __FILE__, 'profile-builder-hobbyist-update'); } } // these settings are important, so besides running them on page load, we also need to do a check on plugin activation add_action('init', 'wppb_generate_default_settings_defaults'); //prepoulate general settings add_action('init', 'wppb_prepopulate_fields'); //prepopulate manage fields list } } //end wppb_free_plugin_init add_action( 'plugins_loaded', 'wppb_free_plugin_init' ); if (file_exists( plugin_dir_path(__FILE__) . '/front-end/extra-fields/upload/upload_helper_functions.php')) include_once( plugin_dir_path(__FILE__) . '/front-end/extra-fields/upload/upload_helper_functions.php'); /* add a redirect when plugin is activated */ if( !function_exists( 'wppb_activate_plugin_redirect' ) ){ function wppb_activate_plugin_redirect( $plugin ) { if( $plugin == plugin_basename( __FILE__ ) ) { exit( wp_redirect( admin_url( 'admin.php?page=profile-builder-basic-info' ) ) ); } } add_action( 'activated_plugin', 'wppb_activate_plugin_redirect' ); } translation/profile-builder-hu_HU.po000066600000454233152141651160013555 0ustar00# Translation of Profile Builder in Hungarian # This file is distributed under the same license as the Profile Builder package. msgid "" msgstr "" "PO-Revision-Date: 2017-04-12 05:30:46+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: GlotPress/0.1\n" "Project-Id-Version: Profile Builder\n" #: admin/manage-fields.php:125 msgid "Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yy" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:244 msgid "Individual redirects defined in shortcodes; redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects." msgstr "" #: admin/manage-fields.php:1214 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." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:240 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "" #: admin/register-version.php:251 msgid "

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            " msgstr "" #: admin/register-version.php:246 msgid "

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            " msgstr "" #: front-end/recover.php:151 msgid "You are already logged in. You can change your password on the edit profile form." msgstr "" #: front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "" #: features/functions.php:909 msgid "

            You can visit your site at " msgstr "" #: features/functions.php:896 msgid "

            Also, you will be able to visit your site at " msgstr "" #: front-end/default-fields/blog-details/blog-details.php:138 msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network." msgstr "" #: front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "" #: front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "" #: front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "" #: modules/email-customizer/email-customizer.php:36 #: modules/user-listing/userlisting.php:118 msgid "Blog URL" msgstr "" #: admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "" #: admin/manage-fields.php:219 msgid "Blog Details" msgstr "" #: admin/pms-cross-promotion.php:239 msgid "Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "" #: features/email-confirmation/email-confirmation.php:578 msgid "Welcome to %1$s!


            Your username is:%2$s" msgstr "Üdvözlünk a(z) %1$s oldalon!


            A felhasználóneved:%2$s" #: modules/user-listing/userlisting.php:1303 msgid "View Map" msgstr "Térkép megtekintése" #: admin/add-ons.php:103 msgid "Available in Hobbyist and Pro Versions" msgstr "" #: admin/add-ons.php:105 msgid "Available in All Versions" msgstr "" #: admin/add-ons.php:148 msgid "Learn More" msgstr "" #: admin/basic-info.php:99 msgid "Timepicker" msgstr "" #: admin/basic-info.php:100 msgid "Colorpicker" msgstr "" #: admin/basic-info.php:103 msgid "Currency Select" msgstr "" #: admin/basic-info.php:109 msgid "Number" msgstr "" #: admin/basic-info.php:114 msgid "Validation" msgstr "" #: admin/basic-info.php:115 msgid "Map" msgstr "" #: admin/basic-info.php:116 msgid "HTML" msgstr "" #: admin/basic-info.php:162 modules/modules.php:117 msgid "Repeater Fields" msgstr "" #: admin/basic-info.php:163 msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role." msgstr "" #: admin/general-settings.php:62 msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "" #: admin/manage-fields.php:118 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count" msgstr "" #: admin/manage-fields.php:141 msgid "Show Currency Symbol" msgstr "" #: admin/manage-fields.php:141 msgid "Whether the currency symbol should be displayed after the currency name in the select option." msgstr "" #: admin/manage-fields.php:142 msgid "Show Post Type" msgstr "" #: admin/manage-fields.php:142 msgid "Posts from what post type will be displayed in the select." msgstr "" #: admin/manage-fields.php:143 msgid "Allowable Values" msgstr "" #: admin/manage-fields.php:143 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." msgstr "" #: admin/manage-fields.php:144 msgid "Error Message" msgstr "Hibaüzenet" #: admin/manage-fields.php:144 msgid "Set a custom error message that will be displayed to the user." msgstr "" #: admin/manage-fields.php:145 msgid "Time Format" msgstr "" #: admin/manage-fields.php:145 msgid "Specify the time format." msgstr "" #: admin/manage-fields.php:146 msgid "Google Maps API Key" msgstr "" #: admin/manage-fields.php:146 msgid "Enter your Google Maps API key ( Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used." msgstr "" #: admin/manage-fields.php:147 msgid "Default Latitude" msgstr "" #: admin/manage-fields.php:147 msgid "The latitude at which the map should be displayed when no pins are attached." msgstr "" #: admin/manage-fields.php:148 msgid "Default Longitude" msgstr "" #: admin/manage-fields.php:148 msgid "The longitude at which the map should be displayed when no pins are attached." msgstr "" #: admin/manage-fields.php:149 msgid "Default Zoom Level" msgstr "" #: admin/manage-fields.php:149 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "" #: admin/manage-fields.php:150 msgid "Map Height" msgstr "" #: admin/manage-fields.php:150 msgid "The height of the map." msgstr "" #: admin/manage-fields.php:152 msgid "HTML Content" msgstr "" #: admin/manage-fields.php:152 msgid "Add your HTML (or text) content" msgstr "" #: admin/manage-fields.php:153 msgid "Phone Format" msgstr "" #: admin/manage-fields.php:153 msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces." msgstr "" #: admin/manage-fields.php:153 msgid "Eg. (###) ###-####" msgstr "" #: admin/manage-fields.php:153 msgid "Empty field won't check for correct phone number." msgstr "" #: admin/manage-fields.php:154 msgid "Heading Tag" msgstr "" #: admin/manage-fields.php:154 msgid "Change heading field size on front-end forms" msgstr "" #: admin/manage-fields.php:155 msgid "Min Number Value" msgstr "" #: admin/manage-fields.php:155 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "" #: admin/manage-fields.php:155 msgid "Leave it empty for no min value" msgstr "" #: admin/manage-fields.php:156 msgid "Max Number Value" msgstr "" #: admin/manage-fields.php:156 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "" #: admin/manage-fields.php:156 msgid "Leave it empty for no max value" msgstr "" #: admin/manage-fields.php:157 msgid "Number Step Value" msgstr "" #: admin/manage-fields.php:157 msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal" msgstr "" #: admin/manage-fields.php:157 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "" #: admin/manage-fields.php:157 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)" msgstr "" #: admin/manage-fields.php:157 msgid "Leave it empty for no restriction" msgstr "" #: admin/manage-fields.php:561 msgid "Albania Lek" msgstr "" #: admin/manage-fields.php:562 msgid "Afghanistan Afghani" msgstr "" #: admin/manage-fields.php:563 msgid "Argentina Peso" msgstr "" #: admin/manage-fields.php:564 msgid "Aruba Guilder" msgstr "" #: admin/manage-fields.php:565 msgid "Australia Dollar" msgstr "" #: admin/manage-fields.php:566 msgid "Azerbaijan New Manat" msgstr "" #: admin/manage-fields.php:567 msgid "Bahamas Dollar" msgstr "" #: admin/manage-fields.php:568 msgid "Barbados Dollar" msgstr "" #: admin/manage-fields.php:569 msgid "Bangladeshi taka" msgstr "" #: admin/manage-fields.php:570 msgid "Belarus Ruble" msgstr "" #: admin/manage-fields.php:571 msgid "Belize Dollar" msgstr "" #: admin/manage-fields.php:572 msgid "Bermuda Dollar" msgstr "" #: admin/manage-fields.php:573 msgid "Bolivia Boliviano" msgstr "" #: admin/manage-fields.php:574 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "" #: admin/manage-fields.php:575 msgid "Botswana Pula" msgstr "" #: admin/manage-fields.php:576 msgid "Bulgaria Lev" msgstr "" #: admin/manage-fields.php:577 msgid "Brazil Real" msgstr "" #: admin/manage-fields.php:578 msgid "Brunei Darussalam Dollar" msgstr "" #: admin/manage-fields.php:579 msgid "Cambodia Riel" msgstr "" #: admin/manage-fields.php:580 msgid "Canada Dollar" msgstr "" #: admin/manage-fields.php:581 msgid "Cayman Islands Dollar" msgstr "" #: admin/manage-fields.php:582 msgid "Chile Peso" msgstr "" #: admin/manage-fields.php:583 msgid "China Yuan Renminbi" msgstr "" #: admin/manage-fields.php:584 msgid "Colombia Peso" msgstr "" #: admin/manage-fields.php:585 msgid "Costa Rica Colon" msgstr "" #: admin/manage-fields.php:586 msgid "Croatia Kuna" msgstr "" #: admin/manage-fields.php:587 msgid "Cuba Peso" msgstr "" #: admin/manage-fields.php:588 msgid "Czech Republic Koruna" msgstr "" #: admin/manage-fields.php:589 msgid "Denmark Krone" msgstr "" #: admin/manage-fields.php:590 msgid "Dominican Republic Peso" msgstr "" #: admin/manage-fields.php:591 msgid "East Caribbean Dollar" msgstr "" #: admin/manage-fields.php:592 msgid "Egypt Pound" msgstr "" #: admin/manage-fields.php:593 msgid "El Salvador Colon" msgstr "" #: admin/manage-fields.php:594 msgid "Estonia Kroon" msgstr "" #: admin/manage-fields.php:595 msgid "Euro" msgstr "" #: admin/manage-fields.php:596 msgid "Falkland Islands (Malvinas) Pound" msgstr "" #: admin/manage-fields.php:597 msgid "Fiji Dollar" msgstr "" #: admin/manage-fields.php:598 msgid "Ghana Cedis" msgstr "" #: admin/manage-fields.php:599 msgid "Gibraltar Pound" msgstr "" #: admin/manage-fields.php:600 msgid "Guatemala Quetzal" msgstr "" #: admin/manage-fields.php:601 msgid "Guernsey Pound" msgstr "" #: admin/manage-fields.php:602 msgid "Guyana Dollar" msgstr "" #: admin/manage-fields.php:603 msgid "Honduras Lempira" msgstr "" #: admin/manage-fields.php:604 msgid "Hong Kong Dollar" msgstr "" #: admin/manage-fields.php:605 msgid "Hungary Forint" msgstr "" #: admin/manage-fields.php:606 msgid "Iceland Krona" msgstr "" #: admin/manage-fields.php:607 msgid "India Rupee" msgstr "" #: admin/manage-fields.php:608 msgid "Indonesia Rupiah" msgstr "" #: admin/manage-fields.php:609 msgid "Iran Rial" msgstr "" #: admin/manage-fields.php:610 msgid "Isle of Man Pound" msgstr "" #: admin/manage-fields.php:611 msgid "Israel Shekel" msgstr "" #: admin/manage-fields.php:612 msgid "Jamaica Dollar" msgstr "" #: admin/manage-fields.php:613 msgid "Japan Yen" msgstr "" #: admin/manage-fields.php:614 msgid "Jersey Pound" msgstr "" #: admin/manage-fields.php:615 msgid "Kazakhstan Tenge" msgstr "" #: admin/manage-fields.php:616 msgid "Korea (North) Won" msgstr "" #: admin/manage-fields.php:617 msgid "Korea (South) Won" msgstr "" #: admin/manage-fields.php:618 msgid "Kyrgyzstan Som" msgstr "" #: admin/manage-fields.php:619 msgid "Laos Kip" msgstr "" #: admin/manage-fields.php:620 msgid "Latvia Lat" msgstr "" #: admin/manage-fields.php:621 msgid "Lebanon Pound" msgstr "" #: admin/manage-fields.php:622 msgid "Liberia Dollar" msgstr "" #: admin/manage-fields.php:623 msgid "Lithuania Litas" msgstr "" #: admin/manage-fields.php:624 msgid "Macedonia Denar" msgstr "" #: admin/manage-fields.php:625 msgid "Malaysia Ringgit" msgstr "" #: admin/manage-fields.php:626 msgid "Mauritius Rupee" msgstr "" #: admin/manage-fields.php:627 msgid "Mexico Peso" msgstr "" #: admin/manage-fields.php:628 msgid "Mongolia Tughrik" msgstr "" #: admin/manage-fields.php:629 msgid "Mozambique Metical" msgstr "" #: admin/manage-fields.php:630 msgid "Namibia Dollar" msgstr "" #: admin/manage-fields.php:631 msgid "Nepal Rupee" msgstr "" #: admin/manage-fields.php:632 msgid "Netherlands Antilles Guilder" msgstr "" #: admin/manage-fields.php:633 msgid "New Zealand Dollar" msgstr "" #: admin/manage-fields.php:634 msgid "Nicaragua Cordoba" msgstr "" #: admin/manage-fields.php:635 msgid "Nigeria Naira" msgstr "" #: admin/manage-fields.php:636 msgid "Norway Krone" msgstr "" #: admin/manage-fields.php:637 msgid "Oman Rial" msgstr "" #: admin/manage-fields.php:638 msgid "Pakistan Rupee" msgstr "" #: admin/manage-fields.php:639 msgid "Panama Balboa" msgstr "" #: admin/manage-fields.php:640 msgid "Paraguay Guarani" msgstr "" #: admin/manage-fields.php:641 msgid "Peru Nuevo Sol" msgstr "" #: admin/manage-fields.php:642 msgid "Philippines Peso" msgstr "" #: admin/manage-fields.php:643 msgid "Poland Zloty" msgstr "" #: admin/manage-fields.php:644 msgid "Qatar Riyal" msgstr "" #: admin/manage-fields.php:645 msgid "Romania New Leu" msgstr "" #: admin/manage-fields.php:646 msgid "Russia Ruble" msgstr "" #: admin/manage-fields.php:647 msgid "Saint Helena Pound" msgstr "" #: admin/manage-fields.php:648 msgid "Saudi Arabia Riyal" msgstr "" #: admin/manage-fields.php:649 msgid "Serbia Dinar" msgstr "" #: admin/manage-fields.php:650 msgid "Seychelles Rupee" msgstr "" #: admin/manage-fields.php:651 msgid "Singapore Dollar" msgstr "" #: admin/manage-fields.php:652 msgid "Solomon Islands Dollar" msgstr "" #: admin/manage-fields.php:653 msgid "Somalia Shilling" msgstr "" #: admin/manage-fields.php:654 msgid "South Africa Rand" msgstr "" #: admin/manage-fields.php:655 msgid "Sri Lanka Rupee" msgstr "" #: admin/manage-fields.php:656 msgid "Sweden Krona" msgstr "" #: admin/manage-fields.php:657 msgid "Switzerland Franc" msgstr "" #: admin/manage-fields.php:658 msgid "Suriname Dollar" msgstr "" #: admin/manage-fields.php:659 msgid "Syria Pound" msgstr "" #: admin/manage-fields.php:660 msgid "Taiwan New Dollar" msgstr "" #: admin/manage-fields.php:661 msgid "Thailand Baht" msgstr "" #: admin/manage-fields.php:662 msgid "Trinidad and Tobago Dollar" msgstr "" #: admin/manage-fields.php:663 admin/manage-fields.php:664 msgid "Turkey Lira" msgstr "" #: admin/manage-fields.php:665 msgid "Tuvalu Dollar" msgstr "" #: admin/manage-fields.php:666 msgid "Ukraine Hryvna" msgstr "" #: admin/manage-fields.php:667 msgid "United Kingdom Pound" msgstr "" #: admin/manage-fields.php:668 msgid "Uganda Shilling" msgstr "" #: admin/manage-fields.php:669 msgid "US Dollar" msgstr "" #: admin/manage-fields.php:670 msgid "Uruguay Peso" msgstr "" #: admin/manage-fields.php:671 msgid "Uzbekistan Som" msgstr "" #: admin/manage-fields.php:672 msgid "Venezuela Bolivar" msgstr "" #: admin/manage-fields.php:673 msgid "Viet Nam Dong" msgstr "" #: admin/manage-fields.php:674 msgid "Yemen Rial" msgstr "" #: admin/manage-fields.php:675 msgid "Zimbabwe Dollar" msgstr "" #: admin/manage-fields.php:1094 msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n" msgstr "" #: admin/manage-fields.php:1311 msgid "Search Location" msgstr "" #: assets/lib/wck-api/wordpress-creation-kit.php:754 msgid "You are not allowed to do this." msgstr "" #: features/admin-approval/class-admin-approval.php:461 #: features/email-confirmation/class-email-confirmation.php:460 msgid "Search Users" msgstr "" #: features/conditional-fields/conditional-fields.php:78 msgid "Conditional Logic" msgstr "" #: features/conditional-fields/conditional-fields.php:79 msgid "Conditional Rules" msgstr "" #: features/conditional-fields/conditional-fields.php:448 msgid "This field has conditional logic enabled." msgstr "" #: features/functions.php:685 msgid "Incorrect phone number" msgstr "" #: front-end/class-formbuilder.php:113 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." msgstr "" #: front-end/extra-fields/map/map.php:46 front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "" #: front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "" #: front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "" #: front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "" #: front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "" #: front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "" #: front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bolivia, __( Plurinational State of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bonaire, __( Sint Eustatius and Saba" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Brunei Darussalam" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cabo Verde" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cocos (Keeling) Islands" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Congo" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Congo, __( the Democratic Republic of the" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cote dIvoire" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Falkland Islands (Malvinas)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Holy See (Vatican City State)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Iran, __( Islamic Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Democratic Peoples Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lao Peoples Democratic Republic" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Macedonia, __( the former Yugoslav Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Micronesia, __( Federated States of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Moldova, __( Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Palestine, __( State of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Russian Federation" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Helena, __( Ascension and Tristan da Cunha" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Martin (French part)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sint Maarten (Dutch part)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Syrian Arab Republic" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Taiwan, __( Province of China" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tanzania, __( United Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Timor-Leste" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Venezuela, __( Bolivarian Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Viet Nam" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( British" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( U.S." msgstr "" #: modules/email-customizer/email-customizer.php:11 #: modules/user-listing/userlisting.php:186 msgid "User Fields Tags" msgstr "" #: modules/email-customizer/email-customizer.php:479 msgid "The users selected password at signup" msgstr "" #: modules/email-customizer/user-email-customizer.php:278 msgid "[{{site_name}}] Notice of Email Change" msgstr "" #: modules/email-customizer/user-email-customizer.php:289 msgid "Changed Email Address Notification" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Limit" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Enable limit to the number of fields to be generated by users in front end forms " msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "General Limit" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "Limit reached message" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The maximum number of fields has been reached." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The popup message to display when the limit of repeater groups is reached." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Limit per Role" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Leave 0 for unlimited." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Repeated field group" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Manage field or group of fields that will be repeatable." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:259 msgid "Edit field group" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:260 msgid "Repeatable fields saved!" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:277 #: modules/repeater-field/admin/repeater-manage-fields.php:326 msgid "Please enter a unique field title.\n" msgstr "" #: modules/repeater-field/repeater-field.php:258 msgid "Are you sure you want to delete this?" msgstr "" #: modules/user-listing/userlisting.php:192 msgid "Sort Tags" msgstr "" #: modules/user-listing/userlisting.php:201 #: modules/user-listing/userlisting.php:2237 msgid "Faceted Menus" msgstr "" #: modules/user-listing/userlisting.php:202 msgid "User Count" msgstr "" #: modules/user-listing/userlisting.php:1536 msgid "Show All" msgstr "" #: modules/user-listing/userlisting.php:1668 msgid "No options available" msgstr "" #: modules/user-listing/userlisting.php:1807 msgid "Remove All Filters" msgstr "" #: modules/user-listing/userlisting.php:2227 msgid "Label" msgstr "" #: modules/user-listing/userlisting.php:2227 msgid "Choose the facet name that appears on the frontend" msgstr "" #: modules/user-listing/userlisting.php:2228 msgid "Facet Type" msgstr "" #: modules/user-listing/userlisting.php:2228 msgid "Choose the facet menu type" msgstr "" #: modules/user-listing/userlisting.php:2229 msgid "Facet Meta" msgstr "" #: modules/user-listing/userlisting.php:2229 msgid "Choose the meta field for the facet menu" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Behaviour" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Narrow the results" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Expand the results" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Choose how multiple selections affect the results" msgstr "" #: modules/user-listing/userlisting.php:2231 msgid "Visible choices" msgstr "" #: modules/user-listing/userlisting.php:2231 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "" #: modules/user-listing/userlisting.php:2254 msgid "Search Fields" msgstr "" #: modules/user-listing/userlisting.php:2254 msgid "Choose the fields in which the Search Field will look in" msgstr "" #: modules/user-listing/userlisting.php:2259 msgid "Search Settings" msgstr "" #: admin/add-ons.php:190 msgid "Recommended Plugins" msgstr "Ajánlott Bővítmények" #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102 msgid "Free" msgstr "Ingyenes" #: admin/add-ons.php:221 msgid "Accept user payments, create subscription plans and restrict content on your membership site." msgstr "Felhasználói fizetés, feliratkozási tervek és tartalom korlátozása a tagsági oldalán." #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105 msgid "More Details" msgstr "További Részletek" #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88 #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "Bővítmény kikapcsolva" #: admin/add-ons.php:242 admin/pms-cross-promotion.php:87 #: admin/pms-cross-promotion.php:125 admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "Bővítmény bekapcsolva" #: admin/add-ons.php:256 admin/pms-cross-promotion.php:146 msgid "Could not install plugin. Retry or install manually." msgstr "Bővítmény telepítése sikertelen. Próbálja újra vagy telepítse manuálisan." #: admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "Fizetős Fiókok" #: admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "Előfizetéses Tagság - ingyenes WordPress bővítmény" #: admin/pms-cross-promotion.php:37 msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." msgstr "Az új Előfizetések mezővel a Profile Builder-ben, a regisztrációs formokon lehetőség nyílik a felhasználók számára a fizetős fiókra történő előfizetésre." #: admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "Fizetős és ingyenes előfizetések" #: admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "Korlátozott hozzáférésű tartalom" #: admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "Tag menedzsment" #: admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "Email Sablonok" #: admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "Fiók Menedzsment" #: admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "Előfizetés Menedzsment" #: admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "Fizetés Menedzsment" #: admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "A Plugin Aktív" #: admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "Plugin aktiválva" #: admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "A bővítményt kikapcsolták." #: admin/pms-cross-promotion.php:104 msgid "Accept user payments, create subscription plans and restrict content on your website." msgstr "Felhasználói fizetések elfogadása, előfizetési tervek készítése és korlátozott hozzáférésű tartalom az oldaladon." #: admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "Lépésről lépésre Gyorsbeállító" #: features/email-confirmation/email-confirmation.php:400 msgid "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:45 msgid "After Login" msgstr "Bejelentkezés után" #: modules/custom-redirects/custom_redirects_admin.php:46 msgid "After Logout" msgstr "Kijelentkezés után" #: modules/custom-redirects/custom_redirects_admin.php:47 msgid "After Registration" msgstr "Regisztráció után" #: modules/custom-redirects/custom_redirects_admin.php:48 msgid "After Edit Profile" msgstr "Profil szerkesztése után" #: modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Successful Email Confirmation" msgstr "Sikeres E-mail megerősítés után" #: modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Successful Password Reset" msgstr "Sikeres új jelszó beállítása után" #: modules/custom-redirects/custom_redirects_admin.php:51 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "Vezérlőpult" #: modules/custom-redirects/custom_redirects_admin.php:55 msgid "User ID" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:61 msgid "User ID or Username" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:62 msgid "User ID / Username" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:62 msgid "Please select and enter the ID or username of your user." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:63 #: modules/custom-redirects/custom_redirects_admin.php:93 #: modules/custom-redirects/custom_redirects_admin.php:112 #: modules/custom-redirects/custom_redirects_admin.php:131 msgid "Redirect Type" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:64 #: modules/custom-redirects/custom_redirects_admin.php:94 #: modules/custom-redirects/custom_redirects_admin.php:113 #: modules/custom-redirects/custom_redirects_admin.php:138 msgid "Redirect URL" msgstr "Átirányítási URL" #: modules/custom-redirects/custom_redirects_admin.php:64 #: modules/custom-redirects/custom_redirects_admin.php:94 #: modules/custom-redirects/custom_redirects_admin.php:113 #: modules/custom-redirects/custom_redirects_admin.php:138 msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:71 #: modules/custom-redirects/custom_redirects_admin.php:241 msgid "Individual User Redirects" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:84 msgid "... Choose" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:92 msgid "Select a user role." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:101 #: modules/custom-redirects/custom_redirects_admin.php:242 msgid "User Role based Redirects" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:120 #: modules/custom-redirects/custom_redirects_admin.php:243 msgid "Global Redirects" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:133 msgid "Login ( wp_login.php )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:134 msgid "Register ( wp-login.php?action=register )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:135 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:136 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:145 msgid "Redirect Default WordPress Forms and Pages" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:157 msgid "How does this work?" msgstr "Hogy működik ez?" #: modules/custom-redirects/custom_redirects_admin.php:179 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:193 msgid "
            User Role
            Redirect
            URL
            " msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:207 #: modules/custom-redirects/custom_redirects_admin.php:221 msgid "
            Redirect
            URL
            " msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:236 msgid "These redirects happen after a successful action, like registration or after a successful login." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:238 msgid "Which redirect happens depends on the following priority:" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:247 msgid "Redirect Default WordPress forms and pages" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:248 msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:250 msgid "Available tags for dynamic URLs" msgstr "Elérhető címkék dinamikus URL-ekhez" #: modules/custom-redirects/custom_redirects_admin.php:251 msgid "You use the following tags in your URLs to redirect users to various pages." msgstr "A következő címkéket használod az URL-eidben a felhasználók átirányításához a különböző oldalakhoz." #: modules/custom-redirects/custom_redirects_admin.php:253 msgid "generates a url of the current website homepage." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:254 msgid "in WordPress the site url can be different then the home url" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:255 msgid "the ID of the user" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:256 msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:257 msgid "the URL of the previously visited page" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:340 #: modules/custom-redirects/custom_redirects_admin.php:346 #: modules/custom-redirects/custom_redirects_admin.php:352 msgid "You can't add duplicate redirects!" msgstr "" #: admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "Név megjelenítése mint.. - csak a Profil szerkesztése oldalon jelenik meg." #: admin/basic-info.php:37 msgid "Friction-less login using %s shortcode or a widget." msgstr "" #: admin/basic-info.php:41 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "" #: admin/basic-info.php:45 msgid "Straight forward edit profile forms using %s shortcode." msgstr "" #: admin/basic-info.php:58 msgid "Allow users to recover their password in the front-end using the %s." msgstr "" #: admin/basic-info.php:140 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." msgstr "" #: admin/general-settings.php:118 msgid "\"Admin Approval\" on User Role:" msgstr "" #: admin/general-settings.php:137 msgid "Select on what user roles to activate Admin Approval." msgstr "" #: admin/manage-fields.php:131 msgid "Display on PB forms" msgstr "" #: admin/manage-fields.php:131 msgid "PB Login" msgstr "" #: admin/manage-fields.php:131 msgid "PB Register" msgstr "" #: admin/manage-fields.php:131 msgid "PB Recover Password" msgstr "" #: admin/manage-fields.php:131 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "" #: admin/manage-fields.php:132 msgid "Display on default WP forms" msgstr "" #: admin/manage-fields.php:132 msgid "Default WP Login" msgstr "" #: admin/manage-fields.php:132 msgid "Default WP Register" msgstr "" #: admin/manage-fields.php:132 msgid "Default WP Recover Password" msgstr "" #: admin/manage-fields.php:132 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "" #: admin/manage-fields.php:138 admin/manage-fields.php:139 #: admin/manage-fields.php:140 msgid "Default option of the field" msgstr "A mező alapértelmezett értéke" #: admin/manage-fields.php:279 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Afghanistan" msgstr "Afghanistan" #: admin/manage-fields.php:280 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Aland Islands" msgstr "Aland Islands" #: admin/manage-fields.php:281 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Albania" msgstr "Albania" #: admin/manage-fields.php:282 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Algeria" msgstr "Algeria" #: admin/manage-fields.php:283 #: front-end/extra-fields/select-country/select-country.php:10 msgid "American Samoa" msgstr "American Samoa" #: admin/manage-fields.php:284 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Andorra" msgstr "Andorra" #: admin/manage-fields.php:285 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Angola" msgstr "Angola" #: admin/manage-fields.php:286 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Anguilla" msgstr "Anguilla" #: admin/manage-fields.php:287 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Antarctica" msgstr "Antarctica" #: admin/manage-fields.php:288 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" #: admin/manage-fields.php:289 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Argentina" msgstr "Argentina" #: admin/manage-fields.php:290 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Armenia" msgstr "Armenia" #: admin/manage-fields.php:291 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Aruba" msgstr "Aruba" #: admin/manage-fields.php:292 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Australia" msgstr "Australia" #: admin/manage-fields.php:293 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Austria" msgstr "Austria" #: admin/manage-fields.php:294 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Azerbaijan" msgstr "Azerbaijan" #: admin/manage-fields.php:295 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bahamas" msgstr "Bahamas" #: admin/manage-fields.php:296 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bahrain" msgstr "Bahrain" #: admin/manage-fields.php:297 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bangladesh" msgstr "Bangladesh" #: admin/manage-fields.php:298 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Barbados" msgstr "Barbados" #: admin/manage-fields.php:299 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Belarus" msgstr "Belarus" #: admin/manage-fields.php:300 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Belgium" msgstr "Belgium" #: admin/manage-fields.php:301 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Belize" msgstr "Belize" #: admin/manage-fields.php:302 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Benin" msgstr "Benin" #: admin/manage-fields.php:303 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bermuda" msgstr "Bermuda" #: admin/manage-fields.php:304 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bhutan" msgstr "Bhutan" #: admin/manage-fields.php:305 msgid "Bolivia" msgstr "Bolivia" #: admin/manage-fields.php:306 msgid "Bonaire, Saint Eustatius and Saba" msgstr "Bonaire, Saint Eustatius and Saba" #: admin/manage-fields.php:307 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bosnia and Herzegovina" msgstr "Bosnia and Herzegovina" #: admin/manage-fields.php:308 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Botswana" msgstr "Botswana" #: admin/manage-fields.php:309 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bouvet Island" msgstr "Bouvet Island" #: admin/manage-fields.php:310 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Brazil" msgstr "Brazil" #: admin/manage-fields.php:311 #: front-end/extra-fields/select-country/select-country.php:10 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: admin/manage-fields.php:312 msgid "British Virgin Islands" msgstr "British Virgin Islands" #: admin/manage-fields.php:313 msgid "Brunei" msgstr "Brunei" #: admin/manage-fields.php:314 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bulgaria" msgstr "Bulgaria" #: admin/manage-fields.php:315 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Burkina Faso" msgstr "Burkina Faso" #: admin/manage-fields.php:316 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Burundi" msgstr "Burundi" #: admin/manage-fields.php:317 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cambodia" msgstr "Cambodia" #: admin/manage-fields.php:318 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cameroon" msgstr "Cameroon" #: admin/manage-fields.php:319 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Canada" msgstr "Canada" #: admin/manage-fields.php:320 msgid "Cape Verde" msgstr "Cape Verde" #: admin/manage-fields.php:321 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cayman Islands" msgstr "Cayman Islands" #: admin/manage-fields.php:322 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Central African Republic" msgstr "Central African Republic" #: admin/manage-fields.php:323 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Chad" msgstr "Chad" #: admin/manage-fields.php:324 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Chile" msgstr "Chile" #: admin/manage-fields.php:325 #: front-end/extra-fields/select-country/select-country.php:10 msgid "China" msgstr "China" #: admin/manage-fields.php:326 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Christmas Island" msgstr "Christmas Island" #: admin/manage-fields.php:327 msgid "Cocos Islands" msgstr "Cocos Islands" #: admin/manage-fields.php:328 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Colombia" msgstr "Colombia" #: admin/manage-fields.php:329 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Comoros" msgstr "Comoros" #: admin/manage-fields.php:330 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cook Islands" msgstr "Cook Islands" #: admin/manage-fields.php:331 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Costa Rica" msgstr "Costa Rica" #: admin/manage-fields.php:332 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Croatia" msgstr "Croatia" #: admin/manage-fields.php:333 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cuba" msgstr "Cuba" #: admin/manage-fields.php:334 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Curacao" msgstr "Curacao" #: admin/manage-fields.php:335 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cyprus" msgstr "Cyprus" #: admin/manage-fields.php:336 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Czech Republic" msgstr "Czech Republic" #: admin/manage-fields.php:337 msgid "Democratic Republic of the Congo" msgstr "Democratic Republic of the Congo" #: admin/manage-fields.php:338 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Denmark" msgstr "Denmark" #: admin/manage-fields.php:339 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Djibouti" msgstr "Djibouti" #: admin/manage-fields.php:340 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Dominica" msgstr "Dominica" #: admin/manage-fields.php:341 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Dominican Republic" msgstr "Dominican Republic" #: admin/manage-fields.php:342 msgid "East Timor" msgstr "East Timor" #: admin/manage-fields.php:343 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ecuador" msgstr "Ecuador" #: admin/manage-fields.php:344 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Egypt" msgstr "Egypt" #: admin/manage-fields.php:345 #: front-end/extra-fields/select-country/select-country.php:10 msgid "El Salvador" msgstr "El Salvador" #: admin/manage-fields.php:346 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: admin/manage-fields.php:347 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Eritrea" msgstr "Eritrea" #: admin/manage-fields.php:348 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Estonia" msgstr "Estonia" #: admin/manage-fields.php:349 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ethiopia" msgstr "Ethiopia" #: admin/manage-fields.php:350 msgid "Falkland Islands" msgstr "Falkland Islands" #: admin/manage-fields.php:351 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Faroe Islands" msgstr "Faroe Islands" #: admin/manage-fields.php:352 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Fiji" msgstr "Fiji" #: admin/manage-fields.php:353 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Finland" msgstr "Finland" #: admin/manage-fields.php:354 #: front-end/extra-fields/select-country/select-country.php:10 msgid "France" msgstr "France" #: admin/manage-fields.php:355 #: front-end/extra-fields/select-country/select-country.php:10 msgid "French Guiana" msgstr "French Guiana" #: admin/manage-fields.php:356 #: front-end/extra-fields/select-country/select-country.php:10 msgid "French Polynesia" msgstr "French Polynesia" #: admin/manage-fields.php:357 #: front-end/extra-fields/select-country/select-country.php:10 msgid "French Southern Territories" msgstr "French Southern Territories" #: admin/manage-fields.php:358 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Gabon" msgstr "Gabon" #: admin/manage-fields.php:359 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Gambia" msgstr "Gambia" #: admin/manage-fields.php:360 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Georgia" msgstr "Georgia" #: admin/manage-fields.php:361 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Germany" msgstr "Germany" #: admin/manage-fields.php:362 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ghana" msgstr "Ghana" #: admin/manage-fields.php:363 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Gibraltar" msgstr "Gibraltar" #: admin/manage-fields.php:364 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Greece" msgstr "Greece" #: admin/manage-fields.php:365 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Greenland" msgstr "Greenland" #: admin/manage-fields.php:366 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Grenada" msgstr "Grenada" #: admin/manage-fields.php:367 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guadeloupe" msgstr "Guadeloupe" #: admin/manage-fields.php:368 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guam" msgstr "Guam" #: admin/manage-fields.php:369 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guatemala" msgstr "Guatemala" #: admin/manage-fields.php:370 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guernsey" msgstr "Guernsey" #: admin/manage-fields.php:371 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea" msgstr "Guinea" #: admin/manage-fields.php:372 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: admin/manage-fields.php:373 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guyana" msgstr "Guyana" #: admin/manage-fields.php:374 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Haiti" msgstr "Haiti" #: admin/manage-fields.php:375 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Heard Island and McDonald Islands" msgstr "Heard Island and McDonald Islands" #: admin/manage-fields.php:376 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Honduras" msgstr "Honduras" #: admin/manage-fields.php:377 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Hong Kong" msgstr "Hong Kong" #: admin/manage-fields.php:378 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Hungary" msgstr "Hungary" #: admin/manage-fields.php:379 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Iceland" msgstr "Iceland" #: admin/manage-fields.php:380 #: front-end/extra-fields/select-country/select-country.php:10 msgid "India" msgstr "India" #: admin/manage-fields.php:381 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Indonesia" msgstr "Indonesia" #: admin/manage-fields.php:382 msgid "Iran" msgstr "Iran" #: admin/manage-fields.php:383 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Iraq" msgstr "Iraq" #: admin/manage-fields.php:384 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ireland" msgstr "Ireland" #: admin/manage-fields.php:385 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Isle of Man" msgstr "Isle of Man" #: admin/manage-fields.php:386 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Israel" msgstr "Israel" #: admin/manage-fields.php:387 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Italy" msgstr "Italy" #: admin/manage-fields.php:388 msgid "Ivory Coast" msgstr "Ivory Coast" #: admin/manage-fields.php:389 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Jamaica" msgstr "Jamaica" #: admin/manage-fields.php:390 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Japan" msgstr "Japan" #: admin/manage-fields.php:391 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Jersey" msgstr "Jersey" #: admin/manage-fields.php:392 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Jordan" msgstr "Jordan" #: admin/manage-fields.php:393 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kazakhstan" msgstr "Kazakhstan" #: admin/manage-fields.php:394 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kenya" msgstr "Kenya" #: admin/manage-fields.php:395 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kiribati" msgstr "Kiribati" #: admin/manage-fields.php:396 msgid "Kosovo" msgstr "Kosovo" #: admin/manage-fields.php:397 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kuwait" msgstr "Kuwait" #: admin/manage-fields.php:398 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: admin/manage-fields.php:399 msgid "Laos" msgstr "Laos" #: admin/manage-fields.php:400 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Latvia" msgstr "Latvia" #: admin/manage-fields.php:401 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lebanon" msgstr "Lebanon" #: admin/manage-fields.php:402 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lesotho" msgstr "Lesotho" #: admin/manage-fields.php:403 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Liberia" msgstr "Liberia" #: admin/manage-fields.php:404 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Libya" msgstr "Libya" #: admin/manage-fields.php:405 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Liechtenstein" msgstr "Liechtenstein" #: admin/manage-fields.php:406 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lithuania" msgstr "Lithuania" #: admin/manage-fields.php:407 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Luxembourg" msgstr "Luxembourg" #: admin/manage-fields.php:408 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Macao" msgstr "Macao" #: admin/manage-fields.php:409 msgid "Macedonia" msgstr "Macedonia" #: admin/manage-fields.php:410 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Madagascar" msgstr "Madagascar" #: admin/manage-fields.php:411 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Malawi" msgstr "Malawi" #: admin/manage-fields.php:412 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Malaysia" msgstr "Malaysia" #: admin/manage-fields.php:413 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Maldives" msgstr "Maldives" #: admin/manage-fields.php:414 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mali" msgstr "Mali" #: admin/manage-fields.php:415 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Malta" msgstr "Malta" #: admin/manage-fields.php:416 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Marshall Islands" msgstr "Marshall Islands" #: admin/manage-fields.php:417 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Martinique" msgstr "Martinique" #: admin/manage-fields.php:418 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritania" msgstr "Mauritania" #: admin/manage-fields.php:419 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritius" msgstr "Mauritius" #: admin/manage-fields.php:420 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mayotte" msgstr "Mayotte" #: admin/manage-fields.php:421 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mexico" msgstr "Mexico" #: admin/manage-fields.php:422 msgid "Micronesia" msgstr "Micronesia" #: admin/manage-fields.php:423 msgid "Moldova" msgstr "Moldova" #: admin/manage-fields.php:424 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Monaco" msgstr "Monaco" #: admin/manage-fields.php:425 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mongolia" msgstr "Mongolia" #: admin/manage-fields.php:426 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Montenegro" msgstr "Montenegro" #: admin/manage-fields.php:427 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Montserrat" msgstr "Montserrat" #: admin/manage-fields.php:428 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Morocco" msgstr "Morocco" #: admin/manage-fields.php:429 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mozambique" msgstr "Mozambique" #: admin/manage-fields.php:430 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Myanmar" msgstr "Myanmar" #: admin/manage-fields.php:431 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Namibia" msgstr "Namibia" #: admin/manage-fields.php:432 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nauru" msgstr "Nauru" #: admin/manage-fields.php:433 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nepal" msgstr "Nepal" #: admin/manage-fields.php:434 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Netherlands" msgstr "Netherlands" #: admin/manage-fields.php:435 #: front-end/extra-fields/select-country/select-country.php:10 msgid "New Caledonia" msgstr "New Caledonia" #: admin/manage-fields.php:436 #: front-end/extra-fields/select-country/select-country.php:10 msgid "New Zealand" msgstr "New Zealand" #: admin/manage-fields.php:437 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nicaragua" msgstr "Nicaragua" #: admin/manage-fields.php:438 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Niger" msgstr "Niger" #: admin/manage-fields.php:439 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nigeria" msgstr "Nigeria" #: admin/manage-fields.php:440 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Niue" msgstr "Niue" #: admin/manage-fields.php:441 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Norfolk Island" msgstr "Norfolk Island" #: admin/manage-fields.php:442 msgid "North Korea" msgstr "North Korea" #: admin/manage-fields.php:443 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: admin/manage-fields.php:444 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Norway" msgstr "Norway" #: admin/manage-fields.php:445 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Oman" msgstr "Oman" #: admin/manage-fields.php:446 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Pakistan" msgstr "Pakistan" #: admin/manage-fields.php:447 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Palau" msgstr "Palau" #: admin/manage-fields.php:448 msgid "Palestinian Territory" msgstr "Palestinian Territory" #: admin/manage-fields.php:449 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Panama" msgstr "Panama" #: admin/manage-fields.php:450 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: admin/manage-fields.php:451 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Paraguay" msgstr "Paraguay" #: admin/manage-fields.php:452 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Peru" msgstr "Peru" #: admin/manage-fields.php:453 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Philippines" msgstr "Philippines" #: admin/manage-fields.php:454 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Pitcairn" msgstr "Pitcairn" #: admin/manage-fields.php:455 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Poland" msgstr "Poland" #: admin/manage-fields.php:456 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Portugal" msgstr "Portugal" #: admin/manage-fields.php:457 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Puerto Rico" msgstr "Puerto Rico" #: admin/manage-fields.php:458 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Qatar" msgstr "Qatar" #: admin/manage-fields.php:459 msgid "Republic of the Congo" msgstr "Republic of the Congo" #: admin/manage-fields.php:460 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Reunion" msgstr "Reunion" #: admin/manage-fields.php:461 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Romania" msgstr "Romania" #: admin/manage-fields.php:462 msgid "Russia" msgstr "Russia" #: admin/manage-fields.php:463 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Rwanda" msgstr "Rwanda" #: admin/manage-fields.php:464 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: admin/manage-fields.php:465 msgid "Saint Helena" msgstr "Saint Helena" #: admin/manage-fields.php:466 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts and Nevis" #: admin/manage-fields.php:467 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Lucia" msgstr "Saint Lucia" #: admin/manage-fields.php:468 msgid "Saint Martin" msgstr "Saint Martin" #: admin/manage-fields.php:469 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre and Miquelon" #: admin/manage-fields.php:470 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent and the Grenadines" #: admin/manage-fields.php:471 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Samoa" msgstr "Samoa" #: admin/manage-fields.php:472 #: front-end/extra-fields/select-country/select-country.php:10 msgid "San Marino" msgstr "San Marino" #: admin/manage-fields.php:473 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sao Tome and Principe" msgstr "Sao Tome and Principe" #: admin/manage-fields.php:474 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: admin/manage-fields.php:475 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Senegal" msgstr "Senegal" #: admin/manage-fields.php:476 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Serbia" msgstr "Serbia" #: admin/manage-fields.php:477 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Seychelles" msgstr "Seychelles" #: admin/manage-fields.php:478 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sierra Leone" msgstr "Sierra Leone" #: admin/manage-fields.php:479 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Singapore" msgstr "Singapore" #: admin/manage-fields.php:480 msgid "Sint Maarten" msgstr "Sint Maarten" #: admin/manage-fields.php:481 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Slovakia" msgstr "Slovakia" #: admin/manage-fields.php:482 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Slovenia" msgstr "Slovenia" #: admin/manage-fields.php:483 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Solomon Islands" msgstr "Solomon Islands" #: admin/manage-fields.php:484 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Somalia" msgstr "Somalia" #: admin/manage-fields.php:485 #: front-end/extra-fields/select-country/select-country.php:10 msgid "South Africa" msgstr "South Africa" #: admin/manage-fields.php:486 #: front-end/extra-fields/select-country/select-country.php:10 msgid "South Georgia and the South Sandwich Islands" msgstr "South Georgia and the South Sandwich Islands" #: admin/manage-fields.php:487 msgid "South Korea" msgstr "South Korea" #: admin/manage-fields.php:488 #: front-end/extra-fields/select-country/select-country.php:10 msgid "South Sudan" msgstr "South Sudan" #: admin/manage-fields.php:489 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Spain" msgstr "Spain" #: admin/manage-fields.php:490 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sri Lanka" msgstr "Sri Lanka" #: admin/manage-fields.php:491 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sudan" msgstr "Sudan" #: admin/manage-fields.php:492 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Suriname" msgstr "Suriname" #: admin/manage-fields.php:493 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Svalbard and Jan Mayen" msgstr "Svalbard and Jan Mayen" #: admin/manage-fields.php:494 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Swaziland" msgstr "Swaziland" #: admin/manage-fields.php:495 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sweden" msgstr "Sweden" #: admin/manage-fields.php:496 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Switzerland" msgstr "Switzerland" #: admin/manage-fields.php:497 msgid "Syria" msgstr "Syria" #: admin/manage-fields.php:498 msgid "Taiwan" msgstr "Taiwan" #: admin/manage-fields.php:499 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tajikistan" msgstr "Tajikistan" #: admin/manage-fields.php:500 msgid "Tanzania" msgstr "Tanzania" #: admin/manage-fields.php:501 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Thailand" msgstr "Thailand" #: admin/manage-fields.php:502 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Togo" msgstr "Togo" #: admin/manage-fields.php:503 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tokelau" msgstr "Tokelau" #: admin/manage-fields.php:504 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tonga" msgstr "Tonga" #: admin/manage-fields.php:505 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Trinidad and Tobago" msgstr "Trinidad and Tobago" #: admin/manage-fields.php:506 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tunisia" msgstr "Tunisia" #: admin/manage-fields.php:507 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Turkey" msgstr "Turkey" #: admin/manage-fields.php:508 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Turkmenistan" msgstr "Turkmenistan" #: admin/manage-fields.php:509 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Islands" #: admin/manage-fields.php:510 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tuvalu" msgstr "Tuvalu" #: admin/manage-fields.php:511 msgid "U.S. Virgin Islands" msgstr "U.S. Virgin Islands" #: admin/manage-fields.php:512 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Uganda" msgstr "Uganda" #: admin/manage-fields.php:513 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ukraine" msgstr "Ukraine" #: admin/manage-fields.php:514 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United Arab Emirates" msgstr "United Arab Emirates" #: admin/manage-fields.php:515 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United Kingdom" msgstr "United Kingdom" #: admin/manage-fields.php:516 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United States" msgstr "United States" #: admin/manage-fields.php:517 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: admin/manage-fields.php:518 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Uruguay" msgstr "Uruguay" #: admin/manage-fields.php:519 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Uzbekistan" msgstr "Uzbekistan" #: admin/manage-fields.php:520 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Vanuatu" msgstr "Vanuatu" #: admin/manage-fields.php:521 msgid "Vatican" msgstr "Vatican" #: admin/manage-fields.php:522 msgid "Venezuela" msgstr "Venezuela" #: admin/manage-fields.php:523 msgid "Vietnam" msgstr "Vietnam" #: admin/manage-fields.php:524 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Wallis and Futuna" msgstr "Wallis and Futuna" #: admin/manage-fields.php:525 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Western Sahara" msgstr "Western Sahara" #: admin/manage-fields.php:526 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Yemen" msgstr "Yemen" #: admin/manage-fields.php:527 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Zambia" msgstr "Zambia" #: admin/manage-fields.php:528 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Zimbabwe" msgstr "Zimbabwe" #: admin/manage-fields.php:1216 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." msgstr "" #: assets/misc/plugin-compatibilities.php:237 msgid "Your account has to be confirmed by an administrator before you can log in." msgstr "Az Ön fiókját egy jóvá kell hagynia adminisztrátornak, mielőtt beléphet." #: features/admin-approval/admin-approval.php:214 msgid "Your account has been successfully created!" msgstr "Fiókja sikeresen létrehozva!" #: features/functions.php:678 #: front-end/extra-fields/recaptcha/recaptcha.php:374 #: front-end/extra-fields/recaptcha/recaptcha.php:379 #: front-end/extra-fields/recaptcha/recaptcha.php:421 #: front-end/extra-fields/recaptcha/recaptcha.php:458 msgid "Please enter a (valid) reCAPTCHA value" msgstr "Kérem adjon meg egy (valós) reCAPTCHA értéket" #: front-end/extra-fields/recaptcha/recaptcha.php:421 msgid "Click the BACK button on your browser, and try again." msgstr "Kattintson a VISSZA gombra a böngészőjében, és próbálja újra." #: front-end/extra-fields/upload/upload_helper_functions.php:78 #: front-end/extra-fields/upload/upload_helper_functions.php:87 msgid "Sorry, you cannot upload this file type for this field." msgstr "Sajnáljuk, ilyen fájl típust nem tölthet fel ebbe a mezőbe." #: front-end/extra-fields/upload/upload_helper_functions.php:94 msgid "An error occurred, please try again later." msgstr "Valami hiba történt, kérem, próbálja meg később." #: modules/user-listing/userlisting.php:282 msgid "More" msgstr "Több" #: modules/user-listing/userlisting.php:376 msgid "You do not have permission to view this user list." msgstr "Önnek nincs joga a felhasználói lista megtekintésére." #: modules/user-listing/userlisting.php:389 msgid "You do not have the required user role to view this user list." msgstr "Önnek nincs meg a megfelelő jogosultsága ahhoz, hogy ezt a felhasználólistát megnyissa." #: modules/user-listing/userlisting.php:2186 msgid "Ascending" msgstr "Növekvő" #: modules/user-listing/userlisting.php:2187 msgid "Descending" msgstr "Csökkenő" #: admin/add-ons.php:148 admin/add-ons.php:248 #: admin/pms-cross-promotion.php:134 admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "Letöltés most" #: admin/admin-functions.php:200 msgid "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. " msgstr "" #: admin/manage-fields.php:80 msgid "Choose one of the supported field types" msgstr "Válassz egyet a támogatott mező formátumokból" #: admin/manage-fields.php:82 msgid ". Extra Field Types are available in Hobbyist or PRO versions." msgstr "" #: admin/manage-fields.php:129 msgid "Site Key" msgstr "" #: admin/manage-fields.php:129 msgid "The site key from Google, www.google.com/recaptcha" msgstr "" #: admin/manage-fields.php:130 msgid "Secret Key" msgstr "" #: admin/manage-fields.php:130 msgid "The secret key from Google, www.google.com/recaptcha" msgstr "" #: admin/manage-fields.php:1020 msgid "You must enter the site key\n" msgstr "" #: admin/manage-fields.php:1022 msgid "You must enter the secret key\n" msgstr "" #: admin/add-ons.php:10 admin/add-ons.php:32 msgid "Add-Ons" msgstr "Bővítmények" #: admin/add-ons.php:34 admin/add-ons.php:129 admin/add-ons.php:231 #: admin/pms-cross-promotion.php:78 admin/pms-cross-promotion.php:114 #: admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "Aktivál" #: admin/add-ons.php:36 admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "Letöltés és telepítés" #: admin/add-ons.php:37 admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "Telepítés kész" #: admin/add-ons.php:39 msgid "Add-On is Active" msgstr "" #: admin/add-ons.php:40 msgid "Add-On has been activated" msgstr "" #: admin/add-ons.php:41 admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "Telepítés megismétlése" #: admin/add-ons.php:43 admin/add-ons.php:140 msgid "Add-On is active" msgstr "" #: admin/add-ons.php:44 admin/add-ons.php:138 msgid "Add-On is inactive" msgstr "" #: admin/add-ons.php:46 admin/add-ons.php:133 admin/add-ons.php:235 #: admin/pms-cross-promotion.php:90 admin/pms-cross-promotion.php:118 #: admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "Kikapcsol" #: admin/add-ons.php:47 msgid "Add-On has been deactivated." msgstr "" #: admin/add-ons.php:59 msgid "Something went wrong, we could not connect to the server. Please try again later." msgstr "Hiba történt és nem tudtunk csatlakozni a szerverhez. Kérjük, próbáld újra később." #: admin/pms-cross-promotion.php:137 admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "Telepítés most" #: admin/add-ons.php:153 admin/add-ons.php:251 #: admin/pms-cross-promotion.php:141 admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "Kompatibilis a te Profile Builder verzióddal." #: admin/add-ons.php:162 msgid "Upgrade Profile Builder" msgstr "Profile Builder frissítése" #: admin/add-ons.php:163 msgid "Not compatible with Profile Builder" msgstr "Nem kompatibilis a Profile Builder-rel" #: admin/add-ons.php:171 msgid "Not compatible with your version of Profile Builder." msgstr "Nem kompatibilis a te Profile Builder verzióddal." #: admin/add-ons.php:172 msgid "Minimum required Profile Builder version:" msgstr "A minimálisan elvárt Profile Builder verzió:" #: admin/add-ons.php:177 msgid "Could not install add-on. Retry or install manually." msgstr "" #: front-end/default-fields/email/email.php:51 msgid "You must enter a valid email address." msgstr "Érvényes e-mail címet kell megadnod." #: front-end/default-fields/username/username.php:52 #: front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "Ez a felhasználónév érvénytelen, mert nem megengedett karaktereket használ." #: front-end/default-fields/username/username.php:52 #: front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "Kérjük, adj meg egy érvényes felhasználónevet." #: front-end/extra-fields/user-role/user-role.php:72 #: front-end/extra-fields/user-role/user-role.php:85 msgid "Only administrators can see this field on edit profile forms." msgstr "Csak az adminisztrátorok láthatják ezt a mezőt a profilszerkesztő űrlapon." #: front-end/extra-fields/user-role/user-role.php:81 msgid "As an administrator you cannot change your role." msgstr "Mint adminisztrátor, Ön nem módosíthatja saját jogosultságát." #: modules/email-customizer/admin-email-customizer.php:117 msgid "" "\n" "

            {{username}} has requested a password change via the password reset feature.

            \n" "

            His/her new password is: {{password}}

            \n" msgstr "" "\n" "

            {{username}} új jelszót igényelt a jelszó újraigénylő funkcióval.

            \n" "

            Az új jelszó: {{password}}

            \n" #: modules/email-customizer/admin-email-customizer.php:141 msgid "Admin Notification for User Password Reset" msgstr "" #: modules/email-customizer/email-customizer.php:46 msgid "Reset Key" msgstr "" #: modules/email-customizer/email-customizer.php:47 msgid "Reset Url" msgstr "" #: modules/email-customizer/email-customizer.php:48 msgid "Reset Link" msgstr "" #: modules/email-customizer/user-email-customizer.php:204 msgid "" "\n" "

            Someone requested that the password be reset for the following account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            \n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" msgstr "" "\n" "

            Új jelszóigénylés érkezett a következő fiókra: {{site_name}}
            \n" "Felhasználónév: {{username}}

            \n" "

            Ha ez véletlen történt, nyugodtan hagyd figyelmen kívül ezt a levelet és semmi sem fog történni.

            \n" "

            Az új jelszó igényléséhez látogasd meg a következő címet:
            \n" "{{{reset_link}}}

            \n" #: modules/email-customizer/user-email-customizer.php:218 msgid "[{{site_name}}] Password Reset" msgstr "[{{site_name}}] Új jelszó beállítása" #: modules/email-customizer/user-email-customizer.php:229 msgid "Password Reset Email" msgstr "Új jelszó igénylő e-mail" #: modules/email-customizer/user-email-customizer.php:235 msgid "" "\n" "

            You have successfully reset your password to: {{password}}

            \n" msgstr "" "\n" "

            Sikeresen megváltoztattad a jelszavadat a következőre: {{password}}

            \n" #: modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset Successfully" msgstr "[{{site_name}}] Új jelszó sikeresen beállítva" #: modules/email-customizer/user-email-customizer.php:256 msgid "Password Reset Success Email" msgstr "Új jelszó sikeresen beállítva e-mail" #: modules/user-listing/userlisting.php:159 msgid "User Nicename" msgstr "" #: modules/user-listing/userlisting.php:499 msgid "None" msgstr "Nincs" #: admin/admin-functions.php:132 msgid "ERROR: The password must have the minimum length of %s characters" msgstr "HIBA: A jelszónak minimum %s karakteresnek kell lennie" #: admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr "HIBA: A jelszónak minimum %s erősnek kell lennie" #: admin/general-settings.php:163 msgid "Username and Email" msgstr "Felhasználónév és Email" #: admin/general-settings.php:168 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "\"Felhasználónév és Email\". a belépéshez a felhasználónevét és email címét is használhatja." #: admin/general-settings.php:169 msgid "\"Username\" - users can Log In only with Username." msgstr "\"Felhasználónév\" . csak a felhasználónevet használhatja belépéshez." #: admin/general-settings.php:170 msgid "\"Email\" - users can Log In only with Email." msgstr "\"Email\" . csak az email címét használhatja belépéshez." #: admin/manage-fields.php:122 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "Határozza meg a fájlkiterjesztés(eke)t, amiket a felhasználó feltöltéskor használhat
            Például: .ext1,.ext2,.ext3
            alapbeállítás (beállítás nélkül): .jpg,.jpeg,.gif,.png (.*)" #: admin/manage-fields.php:123 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)" msgstr "Határozza meg a fájlkiterjesztés(eke)t, amiket a felhasználó feltöltéskor használhat
            Például: .ext1,.ext2,.ext3
            (beállítás nélkül): .a WordPress által engedélyezettek (.*)" #: admin/manage-fields.php:133 msgid "User Roles" msgstr "Felhasználói engedélyek" #: admin/manage-fields.php:133 msgid "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "Válaszd ki, hogy a felhasználók mihez férhetnek hozzá (húzd és vidd a módosításhoz)" #: admin/manage-fields.php:134 msgid "User Roles Order" msgstr "Felhasználói engedélyek rendezése" #: admin/manage-fields.php:134 msgid "Save the user role order from the user roles checkboxes" msgstr "" #: admin/manage-fields.php:1125 msgid "Please select at least one user role\n" msgstr "Legalább egy engedélyt választani kell \n" #: admin/register-version.php:22 msgid "Profile Builder Register" msgstr "Profile Builder Regisztráció" #: admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "A széria szám hamarosan lejár!" #: admin/register-version.php:81 msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr "Sorozatszáma hamarosan lejár, kérem %1$s Újítsa meg Licenszét%2$s. " #: admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr "Sorozatszáma lejárt, kérem %1$s Újítsa meg Licenszét%2$s." #: assets/lib/wck-api/wordpress-creation-kit.php:334 msgid "Add Entry" msgstr "Bejegyzés hozzáadása" #: features/email-confirmation/class-email-confirmation.php:91 msgid "show" msgstr "Megmutat" #: features/functions.php:736 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" msgstr "" #: front-end/class-formbuilder.php:643 msgid "User to edit:" msgstr "Szerkesztendő felhasználó:" #: front-end/default-fields/password/password.php:46 front-end/recover.php:254 msgid "The password must have the minimum length of %s characters" msgstr "A jelszónak minimum %s karakter hosszúnak kell lennie" #: front-end/default-fields/password/password.php:50 front-end/recover.php:258 msgid "The password must have a minimum strength of %s" msgstr "A jelszónak minimum %s erősnek kell lennie" #: front-end/extra-fields/user-role/user-role.php:118 msgid "You cannot register this user role" msgstr "Nem regisztrálhatsz ilyen felhasználóként" #: front-end/login.php:153 msgid "username or email" msgstr "felhasználónév vagy email" #: front-end/login.php:222 msgid "Username or Email" msgstr "Felhasználónév vagy Email" #: front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "Jelenleg bejelentkezve mint %s." #: front-end/logout.php:15 msgid "Log out »" msgstr "Kijelentkezés »" #: modules/custom-redirects/custom_redirects_admin.php:92 #: modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "Felhasználói engedély" #: modules/user-listing/userlisting.php:2100 msgid "View all extra shortcode parameters" msgstr "Minden extra shortcode paraméter mutatása" #: modules/user-listing/userlisting.php:2114 msgid "displays only the users that you specified the user_id for" msgstr "csak azon felhasználók megjelenítése akik a user_id" #: modules/user-listing/userlisting.php:2120 msgid "displays all users except the ones you specified the user_id for" msgstr "csak azon felhasználók mutatása akiknél nem szerepel a user_id" #: features/functions.php:566 msgid "Minimum length of %d characters" msgstr "Minimum %d karakter hosszú" #: front-end/class-formbuilder.php:135 front-end/class-formbuilder.php:138 msgid "This message is only visible by administrators" msgstr "Ez az üzenet csak az adminisztrátorok számára látható" #: modules/user-listing/userlisting.php:413 msgid "User not found" msgstr "Felhasználó nem található" #: modules/email-customizer/admin-email-customizer.php:38 #: modules/email-customizer/user-email-customizer.php:38 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "" #: admin/admin-bar.php:48 msgid "Choose which user roles view the admin bar in the front-end of the website." msgstr "Válaszd ki melyik felhasználói szerepkörök láthatják az admin bar-t a weboldalon front-end." #: admin/manage-fields.php:127 msgid "Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes" msgstr "" #: admin/manage-fields.php:1052 msgid "The meta-name cannot be empty\n" msgstr "" #: admin/register-version.php:69 msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received" msgstr "" #: admin/register-version.php:243 msgid "

            Your Profile Builder serial number is invalid or missing.
            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

            " msgstr "" #: assets/lib/wck-api/fields/country select.php:14 #: assets/lib/wck-api/fields/cpt select.php:17 #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36 #: front-end/extra-fields/select-cpt/select-cpt.php:60 msgid "...Choose" msgstr "... Válassz" #: features/class-list-table.php:526 features/class-list-table.php:942 msgid "1 item" msgid_plural "%s items" msgstr[0] "1 elem" msgstr[1] "" #: features/functions.php:552 msgid "Very Weak" msgstr "Nagyon Gyenge" #: features/functions.php:640 msgid "This field is required" msgstr "Ez kötelező mező!" #: features/functions.php:704 msgid "Cancel" msgstr "Mégsem" #: features/functions.php:740 msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s" msgstr "" #: front-end/login.php:144 msgid "Invalid username." msgstr "Nem megfelelő felhasználónév" #: front-end/login.php:149 front-end/login.php:153 msgid "username" msgstr "felhasználónév" #: front-end/login.php:149 msgid "email" msgstr "email" #: front-end/login.php:256 msgid "Lost your password?" msgstr "Elfelejtette a jelszavát?" #: index.php:34 msgid " is also activated. You need to deactivate it before activating this version of the plugin." msgstr "már aktiválva. Deaktiváld mielőtt aktiválod a plugin ezen verzióját." #: modules/email-customizer/admin-email-customizer.php:54 #: modules/email-customizer/user-email-customizer.php:54 msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email" msgstr "" #: features/email-confirmation/email-confirmation.php:573 #: features/email-confirmation/email-confirmation.php:582 #: modules/email-customizer/email-customizer.php:487 #: modules/email-customizer/email-customizer.php:494 #: modules/email-customizer/email-customizer.php:508 msgid "Your selected password at signup" msgstr "A regisztrációkor választott jelszavad" #: modules/email-customizer/user-email-customizer.php:38 msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save." msgstr "" #: modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "Az űrlap üres." #: modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "Minden elem törlése" #: modules/multiple-forms/multiple-forms.php:406 msgid "Delete all" msgstr "Mindent töröl" #: modules/user-listing/userlisting.php:1592 msgid "Choose..." msgstr "Válassz ..." #: modules/user-listing/userlisting.php:2196 msgid "Set the number of users to be displayed on every paginated part of the all-userlisting" msgstr "Válaszd ki az egy oldalon megjeleníthető felhasználók számát" #: admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "Mutat/elrejt az Admin Bar a Front-end-en" #: admin/admin-bar.php:10 admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "Admin Bar beállítások" #: admin/admin-bar.php:57 msgid "User-Role" msgstr "Felhasználói-szerepek" #: admin/admin-bar.php:58 msgid "Visibility" msgstr "Láthatóság" #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "Alapértelmezett" #: admin/admin-bar.php:74 msgid "Show" msgstr "Mutat" #: admin/admin-bar.php:75 modules/user-listing/userlisting.php:1537 msgid "Hide" msgstr "Elrejt" #: admin/admin-bar.php:86 admin/general-settings.php:208 #: admin/register-version.php:95 features/functions.php:697 #: modules/modules.php:127 msgid "Save Changes" msgstr "Változások mentése" #: admin/admin-functions.php:37 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 )" msgstr "" #: admin/admin-functions.php:37 admin/general-settings.php:10 #: admin/general-settings.php:38 msgid "General Settings" msgstr "Általános beállítások" #: admin/admin-functions.php:137 admin/general-settings.php:194 msgid "Very weak" msgstr "Nagyon gyenge" #: admin/admin-functions.php:137 admin/general-settings.php:195 #: features/functions.php:552 msgid "Weak" msgstr "Gyenge" #: admin/admin-functions.php:137 admin/general-settings.php:196 #: features/functions.php:552 msgid "Medium" msgstr "Közepes" #: admin/admin-functions.php:137 admin/general-settings.php:197 #: features/functions.php:552 msgid "Strong" msgstr "Erős" #: admin/admin-functions.php:187 msgid "Add Field" msgstr "Mező hozzáadása" #: admin/admin-functions.php:189 #: modules/class-mustache-templates/class-mustache-templates.php:390 msgid "Save Settings" msgstr "Beállítások mentése" #: admin/basic-info.php:10 msgid "Basic Information" msgstr "Alap információ" #: admin/basic-info.php:29 msgid "Version %s" msgstr "" #: admin/basic-info.php:30 msgid "Profile Builder " msgstr "Profile Builder " #: admin/basic-info.php:31 msgid "The best way to add front-end registration, edit profile and login forms." msgstr "" #: admin/basic-info.php:33 msgid "For Modern User Interaction" msgstr "" #: admin/basic-info.php:36 features/login-widget/login-widget.php:59 msgid "Login" msgstr "Bejelentkezés" #: admin/basic-info.php:40 msgid "Registration" msgstr "Regisztráció" #: admin/basic-info.php:44 msgid "Edit Profile" msgstr "Profil szerkesztése" #: admin/basic-info.php:51 msgid "Extra Features" msgstr "Extra funkciók" #: admin/basic-info.php:52 msgid "Features that give you more control over your users, increased security and help you fight user registration spam." msgstr "" #: admin/basic-info.php:53 msgid "Enable extra features" msgstr "" #: admin/basic-info.php:57 msgid "Recover Password" msgstr "Jelszó helyreállítása" #: admin/basic-info.php:61 msgid "Admin Approval (*)" msgstr "" #: admin/basic-info.php:62 msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI." msgstr "" #: admin/basic-info.php:65 msgid "Email Confirmation" msgstr "E-mail megerősítés" #: admin/basic-info.php:66 msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address." msgstr "" #: admin/basic-info.php:69 msgid "Minimum Password Length and Strength Meter" msgstr "Jelszó minimális hosszának és erősségének mérése" #: admin/basic-info.php:70 msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength." msgstr "" #: admin/basic-info.php:73 msgid "Login with Email or Username" msgstr "Bejelentkezés e-mail címmel vagy felhasználónévvel" #: admin/basic-info.php:74 msgid "Allow users to log in with their email or username when accessing your site." msgstr "" #: admin/basic-info.php:87 msgid "Customize Your Forms The Way You Want (*)" msgstr "" #: admin/basic-info.php:88 msgid "With Extra Profile Fields you can create the exact registration form your project needs." msgstr "" #: admin/basic-info.php:90 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "" #: admin/basic-info.php:92 msgid "Get started with extra fields" msgstr "" #: admin/basic-info.php:95 msgid "Avatar Upload" msgstr "Avatar feltöltése" #: admin/basic-info.php:96 msgid "Generic Uploads" msgstr "" #: admin/basic-info.php:97 msgid "Agree To Terms Checkbox" msgstr "Szabályzat elfogadása checkdoboz" #: admin/basic-info.php:98 msgid "Datepicker" msgstr "" #: admin/basic-info.php:101 msgid "reCAPTCHA" msgstr "" #: admin/basic-info.php:102 msgid "Country Select" msgstr "Ország kiválasztása" #: admin/basic-info.php:104 msgid "Timezone Select" msgstr "Időzóna kiválasztása" #: admin/basic-info.php:108 msgid "Input / Hidden Input" msgstr "" #: admin/basic-info.php:110 msgid "Checkbox" msgstr "" #: admin/basic-info.php:111 msgid "Select" msgstr "Választ" #: admin/basic-info.php:112 msgid "Radio Buttons" msgstr "" #: admin/basic-info.php:113 msgid "Textarea" msgstr "" #: admin/basic-info.php:125 msgid "Powerful Modules (**)" msgstr "" #: admin/basic-info.php:126 msgid "Everything you will need to manage your users is probably already available using the Pro Modules." msgstr "" #: admin/basic-info.php:128 msgid "Enable your modules" msgstr "" #: admin/basic-info.php:131 msgid "Find out more about PRO Modules" msgstr "" #: admin/basic-info.php:136 modules/modules.php:89 #: modules/user-listing/userlisting.php:11 #: modules/user-listing/userlisting.php:12 #: modules/user-listing/userlisting.php:17 #: modules/user-listing/userlisting.php:23 msgid "User Listing" msgstr "" #: admin/basic-info.php:138 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." msgstr "" #: admin/basic-info.php:144 msgid "Email Customizer" msgstr "E-mail testreszabás" #: admin/basic-info.php:145 msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval." msgstr "" #: admin/basic-info.php:148 #: modules/custom-redirects/custom_redirects_admin.php:32 #: modules/custom-redirects/custom_redirects_admin.php:33 #: modules/modules.php:110 msgid "Custom Redirects" msgstr "" #: admin/basic-info.php:149 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." msgstr "" #: admin/basic-info.php:154 modules/modules.php:75 msgid "Multiple Registration Forms" msgstr "" #: admin/basic-info.php:155 msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users." msgstr "" #: admin/basic-info.php:158 modules/modules.php:82 msgid "Multiple Edit-profile Forms" msgstr "" #: admin/basic-info.php:159 msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles." msgstr "" #: admin/basic-info.php:187 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr "* csak a %1$sHobbyist és Pro verziókban%2$s elérhető." #: admin/basic-info.php:188 msgid "** only available in the %1$sPro version%2$s." msgstr "** Csak a %1$sPro version%2$s tartalmazza." #: admin/general-settings.php:42 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "" #: admin/general-settings.php:45 admin/general-settings.php:58 #: admin/general-settings.php:107 #: 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:2201 msgid "Yes" msgstr "Igen" #: admin/general-settings.php:47 msgid "You can find the default file here: %1$s" msgstr "" #: admin/general-settings.php:54 msgid "\"Email Confirmation\" Activated:" msgstr "" #: admin/general-settings.php:59 admin/general-settings.php:108 #: modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:229 #: modules/multiple-forms/register-forms.php:230 msgid "No" msgstr "Nem" #: admin/general-settings.php:64 msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s." msgstr "" #: admin/general-settings.php:72 msgid "\"Email Confirmation\" Landing Page:" msgstr "" #: admin/general-settings.php:77 msgid "Existing Pages" msgstr "Létező oldalak" #: admin/general-settings.php:92 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." msgstr "" #: admin/general-settings.php:103 msgid "\"Admin Approval\" Activated:" msgstr "\"Adminisztrátori Jóváhagyás\" aktiválva:" #: admin/general-settings.php:111 msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "" #: admin/general-settings.php:149 msgid "\"Admin Approval\" Feature:" msgstr "" #: admin/general-settings.php:152 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." msgstr "" #: admin/general-settings.php:159 msgid "Allow Users to Log in With:" msgstr "" #: admin/general-settings.php:164 admin/manage-fields.php:198 #: features/admin-approval/class-admin-approval.php:166 #: features/email-confirmation/class-email-confirmation.php:167 #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218 #: modules/custom-redirects/custom_redirects_admin.php:56 #: modules/email-customizer/email-customizer.php:28 #: modules/user-listing/userlisting.php:102 #: modules/user-listing/userlisting.php:277 #: modules/user-listing/userlisting.php:730 #: modules/user-listing/userlisting.php:2152 msgid "Username" msgstr "Felhasználónév" #: admin/general-settings.php:165 front-end/login.php:215 #: modules/email-customizer/email-customizer.php:29 #: modules/user-listing/userlisting.php:736 #: modules/user-listing/userlisting.php:2153 msgid "Email" msgstr "E-mail" #: admin/general-settings.php:177 msgid "Minimum Password Length:" msgstr "Minimális jelszó hosszúság:" #: admin/general-settings.php:182 msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit" msgstr "Add meg, hogy minimum hány karakteresnek kell lennie a jelszónak. Hagyd üresen, ha nem akarsz limitet meghatározni." #: admin/general-settings.php:189 msgid "Minimum Password Strength:" msgstr "Minimális jelszóerősség:" #: admin/general-settings.php:193 msgid "Disabled" msgstr "Kikapcsolva" #: admin/manage-fields.php:12 msgid "Manage Fields" msgstr "Mezők kezelése" #: admin/manage-fields.php:13 msgid "Manage Default and Extra Fields" msgstr "Alapértelmezett és extra mezők beállítása" #: admin/manage-fields.php:116 msgid "Field Title" msgstr "Mezőcím" #: admin/manage-fields.php:116 msgid "Title of the field" msgstr "Mező címe" #: admin/manage-fields.php:117 #: modules/multiple-forms/edit-profile-forms.php:245 #: modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "Mező" #: admin/manage-fields.php:118 msgid "Meta-name" msgstr "" #: admin/manage-fields.php:119 #: modules/custom-redirects/custom_redirects_admin.php:65 #: modules/custom-redirects/custom_redirects_admin.php:95 #: modules/custom-redirects/custom_redirects_admin.php:114 #: modules/custom-redirects/custom_redirects_admin.php:139 #: modules/multiple-forms/edit-profile-forms.php:246 #: modules/multiple-forms/register-forms.php:267 msgid "ID" msgstr "" #: admin/manage-fields.php:119 #: modules/multiple-forms/edit-profile-forms.php:246 #: modules/multiple-forms/register-forms.php:267 msgid "A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be edited" msgstr "" #: admin/manage-fields.php:120 msgid "Description" msgstr "Leírás" #: admin/manage-fields.php:120 msgid "Enter a (detailed) description of the option for end users to read
            Optional" msgstr "" #: admin/manage-fields.php:121 msgid "Row Count" msgstr "" #: admin/manage-fields.php:121 msgid "Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5" msgstr "" #: admin/manage-fields.php:122 msgid "Allowed Image Extensions" msgstr "" #: admin/manage-fields.php:123 msgid "Allowed Upload Extensions" msgstr "" #: admin/manage-fields.php:124 msgid "Avatar Size" msgstr "Avatar méret" #: admin/manage-fields.php:124 msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100" msgstr "" #: admin/manage-fields.php:125 msgid "Date-format" msgstr "Dátum formátum" #: admin/manage-fields.php:126 msgid "Terms of Agreement" msgstr "" #: admin/manage-fields.php:126 msgid "Enter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>" msgstr "" #: admin/manage-fields.php:127 msgid "Options" msgstr "Beállítások" #: admin/manage-fields.php:128 msgid "Labels" msgstr "" #: admin/manage-fields.php:128 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "" #: admin/manage-fields.php:135 msgid "Default Value" msgstr "Alapértelmezett érték" #: admin/manage-fields.php:135 msgid "Default value of the field" msgstr "A mező alapértelmezett értéke" #: admin/manage-fields.php:136 admin/manage-fields.php:138 #: admin/manage-fields.php:139 admin/manage-fields.php:140 msgid "Default Option" msgstr "Alapértelmezett beállítás" #: admin/manage-fields.php:136 msgid "Specify the option which should be selected by default" msgstr "" #: admin/manage-fields.php:137 msgid "Default Option(s)" msgstr "Alapértelmezett beállítás(ok)" #: admin/manage-fields.php:137 msgid "Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)" msgstr "" #: admin/manage-fields.php:151 msgid "Default Content" msgstr "" #: admin/manage-fields.php:151 msgid "Default value of the textarea" msgstr "" #: admin/manage-fields.php:158 msgid "Required" msgstr "" #: admin/manage-fields.php:158 msgid "Whether the field is required or not" msgstr "" #: admin/manage-fields.php:159 msgid "Overwrite Existing" msgstr "" #: admin/manage-fields.php:159 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
            Use this at your own risk" msgstr "" #: admin/manage-fields.php:165 msgid "Field Properties" msgstr "" #: admin/manage-fields.php:178 msgid "Registration & Edit Profile" msgstr "Regisztráció és profil szerkesztése" #: admin/manage-fields.php:197 msgid "Name" msgstr "Név" #: admin/manage-fields.php:198 msgid "Usernames cannot be changed." msgstr "A felhasználónevet nem lehet megváltoztatni." #: admin/manage-fields.php:199 msgid "First Name" msgstr "Vezetéknév" #: admin/manage-fields.php:200 msgid "Last Name" msgstr "Keresztnév" #: admin/manage-fields.php:201 modules/user-listing/userlisting.php:769 #: modules/user-listing/userlisting.php:2160 msgid "Nickname" msgstr "Becenév" #: admin/manage-fields.php:202 msgid "Display name publicly as" msgstr "Megjelenítendő név" #: admin/manage-fields.php:203 msgid "Contact Info" msgstr "Elérhetőségek" #: admin/manage-fields.php:204 #: features/admin-approval/class-admin-approval.php:169 #: features/email-confirmation/class-email-confirmation.php:168 #: modules/user-listing/userlisting.php:108 msgid "E-mail" msgstr "E-mail" #: admin/manage-fields.php:205 modules/email-customizer/email-customizer.php:32 #: modules/user-listing/userlisting.php:111 #: modules/user-listing/userlisting.php:751 #: modules/user-listing/userlisting.php:2154 msgid "Website" msgstr "Weboldal" #: admin/manage-fields.php:209 msgid "AIM" msgstr "AIM" #: admin/manage-fields.php:210 msgid "Yahoo IM" msgstr "Yahoo IM" #: admin/manage-fields.php:211 msgid "Jabber / Google Talk" msgstr "Jabber / Google Talk" #: admin/manage-fields.php:214 msgid "About Yourself" msgstr "" #: admin/manage-fields.php:215 modules/user-listing/userlisting.php:114 #: modules/user-listing/userlisting.php:754 #: modules/user-listing/userlisting.php:2155 msgid "Biographical Info" msgstr "" #: admin/manage-fields.php:215 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "" #: admin/manage-fields.php:216 front-end/recover.php:73 #: modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "Jelszó" #: admin/manage-fields.php:216 msgid "Type your password." msgstr "Írja be a jelszavát." #: admin/manage-fields.php:217 front-end/recover.php:74 msgid "Repeat Password" msgstr "Jelszó újra" #: admin/manage-fields.php:217 msgid "Type your password again. " msgstr "Kérjük, írd be a jelszavadat újra." #: admin/manage-fields.php:977 admin/manage-fields.php:1134 msgid "You must select a field\n" msgstr "Választanod kell egy mezőt" #: admin/manage-fields.php:987 msgid "Please choose a different field type as this one already exists in your form (must be unique)\n" msgstr "" #: admin/manage-fields.php:998 msgid "The entered avatar size is not between 20 and 200\n" msgstr "A beírt avatar méret nem 20 és 200 közötti\n" #: admin/manage-fields.php:1001 msgid "The entered avatar size is not numerical\n" msgstr "A megadott avatar méret nem numerikus érték\n" #: admin/manage-fields.php:1009 msgid "The entered row number is not numerical\n" msgstr "" #: admin/manage-fields.php:1012 msgid "You must enter a value for the row number\n" msgstr "" #: admin/manage-fields.php:1033 msgid "The entered value for the Datepicker is not a valid date-format\n" msgstr "" #: admin/manage-fields.php:1036 msgid "You must enter a value for the date-format\n" msgstr "" #: admin/manage-fields.php:1064 admin/manage-fields.php:1072 #: admin/manage-fields.php:1083 msgid "That meta-name is already in use\n" msgstr "" #: admin/manage-fields.php:1114 msgid "The following option(s) did not coincide with the ones in the options list: %s\n" msgstr "A következő lehetőség(ek) nem egyezik a lista egyik elemével sem: %s\n" #: admin/manage-fields.php:1118 msgid "The following option did not coincide with the ones in the options list: %s\n" msgstr "" #: admin/manage-fields.php:1141 msgid "That field is already added in this form\n" msgstr "" #: admin/manage-fields.php:1190 msgid "
            Title
            Type
            Meta Name
            Required
            " msgstr "" #: admin/manage-fields.php:1190 #: assets/lib/wck-api/wordpress-creation-kit.php:438 #: assets/lib/wck-api/wordpress-creation-kit.php:535 #: features/admin-approval/class-admin-approval.php:108 #: features/functions.php:718 features/functions.php:725 #: modules/custom-redirects/custom_redirects_admin.php:179 #: modules/custom-redirects/custom_redirects_admin.php:193 #: modules/custom-redirects/custom_redirects_admin.php:207 #: modules/custom-redirects/custom_redirects_admin.php:221 #: modules/multiple-forms/multiple-forms.php:406 msgid "Edit" msgstr "Szerkeszt" #: admin/manage-fields.php:1190 #: assets/lib/wck-api/wordpress-creation-kit.php:438 #: assets/lib/wck-api/wordpress-creation-kit.php:536 #: features/admin-approval/class-admin-approval.php:113 #: features/admin-approval/class-admin-approval.php:224 #: features/email-confirmation/class-email-confirmation.php:120 #: features/email-confirmation/class-email-confirmation.php:217 #: features/functions.php:711 features/functions.php:725 #: modules/custom-redirects/custom_redirects_admin.php:179 #: modules/custom-redirects/custom_redirects_admin.php:193 #: modules/custom-redirects/custom_redirects_admin.php:207 #: modules/custom-redirects/custom_redirects_admin.php:221 msgid "Delete" msgstr "Töröl" #: admin/manage-fields.php:1205 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "" #: admin/register-version.php:14 msgid "Register Your Version" msgstr "" #: admin/register-version.php:14 msgid "Register Version" msgstr "" #: admin/register-version.php:70 msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support." msgstr "" #: admin/register-version.php:72 msgid " Serial Number:" msgstr "Sorozatszám:" #: admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "A sorozatszám sikeresen aktiválva!" #: admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "A beírt sorozatszámot nem lehet aktiválni!" #: admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "A beírt sorozatszám nem aktiválható, mert már lejárt." #: admin/register-version.php:85 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!" msgstr "" #: admin/register-version.php:87 msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "" #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725 msgid "Content" msgstr "Tartalom" #: assets/lib/wck-api/wordpress-creation-kit.php:535 msgid "Edit this item" msgstr "Elem szerkesztése" #: assets/lib/wck-api/wordpress-creation-kit.php:536 msgid "Delete this item" msgstr "Elem törlése" #: assets/lib/wck-api/wordpress-creation-kit.php:705 msgid "Please enter a value for the required field " msgstr "" #: front-end/extra-fields/upload/upload.php:122 msgid "Select File" msgstr "Fájl kiválasztása" #: assets/lib/wck-api/fields/upload.php:43 #: front-end/extra-fields/upload/upload.php:112 msgid "Remove" msgstr "Törlés" #: assets/lib/wck-api/fields/nested repeater.php:8 msgid "You can add the information for the %s after you add a entry" msgstr "" #: assets/lib/wck-api/fields/upload.php:75 #: front-end/extra-fields/upload/upload.php:128 msgid "Upload " msgstr "Feltöltés" #: features/class-list-table.php:184 msgid "No items found." msgstr "Nem találhatóak elemek." #: features/class-list-table.php:308 msgid "Bulk Actions" msgstr "" #: features/class-list-table.php:318 msgid "Apply" msgstr "" #: features/class-list-table.php:402 msgid "Show all dates" msgstr "" #: features/class-list-table.php:415 msgid "%1$s %2$d" msgstr "" #: features/class-list-table.php:431 msgid "List View" msgstr "Lista nézet" #: features/class-list-table.php:432 msgid "Excerpt View" msgstr "" #: features/class-list-table.php:458 msgid "%s pending" msgstr "" #: features/class-list-table.php:566 msgid "%1$s of %2$s" msgstr "" #: features/class-list-table.php:713 msgid "Select All" msgstr "Minden kijelölése" #: features/functions.php:526 msgid "Strength indicator" msgstr "Erősség jelző" #: features/admin-approval/admin-approval.php:14 #: features/admin-approval/class-admin-approval.php:453 msgid "Admin Approval" msgstr "" #: features/admin-approval/admin-approval.php:28 #: features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "" #: features/admin-approval/admin-approval.php:51 msgid "Your session has expired! Please refresh the page and try again" msgstr "" #: features/admin-approval/admin-approval.php:64 msgid "User successfully approved!" msgstr "Felhasználó sikeresen jóváhagyva!" #: features/admin-approval/admin-approval.php:74 msgid "User successfully unapproved!" msgstr "Felhasználó sikeresen elutasítva!" #: features/admin-approval/admin-approval.php:80 msgid "User successfully deleted!" msgstr "Felhasználó sikeresen törölve!" #: features/admin-approval/admin-approval.php:85 #: features/admin-approval/admin-approval.php:129 #: features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "Nincs engedélyed erre a műveletre vagy hiba történhetett!" #: features/admin-approval/admin-approval.php:96 msgid "Your session has expired! Please refresh the page and try again." msgstr "" #: features/admin-approval/admin-approval.php:108 msgid "Users successfully approved!" msgstr "A felhasználók sikeresen jóváhagyva!" #: features/admin-approval/admin-approval.php:117 msgid "Users successfully unapproved!" msgstr "A felhasználók sikeresen elutasítva!" #: features/admin-approval/admin-approval.php:125 msgid "Users successfully deleted!" msgstr "A felhasználók sikeresen törölve!" #: features/admin-approval/admin-approval.php:145 msgid "Your account on %1$s has been approved!" msgstr "A következő oldalon: %1$s lévő fiókod sikeresen elfogadva!" #: features/admin-approval/admin-approval.php:146 #: features/admin-approval/admin-approval.php:149 msgid "approved" msgstr "elfogadva" #: features/admin-approval/admin-approval.php:148 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "A következő oldalon: %1$s (%2$s) lévő fiókod sikeresen elfogadásra került." #: features/admin-approval/admin-approval.php:153 msgid "Your account on %1$s has been unapproved!" msgstr "A következő oldalon: %1$s létrehozott fiókod elutasításra került!" #: features/admin-approval/admin-approval.php:154 #: features/admin-approval/admin-approval.php:157 msgid "unapproved" msgstr "elutasítva" #: features/admin-approval/admin-approval.php:156 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "A következő oldalon: %1$s (%2$s) lévő fiókod elutasításra került." #: features/admin-approval/admin-approval.php:175 msgid "ERROR: Your account has to be confirmed by an administrator before you can log in." msgstr "HIBA!: Ahhoz, hogy be tudj lépni a fiókodba, előbb el kell fogadnunk a regisztrációdat. E-mailben értesítünk majd a jóváhagyásról." #: features/admin-approval/admin-approval.php:187 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature." msgstr "A fiókodat előbb jóvá kell hagynunk ahhoz, hogy használni tudd a Jelszó helyreállító funkciót." #: features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "felhasználó törlése?" #: features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "felhasználó elutasítása?" #: features/admin-approval/class-admin-approval.php:116 #: features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr "Elutasít" #: features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "Felhasználó elfogadása?" #: features/admin-approval/class-admin-approval.php:118 #: features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "Elfogad" #: features/admin-approval/class-admin-approval.php:167 #: modules/user-listing/userlisting.php:278 #: modules/user-listing/userlisting.php:742 #: modules/user-listing/userlisting.php:2157 msgid "Firstname" msgstr "Vezetéknév" #: features/admin-approval/class-admin-approval.php:168 #: modules/user-listing/userlisting.php:745 #: modules/user-listing/userlisting.php:2158 msgid "Lastname" msgstr "Keresztnév" #: features/admin-approval/class-admin-approval.php:170 #: modules/user-listing/userlisting.php:149 #: modules/user-listing/userlisting.php:279 #: modules/user-listing/userlisting.php:772 #: modules/user-listing/userlisting.php:2162 msgid "Role" msgstr "Szerep" #: features/admin-approval/class-admin-approval.php:171 #: features/email-confirmation/class-email-confirmation.php:169 msgid "Registered" msgstr "Regisztrált" #: features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "" #: features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "Szeretnéd csoportosan elfogadni a kiválasztott felhasználókat?" #: features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "Szeretnéd csoportosan elutasítani a kiválasztott felhasználókat?" #: features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "Szeretnéd csoportosan törölni a kiválasztott felhasználókat?" #: features/admin-approval/class-admin-approval.php:274 #: features/email-confirmation/class-email-confirmation.php:278 msgid "Sorry, but you don't have permission to do that!" msgstr "Elnézést, erre nincs engedélyed." #: features/admin-approval/class-admin-approval.php:339 msgid "Approved" msgstr "Elfogadva" #: features/admin-approval/class-admin-approval.php:341 msgid "Unapproved" msgstr "Elutasítva" #: features/admin-approval/class-admin-approval.php:456 #: features/email-confirmation/class-email-confirmation.php:454 msgid "All Users" msgstr "Összes felhasználó" #: features/email-confirmation/class-email-confirmation.php:120 msgid "delete this user from the _signups table?" msgstr "" #: features/email-confirmation/class-email-confirmation.php:121 msgid "confirm this email yourself?" msgstr "" #: features/email-confirmation/class-email-confirmation.php:121 #: features/email-confirmation/class-email-confirmation.php:218 msgid "Confirm Email" msgstr "E-mail megerősítése" #: features/email-confirmation/class-email-confirmation.php:122 msgid "resend the activation link?" msgstr "aktiváló link újraküldése?" #: features/email-confirmation/class-email-confirmation.php:122 #: features/email-confirmation/class-email-confirmation.php:219 msgid "Resend Activation Email" msgstr "Aktiváló E-mail újraküldése" #: features/email-confirmation/class-email-confirmation.php:249 msgid "%s couldn't be deleted" msgstr "" #: features/email-confirmation/class-email-confirmation.php:253 msgid "All users have been successfully deleted" msgstr "" #: features/email-confirmation/class-email-confirmation.php:263 msgid "The selected users have been activated" msgstr "" #: features/email-confirmation/class-email-confirmation.php:274 msgid "The selected users have had their activation emails resent" msgstr "" #: features/email-confirmation/class-email-confirmation.php:451 #: features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "" #: features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "" #: features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "A kiválasztott felhasználó nem törölhető." #: features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "" #: features/email-confirmation/email-confirmation.php:397 msgid "[%1$s] Activate %2$s" msgstr "" #: features/email-confirmation/email-confirmation.php:441 #: front-end/register.php:71 msgid "Could not create user!" msgstr "A felhasználó létrehozása nem sikerült." #: features/email-confirmation/email-confirmation.php:444 msgid "That username is already activated!" msgstr "Ez a felhasználónév már aktiválva van!" #: features/email-confirmation/email-confirmation.php:467 msgid "There was an error while trying to activate the user" msgstr "Hiba történt, amikor megpróbáltad aktiválni a felhasználót" #: features/email-confirmation/email-confirmation.php:515 #: modules/email-customizer/admin-email-customizer.php:73 msgid "A new subscriber has (been) registered!" msgstr "Új felhasználó regisztrált." #: features/email-confirmation/email-confirmation.php:518 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "" #: features/email-confirmation/email-confirmation.php:633 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!" msgstr "" #: features/email-confirmation/email-confirmation.php:569 msgid "[%1$s] Your new account information" msgstr "" #: features/email-confirmation/email-confirmation.php:580 msgid "Welcome to %1$s!


            Your username is:%2$s and password:%3$s" msgstr "Üdvözlünk a fedélzeten! A felhasználóneved:%2$s és a jelszavad:%3$s" #: features/email-confirmation/email-confirmation.php:641 #: front-end/register.php:125 msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email." msgstr "Ahhoz, hogy be tudj lépni a fiókodba, először jóvá kell hagynunk a regisztrációdat. E-mailben értesítünk, amint jóváhagytuk." #: features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "" #: features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "" #: front-end/class-formbuilder.php:399 front-end/login.php:250 msgid "Register" msgstr "Regisztrálok!" #: features/login-widget/login-widget.php:63 msgid "Title:" msgstr "Cím:" #: features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "" #: features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "" #: features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "" #: features/upgrades/upgrades-functions.php:91 #: features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "A felhasználónevek nem módosíthatóak." #: front-end/class-formbuilder.php:125 msgid "Only an administrator can add new users." msgstr "Csak adminisztrátor adhat hozzá új felhasználókat." #: front-end/class-formbuilder.php:135 msgid "Users can register themselves or you can manually create users here." msgstr "A felhasználók regisztrálhatják magukat vagy manuálisan te is létrehozhatod őket itt." #: front-end/class-formbuilder.php:138 msgid "Users cannot currently register themselves, but you can manually create users here." msgstr "A felhasználók jelenleg nem regisztrálhatják magukat, de te manuálisan hozzáadhatod őket itt." #: front-end/class-formbuilder.php:158 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "Belépve mint %1s. Nincs szüksége másik fiókra. %2s" #: front-end/class-formbuilder.php:158 msgid "Log out of this account." msgstr "Kijelentkezés ebből a fiókból." #: front-end/class-formbuilder.php:158 msgid "Logout" msgstr "Kijelentkezés" #: front-end/class-formbuilder.php:164 msgid "You must be logged in to edit your profile." msgstr "A profilod szerkesztéséhez be kell jelentkezned." #: features/functions.php:994 msgid "here" msgstr "itt" #: features/functions.php:995 msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s" msgstr "Hamarosan automatikusan át leszel irányítva. Ha több mint %1$d másodpercig látod ezt az ablakot, kérlek kattints %2$s.%3$s" #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306 msgid "The account %1s has been successfully created!" msgstr "A %1s fiók sikeresen létrehozva." #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312 msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link." msgstr "Ahhoz, hogy be tudj lépni a %1s fiókodba, előbb meg kell erősítened az e-mail címedet. Kérjük ellenőrizd a beérkező leveleidet és kattints az aktiváló linkre." #: front-end/class-formbuilder.php:308 msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email." msgstr "Ahhoz, hogy hozzáférj a %1s fiókodhoz, előbb el kell fogadnunk a regisztrációdat. A jóváhagyásról majd e-mailben értesítünk." #: front-end/class-formbuilder.php:331 msgid "Your profile has been successfully updated!" msgstr "A profilod sikeresen frissítve!" #: front-end/class-formbuilder.php:342 msgid "There was an error in the submitted form" msgstr "Valami hiba van az elküldött űrlapon" #: front-end/class-formbuilder.php:399 msgid "Add User" msgstr "Felhasználó hozzáadása" #: admin/add-ons.php:170 front-end/class-formbuilder.php:402 msgid "Update" msgstr "Frissítés" #: front-end/class-formbuilder.php:465 msgid "Send these credentials via email." msgstr "Adatok küldése saját részre e-mailben." #: front-end/extra-fields/extra-fields.php:94 front-end/login.php:137 #: front-end/login.php:144 front-end/login.php:158 front-end/recover.php:17 #: front-end/recover.php:237 msgid "ERROR" msgstr "HIBA" #: front-end/login.php:137 msgid "The password you entered is incorrect." msgstr "A begépelt jelszó hibás." #: front-end/login.php:138 front-end/login.php:145 msgid "Password Lost and Found." msgstr "Elfelejtett jelszó." #: front-end/login.php:138 front-end/login.php:145 msgid "Lost your password" msgstr "Elfelejtette jelszavát" #: front-end/login.php:158 msgid "Both fields are empty." msgstr "Mindkét mező üres." #: front-end/login.php:296 msgid "You are currently logged in as %1$s. %2$s" msgstr "Jelenleg bejelentkezve mint %1$s. %2$s" #: front-end/login.php:295 front-end/logout.php:25 msgid "Log out of this account" msgstr "Kijelentkezés ebből a fiókból" #: front-end/login.php:295 msgid "Log out" msgstr "Kijelentkezés" #: front-end/recover.php:17 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature." msgstr "A fiókodat meg kell, hogy erősítse egy adminisztrátor az \"Elfelejtett jelszó\" használata előtt." #: front-end/recover.php:94 msgid "Reset Password" msgstr "Új jelszó" #: front-end/recover.php:114 msgid "Please enter your username or email address." msgstr "Add meg a felhasználóneved vagy email címed!" #: front-end/recover.php:115 msgid "You will receive a link to create a new password via email." msgstr "E-mailben kapott linken keresztül új jelszót hozhatsz létre." #: front-end/recover.php:120 msgid "Username or E-mail" msgstr "Felhasználónév vagy E-mail" #: front-end/recover.php:130 msgid "Get New Password" msgstr "Új jelszót kérek!" #: front-end/recover.php:177 msgid "The username entered wasn't found in the database!" msgstr "A beírt felhasználónév nem található!" #: front-end/recover.php:177 msgid "Please check that you entered the correct username." msgstr "Kérjük ellenőrizd, hogy helyes felhasználónevet gépeltél be." #: front-end/recover.php:192 msgid "Check your e-mail for the confirmation link." msgstr "Nézz rá az e-mail fiókodra a megerősítésért." #: front-end/recover.php:227 msgid "Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s" msgstr "" #: front-end/recover.php:230 msgid "Password Reset from \"%1$s\"" msgstr "" #: front-end/recover.php:237 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "" #: front-end/recover.php:199 msgid "The email address entered wasn't found in the database!" msgstr "A megadott e-mail cím nincs meg az adatbázisban!" #: front-end/recover.php:199 msgid "Please check that you entered the correct email address." msgstr "Kérjük, ellenőrizd, hogy helyesen adtad-e meg az e-mail címedet." #: front-end/recover.php:265 msgid "Your password has been successfully changed!" msgstr "A jelszavadat sikeresen megváltoztattad." #: front-end/recover.php:284 msgid "You have successfully reset your password to: %1$s" msgstr "Sikeresen módosítottad a jelszavadat a következőre: %1$s" #: front-end/recover.php:287 front-end/recover.php:298 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "Jelszavad sikeresen módosítva a következőre: %1$s a következőn: \"%2$s\"" #: front-end/recover.php:295 msgid "%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s" msgstr "%1$s nevű felhasználó a jelszó módosító opcióval megváltoztatta a jelszavát.
            Az új jelszava:%2$s" #: front-end/recover.php:312 msgid "The entered passwords don't match!" msgstr "A megadott jelszavak nem egyeznek!" #: front-end/recover.php:367 msgid "ERROR:" msgstr "HIBA:" #: front-end/recover.php:367 msgid "Invalid key!" msgstr "Érvénytelen kulcs!" #: front-end/register.php:56 msgid "Invalid activation key!" msgstr "Hibás aktiváló kulcs!" #: front-end/register.php:60 msgid "This username is now active!" msgstr "A felhasználóneved mostantól aktív." #: front-end/register.php:74 msgid "This username is already activated!" msgstr "Ezt a felhasználónevet már korábban aktiválták." #: front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "E-mailed sikeresen megerősítetted." #: front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "Hiba történt a felhasználó aktiválása közben." #: front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "Az általad megadott e-mail cím nem érvényes." #: front-end/default-fields/email/email.php:60 #: front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "Ez az e-mail cím már foglalt." #: front-end/default-fields/email/email.php:60 #: front-end/default-fields/email/email.php:67 #: front-end/default-fields/email/email.php:77 #: front-end/default-fields/email/email.php:95 #: front-end/default-fields/username/username.php:49 #: front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "" #: front-end/default-fields/email/email.php:77 #: front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "Az e-mail már használatban van." #: front-end/default-fields/password-repeat/password-repeat.php:37 #: front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "Nem egyeznek meg a jelszók" #: front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "A felhasználónév már létezik." #: front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "A felhasználónév már le van foglalva és hamarosan használni is fogják." #: modules/user-listing/userlisting.php:276 msgid "Avatar" msgstr "Avatar" #: front-end/extra-fields/avatar/avatar.php:72 #: front-end/extra-fields/checkbox/checkbox.php:45 #: front-end/extra-fields/colorpicker/colorpicker.php:45 #: front-end/extra-fields/datepicker/datepicker.php:40 #: front-end/extra-fields/input-hidden/input-hidden.php:34 #: front-end/extra-fields/input/input.php:30 #: front-end/extra-fields/map/map.php:51 #: front-end/extra-fields/number/number.php:30 #: front-end/extra-fields/phone/phone.php:39 #: front-end/extra-fields/radio/radio.php:44 #: front-end/extra-fields/select-cpt/select-cpt.php:52 #: front-end/extra-fields/select-multiple/select-multiple.php:46 #: front-end/extra-fields/select-timezone/select-timezone.php:49 #: front-end/extra-fields/select/select.php:51 #: front-end/extra-fields/textarea/textarea.php:30 #: front-end/extra-fields/upload/upload.php:70 #: front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "kötelező" #: front-end/extra-fields/recaptcha/recaptcha.php:48 msgid "To use reCAPTCHA you must get an API key from" msgstr "" #: front-end/extra-fields/recaptcha/recaptcha.php:131 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "" #: front-end/extra-fields/recaptcha/recaptcha.php:192 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "" #: modules/modules.php:11 modules/modules.php:58 msgid "Modules" msgstr "Modulok" #: modules/modules.php:59 msgid "Here you can activate / deactivate available modules for Profile Builder." msgstr "" #: modules/modules.php:69 msgid "Name/Description" msgstr "Név/Leírás" #: modules/modules.php:70 msgid "Status" msgstr "Állapot" #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91 #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112 #: modules/modules.php:119 msgid "Active" msgstr "Aktív" #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92 #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113 #: modules/modules.php:120 msgid "Inactive" msgstr "Inaktív" #: modules/email-customizer/admin-email-customizer.php:11 #: modules/email-customizer/admin-email-customizer.php:12 #: modules/modules.php:96 msgid "Admin Email Customizer" msgstr "" #: modules/email-customizer/user-email-customizer.php:11 #: modules/email-customizer/user-email-customizer.php:12 #: modules/modules.php:103 msgid "User Email Customizer" msgstr "" #: assets/lib/wck-api/wordpress-creation-kit.php:334 #: modules/class-mustache-templates/class-mustache-templates.php:253 msgid "Save" msgstr "Mentés" #: modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "Átirányítás" #: modules/multiple-forms/edit-profile-forms.php:208 #: modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "URL" #: modules/email-customizer/admin-email-customizer.php:38 msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save." msgstr "" #: modules/email-customizer/admin-email-customizer.php:41 #: modules/email-customizer/user-email-customizer.php:41 msgid "From (name)" msgstr "Feladó (név)" #: modules/email-customizer/admin-email-customizer.php:49 #: modules/email-customizer/user-email-customizer.php:49 msgid "From (reply-to email)" msgstr "Feladó (válasz e-mail)" #: modules/email-customizer/admin-email-customizer.php:57 #: modules/email-customizer/user-email-customizer.php:57 msgid "Common Settings" msgstr "" #: modules/email-customizer/admin-email-customizer.php:60 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" msgstr "" "\n" "

            Új feliratkozó a következő oldalon: {{site_name}}.

            \n" "

            Felhasználónév:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" #: modules/email-customizer/admin-email-customizer.php:69 #: modules/email-customizer/admin-email-customizer.php:99 #: modules/email-customizer/admin-email-customizer.php:126 #: modules/email-customizer/user-email-customizer.php:71 #: modules/email-customizer/user-email-customizer.php:99 #: modules/email-customizer/user-email-customizer.php:128 #: modules/email-customizer/user-email-customizer.php:155 #: modules/email-customizer/user-email-customizer.php:183 #: modules/email-customizer/user-email-customizer.php:214 #: modules/email-customizer/user-email-customizer.php:241 #: modules/email-customizer/user-email-customizer.php:274 msgid "Email Subject" msgstr "" #: modules/email-customizer/admin-email-customizer.php:84 msgid "Default Registration & Registration with Email Confirmation" msgstr "" #: modules/email-customizer/admin-email-customizer.php:87 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log in!

            \n" msgstr "" "\n" "

            Új feliratkozó a következő oldalon: {{site_name}}.

            \n" "

            Felhasználónév:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            Az Admin Jóváhagyás funkció aktiválva volt a regisztrációkor, így ne feledd, hogy jóvá ell hagynod a felhasználó regisztrációját ahhoz, hogy ő be tudjon jelentkezni!

            \n" #: modules/email-customizer/admin-email-customizer.php:114 #: modules/email-customizer/user-email-customizer.php:143 msgid "Registration with Admin Approval" msgstr "Regisztráció Admin jóváhagyással" #: modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "Lehetséges címkék" #: features/email-confirmation/class-email-confirmation.php:91 #: features/email-confirmation/class-email-confirmation.php:170 msgid "User Meta" msgstr "Felhasználó Meta" #: modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "Oldal Url" #: modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "Oldal neve" #: modules/email-customizer/email-customizer.php:25 #: modules/user-listing/userlisting.php:158 msgid "User Id" msgstr "" #: modules/email-customizer/email-customizer.php:33 msgid "Reply To" msgstr "" #: modules/email-customizer/email-customizer.php:40 msgid "Activation Key" msgstr "Aktiváló kulcs" #: modules/email-customizer/email-customizer.php:41 msgid "Activation Url" msgstr "Aktiváló URL" #: modules/email-customizer/email-customizer.php:42 msgid "Activation Link" msgstr "Aktiváló link" #: modules/email-customizer/user-email-customizer.php:64 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" msgstr "" "\n" "

            Üdvözlünk a(z) {{site_name}} oldalon!

            \n" "

            A felhasználóneved:{{username}} és a jelszavad:{{password}}

            \n" #: modules/email-customizer/user-email-customizer.php:85 msgid "Default Registration" msgstr "Alapértelmezett regisztráció" #: modules/email-customizer/user-email-customizer.php:91 msgid "" "\n" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials.

            \n" msgstr "" "\n" "

            A felhasználói fiókod aktiválásához kérjük, kattints a következő linkre:
            \n" "{{{activation_link}}}

            \n" "

            Miután aktiváltad, küldünk neked egy e-mailt.

            \n" #: modules/email-customizer/user-email-customizer.php:103 msgid "[{{site_name}}] Activate {{username}}" msgstr "" #: modules/email-customizer/user-email-customizer.php:114 msgid "Registration with Email Confirmation" msgstr "" #: modules/email-customizer/user-email-customizer.php:120 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n" msgstr "" "\n" "

            Üdvözlünk a(z) {{site_name}} oldalon!

            \n" "

            A felhasználóneved:{{username}} és a jelszavad:{{password}}

            \n" "

            Ahhoz, hogy be tudj jelentkezni, előbb el kell fogadnunk a regisztrációdat. A jóváhagyásról majd e-mailben értesítünk.

            \n" #: modules/email-customizer/user-email-customizer.php:132 msgid "A new account has been created for you on {{site_name}}" msgstr "" #: modules/email-customizer/user-email-customizer.php:148 msgid "" "\n" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Jó hírünk van!

            \n" "

            Jóváhagytuk a regisztrációdat: a felhasználóneved: {{username}} a(z) {{site_name}} oldalon.

            \n" #: modules/email-customizer/user-email-customizer.php:159 msgid "Your account on {{site_name}} has been approved!" msgstr "A(z) {{site_name}} oldalon lévő fiókod elfogadásra került!" #: modules/email-customizer/user-email-customizer.php:170 msgid "User Approval Notification" msgstr "" #: modules/email-customizer/user-email-customizer.php:175 msgid "" "\n" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Szia,

            \n" "

            Sajnos rossz hírünk van! Nem tudtuk jóváhagyni a regisztrációdat: felhasználóneved {{username}} a(z) {{site_name}} oldalon.

            \n" #: modules/email-customizer/user-email-customizer.php:187 msgid "Your account on {{site_name}} has been unapproved!" msgstr "A(z) {{site_name}} oldalon lévő regisztrációdat nem tudtuk jóváhagyni." #: modules/email-customizer/user-email-customizer.php:198 msgid "Unapproved User Notification" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:11 #: modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:13 #: modules/multiple-forms/register-forms.php:13 #: modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "Új hozzáadása" #: modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "Új Felhasználói profil szerkesztő űrlap hozzáadása" #: modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:17 #: modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:135 #: modules/multiple-forms/register-forms.php:138 #: modules/user-listing/userlisting.php:2048 msgid "Shortcode" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:155 #: modules/multiple-forms/register-forms.php:159 #: modules/user-listing/userlisting.php:2069 msgid "(no title)" msgstr "(nincs cím)" #: modules/multiple-forms/edit-profile-forms.php:175 #: modules/multiple-forms/register-forms.php:178 #: modules/user-listing/userlisting.php:2089 msgid "The shortcode will be available after you publish this form." msgstr "" #: modules/multiple-forms/edit-profile-forms.php:177 #: modules/multiple-forms/register-forms.php:180 #: modules/user-listing/userlisting.php:2091 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:181 #: modules/multiple-forms/register-forms.php:184 #: modules/user-listing/userlisting.php:2095 msgid "Note: changing the form title also changes the shortcode!" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:187 #: modules/multiple-forms/register-forms.php:190 #: modules/user-listing/userlisting.php:2128 msgid "Form Shortcode" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:207 #: modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "Üzenetek megjelenítése" #: modules/multiple-forms/edit-profile-forms.php:207 #: modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:208 msgid "Specify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.com" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "" #: modules/multiple-forms/edit-profile-forms.php:241 #: modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:245 #: modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage Title (Type)" msgstr "
            Cím (típus)
            " #: modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "" #: modules/multiple-forms/register-forms.php:11 #: modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "Regisztrációs űrlap" #: modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "Új Regisztrációs űrlap létrehozása" #: modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "Regisztrációs űrlap szerkesztése" #: modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "Új regisztrációs űrlap" #: modules/multiple-forms/register-forms.php:17 #: modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "Regisztrációs űrlapok" #: modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "A Regisztrációs űrlap megjelenítése" #: modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "" #: modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "" #: modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "" #: modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "" #: modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "" #: modules/multiple-forms/register-forms.php:228 msgid "Choose what role the user will have after (s)he registered
            If not specified, defaults to the role set in the WordPress settings" msgstr "" #: modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "" #: modules/multiple-forms/register-forms.php:229 msgid "Whether to automatically log in the newly registered user or not
            Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work" msgstr "" #: modules/multiple-forms/register-forms.php:232 msgid "Specify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.com" msgstr "" #: modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "Regisztráció után.." #: modules/user-listing/userlisting.php:1021 #: modules/user-listing/userlisting.php:1468 #: modules/user-listing/userlisting.php:1886 #: modules/user-listing/userlisting.php:2355 msgid "Search Users by All Fields" msgstr "" #: modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "" #: modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "" #: modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "" #: modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "" #: modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "" #: modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "" #: modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "" #: modules/user-listing/userlisting.php:105 msgid "Display name as" msgstr "Név megjelenítése mint" #: modules/user-listing/userlisting.php:150 #: modules/user-listing/userlisting.php:2156 msgid "Registration Date" msgstr "Regisztráció dátuma" #: modules/user-listing/userlisting.php:151 #: modules/user-listing/userlisting.php:2161 msgid "Number of Posts" msgstr "Bejegyzések száma" #: modules/user-listing/userlisting.php:155 msgid "More Info" msgstr "További infó" #: modules/user-listing/userlisting.php:156 msgid "More Info Url" msgstr "" #: modules/user-listing/userlisting.php:157 msgid "Avatar or Gravatar" msgstr "" #: modules/user-listing/userlisting.php:196 #: modules/user-listing/userlisting.php:227 msgid "Extra Functions" msgstr "" #: modules/user-listing/userlisting.php:199 msgid "Pagination" msgstr "" #: modules/user-listing/userlisting.php:200 msgid "Search all Fields" msgstr "" #: modules/user-listing/userlisting.php:229 msgid "Go Back Link" msgstr "" #: modules/user-listing/userlisting.php:247 msgid "All-userlisting Template" msgstr "" #: modules/user-listing/userlisting.php:250 msgid "Single-userlisting Template" msgstr "" #: modules/user-listing/userlisting.php:733 msgid "First/Lastname" msgstr "Kereszt/Vezetéknév" #: modules/user-listing/userlisting.php:281 #: modules/user-listing/userlisting.php:739 msgid "Sign-up Date" msgstr "" #: modules/user-listing/userlisting.php:748 #: modules/user-listing/userlisting.php:2159 msgid "Display Name" msgstr "Megjelenített név" #: modules/user-listing/userlisting.php:280 #: modules/user-listing/userlisting.php:757 msgid "Posts" msgstr "Bejegyzések" #: modules/user-listing/userlisting.php:760 #: modules/user-listing/userlisting.php:2166 msgid "Aim" msgstr "Cél" #: modules/user-listing/userlisting.php:763 #: modules/user-listing/userlisting.php:2167 msgid "Yim" msgstr "Yim" #: modules/user-listing/userlisting.php:766 #: modules/user-listing/userlisting.php:2168 msgid "Jabber" msgstr "Jabber" #: modules/user-listing/userlisting.php:1273 msgid "Click here to see more information about this user" msgstr "" #: modules/user-listing/userlisting.php:1273 msgid "More..." msgstr "" #: modules/user-listing/userlisting.php:1276 msgid "Click here to see more information about this user." msgstr "" #: modules/user-listing/userlisting.php:1422 #: modules/user-listing/userlisting.php:1425 msgid "Click here to go back" msgstr "" #: modules/user-listing/userlisting.php:1422 msgid "Back" msgstr "" #: modules/user-listing/userlisting.php:1455 msgid "«« First" msgstr "" #: modules/user-listing/userlisting.php:1456 msgid "« Prev" msgstr "" #: modules/user-listing/userlisting.php:1457 msgid "Next » " msgstr "" #: modules/user-listing/userlisting.php:1458 msgid "Last »»" msgstr "" #: modules/user-listing/userlisting.php:1487 msgid "You don't have any pagination settings on this userlisting!" msgstr "" #: modules/user-listing/userlisting.php:1903 msgid "Search" msgstr "Keresés" #: modules/user-listing/userlisting.php:1904 msgid "Clear Results" msgstr "" #: modules/user-listing/userlisting.php:2098 #: modules/user-listing/userlisting.php:2102 msgid "Extra shortcode parameters" msgstr "" #: modules/user-listing/userlisting.php:2105 msgid "displays users having a certain meta-value within a certain (extra) meta-field" msgstr "" #: modules/user-listing/userlisting.php:2106 msgid "Example:" msgstr "Például:" #: modules/user-listing/userlisting.php:2108 msgid "Remember though, that the field-value combination must exist in the database." msgstr "" #: modules/user-listing/userlisting.php:2183 msgid "Random (very slow on large databases > 10K user)" msgstr "" #: modules/user-listing/userlisting.php:2195 msgid "Roles to Display" msgstr "" #: modules/user-listing/userlisting.php:2195 msgid "Restrict the userlisting to these selected roles only
            If not specified, defaults to all existing roles" msgstr "" #: modules/user-listing/userlisting.php:2196 msgid "Number of Users/Page" msgstr "" #: modules/user-listing/userlisting.php:2197 msgid "Default Sorting Criteria" msgstr "" #: modules/user-listing/userlisting.php:2197 msgid "Set the default sorting criteria
            This can temporarily be changed for each new session" msgstr "" #: modules/user-listing/userlisting.php:2198 msgid "Default Sorting Order" msgstr "" #: modules/user-listing/userlisting.php:2198 msgid "Set the default sorting order
            This can temporarily be changed for each new session" msgstr "" #: modules/user-listing/userlisting.php:2199 msgid "Avatar Size (All-userlisting)" msgstr "" #: modules/user-listing/userlisting.php:2199 msgid "Set the avatar size on the all-userlisting only" msgstr "" #: modules/user-listing/userlisting.php:2200 msgid "Avatar Size (Single-userlisting)" msgstr "" #: modules/user-listing/userlisting.php:2200 msgid "Set the avatar size on the single-userlisting only" msgstr "" #: modules/user-listing/userlisting.php:2201 msgid "Visible only to logged in users?" msgstr "Csak a bejelentkezett felhasználók számára látható?" #: modules/user-listing/userlisting.php:2201 msgid "The userlisting will only be visible only to the logged in users" msgstr "" #: modules/user-listing/userlisting.php:2202 msgid "Visible to following Roles" msgstr "" #: modules/user-listing/userlisting.php:2202 msgid "The userlisting will only be visible to the following roles" msgstr "" #: modules/user-listing/userlisting.php:2208 msgid "Userlisting Settings" msgstr "" #: modules/user-listing/userlisting.php:2331 msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "" #: modules/user-listing/userlisting.php:2331 msgid "You can find it in the Profile Builder menu." msgstr "" #: modules/user-listing/userlisting.php:2494 msgid "No results found!" msgstr "Nincs találat"translation/profile-builder-zh_CN.po000066600000462103152141651160013541 0ustar00# Translation of Profile Builder in Chinese (China) # This file is distributed under the same license as the Profile Builder package. msgid "" msgstr "" "PO-Revision-Date: 2015-09-29 11:53:21+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: GlotPress/0.1\n" "Project-Id-Version: Profile Builder\n" #: admin/manage-fields.php:125 msgid "Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yy" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:244 msgid "Individual redirects defined in shortcodes; redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects." msgstr "" #: admin/manage-fields.php:1214 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." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:240 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "" #: admin/register-version.php:251 msgid "

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            " msgstr "" #: admin/register-version.php:246 msgid "

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            " msgstr "" #: front-end/recover.php:151 msgid "You are already logged in. You can change your password on the edit profile form." msgstr "" #: front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "" #: features/functions.php:909 msgid "

            You can visit your site at " msgstr "" #: features/functions.php:896 msgid "

            Also, you will be able to visit your site at " msgstr "" #: front-end/default-fields/blog-details/blog-details.php:138 msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network." msgstr "" #: front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "" #: front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "" #: front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "" #: modules/email-customizer/email-customizer.php:36 #: modules/user-listing/userlisting.php:118 msgid "Blog URL" msgstr "" #: admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "" #: admin/manage-fields.php:219 msgid "Blog Details" msgstr "" #: admin/pms-cross-promotion.php:239 msgid "Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "" #: features/email-confirmation/email-confirmation.php:578 msgid "Welcome to %1$s!


            Your username is:%2$s" msgstr "" #: modules/user-listing/userlisting.php:1303 msgid "View Map" msgstr "" #: admin/add-ons.php:103 msgid "Available in Hobbyist and Pro Versions" msgstr "" #: admin/add-ons.php:105 msgid "Available in All Versions" msgstr "" #: admin/add-ons.php:148 msgid "Learn More" msgstr "" #: admin/basic-info.php:99 msgid "Timepicker" msgstr "" #: admin/basic-info.php:100 msgid "Colorpicker" msgstr "" #: admin/basic-info.php:103 msgid "Currency Select" msgstr "" #: admin/basic-info.php:109 msgid "Number" msgstr "" #: admin/basic-info.php:114 msgid "Validation" msgstr "" #: admin/basic-info.php:115 msgid "Map" msgstr "" #: admin/basic-info.php:116 msgid "HTML" msgstr "" #: admin/basic-info.php:162 modules/modules.php:117 msgid "Repeater Fields" msgstr "" #: admin/basic-info.php:163 msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role." msgstr "" #: admin/general-settings.php:62 msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "" #: admin/manage-fields.php:118 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count" msgstr "" #: admin/manage-fields.php:141 msgid "Show Currency Symbol" msgstr "" #: admin/manage-fields.php:141 msgid "Whether the currency symbol should be displayed after the currency name in the select option." msgstr "" #: admin/manage-fields.php:142 msgid "Show Post Type" msgstr "" #: admin/manage-fields.php:142 msgid "Posts from what post type will be displayed in the select." msgstr "" #: admin/manage-fields.php:143 msgid "Allowable Values" msgstr "" #: admin/manage-fields.php:143 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." msgstr "" #: admin/manage-fields.php:144 msgid "Error Message" msgstr "" #: admin/manage-fields.php:144 msgid "Set a custom error message that will be displayed to the user." msgstr "" #: admin/manage-fields.php:145 msgid "Time Format" msgstr "" #: admin/manage-fields.php:145 msgid "Specify the time format." msgstr "" #: admin/manage-fields.php:146 msgid "Google Maps API Key" msgstr "" #: admin/manage-fields.php:146 msgid "Enter your Google Maps API key (
            Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used." msgstr "" #: admin/manage-fields.php:147 msgid "Default Latitude" msgstr "" #: admin/manage-fields.php:147 msgid "The latitude at which the map should be displayed when no pins are attached." msgstr "" #: admin/manage-fields.php:148 msgid "Default Longitude" msgstr "" #: admin/manage-fields.php:148 msgid "The longitude at which the map should be displayed when no pins are attached." msgstr "" #: admin/manage-fields.php:149 msgid "Default Zoom Level" msgstr "" #: admin/manage-fields.php:149 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "" #: admin/manage-fields.php:150 msgid "Map Height" msgstr "" #: admin/manage-fields.php:150 msgid "The height of the map." msgstr "" #: admin/manage-fields.php:152 msgid "HTML Content" msgstr "" #: admin/manage-fields.php:152 msgid "Add your HTML (or text) content" msgstr "" #: admin/manage-fields.php:153 msgid "Phone Format" msgstr "" #: admin/manage-fields.php:153 msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces." msgstr "" #: admin/manage-fields.php:153 msgid "Eg. (###) ###-####" msgstr "" #: admin/manage-fields.php:153 msgid "Empty field won't check for correct phone number." msgstr "" #: admin/manage-fields.php:154 msgid "Heading Tag" msgstr "" #: admin/manage-fields.php:154 msgid "Change heading field size on front-end forms" msgstr "" #: admin/manage-fields.php:155 msgid "Min Number Value" msgstr "" #: admin/manage-fields.php:155 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "" #: admin/manage-fields.php:155 msgid "Leave it empty for no min value" msgstr "" #: admin/manage-fields.php:156 msgid "Max Number Value" msgstr "" #: admin/manage-fields.php:156 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "" #: admin/manage-fields.php:156 msgid "Leave it empty for no max value" msgstr "" #: admin/manage-fields.php:157 msgid "Number Step Value" msgstr "" #: admin/manage-fields.php:157 msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal" msgstr "" #: admin/manage-fields.php:157 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "" #: admin/manage-fields.php:157 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)" msgstr "" #: admin/manage-fields.php:157 msgid "Leave it empty for no restriction" msgstr "" #: admin/manage-fields.php:561 msgid "Albania Lek" msgstr "" #: admin/manage-fields.php:562 msgid "Afghanistan Afghani" msgstr "" #: admin/manage-fields.php:563 msgid "Argentina Peso" msgstr "" #: admin/manage-fields.php:564 msgid "Aruba Guilder" msgstr "" #: admin/manage-fields.php:565 msgid "Australia Dollar" msgstr "" #: admin/manage-fields.php:566 msgid "Azerbaijan New Manat" msgstr "" #: admin/manage-fields.php:567 msgid "Bahamas Dollar" msgstr "" #: admin/manage-fields.php:568 msgid "Barbados Dollar" msgstr "" #: admin/manage-fields.php:569 msgid "Bangladeshi taka" msgstr "" #: admin/manage-fields.php:570 msgid "Belarus Ruble" msgstr "" #: admin/manage-fields.php:571 msgid "Belize Dollar" msgstr "" #: admin/manage-fields.php:572 msgid "Bermuda Dollar" msgstr "" #: admin/manage-fields.php:573 msgid "Bolivia Boliviano" msgstr "" #: admin/manage-fields.php:574 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "" #: admin/manage-fields.php:575 msgid "Botswana Pula" msgstr "" #: admin/manage-fields.php:576 msgid "Bulgaria Lev" msgstr "" #: admin/manage-fields.php:577 msgid "Brazil Real" msgstr "" #: admin/manage-fields.php:578 msgid "Brunei Darussalam Dollar" msgstr "" #: admin/manage-fields.php:579 msgid "Cambodia Riel" msgstr "" #: admin/manage-fields.php:580 msgid "Canada Dollar" msgstr "" #: admin/manage-fields.php:581 msgid "Cayman Islands Dollar" msgstr "" #: admin/manage-fields.php:582 msgid "Chile Peso" msgstr "" #: admin/manage-fields.php:583 msgid "China Yuan Renminbi" msgstr "" #: admin/manage-fields.php:584 msgid "Colombia Peso" msgstr "" #: admin/manage-fields.php:585 msgid "Costa Rica Colon" msgstr "" #: admin/manage-fields.php:586 msgid "Croatia Kuna" msgstr "" #: admin/manage-fields.php:587 msgid "Cuba Peso" msgstr "" #: admin/manage-fields.php:588 msgid "Czech Republic Koruna" msgstr "" #: admin/manage-fields.php:589 msgid "Denmark Krone" msgstr "" #: admin/manage-fields.php:590 msgid "Dominican Republic Peso" msgstr "" #: admin/manage-fields.php:591 msgid "East Caribbean Dollar" msgstr "" #: admin/manage-fields.php:592 msgid "Egypt Pound" msgstr "" #: admin/manage-fields.php:593 msgid "El Salvador Colon" msgstr "" #: admin/manage-fields.php:594 msgid "Estonia Kroon" msgstr "" #: admin/manage-fields.php:595 msgid "Euro" msgstr "" #: admin/manage-fields.php:596 msgid "Falkland Islands (Malvinas) Pound" msgstr "" #: admin/manage-fields.php:597 msgid "Fiji Dollar" msgstr "" #: admin/manage-fields.php:598 msgid "Ghana Cedis" msgstr "" #: admin/manage-fields.php:599 msgid "Gibraltar Pound" msgstr "" #: admin/manage-fields.php:600 msgid "Guatemala Quetzal" msgstr "" #: admin/manage-fields.php:601 msgid "Guernsey Pound" msgstr "" #: admin/manage-fields.php:602 msgid "Guyana Dollar" msgstr "" #: admin/manage-fields.php:603 msgid "Honduras Lempira" msgstr "" #: admin/manage-fields.php:604 msgid "Hong Kong Dollar" msgstr "" #: admin/manage-fields.php:605 msgid "Hungary Forint" msgstr "" #: admin/manage-fields.php:606 msgid "Iceland Krona" msgstr "" #: admin/manage-fields.php:607 msgid "India Rupee" msgstr "" #: admin/manage-fields.php:608 msgid "Indonesia Rupiah" msgstr "" #: admin/manage-fields.php:609 msgid "Iran Rial" msgstr "" #: admin/manage-fields.php:610 msgid "Isle of Man Pound" msgstr "" #: admin/manage-fields.php:611 msgid "Israel Shekel" msgstr "" #: admin/manage-fields.php:612 msgid "Jamaica Dollar" msgstr "" #: admin/manage-fields.php:613 msgid "Japan Yen" msgstr "" #: admin/manage-fields.php:614 msgid "Jersey Pound" msgstr "" #: admin/manage-fields.php:615 msgid "Kazakhstan Tenge" msgstr "" #: admin/manage-fields.php:616 msgid "Korea (North) Won" msgstr "" #: admin/manage-fields.php:617 msgid "Korea (South) Won" msgstr "" #: admin/manage-fields.php:618 msgid "Kyrgyzstan Som" msgstr "" #: admin/manage-fields.php:619 msgid "Laos Kip" msgstr "" #: admin/manage-fields.php:620 msgid "Latvia Lat" msgstr "" #: admin/manage-fields.php:621 msgid "Lebanon Pound" msgstr "" #: admin/manage-fields.php:622 msgid "Liberia Dollar" msgstr "" #: admin/manage-fields.php:623 msgid "Lithuania Litas" msgstr "" #: admin/manage-fields.php:624 msgid "Macedonia Denar" msgstr "" #: admin/manage-fields.php:625 msgid "Malaysia Ringgit" msgstr "" #: admin/manage-fields.php:626 msgid "Mauritius Rupee" msgstr "" #: admin/manage-fields.php:627 msgid "Mexico Peso" msgstr "" #: admin/manage-fields.php:628 msgid "Mongolia Tughrik" msgstr "" #: admin/manage-fields.php:629 msgid "Mozambique Metical" msgstr "" #: admin/manage-fields.php:630 msgid "Namibia Dollar" msgstr "" #: admin/manage-fields.php:631 msgid "Nepal Rupee" msgstr "" #: admin/manage-fields.php:632 msgid "Netherlands Antilles Guilder" msgstr "" #: admin/manage-fields.php:633 msgid "New Zealand Dollar" msgstr "" #: admin/manage-fields.php:634 msgid "Nicaragua Cordoba" msgstr "" #: admin/manage-fields.php:635 msgid "Nigeria Naira" msgstr "" #: admin/manage-fields.php:636 msgid "Norway Krone" msgstr "" #: admin/manage-fields.php:637 msgid "Oman Rial" msgstr "" #: admin/manage-fields.php:638 msgid "Pakistan Rupee" msgstr "" #: admin/manage-fields.php:639 msgid "Panama Balboa" msgstr "" #: admin/manage-fields.php:640 msgid "Paraguay Guarani" msgstr "" #: admin/manage-fields.php:641 msgid "Peru Nuevo Sol" msgstr "" #: admin/manage-fields.php:642 msgid "Philippines Peso" msgstr "" #: admin/manage-fields.php:643 msgid "Poland Zloty" msgstr "" #: admin/manage-fields.php:644 msgid "Qatar Riyal" msgstr "" #: admin/manage-fields.php:645 msgid "Romania New Leu" msgstr "" #: admin/manage-fields.php:646 msgid "Russia Ruble" msgstr "" #: admin/manage-fields.php:647 msgid "Saint Helena Pound" msgstr "" #: admin/manage-fields.php:648 msgid "Saudi Arabia Riyal" msgstr "" #: admin/manage-fields.php:649 msgid "Serbia Dinar" msgstr "" #: admin/manage-fields.php:650 msgid "Seychelles Rupee" msgstr "" #: admin/manage-fields.php:651 msgid "Singapore Dollar" msgstr "" #: admin/manage-fields.php:652 msgid "Solomon Islands Dollar" msgstr "" #: admin/manage-fields.php:653 msgid "Somalia Shilling" msgstr "" #: admin/manage-fields.php:654 msgid "South Africa Rand" msgstr "" #: admin/manage-fields.php:655 msgid "Sri Lanka Rupee" msgstr "" #: admin/manage-fields.php:656 msgid "Sweden Krona" msgstr "" #: admin/manage-fields.php:657 msgid "Switzerland Franc" msgstr "" #: admin/manage-fields.php:658 msgid "Suriname Dollar" msgstr "" #: admin/manage-fields.php:659 msgid "Syria Pound" msgstr "" #: admin/manage-fields.php:660 msgid "Taiwan New Dollar" msgstr "" #: admin/manage-fields.php:661 msgid "Thailand Baht" msgstr "" #: admin/manage-fields.php:662 msgid "Trinidad and Tobago Dollar" msgstr "" #: admin/manage-fields.php:663 admin/manage-fields.php:664 msgid "Turkey Lira" msgstr "" #: admin/manage-fields.php:665 msgid "Tuvalu Dollar" msgstr "" #: admin/manage-fields.php:666 msgid "Ukraine Hryvna" msgstr "" #: admin/manage-fields.php:667 msgid "United Kingdom Pound" msgstr "" #: admin/manage-fields.php:668 msgid "Uganda Shilling" msgstr "" #: admin/manage-fields.php:669 msgid "US Dollar" msgstr "" #: admin/manage-fields.php:670 msgid "Uruguay Peso" msgstr "" #: admin/manage-fields.php:671 msgid "Uzbekistan Som" msgstr "" #: admin/manage-fields.php:672 msgid "Venezuela Bolivar" msgstr "" #: admin/manage-fields.php:673 msgid "Viet Nam Dong" msgstr "" #: admin/manage-fields.php:674 msgid "Yemen Rial" msgstr "" #: admin/manage-fields.php:675 msgid "Zimbabwe Dollar" msgstr "" #: admin/manage-fields.php:1094 msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n" msgstr "" #: admin/manage-fields.php:1311 msgid "Search Location" msgstr "" #: assets/lib/wck-api/wordpress-creation-kit.php:754 msgid "You are not allowed to do this." msgstr "" #: features/admin-approval/class-admin-approval.php:461 #: features/email-confirmation/class-email-confirmation.php:460 msgid "Search Users" msgstr "" #: features/conditional-fields/conditional-fields.php:78 msgid "Conditional Logic" msgstr "" #: features/conditional-fields/conditional-fields.php:79 msgid "Conditional Rules" msgstr "" #: features/conditional-fields/conditional-fields.php:448 msgid "This field has conditional logic enabled." msgstr "" #: features/functions.php:685 msgid "Incorrect phone number" msgstr "" #: front-end/class-formbuilder.php:113 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." msgstr "" #: front-end/extra-fields/map/map.php:46 front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "" #: front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "" #: front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "" #: front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "" #: front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "" #: front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "" #: front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bolivia, __( Plurinational State of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bonaire, __( Sint Eustatius and Saba" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Brunei Darussalam" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cabo Verde" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cocos (Keeling) Islands" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Congo" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Congo, __( the Democratic Republic of the" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cote dIvoire" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Falkland Islands (Malvinas)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Holy See (Vatican City State)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Iran, __( Islamic Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Democratic Peoples Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lao Peoples Democratic Republic" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Macedonia, __( the former Yugoslav Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Micronesia, __( Federated States of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Moldova, __( Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Palestine, __( State of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Russian Federation" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Helena, __( Ascension and Tristan da Cunha" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Martin (French part)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sint Maarten (Dutch part)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Syrian Arab Republic" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Taiwan, __( Province of China" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tanzania, __( United Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Timor-Leste" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Venezuela, __( Bolivarian Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Viet Nam" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( British" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( U.S." msgstr "" #: modules/email-customizer/email-customizer.php:11 #: modules/user-listing/userlisting.php:186 msgid "User Fields Tags" msgstr "" #: modules/email-customizer/email-customizer.php:479 msgid "The users selected password at signup" msgstr "" #: modules/email-customizer/user-email-customizer.php:278 msgid "[{{site_name}}] Notice of Email Change" msgstr "" #: modules/email-customizer/user-email-customizer.php:289 msgid "Changed Email Address Notification" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Limit" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Enable limit to the number of fields to be generated by users in front end forms " msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "General Limit" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "Limit reached message" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The maximum number of fields has been reached." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The popup message to display when the limit of repeater groups is reached." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Limit per Role" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Leave 0 for unlimited." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Repeated field group" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Manage field or group of fields that will be repeatable." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:259 msgid "Edit field group" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:260 msgid "Repeatable fields saved!" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:277 #: modules/repeater-field/admin/repeater-manage-fields.php:326 msgid "Please enter a unique field title.\n" msgstr "" #: modules/repeater-field/repeater-field.php:258 msgid "Are you sure you want to delete this?" msgstr "" #: modules/user-listing/userlisting.php:192 msgid "Sort Tags" msgstr "" #: modules/user-listing/userlisting.php:201 #: modules/user-listing/userlisting.php:2237 msgid "Faceted Menus" msgstr "" #: modules/user-listing/userlisting.php:202 msgid "User Count" msgstr "" #: modules/user-listing/userlisting.php:1536 msgid "Show All" msgstr "" #: modules/user-listing/userlisting.php:1668 msgid "No options available" msgstr "" #: modules/user-listing/userlisting.php:1807 msgid "Remove All Filters" msgstr "" #: modules/user-listing/userlisting.php:2227 msgid "Label" msgstr "" #: modules/user-listing/userlisting.php:2227 msgid "Choose the facet name that appears on the frontend" msgstr "" #: modules/user-listing/userlisting.php:2228 msgid "Facet Type" msgstr "" #: modules/user-listing/userlisting.php:2228 msgid "Choose the facet menu type" msgstr "" #: modules/user-listing/userlisting.php:2229 msgid "Facet Meta" msgstr "" #: modules/user-listing/userlisting.php:2229 msgid "Choose the meta field for the facet menu" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Behaviour" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Narrow the results" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Expand the results" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Choose how multiple selections affect the results" msgstr "" #: modules/user-listing/userlisting.php:2231 msgid "Visible choices" msgstr "" #: modules/user-listing/userlisting.php:2231 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "" #: modules/user-listing/userlisting.php:2254 msgid "Search Fields" msgstr "" #: modules/user-listing/userlisting.php:2254 msgid "Choose the fields in which the Search Field will look in" msgstr "" #: modules/user-listing/userlisting.php:2259 msgid "Search Settings" msgstr "" #: admin/add-ons.php:190 msgid "Recommended Plugins" msgstr "" #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102 msgid "Free" msgstr "" #: admin/add-ons.php:221 msgid "Accept user payments, create subscription plans and restrict content on your membership site." msgstr "" #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105 msgid "More Details" msgstr "" #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88 #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "" #: admin/add-ons.php:242 admin/pms-cross-promotion.php:87 #: admin/pms-cross-promotion.php:125 admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "" #: admin/add-ons.php:256 admin/pms-cross-promotion.php:146 msgid "Could not install plugin. Retry or install manually." msgstr "" #: admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "" #: admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "" #: admin/pms-cross-promotion.php:37 msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." msgstr "" #: admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "" #: admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "" #: admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "" #: admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "" #: admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "" #: admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "" #: admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "" #: admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "" #: admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "" #: admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "" #: admin/pms-cross-promotion.php:104 msgid "Accept user payments, create subscription plans and restrict content on your website." msgstr "" #: admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "" #: features/email-confirmation/email-confirmation.php:400 msgid "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:45 msgid "After Login" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:46 msgid "After Logout" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:47 msgid "After Registration" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:48 msgid "After Edit Profile" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Successful Email Confirmation" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Successful Password Reset" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:51 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:55 msgid "User ID" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:61 msgid "User ID or Username" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:62 msgid "User ID / Username" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:62 msgid "Please select and enter the ID or username of your user." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:63 #: modules/custom-redirects/custom_redirects_admin.php:93 #: modules/custom-redirects/custom_redirects_admin.php:112 #: modules/custom-redirects/custom_redirects_admin.php:131 msgid "Redirect Type" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:64 #: modules/custom-redirects/custom_redirects_admin.php:94 #: modules/custom-redirects/custom_redirects_admin.php:113 #: modules/custom-redirects/custom_redirects_admin.php:138 msgid "Redirect URL" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:64 #: modules/custom-redirects/custom_redirects_admin.php:94 #: modules/custom-redirects/custom_redirects_admin.php:113 #: modules/custom-redirects/custom_redirects_admin.php:138 msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:71 #: modules/custom-redirects/custom_redirects_admin.php:241 msgid "Individual User Redirects" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:84 msgid "... Choose" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:92 msgid "Select a user role." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:101 #: modules/custom-redirects/custom_redirects_admin.php:242 msgid "User Role based Redirects" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:120 #: modules/custom-redirects/custom_redirects_admin.php:243 msgid "Global Redirects" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:133 msgid "Login ( wp_login.php )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:134 msgid "Register ( wp-login.php?action=register )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:135 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:136 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:145 msgid "Redirect Default WordPress Forms and Pages" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:157 msgid "How does this work?" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:179 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:193 msgid "
            User Role
            Redirect
            URL
            " msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:207 #: modules/custom-redirects/custom_redirects_admin.php:221 msgid "
            Redirect
            URL
            " msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:236 msgid "These redirects happen after a successful action, like registration or after a successful login." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:238 msgid "Which redirect happens depends on the following priority:" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:247 msgid "Redirect Default WordPress forms and pages" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:248 msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:250 msgid "Available tags for dynamic URLs" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:251 msgid "You use the following tags in your URLs to redirect users to various pages." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:253 msgid "generates a url of the current website homepage." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:254 msgid "in WordPress the site url can be different then the home url" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:255 msgid "the ID of the user" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:256 msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:257 msgid "the URL of the previously visited page" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:340 #: modules/custom-redirects/custom_redirects_admin.php:346 #: modules/custom-redirects/custom_redirects_admin.php:352 msgid "You can't add duplicate redirects!" msgstr "" #: admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "" #: admin/basic-info.php:37 msgid "Friction-less login using %s shortcode or a widget." msgstr "" #: admin/basic-info.php:41 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "" #: admin/basic-info.php:45 msgid "Straight forward edit profile forms using %s shortcode." msgstr "" #: admin/basic-info.php:58 msgid "Allow users to recover their password in the front-end using the %s." msgstr "" #: admin/basic-info.php:140 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." msgstr "" #: admin/general-settings.php:118 msgid "\"Admin Approval\" on User Role:" msgstr "" #: admin/general-settings.php:137 msgid "Select on what user roles to activate Admin Approval." msgstr "" #: admin/manage-fields.php:131 msgid "Display on PB forms" msgstr "" #: admin/manage-fields.php:131 msgid "PB Login" msgstr "" #: admin/manage-fields.php:131 msgid "PB Register" msgstr "" #: admin/manage-fields.php:131 msgid "PB Recover Password" msgstr "" #: admin/manage-fields.php:131 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "" #: admin/manage-fields.php:132 msgid "Display on default WP forms" msgstr "" #: admin/manage-fields.php:132 msgid "Default WP Login" msgstr "" #: admin/manage-fields.php:132 msgid "Default WP Register" msgstr "" #: admin/manage-fields.php:132 msgid "Default WP Recover Password" msgstr "" #: admin/manage-fields.php:132 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "" #: admin/manage-fields.php:138 admin/manage-fields.php:139 #: admin/manage-fields.php:140 msgid "Default option of the field" msgstr "" #: admin/manage-fields.php:279 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Afghanistan" msgstr "Afghanistan" #: admin/manage-fields.php:280 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Aland Islands" msgstr "Aland Islands" #: admin/manage-fields.php:281 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Albania" msgstr "Albania" #: admin/manage-fields.php:282 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Algeria" msgstr "Algeria" #: admin/manage-fields.php:283 #: front-end/extra-fields/select-country/select-country.php:10 msgid "American Samoa" msgstr "American Samoa" #: admin/manage-fields.php:284 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Andorra" msgstr "Andorra" #: admin/manage-fields.php:285 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Angola" msgstr "Angola" #: admin/manage-fields.php:286 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Anguilla" msgstr "Anguilla" #: admin/manage-fields.php:287 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Antarctica" msgstr "Antarctica" #: admin/manage-fields.php:288 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" #: admin/manage-fields.php:289 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Argentina" msgstr "Argentina" #: admin/manage-fields.php:290 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Armenia" msgstr "Armenia" #: admin/manage-fields.php:291 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Aruba" msgstr "Aruba" #: admin/manage-fields.php:292 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Australia" msgstr "Australia" #: admin/manage-fields.php:293 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Austria" msgstr "Austria" #: admin/manage-fields.php:294 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Azerbaijan" msgstr "Azerbaijan" #: admin/manage-fields.php:295 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bahamas" msgstr "Bahamas" #: admin/manage-fields.php:296 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bahrain" msgstr "Bahrain" #: admin/manage-fields.php:297 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bangladesh" msgstr "Bangladesh" #: admin/manage-fields.php:298 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Barbados" msgstr "Barbados" #: admin/manage-fields.php:299 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Belarus" msgstr "Belarus" #: admin/manage-fields.php:300 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Belgium" msgstr "Belgium" #: admin/manage-fields.php:301 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Belize" msgstr "Belize" #: admin/manage-fields.php:302 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Benin" msgstr "Benin" #: admin/manage-fields.php:303 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bermuda" msgstr "Bermuda" #: admin/manage-fields.php:304 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bhutan" msgstr "Bhutan" #: admin/manage-fields.php:305 msgid "Bolivia" msgstr "Bolivia" #: admin/manage-fields.php:306 msgid "Bonaire, Saint Eustatius and Saba" msgstr "Bonaire, Saint Eustatius and Saba" #: admin/manage-fields.php:307 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bosnia and Herzegovina" msgstr "Bosnia and Herzegovina" #: admin/manage-fields.php:308 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Botswana" msgstr "Botswana" #: admin/manage-fields.php:309 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bouvet Island" msgstr "Bouvet Island" #: admin/manage-fields.php:310 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Brazil" msgstr "Brazil" #: admin/manage-fields.php:311 #: front-end/extra-fields/select-country/select-country.php:10 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: admin/manage-fields.php:312 msgid "British Virgin Islands" msgstr "British Virgin Islands" #: admin/manage-fields.php:313 msgid "Brunei" msgstr "Brunei" #: admin/manage-fields.php:314 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bulgaria" msgstr "Bulgaria" #: admin/manage-fields.php:315 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Burkina Faso" msgstr "Burkina Faso" #: admin/manage-fields.php:316 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Burundi" msgstr "Burundi" #: admin/manage-fields.php:317 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cambodia" msgstr "Cambodia" #: admin/manage-fields.php:318 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cameroon" msgstr "Cameroon" #: admin/manage-fields.php:319 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Canada" msgstr "Canada" #: admin/manage-fields.php:320 msgid "Cape Verde" msgstr "Cape Verde" #: admin/manage-fields.php:321 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cayman Islands" msgstr "Cayman Islands" #: admin/manage-fields.php:322 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Central African Republic" msgstr "Central African Republic" #: admin/manage-fields.php:323 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Chad" msgstr "Chad" #: admin/manage-fields.php:324 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Chile" msgstr "Chile" #: admin/manage-fields.php:325 #: front-end/extra-fields/select-country/select-country.php:10 msgid "China" msgstr "China" #: admin/manage-fields.php:326 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Christmas Island" msgstr "Christmas Island" #: admin/manage-fields.php:327 msgid "Cocos Islands" msgstr "Cocos Islands" #: admin/manage-fields.php:328 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Colombia" msgstr "Colombia" #: admin/manage-fields.php:329 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Comoros" msgstr "Comoros" #: admin/manage-fields.php:330 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cook Islands" msgstr "Cook Islands" #: admin/manage-fields.php:331 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Costa Rica" msgstr "Costa Rica" #: admin/manage-fields.php:332 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Croatia" msgstr "Croatia" #: admin/manage-fields.php:333 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cuba" msgstr "Cuba" #: admin/manage-fields.php:334 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Curacao" msgstr "Curacao" #: admin/manage-fields.php:335 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cyprus" msgstr "Cyprus" #: admin/manage-fields.php:336 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Czech Republic" msgstr "Czech Republic" #: admin/manage-fields.php:337 msgid "Democratic Republic of the Congo" msgstr "Democratic Republic of the Congo" #: admin/manage-fields.php:338 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Denmark" msgstr "Denmark" #: admin/manage-fields.php:339 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Djibouti" msgstr "Djibouti" #: admin/manage-fields.php:340 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Dominica" msgstr "Dominica" #: admin/manage-fields.php:341 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Dominican Republic" msgstr "Dominican Republic" #: admin/manage-fields.php:342 msgid "East Timor" msgstr "East Timor" #: admin/manage-fields.php:343 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ecuador" msgstr "Ecuador" #: admin/manage-fields.php:344 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Egypt" msgstr "Egypt" #: admin/manage-fields.php:345 #: front-end/extra-fields/select-country/select-country.php:10 msgid "El Salvador" msgstr "El Salvador" #: admin/manage-fields.php:346 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: admin/manage-fields.php:347 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Eritrea" msgstr "Eritrea" #: admin/manage-fields.php:348 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Estonia" msgstr "Estonia" #: admin/manage-fields.php:349 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ethiopia" msgstr "Ethiopia" #: admin/manage-fields.php:350 msgid "Falkland Islands" msgstr "Falkland Islands" #: admin/manage-fields.php:351 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Faroe Islands" msgstr "Faroe Islands" #: admin/manage-fields.php:352 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Fiji" msgstr "Fiji" #: admin/manage-fields.php:353 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Finland" msgstr "Finland" #: admin/manage-fields.php:354 #: front-end/extra-fields/select-country/select-country.php:10 msgid "France" msgstr "France" #: admin/manage-fields.php:355 #: front-end/extra-fields/select-country/select-country.php:10 msgid "French Guiana" msgstr "French Guiana" #: admin/manage-fields.php:356 #: front-end/extra-fields/select-country/select-country.php:10 msgid "French Polynesia" msgstr "French Polynesia" #: admin/manage-fields.php:357 #: front-end/extra-fields/select-country/select-country.php:10 msgid "French Southern Territories" msgstr "French Southern Territories" #: admin/manage-fields.php:358 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Gabon" msgstr "Gabon" #: admin/manage-fields.php:359 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Gambia" msgstr "Gambia" #: admin/manage-fields.php:360 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Georgia" msgstr "Georgia" #: admin/manage-fields.php:361 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Germany" msgstr "Germany" #: admin/manage-fields.php:362 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ghana" msgstr "Ghana" #: admin/manage-fields.php:363 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Gibraltar" msgstr "Gibraltar" #: admin/manage-fields.php:364 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Greece" msgstr "Greece" #: admin/manage-fields.php:365 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Greenland" msgstr "Greenland" #: admin/manage-fields.php:366 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Grenada" msgstr "Grenada" #: admin/manage-fields.php:367 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guadeloupe" msgstr "Guadeloupe" #: admin/manage-fields.php:368 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guam" msgstr "Guam" #: admin/manage-fields.php:369 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guatemala" msgstr "Guatemala" #: admin/manage-fields.php:370 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guernsey" msgstr "Guernsey" #: admin/manage-fields.php:371 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea" msgstr "Guinea" #: admin/manage-fields.php:372 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: admin/manage-fields.php:373 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guyana" msgstr "Guyana" #: admin/manage-fields.php:374 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Haiti" msgstr "Haiti" #: admin/manage-fields.php:375 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Heard Island and McDonald Islands" msgstr "Heard Island and McDonald Islands" #: admin/manage-fields.php:376 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Honduras" msgstr "Honduras" #: admin/manage-fields.php:377 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Hong Kong" msgstr "Hong Kong" #: admin/manage-fields.php:378 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Hungary" msgstr "Hungary" #: admin/manage-fields.php:379 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Iceland" msgstr "Iceland" #: admin/manage-fields.php:380 #: front-end/extra-fields/select-country/select-country.php:10 msgid "India" msgstr "India" #: admin/manage-fields.php:381 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Indonesia" msgstr "Indonesia" #: admin/manage-fields.php:382 msgid "Iran" msgstr "Iran" #: admin/manage-fields.php:383 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Iraq" msgstr "Iraq" #: admin/manage-fields.php:384 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ireland" msgstr "Ireland" #: admin/manage-fields.php:385 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Isle of Man" msgstr "Isle of Man" #: admin/manage-fields.php:386 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Israel" msgstr "Israel" #: admin/manage-fields.php:387 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Italy" msgstr "Italy" #: admin/manage-fields.php:388 msgid "Ivory Coast" msgstr "Ivory Coast" #: admin/manage-fields.php:389 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Jamaica" msgstr "Jamaica" #: admin/manage-fields.php:390 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Japan" msgstr "Japan" #: admin/manage-fields.php:391 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Jersey" msgstr "Jersey" #: admin/manage-fields.php:392 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Jordan" msgstr "Jordan" #: admin/manage-fields.php:393 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kazakhstan" msgstr "Kazakhstan" #: admin/manage-fields.php:394 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kenya" msgstr "Kenya" #: admin/manage-fields.php:395 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kiribati" msgstr "Kiribati" #: admin/manage-fields.php:396 msgid "Kosovo" msgstr "Kosovo" #: admin/manage-fields.php:397 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kuwait" msgstr "Kuwait" #: admin/manage-fields.php:398 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: admin/manage-fields.php:399 msgid "Laos" msgstr "Laos" #: admin/manage-fields.php:400 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Latvia" msgstr "Latvia" #: admin/manage-fields.php:401 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lebanon" msgstr "Lebanon" #: admin/manage-fields.php:402 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lesotho" msgstr "Lesotho" #: admin/manage-fields.php:403 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Liberia" msgstr "Liberia" #: admin/manage-fields.php:404 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Libya" msgstr "Libya" #: admin/manage-fields.php:405 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Liechtenstein" msgstr "Liechtenstein" #: admin/manage-fields.php:406 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lithuania" msgstr "Lithuania" #: admin/manage-fields.php:407 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Luxembourg" msgstr "Luxembourg" #: admin/manage-fields.php:408 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Macao" msgstr "Macao" #: admin/manage-fields.php:409 msgid "Macedonia" msgstr "Macedonia" #: admin/manage-fields.php:410 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Madagascar" msgstr "Madagascar" #: admin/manage-fields.php:411 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Malawi" msgstr "Malawi" #: admin/manage-fields.php:412 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Malaysia" msgstr "Malaysia" #: admin/manage-fields.php:413 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Maldives" msgstr "Maldives" #: admin/manage-fields.php:414 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mali" msgstr "Mali" #: admin/manage-fields.php:415 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Malta" msgstr "Malta" #: admin/manage-fields.php:416 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Marshall Islands" msgstr "Marshall Islands" #: admin/manage-fields.php:417 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Martinique" msgstr "Martinique" #: admin/manage-fields.php:418 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritania" msgstr "Mauritania" #: admin/manage-fields.php:419 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritius" msgstr "Mauritius" #: admin/manage-fields.php:420 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mayotte" msgstr "Mayotte" #: admin/manage-fields.php:421 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mexico" msgstr "Mexico" #: admin/manage-fields.php:422 msgid "Micronesia" msgstr "Micronesia" #: admin/manage-fields.php:423 msgid "Moldova" msgstr "Moldova" #: admin/manage-fields.php:424 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Monaco" msgstr "Monaco" #: admin/manage-fields.php:425 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mongolia" msgstr "Mongolia" #: admin/manage-fields.php:426 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Montenegro" msgstr "Montenegro" #: admin/manage-fields.php:427 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Montserrat" msgstr "Montserrat" #: admin/manage-fields.php:428 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Morocco" msgstr "Morocco" #: admin/manage-fields.php:429 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mozambique" msgstr "Mozambique" #: admin/manage-fields.php:430 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Myanmar" msgstr "Myanmar" #: admin/manage-fields.php:431 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Namibia" msgstr "Namibia" #: admin/manage-fields.php:432 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nauru" msgstr "Nauru" #: admin/manage-fields.php:433 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nepal" msgstr "Nepal" #: admin/manage-fields.php:434 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Netherlands" msgstr "Netherlands" #: admin/manage-fields.php:435 #: front-end/extra-fields/select-country/select-country.php:10 msgid "New Caledonia" msgstr "New Caledonia" #: admin/manage-fields.php:436 #: front-end/extra-fields/select-country/select-country.php:10 msgid "New Zealand" msgstr "New Zealand" #: admin/manage-fields.php:437 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nicaragua" msgstr "Nicaragua" #: admin/manage-fields.php:438 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Niger" msgstr "Niger" #: admin/manage-fields.php:439 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nigeria" msgstr "Nigeria" #: admin/manage-fields.php:440 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Niue" msgstr "Niue" #: admin/manage-fields.php:441 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Norfolk Island" msgstr "Norfolk Island" #: admin/manage-fields.php:442 msgid "North Korea" msgstr "North Korea" #: admin/manage-fields.php:443 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: admin/manage-fields.php:444 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Norway" msgstr "Norway" #: admin/manage-fields.php:445 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Oman" msgstr "Oman" #: admin/manage-fields.php:446 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Pakistan" msgstr "Pakistan" #: admin/manage-fields.php:447 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Palau" msgstr "Palau" #: admin/manage-fields.php:448 msgid "Palestinian Territory" msgstr "Palestinian Territory" #: admin/manage-fields.php:449 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Panama" msgstr "Panama" #: admin/manage-fields.php:450 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: admin/manage-fields.php:451 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Paraguay" msgstr "Paraguay" #: admin/manage-fields.php:452 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Peru" msgstr "Peru" #: admin/manage-fields.php:453 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Philippines" msgstr "Philippines" #: admin/manage-fields.php:454 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Pitcairn" msgstr "Pitcairn" #: admin/manage-fields.php:455 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Poland" msgstr "Poland" #: admin/manage-fields.php:456 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Portugal" msgstr "Portugal" #: admin/manage-fields.php:457 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Puerto Rico" msgstr "Puerto Rico" #: admin/manage-fields.php:458 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Qatar" msgstr "Qatar" #: admin/manage-fields.php:459 msgid "Republic of the Congo" msgstr "Republic of the Congo" #: admin/manage-fields.php:460 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Reunion" msgstr "Reunion" #: admin/manage-fields.php:461 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Romania" msgstr "Romania" #: admin/manage-fields.php:462 msgid "Russia" msgstr "Russia" #: admin/manage-fields.php:463 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Rwanda" msgstr "Rwanda" #: admin/manage-fields.php:464 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: admin/manage-fields.php:465 msgid "Saint Helena" msgstr "Saint Helena" #: admin/manage-fields.php:466 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts and Nevis" #: admin/manage-fields.php:467 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Lucia" msgstr "Saint Lucia" #: admin/manage-fields.php:468 msgid "Saint Martin" msgstr "Saint Martin" #: admin/manage-fields.php:469 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre and Miquelon" #: admin/manage-fields.php:470 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent and the Grenadines" #: admin/manage-fields.php:471 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Samoa" msgstr "Samoa" #: admin/manage-fields.php:472 #: front-end/extra-fields/select-country/select-country.php:10 msgid "San Marino" msgstr "San Marino" #: admin/manage-fields.php:473 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sao Tome and Principe" msgstr "Sao Tome and Principe" #: admin/manage-fields.php:474 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: admin/manage-fields.php:475 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Senegal" msgstr "Senegal" #: admin/manage-fields.php:476 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Serbia" msgstr "Serbia" #: admin/manage-fields.php:477 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Seychelles" msgstr "Seychelles" #: admin/manage-fields.php:478 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sierra Leone" msgstr "Sierra Leone" #: admin/manage-fields.php:479 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Singapore" msgstr "Singapore" #: admin/manage-fields.php:480 msgid "Sint Maarten" msgstr "Sint Maarten" #: admin/manage-fields.php:481 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Slovakia" msgstr "Slovakia" #: admin/manage-fields.php:482 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Slovenia" msgstr "Slovenia" #: admin/manage-fields.php:483 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Solomon Islands" msgstr "Solomon Islands" #: admin/manage-fields.php:484 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Somalia" msgstr "Somalia" #: admin/manage-fields.php:485 #: front-end/extra-fields/select-country/select-country.php:10 msgid "South Africa" msgstr "South Africa" #: admin/manage-fields.php:486 #: front-end/extra-fields/select-country/select-country.php:10 msgid "South Georgia and the South Sandwich Islands" msgstr "South Georgia and the South Sandwich Islands" #: admin/manage-fields.php:487 msgid "South Korea" msgstr "South Korea" #: admin/manage-fields.php:488 #: front-end/extra-fields/select-country/select-country.php:10 msgid "South Sudan" msgstr "South Sudan" #: admin/manage-fields.php:489 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Spain" msgstr "Spain" #: admin/manage-fields.php:490 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sri Lanka" msgstr "Sri Lanka" #: admin/manage-fields.php:491 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sudan" msgstr "Sudan" #: admin/manage-fields.php:492 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Suriname" msgstr "Suriname" #: admin/manage-fields.php:493 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Svalbard and Jan Mayen" msgstr "Svalbard and Jan Mayen" #: admin/manage-fields.php:494 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Swaziland" msgstr "Swaziland" #: admin/manage-fields.php:495 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sweden" msgstr "Sweden" #: admin/manage-fields.php:496 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Switzerland" msgstr "Switzerland" #: admin/manage-fields.php:497 msgid "Syria" msgstr "Syria" #: admin/manage-fields.php:498 msgid "Taiwan" msgstr "Taiwan" #: admin/manage-fields.php:499 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tajikistan" msgstr "Tajikistan" #: admin/manage-fields.php:500 msgid "Tanzania" msgstr "Tanzania" #: admin/manage-fields.php:501 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Thailand" msgstr "Thailand" #: admin/manage-fields.php:502 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Togo" msgstr "Togo" #: admin/manage-fields.php:503 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tokelau" msgstr "Tokelau" #: admin/manage-fields.php:504 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tonga" msgstr "Tonga" #: admin/manage-fields.php:505 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Trinidad and Tobago" msgstr "Trinidad and Tobago" #: admin/manage-fields.php:506 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tunisia" msgstr "Tunisia" #: admin/manage-fields.php:507 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Turkey" msgstr "Turkey" #: admin/manage-fields.php:508 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Turkmenistan" msgstr "Turkmenistan" #: admin/manage-fields.php:509 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Islands" #: admin/manage-fields.php:510 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tuvalu" msgstr "Tuvalu" #: admin/manage-fields.php:511 msgid "U.S. Virgin Islands" msgstr "U.S. Virgin Islands" #: admin/manage-fields.php:512 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Uganda" msgstr "Uganda" #: admin/manage-fields.php:513 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ukraine" msgstr "Ukraine" #: admin/manage-fields.php:514 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United Arab Emirates" msgstr "United Arab Emirates" #: admin/manage-fields.php:515 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United Kingdom" msgstr "United Kingdom" #: admin/manage-fields.php:516 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United States" msgstr "United States" #: admin/manage-fields.php:517 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: admin/manage-fields.php:518 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Uruguay" msgstr "Uruguay" #: admin/manage-fields.php:519 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Uzbekistan" msgstr "Uzbekistan" #: admin/manage-fields.php:520 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Vanuatu" msgstr "Vanuatu" #: admin/manage-fields.php:521 msgid "Vatican" msgstr "Vatican" #: admin/manage-fields.php:522 msgid "Venezuela" msgstr "Venezuela" #: admin/manage-fields.php:523 msgid "Vietnam" msgstr "Vietnam" #: admin/manage-fields.php:524 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Wallis and Futuna" msgstr "Wallis and Futuna" #: admin/manage-fields.php:525 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Western Sahara" msgstr "Western Sahara" #: admin/manage-fields.php:526 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Yemen" msgstr "Yemen" #: admin/manage-fields.php:527 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Zambia" msgstr "Zambia" #: admin/manage-fields.php:528 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Zimbabwe" msgstr "Zimbabwe" #: admin/manage-fields.php:1216 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." msgstr "" #: assets/misc/plugin-compatibilities.php:237 msgid "Your account has to be confirmed by an administrator before you can log in." msgstr "" #: features/admin-approval/admin-approval.php:214 msgid "Your account has been successfully created!" msgstr "" #: features/functions.php:678 #: front-end/extra-fields/recaptcha/recaptcha.php:374 #: front-end/extra-fields/recaptcha/recaptcha.php:379 #: front-end/extra-fields/recaptcha/recaptcha.php:421 #: front-end/extra-fields/recaptcha/recaptcha.php:458 msgid "Please enter a (valid) reCAPTCHA value" msgstr "" #: front-end/extra-fields/recaptcha/recaptcha.php:421 msgid "Click the BACK button on your browser, and try again." msgstr "" #: front-end/extra-fields/upload/upload_helper_functions.php:78 #: front-end/extra-fields/upload/upload_helper_functions.php:87 msgid "Sorry, you cannot upload this file type for this field." msgstr "" #: front-end/extra-fields/upload/upload_helper_functions.php:94 msgid "An error occurred, please try again later." msgstr "" #: modules/user-listing/userlisting.php:282 msgid "More" msgstr "" #: modules/user-listing/userlisting.php:376 msgid "You do not have permission to view this user list." msgstr "" #: modules/user-listing/userlisting.php:389 msgid "You do not have the required user role to view this user list." msgstr "" #: modules/user-listing/userlisting.php:2186 msgid "Ascending" msgstr "" #: modules/user-listing/userlisting.php:2187 msgid "Descending" msgstr "" #: admin/add-ons.php:148 admin/add-ons.php:248 #: admin/pms-cross-promotion.php:134 admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "现在下载" #: admin/admin-functions.php:200 msgid "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. " msgstr "" #: admin/manage-fields.php:80 msgid "Choose one of the supported field types" msgstr "请选择其中一个支持的类型" #: admin/manage-fields.php:82 msgid ". Extra Field Types are available in Hobbyist or PRO versions." msgstr "网站秘钥" #: admin/manage-fields.php:129 msgid "Site Key" msgstr "网站秘钥" #: admin/manage-fields.php:129 msgid "The site key from Google, www.google.com/recaptcha" msgstr "网站秘钥" #: admin/manage-fields.php:130 msgid "Secret Key" msgstr "" #: admin/manage-fields.php:130 msgid "The secret key from Google, www.google.com/recaptcha" msgstr "" #: admin/manage-fields.php:1020 msgid "You must enter the site key\n" msgstr "" #: admin/manage-fields.php:1022 msgid "You must enter the secret key\n" msgstr "" #: admin/add-ons.php:10 admin/add-ons.php:32 msgid "Add-Ons" msgstr "插件" #: admin/add-ons.php:34 admin/add-ons.php:129 admin/add-ons.php:231 #: admin/pms-cross-promotion.php:78 admin/pms-cross-promotion.php:114 #: admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "激活" #: admin/add-ons.php:36 admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "正在下载并安装..." #: admin/add-ons.php:37 admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "安装完成" #: admin/add-ons.php:39 msgid "Add-On is Active" msgstr "插件已激活" #: admin/add-ons.php:40 msgid "Add-On has been activated" msgstr "插件已激活" #: admin/add-ons.php:41 admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "重新安装" #: admin/add-ons.php:43 admin/add-ons.php:140 msgid "Add-On is active" msgstr "" #: admin/add-ons.php:44 admin/add-ons.php:138 msgid "Add-On is inactive" msgstr "" #: admin/add-ons.php:46 admin/add-ons.php:133 admin/add-ons.php:235 #: admin/pms-cross-promotion.php:90 admin/pms-cross-promotion.php:118 #: admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "未启用" #: admin/add-ons.php:47 msgid "Add-On has been deactivated." msgstr "插件已关闭" #: admin/add-ons.php:59 msgid "Something went wrong, we could not connect to the server. Please try again later." msgstr "现在无法连接服务器,请稍候重试" #: admin/pms-cross-promotion.php:137 admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "立即安装" #: admin/add-ons.php:153 admin/add-ons.php:251 #: admin/pms-cross-promotion.php:141 admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "与您现版本的Profile Builder兼容" #: admin/add-ons.php:162 msgid "Upgrade Profile Builder" msgstr "更新Profile Builder" #: admin/add-ons.php:163 msgid "Not compatible with Profile Builder" msgstr "与Profile Builder不兼容" #: admin/add-ons.php:171 msgid "Not compatible with your version of Profile Builder." msgstr "于您现版本的Profile Builder不兼容" #: admin/add-ons.php:172 msgid "Minimum required Profile Builder version:" msgstr "所需Profile Builder最低版本" #: admin/add-ons.php:177 msgid "Could not install add-on. Retry or install manually." msgstr "无法安装插件,请重试或 install manually." #: front-end/default-fields/email/email.php:51 msgid "You must enter a valid email address." msgstr "请输入有效的邮箱地址" #: front-end/default-fields/username/username.php:52 #: front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "用户名无效,因为含有非法字符" #: front-end/default-fields/username/username.php:52 #: front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "请输入有效的用户名" #: front-end/extra-fields/user-role/user-role.php:72 #: front-end/extra-fields/user-role/user-role.php:85 msgid "Only administrators can see this field on edit profile forms." msgstr "只有管理员才能看到编辑信息的表格项" #: front-end/extra-fields/user-role/user-role.php:81 msgid "As an administrator you cannot change your role." msgstr "作为管理员,您无法改变您的角色" #: modules/email-customizer/admin-email-customizer.php:117 msgid "" "\n" "

            {{username}} has requested a password change via the password reset feature.

            \n" "

            His/her new password is: {{password}}

            \n" msgstr "" #: modules/email-customizer/admin-email-customizer.php:141 msgid "Admin Notification for User Password Reset" msgstr "" #: modules/email-customizer/email-customizer.php:46 msgid "Reset Key" msgstr "" #: modules/email-customizer/email-customizer.php:47 msgid "Reset Url" msgstr "" #: modules/email-customizer/email-customizer.php:48 msgid "Reset Link" msgstr "" #: modules/email-customizer/user-email-customizer.php:204 msgid "" "\n" "

            Someone requested that the password be reset for the following account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            \n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" msgstr "" #: modules/email-customizer/user-email-customizer.php:218 msgid "[{{site_name}}] Password Reset" msgstr "" #: modules/email-customizer/user-email-customizer.php:229 msgid "Password Reset Email" msgstr "密码重设邮件" #: modules/email-customizer/user-email-customizer.php:235 msgid "" "\n" "

            You have successfully reset your password to: {{password}}

            \n" msgstr "" #: modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset Successfully" msgstr "" #: modules/email-customizer/user-email-customizer.php:256 msgid "Password Reset Success Email" msgstr "密码重设成功确认邮件" #: modules/user-listing/userlisting.php:159 msgid "User Nicename" msgstr "用户昵称" #: modules/user-listing/userlisting.php:499 msgid "None" msgstr "" #: admin/admin-functions.php:132 msgid "ERROR: The password must have the minimum length of %s characters" msgstr "错误: 密码必须有 %s 个字符" #: admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr "错误: 密码必须满足强度 %s" #: admin/general-settings.php:163 msgid "Username and Email" msgstr "用户名和邮箱" #: admin/general-settings.php:168 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "\"用户名和邮箱\" - 同时以用户名和邮箱登陆" #: admin/general-settings.php:169 msgid "\"Username\" - users can Log In only with Username." msgstr "\"用户名\" - 只能以用户名登陆" #: admin/general-settings.php:170 msgid "\"Email\" - users can Log In only with Email." msgstr "\"邮箱\" - 用户只能用邮箱登陆" #: admin/manage-fields.php:122 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "指定你想限制的文件后缀
            例如: .ext1,.ext2,.ext3
            如果不指定,默认为: .jpg,.jpeg,.gif,.png (.*)" #: admin/manage-fields.php:123 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)" msgstr "指定你想限制的文件后缀
            例如: .ext1,.ext2,.ext3
            如果不指定,默认为Wordpress所允许的全部文件后缀" #: admin/manage-fields.php:133 msgid "User Roles" msgstr "用户角色" #: admin/manage-fields.php:133 msgid "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "请选择要对用户显示哪个角色(可拖拽排序)" #: admin/manage-fields.php:134 msgid "User Roles Order" msgstr "用户角色排序" #: admin/manage-fields.php:134 msgid "Save the user role order from the user roles checkboxes" msgstr "从角色选择框来保存角色排序" #: admin/manage-fields.php:1125 msgid "Please select at least one user role\n" msgstr "请至少选择一个用户角色\n" #: admin/register-version.php:22 msgid "Profile Builder Register" msgstr "Profile Builder 注册" #: admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "序列号即将到期" #: admin/register-version.php:81 msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr "您的序列号即将到期, 请 %1$s 更新您的许可 %2$s." #: admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr "您的序列号已经过期, 请 %1$s 更新您的许可 %2$s. " #: assets/lib/wck-api/wordpress-creation-kit.php:334 msgid "Add Entry" msgstr "增加条目" #: features/email-confirmation/class-email-confirmation.php:91 msgid "show" msgstr "显示" #: features/functions.php:736 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" msgstr "为使用户可以通过Profile Builder注册,您首先需要开启“用户注册”。去到%1$s网络设置%2$s,常规,确保”任何人都可以注册“这个选项已被勾选。%3$s忽略%4$s" #: front-end/class-formbuilder.php:643 msgid "User to edit:" msgstr "要编辑的用户" #: front-end/default-fields/password/password.php:46 front-end/recover.php:254 msgid "The password must have the minimum length of %s characters" msgstr "密码至少应包括%s个字符" #: front-end/default-fields/password/password.php:50 front-end/recover.php:258 msgid "The password must have a minimum strength of %s" msgstr "密码至少满足强度 %s" #: front-end/extra-fields/user-role/user-role.php:118 msgid "You cannot register this user role" msgstr "您不可以注册这个用户组" #: front-end/login.php:153 msgid "username or email" msgstr "用户名或邮件" #: front-end/login.php:222 msgid "Username or Email" msgstr "用户名或邮件" #: front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "您现在的登陆名为 %s" #: front-end/logout.php:15 msgid "Log out »" msgstr "登出»" #: modules/custom-redirects/custom_redirects_admin.php:92 #: modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "用户角色" #: modules/user-listing/userlisting.php:2100 msgid "View all extra shortcode parameters" msgstr "查看其他的断码参数" #: modules/user-listing/userlisting.php:2114 msgid "displays only the users that you specified the user_id for" msgstr "仅向指定用户ID显示" #: modules/user-listing/userlisting.php:2120 msgid "displays all users except the ones you specified the user_id for" msgstr "向除了指定用户ID之外的所有用户显示" #: features/functions.php:566 msgid "Minimum length of %d characters" msgstr "最少%d个字符" #: front-end/class-formbuilder.php:135 front-end/class-formbuilder.php:138 msgid "This message is only visible by administrators" msgstr "只有管理员可以查看该信息" #: modules/user-listing/userlisting.php:413 msgid "User not found" msgstr "找不到用户" #: modules/email-customizer/admin-email-customizer.php:38 #: modules/email-customizer/user-email-customizer.php:38 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "" #: admin/admin-bar.php:48 msgid "Choose which user roles view the admin bar in the front-end of the website." msgstr "选择哪个用户角色可以产看网站前台的管理员工具栏" #: admin/manage-fields.php:127 msgid "Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes" msgstr "因为用户无法看到您所输入的字符,您可以输入任意字符并以逗号“,\" 隔开,但这些字符不能包括特殊符号" #: admin/manage-fields.php:1052 msgid "The meta-name cannot be empty\n" msgstr "" #: admin/register-version.php:69 msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received" msgstr "" #: admin/register-version.php:243 msgid "

            Your Profile Builder serial number is invalid or missing.
            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

            " msgstr "" #: assets/lib/wck-api/fields/country select.php:14 #: assets/lib/wck-api/fields/cpt select.php:17 #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36 #: front-end/extra-fields/select-cpt/select-cpt.php:60 msgid "...Choose" msgstr "请选择" #: features/class-list-table.php:526 features/class-list-table.php:942 msgid "1 item" msgid_plural "%s items" msgstr[0] "" #: features/functions.php:552 msgid "Very Weak" msgstr "非常弱" #: features/functions.php:640 msgid "This field is required" msgstr "必填选项" #: features/functions.php:704 msgid "Cancel" msgstr "取消" #: features/functions.php:740 msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s" msgstr "" #: front-end/login.php:144 msgid "Invalid username." msgstr "不正确的用户名" #: front-end/login.php:149 front-end/login.php:153 msgid "username" msgstr "用户名" #: front-end/login.php:149 msgid "email" msgstr "邮件" #: front-end/login.php:256 msgid "Lost your password?" msgstr "忘记密码?" #: index.php:34 msgid " is also activated. You need to deactivate it before activating this version of the plugin." msgstr "" #: modules/email-customizer/admin-email-customizer.php:54 #: modules/email-customizer/user-email-customizer.php:54 msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email" msgstr "" #: features/email-confirmation/email-confirmation.php:573 #: features/email-confirmation/email-confirmation.php:582 #: modules/email-customizer/email-customizer.php:487 #: modules/email-customizer/email-customizer.php:494 #: modules/email-customizer/email-customizer.php:508 msgid "Your selected password at signup" msgstr "您在注册时输入的密码" #: modules/email-customizer/user-email-customizer.php:38 msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save." msgstr "" #: modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "这个表格是空的" #: modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "删除所有条目" #: modules/multiple-forms/multiple-forms.php:406 msgid "Delete all" msgstr "全部删除" #: modules/user-listing/userlisting.php:1592 msgid "Choose..." msgstr "请选择" #: modules/user-listing/userlisting.php:2196 msgid "Set the number of users to be displayed on every paginated part of the all-userlisting" msgstr "" #: admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "显示/隐藏管理员工具栏在前端" #: admin/admin-bar.php:10 admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "管理员工具栏设置" #: admin/admin-bar.php:57 msgid "User-Role" msgstr "用户角色" #: admin/admin-bar.php:58 msgid "Visibility" msgstr "可见" #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "默认" #: admin/admin-bar.php:74 msgid "Show" msgstr "显示" #: admin/admin-bar.php:75 modules/user-listing/userlisting.php:1537 msgid "Hide" msgstr "隐藏" #: admin/admin-bar.php:86 admin/general-settings.php:208 #: admin/register-version.php:95 features/functions.php:697 #: modules/modules.php:127 msgid "Save Changes" msgstr "保存更改" #: admin/admin-functions.php:37 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 )" msgstr "登录允许使用电子邮件。这字段不会显示在前端! ( 你可以改变这些设置,在 \"%s\" 选项卡中 )" #: admin/admin-functions.php:37 admin/general-settings.php:10 #: admin/general-settings.php:38 msgid "General Settings" msgstr "常规设置" #: admin/admin-functions.php:137 admin/general-settings.php:194 msgid "Very weak" msgstr "非常弱" #: admin/admin-functions.php:137 admin/general-settings.php:195 #: features/functions.php:552 msgid "Weak" msgstr "弱" #: admin/admin-functions.php:137 admin/general-settings.php:196 #: features/functions.php:552 msgid "Medium" msgstr "中" #: admin/admin-functions.php:137 admin/general-settings.php:197 #: features/functions.php:552 msgid "Strong" msgstr "强" #: admin/admin-functions.php:187 msgid "Add Field" msgstr "添加字段" #: admin/admin-functions.php:189 #: modules/class-mustache-templates/class-mustache-templates.php:390 msgid "Save Settings" msgstr "保存设置" #: admin/basic-info.php:10 msgid "Basic Information" msgstr "基本信息" #: admin/basic-info.php:29 msgid "Version %s" msgstr "版本 %s" #: admin/basic-info.php:30 msgid "Profile Builder " msgstr "Profile Builder " #: admin/basic-info.php:31 msgid "The best way to add front-end registration, edit profile and login forms." msgstr "最好的前端注册、编辑个人资料与登陆表单的实现方式。" #: admin/basic-info.php:33 msgid "For Modern User Interaction" msgstr "新颖的用户交互。" #: admin/basic-info.php:36 features/login-widget/login-widget.php:59 msgid "Login" msgstr "登陆" #: admin/basic-info.php:40 msgid "Registration" msgstr "注册" #: admin/basic-info.php:44 msgid "Edit Profile" msgstr "编辑个人资料" #: admin/basic-info.php:51 msgid "Extra Features" msgstr "额外字段" #: admin/basic-info.php:52 msgid "Features that give you more control over your users, increased security and help you fight user registration spam." msgstr "特性,让您对您的用户更多的控制,增强安全性,帮助用户注册与限制垃圾邮件。" #: admin/basic-info.php:53 msgid "Enable extra features" msgstr "启用额外功能" #: admin/basic-info.php:57 msgid "Recover Password" msgstr "恢复密码" #: admin/basic-info.php:61 msgid "Admin Approval (*)" msgstr "管理员审批 (*)" #: admin/basic-info.php:62 msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI." msgstr "你决定在你的网站用户是谁。从WordPress 界面通过电子邮件或批准的多个用户获得通知。" #: admin/basic-info.php:65 msgid "Email Confirmation" msgstr "电子邮件确认" #: admin/basic-info.php:66 msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address." msgstr "确保用户注册是使用真实的电子邮件。注册用户将收到一个通知,确认他们的电子邮件地址。" #: admin/basic-info.php:69 msgid "Minimum Password Length and Strength Meter" msgstr "最小密码长度和强度表" #: admin/basic-info.php:70 msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength." msgstr "消除弱密码最小密码长度,并强制执行设定的密码强度。" #: admin/basic-info.php:73 msgid "Login with Email or Username" msgstr "通过电子邮件或用户名登录" #: admin/basic-info.php:74 msgid "Allow users to log in with their email or username when accessing your site." msgstr "当用户访问您的网站时,允许用户登录他们的用户名和电子邮件。" #: admin/basic-info.php:87 msgid "Customize Your Forms The Way You Want (*)" msgstr "自定义表格用你想要的方式(*)" #: admin/basic-info.php:88 msgid "With Extra Profile Fields you can create the exact registration form your project needs." msgstr "额外个人资料字段,根据您的项目需求你可以创建精确的登注册表单。" #: admin/basic-info.php:90 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "额外个人资料字段需要激活 Hobbyist 或者 PRO 版本才可用" #: admin/basic-info.php:92 msgid "Get started with extra fields" msgstr "开始使用额外字段" #: admin/basic-info.php:95 msgid "Avatar Upload" msgstr "头像上传" #: admin/basic-info.php:96 msgid "Generic Uploads" msgstr "常规上传" #: admin/basic-info.php:97 msgid "Agree To Terms Checkbox" msgstr "同意使用条款" #: admin/basic-info.php:98 msgid "Datepicker" msgstr "日期选择器" #: admin/basic-info.php:101 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: admin/basic-info.php:102 msgid "Country Select" msgstr "国家选择" #: admin/basic-info.php:104 msgid "Timezone Select" msgstr "时区选择" #: admin/basic-info.php:108 msgid "Input / Hidden Input" msgstr "输入/隐藏输入" #: admin/basic-info.php:110 msgid "Checkbox" msgstr "复选框" #: admin/basic-info.php:111 msgid "Select" msgstr "选择" #: admin/basic-info.php:112 msgid "Radio Buttons" msgstr "单选按钮" #: admin/basic-info.php:113 msgid "Textarea" msgstr "文本框" #: admin/basic-info.php:125 msgid "Powerful Modules (**)" msgstr "强大的模块(**)" #: admin/basic-info.php:126 msgid "Everything you will need to manage your users is probably already available using the Pro Modules." msgstr "使用一切你需要的工具,用于管理你的用户的模块。" #: admin/basic-info.php:128 msgid "Enable your modules" msgstr "启用你的模块" #: admin/basic-info.php:131 msgid "Find out more about PRO Modules" msgstr "了解关于专业版模块的更多内容" #: admin/basic-info.php:136 modules/modules.php:89 #: modules/user-listing/userlisting.php:11 #: modules/user-listing/userlisting.php:12 #: modules/user-listing/userlisting.php:17 #: modules/user-listing/userlisting.php:23 msgid "User Listing" msgstr "用户列表" #: admin/basic-info.php:138 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." msgstr "易于编辑模列表您的网站用户,以及创建单用户页面模板。基于简码,提供了许多选项来定制您的列表。" #: admin/basic-info.php:144 msgid "Email Customizer" msgstr "电子邮件定制" #: admin/basic-info.php:145 msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval." msgstr "个性化邮件发送到你的用户或管理员。注册,电子邮件确认,管理员批准/拒绝。" #: admin/basic-info.php:148 #: modules/custom-redirects/custom_redirects_admin.php:32 #: modules/custom-redirects/custom_redirects_admin.php:33 #: modules/modules.php:110 msgid "Custom Redirects" msgstr "自定义重定向" #: admin/basic-info.php:149 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." msgstr "让你的用户离开 WordPress 仪表盘,重定向到他们的前端页面,登录注册一切都只需几个点击。" #: admin/basic-info.php:154 modules/modules.php:75 msgid "Multiple Registration Forms" msgstr "多个注册形式" #: admin/basic-info.php:155 msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users." msgstr "设置多个注册表单为某些用户角色不同的字段。获取来自不同类型的用户不同的信息。" #: admin/basic-info.php:158 modules/modules.php:82 msgid "Multiple Edit-profile Forms" msgstr "多个编辑个人资料形式" #: admin/basic-info.php:159 msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles." msgstr "允许不同的用户角色去编辑他们的具体信息。设置多个编辑表单一不同的作用字段。" #: admin/basic-info.php:187 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr " * 仅获得在 %1$sHobbyist 与专业版本 %2$s." #: admin/basic-info.php:188 msgid "** only available in the %1$sPro version%2$s." msgstr "** 仅激活在 %1$s专业版本 %2$s." #: admin/general-settings.php:42 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "在前端载入 Profile Builder 的CSS文件:" #: admin/general-settings.php:45 admin/general-settings.php:58 #: admin/general-settings.php:107 #: 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:2201 msgid "Yes" msgstr "是" #: admin/general-settings.php:47 msgid "You can find the default file here: %1$s" msgstr "你可以在这里找到默认的文件: %1$s" #: admin/general-settings.php:54 msgid "\"Email Confirmation\" Activated:" msgstr "\"邮件确认\" 激活:" #: admin/general-settings.php:59 admin/general-settings.php:108 #: modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:229 #: modules/multiple-forms/register-forms.php:230 msgid "No" msgstr "不" #: admin/general-settings.php:64 msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s." msgstr "您可以找到还没确认邮箱地址的列表 %1$s用户 > 所有用户 > 邮箱确认%2$s." #: admin/general-settings.php:72 msgid "\"Email Confirmation\" Landing Page:" msgstr "\"邮件确认\" 登陆页面:" #: admin/general-settings.php:77 msgid "Existing Pages" msgstr "现有页面" #: admin/general-settings.php:92 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." msgstr "指定供用户确认邮件的转向页面。此页面可不同于注册页面(s)并且可随时改变。如果没有指定,将显示给用户一个简单确认页。" #: admin/general-settings.php:103 msgid "\"Admin Approval\" Activated:" msgstr "\"管理员审批\" 激活:" #: admin/general-settings.php:111 msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "您可以找到用户在 %1$s用户 > 所有用户 > 管理员审批%2$s." #: admin/general-settings.php:149 msgid "\"Admin Approval\" Feature:" msgstr "\"管理员审批\" 功能 :" #: admin/general-settings.php:152 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." msgstr "您控制您的用户在网站上的角色。获得游戏通知或者一次性批量审批多用户。启用管理审批功能需要升级到 %1$sHobbyist 或者 专业版本%2$s。" #: admin/general-settings.php:159 msgid "Allow Users to Log in With:" msgstr "允许用户使用什么登陆:" #: admin/general-settings.php:164 admin/manage-fields.php:198 #: features/admin-approval/class-admin-approval.php:166 #: features/email-confirmation/class-email-confirmation.php:167 #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218 #: modules/custom-redirects/custom_redirects_admin.php:56 #: modules/email-customizer/email-customizer.php:28 #: modules/user-listing/userlisting.php:102 #: modules/user-listing/userlisting.php:277 #: modules/user-listing/userlisting.php:730 #: modules/user-listing/userlisting.php:2152 msgid "Username" msgstr "姓名" #: admin/general-settings.php:165 front-end/login.php:215 #: modules/email-customizer/email-customizer.php:29 #: modules/user-listing/userlisting.php:736 #: modules/user-listing/userlisting.php:2153 msgid "Email" msgstr "电子邮件" #: admin/general-settings.php:177 msgid "Minimum Password Length:" msgstr "最小密码长度:" #: admin/general-settings.php:182 msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit" msgstr "输入密码必须最少字符。留空为没有限制" #: admin/general-settings.php:189 msgid "Minimum Password Strength:" msgstr "最小密码强度:" #: admin/general-settings.php:193 msgid "Disabled" msgstr "关闭" #: admin/manage-fields.php:12 msgid "Manage Fields" msgstr "管理字段" #: admin/manage-fields.php:13 msgid "Manage Default and Extra Fields" msgstr "管理默认与额外字段" #: admin/manage-fields.php:116 msgid "Field Title" msgstr "字段标题" #: admin/manage-fields.php:116 msgid "Title of the field" msgstr "字段的标题" #: admin/manage-fields.php:117 #: modules/multiple-forms/edit-profile-forms.php:245 #: modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "字段" #: admin/manage-fields.php:118 msgid "Meta-name" msgstr "Meta-name" #: admin/manage-fields.php:119 #: modules/custom-redirects/custom_redirects_admin.php:65 #: modules/custom-redirects/custom_redirects_admin.php:95 #: modules/custom-redirects/custom_redirects_admin.php:114 #: modules/custom-redirects/custom_redirects_admin.php:139 #: modules/multiple-forms/edit-profile-forms.php:246 #: modules/multiple-forms/register-forms.php:267 msgid "ID" msgstr "编号" #: admin/manage-fields.php:119 #: modules/multiple-forms/edit-profile-forms.php:246 #: modules/multiple-forms/register-forms.php:267 msgid "A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be edited" msgstr "一个独特的、为特定的字段自动生成ID
            如果需要可以使用过滤器调用这个目标
            不能编辑" #: admin/manage-fields.php:120 msgid "Description" msgstr "描述" #: admin/manage-fields.php:120 msgid "Enter a (detailed) description of the option for end users to read
            Optional" msgstr "输入(详细)的最终用户阅读选项的描述
            可选" #: admin/manage-fields.php:121 msgid "Row Count" msgstr "行数" #: admin/manage-fields.php:121 msgid "Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5" msgstr "指定 'Textarea' 字段的行数
            如果没有指定,缺省为5" #: admin/manage-fields.php:122 msgid "Allowed Image Extensions" msgstr "允许的图像扩展" #: admin/manage-fields.php:123 msgid "Allowed Upload Extensions" msgstr "允许的上传扩展" #: admin/manage-fields.php:124 msgid "Avatar Size" msgstr "头像大小" #: admin/manage-fields.php:124 msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100" msgstr "输入 '头像' 大小数值 ( 20 与 200 之间 )
            如果没指定,默认是100" #: admin/manage-fields.php:125 msgid "Date-format" msgstr "日期格式" #: admin/manage-fields.php:126 msgid "Terms of Agreement" msgstr "协议条款" #: admin/manage-fields.php:126 msgid "Enter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>" msgstr "输入一个供用户查看的协议内容。
            连接可以使用 HTML 语法,例如:<a href=\"custom_url\">custom_text</a>" #: admin/manage-fields.php:127 msgid "Options" msgstr "选项" #: admin/manage-fields.php:128 msgid "Labels" msgstr "标签" #: admin/manage-fields.php:128 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "输入一个逗号分隔标签
            对用户可见的" #: admin/manage-fields.php:135 msgid "Default Value" msgstr "默认值" #: admin/manage-fields.php:135 msgid "Default value of the field" msgstr "该字段的默认值" #: admin/manage-fields.php:136 admin/manage-fields.php:138 #: admin/manage-fields.php:139 admin/manage-fields.php:140 msgid "Default Option" msgstr "默认选项" #: admin/manage-fields.php:136 msgid "Specify the option which should be selected by default" msgstr "指定选项的默认选择值" #: admin/manage-fields.php:137 msgid "Default Option(s)" msgstr "默认选项(s)" #: admin/manage-fields.php:137 msgid "Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)" msgstr "指定选项默认是否勾选
            如果有多个值的选项,使用“,”分开(逗号)" #: admin/manage-fields.php:151 msgid "Default Content" msgstr "默认内容" #: admin/manage-fields.php:151 msgid "Default value of the textarea" msgstr "文本默认值" #: admin/manage-fields.php:158 msgid "Required" msgstr "必须" #: admin/manage-fields.php:158 msgid "Whether the field is required or not" msgstr "该字段是否必须" #: admin/manage-fields.php:159 msgid "Overwrite Existing" msgstr "覆盖现有" #: admin/manage-fields.php:159 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
            Use this at your own risk" msgstr "选择“是”将增加字段到列表中,但将覆盖在数据库中具有相同名称的任何其他领域的 meta-name
            使用需自己承担风险" #: admin/manage-fields.php:165 msgid "Field Properties" msgstr "字段属性" #: admin/manage-fields.php:178 msgid "Registration & Edit Profile" msgstr "注册与编辑资料" #: admin/manage-fields.php:197 msgid "Name" msgstr "姓名" #: admin/manage-fields.php:198 msgid "Usernames cannot be changed." msgstr " 用户名不可更改。" #: admin/manage-fields.php:199 msgid "First Name" msgstr "名字" #: admin/manage-fields.php:200 msgid "Last Name" msgstr "姓氏" #: admin/manage-fields.php:201 modules/user-listing/userlisting.php:769 #: modules/user-listing/userlisting.php:2160 msgid "Nickname" msgstr "昵称" #: admin/manage-fields.php:202 msgid "Display name publicly as" msgstr "公开显示为" #: admin/manage-fields.php:203 msgid "Contact Info" msgstr "联系信息" #: admin/manage-fields.php:204 #: features/admin-approval/class-admin-approval.php:169 #: features/email-confirmation/class-email-confirmation.php:168 #: modules/user-listing/userlisting.php:108 msgid "E-mail" msgstr "电子邮件" #: admin/manage-fields.php:205 modules/email-customizer/email-customizer.php:32 #: modules/user-listing/userlisting.php:111 #: modules/user-listing/userlisting.php:751 #: modules/user-listing/userlisting.php:2154 msgid "Website" msgstr "站点" #: admin/manage-fields.php:209 msgid "AIM" msgstr "AIM" #: admin/manage-fields.php:210 msgid "Yahoo IM" msgstr "雅虎通讯" #: admin/manage-fields.php:211 msgid "Jabber / Google Talk" msgstr "Jabber / Google Talk" #: admin/manage-fields.php:214 msgid "About Yourself" msgstr "关于您自己" #: admin/manage-fields.php:215 modules/user-listing/userlisting.php:114 #: modules/user-listing/userlisting.php:754 #: modules/user-listing/userlisting.php:2155 msgid "Biographical Info" msgstr "个人说明" #: admin/manage-fields.php:215 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "分享关于您的一些信息。可能会被公开。" #: admin/manage-fields.php:216 front-end/recover.php:73 #: modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "新密码" #: admin/manage-fields.php:216 msgid "Type your password." msgstr "重复新密码" #: admin/manage-fields.php:217 front-end/recover.php:74 msgid "Repeat Password" msgstr "重复新密码" #: admin/manage-fields.php:217 msgid "Type your password again. " msgstr "再输入一遍新密码。" #: admin/manage-fields.php:977 admin/manage-fields.php:1134 msgid "You must select a field\n" msgstr "你必须选择一个字段\n" #: admin/manage-fields.php:987 msgid "Please choose a different field type as this one already exists in your form (must be unique)\n" msgstr "请选择一个不同的字段类型,这个已经存在你的表格(必须是唯一的)\n" #: admin/manage-fields.php:998 msgid "The entered avatar size is not between 20 and 200\n" msgstr "输入的头像大小不是20与200之间 \n" #: admin/manage-fields.php:1001 msgid "The entered avatar size is not numerical\n" msgstr "输入的头像大小不是数值\n" #: admin/manage-fields.php:1009 msgid "The entered row number is not numerical\n" msgstr "输入的行数不是数值\n" #: admin/manage-fields.php:1012 msgid "You must enter a value for the row number\n" msgstr "您必须输入一个值的行数\n" #: admin/manage-fields.php:1033 msgid "The entered value for the Datepicker is not a valid date-format\n" msgstr "日期选择器输入的值不是有效的日期格式\n" #: admin/manage-fields.php:1036 msgid "You must enter a value for the date-format\n" msgstr "您必须输入一个日期格式的值\n" #: admin/manage-fields.php:1064 admin/manage-fields.php:1072 #: admin/manage-fields.php:1083 msgid "That meta-name is already in use\n" msgstr "meta-name 已在使用\n" #: admin/manage-fields.php:1114 msgid "The following option(s) did not coincide with the ones in the options list: %s\n" msgstr "下列选项(s)不符合的选项清单: %s\n" #: admin/manage-fields.php:1118 msgid "The following option did not coincide with the ones in the options list: %s\n" msgstr "下列选项不符合的选项清单: %s\n" #: admin/manage-fields.php:1141 msgid "That field is already added in this form\n" msgstr "这个字段已经加入这个\n" #: admin/manage-fields.php:1190 msgid "
            Title
            Type
            Meta Name
            Required
            " msgstr "
            标题
            类型
            Meta Name
            必须
            " #: admin/manage-fields.php:1190 #: assets/lib/wck-api/wordpress-creation-kit.php:438 #: assets/lib/wck-api/wordpress-creation-kit.php:535 #: features/admin-approval/class-admin-approval.php:108 #: features/functions.php:718 features/functions.php:725 #: modules/custom-redirects/custom_redirects_admin.php:179 #: modules/custom-redirects/custom_redirects_admin.php:193 #: modules/custom-redirects/custom_redirects_admin.php:207 #: modules/custom-redirects/custom_redirects_admin.php:221 #: modules/multiple-forms/multiple-forms.php:406 msgid "Edit" msgstr "编辑" #: admin/manage-fields.php:1190 #: assets/lib/wck-api/wordpress-creation-kit.php:438 #: assets/lib/wck-api/wordpress-creation-kit.php:536 #: features/admin-approval/class-admin-approval.php:113 #: features/admin-approval/class-admin-approval.php:224 #: features/email-confirmation/class-email-confirmation.php:120 #: features/email-confirmation/class-email-confirmation.php:217 #: features/functions.php:711 features/functions.php:725 #: modules/custom-redirects/custom_redirects_admin.php:179 #: modules/custom-redirects/custom_redirects_admin.php:193 #: modules/custom-redirects/custom_redirects_admin.php:207 #: modules/custom-redirects/custom_redirects_admin.php:221 msgid "Delete" msgstr "删除" #: admin/manage-fields.php:1205 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "使用这些简码在页面中你想要的形式显示:" #: admin/register-version.php:14 msgid "Register Your Version" msgstr "注册您的版本" #: admin/register-version.php:14 msgid "Register Version" msgstr "注册版本" #: admin/register-version.php:70 msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support." msgstr "如果您注册这个版本的 Profile Builder ,您将收到有关升级,补丁,和技术支持。" #: admin/register-version.php:72 msgid " Serial Number:" msgstr "序号:" #: admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "序号成功验证!" #: admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "序号无法验证!" #: admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "序号无法验证,因已过期!" #: admin/register-version.php:85 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!" msgstr "序号无法验证,因为连接超时。这可能是由于服务器维护。请稍后再试!" #: admin/register-version.php:87 msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "(例如: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725 msgid "Content" msgstr "内容" #: assets/lib/wck-api/wordpress-creation-kit.php:535 msgid "Edit this item" msgstr "编辑此项目" #: assets/lib/wck-api/wordpress-creation-kit.php:536 msgid "Delete this item" msgstr "删除此项目" #: assets/lib/wck-api/wordpress-creation-kit.php:705 msgid "Please enter a value for the required field " msgstr "请为这个字段输入所需的值" #: front-end/extra-fields/upload/upload.php:122 msgid "Select File" msgstr "选择文件" #: assets/lib/wck-api/fields/upload.php:43 #: front-end/extra-fields/upload/upload.php:112 msgid "Remove" msgstr "移除" #: assets/lib/wck-api/fields/nested repeater.php:8 msgid "You can add the information for the %s after you add a entry" msgstr "您可以添加信息到 %s" #: assets/lib/wck-api/fields/upload.php:75 #: front-end/extra-fields/upload/upload.php:128 msgid "Upload " msgstr "上传" #: features/class-list-table.php:184 msgid "No items found." msgstr "找不到项目。" #: features/class-list-table.php:308 msgid "Bulk Actions" msgstr "批量动作" #: features/class-list-table.php:318 msgid "Apply" msgstr "应用" #: features/class-list-table.php:402 msgid "Show all dates" msgstr "显示所有日期" #: features/class-list-table.php:415 msgid "%1$s %2$d" msgstr "%1$s %2$d" #: features/class-list-table.php:431 msgid "List View" msgstr "列表查看" #: features/class-list-table.php:432 msgid "Excerpt View" msgstr "摘录查看" #: features/class-list-table.php:458 msgid "%s pending" msgstr "%s 等待中" #: features/class-list-table.php:566 msgid "%1$s of %2$s" msgstr "%1$s 的 %2$s" #: features/class-list-table.php:713 msgid "Select All" msgstr "选择所有" #: features/functions.php:526 msgid "Strength indicator" msgstr "强度指标" #: features/admin-approval/admin-approval.php:14 #: features/admin-approval/class-admin-approval.php:453 msgid "Admin Approval" msgstr "管理员审批" #: features/admin-approval/admin-approval.php:28 #: features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "您想要" #: features/admin-approval/admin-approval.php:51 msgid "Your session has expired! Please refresh the page and try again" msgstr "您的会话已过期!请刷新页面重试" #: features/admin-approval/admin-approval.php:64 msgid "User successfully approved!" msgstr "用户成功批准!" #: features/admin-approval/admin-approval.php:74 msgid "User successfully unapproved!" msgstr "用户成功拒绝!" #: features/admin-approval/admin-approval.php:80 msgid "User successfully deleted!" msgstr "用户成功删除!" #: features/admin-approval/admin-approval.php:85 #: features/admin-approval/admin-approval.php:129 #: features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "你没有权限操作,或出现一个错误!" #: features/admin-approval/admin-approval.php:96 msgid "Your session has expired! Please refresh the page and try again." msgstr "您的会话已过期!请刷新页面重试" #: features/admin-approval/admin-approval.php:108 msgid "Users successfully approved!" msgstr "用户成功批准!" #: features/admin-approval/admin-approval.php:117 msgid "Users successfully unapproved!" msgstr "用户成功拒绝!" #: features/admin-approval/admin-approval.php:125 msgid "Users successfully deleted!" msgstr "用户成功删除!" #: features/admin-approval/admin-approval.php:145 msgid "Your account on %1$s has been approved!" msgstr "您在 %1$s 的帐号成功通过!" #: features/admin-approval/admin-approval.php:146 #: features/admin-approval/admin-approval.php:149 msgid "approved" msgstr "已批准" #: features/admin-approval/admin-approval.php:148 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "管理员已经批准您在 %1$s (%2$s) 的帐号。" #: features/admin-approval/admin-approval.php:153 msgid "Your account on %1$s has been unapproved!" msgstr "您在 %1$s 的帐号被拒绝!" #: features/admin-approval/admin-approval.php:154 #: features/admin-approval/admin-approval.php:157 msgid "unapproved" msgstr "已拒绝" #: features/admin-approval/admin-approval.php:156 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "管理员已拒绝您在 %1$s (%2$s) 的帐号。" #: features/admin-approval/admin-approval.php:175 msgid "ERROR: Your account has to be confirmed by an administrator before you can log in." msgstr "错误: 您的帐号需要管理员批准后才能登陆使用。" #: features/admin-approval/admin-approval.php:187 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature." msgstr "您的帐号在管理员确认前可以使用 \"密码找回\" 功能." #: features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "删除这个用户?" #: features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "拒绝这个用户?" #: features/admin-approval/class-admin-approval.php:116 #: features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr "拒绝" #: features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "允许这个用户?" #: features/admin-approval/class-admin-approval.php:118 #: features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "允许" #: features/admin-approval/class-admin-approval.php:167 #: modules/user-listing/userlisting.php:278 #: modules/user-listing/userlisting.php:742 #: modules/user-listing/userlisting.php:2157 msgid "Firstname" msgstr "名子" #: features/admin-approval/class-admin-approval.php:168 #: modules/user-listing/userlisting.php:745 #: modules/user-listing/userlisting.php:2158 msgid "Lastname" msgstr "姓氏" #: features/admin-approval/class-admin-approval.php:170 #: modules/user-listing/userlisting.php:149 #: modules/user-listing/userlisting.php:279 #: modules/user-listing/userlisting.php:772 #: modules/user-listing/userlisting.php:2162 msgid "Role" msgstr "角色" #: features/admin-approval/class-admin-approval.php:171 #: features/email-confirmation/class-email-confirmation.php:169 msgid "Registered" msgstr "已注册" #: features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "用户状态" #: features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "你想批量允许所选用户?" #: features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "你想批量拒绝所选用户?" #: features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "你想批量删除所选用户?" #: features/admin-approval/class-admin-approval.php:274 #: features/email-confirmation/class-email-confirmation.php:278 msgid "Sorry, but you don't have permission to do that!" msgstr "抱歉,您没有相应的操作权限!" #: features/admin-approval/class-admin-approval.php:339 msgid "Approved" msgstr "已允许" #: features/admin-approval/class-admin-approval.php:341 msgid "Unapproved" msgstr "已拒绝" #: features/admin-approval/class-admin-approval.php:456 #: features/email-confirmation/class-email-confirmation.php:454 msgid "All Users" msgstr "所有用户" #: features/email-confirmation/class-email-confirmation.php:120 msgid "delete this user from the _signups table?" msgstr "在 the _signups 表单中 删除这个用户?" #: features/email-confirmation/class-email-confirmation.php:121 msgid "confirm this email yourself?" msgstr "确认自己的电子邮件?" #: features/email-confirmation/class-email-confirmation.php:121 #: features/email-confirmation/class-email-confirmation.php:218 msgid "Confirm Email" msgstr "确认电子邮件" #: features/email-confirmation/class-email-confirmation.php:122 msgid "resend the activation link?" msgstr "重新发送激活链接?" #: features/email-confirmation/class-email-confirmation.php:122 #: features/email-confirmation/class-email-confirmation.php:219 msgid "Resend Activation Email" msgstr "发送激活邮件" #: features/email-confirmation/class-email-confirmation.php:249 msgid "%s couldn't be deleted" msgstr "%s 不能删除" #: features/email-confirmation/class-email-confirmation.php:253 msgid "All users have been successfully deleted" msgstr "所有的用户已成功删除" #: features/email-confirmation/class-email-confirmation.php:263 msgid "The selected users have been activated" msgstr "所选的用户已被激活" #: features/email-confirmation/class-email-confirmation.php:274 msgid "The selected users have had their activation emails resent" msgstr "所选用户已经重新发送激活电子邮件" #: features/email-confirmation/class-email-confirmation.php:451 #: features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "没经确认邮箱的用户" #: features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "执行操作时出错!" #: features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "所选用户不能删除" #: features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "电子邮件通知重发给用户" #: features/email-confirmation/email-confirmation.php:397 msgid "[%1$s] Activate %2$s" msgstr "[%1$s] 激活 %2$s" #: features/email-confirmation/email-confirmation.php:441 #: front-end/register.php:71 msgid "Could not create user!" msgstr "无法创建用户!" #: features/email-confirmation/email-confirmation.php:444 msgid "That username is already activated!" msgstr "用户名已经被激活!" #: features/email-confirmation/email-confirmation.php:467 msgid "There was an error while trying to activate the user" msgstr "试图激活用户时出现一个错误" #: features/email-confirmation/email-confirmation.php:515 #: modules/email-customizer/admin-email-customizer.php:73 msgid "A new subscriber has (been) registered!" msgstr "一个新的用户已经(被)注册!" #: features/email-confirmation/email-confirmation.php:518 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "新用户在 %1$s.

            用户名:%2$s
            邮箱:%3$s
            " #: features/email-confirmation/email-confirmation.php:633 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!" msgstr "管理员审批”的功能是注册时激活,所以请记住,你必须批准该用户,他/她才能进行登录!" #: features/email-confirmation/email-confirmation.php:569 msgid "[%1$s] Your new account information" msgstr "[%1$s] 您的新帐户信息" #: features/email-confirmation/email-confirmation.php:580 msgid "Welcome to %1$s!


            Your username is:%2$s and password:%3$s" msgstr "欢迎来到 %1$s!


            您的用户名是:%2$s 密码是:%3$s" #: features/email-confirmation/email-confirmation.php:641 #: front-end/register.php:125 msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email." msgstr "需要管理员审核通过才能访问您的帐户。您将收到一封电子邮件。" #: features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "该登录控件是允许您添加在侧边栏的登录表单。" #: features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "Profile Builder 登陆小工具" #: front-end/class-formbuilder.php:399 front-end/login.php:250 msgid "Register" msgstr "注册" #: features/login-widget/login-widget.php:63 msgid "Title:" msgstr "标题:" #: features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "登录后的重定向URL(可选):" #: features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "注册页面URL(可选):" #: features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "密码恢复页URL(可选):" #: features/upgrades/upgrades-functions.php:91 #: features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "用户名不可更改。" #: front-end/class-formbuilder.php:125 msgid "Only an administrator can add new users." msgstr "只有管理员可以添加新用户。" #: front-end/class-formbuilder.php:135 msgid "Users can register themselves or you can manually create users here." msgstr "用户可以注册自己注册,或您可以在这里手动创建用户。" #: front-end/class-formbuilder.php:138 msgid "Users cannot currently register themselves, but you can manually create users here." msgstr "用户无法自己注册,但你可以在这里手动创建用户。" #: front-end/class-formbuilder.php:158 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "您当前登陆为 %1s。您不需要其它帐号。 %2s" #: front-end/class-formbuilder.php:158 msgid "Log out of this account." msgstr "退出这个帐号。" #: front-end/class-formbuilder.php:158 msgid "Logout" msgstr "退出" #: front-end/class-formbuilder.php:164 msgid "You must be logged in to edit your profile." msgstr "您必须在登陆状态下编辑个人资料。" #: features/functions.php:994 msgid "here" msgstr "这里" #: features/functions.php:995 msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s" msgstr "您很快将会自动重定向。如果你看到这个页面超过 %1$d 秒,请点击 %2$s.%3$s" #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306 msgid "The account %1s has been successfully created!" msgstr "帐号 %1s 创建成功!" #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312 msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link." msgstr "访问您的帐号 %1s 前,您需要确认您的邮箱地址。请检查您的邮箱并点击激活连接。" #: front-end/class-formbuilder.php:308 msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email." msgstr "访问您的帐号 %1s 前,需要管理员审批通过。您将收到邮件。" #: front-end/class-formbuilder.php:331 msgid "Your profile has been successfully updated!" msgstr "个人资料已更新!" #: front-end/class-formbuilder.php:342 msgid "There was an error in the submitted form" msgstr "在递交表单时出错" #: front-end/class-formbuilder.php:399 msgid "Add User" msgstr "所有用户" #: admin/add-ons.php:170 front-end/class-formbuilder.php:402 msgid "Update" msgstr "更新个人资料" #: front-end/class-formbuilder.php:465 msgid "Send these credentials via email." msgstr "通过电子邮件发送这些凭据。" #: front-end/extra-fields/extra-fields.php:94 front-end/login.php:137 #: front-end/login.php:144 front-end/login.php:158 front-end/recover.php:17 #: front-end/recover.php:237 msgid "ERROR" msgstr "错误" #: front-end/login.php:137 msgid "The password you entered is incorrect." msgstr "你输入的密码不正确。" #: front-end/login.php:138 front-end/login.php:145 msgid "Password Lost and Found." msgstr "密码遗失。" #: front-end/login.php:138 front-end/login.php:145 msgid "Lost your password" msgstr "忘记您的密码" #: front-end/login.php:158 msgid "Both fields are empty." msgstr "字段均空" #: front-end/login.php:296 msgid "You are currently logged in as %1$s. %2$s" msgstr "您当前登录为 %1$s. %2$s" #: front-end/login.php:295 front-end/logout.php:25 msgid "Log out of this account" msgstr "退出这个帐户" #: front-end/login.php:295 msgid "Log out" msgstr "退出" #: front-end/recover.php:17 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature." msgstr "您的帐户需被管理员审批后才可使用 \"密码重置\" 功能。" #: front-end/recover.php:94 msgid "Reset Password" msgstr "重置密码" #: front-end/recover.php:114 msgid "Please enter your username or email address." msgstr "请输入您的用户名或电子邮件地址。" #: front-end/recover.php:115 msgid "You will receive a link to create a new password via email." msgstr "你将收到一封创建一个新密码连接的电子邮件。" #: front-end/recover.php:120 msgid "Username or E-mail" msgstr "用户或邮箱地址" #: front-end/recover.php:130 msgid "Get New Password" msgstr "获取新密码" #: front-end/recover.php:177 msgid "The username entered wasn't found in the database!" msgstr "输入的用户名不存在数据库中!" #: front-end/recover.php:177 msgid "Please check that you entered the correct username." msgstr "请检查您已输入正确的用户名。" #: front-end/recover.php:192 msgid "Check your e-mail for the confirmation link." msgstr "检查你的邮件中的确认链接。" #: front-end/recover.php:227 msgid "Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s" msgstr "有人要求以下帐号密码进行重置: %1$s
            如果不是您自己的操作,请忽略。
            需要重置您的密码的话,请点击 :%2$s" #: front-end/recover.php:230 msgid "Password Reset from \"%1$s\"" msgstr "从 \"%1$s\" 密码重置" #: front-end/recover.php:237 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "发送激活链接时出现错误 %1$s!" #: front-end/recover.php:199 msgid "The email address entered wasn't found in the database!" msgstr "邮箱地址无法在数据库中找到" #: front-end/recover.php:199 msgid "Please check that you entered the correct email address." msgstr "请检查您输入(正确)电子邮件地址。" #: front-end/recover.php:265 msgid "Your password has been successfully changed!" msgstr "您已经成功地更改密码!" #: front-end/recover.php:284 msgid "You have successfully reset your password to: %1$s" msgstr "您已经成功地将密码更改成:%1$s" #: front-end/recover.php:287 front-end/recover.php:298 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "密码成功重置 %1$s 在 \"%2$s\"" #: front-end/recover.php:295 msgid "%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s" msgstr "%1$s 请求通过密码重置功能修改密码。
            他的密码是:%2$s" #: front-end/recover.php:312 msgid "The entered passwords don't match!" msgstr "输入的密码不匹配!" #: front-end/recover.php:367 msgid "ERROR:" msgstr "错误:" #: front-end/recover.php:367 msgid "Invalid key!" msgstr "无效密钥!" #: front-end/register.php:56 msgid "Invalid activation key!" msgstr "无效的激活密钥!" #: front-end/register.php:60 msgid "This username is now active!" msgstr "这个用户名现在被激活!" #: front-end/register.php:74 msgid "This username is already activated!" msgstr "这个用户名已经被激活!" #: front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "您的电子邮件已确认。" #: front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "尝试激活用户时出现一个错误。" #: front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "您输入的电子邮件不是一个有效的电子邮件地址。" #: front-end/default-fields/email/email.php:60 #: front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "此邮箱地址已被保留使用。" #: front-end/default-fields/email/email.php:60 #: front-end/default-fields/email/email.php:67 #: front-end/default-fields/email/email.php:77 #: front-end/default-fields/email/email.php:95 #: front-end/default-fields/username/username.php:49 #: front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "请尝试一个不同的!" #: front-end/default-fields/email/email.php:77 #: front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "电子邮件已被使用。" #: front-end/default-fields/password-repeat/password-repeat.php:37 #: front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "密码不匹配" #: front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "用户名已经存在。" #: front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "这个用户名已经被保留。" #: modules/user-listing/userlisting.php:276 msgid "Avatar" msgstr "头像" #: front-end/extra-fields/avatar/avatar.php:72 #: front-end/extra-fields/checkbox/checkbox.php:45 #: front-end/extra-fields/colorpicker/colorpicker.php:45 #: front-end/extra-fields/datepicker/datepicker.php:40 #: front-end/extra-fields/input-hidden/input-hidden.php:34 #: front-end/extra-fields/input/input.php:30 #: front-end/extra-fields/map/map.php:51 #: front-end/extra-fields/number/number.php:30 #: front-end/extra-fields/phone/phone.php:39 #: front-end/extra-fields/radio/radio.php:44 #: front-end/extra-fields/select-cpt/select-cpt.php:52 #: front-end/extra-fields/select-multiple/select-multiple.php:46 #: front-end/extra-fields/select-timezone/select-timezone.php:49 #: front-end/extra-fields/select/select.php:51 #: front-end/extra-fields/textarea/textarea.php:30 #: front-end/extra-fields/upload/upload.php:70 #: front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "必须" #: front-end/extra-fields/recaptcha/recaptcha.php:48 msgid "To use reCAPTCHA you must get an API key from" msgstr "使用 reCAPTCHA 你必须获得一个API密钥" #: front-end/extra-fields/recaptcha/recaptcha.php:131 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "安全原因,您必须通过远程IP到reCAPTCHA!" #: front-end/extra-fields/recaptcha/recaptcha.php:192 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "使用reCAPTCHA,你必须得到一个API公开密钥:" #: modules/modules.php:11 modules/modules.php:58 msgid "Modules" msgstr "模块" #: modules/modules.php:59 msgid "Here you can activate / deactivate available modules for Profile Builder." msgstr "在这里你可以激活/停用 Profile Builder 模块。" #: modules/modules.php:69 msgid "Name/Description" msgstr "名称/描述" #: modules/modules.php:70 msgid "Status" msgstr "状态" #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91 #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112 #: modules/modules.php:119 msgid "Active" msgstr "激活" #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92 #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113 #: modules/modules.php:120 msgid "Inactive" msgstr "关闭" #: modules/email-customizer/admin-email-customizer.php:11 #: modules/email-customizer/admin-email-customizer.php:12 #: modules/modules.php:96 msgid "Admin Email Customizer" msgstr "管理员邮件定制" #: modules/email-customizer/user-email-customizer.php:11 #: modules/email-customizer/user-email-customizer.php:12 #: modules/modules.php:103 msgid "User Email Customizer" msgstr "用户邮件定制" #: assets/lib/wck-api/wordpress-creation-kit.php:334 #: modules/class-mustache-templates/class-mustache-templates.php:253 msgid "Save" msgstr "保存" #: modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "重定向" #: modules/multiple-forms/edit-profile-forms.php:208 #: modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "网址" #: modules/email-customizer/admin-email-customizer.php:38 msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save." msgstr "这些设置也复制在\"用户邮件定制\" 设置页中保存。" #: modules/email-customizer/admin-email-customizer.php:41 #: modules/email-customizer/user-email-customizer.php:41 msgid "From (name)" msgstr "来自(名子)" #: modules/email-customizer/admin-email-customizer.php:49 #: modules/email-customizer/user-email-customizer.php:49 msgid "From (reply-to email)" msgstr "来自(回复邮件)" #: modules/email-customizer/admin-email-customizer.php:57 #: modules/email-customizer/user-email-customizer.php:57 msgid "Common Settings" msgstr "常用设置" #: modules/email-customizer/admin-email-customizer.php:60 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" msgstr "" "\n" "

            新用户在 {{site_name}}.

            \n" "

            用户名:{{username}}

            \n" "

            邮箱:{{user_email}}

            \n" #: modules/email-customizer/admin-email-customizer.php:69 #: modules/email-customizer/admin-email-customizer.php:99 #: modules/email-customizer/admin-email-customizer.php:126 #: modules/email-customizer/user-email-customizer.php:71 #: modules/email-customizer/user-email-customizer.php:99 #: modules/email-customizer/user-email-customizer.php:128 #: modules/email-customizer/user-email-customizer.php:155 #: modules/email-customizer/user-email-customizer.php:183 #: modules/email-customizer/user-email-customizer.php:214 #: modules/email-customizer/user-email-customizer.php:241 #: modules/email-customizer/user-email-customizer.php:274 msgid "Email Subject" msgstr "邮件主题" #: modules/email-customizer/admin-email-customizer.php:84 msgid "Default Registration & Registration with Email Confirmation" msgstr "默认注册与邮件确认注册" #: modules/email-customizer/admin-email-customizer.php:87 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log in!

            \n" msgstr "" "\n" "

            新用户在 {{site_name}}.

            \n" "

            用户名:{{username}}

            \n" "

            邮箱:{{user_email}}

            \n" "

            管理审核功能已被激活,\n" "请记住,您需要批准这个用户,他才能登陆!

            \n" #: modules/email-customizer/admin-email-customizer.php:114 #: modules/email-customizer/user-email-customizer.php:143 msgid "Registration with Admin Approval" msgstr "注册需管理员审批" #: modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "可用标签" #: features/email-confirmation/class-email-confirmation.php:91 #: features/email-confirmation/class-email-confirmation.php:170 msgid "User Meta" msgstr "User Meta" #: modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "网站地址" #: modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "网站名称" #: modules/email-customizer/email-customizer.php:25 #: modules/user-listing/userlisting.php:158 msgid "User Id" msgstr "用户名称" #: modules/email-customizer/email-customizer.php:33 msgid "Reply To" msgstr "回复" #: modules/email-customizer/email-customizer.php:40 msgid "Activation Key" msgstr "激活密钥" #: modules/email-customizer/email-customizer.php:41 msgid "Activation Url" msgstr "激活URL" #: modules/email-customizer/email-customizer.php:42 msgid "Activation Link" msgstr "激活链接" #: modules/email-customizer/user-email-customizer.php:64 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" msgstr "" "\n" "

            欢迎来到 {{site_name}}!

            \n" "

            您的用户名是:{{username}} 密码是:{{password}}

            \n" #: modules/email-customizer/user-email-customizer.php:85 msgid "Default Registration" msgstr "默认注册" #: modules/email-customizer/user-email-customizer.php:91 msgid "" "\n" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials.

            \n" msgstr "" "\n" "

            激活您的帐户,请点击下面连接:
            \n" "{{{activation_link}}}

            \n" "

            在您激活完成后,将会收到另外一封凭据邮件。

            \n" #: modules/email-customizer/user-email-customizer.php:103 msgid "[{{site_name}}] Activate {{username}}" msgstr "[{{site_name}}] 激活 {{username}}" #: modules/email-customizer/user-email-customizer.php:114 msgid "Registration with Email Confirmation" msgstr "电子邮件确认注册" #: modules/email-customizer/user-email-customizer.php:120 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n" msgstr "" "\n" "

            欢迎来到 {{site_name}}!

            \n" "

            您的用户名:{{username}} 密码:{{password}}

            \n" "

            在您访问您的帐号前,需要管理审批。您将会收邮件通知。

            \n" #: modules/email-customizer/user-email-customizer.php:132 msgid "A new account has been created for you on {{site_name}}" msgstr "一个新的帐号在您的 {{site_name}} 上建立" #: modules/email-customizer/user-email-customizer.php:148 msgid "" "\n" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            好消息 !

            \n" "

            管理员已经批准您的帐号: {{username}} 在 {{site_name}}.

            \n" #: modules/email-customizer/user-email-customizer.php:159 msgid "Your account on {{site_name}} has been approved!" msgstr "您在 {{site_name}} 的帐号已经被通过!" #: modules/email-customizer/user-email-customizer.php:170 msgid "User Approval Notification" msgstr "用户批准通知" #: modules/email-customizer/user-email-customizer.php:175 msgid "" "\n" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            您好,

            \n" "

            抱歉,管理员未批准您的帐号: {{username}} 在 {{site_name}}.

            \n" #: modules/email-customizer/user-email-customizer.php:187 msgid "Your account on {{site_name}} has been unapproved!" msgstr "您在 {{site_name}} 的帐号被拒绝!" #: modules/email-customizer/user-email-customizer.php:198 msgid "Unapproved User Notification" msgstr "被拒绝的用户通知" #: modules/multiple-forms/edit-profile-forms.php:11 #: modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "编辑资料表单" #: modules/multiple-forms/edit-profile-forms.php:13 #: modules/multiple-forms/register-forms.php:13 #: modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "新增加" #: modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "添加新的编辑资料表单" #: modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "编辑的编辑个人资料表单" #: modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "新的编辑资料表单" #: modules/multiple-forms/edit-profile-forms.php:17 #: modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "编辑资料表单" #: modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "查看编辑资料表单" #: modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "搜索编辑资料表单" #: modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "没有编辑个人资料表单" #: modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "在回收站中没有编辑个人资料表单" #: modules/multiple-forms/edit-profile-forms.php:135 #: modules/multiple-forms/register-forms.php:138 #: modules/user-listing/userlisting.php:2048 msgid "Shortcode" msgstr "简码" #: modules/multiple-forms/edit-profile-forms.php:155 #: modules/multiple-forms/register-forms.php:159 #: modules/user-listing/userlisting.php:2069 msgid "(no title)" msgstr "(没有标题)" #: modules/multiple-forms/edit-profile-forms.php:175 #: modules/multiple-forms/register-forms.php:178 #: modules/user-listing/userlisting.php:2089 msgid "The shortcode will be available after you publish this form." msgstr "简码将在您发布表单后可用。" #: modules/multiple-forms/edit-profile-forms.php:177 #: modules/multiple-forms/register-forms.php:180 #: modules/user-listing/userlisting.php:2091 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "使用这个简码在页面上,将会获得您想要的表单显示效果:" #: modules/multiple-forms/edit-profile-forms.php:181 #: modules/multiple-forms/register-forms.php:184 #: modules/user-listing/userlisting.php:2095 msgid "Note: changing the form title also changes the shortcode!" msgstr "注意: 改变表单标题也将改变简码!" #: modules/multiple-forms/edit-profile-forms.php:187 #: modules/multiple-forms/register-forms.php:190 #: modules/user-listing/userlisting.php:2128 msgid "Form Shortcode" msgstr "表单简码" #: modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "是否将用户重定向到特定页" #: modules/multiple-forms/edit-profile-forms.php:207 #: modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "显示消息" #: modules/multiple-forms/edit-profile-forms.php:207 #: modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "允许用时间去显示成功信息提示(秒)" #: modules/multiple-forms/edit-profile-forms.php:208 msgid "Specify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.com" msgstr "指定页面用于用户一旦更新他们的资料使用这个表单转向
            使用这种格式: http://www.mysite.com" #: modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "档案更新后…" #: modules/multiple-forms/edit-profile-forms.php:241 #: modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "添加新字段到列表" #: modules/multiple-forms/edit-profile-forms.php:245 #: modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage Title (Type)" msgstr "
            标题 (类型)
            " #: modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "你需要在创建前指定表单的标题" #: modules/multiple-forms/register-forms.php:11 #: modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "注册表单" #: modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "增加新的注册表单" #: modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "编缉注册表单" #: modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "新注册表单" #: modules/multiple-forms/register-forms.php:17 #: modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "注册表单" #: modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "查看注册表单" #: modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "搜索注册表单" #: modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "没有找到注册表单" #: modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "在回收站没有找到注册表单" #: modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "默认角色" #: modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "设置角色" #: modules/multiple-forms/register-forms.php:228 msgid "Choose what role the user will have after (s)he registered
            If not specified, defaults to the role set in the WordPress settings" msgstr "选择用户注册后的角色
            如无指定,将默认使用 WordPress 的设定" #: modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "自动登录" #: modules/multiple-forms/register-forms.php:229 msgid "Whether to automatically log in the newly registered user or not
            Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work" msgstr "是否记录用户新注册
            只使用于单网站,并且没有开启 \"管理员审批\" 与 \"邮箱确认\" 功能
            警告:缓存注册表单会让自动登录不正常" #: modules/multiple-forms/register-forms.php:232 msgid "Specify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.com" msgstr "指定用户注册页面地址将被重定向
            使用下列格式: http://www.mysite.com" #: modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "注册后…" #: modules/user-listing/userlisting.php:1021 #: modules/user-listing/userlisting.php:1468 #: modules/user-listing/userlisting.php:1886 #: modules/user-listing/userlisting.php:2355 msgid "Search Users by All Fields" msgstr "在所有字段中搜索用户" #: modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "增加新的用户列表" #: modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "编辑用户列表" #: modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "新的用户列表" #: modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "查看用户列表" #: modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "搜索用户列表" #: modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "没有找到用户列表" #: modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "没有在回收站找到用户列表" #: modules/user-listing/userlisting.php:105 msgid "Display name as" msgstr "显示名称为" #: modules/user-listing/userlisting.php:150 #: modules/user-listing/userlisting.php:2156 msgid "Registration Date" msgstr "注册日期" #: modules/user-listing/userlisting.php:151 #: modules/user-listing/userlisting.php:2161 msgid "Number of Posts" msgstr "帖子数" #: modules/user-listing/userlisting.php:155 msgid "More Info" msgstr "更多信息" #: modules/user-listing/userlisting.php:156 msgid "More Info Url" msgstr "更多信息网址" #: modules/user-listing/userlisting.php:157 msgid "Avatar or Gravatar" msgstr "头像或 Gravatar" #: modules/user-listing/userlisting.php:196 #: modules/user-listing/userlisting.php:227 msgid "Extra Functions" msgstr "额外功能" #: modules/user-listing/userlisting.php:199 msgid "Pagination" msgstr "分页" #: modules/user-listing/userlisting.php:200 msgid "Search all Fields" msgstr "搜索所有字段" #: modules/user-listing/userlisting.php:229 msgid "Go Back Link" msgstr "返回链接" #: modules/user-listing/userlisting.php:247 msgid "All-userlisting Template" msgstr "所有用户列表模板" #: modules/user-listing/userlisting.php:250 msgid "Single-userlisting Template" msgstr "单用户列表模板" #: modules/user-listing/userlisting.php:733 msgid "First/Lastname" msgstr "名字/姓氏" #: modules/user-listing/userlisting.php:281 #: modules/user-listing/userlisting.php:739 msgid "Sign-up Date" msgstr "注册日期" #: modules/user-listing/userlisting.php:748 #: modules/user-listing/userlisting.php:2159 msgid "Display Name" msgstr "显示名称" #: modules/user-listing/userlisting.php:280 #: modules/user-listing/userlisting.php:757 msgid "Posts" msgstr "帖子" #: modules/user-listing/userlisting.php:760 #: modules/user-listing/userlisting.php:2166 msgid "Aim" msgstr "Aim" #: modules/user-listing/userlisting.php:763 #: modules/user-listing/userlisting.php:2167 msgid "Yim" msgstr "Yim" #: modules/user-listing/userlisting.php:766 #: modules/user-listing/userlisting.php:2168 msgid "Jabber" msgstr "Jabber" #: modules/user-listing/userlisting.php:1273 msgid "Click here to see more information about this user" msgstr "点击这里查看此用户的更多信息" #: modules/user-listing/userlisting.php:1273 msgid "More..." msgstr "更多..." #: modules/user-listing/userlisting.php:1276 msgid "Click here to see more information about this user." msgstr "点击这里查看此用户的更多信息。" #: modules/user-listing/userlisting.php:1422 #: modules/user-listing/userlisting.php:1425 msgid "Click here to go back" msgstr "点击这里返回" #: modules/user-listing/userlisting.php:1422 msgid "Back" msgstr "返回" #: modules/user-listing/userlisting.php:1455 msgid "«« First" msgstr "«« 首页" #: modules/user-listing/userlisting.php:1456 msgid "« Prev" msgstr "« 上一页" #: modules/user-listing/userlisting.php:1457 msgid "Next » " msgstr "下一页 » " #: modules/user-listing/userlisting.php:1458 msgid "Last »»" msgstr "最后 »»" #: modules/user-listing/userlisting.php:1487 msgid "You don't have any pagination settings on this userlisting!" msgstr "您不需在用户列表中设置分页" #: modules/user-listing/userlisting.php:1903 msgid "Search" msgstr "搜索" #: modules/user-listing/userlisting.php:1904 msgid "Clear Results" msgstr "清除结果" #: modules/user-listing/userlisting.php:2098 #: modules/user-listing/userlisting.php:2102 msgid "Extra shortcode parameters" msgstr "额外简码参数" #: modules/user-listing/userlisting.php:2105 msgid "displays users having a certain meta-value within a certain (extra) meta-field" msgstr "显示用户在某一(额外)元字段(meta-field)" #: modules/user-listing/userlisting.php:2106 msgid "Example:" msgstr "例子:" #: modules/user-listing/userlisting.php:2108 msgid "Remember though, that the field-value combination must exist in the database." msgstr "记住,该字段值的组合必须存在于数据库中。" #: modules/user-listing/userlisting.php:2183 msgid "Random (very slow on large databases > 10K user)" msgstr "随机 (在大于 10K 的用户数据库中将会很慢 )" #: modules/user-listing/userlisting.php:2195 msgid "Roles to Display" msgstr "角色显示:" #: modules/user-listing/userlisting.php:2195 msgid "Restrict the userlisting to these selected roles only
            If not specified, defaults to all existing roles" msgstr "限制用户列表中的特定角色
            如果没有指定,默认为全部现有的角色" #: modules/user-listing/userlisting.php:2196 msgid "Number of Users/Page" msgstr "用户/页面数" #: modules/user-listing/userlisting.php:2197 msgid "Default Sorting Criteria" msgstr "默认分类标准" #: modules/user-listing/userlisting.php:2197 msgid "Set the default sorting criteria
            This can temporarily be changed for each new session" msgstr "设置默认的排序标准
            这可以暂时被每一个新的会话更改" #: modules/user-listing/userlisting.php:2198 msgid "Default Sorting Order" msgstr "默认排列顺序" #: modules/user-listing/userlisting.php:2198 msgid "Set the default sorting order
            This can temporarily be changed for each new session" msgstr "设置默认排列顺序
            这可以在每个新会话时被改变" #: modules/user-listing/userlisting.php:2199 msgid "Avatar Size (All-userlisting)" msgstr "头像大小(所有用户列表)" #: modules/user-listing/userlisting.php:2199 msgid "Set the avatar size on the all-userlisting only" msgstr "设置在所有用户列表的头像大小" #: modules/user-listing/userlisting.php:2200 msgid "Avatar Size (Single-userlisting)" msgstr "头像大小(单用户列表)" #: modules/user-listing/userlisting.php:2200 msgid "Set the avatar size on the single-userlisting only" msgstr "设置在单用户列表的头像大小" #: modules/user-listing/userlisting.php:2201 msgid "Visible only to logged in users?" msgstr "只有登录用户可见的?" #: modules/user-listing/userlisting.php:2201 msgid "The userlisting will only be visible only to the logged in users" msgstr "用户列表只有登录用户可见的" #: modules/user-listing/userlisting.php:2202 msgid "Visible to following Roles" msgstr "以下角色可见" #: modules/user-listing/userlisting.php:2202 msgid "The userlisting will only be visible to the following roles" msgstr "用户列表只允许以下角色可见" #: modules/user-listing/userlisting.php:2208 msgid "Userlisting Settings" msgstr "用户列表设置" #: modules/user-listing/userlisting.php:2331 msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "您需要激活用户列表功能在 \"模块\" 选项卡!" #: modules/user-listing/userlisting.php:2331 msgid "You can find it in the Profile Builder menu." msgstr "你可以在 Profile Builder 菜单中找到它。" #: modules/user-listing/userlisting.php:2494 msgid "No results found!" msgstr "无任何结果!"translation/profile-builder-pt_BR.mo000066600000313106152141651160013541 0ustar00<%\J\Jl]JyJcDKKc}LLMNCOO;qPPKPC Q[MQQQQQ"R+AREmR1R ReR USbS yS SS2S S-SOT bT mTwT5~T#TTUV!WWdW>DX5XYXGYR[YcY!Z74Z'lZZ/[3[]B[U[[ \\!\1\@\ G\ Q\[\c\}\E\\\]]5]O]!l]#]]]]]]^*^ B^N^b^ u^ ^^^^#^^$_8_P_ T_b_ j_v_ ~_(____Lv`D`ta}aaa9aa? bAJb*bbbb bbbbb%c +c5cDcLc Rc0`c c ccc3ccdd&0dWdwd ~dd d dd dd eee&e .e9eJeSeceGueke)fif g$g ,g:gBg IgWg]gegtg{g g5gggg#g!h$9h^h(uhhh h hh hh i#i*i~P~ k~ v~ ~~~!~ ~r~_e v   ?;JQ Vdu3 ŀр #+3Db h t~  ǁс ف  $2 9G LY _!kIׂ܂ /CKZ] es4W`w } t~ Ɔ ކ  */ 7CU \j p|  ƇӇ ڇ) %+2RW` t~ ۉ! %3;CR Xfl{ 54:Q݋24G [f lv. ~?FO`int 8ۍ ߍ  +;<x  #;*2]v)ۏ  % 0; @ M Wem u>ː_ jrw ʑ֑ - >JC] ˒Ԓڒ $8$Sxғ  $#14Up$9 >=H(ʕӕ  3&Zcrx ̖Ֆ&/Da.|w6; JV gt2}83^&|#Ǚ,,-8Z%՚! #.Rc jw:fכ>[ t 0ќ*** U cp)yʝ .@ S$tM*?OXnw ß ҟܟj Xfns  ͠Ԡ 06 L Xe  ̡   7"Z ao ɢ ( / :F5Z:5ˣIK!  &>//n2YѥV+V~٦X ] `jox?ܨ(  ! .8I er ʩөQ'>0f7 ϫ ٫, % 1=C̬eUx߯6X Uӱ7)at{ ɲӲ ڲ  ,3E cn w )˳!#;.ӴI7L32)"(8@aLO?LVM.P q/:&"J=r %&:ͺ;D0λ*-*<Xp@;G2 %׽(*&4Q5D`[bZ/7)g;.'#E2i<  Fl-5Cy~  ,@T Xbiy  $ .5MU ]EjA $5=Pd l y   5 C MYnwDSe$ ) &"1+T( %   #19#Bf  #>PU4]F]$Fk6^9X(dO "Q)KGu#<{>bK,i(N""1yT2>;G>2+%+ *7bK<K@;r+;Kghe')02&8,_+ ?@&Z#%&'+Fr)@:(Nc0 &| pwdd=.Y@4u:5DI9W !A8c"08@)6j t !/ K Xe2~/Z K Xe<m) &kP|EcAwKi"o6" kP#t )D=1'$*,@$X&}"91 kx#,-<.j /(/&XfOH!"H$<4=q. # ,#6 Zeu~F  6 DW"j((10,]o   W }x-6>MT]mu:  "&%Io) 2JRe      tdl { 7+ 0<  m w  ~   6 * >  G %h A -  ^    ) <B = <    " , ; R j 2s     *  - 8 FR d rofj  4 0MG  /7Ay!"%,HC   !AJ Y f s R(#D h r99: /9M ft -#9"K#n  ^?F^v-:_"STCicn<Sfo q %8MewH   0 "M p }  !!-! 3!!@!b!k!z!!(!K!"/"7"@"O"a"6~" """"""###,#5#"J#m# t# ### ### ## #$ $$ ,$6$F$N$]$e$t$z$$$"$R$% % ?%I% [%f%x%%%%%%%&7''("( )()6(`( _)j)|))))))) * *+*1* :*G*Z*b*q* x****** ** ** ** ++ +++*+ ,!,), 1,=,M, V, `,, ,, , ,, , ,,&,,$-%Q-w----------. .!.C2. v. ....../ /6/// 00 0'0/80 h0t01 11 '11171#>1b1;t1111 1 1 11 2Y&2222 22 2 2$22W30n333!3.3 +454>4X4 `4j4 |4 4444444 44. 5$95Q^5n56(6.6@6I6Y6p6w6 ~6 666'66 7 &737DG77 7777777747?#8*c858'828989U9s9y9 999 9%949r!:::::: :I:8H; ;; ;; ; ;; ;8< =<G<W<^<w<<<< << <<8<!4=+V==2===>> >>> >B>E?=`?q?3@*D@,o@4@!@(@GA4dAAAA$A& B0BDB LB ZB dB@oBB}B GChC CC CC>CC D D>+DAjDDD D*DE%E';E cE oEyEEEE"E$FR%FxFFFFFFFG %G*3G^G~GGGGGGeHxH HHHHHH HHHI I#I17IiI I III!II IJ J,J@JHJ]J5uJJJJJJ% K3K-KK#yKKKKKK$KRLGqLALOLKM$MN&N .NS PS[S$mS SSS SSS S T TT0THTQTcTg-U6U9UEVLV [ViV-|V V VVVpWXXYqZw[8[([ \ ]]&]%.]XT]A]]^ ^(^ /^9^J^ b^m^ u^ ^^^ ^^^^^ _ _!_?_Q_ a_k_2z_#___$`W`;a/Ta8a0a&a/bPEbBbLb&cP9cQc,cO d"Yd*|d5d%deWewerf/f)fGfI/gyg6h(Rh.{hHhrhCfiEi:i.+j4Zj%j&j0j1 kE?kbkjkSl"l4l/4mdm}mQm6m%n!@n7bnCnnnooo o p p(p\p'$qLras6s@)tjtptyttttt t ttttu.uDuYu ^uiuquuu u u$uuuuv% v FvQvkvtv }vRv vJw)4x^x"qxxx"xxx y #y.yDy0Zyy!yyyy z?zVzlz'z z zzz+zG{[W{!{!{"{2| M|Y|0i| |$|%|%|}!} *}5}&H} o} {} } }}}}4}.}%+~#Q~u~~ ~~)~!~-4@=F~W#-Q?m>bO| &0 7C'HpTu#ʄH7)NLxŅ{[h׆6@2wY64;p 8R2RD؊.0L9}45&")I sSE[.?ʍ"ZO}x͎oF !׏)*#&N'u'#ŐDE.%t 'ё$/'Nv *ΒTGfV4 BH ܔ  (1Z %7

            Good News!

            An administrator has just approved your account: {{username}} on {{site_name}}.

            Hello,

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            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!

            Someone requested that the password be reset for the following account: {{site_name}}
            Username: {{username}}

            If this was a mistake, just ignore this email and nothing will happen.

            To reset your password, visit the following address:
            {{{reset_link}}}

            To activate your user, please click the following link:
            {{{activation_link}}}

            After you activate, you will receive another email with your credentials.

            You have successfully reset your password to: {{password}}

            {{username}} has requested a password change via the password reset feature.

            His/her new password is: {{password}}

            * only available in the %1$sHobbyist and Pro versions%2$s. Serial Number: Your serial number is about to expire, please %1$s Renew Your License%2$s. Your serial number is expired, please %1$s Renew Your License%2$s. is also activated. You need to deactivate it before activating this version of the plugin."Admin Approval" Activated:"Admin Approval" Feature:"Admin Approval" on User Role:"Email Confirmation" Activated:"Email Confirmation" Landing Page:"Email" - users can Log In only with Email."Username and Email" - users can Log In with both Username and Email."Username" - users can Log In only with Username.%1$s %2$d%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s%1$s of %2$s%s couldn't be deleted%s pending« Prev«« First(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(no title)** only available in the %1$sPro version%2$s.. Extra Field Types are available in
            Hobbyist or PRO versions.... Choose...Choose1 item

            Also, you will be able to visit your site at

            You can visit your site at

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            Your Profile Builder serial number is invalid or missing.
            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

            Redirect
            URL
            Title (Type)
            Title
            Type
            Meta Name
            Required
            User ID / Username
            Redirect
            URL
            User Role
            Redirect
            URL
            Note: changing the form title also changes the shortcode!ERROR: The password must have a minimum strength of %sERROR: The password must have the minimum length of %s charactersERROR: Your account has to be confirmed by an administrator before you can log in.Profile Builder A new account has been created for you on {{site_name}}A new subscriber has (been) registered!A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be editedAIMAbout YourselfAccept user payments, create subscription plans and restrict content on your membership site.Accept user payments, create subscription plans and restrict content on your website.Account ManagementActivateActivation KeyActivation LinkActivation UrlActiveAdd EntryAdd FieldAdd NewAdd New Field to the ListAdd UserAdd a number from 0 to 19. The higher the number the higher the zoom.Add new Edit-profile FormAdd new Registration FormAdd new User ListingAdd your HTML (or text) contentAdd-On has been activatedAdd-On has been deactivated.Add-On is activeAdd-On is inactiveAdd-On is ActiveAdd-OnsAdmin ApprovalAdmin Approval (*)Admin Bar SettingsAdmin Email CustomizerAdmin Notification for User Password ResetAfghanistanAfghanistan AfghaniAfter Edit ProfileAfter LoginAfter LogoutAfter Profile Update...After RegistrationAfter Registration...After Successful Email ConfirmationAfter Successful Password ResetAfter login redirect URL (optional):Agree To Terms CheckboxAimAland IslandsAlbaniaAlbania LekAlgeriaAll UsersAll users have been successfully deletedAll-userlisting TemplateAllow Users to Log in With:Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.Allow users to log in with their email or username when accessing your site.Allow users to recover their password in the front-end using the %s.Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$sAllowable ValuesAllowed Image ExtensionsAllowed Upload ExtensionsAllowed time to display any success messages (in seconds)American SamoaAn administrator has just approved your account on %1$s (%2$s).An administrator has just unapproved your account on %1$s (%2$s).An error occurred, please try again later.AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApplyApproveApprovedAre you sure you want to delete this?ArgentinaArgentina PesoArmeniaArubaAruba GuilderAs an administrator you cannot change your role.AscendingAustraliaAustralia DollarAustriaAuthor Archive ( http://sitename.com/author/admin )Automatically Log InAvailable TagsAvailable in All VersionsAvailable in Hobbyist and Pro VersionsAvailable tags for dynamic URLsAvatarAvatar SizeAvatar Size (All-userlisting)Avatar Size (Single-userlisting)Avatar UploadAvatar or GravatarAzerbaijanAzerbaijan New ManatBackBahamasBahamas DollarBahrainBangladeshBangladeshi takaBarbadosBarbados DollarBasic InformationBeautiful registration forms fully customizable using the %s shortcode.Before you can access your account %1s, an administrator has to approve it. You will be notified via email.Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.Before you can access your account, an administrator needs to approve it. You will be notified via email.BehaviourBelarusBelarus RubleBelgiumBelizeBelize DollarBeninBermudaBermuda DollarBhutanBiographical InfoBlog DetailsBlog Details - only appears on the Registration page!Blog URLBoliviaBolivia BolivianoBolivia, __( Plurinational State ofBonaire, Saint Eustatius and SabaBonaire, __( Sint Eustatius and SabaBosnia and HerzegovinaBosnia and Herzegovina Convertible MarkaBoth fields are empty.BotswanaBotswana PulaBouvet IslandBrazilBrazil RealBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBrunei DarussalamBrunei Darussalam DollarBulgariaBulgaria LevBulk ActionsBurkina FasoBurundiCabo VerdeCambodiaCambodia RielCameroonCan contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}CanadaCanada DollarCancelCape VerdeCayman IslandsCayman Islands DollarCentral African RepublicChadChange heading field size on front-end formsChanged Email Address NotificationCheck your e-mail for the confirmation link.CheckboxChileChile PesoChinaChina Yuan RenminbiChoose how multiple selections affect the resultsChoose one of the supported field typesChoose one of the supported fields you manage install manually.Could not install plugin. Retry or install manually.Country SelectCroatiaCroatia KunaCubaCuba PesoCuracaoCurrency SelectCustom RedirectsCustomize Your Forms The Way You Want (*)CyprusCzech RepublicCzech Republic KorunaDashboard (redirect users from accessing the dashboard)Date-formatDatepickerDeactivateDefaultDefault ContentDefault LatitudeDefault LongitudeDefault OptionDefault Option(s)Default RegistrationDefault Registration & Registration with Email ConfirmationDefault RoleDefault Sorting CriteriaDefault Sorting OrderDefault ValueDefault WP LoginDefault WP Recover PasswordDefault WP RegisterDefault Zoom LevelDefault limit for this repeater group.
            Leave 0 for unlimited.Default option of the fieldDefault value of the fieldDefault value of the textareaDeleteDelete allDelete all itemsDelete this itemDemocratic Republic of the CongoDenmarkDenmark KroneDescendingDescriptionDisabledDisplay MessagesDisplay NameDisplay name asDisplay name publicly asDisplay name publicly as - only appears on the Edit Profile page!Display on PB formsDisplay on default WP formsDjiboutiDo you want toDo you want to bulk approve the selected users?Do you want to bulk delete the selected users?Do you want to bulk unapprove the selected users?DominicaDominican RepublicDominican Republic PesoDownload NowDownloading and installing...E-mailERRORERROR:East Caribbean DollarEast TimorEasy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings.EcuadorEditEdit ProfileEdit field groupEdit the Edit-profile FormsEdit the Registration FormsEdit the User ListingEdit this itemEdit-profile FormEdit-profile FormsEg. (###) ###-####EgyptEgypt PoundEl SalvadorEl Salvador ColonEliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.EmailEmail ConfirmationEmail CustomizerEmail SubjectEmail TemplatesEmail notification resent to userEmpty field won't check for correct phone number.Enable extra featuresEnable limit to the number of fields to be generated by users in front end forms Enable your modulesEnter a (detailed) description of the option for end users to read
            OptionalEnter a comma separated list of labels
            Visible for the userEnter 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.Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophesEnter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100Enter the minimum characters the password should have. Leave empty for no minimum limitEnter your Google Maps API key ( Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used.Equatorial GuineaEritreaError MessageEstoniaEstonia KroonEthiopiaEuroEverything you will need to manage your users is probably already available using the Pro Modules.Example:Excerpt ViewExisting PagesExpand the resultsExtra FeaturesExtra FunctionsExtra Profile Fields are available in Hobbyist or PRO versionsExtra shortcode parametersFacet MetaFacet TypeFaceted MenusFalkland IslandsFalkland Islands (Malvinas)Falkland Islands (Malvinas) PoundFaroe IslandsFeatures that give you more control over your users, increased security and help you fight user registration spam.FieldField PropertiesField TitleFijiFiji DollarFind out more about PRO ModulesFinlandFirst NameFirst/LastnameFirstnameFor Modern User InteractionFor security reasons, you must pass the remote ip to reCAPTCHA!Form ShortcodeFranceFreeFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriction-less login using %s shortcode or a widget.From (name)From (reply-to email)GabonGambiaGeneral LimitGeneral SettingsGeneric UploadsGeorgiaGermanyGet New PasswordGet started with extra fieldsGhanaGhana CedisGibraltarGibraltar PoundGlobal RedirectsGo Back LinkGoogle Maps API KeyGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuatemala QuetzalGuernseyGuernsey PoundGuineaGuinea-BissauGuyanaGuyana DollarHTMLHTML ContentHaitiHeading TagHeard Island and McDonald IslandsHere you can activate / deactivate available modules for Profile Builder.HideHoly See (Vatican City State)HondurasHonduras LempiraHong KongHong Kong DollarHow does this work?HungaryHungary ForintIDIcelandIceland KronaIf you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules.InactiveIncorrect phone numberIndiaIndia RupeeIndividual User RedirectsIndividual redirects defined in shortcodes; redirect_priority="top" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects.IndonesiaIndonesia RupiahInput / Hidden InputInstall NowInstallation completeInvalid activation key!Invalid key!Invalid username.IranIran RialIran, __( Islamic Republic ofIraqIrelandIsle of ManIsle of Man PoundIsraelIsrael ShekelItalyIvory CoastJabberJabber / Google TalkJamaicaJamaica DollarJapanJapan YenJerseyJersey PoundJordanKazakhstanKazakhstan TengeKeep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.KenyaKiribatiKorea (North) WonKorea (South) WonKorea, __( Democratic Peoples Republic ofKorea, __( Republic ofKosovoKuwaitKyrgyzstanKyrgyzstan SomLabelLabelsLao Peoples Democratic RepublicLaosLaos KipLast »»Last NameLastnameLatviaLatvia LatLearn MoreLeave 0 for unlimited.Leave it empty for no max valueLeave it empty for no min valueLeave it empty for no restrictionLebanonLebanon PoundLesothoLiberiaLiberia DollarLibyaLiechtensteinLimitLimit per RoleLimit reached messageList ViewLithuaniaLithuania LitasLoad Profile Builder's own CSS file in the front-end:Log outLog out »Log out of this accountLog out of this account.LoginLogin ( wp_login.php )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 )Login with Email or UsernameLogoutLost Password ( wp-login.php?action=lostpassword )Lost your passwordLost your password?LuxembourgMacaoMacedoniaMacedonia DenarMacedonia, __( the former Yugoslav Republic ofMadagascarMake sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.MalawiMalaysiaMalaysia RinggitMaldivesMaliMaltaManage Default and Extra FieldsManage FieldsManage field or group of fields that will be repeatable.MapMap HeightMarshall IslandsMartiniqueMauritaniaMauritiusMauritius RupeeMax Number ValueMax allowed number value (0 to allow only negative numbers)MayotteMediumMember ManagementMeta-nameMexicoMexico PesoMicronesiaMicronesia, __( Federated States ofMin Number ValueMin allowed number value (0 to allow only positive numbers)Minimum Password Length and Strength MeterMinimum Password Length:Minimum Password Strength:Minimum length of %d charactersMinimum required Profile Builder version:ModulesMoldovaMoldova, __( Republic ofMonacoMongoliaMongolia TughrikMontenegroMontserratMoreMore DetailsMore InfoMore Info UrlMore...MoroccoMozambiqueMozambique MeticalMultiple Edit-profile FormsMultiple Registration FormsMultiple Registration and Edit Profile form settings RedirectsMust be a valid email address or the tag {{reply_to}} which defaults to the administrator emailMyanmarNameName/DescriptionNamibiaNamibia DollarNarrow the resultsNauruNepalNepal RupeeNetherlandsNetherlands Antilles GuilderNew CaledoniaNew Edit-profile FormNew Registration FormNew User ListingNew ZealandNew Zealand DollarNew subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            Next » NicaraguaNicaragua CordobaNicknameNigerNigeriaNigeria NairaNiueNoNo Edit-profile Form foundNo Edit-profile Forms found in trashNo Registration Form foundNo Registration Forms found in trashNo User Listing foundNo User Listing found in trashNo items found.No options availableNo results found!NoneNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNorway KroneNot compatible with Profile BuilderNot compatible with your version of Profile Builder.Now that you acquired a copy of %s, you should take the time and register it with the serial number you receivedNumberNumber Step ValueNumber of PostsNumber of Users/PageOmanOman RialOnly administrators can see this field on edit profile forms.Only an administrator can add new users.OptionsOverwrite ExistingPB LoginPB Recover PasswordPB RegisterPaginationPaid & Free SubscriptionsPaid AccountsPaid Member Subscriptions - a free WordPress pluginPakistanPakistan RupeePalauPalestine, __( State ofPalestinian TerritoryPanamaPanama BalboaPapua New GuineaParaguayParaguay GuaraniPasswordPassword Lost and Found.Password Recovery page URL (optional):Password Reset EmailPassword Reset Success EmailPassword Reset from "%1$s"Password Successfully Reset for %1$s on "%2$s"Payment ManagementPersonalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.PeruPeru Nuevo SolPhilippinesPhilippines PesoPhone FormatPitcairnPlease add the Google Maps API key for this field.Please check that you entered the correct email address.Please check that you entered the correct username.Please choose a different field type as this one already exists in your form (must be unique) Please enter a (valid) reCAPTCHA valuePlease enter a unique field title. Please enter a valid username.Please enter a value for the required field Please enter numbers onlyPlease enter your username or email address.Please select and enter the ID or username of your user.Please select at least one user role Please try a different one!Plugin has been activatedPlugin has been deactivated.Plugin is activePlugin is inactivePlugin is ActivePolandPoland ZlotyPortugalPostsPosts from what post type will be displayed in the select.Powerful Modules (**)Privacy: I would like my site to appear in search engines, and in public listings around this network.Profile Builder Login WidgetProfile Builder RegisterPuerto RicoQatarQatar RiyalRadio ButtonsRandom (very slow on large databases > 10K user)Recommended PluginsRecover PasswordRedirectRedirect Default WordPress Forms and PagesRedirect Default WordPress forms and pagesRedirect TypeRedirect URLRegisterRegister ( wp-login.php?action=register )Register VersionRegister Your VersionRegister page URL (optional):RegisteredRegistrationRegistration & Edit ProfileRegistration DateRegistration FormRegistration FormsRegistration with Admin ApprovalRegistration with Email ConfirmationRemember though, that the field-value combination must exist in the database.RemoveRemove All FiltersRepeat PasswordRepeatable fields saved!Repeated field groupRepeater FieldsReply ToRepublic of the CongoRequiredRequired phone number format: Resend Activation EmailReset KeyReset LinkReset PasswordReset UrlRestrict ContentRestrict the userlisting to these selected roles only
            If not specified, defaults to all existing rolesRetry InstallReunionRoleRoles to DisplayRomaniaRomania New LeuRow CountRussiaRussia RubleRussian FederationRwandaSaint BarthelemySaint HelenaSaint Helena PoundSaint Helena, __( Ascension and Tristan da CunhaSaint Kitts and NevisSaint LuciaSaint MartinSaint Martin (French part)Saint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaudi Arabia RiyalSaveSave ChangesSave SettingsSave the user role order from the user roles checkboxesSearchSearch FieldsSearch LocationSearch SettingsSearch UsersSearch Users by All FieldsSearch all FieldsSearch the Edit-profile FormsSearch the Registration FormsSearch the User ListingSecret KeySelectSelect AllSelect FileSelect a user role.Select on what user roles to activate Admin Approval.Select on which Profile Builder forms to display reCAPTCHASelect on which default WP forms to display reCAPTCHASelect which user roles to show to the user ( drag and drop to re-order )Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name
            Use this at your own riskSend these credentials via email.SenegalSerbiaSerbia DinarSet RoleSet a custom error message that will be displayed to the user.Set the avatar size on the all-userlisting onlySet the avatar size on the single-userlisting onlySet the default sorting criteria
            This can temporarily be changed for each new sessionSet the default sorting order
            This can temporarily be changed for each new sessionSet the number of users to be displayed on every paginated part of the all-userlistingSet up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role.Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.SeychellesSeychelles RupeeShare a little biographical information to fill out your profile. This may be shown publicly.ShortcodeShowShow AllShow Currency SymbolShow Post TypeShow a toggle link after this many choices. Leave blank for allShow all datesShow/Hide the Admin Bar on the Front-EndSierra LeoneSign-up DateSingaporeSingapore DollarSingle-userlisting TemplateSint MaartenSint Maarten (Dutch part)Site KeySite NameSite TitleSite URL slugSite UrlSlovakiaSloveniaSolomon IslandsSolomon Islands DollarSomaliaSomalia ShillingSomeone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$sSomething went wrong, we could not connect to the server. Please try again later.Something went wrong. Please try again.Sorry, but you don't have permission to do that!Sorry, you cannot upload this file type for this field.Sort TagsSouth AfricaSouth Africa RandSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.comSpecify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.comSpecify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yySpecify the number of rows for a 'Textarea' field
            If not specified, defaults to 5Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)Specify the option which should be selected by defaultSpecify 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.Specify the time format.Sri LankaSri Lanka RupeeStatusStep by Step Quick SetupStep value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimalStraight forward edit profile forms using %s shortcode.Strength indicatorStrongSubscription ManagementSudanSurinameSuriname DollarSvalbard and Jan MayenSwazilandSwedenSweden KronaSwitzerlandSwitzerland FrancSyriaSyria PoundSyrian Arab RepublicTaiwanTaiwan New DollarTaiwan, __( Province of ChinaTajikistanTanzaniaTanzania, __( United Republic ofTerms of AgreementTextareaThailandThailand BahtThat field is already added in this form That meta-name is already in use That username is already activated!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!The account %1s has been successfully created!The best way to add front-end registration, edit profile and login forms.The email address entered wasn't found in the database!The email you entered is not a valid email address.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical The entered passwords don't match!The entered row number is not numerical The entered value for the Datepicker is not a valid date-format The following option did not coincide with the ones in the options list: %s The following option(s) did not coincide with the ones in the options list: %s The height of the map.The latitude at which the map should be displayed when no pins are attached.The longitude at which the map should be displayed when no pins are attached.The maximum number of fields has been reached.The meta-name can only contain lowercase letters, numbers, _ , - and no spaces. The meta-name cannot be empty The password must have a minimum strength of %sThe password must have the minimum length of %s charactersThe password you entered is incorrect.The passwords do not matchThe popup message to display when the limit of repeater groups is reached.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.The secret key from Google, www.google.com/recaptchaThe selected user couldn't be deletedThe selected users have been activatedThe selected users have had their activation emails resentThe serial number couldn't be validated because it expired!The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!The serial number entered couldn't be validated!The serial number is about to expire soon!The serial number was successfully validated!The shortcode will be available after you publish this form.The site key from Google, www.google.com/recaptchaThe userlisting will only be visible only to the logged in usersThe userlisting will only be visible to the following rolesThe username entered wasn't found in the database!The usernames cannot be changed.The users selected password at signupThere was an error in the submitted formThere was an error performing that action!There was an error while trying to activate the userThere was an error while trying to activate the user.There was an error while trying to send the activation link to %1$s!These redirects happen after a successful action, like registration or after a successful login.These settings are also replicated in the "Admin Email Customizer" settings-page upon save.These settings are also replicated in the "User Email Customizer" settings-page upon save.This email is already in use.This email is already reserved to be used soon.This field has conditional logic enabled.This field is requiredThis form is empty.This login widget lets you add a login form in the sidebar.This message is only visible by administratorsThis username already exists.This username is already activated!This username is already reserved to be used soon.This username is invalid because it uses illegal characters.This username is now active!This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using "Custom Redirects" module.Time FormatTimepickerTimezone SelectTimor-LesteTitle of the fieldTitle:To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login.To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so onTo 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$sTo allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$sTo create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s.To use reCAPTCHA you must get an API key fromTo use reCAPTCHA you must get an API public key from:TogoTokelauTongaTrinidad and TobagoTrinidad and Tobago DollarTunisiaTurkeyTurkey LiraTurkmenistanTurks and Caicos IslandsTuvaluTuvalu DollarType your password again. Type your password.U.S. Virgin IslandsURLUS DollarUgandaUganda ShillingUkraineUkraine HryvnaUnapproveUnapprovedUnapproved User NotificationUnited Arab EmiratesUnited KingdomUnited Kingdom PoundUnited StatesUnited States Minor Outlying IslandsUpdateUpgrade Profile BuilderUpload UruguayUruguay PesoUse these shortcodes on the pages you want the forms to be displayed:Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-countUse this shortcode on the page you want the form to be displayed:User Approval NotificationUser CountUser Email CustomizerUser Fields TagsUser IDUser ID / UsernameUser ID or UsernameUser IdUser ListingUser MetaUser NicenameUser RoleUser Role based RedirectsUser RolesUser Roles OrderUser not foundUser successfully approved!User successfully deleted!User successfully unapproved!User to edit:User-RoleUser-statusUserlisting SettingsUsernameUsername and EmailUsername or E-mailUsername or EmailUsernames cannot be changed.Users can register themselves or you can manually create users here.Users cannot currently register themselves, but you can manually create users here.Users successfully approved!Users successfully deleted!Users successfully unapproved!Users with Unconfirmed Email AddressUzbekistanUzbekistan SomValid tags {{reply_to}} and {{site_name}}ValidationValue must be a multiplier of %1$sValue must be greater than or equal to %1$sValue must be less than or equal to %1$sVanuatuVaticanVenezuelaVenezuela BolivarVenezuela, __( Bolivarian Republic ofVersion %sVery WeakVery weakViet NamViet Nam DongVietnamView MapView all extra shortcode parametersView the Edit-profile FormView the Registration FormView the User ListingVirgin Islands, __( BritishVirgin Islands, __( U.S.VisibilityVisible choicesVisible only to logged in users?Visible to following RolesWallis and FutunaWeakWebsiteWelcome to %1$s!


            Your username is:%2$sWelcome to %1$s!


            Your username is:%2$s and password:%3$sWestern SaharaWhether the currency symbol should be displayed after the currency name in the select option.Whether the field is required or notWhether to automatically log in the newly registered user or not
            Only works on single-sites without "Admin Approval" and "Email Confirmation" features activated
            WARNING: Caching the registration form will make automatic login not workWhether to redirect the user to a specific page or notWhich redirect happens depends on the following priority:With Extra Profile Fields you can create the exact registration form your project needs.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.With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts.With these you can redirect various WordPress forms and pages to pages created with profile builder.Yahoo IMYemenYemen RialYesYes, I'd like to create a new siteYimYou are already logged in. You can change your password on the edit profile form.You are currently logged in as %1$s. %2$sYou are currently logged in as %1s. You don't need another account. %2sYou are currently logged in as %s. You are not allowed to do this.You can add the information for the %s after you add a entryYou 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)You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.You can find it in the Profile Builder menu.You can find the default file here: %1$sYou can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces.You can't add duplicate redirects!You cannot register this user roleYou decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.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.You do not have permission to view this user list.You do not have the required user role to view this user list.You don't have any pagination settings on this userlisting!You either don't have permission for that action or there was an error!You have successfully reset your password to: %1$sYou must be logged in to edit your profile.You must enter a valid email address.You must enter a value for the date-format You must enter a value for the row number You must enter the secret key You must enter the site key You must select a field You need to activate the Userlisting feature from within the "Modules" tab!You need to specify the title of the form before creating itYou use the following tags in your URLs to redirect users to various pages.You will receive a link to create a new password via email.You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$sYour account has been successfully created!Your account has to be confirmed by an administrator before you can log in.Your account has to be confirmed by an administrator before you can use the "Password Recovery" feature.Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.Your account on %1$s has been approved!Your account on %1$s has been unapproved!Your account on {{site_name}} has been approved!Your account on {{site_name}} has been unapproved!Your email was successfully confirmed.Your password has been successfully changed!Your profile has been successfully updated!Your selected password at signupYour session has expired! Please refresh the page and try againYour session has expired! Please refresh the page and try again.Your site url will look like this:
            ZambiaZimbabweZimbabwe Dollar[%1$s] Activate %2$s[%1$s] Your new account information[{{site_name}}] Activate {{username}}[{{site_name}}] Notice of Email Change[{{site_name}}] Password Reset[{{site_name}}] Password Reset Successfullyapprove this user?approvedconfirm this email yourself?delete this user from the _signups table?delete this user?displays all users except the ones you specified the user_id fordisplays only the users that you specified the user_id fordisplays users having a certain meta-value within a certain (extra) meta-fieldemailgenerates a url of the current website homepage.herein WordPress the site url can be different then the home urlreCAPTCHArequiredresend the activation link?showthe ID of the userthe URL of the previously visited pagethe URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces.unapprove this user?unapprovedusernameusername or emailPO-Revision-Date: 2017-05-23 06:42:14+0000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n > 1); X-Generator: GlotPress/0.1 Project-Id-Version: Profile Builder

            Boas notícias!

            O administrador acaba de aprovar a sua conta: {{username}} em {{site_name}}.

            Olá,

            Infelizmente o administrador reprovou a criação de sua conta: {{username}} em {{site_name}}.

            Bemvindo ao {{site_name}}!

            Seu usuário é: {{username}} e password:{{password}}

            Bemvindo ao {{site_name}}!

            Seu usuário é: {{username}} e password:{{password}}

            Antes de acessar sua conta, o administrador precisa aprová-la. Você será notificado por email quando isso acontecer.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            Novo assinante em {{site_name}}.

            Usuário:{{username}}

            E-mail:{{user_email}}

            A função de Aprovação do Admin estava ativada no momento do registro, então por favor lembre-se que você precisa aprovar esse usuário para que ele possa fazer o login!

            Alguém solicitou a redefinição da senha da seguinte conta: {{site_name}}
            Nome do usuário: {{username}}

            Se isso foi um engano, basta ignorar este e-mail e nenhuma alteração será realizada.

            Para redefinir a sua senha, clique no seguinte endereço:
            {{{reset_link}}}

            Para ativar seu usuário, por favor clique no seguinte link:
            {{{activation_link}}}

            Após a ativação você receberá um email com suas credenciais.

            Você alterou sua senha com sucesso para: {{password}}

            {{username}} solicitou a troca da senha via componente de redefinição de senha.

            A sua nova senha é: {{password}}

            * disponível apenas nas versões %1$sHobbyist e PRO%2$s.Número de série:Seu serial está para expirar, favor %1$s Renovar Sua Licença%2$s.Seu serial expirou, favor %1$s Renovar Sua Licença%2$s.também é ativado. Você precisa desativá-la antes de ativar esta versão do plugin."Aprovação do Admin" Ativada:Função "Aprovação do Admin":"Aprovação do Administrador" na função do usuário:"Email de Confirmação" Ativado:Página de abertura da "Confirmação de Email""Email" - usuários só podem fazer Log In com o Email."Nome e Email" - usuários podem fazer Log In com Nome e Email."Nome" - usuários só podem fazer Log In com o Nome.%1$s %2$d%1$s solicitou uma alteração de password através da função de reset de password.
            Seu novo password é:%2$s%1$s de %2$s%s não pôde ser deletado%s pendente« Ant«« Primeira(ex: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(sem título)** disponível apenas na versão %1s Pro %2$s.. Tipos de Campos Extras estão disponíveis em Versão Hobbyist ou PRO.... Escolha...Escolher1 item

            Também, você estará apto a visitar seu site como

            Você pode visitar seu site como

            Sua licença do Construtor de Perfilexpirou.
            Por favor %1$sRenove sua Licença%2$s para continuar tendo acesso a downloads, atualizações automáticas e suporte. %3$sRenove agora e ganhe 40% de desconto %4$s %5$sDescartar%6$s

            sua licença do Construtor de Perfil expira em %5$s.
            Por favor %1$sRenove sua licença%2$s para continuar a ter acesso a downloads, atualizações automáticas e suporte. %3$sRenove agora e ganhe 40% de desconto %4$s %6$sDescartar%7$s

            Seu serial do Profile Builder é inválido or inexistente.
            Favor %1$sregistrar sua cópia%2$s para ter acesso a atualizações automáticas e suporte. Precisa de uma licença? %3$sAdquira uma agora%4$s

            Redirecionar
            URL
            Título (Tipo)
            Título
            Tipo
            Meta Name
            Obrigatório
            ID de usuário/Nome de Usuário
            Redirecionar
            URL
            Função de Usuário
            Redirecionar
            URL
            Nota: alterar o título do formulário também altera o shortcode!ERRO: A senha deve ter uma força mínima de %sERRO: A senha deve ter o tamanho mínimo de %s caracteresERRO: Sua conta precisa ser confirmada pelo administrador antes de você fazer o login.Profile Builder Uma nova conta foi criada para você em {{site_name}}Um novo assinante foi registrado!Um ID único, gerado automaticamente para esse campo em particular
            Você pode usar isso em conjunto com filtros para filtrar esse elemento se necessário
            Não pode ser editadoAIMSobre vocêAceite paramento de usuários, crie planos de assinatura e restrinja comentários em seu site de adesões.Aceite pagamentos, crie planos de assinatura e restrinja conteúdo em seu site.Gerenciamento de ContaAtivarChave de ativaçãoLink de ativaçãoURL de ativaçãoAtivoAdicionar EntradaAdicionar CampoAdicionar novoAdicoinar novo campo a listaAdicionar usuárioAdicione um número de 0 a 19. Quando maior o número maior o zoom.Adicionar novo formulário de edição de perfilAdicionar novo formulário de registroAdicionar nova listagem de usuárioAdicione seu conteúdo em HTML (ou texto)Add-On foi ativadoAdd-On foi desativado.Add-On está ativoAdd-On está inativoAdd-On está ativoAdd-OnsAprovação do AdminAprovação do Admin (*)Configurações da Barra de AdminCustomizador do Email AdminNotificação do administrador de redefinição de senhaAfghanistanAfghanistan AfghaniApós Editar PerfilApós ConectarApós DesconectarApós a atualização do perfil...Após registrarApós o registro...Após a Confirmação de E-mail com SucessoApós o Reset de senha realizado com SucessoURL para redirecionar após login (opcional):Checkbox de acordo com termosAimAland IslandsAlbaniaAlbania LekAlgeriaTodos os usuáriosTodos os usuários foram deletados com sucessoTemplate de listagem de todos usuáriosPermitir usuários fazerem login com:Permita que usuários com diferentes funções editem suas informações específicas. Configure múltiplos formulários de edição de perfil com diferentes campos para funções específicas de usuários.Permite aos usuários fazerem o login com seus emails ou nome de usuários quando acessarem seu site.Permitir usuários a recuperar suas senhas na tela frontal usando o %s.Permita que seus usuários tenham contas pagas com o Construtor de Perfil. %1$sSaiba como>%2$s %3$sDescartar%4$sValores PermitidosExtensões de imagens permitidasExtensões permitidas para uploadTempo permitido para mostrar qualquer mensagem de sucesso (em segundos)American SamoaO administrador acabou de aprovar sua conta em %1$s (%2$s).O administrador acabou de reprovar sua conta em %1$s (%2$s).Um erro aconteceu, por favor tente novamente.AndorraAngolaAnguillaAntarcticaAntigua and BarbudaAplicarAprovarAprovadoTem certeza que quer deletar isto?ArgentinaArgentina PesoArmeniaArubaAruba GuilderSendo um administrador você não pode alterar suas características.AscendenteAustraliaAustralia DollarAustriaAutor do Arquivo ( http://sitename.com/author/admin )Login AutomáticoTags disponíveisDisponíveis em todas as VersõesDisponível nas versões Hobbyist e PROTags disponíveis para URL's dinâmicasAvatarTamanho do AvatarTamanho do avatar (toda a listagem de usuários)Tamanho do avatar (listagem de usuário única)Upload de AvatarAvatar ou GravatarAzerbaijanAzerbaijan New ManatVoltarBahamasBahamas DollarBahrainBangladeshBangladeshi takaBarbadosBarbados DollarInformações BásicasFormulários de registro bonitos e completamente personalizáveis usando o código %s.Antes de acessar sua conta %1s, um administrador precisa aprová-la. Você será notificado via email quando isso acontecer.Antes de acessar sua conta %1s, você precisa confirmar seu endereço de email. Por favor cheque o seu inbox e clique no link de ativação.Antes de acessar sua conta, ela precisa ser aprovada pelo administrador. Você será notificado via email quando isso acontecer.ComportamentoBelarusBelarus RubleBelgiumBelizeBelize DollarBeninBermudaBermuda DollarBhutanInformação biográficaDetalhes do BlogDetalhes do Blog - apenas aparece na página de registro!URL do BlogBoliviaBolivia BolivianoEstado Plurinacional da BoliviaBonaire, Saint Eustatius and SabaBonaire, __( Sint Eustatius and SabaBosnia and HerzegovinaBosnia and Herzegovina Convertible MarkaAmbos os campos estão vazios.BotswanaBotswana PulaBouvet IslandBrazilReal BrasileiroBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBrunei DarussalamBrunei Darussalam DollarBulgariaBulgaria LevAções em massaBurkina FasoBurundiCabo VerdeCambodiaCambodia RielCameroonPode conter as seguintes tags dinâmicas:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}CanadaCanada DollarCancelarCape VerdeCayman IslandsCayman Islands DollarCentral African RepublicChadMude o tamanho do campo título no formulário frontalMudar notificação do Endereço de E-mailCheque seu e-mail para o link de confirmação.CheckboxChileChile PesoChinaChina Yuan RenminbiEscolha como seções múltiplas afetam os resultadosEscolha um dos tipos de campos suportadosEscolha um dos campos suportados que você gerencia instale manualmente.Não foi possível instalar o plugin. Repita ou instale manualmente.Selecionador de PaísCroatiaCroatia KunaCubaCuba PesoCuracaoSelecione moedaRedirecionamentos customizadosCustomize seus formulários da forma que quiser (*)CyprusCzech RepublicCzech Republic KorunaPainel de Controle (redirecione usuários para acessar o painel de controle)Formato da dataSelecionador de datasDesativarPadrãoConteúdo padrãoLatitude PadrãoLongitude PadrãoOpção padrãoOpção(es) padrãoRegistro padrãoRegistro padrão & Registro com confirmação de emailFunção padrãoCritério de ordenação padrãoPrioridade da ordenação padrãoValor padrãoLogin WP PadrãoPadrão WP de Recuperação de SenhaRegistro WP PadrãoLevel do Zoom PadrãoLimites padrões para este grupo repetidor.
            Deixe 0 para ilimitado.Opção Padrão do campoValor padrão do campoValor padrão da Área de TextoDeletarApagar tudoApagar todos os itensDeletar esse itemDemocratic Republic of the CongoDenmarkDenmark KroneDescendenteDescriçãoDesabilitadoMostrar mensagensMostrar nomeMostrar nome comoMostrar nome publicamente comoMostrar nome publicamente como - apenas aparece na página de Edição de Perfil!Mostrar em Formulários PBMostrar em formulários padrão WPDjiboutiVocê desejaVocê deseja aprovar em massa os usuários selecionados?Você deseja deletar em massa os usuários selecionados?Você deseja reprovar em massa os usuários selecionados?DominicaDominican RepublicDominican Republic PesoBaixar AgoraBaixando e instalando...E-mailERROERRO:East Caribbean DollarEast TimorTemplates para listagem dos usuários do seu site fáceis de editar, além da criação de páginas exclusivas para cada um. Baseado em shortcodes, ofecere muitas opções de customizar suas listagens. EcuadorEditarEditar PerfilEditar campo gruposEditar os formulários de edição de perfilEditar os formulários de registroEditar a Listagem de UsuáriosEditar esse itemFormulário de Edição de PerfilFormulários de Edição de PerfilExemplo: (###) ####-####EgyptEgypt PoundEl SalvadorEl Salvador ColonElimine passwords de uma vez configurando um tamanho mínimo e mantendo a força do password.EmailConfirmação de EmailCustomizador de EmailsAssunto do EmailModelos de E-mailEmail de notificação reenviado ao usuárioCampos vazios não verificam número de telefone correto.Habilite as funções extrasHabilitar limite para o número de campos a ser gerado por usuários nos formulários frontaisHabilite seus módulosDigite uma descrição (detalhada) da opção para os usuários lerem
            OpcionalEntre com uma lista de rótulos separados por vírgula
            Visível para o usuárioDigite uma vírgula separando a lista de valores possíveis. Uma vez que registrar o valor provido pelo usuário e ele não conferir com estes valores, o usuário não será registrado.Insira uma lista de valores separada por vírgula
            Ela pode ser qualquer uma, pois é ocultada do usuário, mas não deve conter caracteres especiais ou apóstrofesDigite uma descrição detalhada dos termos de acordo para o usuário ler.
            Links podem ser inseridos usando uma sintaxe HTML padrão: <a href="custom_url">custom_text</a>Digite um valor (entre 20 e 200) para o tamanho do 'Avatar'
            Se não especificado, o padrão são 100Digite a quantidade mínima de caracteres que o password deve conter. Deixe em branco para sem limite mínimoDigite sua Chave de API do Google Maps ( Obtenha sua chave API ).Se mais de um campo de mapa é adicionar em um formulário a chave API do primeiro mapa mostrado será usada.Equatorial GuineaEritreaMensagem de ErroEstoniaEstonia KroonEthiopiaEuroTudo que você precisa para gerenciar seus usuários provavelmente já está disponível usando os módulos PRO.Exemplo:Visualizar ResumoPáginas existentesExpandir os resultadosFunções ExtrasFunções extraCampos Extra de Perfil estão disponíveis nas versões Hobbyist ou PROParâmetros extra do shortcodeMeta FacetaTipo LapidadoMenus LapidadosFalkland IslandsFalkland Islands (Malvinas)Falkland Islands (Malvinas) PoundFaroe IslandsFunções que lhe dão mais controle sobre seus usuários, aumentam a seguração e o ajudam a combater o cadastro de spams.CampoPropriedades do campoTítulo do campoFijiFiji DollarSaiba mais sobre os módulos PROFinlandPrimeiro NomePrimeiro/Último nomePrimeiro nomePara interação com usuários modernosPor motivos de segurança, você deve passar o IP remoto para o reCAPTCHA!Shortcode do formulárioFranceGrátisFrench GuianaFrench PolynesiaFrench Southern TerritoriesConectando usando código sem atrito %s ou um widget.De (nome)De (email de resposta)GabonGambiaLimites GeraisConfigurações GeraisUploads GenéricosGeorgiaGermanyCriar novo passwordComece já a usar os campos extraGhanaGhana CedisGibraltarGibraltar PoundDirecionamentos GlobaisLink VoltarChave de API do Google MapsGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuatemala QuetzalGuernseyGuernsey PoundGuineaGuinea-BissauGuyanaGuyana DollarHTMLConteúdo HTMLHaitiTag de TítuloHeard Island and McDonald IslandsAqui você pode ativar/desativar os módulos disponíveis para o Profile Builder.OcultarHoly See (Vatican City State)HondurasHonduras LempiraHong KongHong Kong DollarComo isto funciona?HungaryHungary ForintIDIcelandIceland KronaSe você gostar de usar %1$s por favor qualifique-nos no WordPress.org. Usuários mais satisfeitos significa que temos mais funcionalidade, menos bugs e um melhor suporte para todos. Se você registrar essa versão do Profile Builder, você receberá informações sobre upgrades, atualizações e suporte técnico.Se você está interessado em mostrar diferentes campo na tela de registro e editar formulários de perfil, por favor use o Registros Múltiplos e Módulos e Formulários de Edição de Perfil.InativoNúmero de Telefone IncorretoIndiaIndia RupeeRedirecionamento individual de UsuáriosRedirecionamentos individuais definidos nos códigos; redirect_priority="top" . Parâmetros podem ser adicionados em qualquer código, então o código de redirecionamento terá prioridade sobre todos os outros direcionamentos.IndonesiaIndonesia RupiahInput / Input OcultoInstale AgoraInstalação completaChave de ativação inválida!Chave inválida!Nome inválido.IranIran RialIran, __( Islamic Republic ofIraqIrelandIsle of ManIsle of Man PoundIsraelIsrael ShekelItalyIvory CoastJabberJabber / Google TalkJamaicaJamaica DollarJapanJapan YenJerseyJersey PoundJordanKazakhstanKazakhstan TengeMantenha seus usuários longe do dashboard do Wordpress, redirecione-os para a página principal após o login ou o registro, tudo isso com alguns cliques.KenyaKiribatiKorea (North) WonKorea (South) WonKorea, __( Democratic Peoples Republic ofKorea, __( Republic ofKosovoKuwaitKyrgyzstanKyrgyzstan SomRótuloRótulosLao Peoples Democratic RepublicLaosLaos KipÚltima »»Último nomeÚltimo nomeLatviaLatvia LatLeia MaisDeixe 0 para ilimitado.Deixe vazio para nenhum valor máximoDeixe isso vazio para nenhum valor mínimo.Deixe vazio para nenhuma restriçãoLebanonLebanon PoundLesothoLiberiaLiberia DollarLibyaLiechtensteinLimiteLimite por funçãoLimite de mensagens alcançadoVisualizar ListaLithuaniaLithuania LitasCarregar o arquivo CSS próprio do Profile Builder em sua página:DesconectarSair »Desconectar dessa contaDesconectar dessa conta.LoginConectar ( wp_login.php )Login está configurado para ser feito através do E-mail. Esse campo NÃO irá aparecer na tela! (você pode alterar essas configurações na aba "%s")Login com Email ou UsuárioDesconectarEsqueceu a Senha ( wp-login.php?action=lostpassword )Perdeu seu passwordPerdeu sua senha?LuxembourgMacaoMacedoniaMacedonia DenarMacedonia, __( the former Yugoslav Republic ofMadagascarGaranta que usuários cadastrem-se com emails genuínos. No registro, os usuários receberão uma notificação para confirmarem seus emails.MalawiMalaysiaMalaysia RinggitMaldivesMaliMaltaGerenciar campos padrões e extrasGerenciar camposGerenciar campo ou grupo de campos que serão repetitivos.MapaAltura do MapaMarshall IslandsMartiniqueMauritaniaMauritiusMauritius RupeeValor máximo do númeroMáximo permitido para valor do número (0 zero para permitir apenas números negativos)MayotteMédioGerenciamento de MembrosNome-MetaMexicoMexico PesoMicronesiaMicronesia, __( Federated States ofValor mínimo do númeroMínimo permitido do valor do número (0 zero para permitir apenas números positivos)Tamanho mínimo do password e medidor de forçaTamanho mínimo do password:Força mínima do password:Tamanho mínimo de %d caracteresVersão mínima requerida do Profile Builder:MódulosMoldovaMoldova, __( Republic ofMonacoMongoliaMongolia TughrikMontenegroMontserratMaisMais detalhesMais InformaçõesURL de mais informaçõesMais...MoroccoMozambiqueMozambique MeticalMúltiplos formulários de edição de perfilMúltiplos formulários de RegistroConfigurações de Redirecionamento dos Registros Múltiplos e Editor de Perfil.Deve ser um endereço de e-mail válido ou o tag {{reply_to}} o qual o padrão para o e-mail do administradorMyanmarNomeNome/DescriçãoNamibiaNamibia DollarLimitar os resultadosNauruNepalNepal RupeeNetherlandsNetherlands Antilles GuilderNew CaledoniaNovo formulário de edição de perfilNovo formulário de registroNova listagem de usuárioNew ZealandNew Zealand DollarNovo assinante em %1$s.

            Usuário:%2$s
            E-mail:%3$s
            Próx » NicaraguaNicaragua CordobaApelidoNigerNigeriaNigeria NairaNiueNãoNenhum formulário de edição de perfil encontradoNenhum Formulário de Edição de Perdil encontrado na lixeiraNenhum formulário de registro encontradoNenhum formulário de registro encontrado na lixeiraNenhum registro de usuário encontradoNenhum registro de usuário encontrado na lixeiraNenhum item encontrado.Nenhuma opção disponívelNenhum resultado encontrado!NadaNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNorway KroneNão compatível com Profile BuilderNão compatível com sua versão do Profile Bulder Agora que você adquiriu uma cópia do %s, você pode aproveitar para registrá-la com o serial que você recebeuNúmeroValor do Número de PessosNúmero de postagensNúmero de usuários/páginaOmanOman RialSomente administradores podem ver este campo na edição do formulário.Somente o administrador pode adicionar novos usuários.OpçõesSobrepor existenteLogin PBRecuperar Senha PBRegistro PBPaginaçãoAssinaturas Pagas e GratuitasContas pagasPaid Member Subscriptions -Um Plugin gratuito WordPressPakistanPakistan RupeePalauPalestine, __( State ofPalestinian TerritoryPanamaPanama BalboaPapua New GuineaParaguayParaguay GuaraniPasswordPassword Achados e Perdidos.URL da página de recuperação de password (opcional):E-mail de Redefinição de SenhaEmail de sucesso de redefinição de senhaReset do password de "%1$s"Password resetado com sucesso para %1$s em "%2$s"Gerenciamento de PagamentoPersonalize todos os emails enviados aos seus usuários ou admins. Quando fizerem registro, confirmação de email, aprovação/negação de admin.PeruPeru Nuevo SolPhilippinesPhilippines PesoFormato do TelefonePitcairnPor favor adicione a chave do API do Google Maps para este campo.Por favor cheque se você digitou o endereço de email corretamente.Por favor confirme se você digitou o usuário corretamente.Por favor escolha um tipo de campo diferente pois já existe um desses em seu formulário (ele deve ser único) Por favor digite um valor válido para o reCAPTCHAPor favor entre campo de título único. Por favor entre um nome de usuário valido.Por favor digite um valor para o campo obrigatórioPor favor digite apenas númerosPor favor digite seu usuário ou email.Por favor selecione e digite o ID ou nome de usuário de seu usuário.Favor selecionar ao menos uma função de usuário Por favor tente um diferente!Plugin foi ativadoPlugin foi desativado.Plugin está ativoPlugin está inativoPlugin está ativoPolandPoland ZlotyPortugalPostagensPostagens deste tipo de postagem serão mostradas na seleção.Módulos Poderosos (**)Privativo: Eu gostaria que meu site aparecesse nos motores de busca, e em listagens públicas acerca desta rede de serviço.Widget de Login Profile BuilderRegistro do Profile BuilderPuerto RicoQatarQatar RiyalRadio ButtonsAleatório (muito lento em bases de dados > 10 mil usuários)Plugins RecomendadosRecuperar PasswordRedirecionaRedirecionamento Padrão de Formulários e Páginas WordPressPáginas e Formulários padrão de redirecionamento do WordPressTipo de DirecionamentoURL de DirecionamentoRegistrarRegistro ( wp-login.php?action=register )Registre a versãoRegistre sua versãoULR da página de registro (opcional):RegistradoRegistroRegistro & Edição de PerfilData do registroFormulário de RegistroFormulários de RegistroRegistro com aprovação do adminRegistro com confirmação de emailLembre-se porém que a combinação de campo-valor deve existir na base de dados.RemoverRemove todos os FiltrosRepita o PasswordCampos repetitivos salvos!Grupo de repetição de camposRepetidor de FieldsResponder paraRepublic of the CongoObrigatórioRequerido formato do número de telefone:Reenviar o email de ativaçãoRedefinir ChaveRedefinir linkResetar PasswordRedefinir UrlConteúdo RestritoRestrinjir a listagem de usuários para apenas as funções selecionadas
            Se não especificado, o padrão são todas as funções existentesInstale novamenteReunionFunçãoFunções para mostrarRomaniaRomania New LeuContagem de linhasRussiaRussia RubleRussian FederationRwandaSaint BarthelemySaint HelenaSaint Helena PoundSaint Helena, __( Ascension and Tristan da CunhaSaint Kitts and NevisSaint LuciaSaint MartinSaint Martin (French part)Saint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaudi Arabia RiyalSalvarSalvar AlteraçõesSalvar ConfiguraçõesSalvar a ordem das funções das caixas de seleçãoBuscarBuscar CamposPesquisar LocalizaçãoConfigurações de PesquisaPesquisar UsuáriosBuscar usuários por todos os camposBuscar todos os camposBuscar os formulários de edição de perfilBuscar os formulários de registroBuscar a listagem de usuáriosChave secretaSelectSelecionar TudoSelecionar ArquivoSelecione uma função de usuário.Selecione quais funções de usuário para ativar a Aprovação de Administrador.Selecione qual formulário do Construtor de Perfil a mostrar reCAPTCHASelecione qual formulário padrão WP será mostrado o reCAPTCHAEscolha que funções mostrar ao usuário ( arrastar e soltar para reordenar )Escolhendo "Sim" você adicionará o campo à lista, mas irá sobrescrever qualquer outro campo na base de dados que tenha o mesmo meta-name
            Use por seu próprio riscoEnviar essas credenciais via email.SenegalSerbiaSerbia DinarAjustar FunçãoDefina uma mensagem de erro personalizada que será mostrada para o usuário.Ajusta o tamanho do avatar apenas na listagem de todos os usuáriosDefina o tamanho do avatar na entrada única de usuárioDefina o critério de ordenação padrão
            Isso pode ser temporariamente mudado para cada nova sessãoDefina a ordem padrão de ordenação
            Isso pode ser mudado temporariamente durante cada nova sessãoSelecione o numero de usuário para ser mostrado em cada parte paginada de todas as listas de usuários.Defina um grupo de repetição de campos no registro e formulários de edição de perfil. Limite o número de grupos de repetição para cada função de usuário.Configure múltiplos formulários de registro com diferentes campos para funções específicas de usuários. Capture diferentes informações de diferentes tipos de usuários.SeychellesSeychelles RupeeCompartilhe um pouco de sua informação biográfica para preencher o seu perfil. Isso poderá ser mostrado publicamente.ShortcodeMostrarMostrar tudoMostrar Símbolo de MoedaMostrar Tipo de PostagemMostrar um link alternativo após muitas escolhas. Deixe vazio para todosMostrar todas as datasMostrar/Ocultar a Barra de Admin no siteSierra LeoneData de cadastroSingaporeSingapore DollarTemplate de entrada único usuárioSint MaartenSint Maarten (Dutch part)Chave do siteNome do siteTítulo do SiteSlug da URL do SiteURL do siteSlovakiaSloveniaSolomon IslandsSolomon Islands DollarSomaliaSomalia ShillingAlguém solicitou que o reset do password da seguinte conta:%1$s
            Se isso foi um erro, apenas ignore esse email e nada acontecerá.
            Para resetar seu password, visite o seguinte link:%2$sAlgo ocorreu de errado, não foi possível conectar ao servidor. Por favor tente mais tarde novamente.Alguma coisa está errada. Por favor tente novamente.Desculpe, mas você não tem permissão para fazer isso!Desculpe, você não pode carregar este tipo de arquivo neste campo.Tags sortidasSouth AfricaSouth Africa RandSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainEspecifique a URL da página que os usuários serão redirecionamentos após registrarem-se por esse formulário
            Use o seguinte formato: http://www.meusite.comEspecificar a URL da página que os usuários serão redirecionados após atualizarem seus perfis usando esse formulário
            Use o seguinte formato: http://www.meusite.comEspecique a(s) extensão(ões) que você quer limitar para fazer upload
            Exemplo: .ext1,.ext2,.ext3
            Se não especificado, o padrão são todas as extensões de arquivo permitidas no WordPress (.*)Especifique a(s) extensão(ões) que você quer limitar para fazer upload
            Exemplo: .ext1,.ext2,.ext3
            Se não especificado, o padrão é: .jpg,.jpeg,.gif,.png (.*)Especifique o formato da data quando usando o Datepicker
            Opções válidas: mm/dd/aa, mm/aa/dd, dd/aa/mm, dd/mm/aa, aa/dd/mm, aa/mm/dd, mm-dd-aa, aa-mm-dd, D, dd M aa, D d M a, DD, dd-Mm-a, D, d M aa, @
            Se não especificar, o padrão será mm/dd/aa.Especifique o número de linhas para o campo do tipo "Área de Texto"
            Se não especificado, o padrão são 5Especifique a opção que será marcada por padrão
            Se houver múltiplos valores, separe-os com uma "," (vírgula)Especifique a opção que será selecionada por padrãoEspecifique qual a página que os usuários serão redirecionados quando confirmarem sua conta por email. Essa página pode diferente da página de registro e poderá ser alterada a qualquer momento. Se nenhuma for selecionada, uma página simples de confirmação será apresentada ao usuário.Especifique o formato do tempo.Sri LankaSri Lanka RupeeStatusConfiguração rápida passo a passoPasso de valor 1 para permitir integrantes, 0.1 para permitir integrantes com 1 decimalEdite diretamente os formulários de perfil usando o código %s.Indicador de forçaForteGerenciamento de AssinaturaSudanSurinameSuriname DollarSvalbard and Jan MayenSwazilandSwedenSweden KronaSwitzerlandSwitzerland FrancSyriaSyria PoundSyrian Arab RepublicTaiwanTaiwan New DollarTaiwan, __( Province of ChinaTajikistanTanzaniaTanzania, __( United Republic ofTermos de AcordoÁrea de TextoThailandThailand BahtEsse campo já foi adicionado a esse formulário O meta-name já está sendo usado O usuário já está ativado!A função de "Aprovação do Admin" estava ativada no momento do registro então por favor lembre-se de que precisa aprovar esse usuário antes dele/dela fazer o login!A conta %1s foi criada com sucesso!A melhor forma de criar registros no front-end, editar perfis e formulários de login.O endereço de email não foi encontrado na base de dados!O email digitado não é um endereço válido.O tamanho do avatar digitado não está entre 20 e 200 O tamanho do avatar digitado não é numérico Os passwords digitados não conferem!O número de linha digitado não é numérico O valor digitado para o Selecionador de Datas não está em um formato válido A seguinte opção não coincide com as da lista de opções: %s A(s) seguinte(s) opção(es) não coincide com as da lista de opções: %s A altura do mapa.A latitude a qual o mapa deverá ser mostrado quando não tiver pinos anexados.A longitude a qual o mapa deverá ser mostrado quando não tiver pinos anexados.O número máximo de campos foi alcançado.O nome pode apenas conter letras minúsculas, números, _ , - e sem espaços. O meta-name não pode ser vazio A senha deve ter uma força mínima de %sA senha deve ter um tamanho mínimo de %s caracteresO password digitado está incorreto.Os passwords não conferemA mensagem PopUp para mostrar quando o limite de grupos de repetição for alcançado.A função do usuário criado está definida para regra padrão. Apenas um administrador pode registrar um usuário com a função atribuída a este formulário.A chave secreta do Google, www.google.com/recaptchaO usuário selecionado não pôde ser deletadoOs usuários selecionados foram ativadosOs usuários selecionados tiveram seus emails de ativação reenviadosO número de série não pôde ser validado porque encontra-se expirado!O número de série não pôde ser validado pois o tempo foi esgotado. Isso pode ter acontecido por problemas no servidor. Por favor tente novamente mais tarde!O número de série digitado não pôde ser validado!Seu serial está para expirar em breve!O número de série foi validado com sucesso!O shortcode estará disponível após a publicação desse formulário.A chave do site do Google, www.google.com/recaptchaA entrada de usuário será visível apenas para usuários logadosA entrada de usuário só será visível para as seguintes funçõesO usuário digitado não foi encontrado na base de dados!Os nomes de usuários não podem ser mudados.As senhas de usuários selecionados ao se inscreverHouve um erro no formulário enviadoHouve um erro executando essa ação!Houve um erro na tentativa de ativar o usuárioHouve um erro na tentativa de ativar o usuário.Houve um erro na tentativa de enviar o link de ativação para %1$s!Estes redirecionamentos acontecem após uma ação realizada com sucesso, como registro ou login.Estas configurações também são replicadas na página "Personalizar Email do Administrador" em salvar.Essas configurações também são replicadas na página de configurações do "Customizador de Emails do Usuário" após serem salvas.Esse email já está sendo usado.Esse email está reservado para ser usado em breve.O Campo possui lógica condicional habilitada.Este campo é requeridoEsse formulário está vazio.Esse widget de login permite adicionar um formulário de login na barra lateral.Esta mensagem só é visível para os administradoresEsse usuário já existe.Esse usuário já está ativado!Esse usuário está reservado para ser usado em breve.Este nome de usuário é invalido pois contém caracteres ilegais.Esse usuário está ativo!Isto funciona apenas com formulários frontais. Recomendamos para direcionar para o padrão WP de registro para um Construtor de Perfil usando o módulo de "Redirecionamentos Personalizados"Formato do tempoMarcador de horasSelecionador de Fuso HoráriosTimor-LesteTítulo do campoTítulo:Para ativar seu usuário, por favor clique no seguinte link:

            %s%s%s

            Após sua ativação você irá receber ainda *outro e-mail* com seu login.Para permitir decimais múltiplos use por exemplo 0.01 (para duas casas decimais) e pronto Para permitir que usuários registrem para seu website via Profile Builder, você precisa antes habilitar o registro de usuário. Vá para %1$sConfigurações de Rede%2$s, e sob Configurações de Registro certifique-se de ticar “Contas de usuário podem ser registradas”. %3$sDispensar%4$sPara permitir que usuários registrem para seu website via Profile Builder, você precisa antes habilitar o registro de usuário. Vá para %1$sConfigurações -> Tabela Geral%2$s, e sob Participação certifique-se de ticar “Qualquer um pode registrar”. %3$sDispensar%4$sPara criar uma página contendo os usuários registrados para este site/blog atual, insira o seguinte código em uma página de sua escola: %s.Para usar o reCAPTCHA você deve ter uma chave API dePara usar o reCAPTCHA você deve ter uma chave API pública de:TogoTokelauTongaTrinidad and TobagoTrinidad and Tobago DollarTunisiaTurkeyTurkey LiraTurkmenistanTurks and Caicos IslandsTuvaluTuvalu DollarDigite seu password novamente.Digite seu password.U.S. Virgin IslandsURLUS DollarUgandaUganda ShillingUkraineUkraine HryvnaReprovarReprovadoNotificação de usuário reprovadoUnited Arab EmiratesUnited KingdomUnited Kingdom PoundUnited StatesUnited States Minor Outlying IslandsAtualizarAtualize Profile BuilderUpload UruguayUruguay PesoUse esses shortcodes nas páginas que você quer que o formulário seja mostrado:Use esta conjunção com funções WordPress para mostrar o valor na página de sua escolha
            Auto completada mas editável em alguns casos (em quais casos devem ser únicos)
            Mudando isto pode levar muito tempo no caso de uma conta de usuário muito grandeUse esse shortcode na página que deseja que o formulário seja mostrado:Notificação de aprovação de usuárioConta de UsuárioCustomizador do Email do UsuárioTags dos campos de UsuárioID de UsuárioID de Usuário / Nome de UsuárioNome ou ID de UsuárioID do usuárioListagem de usuáriosMeta UserNicename do usuárioFunção de UsuárioDirecionamento baseado em funções de usuárioFunções de UsuárioOrdem das Funções de Usuário Usuário não encontradoUsuário aprovado com sucesso!Usuário deletado com sucesso!Usuário reprovado com sucesso!Usuário para editar:Função do UsuárioStatus do usuárioConfigurações da entrada de usuárioUsuárioNome e EmailUsuário ou E-mailNome ou EmailNomes de usuários não podem ser mudados.Usuários podem se registrar ou você pode criá-los manualmente aqui.Usuários não podem atualmente se registrarem, mas você pode criá-los manualmente aqui.Usuários aprovados com sucesso!Usuários deletados com sucesso!Usuários reprovados com sucesso!Usuários com endereço de email não confirmadosUzbekistanUzbekistan SomEtiquetas válidas {{reply_to}} e {{site_name}}ValidaçãoValor deve ser um múltiplo de %1$sValor deve ser maior ou igual a %1$sValor deve ser menor ou igual a %1$sVanuatuVaticanVenezuelaVenezuela BolivarVenezuela, __( Bolivarian Republic ofVersão %sMuito FracoMuito fracoViet NamViet Nam DongVietnamVisão do MapaVisualizar todos os parâmetros extras de shortcodeVisualiza o formulário de edição de perfilVisualizar o formulário de registroVisualizar a Listagem de UsuáriosVirgin Islands, __( BritishVirgin Islands, __( U.S.VisibilidadeEscolhas visíveisVisível somente para usuários logados?Visível às seguintes FunçõesWallis and FutunaFracoWebsiteBem vindo a(o) %1$s!


            Seu nome de usuário é:%2$sBemvindo ao %1$s!


            Seu usuário é::%2$s e password:%3$sWestern SaharaSe o símbolo monetário deve aparecer após o nome de moeda na opção de selecionar.Se o campo é obrigatório ou nãoSe realizar automaticamente o login do usuário recém registrado ou não
            Funciona apenas em single-sites sem as funções de "Aprovação do Admin" e "Confirmação de Email" ativadas
            CUIDADO: Usar o cache do formulário de registro fará o login automático não funcionarSe redireciona o usuário para uma página específica ou nãoQual direcionamento acontece depende da seguindo prioridade :Com os campos extra de perfil você pode criar o formulário de registro exatamente como precisa.Com o Construtor de Perfil Pro v2, você pode exibir diferentes campos nos formulários de registro e edição de perfil, usando o módulo Múltiplos Registro e Editar Formulários de Perfil.Com o novo Campo de Assinaturas no Construtor de Perfil, seus formulários de registro serão permitidos a seus usuários se inscrever em contas pagas.Com estes você pode direcionar vários formulários e páginas WordPress para páginas criadas com o construtor de perfil.Yahoo IMYemenYemen RialSimSim, eu gostaria de criar um novo siteYimVocê já está conectado. Você pode mudar sua senha no formulário Editar Perfil.Você está logado como %1$s. %2$sVocê já está logado como %1s. Você não precisa de outra conta. %2sVocê entrou como %s.Você não está permitido a fazer isso.Você pode adicionar a informação para %s depois de adicionar uma entradaVocê pode usar valores substitutos para especificar o número legal de intervalos (ex. valor substituto 2 irá permitir apenas -4, -2, 0, 2 e etc.)Você pode encontrar uma lista com os emails não confirmados em %1$sUsers > Todos Usuários > Confirmação de Email%2$s.Você pode encontrar uma lista dos usuários em %1$sUsers > Todos Usuários > Aprovação do Admin%2$s.Você pode encontrar isso no menu do Profile Builder.Você pode encontrar o arquivo padrão aqui: %1$sVocê pode usar: # para números, parênteses ( ), Sinais de + ou -, ponto . e espaços.Você não pode adicionar direcionamentos duplicados!Você não pode registrar essa função de usuárioVocê decide quem é um usuário em seu site. Receba notificações via email ou aprove múltiplos usuários de uma só vez pela interface do Wordpress.Você decide quem é um usuário em seu website. Seja notificado via email ou aprove múltiplos usuários de uma só vez na interface do Wordpress. Habilite a aprovação do admin fazendo o upgrade para a versão %1$sHobbyist ou PRO%2$s.Você não tem permissão para esta lista de usuários.Você não tem a função requerida de usuário para ver esta lista de usuários.Você não tem nenhuma configuração de paginação nessa listagem de usuários!Houve um erro ou então você não tem permissão para essa ação!Você resetou com sucesso o password de: %1$sVocê deve estar logado para editar seu perfil.Você precisa entrar com um endereço de e-mail válido.Você deve digitar um valor para o formato de data Você deve digitar um valor para o número de linha Você precisa entrar a chave secreta Voce precisa entrar com a chave do site Você deve selecionar um campo Você precisa ativar a função de Listagem de Usuários dentro da aba "Módulos"!Você precisa especificar o título do formulário antes de criá-loVocê usa as seguintes tags em seus URL's para direcionar usuários para várias páginas.Você receberá um link para criar um novo password via email.Você será redirecionado automaticamente em instantes. Se você visualizar essa página por mais de %1$d segundos, por favor clique %2$s.%3$sSua conta foi criada com sucesso!Sua conta deve ser confirmada por um administrador antes de você se conectar.Sua conta precisa ser confirmada pelo administrador antes de você poder usar a função de "Recuperação de Password"Sua conta precisa ser confirmada pelo administrador antes de você poder usar a função de "Resetar Password"Sua conta em %1$s foi aprovada!Sua conta em %1$s foi reprovada!Sua conta no {{site_name}} foi aprovada!Sua conta no {{site_name}} foi reprovada!Seu email foi confirmado com sucesso.Seu password foi alterado com sucesso!Seu perfil foi atualizado com sucesso!Sua senha selecionada ao registrarSua sessão expirou! Por favor atualize a página e tente novamenteSua sessão expirou! Por favor atualize a página e tente novamente.A URL de seu site ficará assim:
            ZambiaZimbabweZimbabwe Dollar[%1$s] Ativar %2$s[%1$s] Informações de sua nova conta[{{site_name}}] Ativar {{username}}[{{site_name}}] Aviso de Alteração de E-mail[{{site_name}}] Redefinição de senhaSenha alterada com sucessoaprovar esse usuário?aprovadoconfirma esse seu email?deletar esse usuário da tabela _signups?deletar esse usuário?mostrar todos os usuários exceto aqueles para os quais você especificou o user_idmostrar somente os usuários para os quais você especificou o user_idmostra usuários que tem algum meta-value dentro de um determinado meta-field (extra)e-mailgerar uma URL da página inicial atual de seu site.aquino WordPress a URL do site pode ser diferente do url da homereCAPTCHAobrigatórioreenviar o link de atiavação?mostrarA ID do Usuárioa URL da página visitada anteriormenteA versão Limpa da URL do nome de usuário, o nome gentil do usuário pode ser usada com segurança em URL's desde que não contenha espaços e caracteres especiais.reprovar esse usuário?reprovadonome de usuárionome ou emailtranslation/profile-builder-nl_NL.mo000066600000322235152141651160013540 0ustar00& M Ml MyzMcMXNc-OOPQCZRR;!S]SKmSCS[SYTuTTT"T+TEU1cU UeU VV )V 4VAV2VV V-VOV W W'W5.W#dWWzX{Y!UZwZdZ>Z53[Yi[G[R \c^\!\7\']D]]]]]UP^^^^^^^ ^ _ __-_E6_|______!`#>`b`s`{``````*` aa)a g EgQg og gg gggggg ghhh*hGvAQvvvvv vv w w=w Ew Sw ^wjwsw wwwAwwx0x/Lx0|xxx/x.x1$yVy_yry yyyyyy yyzz zzzzz{{${7{J{ P{ \{h{sz{{ {|| &|4|!D|1f||Q|}O}?d}}N~~eW\_q y b $3FU>e ʂ Ղ! 2r@ ă Ճ  % 4>?Z ÄԄ3 $0FL Sar Dž Ӆ݅   &0 8C HRdm|    !ʆI6;Yb s} ć҇։ ܉ ӊ݊ % =J\ ak  ɋ ϋۋ  %2 9DU )E\c ju Ӎݍ :!Z|  Ŏˎڎ 5JRbz<Y2` Ő ːՐ. ~ȑ͑ӑ 8: >I Z e pz;גߒ  # D;U*Փ):BJcjs  Ĕ̔ Ԕߔ>*_iɕѕ֕  )5 R`v C *39 AOTW$r$ח 1CH Wc| #4pZas =()2 F R] w3šњך +4EN&g.ۛ w Ɯ ̜ٜ283N^&#,,Kx,8%:T!q#ȟ ϟܟ:5fKϠ  0EYj*s* ɡ ס)(> \ gt Ǣ$M [buạ̃ " ,7 FPja ̤ڤ  !.AH Yf0y ̥٥ / 5@ Vcv { @A7V  çЧ9 Q\ c nz5:Ĩ5^5y:zI/y!8@ GT>]/2̬YVYV~ ]0̯ $?3s( Űϰ  # , 6 AOXajzQ'ղ07. f p}, ȳԳڳc.U xv6& 0:JY`Uy7Ϲ!9?HX oy  Һٺ  >QZ c)q!#.yI73*2^)"(޽@LHOLMI.Pƿ/6:f&J.r%&&L:s;0t*-<p;@;2) \%}(*45,Db`[Zd/) 7N;b.#2<B , 8C S_ryFYM1-5$, 2>Rmu |   +3 B LWt $ EbAX   + 5 CM gr   )<OaD~S4P$o ) "+(2[c ku%  #3Nd  4FD]$Ig6Z9X$dKf(1 7B"FiQm)G#1U<u{b.K,( N3""yB2>7;vG2+-%Y+*K+<wK;r<+Kh'e')0H2y&,+ ,?M@&#*%N&t+)I@[:N&0,]b##G` &z rqho>RPCN<3 pB~<[%Z!,!!CgWI 3 70EPv ,(8,$' 3eLP?qCLUdX"?' H k^{  0 8BR%cE'% !2#T x#,18L Sax4 $ 9 FTjz"")&$) 9 C Q[ l%^UD ?UCgA6$ -  5  ? K  _  j  v +      /    ' 3  F 4R    ' &  #  2 !S u              Z- r  m{     $3:CS[jy < "- P$q)   #!3Umu      t   ;"=-` FC8W'<2)B'l^~ =><@}   .>Vn#   &u+f  &5 ;FOa(~ R - : GRd~9 7E`{ I?]${   + 5CR gsN!!%-G+u =>;0 lv'        $ #!:!U!h!!!! ! !!! s" """""3"B #M#]i##h#MH$$Z%&x&kR'#'(( ( )) $)/)t5) ))))) *A*[* w* * **** **r+ x++ ++ +++ ++ +",K$,p, ,, ,,,C, -#-A-H-P-a-x- - ---- - --.".1. J. W.b. k.w. }.. ....... .. . /D$/ i/t/ // /// ////00~0t1 G2T2l2 s2%22 3333334+4F4 L4!W4y444 4444 444444 4 5 5 5 )555G55 556(6C6Y6a6 j6u666"66 66 6 66 6 77$17$V7{77777777778 8 /8987I8 8888 888+9 9999: ':2: 9:E:4W: ::A; I;T; h;r;x;#;;1; ;;< < $< 1<<<N<Cc<< <#< << < <$ =0=CE=+====*>3> <>G>a> i>t> > >> > >>>> >>+> *?OK?m? @@@ +@5@F@^@e@ l@ z@@@@@@AAO,A|A AA AAAAAA&A6 B#@B3dBB,BBBC.C4C DCQC gCrC$C3CtCQDYDoDDD DED6D-E5E LEYEpE EEE8E EEFF-FCFKFZF oFyF F!F+F$F$ G(/G1XGGG%H +H 5HAHRHbH tH5~H7H9H^&I%I$I+I,I)J*FJ8qJ)JJJJ"K$;K`KrK yK K K KBKKjLkLL LL L L<LM$M;M?JM?MMM M-N.NBN#XN|N NNNNN&N"OOBO OOOOOPP%P 6P"APdPPPPPPPQQQQ QQ QQQRR#R 5RBR0TRR R RRRR S SS5SESZScSxS%SWS$ TU1T]TT T TUU (UIU"[U!~UUU UUUUBV<_V9VpVGW~X}X]YaY+ZIZRZ[ZjZAyZ1Z2Zf [f[X[G\\ ]]Z]^ ^ *^8^I^ `^k^ r^}^^E^^/^ ,_:_ I_T_f_ ___ ___ _ ` ``(` A`K`^`g^a+a*a<b Zb hbub/b b bbbcUdeeifHg<gh&i Jq&q#qVq+rvr6@s-wsKsBs4t8t)u+0uE\uvuAv?[v>v-v8w)Aw.kwAw?wRxdoxpxzEy%y9y5 zVzmzGz0z#z*"{>M{G{"{{ | || |}}}P}~2=GGMV]cw   ہ +H MX` r}  "ǂ2& Yd } K K#Bfy ܅ 0O*^φ,;Mk{.؇Uh]ƈ߈. =J+[ '/0 $ 2='P x   '̊#";Vs,"܋9 OZO! K/{FLێu(a||  #/$3XQ]*Hڒ#<DSx6d3.HUw*͕+$Ė;IC2Ev20( 2I/|$$љJF^_KuQ$ǛWqDx#/!S,u*͝8#@\Aߞ "#9']2-- 0!=2_WKOS 4{#Т$  #'KR'jI cn~

            Good News!

            An administrator has just approved your account: {{username}} on {{site_name}}.

            Hello,

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            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!

            Someone requested that the password be reset for the following account: {{site_name}}
            Username: {{username}}

            If this was a mistake, just ignore this email and nothing will happen.

            To reset your password, visit the following address:
            {{{reset_link}}}

            To activate your user, please click the following link:
            {{{activation_link}}}

            After you activate, you will receive another email with your credentials.

            You have successfully reset your password to: {{password}}

            {{username}} has requested a password change via the password reset feature.

            His/her new password is: {{password}}

            * only available in the %1$sHobbyist and Pro versions%2$s. Serial Number: Your serial number is about to expire, please %1$s Renew Your License%2$s. Your serial number is expired, please %1$s Renew Your License%2$s. is also activated. You need to deactivate it before activating this version of the plugin."Admin Approval" Activated:"Admin Approval" Feature:"Admin Approval" on User Role:"Email Confirmation" Activated:"Email Confirmation" Landing Page:"Email" - users can Log In only with Email."Username and Email" - users can Log In with both Username and Email."Username" - users can Log In only with Username.%1$s %2$d%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s%1$s of %2$s%s couldn't be deleted%s pending« Prev«« First(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(no title)** only available in the %1$sPro version%2$s.. Extra Field Types are available in Hobbyist or PRO versions.... Choose...Choose1 item

            Also, you will be able to visit your site at

            You can visit your site at

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            Your Profile Builder serial number is invalid or missing.
            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

            Redirect
            URL
            Title (Type)
            Title
            Type
            Meta Name
            Required
            User ID / Username
            Redirect
            URL
            User Role
            Redirect
            URL
            Note: changing the form title also changes the shortcode!ERROR: The password must have a minimum strength of %sERROR: The password must have the minimum length of %s charactersERROR: Your account has to be confirmed by an administrator before you can log in.Profile Builder A new account has been created for you on {{site_name}}A new subscriber has (been) registered!A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be editedAIMAbout YourselfAccept user payments, create subscription plans and restrict content on your membership site.Accept user payments, create subscription plans and restrict content on your website.Account ManagementActivateActivation KeyActivation LinkActivation UrlActiveAdd EntryAdd FieldAdd NewAdd New Field to the ListAdd UserAdd a number from 0 to 19. The higher the number the higher the zoom.Add new Edit-profile FormAdd new Registration FormAdd new User ListingAdd your HTML (or text) contentAdd-On has been activatedAdd-On has been deactivated.Add-On is activeAdd-On is inactiveAdd-On is ActiveAdd-OnsAddressAddress line 2Admin ApprovalAdmin Approval (*)Admin Bar SettingsAdmin Email CustomizerAdmin Notification for User Password ResetAfghanistanAfghanistan AfghaniAfter Edit ProfileAfter LoginAfter LogoutAfter Profile Update...After RegistrationAfter Registration...After Successful Email ConfirmationAfter Successful Password ResetAfter login redirect URL (optional):Agree To Terms CheckboxAimAland IslandsAlbaniaAlbania LekAlgeriaAll UsersAll users have been successfully deletedAll-userlisting TemplateAllow Users to Log in With:Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.Allow users to log in with their email or username when accessing your site.Allow users to recover their password in the front-end using the %s.Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$sAllowable ValuesAllowed Image ExtensionsAllowed Upload ExtensionsAllowed time to display any success messages (in seconds)American SamoaAn administrator has just approved your account on %1$s (%2$s).An administrator has just unapproved your account on %1$s (%2$s).An error occurred, please try again later.AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApplyApproveApprovedAre you sure you want to delete this?ArgentinaArgentina PesoArmeniaArubaAruba GuilderAs an administrator you cannot change your role.AscendingAustraliaAustralia DollarAustriaAuthor Archive ( http://sitename.com/author/admin )Automatically Log InAvailable TagsAvailable in All VersionsAvailable in Hobbyist and Pro VersionsAvailable tags for dynamic URLsAvatarAvatar SizeAvatar Size (All-userlisting)Avatar Size (Single-userlisting)Avatar UploadAvatar or GravatarAzerbaijanAzerbaijan New ManatBackBahamasBahamas DollarBahrainBangladeshBangladeshi takaBarbadosBarbados DollarBasic InformationBeautiful registration forms fully customizable using the %s shortcode.Before you can access your account %1s, an administrator has to approve it. You will be notified via email.Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.Before you can access your account, an administrator needs to approve it. You will be notified via email.BehaviourBelarusBelarus RubleBelgiumBelizeBelize DollarBeninBermudaBermuda DollarBhutanBilling AddressBilling FieldsBilling Fields NameBilling Fields OrderBiographical InfoBlog DetailsBlog Details - only appears on the Registration page!Blog URLBoliviaBolivia BolivianoBolivia, __( Plurinational State ofBonaire, Saint Eustatius and SabaBonaire, __( Sint Eustatius and SabaBosnia and HerzegovinaBosnia and Herzegovina Convertible MarkaBoth fields are empty.BotswanaBotswana PulaBouvet IslandBrazilBrazil RealBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBrunei DarussalamBrunei Darussalam DollarBulgariaBulgaria LevBulk ActionsBurkina FasoBurundiCabo VerdeCambodiaCambodia RielCameroonCan contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}CanadaCanada DollarCancelCape VerdeCayman IslandsCayman Islands DollarCentral African RepublicChadChange heading field size on front-end formsChanged Email Address NotificationCheck your e-mail for the confirmation link.CheckboxChileChile PesoChinaChina Yuan RenminbiChoose Edit Profile form to display on My Account page:Choose Register form to display on My Account page:Choose how multiple selections affect the resultsChoose one of the supported field typesChoose one of the supported fields you manage install manually.Could not install plugin. Retry or install manually.CountryCountry SelectCroatiaCroatia KunaCubaCuba PesoCuracaoCurrency SelectCustom RedirectsCustomize Your Forms The Way You Want (*)CyprusCzech RepublicCzech Republic KorunaDashboard (redirect users from accessing the dashboard)Date-formatDatepickerDeactivateDefaultDefault ContentDefault Edit ProfileDefault LatitudeDefault LongitudeDefault OptionDefault Option(s)Default RegisterDefault RegistrationDefault Registration & Registration with Email ConfirmationDefault RoleDefault Sorting CriteriaDefault Sorting OrderDefault ValueDefault WP LoginDefault WP Recover PasswordDefault WP RegisterDefault Zoom LevelDefault limit for this repeater group.
            Leave 0 for unlimited.Default option of the fieldDefault value of the fieldDefault value of the textareaDeleteDelete allDelete all itemsDelete this itemDemocratic Republic of the CongoDenmarkDenmark KroneDescendingDescriptionDisabledDisplay MessagesDisplay NameDisplay name asDisplay name publicly asDisplay name publicly as - only appears on the Edit Profile page!Display on PB formsDisplay on WooCommerce CheckoutDisplay on default WP formsDisplays customer billing fields in front-end. Displays customer shipping fields in front-end. DjiboutiDo you want toDo you want to bulk approve the selected users?Do you want to bulk delete the selected users?Do you want to bulk unapprove the selected users?DominicaDominican RepublicDominican Republic PesoDownload NowDownloading and installing...E-mailERRORERROR:East Caribbean DollarEast TimorEasy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings.EcuadorEditEdit ProfileEdit field groupEdit the Edit-profile FormsEdit the Registration FormsEdit the User ListingEdit this itemEdit-profile FormEdit-profile FormsEg. (###) ###-####EgyptEgypt PoundEl SalvadorEl Salvador ColonEliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.EmailEmail AddressEmail ConfirmationEmail CustomizerEmail SubjectEmail TemplatesEmail notification resent to userEmpty field won't check for correct phone number.Enable extra featuresEnable limit to the number of fields to be generated by users in front end forms Enable your modulesEnter a (detailed) description of the option for end users to read
            OptionalEnter a comma separated list of labels
            Visible for the userEnter 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.Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophesEnter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100Enter the minimum characters the password should have. Leave empty for no minimum limitEnter your Google Maps API key ( Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used.Equatorial GuineaEritreaError MessageEstoniaEstonia KroonEthiopiaEuroEverything you will need to manage your users is probably already available using the Pro Modules.Example:Excerpt ViewExisting PagesExpand the resultsExtra FeaturesExtra FunctionsExtra Profile Fields are available in Hobbyist or PRO versionsExtra shortcode parametersFacet MetaFacet TypeFaceted MenusFalkland IslandsFalkland Islands (Malvinas)Falkland Islands (Malvinas) PoundFaroe IslandsFeatures that give you more control over your users, increased security and help you fight user registration spam.FieldField NameField PropertiesField TitleFijiFiji DollarFind out more about PRO ModulesFinlandFirst NameFirst/LastnameFirstnameFor Modern User InteractionFor security reasons, you must pass the remote ip to reCAPTCHA!Form ShortcodeFranceFreeFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriction-less login using %s shortcode or a widget.From (name)From (reply-to email)GabonGambiaGeneral LimitGeneral SettingsGeneric UploadsGeorgiaGermanyGet New PasswordGet started with extra fieldsGhanaGhana CedisGibraltarGibraltar PoundGlobal RedirectsGo Back LinkGoogle Maps API KeyGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuatemala QuetzalGuernseyGuernsey PoundGuineaGuinea-BissauGuyanaGuyana DollarHTMLHTML ContentHaitiHeading TagHeard Island and McDonald IslandsHere you can activate / deactivate available modules for Profile Builder.HideHoly See (Vatican City State)HondurasHonduras LempiraHong KongHong Kong DollarHow does this work?HungaryHungary ForintIDIcelandIceland KronaIf you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules.InactiveIncorrect phone numberIndiaIndia RupeeIndividual User RedirectsIndividual redirects defined in shortcodes; redirect_priority="top" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects.IndonesiaIndonesia RupiahInput / Hidden InputInstall NowInstallation completeInvalid activation key!Invalid key!Invalid username.IranIran RialIran, __( Islamic Republic ofIraqIrelandIsle of ManIsle of Man PoundIsraelIsrael ShekelItalyIvory CoastJabberJabber / Google TalkJamaicaJamaica DollarJapanJapan YenJerseyJersey PoundJordanKazakhstanKazakhstan TengeKeep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.KenyaKiribatiKorea (North) WonKorea (South) WonKorea, __( Democratic Peoples Republic ofKorea, __( Republic ofKosovoKuwaitKyrgyzstanKyrgyzstan SomLabelLabelsLao Peoples Democratic RepublicLaosLaos KipLast »»Last NameLastnameLatviaLatvia LatLearn MoreLeave 0 for unlimited.Leave it empty for no max valueLeave it empty for no min valueLeave it empty for no restrictionLebanonLebanon PoundLesothoLiberiaLiberia DollarLibyaLiechtensteinLimitLimit per RoleLimit reached messageList ViewLithuaniaLithuania LitasLoad Profile Builder's own CSS file in the front-end:Log outLog out »Log out of this accountLog out of this account.LoginLogin ( wp_login.php )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 )Login with Email or UsernameLogoutLost Password ( wp-login.php?action=lostpassword )Lost your passwordLost your password?LuxembourgMacaoMacedoniaMacedonia DenarMacedonia, __( the former Yugoslav Republic ofMadagascarMake sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.MalawiMalaysiaMalaysia RinggitMaldivesMaliMaltaManage Default and Extra FieldsManage FieldsManage field or group of fields that will be repeatable.MapMap HeightMarshall IslandsMartiniqueMauritaniaMauritiusMauritius RupeeMax Number ValueMax allowed number value (0 to allow only negative numbers)MayotteMediumMember ManagementMeta-nameMexicoMexico PesoMicronesiaMicronesia, __( Federated States ofMin Number ValueMin allowed number value (0 to allow only positive numbers)Minimum Password Length and Strength MeterMinimum Password Length:Minimum Password Strength:Minimum length of %d charactersMinimum required Profile Builder version:ModulesMoldovaMoldova, __( Republic ofMonacoMongoliaMongolia TughrikMontenegroMontserratMoreMore DetailsMore InfoMore Info UrlMore...MoroccoMozambiqueMozambique MeticalMultiple Edit-profile FormsMultiple Registration FormsMultiple Registration and Edit Profile form settings RedirectsMust be a valid email address or the tag {{reply_to}} which defaults to the administrator emailMyanmarNameName/DescriptionNamibiaNamibia DollarNarrow the resultsNauruNepalNepal RupeeNetherlandsNetherlands Antilles GuilderNew CaledoniaNew Edit-profile FormNew Registration FormNew User ListingNew ZealandNew Zealand DollarNew subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            Next » NicaraguaNicaragua CordobaNicknameNigerNigeriaNigeria NairaNiueNoNo Edit-profile Form foundNo Edit-profile Forms found in trashNo Registration Form foundNo Registration Forms found in trashNo User Listing foundNo User Listing found in trashNo items found.No options availableNo results found!NoneNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNorway KroneNot compatible with Profile BuilderNot compatible with your version of Profile Builder.Now that you acquired a copy of %s, you should take the time and register it with the serial number you receivedNumberNumber Step ValueNumber of PostsNumber of Users/PageOmanOman RialOnly administrators can see this field on edit profile forms.Only an administrator can add new users.OptionsOverwrite ExistingPB LoginPB Recover PasswordPB RegisterPaginationPaid & Free SubscriptionsPaid AccountsPaid Member Subscriptions - a free WordPress pluginPakistanPakistan RupeePalauPalestine, __( State ofPalestinian TerritoryPanamaPanama BalboaPapua New GuineaParaguayParaguay GuaraniPasswordPassword Lost and Found.Password Recovery page URL (optional):Password Reset EmailPassword Reset Success EmailPassword Reset from "%1$s"Password Successfully Reset for %1$s on "%2$s"Payment ManagementPersonalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.PeruPeru Nuevo SolPhilippinesPhilippines PesoPhonePhone FormatPitcairnPlease add the Google Maps API key for this field.Please check that you entered the correct email address.Please check that you entered the correct username.Please choose a different field type as this one already exists in your form (must be unique) Please enter a (valid) reCAPTCHA valuePlease enter a unique field title. Please enter a valid username.Please enter a value for the required field Please enter numbers onlyPlease enter your username or email address.Please select and enter the ID or username of your user.Please select at least one user role Please try a different one!Plugin has been activatedPlugin has been deactivated.Plugin is activePlugin is inactivePlugin is ActivePolandPoland ZlotyPortugalPostcode / ZipPostsPosts from what post type will be displayed in the select.Powerful Modules (**)Privacy: I would like my site to appear in search engines, and in public listings around this network.Profile Builder Login WidgetProfile Builder RegisterPuerto RicoQatarQatar RiyalRadio ButtonsRandom (very slow on large databases > 10K user)Recommended PluginsRecover PasswordRedirectRedirect Default WordPress Forms and PagesRedirect Default WordPress forms and pagesRedirect TypeRedirect URLRegisterRegister ( wp-login.php?action=register )Register VersionRegister Your VersionRegister page URL (optional):RegisteredRegistrationRegistration & Edit ProfileRegistration DateRegistration FormRegistration FormsRegistration with Admin ApprovalRegistration with Email ConfirmationRemember though, that the field-value combination must exist in the database.RemoveRemove All FiltersRepeat PasswordRepeatable fields saved!Repeated field groupRepeater FieldsReply ToRepublic of the CongoRequiredRequired phone number format: Resend Activation EmailReset KeyReset LinkReset PasswordReset UrlRestrict ContentRestrict the userlisting to these selected roles only
            If not specified, defaults to all existing rolesRetry InstallReunionRoleRoles to DisplayRomaniaRomania New LeuRow CountRussiaRussia RubleRussian FederationRwandaSaint BarthelemySaint HelenaSaint Helena PoundSaint Helena, __( Ascension and Tristan da CunhaSaint Kitts and NevisSaint LuciaSaint MartinSaint Martin (French part)Saint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaudi Arabia RiyalSaveSave ChangesSave SettingsSave the billing fields namesSave the billing fields order from the billing fields checkboxesSave the shipping fields namesSave the shipping fields order from the billing fields checkboxesSave the user role order from the user roles checkboxesSearchSearch FieldsSearch LocationSearch SettingsSearch UsersSearch Users by All FieldsSearch all FieldsSearch the Edit-profile FormsSearch the Registration FormsSearch the User ListingSecret KeySelectSelect AllSelect FileSelect a user role.Select on what user roles to activate Admin Approval.Select on which Profile Builder forms to display reCAPTCHASelect on which default WP forms to display reCAPTCHASelect which Profile Builder Edit-profile form to display on My Account page from WooCommerce.Select which Profile Builder Register form to display on My Account page from WooCommerce.
            This will also add the Profile Builder Login form to MyAccount page.Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be requiredSelect which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be requiredSelect which user roles to show to the user ( drag and drop to re-order )Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name
            Use this at your own riskSend these credentials via email.SenegalSerbiaSerbia DinarSet RoleSet a custom error message that will be displayed to the user.Set the avatar size on the all-userlisting onlySet the avatar size on the single-userlisting onlySet the default sorting criteria
            This can temporarily be changed for each new sessionSet the default sorting order
            This can temporarily be changed for each new sessionSet the number of users to be displayed on every paginated part of the all-userlistingSet up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role.Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.SeychellesSeychelles RupeeShare a little biographical information to fill out your profile. This may be shown publicly.Ship to a different address?Shipping AddressShipping FieldsShipping Fields NameShipping Fields OrderShortcodeShowShow AllShow Currency SymbolShow Post TypeShow a toggle link after this many choices. Leave blank for allShow all datesShow/Hide the Admin Bar on the Front-EndSierra LeoneSign-up DateSingaporeSingapore DollarSingle-userlisting TemplateSint MaartenSint Maarten (Dutch part)Site KeySite NameSite TitleSite URL slugSite UrlSlovakiaSloveniaSolomon IslandsSolomon Islands DollarSomaliaSomalia ShillingSomeone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$sSomething went wrong, we could not connect to the server. Please try again later.Something went wrong. Please try again.Sorry, but you don't have permission to do that!Sorry, you cannot upload this file type for this field.Sort TagsSouth AfricaSouth Africa RandSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.comSpecify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.comSpecify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yySpecify the number of rows for a 'Textarea' field
            If not specified, defaults to 5Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)Specify the option which should be selected by defaultSpecify 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.Specify the time format.Sri LankaSri Lanka RupeeState / CountyStatusStep by Step Quick SetupStep value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimalStraight forward edit profile forms using %s shortcode.Strength indicatorStrongSubscription ManagementSudanSurinameSuriname DollarSvalbard and Jan MayenSwazilandSwedenSweden KronaSwitzerlandSwitzerland FrancSyriaSyria PoundSyrian Arab RepublicTaiwanTaiwan New DollarTaiwan, __( Province of ChinaTajikistanTanzaniaTanzania, __( United Republic ofTerms of AgreementTextareaThailandThailand BahtThat field is already added in this form That meta-name is already in use That username is already activated!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!The account %1s has been successfully created!The best way to add front-end registration, edit profile and login forms.The email address entered wasn't found in the database!The email you entered is not a valid email address.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical The entered passwords don't match!The entered row number is not numerical The entered value for the Datepicker is not a valid date-format The following option did not coincide with the ones in the options list: %s The following option(s) did not coincide with the ones in the options list: %s The height of the map.The latitude at which the map should be displayed when no pins are attached.The longitude at which the map should be displayed when no pins are attached.The maximum number of fields has been reached.The meta-name can only contain lowercase letters, numbers, _ , - and no spaces. The meta-name cannot be empty The password must have a minimum strength of %sThe password must have the minimum length of %s charactersThe password you entered is incorrect.The passwords do not matchThe popup message to display when the limit of repeater groups is reached.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.The secret key from Google, www.google.com/recaptchaThe selected user couldn't be deletedThe selected users have been activatedThe selected users have had their activation emails resentThe serial number couldn't be validated because it expired!The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!The serial number entered couldn't be validated!The serial number is about to expire soon!The serial number was successfully validated!The shortcode will be available after you publish this form.The site key from Google, www.google.com/recaptchaThe userlisting will only be visible only to the logged in usersThe userlisting will only be visible to the following rolesThe username entered wasn't found in the database!The usernames cannot be changed.The users selected password at signupThere was an error in the submitted formThere was an error performing that action!There was an error while trying to activate the userThere was an error while trying to activate the user.There was an error while trying to send the activation link to %1$s!These redirects happen after a successful action, like registration or after a successful login.These settings are also replicated in the "Admin Email Customizer" settings-page upon save.These settings are also replicated in the "User Email Customizer" settings-page upon save.This email is already in use.This email is already reserved to be used soon.This field has conditional logic enabled.This field is requiredThis form is empty.This login widget lets you add a login form in the sidebar.This message is only visible by administratorsThis username already exists.This username is already activated!This username is already reserved to be used soon.This username is invalid because it uses illegal characters.This username is now active!This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using "Custom Redirects" module.Time FormatTimepickerTimezone SelectTimor-LesteTitle of the fieldTitle:To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login.To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so onTo 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$sTo allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$sTo create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s.To use reCAPTCHA you must get an API key fromTo use reCAPTCHA you must get an API public key from:TogoTokelauTongaTown / CityTrinidad and TobagoTrinidad and Tobago DollarTunisiaTurkeyTurkey LiraTurkmenistanTurks and Caicos IslandsTuvaluTuvalu DollarType your password again. Type your password.U.S. Virgin IslandsURLUS DollarUgandaUganda ShillingUkraineUkraine HryvnaUnapproveUnapprovedUnapproved User NotificationUnited Arab EmiratesUnited KingdomUnited Kingdom PoundUnited StatesUnited States Minor Outlying IslandsUpdateUpgrade Profile BuilderUpload UruguayUruguay PesoUse these shortcodes on the pages you want the forms to be displayed:Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-countUse this shortcode on the page you want the form to be displayed:User Approval NotificationUser CountUser Email CustomizerUser Fields TagsUser IDUser ID / UsernameUser ID or UsernameUser IdUser ListingUser MetaUser NicenameUser RoleUser Role based RedirectsUser RolesUser Roles OrderUser not foundUser successfully approved!User successfully deleted!User successfully unapproved!User to edit:User-RoleUser-statusUserlisting SettingsUsernameUsername and EmailUsername or E-mailUsername or EmailUsernames cannot be changed.Users can register themselves or you can manually create users here.Users cannot currently register themselves, but you can manually create users here.Users successfully approved!Users successfully deleted!Users successfully unapproved!Users with Unconfirmed Email AddressUzbekistanUzbekistan SomValid tags {{reply_to}} and {{site_name}}ValidationValue must be a multiplier of %1$sValue must be greater than or equal to %1$sValue must be less than or equal to %1$sVanuatuVaticanVenezuelaVenezuela BolivarVenezuela, __( Bolivarian Republic ofVersion %sVery WeakVery weakViet NamViet Nam DongVietnamView MapView all extra shortcode parametersView the Edit-profile FormView the Registration FormView the User ListingVirgin Islands, __( BritishVirgin Islands, __( U.S.VisibilityVisible choicesVisible only to logged in users?Visible to following RolesWallis and FutunaWeakWebsiteWelcome to %1$s!


            Your username is:%2$sWelcome to %1$s!


            Your username is:%2$s and password:%3$sWestern SaharaWhether the currency symbol should be displayed after the currency name in the select option.Whether the field is required or notWhether the field should be added to the WooCommerce checkout form or notWhether to automatically log in the newly registered user or not
            Only works on single-sites without "Admin Approval" and "Email Confirmation" features activated
            WARNING: Caching the registration form will make automatic login not workWhether to redirect the user to a specific page or notWhich redirect happens depends on the following priority:With Extra Profile Fields you can create the exact registration form your project needs.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.With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts.With these you can redirect various WordPress forms and pages to pages created with profile builder.WooCommerce SyncWooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!Yahoo IMYemenYemen RialYesYes, I'd like to create a new siteYimYou are already logged in. You can change your password on the edit profile form.You are currently logged in as %1$s. %2$sYou are currently logged in as %1s. You don't need another account. %2sYou are currently logged in as %s. You are not allowed to do this.You can add the information for the %s after you add a entryYou 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)You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.You can find it in the Profile Builder menu.You can find the default file here: %1$sYou can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces.You can't add duplicate redirects!You cannot register this user roleYou decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.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.You do not have permission to view this user list.You do not have the required user role to view this user list.You don't have any pagination settings on this userlisting!You either don't have permission for that action or there was an error!You have successfully reset your password to: %1$sYou must be logged in to edit your profile.You must enter a valid email address.You must enter a value for the date-format You must enter a value for the row number You must enter the secret key You must enter the site key You must select a field You need to activate the Userlisting feature from within the "Modules" tab!You need to specify the title of the form before creating itYou use the following tags in your URLs to redirect users to various pages.You will receive a link to create a new password via email.You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$sYour account has been successfully created!Your account has to be confirmed by an administrator before you can log in.Your account has to be confirmed by an administrator before you can use the "Password Recovery" feature.Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.Your account on %1$s has been approved!Your account on %1$s has been unapproved!Your account on {{site_name}} has been approved!Your account on {{site_name}} has been unapproved!Your email was successfully confirmed.Your password has been successfully changed!Your profile has been successfully updated!Your selected password at signupYour session has expired! Please refresh the page and try againYour session has expired! Please refresh the page and try again.Your site url will look like this:
            ZambiaZimbabweZimbabwe Dollar[%1$s] Activate %2$s[%1$s] Your new account information[{{site_name}}] Activate {{username}}[{{site_name}}] Notice of Email Change[{{site_name}}] Password Reset[{{site_name}}] Password Reset Successfullyapprove this user?approvedconfirm this email yourself?delete this user from the _signups table?delete this user?displays all users except the ones you specified the user_id fordisplays only the users that you specified the user_id fordisplays users having a certain meta-value within a certain (extra) meta-fieldemailgenerates a url of the current website homepage.herein WordPress the site url can be different then the home urlis not a number.is not a valid phone number.must be a greater than or equal to must be a multiplier of must be less than or equal to reCAPTCHArequiredresend the activation link?showthe ID of the userthe URL of the previously visited pagethe URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces.unapprove this user?unapprovedusernameusername or emailPO-Revision-Date: 2017-05-23 06:43:10+0000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=n != 1; X-Generator: GlotPress/0.1 Project-Id-Version: Profile Builder

            Goed nieuws!

            Een beheerder heeft zojuist uw account goedgekeurd: {{username}} op {{site_name}}.

            Hallo,

            Helaas heeft een beheerder uw account zojuist afgekeurd: {{username}} op {{site_name}}.

            Welkom op {{site_name}}!

            Uw gebruikersnaam is:{{username}} en wachtwoord:{{password}}

            Welkom op {{site_name}}!

            Uw gebruikersnaam is:{{username}} en wachtwoord:{{password}}

            Voordat u toegang krijgt tot uw account moet een beheerder dit goedkeuren. U wordt via e-mail geïnformeerd.

            Nieuwe abonnee op {{site_name}}.

            Gebruikersnaam:{{username}}

            E-mailadres:{{user_email}}

            Nieuwe abonnee op {{site_name}}.

            Gebruikersnaam:{{username}}

            E-mailadres:{{user_email}}

            De functie 'goedkeuring beheerder' is geactiveerd tijdens registratie, vergeet dus niet dat u deze gebruiker moet goedkeuren voordat hij/zij kan inloggen!

            Iemand heeft gevraagd het wachtwoord opnieuw in te stellen voor het volgende account: {{site_name}}
            Gebruikersnaam: {{username}}

            Als dit niet uw bedoeling was, negeer dan gewoon deze e-mail en er wordt niets gewijzigd.

            Om uw wachtwoord opnieuw in te stellen, klikt u op de volgende link:
            {{{reset_link}}}

            Klik op de volgende link om de gebruiker te activeren:
            {{{activation_link}}}

            Na activering zult u nog een e-mail ontvangen met uw aanmeldgegevens.

            U hebt uw wachtwoord opnieuw ingesteld naar: {{password}}

            {{username}} heeft een nieuw wachtwoord aangevraagd via de functie 'Wachtwoord Opnieuw Instellen'.

            Zijn/haar nieuwe wachtwoord is: {{password}}

            * alleen beschikbaar in de %1$sHobbyist- en Pro-versie%2$s.Serienummer:Uw serienummer is bijna verlopen, %1$s Vernieuw uw licentie %2$s.Uw serienummer is verlopen, %1$s Vernieuw uw licentie %2$s.is ook geactiveerd. U moet deze deactiveren voordat u deze versie van de plugin activeert."Goedkeuring beheerder" geactiveerd:"Goedkeuring beheerder" functie:"Goedkeuring Beheerder" voor gebruikersrol:"E-mailbevestiging" geactiveerd:"E-mailbevestiging" startpagina:"E-mailadres" - gebruikers kunnen alleen inloggen met E-mailadres."Gebruikersnaam en E-mailadres" - gebruikers kunnen inloggen met zowel Gebruikersnaam als E-mailadres."Gebruikersnaam" - gebruikers kunnen alleen inloggen met Gebruikersnaam.%1$s %2$d%1$s heeft gevraagd het wachtwoord te wijzigen mbv de functie 'Wachtwoord Opnieuw Instellen'.
            Zijn/haar nieuwe wachtwoord is: %2$s%1$s van %2$s%s kon niet verwijderd worden%s in afwachting« Vorige«« Eerste(v.b. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(geen titel)** alleen beschikbaar in de %1$sPro-versie%2$s.. Extra veldtypes zijn beschikbaar in Hobbyist of PRO versies.... Kies...Kies1 item

            Ook kunt u uw website bezoeken via

            U kunt uw website bezoeken via

            Uw Profile Builder licentie is verlopen.
            %1$sVernieuw uw Licentie%2$s om productdownloads, automatische updates en ondersteuning te blijven ontvangen. %3$sVernieuw nu en krijg 40% %4$s korting. %5$sSluiten%6$s

            Uw Profile Builder licentie verloopt op %5$s.
            %1$sVernieuw uw Licentie%2$s om productdownloads, automatische updates en ondersteuning te blijven ontvangen. %3$sVernieuw nu en krijg 40% korting %4$s %6$sSluiten%7$s

            Uw Profile Builder serienummer is ongeldig of ontbreekt.
            %1$sRegistreer uw exemplaar%2$s om toegang te krijgen tot automatische updates en ondersteuning. Licentiesleutel nodig? %3$sKoop er nu een%4$s

            Doorverwijzen
            URL
            Titel (Type)
            Titel
            Type
            Metanaam
            Verplicht
            Gebruikers-ID / gebruikersnaam
            Doorverwijzen
            URL
            Gebruikersrol
            Doorverwijzen
            URL
            Attentie: als u de formuliertitel wijzigt zal ook de shortcode gewijzigd worden!FOUT: Het wachtwoord moet een minimumsterkte van %s hebbenFOUT: Het wachtwoord moet een minimumlengte van %s karakters hebbenFOUT: Uw account moet bevestigd worden door een beheerder voordat u kunt inloggen.Profile Builder Er is een nieuwe account is voor u aangemaakt op {{site_name}}Er is een nieuw abonnee geregistreerd!Een uniek, automatisch aangemaakt ID voor dit bepaalde veld
            U kunt dit gebruiken in combinatie met filters om dit element indien nodig aan te pakken
            Kan niet bewerkt wordenAIMOver uzelfAccepteer betalingen door gebruikers, maak abonnementsplannen en beperk inhoud op je lidmaatschap website.Accepteer betalingen door gebruikers, maak abonnementsplannen en beperk inhoud op je website.Account ManagementActiverenActiveringssleutelActiverings-linkActiverings-URLActiefVoeg toeVeld toevoegenNieuw toevoegenVoeg een nieuw veld aan de lijst toeGebruiker toevoegenVoer een nummer van 0 tot 19 in. Hoe hoger het nummer hoe meer zoon.Voeg nieuw Profiel bewerkformulier toeNieuw registratieformulier toevoegenNieuwe gebruikerslijst toevoegenVoeg je HTML (of tekst) inhoud toeInvoegtoepassing is geactiveerdInvoegtoepassing is gedeactiveerd.Invoegtoepassing is actiefInvoegtoepassing is niet actiefInvoegtoepassing is ActiefInvoegtoepassingenAdresAdresregel 2Goedkeuring beheerderGoedkeuring beheerder (*)Instellingen beheerdersbalkBeheerders e-mail aanpassenBeheerdersmelding voor Wachtwoord Opnieuw InstellenAfghanistanAfghanistan AfghaniNa Bewerken ProfielNa InloggenNa uitloggenNa profiel update...Na RegistratieNa registratie...Na succesvolle e-mail bevestigingNa succesvolle wachtwoord herstelDoorverwijs-URL na inloggen (optioneel):Akkoord met voorwaarden SelectievakjeAimAland EilandenAlbaniëAlbanië LekAlgerijeAlle gebruikersAlle gebruikers zijn verwijderdSjabloon voor gebruikerslijstSta gebruikers toe in te loggen met:Sta verschillende gebruikersgroepen toe hun specifieke informatie te bewerken. Maak meerdere formulieren voor profielbewerking aan met verschillende velden voor bepaalde gebruikersrollen.Sta gebruikers toe in te loggen met e-mailadres of gebruikersnaam als ze uw website bezoeken.Sta gebruikers toe om wachtwoord in front-end te achterhalen door gebruik van de %s.Sta je gebruikers toe om betaalde accounts met Profile Builder te hebben. %1$sLees meer >%2$s %3$sSluiten%4$sToegestane waardenToegestane afbeeldingsextensiesToegestane uploadextensiesToegestane tijd om succesberichten weer te geven (in seconden)Amerikaans SamoaEen beheerder heeft zojuist uw account goedgekeurd op %1$s (%2$s).Een beheerder heeft zojuist uw account afgekeurd op %1$s (%2$s).Een fout heeft zich voorgedaan, probeer later opnieuwAndorraAngolaAnguillaAntarcticaAntigua en BarbudaToepassenGoedkeurenGoedgekeurdWeet je zeker dat je dit wilt verwijderen?ArgentiniëArgentinië PesoArmeniëArubaAruba GuldenAls een beheerder kunt u uw rol niet wijzigen.OplopendAustraliëAustralië DollarOostenrijkAuteur Archief ( http://sitename.com/author/admin )Automatisch InloggenBeschikbare tagsBeschikbaar in alle versiesBeschikbaar in Hobbyist en Pro VersiesBeschikbare tags voor dynamische URLsAvatarAvatargrootteAvatargrootte (gebruikerslijst)Avatargrootte (gebruikerspagina)Avatar uploadAvatar of gravatarAzerbeidzjanAzerbeidzjan ManatTerugBahamasBahama's DollarBahrainBangladeshBangladesh TakaBarbadosBarbados DollarBasisinformatiePrachtige volledig aan te passen registratieformulieren door gebruik van de %s shortcode.Voordat u toegang krijgt tot uw account %1s, moet een beheerder dit goedkeuren. U wordt geïnformeerd via e-mail.Voordat u toegang krijgt tot uw account %1s, moet u uw e-mailadres bevestigen. Kijk in uw inbox en klik op de activeringslink.Voordat u toegang tot het account hebt, moet een beheerder dit goedkeuren. U wordt geïnformeerd via e-mail.GedragWit RuslandWit Rusland RoebelBelgië BelizeBelize DollarBeninBermudaBermuda DollarBhutanFactuur AdresFactuurveldenNaam factuurveldVolgorde factuurveldenBiografische informatieBlog DetailsBlog Details - worden alleen getoond op Registratie Pagina!Blog URLBoliviaBolivia BolivianoBolivia, __( Plurinationale StaatBonaire, Sint Eustatius en SabaBonaire, __( Sint Eustatius en SabaBosnie en HerzegovinaBosnië en Herzegovina Convertibele MarkBeide velden zijn leeg.BotswanaBotswana PulaBouvet EilandBraziliëBrazilië RealBrits Indische OceaanterritoriumBritse MaagdeneilandenBruneiBrunei DarussalamBrunei Bruneise DollarBulgarijeBulgarije LevBulkactiesBurkina FasoBurundiKaapverdiëCambodjaCambodja RielKameroenKan de volgende dynamische tags bevatten:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}CanadaCanada DollarAnnulerenKaapverdiëKaaimaneilandenKaaimaneilanden DollarCentraal Afrikaanse RepubliekTsjaadVerander grootte van heading veld in front-end formulierenNotificatie gewijzigd e-mailadresControleer uw e-mail voor de bevestingslink.SelectievakjeChiliChili PesoChinaChina Yuan RenminbiKies Profiel bewerkformulier om op Mijn Account pagina weer te geven:Kies registratieformulier om op Mijn Account pagina weer te geven:Kies hoe meerdere selecties het resultaat beïnvloeden.Kies een van de ondersteunde veldtypesKies een van de ondersteunde velden die u beheert installeer handmatig.Kan plugin niet registreren. Probeer opnieuw of installeer manueel.LandLandselectieKroatiëKroatië KunaCubaCuba PesoCuracaoSelecteer valutaAangepaste doorverwijzingenPas de formulieren aan naar uw wens (*)CyprusTsjechiëTsjechië KroonDashboard (gebruikers doorverwijzen om geen toegang tot het dashboard te krijgen)Datum-formaatDatumkiezerDeactiverenStandaardStandaard InhoudStandaard Bewerk ProfielStandaard breedtegraadStandaard lengtegraadStandaardoptieStandaardoptie(s)Standaard registratieStandaardregistratieStandaardregistratie & registratie met e-mailbevestigingStandaardrolStandaard sorteercriteriaStandaard sorteervolgordeStandaardwaardeStandaard WP inloggenStandaard WP wachtwoord herstelStandaard WP registratieStandaard zoom niveauStandaard limiet voor deze herhalingsgroep.
            Laat 0 voor geen limiet.Standaard optie van het veldStandaardwaarde van het veldStandaardwaarde van het tekstgebiedVerwijderenAlles verwijderenAlle items verwijderenDit item verwijderenDemocratische Republiek CongoDenemarkenDenemarken KroonAflopendBeschrijvingUitgeschakeldBerichten weergevenSchermnaamToon naam alsToon de naam publiek alsToon naam publiekelijk als - wordt alleen getoond op de Profiel bewerkpagina!Toon op PB formulierenToon op WooCommerce bestelpaginaToon op standaard WP formulierenLaat klant factuur velden in front-end zien.Laat klant bezorgvelden in front-end zien.DjiboutiWilt uWilt u de geselecteerde gebruikers in één keer goedkeuren?Wilt u de geselecteerde gebruikers in één keer verwijderen?Wilt u de geselecteerde gebruikers in één keer afkeuren?DominicaDominicaanse RepubliekDominicaanse Republiek PesoNu downloadenBezig met downloaden en installeren...E-mailadresFOUTFOUT:Oost Caribische DollarOost TimorEenvoudig te bewerken sjablonen voor gebruikerslijsten en gebruikerspagina's. Op shortcode gebaseerd en met vele opties om de overzichten aan te passen.EcuadorBewerkenProfiel bewerkenBeheer veldgroepBewerk de Profiel bewerkformulierenDe registratieformulieren bewerkenBewerk de gebruikerslijstDit item bewerkenProfiel bewerkformulierProfiel bewerkformulierenVoorbeeld (###) ###-####EgypteEgypte PondEl SalvadorEl Salvador ColonElimineer zwakke wachtwoorden meteen door een minimale wachtwoordlengte in te stellen en een bepaalde wachtwoordsterkte af te dwingen.E-mailadresE-mailadresE-mailbevestigingE-mail aanpassenOnderwerp e-mailE-mail TemplatesE-mail notificatie opnieuw gestuurd naar gebruikerLeeg veld zal geen controle doen voor een correct telefoonnummer.Extra functies inschakelenSchakel limiet in voor aantal velden die gebruikers in front-end formulieren kunnen aanmakenUw modules inschakelenVoer een (gedetailleerde) beschrijving in van de optie, zodat gebruikers die kunnen lezen
            OptioneelVoer een kommagescheiden lijst van labels in
            Zichtbaar voor de gebruikerVoer een kommagescheiden lijst van mogelijke waardes in. Als de waarde die gebruiker tijdens registratie doorgeeft niet overeenkomt met 1 van deze waardes, wordt de gebruiker niet geregistreerd.Voer een kommagescheiden lijst van waardes in
            Dit kan van alles zijn, omdat het verborgen is voor de gebruiker, maar mag geen speciale karakters of apostrofs bevattenVoer een (gedetailleerde) beschrijving in van de algemene voorwaarden, die gebruikers kunnen lezen.
            Links kunnen ingevoerd worden mbv standaard HTML-syntax: <a href="custom_url">custom_text</a>Voer een waarde in (tussen 20 en 200) voor de grootte van de 'Avatar'
            Is standaard 100, indien niet gespecificeerd.Voer het minimaal aantal karakters in die het wachtwoord moet hebben. Laat leeg voor geen minimaal limiet.Voer je Google Maps API sleutel in ( Haal je API sleutel op ). Als er meer dan 1 plattegrond veld aan een formulier toegevoegd is, wordt de API sleutel van de eerste plattegrond gebruikt.Equatoriaal GuineaEritreaFoutmeldingEstlandEstland KroonEthiopiëEuroAlles wat u nodig hebt om uw gebruikers te beheren is waarschijnlijk al beschikbaar bij gebruik van de Pro-modules.Voorbeeld:Samenvatting WeergaveBestaande pagina'sVergroot de resultatenExtra functiesExtra functiesExtra profielvelden zijn beschikbaar in Hobbyist- of Pro-versiesExtra shortcode-parametersFacet MetaFacet TypeFacet menu'sFalklandeilandenFalklandeilanden (Malvinas)Falklandeilanden PondFaeröerFuncties die u meer controle geven over uw gebruikers, de veiligheid verhogen en u helpen tegen spam tijdens gebruikersregistratie.VeldVeldnaamVeldeigenschappenVeldtitelFijiFiji DollarLeer meer over de Pro-modulesFinlandVoornaamVoor-/achternaamVoornaamVoor moderne gebruikersinteractieOm veiligheidsredenen moet u het externe IP adres doorgeven aan reCAPTCHA!Formulier-shortcodeFrankrijkVrijFrans GuyanaFrans Polynesië Franse Zuidelijke GebiedenProbleemloos inloggen door gebruik van %s shortcode of een widget.Van (naam)Van (antwoord-aan-mailadres)GabonGambiaAlgemene limietAlgemene InstellingenAlgemene uploadsGeorgiëDuitslandOntvang een nieuw wachtwoordBeginnen met extra veldenGhanaGhana CediGibraltarGibraltar PondStandaard doorverwijzingenGa Terug LinkGoogle Maps API sleutelGriekenlandGroenlandGrenadaGuadeloupeGuamGuatemalaGuatemala QuetzalGuernseyGuernsey PondGuineaGuinea-BissauGuyanaGuyana DollarHTMLHTML inhoudHaitiHeading TagHeard en McDonaldeilandenHier kunt u alle modules van Profile Builder activeren/deactiveren.VerbergenHeilige Stoel (Vaticaan)HondurasHonduras LempiraHong KongHong Kong DollarHoe werkt het?HongarijeHongarije ForintIDIJslandIJsland KroonAls u %1$s graag gebruikt, wilt u ons dan beoordelen op WordPress.org. Meer tevreden gebruikers betekent meer functies, minder fouten en betere ondersteuning voor iedereen. Als u deze versie van Profile Builder registreert, zult u informatie ontvangen inzake updates, patches en technische support.Als je geïnteresseerd bent in het weergeven van verschillende velden in de registratie- en profiel bewerkingsformulieren, gebruik dan de invoegtoepassing Meerdere Registraties & Profiel Bewerkingsformulieren.Niet actiefOnjuist telefoonnummerIndiaIndia RoepieIndividuele doorverwijzing gebruikerIndividuele doorverwijzingen gedefinieerd in shortcodes; redirect_priority="top" parameter kan aan elke shortcode toegevoegd worden, dan heeft deze shortcode doorverwijzing voorrang op elke andere doorverwijzing.IndonesiëIndonesië RoepiaInvoer / Afgeschermde invoerNu installerenInstallatie gereedOngeldige activeringssleutel!Ongeldige sleutel!Ongeldige gebruikersnaam.IranIran RialIran, __( Islamitische RepubliekIrakIerlandManMan PondIsraelIsrael ShekelItaliëIvoorkustJabberJabber/Google TalkJamaicaJamaica DollarJapanJapan YenJerseyJersey PondJordaniëKazakhstanKazachstan TengeHoud uw gebruikers weg van het WordPress-dashboard, stuur hen door naar de startpagina na inloggen of registratie, alles vereist maar een paar muisklikken.KeniaKiribatiKorea (Noord) WonKorea (Zuid) WonKorea, __( Democratische VolksrepubliekKorea, __( RepubliekKosovoKoeweitKirgiziëKirgizië SomLabelLabelsLaos Democratische VolksrepubliekLaosLaos KipLaatste »»AchternaamAchternaamLetlandLetland LatLees meerLaat 0 voor geen limiet.Laat leeg voor geen maximale waardeLaat leeg voor geen minimale waardeLaat leeg voor geen beperkingLibanonLibanon PoundLesothoLiberiaLiberia DollarLibiëLiechtensteinLimietLimiet per rolBericht bij bereiken limietLijstweergaveLitouwenLitouwen LitasLaad het CSS-bestand van Profile Builder in front-end:UitloggenUitloggen »Uitloggen van dit accountUitloggen van dit account.InloggenInloggen ( wp_login.php )U moet inloggen met het e-mailadres. Dit veld is NIET zichtbaar op de front-end! (u kunt deze instellingen wijzigen op het tabblad "%s")Inloggen met e-mailadres of gebruikersnaamUitloggenWachtwoord vergeten ( wp-login.php?action=lostpassword )Uw wachtwoord verlorenUw wachtwoord vergeten?LuxemburgMacaoMacedoniëMacedonië DenarMacedonië, __( Voormalige Joegoslavische RepubliekMadagascarWees er zeker van dat gebruikers zich met echte e-mailadressen aanmelden. Tijdens registratie zullen gebruikers een bericht ontvangen om hun e-mailadres te bevestigen.MalawiMaleisië Maleisië RinggitMaldivenMaliMaltaStandaard- en extra velden beherenVelden beherenBeheer veld of groep velden die worden herhaald.PlattegrondHoogte plattegrondMarshalleilandenMartiniqueMauritaniëMauritiusMauritius RoepieMax nummer (waarde)Max toegestane nummer (0 om alleen negatieve nummers toe te staan)MayotteGemiddeldBeheer van Geregistereerde KlantenMeta-naamMexicoMexico PesoMicronesiaMicronesia, __( Federale Staten vanMin nummer (waarde)Min toegestane nummer (0 om alleen positieve nummers toe te staan)Minimale Wachtwoordlengte- en SterktemeterMinimale Wachtwoordlengte:Minimale Wachtwoordsterkte:Minimum lengte %d tekensMinimaal vereiste Profile Builder versie:ModulesMoldaviëMoldavië, __( RepubliekMonacoMongoliëMongolië TugrikMontenegroMontserratMeerMeer DetailsMeer InfoMeer Info URLMeer...MarokkoMozambiqueMozambique MeticalMeerdere formulieren voor profielbewerkingMeerdere registratieformulierenMeerdere Registratie en Profiel Bewerkingsformulieren doorverwijs instellingenMoet een geldig e-mailadres zijn of de tag {{reply_to}} die standaard het e-mailadres van de beheerder geeftMyanmarNaamNaam/beschrijvingNamibiëNamibië DollarVerklein de resultatenNauruNepalNepal RoepieNederlandNederlandse Antillen GuldenNieuw CaledoniëNieuw Profiel bewerkformulierNieuw registratieformulierNieuwe gebruikerslijstNieuw ZeelandNieuw Zeeland DollarNieuwe abonnee op %1$s.

            Gebruikersnaam:%2$s
            E-mailadres:%3$s
            Volgende »NicaraguaNicaragua CordobaSchermnaamNigerNigeriaNigeria NairaNiueNeeGeen Profiel bewerkformulier gevondenGeen Profiel bewerkformulieren in prullenbak gevondenGeen registratieformulier gevondenGeen registratieformulieren in prullenbak gevondenGeen gebruikerslijst gevondenGeen gebruikerslijst in prullenbak gevondenGeen items gevonden.Geen opties beschikbaarGeen resultaten gevonden!GeenNorfolk EilandNoord KoreaNoordelijke MarianenNoorwegenNoorwegen KroonNiet compatibel met Profile BuilderNiet compatibel met uw versie van Profile Builder.Nu u een exemplaar hebt van %s, moet u de tijd nemen om het te registreren met het serienummer dat u ontvangen hebtNummerStap waarde (nummer)Aantal berichtenAantal gebruikers per paginaOmanOman RialAlleen beheerders kunnen dit veld op profiel bewerkformulieren zien.Alleen een beheerder kan nieuwe gebruikers toevoegen.OptiesOverschrijf bestaandePB inloggenPB wachtwoord herstelPB registratiePagineringBetaal en gratis abonnementenBetaal AccountsPaid Member Subscriptions - een gratis WordPress pluginPakistanPakistan RoepiePalauPalestina, __( StaatPalestijnse gebiedenPanamaPanama BalboaPapoea Nieuw GuineaParaguayParaguay GuaraniWachtwoordWachtwoord verloren en gevonden.URL Wachtwoord-herstel pagina (optioneel):Wachtwoord Opnieuw Instellen E-mailWachtwoord Opnieuw Ingesteld E-mailWachtwoord Opnieuw Instellen van "%1$s"Wachtwoord opnieuw ingesteld voor %1$s op "%2$s"BetalingsbeheerPersonaliseer alle e-mail die naar de gebruikers of beheerders wordt gestuurd. Na registratie, e-mailbevestiging, goedkeuring/afkeuring.PeruPeru SolFilipijnenFilipijnen PesoTelefoonnummerTelefoon formaatPitcairnVoeg svp de Google Maps API sleutel toe in dit veld.Controleer of u het juiste e-mailadres ingevoerd hebt.Controleer of u de juiste gebruikersnaam ingevoerd hebt.Selecteer a.u.b. een ander veldtype omdat dit al in uw formulier staat (het moet uniek zijn) Vul een (valide) reCAPTCHA waarde inVoer svp een unieke veld titel in. Voer a.u.b. een geldige gebruikersnaam in.Voer een waarde in voor het verplichte veldSvp alleen nummers invoerenVoer uw gebruikersnaam of e-mailadres in.Selecteer svp de ID of gebruikersnaam van je gebruiker.Selecteer minstens één gebruikersrol Probeer een ander!Plugin is geactiveerdPlugin is gedeactiveerdPlugin is actiefPlugin is inactiefPlugin is ActiefPolenPolen ZlotyPortugalPostcodeBerichtenBerichten van welk bericht type worden in de keuze optie getoond?Krachtige modules (**)Privacy: Ik wil dat mijn website getoond wordt in zoekmachines en in publieke weergaves rond dit netwerk.Profile Builder inlogwidgetProfile Builder registrerenPuerto RicoQatarQatar RialKeuzerondjesWillekeurig (vertraagt grote databases > 10.000 gebruikers)Aanbevolen pluginsWachtwoord herstellenDoorverwijzenStandaard doorverwijzing van WordPress formulieren en pagina'sStandaard doorverwijzing van WordPress formulieren en pagina'sType doorverwijzingURL doorverwijzingRegistrerenRegistratie ( wp-login.php?action=register )Versie registrerenRegistreer uw versieRegistratiepagina-URL (optioneel):GeregistreerdRegistratieRegistratie & profiel bewerkenRegistratiedatumRegistratieformulierRegistratieformulierenRegistratie met Goedkeuring BeheerderRegistratie met e-mailbevestigingOnthoud echter dat de veldwaarde-combinatie in de database aanwezig moet zijn.VerwijderenVerwijder alle filtersHerhaal het wachtwoordHerhalingsvelden opgeslagen!Herhalingsveld groepHerhalingsveldenAntwoorden aanRepubliek CongoVerplichtVerplicht formaat telefoonnummer:Activeringsmail opnieuw sturenOpnieuw instellen sleutelOpnieuw instellen linkWachtwoord Opnieuw InstellenOpnieuw instellen URLBeperk InhoudBeperk de gebruikerslijst tot deze geselecteerde rollen
            Indien niet gespecificeerd, worden standaard alle bestaande rollen weergegevenProbeer de installatie opnieuwReunionRolTe tonen rollenRoemeniëRoemenië LeuRij-tellingRuslandRusland RoebelRussische FederatieRwandaSaint BarthelemySint HelenaSint Helena PondSaint Helena, __( Ascension en Tristan da CunhaSaint Kitts en NevisSaint LuciaSint MaartenSint Maarten (Frans deel)Saint Pierre en MiquelonSaint Vincent en de GrenadinesSamoaSan MarinoSao Tomé en PrincipeSaoedi-ArabiëSaoedi-Arabië RialOpslaanWijzigingen opslaanInstellingen opslaanSla de namen van de factuurvelden opSla de volgorde van de factuurvelden op o.b.v. de selectievakjes voor de factuurveldenSla de namen van de bezorgvelden opSla de volgorde van de bezorgvelden op o.b.v. de selectievakjes voor de bezorgveldenSla de volgorde van de gebruikersrollen op o.b.v. de selectievakjes voor de gebruikersrollenZoekZoek VeldenZoeklocatieZoekinstellingenZoek gebruikersZoek gebruikers mbv alle veldenZoek alle veldenZoek de Profiel bewerkformulierenDe registratieformulieren zoekenZoek in de gebruikerslijstGeheime sleutelSelecterenAlles selecterenSelecteer BestandSelecteer een gebruikersrol.Selecteer gebruikersrollen om Goedkeuring Beheerder te activeren.Selecteer Profile Builder formulieren om reCAPTCHA te tonenSelecteer standaard WP formulieren om reCAPTCHA te tonenKies welk Profile Builder Profiel bewerkformulier op Mijn Account pagina van WooCommerce weergeven moet worden.Kies welk Profile Builder registratieformulier op Mijn Account pagina van WooCommerce weergeven moet worden.
            Dit voegt ook het Profile Builder inlogformulier op Mijn Account pagina toe.Selecteer welke WooCommerce factuurvelden getoond worden aan de gebruiker (versleep om te herordenen) en welke verplicht zijnSelecteer welke WooCommerce bezorgvelden getoond worden aan de gebruiker (versleep om te herordenen) en welke verplicht zijnSelecteer welke gebruikersrollen getoond worden aan de gebruiker (versleep om te herordenen)Als u 'Ja' selecteert zal het veld aan de lijst toegevoegd worden, maar het zal alle andere velden in database overschrijven die dezelfde meta-naam hebben
            Gebruik dit op eigen risicoStuur deze aanmeldingsgegevens via e-mail.SenegalServiëServië DinarRol InstellenMaak een aangepaste foutmelding die aan gebruiker getoond wordt.Stel de avatargrootte in voor de gebruikerslijstStel de avatargrootte in voor de gebruikerspaginaStel de standaard sorteercriteria in
            Dit kan tijdelijk gewijzigd worden voor iedere nieuwe sessieStel de standaard sorteervolgorde in
            Dit kan tijdelijk gewijzigd worden voor iedere nieuwe sessieStel het aantal gebruikers in dat getoond moet worden per pagina van de gebruikerslijstMaak een groep herhalingsvelden op profiel registratie en profiel bewerkformulieren. Begrens het aantal groepen herhalingsvelden voor iedere gebruiksrol.Maak meerdere registratieformulieren met verschillende velden voor bepaalde gebruikersrollen. Gebruik verschillende informatie voor verschillende gebruikerstypen.SeychellenSeychellen RoepieVertel iets over uzelf om uw profiel aan te vullen. Dit kan voor iedereen zichtbaar zijn.Naar ander adres versturen?BezorgadresBezorgveldenNaam bezorgveldVolgorde bezorgveldenShortcodeTonenToon alleToon valuta symboolToon bericht typeToon een uitklap link na zo veel keuzes. Laat leeg voor alle keuzes.Alle data tonenToon/verberg de beheerdersbalk in de front-endSierra LeoneAanmeld-datumSingaporeSingapore DollarSjabloon voor gebruikerspaginaSint MaartenSint Maarten (Nederlands deel)Website sleutelWebsitenaamWebsite TitelWebsite URL slugWebsite-URLSlowakijeSloveniëSalomonseilandenSalomonseilanden DollarSomaliëSomalië ShillingIemand heeft gevraagd het wachtwoord opnieuw te stellen voor het volgende account: %1$s
            Als dit niet uw bedoeling was, negeer dan deze e-mail en er zal niets veranderen.
            Klik op de volgende link om uw wachtwoord opnieuw in te stellen: %2$sEr is iets misgegaan, we konden geen verbinding maken met de server. Probeer het a.u.b. later opnieuw.Iets is fout gegeaan. Probeer svp opnieuw.Sorry, u hebt niet het recht dit te doen!Sorry, u kunt dit bestandstype niet uploaden voor dit veld.Sorteer tagsZuid AfrikaZuid Afrika RandZuid Georgia en de Zuidelijke SandwicheilandenZuid KoreaZuid SoedanSpanjeSpecificeer de URL van de pagina waar gebruikers naar doorverwezen worden als ze dit formulier gebruikt hebben om zich te registreren
            Gebruik de volgende opmaak: http://www.mysite.comSpecificeer de URL van de pagina waar gebruikers naar doorverwezen worden als ze dit formulier gebruikt hebben om hun profiel te updaten
            Gebruik de volgende opmaak: http://www.mysite.comSpecificeer de extensie(s) waartoe u de uploads wilt beperken,
            bijvoorbeeld: .ext1,.ext2,.ext3
            Indien niet gespecificeerd, is de standaardinstelling de in WordPress toegestane extensies (.*)Specificeer de extensie(s) waartoe u de uploads wilt beperken,
            bijvoorbeeld: .ext1,.ext2,.ext3
            Indien niet gespecificeerd, is de standaardinstelling: .jpg,.jpeg,.gif,.png (.*)Specificeer het datumformaat als u de datumkiezer gebruikt
            Geldige opties: 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, @
            Is standaard mm/dd/yy, indien niet gespecificeerd.Specificeer het aantal rijen voor een 'Tekstgebied'-veld
            Is standaard 5, indien niet gespecificeerd.Specificeer de optie die standaard geselecteerd moet worden.
            Als er meerdere waardes zijn, scheid ze dan met een ',' (komma)Specificeer de optie die standaard geselecteerd moet wordenSpecificeer de pagina waar gebruikers naar worden doorgestuurd als ze hun e-mail bevestigen. Dit kan een andere pagina zijn dan de registratiepagina(s), en kan altijd gewijzigd worden. Als er niets geselecteerd is, zal er een eenvoudige bevestigingspagina aan gebruiker getoond worden.Geef tijdformaat op.Sri LankaSri Lanka RoepieProvincieStatusStap voor stap snelle installatieStap waarde 1 om alleen gehele getallen toe te staan, 0.1 om gehele getallen en nummers met 1 decimaal toe te staan.Eenvoudige profiel bewerkingsformulieren door gebruik van de %s shortcode.Sterkte-indicatorSterkAbonnementsbeheerSoedanSurinameSuriname DollarSpitsbergen en Jan MayenSwazilandZwedenZweden KroonZwitserlandZwitserland FrankSyriëSyrië PondArabische Republiek SyriëTaiwanTaiwan DollarTaiwan, __( Provincie van ChinaTajikistanTanzaniaTanzania, __( Verenigde RepubliekAlgemene voorwaardenTekstgebiedThailandThailand BahtDat veld is al aan dit formulier toegevoegd Deze meta-naam is al in gebruik Die gebruikersnaam is al geactiveerd!De functie "Goedkeuring beheerder" is tijdens registratie geactiveerd. Vergeet dus niet dat u de gebruiker moet goedkeuren voordat hij/zij kan inloggen!Het account %1s is aangemaakt!De beste manier om frond-end-registratie, profielbewerking en inlogformulieren toe te voegen.Het ingevoerde e-mailadres is niet in de database gevonden!Het ingevoerde e-mailadres is niet geldig.De ingevoerde avatargrootte ligt niet tussen 20 en 200 De ingevoerde avatargrootte is niet numeriek De ingevoerde wachtwoorden komen niet overeen!Het ingevoerde rijnummer is niet numeriek De ingevoerde waarde voor de datumkiezer heeft geen geldig datumformaat De volgende optie(s) komen niet overeen met de opties in de optielijst: %s De volgende optie(s) komen niet overeen met de opties in de optielijst: %s De hoogte van de plattegrondDe breedtegraad die voor het tonen van de plattegrond gebruikt wordt als er geen pin markering is toegevoegd.De lengtegraad die voor het tonen van de plattegrond gebruikt wordt als er geen pin markering is toegevoegd.Het maximaal aantal velden is bereikt.De meta-naam kan alleen kleine letters, nummers, _ , - en geen spaties bevatten. De meta-naam mag niet leeg zijn Het wachtwoord moet een minimumsterkte hebben van %sHet wachtwoord moet een minimumlengte hebben van %s karaktersHet ingevoerde wachtwoord is onjuist.De wachtwoorden komen niet overeenHet popup bericht die getoond wordt als maximaal aantal herhalingsgroepen is bereikt.De rol van de aangemaakte gebruiker is op de standaard rol gezet. Alleen een beheerder kan een gebruiker registreren met de rol die bij dit formulier hoort.De geheime sleutel van Google, www.google.com/recaptchaDe geselecteerde gebruiker kon niet verwijderd wordenDe geselecteerde gebruikers zijn geactiveerdDe activerings e-mail is opnieuw gestuurd naar de geselecteerde gebruikersHet serienummer kon niet gevalideerd worden want het is verlopen!Het serienummer kon niet gevalideerd worden omdat het proces te lang duurde. Dit komt mogelijk doordat de server niet werkt. Probeer het later opnieuw!Het ingevoerde serienummer kon niet gevalideerd worden!Het serienummer zal binnenkort verlopen!Het serienummer is met succes gevalideerd!De shortcode is beschikbaar nadat u dit formulier gepubliceerd hebt.De website sleutel van Google, www.google.com/recaptchaDe gebruikerslijst is alleen zichtbaar voor ingelogde gebruikersDe gebruikerslijst is alleen zichtbaar voor de volgende rollenDe ingevoerde gebruikersnaam is niet in de database gevonden!De gebruikersnaam kan niet gewijzigd worden.Het door gebruiker gekozen wachtwoord tijdens aanmeldenFout tijdens versturen van het formulierEr is een fout opgetreden tijdens deze actie!Er is een fout opgetreden tijdens het activeren van de gebruikerEr is een fout opgetreden tijdens activering van de gebruiker.Er is een fout opgetreden tijdens het verzenden van de activeringslink naar %1$s!Deze doorverwijzing vindt plaats na een succesvolle actie, zoals registratie of succesvol inloggen.Deze instellingen worden na het opslaan ook overgenomen in de 'Beheerders e-mail aanpassen' instellingenpagina.Deze instellingen worden tijdens het opslaan ook overgenomen op de instellingenpagina "E-mailadres gebruikers aanpassen".Dit e-mailadres is reeds in gebruik.Dit e-mailadres is gereserveerd voor toekomstig gebruik.Voor dit veld is voorwaardelijk logica ingeschakeld.Dit veld is verplichtDit formulier is leeg.Met deze inlogwidget kunt u een inlogformulier op de zijbalk plaatsen.Dit bericht is alleen zichtbaar voor beheerdersDeze gebruikersnaam bestaat reeds.Deze gebruikersnaam is reeds geactiveerd!Deze gebruikersnaam is gereserveerd voor toekomstig gebruik. De gebruikersnaam in ongeldig omdat het niet toegestande tekens bevat.Deze gebruikersnaam is nu actief!Dit werkt alleen met front-end formulieren. Het is aan te raden om de standaard WP registratie door te verwijzen naar die van Profile Builder, met gebruik van de "Aangepaste doorverwijzingen" invoegtoepassing.TijdformaatTijdkiezerTijdzoneselectieTimor-LesteTitel van het veldTitel:Klik op de volgende link om de gebruiker te activeren:

            %s%s%s

            Na activering zult u nog een e-mail ontvangen met uw inloggegevens.Om meerdere decimalen toe te staan gebruik bv 0.01 (voor 2 decimalen) enzovoortOm gebruikers toe te staan zich m.b.v. Profile Builder te registreren voor uw website, moet u eerst gebruikersregistratie inschakelen. Ga naar %1$sNetwerk Instellingen%2$s en vink onder Registratie Instellingen "Gebruikersaccounts kunnen worden geregistreerd" aan. %3$sSluiten%4$sOm gebruikers toe te staan zich m.b.v. Profile Builder voor uw website te registreren, moet u eerst gebruikersregistratie inschakelen. Ga naar de %1$sInstellingen -> Algemeen%2$s en zorg ervoor dat u onder Lidmaatschap "Iedereen kan registreren" aangevinkt hebt. %3$sSluiten%4$sOm een pagina te maken met alle geregistreerde gebruikers van deze huidige site/blog, plaats de volgende shortcode op de gewenste pagina: %s.Om reCAPTCHA te gebruiken moet u een API-sleutel krijgen vanOm reCAPTCHA te gebruiken moet u een openbare API-sleutel krijgen van:TogoTokelauTongaStadTrinidad en TobagoTrinidad en Tobago DollarTunesiëTurkijeTurkije LiraTurkmenistanTurks- en CaicoseilandenTuvaluTuvalu DollarVoer uw wachtwoord opnieuw in. Voer uw wachtwoord in.Amerikaanse MaagdeneilandenURLUS DollarUgandaOeganda ShillingOekraïneOekraïne GrivnaAfkeurenAfgekeurdKennisgeving afgekeurde gebruikerVerenigde Arabische EmiratenVerenigd KoninkrijkVerenigd Koninkrijk PondVerenigde StatenKleine afgelegen eilanden van de Verenigde StatenBijwerkenUpgrade Profile BuilderUploadenUruguayUruguay PesoGebruik deze shortcodes op de pagina's waarop u de formulieren wilt tonen:Gebruik dit in combinatie met de WordPress-functies om de waarde te tonen op de door u gewenste pagina
            Automatisch aangevuld maar in sommige gevallen te bewerken (in dat geval moet het uniek zijn)
            Wijzigingen kunnen lang duren als er erg veel gebruikers zijnGebruik deze shortcode op de pagina waarop u het formulier wilt weergeven:Kennisgeving goedkeuring gebruikerGebruikerstellingGebruikers e-mail aanpassenTags gebruikersveldenGebruikers-IDGebruikers-ID / gebruikersnaamGebruikers-ID of gebruikersnaamGebruikers-IDGebruikerslijstenGebruikers-metaVereenvoudigde gebruikersnaamGebruikersrolGebruikersrol gebaseerde doorverwijzingenGebruikersrollenVolgorde gebruikersrollenGebruiker niet gevondenGebruiker goedgekeurd!Gebruiker verwijderd!Gebruiker afgekeurd!Te bewerken gebruiker:GebruikersrolGebruikersstatusInstellingen gebruikerslijstGebruikersnaamGebruikersnaam en e-mailadresGebruikersnaam of e-mailadresGebruikersnaam of e-mailadresGebruikersnamen kunnen niet veranderd worden.Gebruikers kunnen zichzelf registreren of u kunt hier handmatig gebruikers aanmaken.Gebruikers kunnen zich momenteel niet zelf registreren, maar u kunt hier handmatig gebruikers aanmaken.Gebruikers goedgekeurd!Gebruikers verwijderd!Gebruikers afgekeurd!Gebruikers met niet bevestigde e-mailadressenOezbekistanOezbekistan SomGeldige tags {{reply_to}} en {{site_name}}ValidatieWaarde moet een meervoud zijn van %1$sWaarde moet groter dan of gelijk zijn aan %1$sWaarde moet kleiner dan of gelijk zijn aan %1$sVanuatuVaticaanstadVenezuelaVenezuela BolivarVenezuela, __( Bolivariaanse RepubliekVersie %sErg zwakZeer zwakVietnamVietnam DongVietnamBekijk plattegrondBekijk alle extra shortcode-parametersBekijk het Profiel bewerkformulierHet registratieformulier bekijkenBekijk de gebruikerslijstMaagdeneilanden, __( BritseMaagdeneilanden, __( U.S.ZichtbaarheidZichtbare keuzesAlleen zichtbaar voor ingelogde gebruikers?Zichtbaar voor de volgende rollenWallis en FutunaZwakWebsiteWelkom bij %1$s!


            Je gebruikersnaam is:%2$sWelkom op %1$s!


            Uw gebruikersnaam is:%2$s en het wachtwoord:%3$sWestelijke SaharaOf het valuta symbool na de valuta naam getoond moet worden in de keuze optie.Of een veld verplicht is of nietOf het veld aan de WooCommerce bestelpagina toegevoegd moet worden of nietOf de nieuwe gebruiker automatisch ingelogd wordt of niet
            Werkt alleen op losse websites zonder dat de functies 'Goedkeuring beheerder' en 'E-mailbevestiging' geactiveerd zijn
            WAARSCHUWING: Als het registratieformulier gecachet wordt, zal automatisch inloggen niet werkenOf u de gebruiker wilt doorverwijzen naar een bepaalde pagina of nietWelke doorverwijzing plaatsvindt is afhankelijk van de volgende prioriteit:Met extra profielvelden kunt u het registratieformulier creëren dat precies voldoet aan de behoefte van uw project.Met Profile Builder Pro v2 kun je verschillende velden in de registratie en profiel bewerkingsformulieren tonen, door gebruik van de Meerdere Registratie & Profiel Bewerkingsformulieren module.Met het nieuwe Abonnementen Veld in Profile Builder, wordt het mogelijk om gebruikers zich via het registratieformulier aan te laten melden voor betaalde accounts.Met deze kun je diverse WordPress formulieren en pagina's doorverwijzen naar pagina's die zijn gemaakt met Profile Builder.WooCommerce SyncWooCommerce moet geïnstalleerd en geactiveerd zijn om Profile Builder - WooCommerce Sync invoegtoepassing te laten werken!Yahoo IMJemenJemen RialJaJa, ik wil een nieuwe website makenYimU bent reeds ingelogd. Wijzig uw wachtwoord via het profiel bewerkingsformulier.Je bent momenteel ingelogd als %1$s. %2$sU bent momenteel ingelogd als %1s. U hebt geen ander account nodig. %2sU bent ingelogd als %s.Je mag dit niet doen.U kunt informatie toevoegen aan %s nadat u een item hebt toegevoegdJe kunt de stap waarde ook gebruiken om toegestane intervallen in te stellen (bijvoorbeeld met stap waarde 2 zijn alleen -4, -2, 0, 2, enzovoort toegestaan)U kunt een lijst met niet bevestigde e-mailadressen vinden in %1$sGebruikers > Alle Gebruikers > E-mailbevestiging%2$s.U kunt een gebruikerslijst vinden bij %1$sGebruikers > Alle Gebruikers > Goedkeuring beheerder%2$s.U kunt dit in het menu van Profile Builder vinden.U kunt het standaardbestand hier vinden: %1$sJe kunt gebruiken: # voor nummers, haakjes ( ), - teken, + teken, punt . en spaties.Je kunt doorverwijzingen niet dupliceren!U kunt deze gebruikersrol niet registrerenU bepaalt wie er gebruiker is op uw website. Ontvang notificaties via e-mail of keur meerdere gebruikers in één keer goed via de WordPress gebruikerspagina.U bepaalt wie gebruiker is op uw website. Ontvang een melding via e-mail of keur meerdere gebruikers in één keer goed via de WordPress UI. Zet 'Goedkeuring beheerder' aan door te upgraden naar de %1$sHobbyist- of Pro-versie%2$s.U heeft geen permissie om de gebruikers lijst te bekijken.U heeft niet de juiste gebruikersrol om de gebruikers lijst te bekijken.Er zijn geen instellingen voor paginering in deze gebruikerslijst!U hebt of niet de rechten voor deze actie of is een fout opgetreden!U hebt uw wachtwoord opnieuw ingesteld naar: %1$sU moet ingelogd zijn om uw profiel te bewerken.U moet een geldig e-mailadres invoeren.U moet een waarde voor het datumformaat invoeren U moet een waarde invoeren voor het rijnummer U moet de geheime sleutel invoeren U moet de website sleutel invoeren U moet een veld selecteren U moet de gebruikerslijst functie activeren vanuit het tabblad 'Modules'!U moet de titel van het formulier specificeren voordat u het aanmaaktJe gebruikt de volgende tags in je URLs om gebruikers door te verwijzen naar diverse pagina's.U zult een link via e-mail ontvangen om een nieuw wachtwoord aan te maken.U zult spoedig automatisch doorgestuurd worden. Als u deze pagina meer dan %1$d seconden ziet, klik dan op %2$s.%3$sJe account is succesvol aangemaakt.Je account moet eerst geaccepteerd worden bij een administrator voordat u kan inloggenUw account moet bevestigd worden door een beheerder voordat u de functie 'Wachtwoord herstellen' kunt gebruiken.Uw account moet door een beheerder worden bevestigd voordat u de functie 'Wachtwoord Opnieuw Instellen' kunt gebruiken.Uw account op %1$s is goedgekeurd!Uw account op %1$s is afgekeurd!Uw account op {{site_name}} is goedgekeurd!Uw account op {{site_name}} is afgekeurd!Uw e-mailadres is bevestigd.Uw wachtwoord is gewijzigd!Uw profiel is bijgewerkt!Het door u geselecteerde wachtwoord tijdens registratieUw sessie is verlopen! Ververs de pagina en probeer het opnieuwUw sessie is verlopen! Ververs de pagina en probeer het opnieuw.Uw website ziet er zo uit:
            ZambiaZimbabweZimbabwe Dollar[%1$s] Activeren %2$s[%1$s] Uw nieuwe accountinformatie[{{site_name}}] Activeren {{username}}[{{site_name}}] Notificatie wijziging e-mailadres[{{site_name}}] Wachtwoord Opnieuw Instellen[{{site_name}}] Wachtwoord Opnieuw Ingestelddeze gebruiker goedkeuren?goedgekeurddit e-mailadres zelf bevestigen?deze gebruiker verwijderen uit de tabel _signups?deze gebruiker verwijderen?geeft alle gebruikers weer, behalve degenen waarvoor u het user_id hebt gespecificeerdgeeft alleen de gebruikers weer waarvoor u het user_id hebt gespecificeerdtoont gebruikers met een bepaalde meta-waarde in een bepaald (extra) meta-velde-mailadresgenereert een homepage link van de huidige website.hierin WordPress kan de site url anders zijn dan de home urlis geen nummer.is geen geldig telefoonnummer.moet groter dan of gelijk zijn aanmoet een veelvoud zijn vanMoet kleiner dan of gelijk zijn aanreCAPTCHAverplichtde activeringslink opnieuw sturen?tonende ID van de gebruikerde URL van de hiervoor bezochte paginade voor URL opgeschoonde versie van de gebruikersnaam, de vereenvoudigde gebruikersnaam kan veilig worden gebruikt in URLs omdat het geen speciale karakters of spaties kan bevatten.deze gebruiker afkeuren?afgekeurdgebruikersnaamgebruikersnaam of e-mailadrestranslation/profile-builder-de_DE.mo000066600000330720152141651160013474 0ustar00&LMLMlMMyMc4NNcmOOPQCRR;aSSKSCS[=TTTTT"U+1U]UEwU1U UeU _VlV V VV2V V-VOW lW wWW5W#WWXY!ZZdZ>N[5[Y[G\Re\c\!]7>]'v]]9^=^]L^U^___+_;_J_ Q_ [_e_m__E___ ``?`Y`!v`#```````a!a*8a caoaa a aaaa#ab$4bYbqb ubb bb b(bbbcLcDct)dddd9de?+eAke*eeee eefff%&f LfVfefmf sf0f f fff3fg(g7g&Qgxgg gg g gg hh+h0h8hGh OhZhkhthhGhkhJiii ;jEj Mj[jcj jjxj~jjjjjjjj j5k9kBkJk#\k!k$kk(kll 'l 5lCl JlVlulllll l l ll lm mmq!mm mm mmmmm,m"*n,Mnznn nnn7n3n1o'Lo7too2o8o(3p\pKp ,q6q GqUq2kq3q5qrr /r=r Fr Tr`rpr xr0rrr rr)r s%s -s :sEs VscsUzsUs&t.t=t EtRt Wtatityt)tttt7t u $u /u:uBuRuguxuuuuu;u vv3v IvWvhvvvAvv w$wBw IwTwew vww w w www wwwAxVxjxx/x0xyy/y.Oy1~yyyy yyzzz#z 9zDzzz zz{+{G{]{l{~{{{ { {{s{H| N|\|o| ||!|1||Q}Z}On}?}}~AeW^ˁ Ӂ bh q~>  $ /=N!j r  /; @Ll t ? .3J ~ ̅܅ ! -7G Xey   džֆ ݆   !$IF ׇ͇ ,m0 6B\ -7H ]i  ŋ  # )5<QYh nx  BHQc)u čύލ  -7@ G R]t!֎ ގ %4 J T^5nԏ 2  , 2<.L {~ &/4: Z8h  ̒ ג;>FM _i p |#;*#<W)wʔєڔ    +3 ;FYu>_Е08=NVex~  ǖݖ C# g u $ٗ$>Ts ʘ #4pPșڙ =(Lu} Ě ޚ3 )8>Vl s&Λ '.Bqw - 3@2I8|3^&H#o,ߞ ,8G%Ÿܟ!#?P Wdm|:fӠ:W p| 0͡**& Q _l)uƢ *< O$pM &;KTjs  Τؤj Tbjo  ɥХ 02 H Ta|  Ȧ ަ  @<}A7ާ +; KXs ٨ 5:L5^yªz<I!Ȭ Ϭܬ>/$2TYVV8~ ]3DTi ?( 3 @ MWh  ɱױ!2Q ']07 , D P\b%Ux6w ¹ҹU7WǺк   !3 9EZas  ƻٻ )!##Ei.I07z32)"C(f@LоOmLMѿ.PN/:&)PJkr;%&:;6r0*--X<p@4;u2 %(+*T45D`/[ZG/e);.&U#s2<$  F-C5q   6 =Kfz   5$Cho EA" =H^ow   6Q o } DSK$ ')6 `"k+( % 5 @ JT ]ks#| !, <]x4F]"$I69XSRd8fI "Q)GGq#><<{ybKX,(N"I"ly 2>;=Gy2+% +F*rK<>K{;r+vKheW')02@&s,+ ?@T&#%&;b+)@":cN0$)#' FPYuz&A Vaj|wjvnk*jHg`=OK^JbXx.!"H SfoL #{/!4 H.VY 127jms#iM)@wfLKlu .:O,~ RhK _k! ^-~)+":"U$xG0 x!%*/P.    +#-*Q|Gc1   - ; M B] D K 1 :  B  L W  l  v  0      @  ;  H T  f 5s    - &  F S ,g ,    (8 AM _izX0  #+=Nd  J  $ "2%U{*    7OWj     thp   >+ =L  hc,9.MG9b?*\.?!T=v>OCRk z 3)=*D o}  'u`  !/ 5 @J\/| K #1 @NW%h ! 7+cr /" * Y>   %    !$!=! [!f! u! ! !! !!!K!;"'T"*|"3"5" # #5)#3_#4# ###$$9$A$I$R$ i$u$B% K%W%j%&%%%%%&2& H& R& _&l&&''&';'O'_'An'H'!'\(x(l(l(j)**+oJ,,---. . .$.s*. ......M/!S/ u/ ////"//00 00 00 0"0 0011%1UC11 1 1111;2 >2J2d2k2s222 2 22 23 3 3%363O3_3 {3 33 33 33 3333344 4(4/4"C4Xf4 44 44 55"595A5Q5U5]5q5F66~777 7&77 88899$49Y9r99 9999 9999: ::$:::C:S: Z:e: m: {: :::/; 6;@;S;*f;;;; ;; ;; ;< <$< 9< C< M< W<c<'z<'<'<'<=#=2=;=D=T=[=j=q=====C= >>)>E>b>i>>##? G?8R??? ? ?? ??/? @,@@ @A AA%A),AVALhAA AA A A AABE-BsB|BB BB B B$BBE C3OCCCC0CD DD1D 9DCD UD aDmDsD DDDD DD'D EP%EvEF FF"F+F;FRFYF `F mFzFF!FFF FGOGkG GG GGGGGG1GB H%MH<sH!H+H!H I%@IfInI ~II I I%I9IlJJJJJJ JSJ6/K fKpK KKKKKKCL KLULeLlLLLLL LL LL,M'5M)]M#M9MMMNN NNNN NCN@AOFOkO'5P,]P-P5PP"Q>+Q:jQ1Q%Q!Q#R+CR-oRRR R RR R5RS1SSS ST TT@)TjTTT1T1TU"U 2U/@UpUU$U UU#U VV6V$OV&tVRV VVW"%WHW`WuWW W%W"WWW X%X:XLXXY%Y,Y =YHY YYgY oY }YYY YY1YY Z Z'ZDZ_ZZ ZZ ZZ ZZZ"[K)[!u[I[8[\"\ 1\>\Q\!b\\.\$\\ ]!]*];]M]Nm]|]\9^^#__p``aea7(b`bib qbb=b@bHcqYcpc_wBTw9w5w6xM>xNxRx".yRQySy0yY)z$z3z-z% {(0{YY{{zO|8|,}U0}K}}>~%~0~RxrMB9.|.:ڀ59KIQρE!vgvނwU-̓I.EtR6+7+cIGم%!G   .;MUVIAFҊNdW !&; Wa j w$ی '/@I Y c*m*%"1 KV _hm֎U&Cjz Đ   +9(Hq#   #7F!W y!.ܒX id'Γ'&+E q}- 'Ȕ)(CL U`&s   Õ͕ܕ0(%Nn ˖(ޖ& 9 C@MX [(OIx-˜LB=lk!d  !-*1\aa#ÝI1(MXv^Ϟ.zğj?+(֠k5k3ա&AQNS^4:62q''̥.,#"PPsJĦ3^C.(dWpF,2:@R**( Y2Y( !2J(hG'٬3)5 _ j@'̭O>Dg#%!Я#"3 V a o 'ذ  !

            Good News!

            An administrator has just approved your account: {{username}} on {{site_name}}.

            Hello,

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            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!

            Someone requested that the password be reset for the following account: {{site_name}}
            Username: {{username}}

            If this was a mistake, just ignore this email and nothing will happen.

            To reset your password, visit the following address:
            {{{reset_link}}}

            To activate your user, please click the following link:
            {{{activation_link}}}

            After you activate, you will receive another email with your credentials.

            You have successfully reset your password to: {{password}}

            {{username}} has requested a password change via the password reset feature.

            His/her new password is: {{password}}

            * only available in the %1$sHobbyist and Pro versions%2$s. Serial Number: Your serial number is about to expire, please %1$s Renew Your License%2$s. Your serial number is expired, please %1$s Renew Your License%2$s. is also activated. You need to deactivate it before activating this version of the plugin."Admin Approval" Activated:"Admin Approval" Feature:"Admin Approval" on User Role:"Email Confirmation" Activated:"Email Confirmation" Landing Page:"Email" - users can Log In only with Email."Roles Editor" Activated:"Username and Email" - users can Log In with both Username and Email."Username" - users can Log In only with Username.%1$s %2$d%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s%1$s of %2$s%s couldn't be deleted%s pending« Prev«« First(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(no title)** only available in the %1$sPro version%2$s.. Extra Field Types are available in Hobbyist or PRO versions.... Choose...Choose1 item

            Also, you will be able to visit your site at

            You can visit your site at

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            Your Profile Builder serial number is invalid or missing.
            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

            Redirect
            URL
            Title (Type)
            Title
            Type
            Meta Name
            Required
            User ID / Username
            Redirect
            URL
            User Role
            Redirect
            URL
            Note: changing the form title also changes the shortcode!ERROR: The password must have a minimum strength of %sERROR: The password must have the minimum length of %s charactersERROR: Your account has to be confirmed by an administrator before you can log in.Profile Builder A new account has been created for you on {{site_name}}A new subscriber has (been) registered!A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be editedAIMAbout YourselfAccept user payments, create subscription plans and restrict content on your membership site.Accept user payments, create subscription plans and restrict content on your website.Account ManagementActivateActivation KeyActivation LinkActivation UrlActiveAdd EntryAdd FieldAdd NewAdd New Field to the ListAdd UserAdd a number from 0 to 19. The higher the number the higher the zoom.Add new Edit-profile FormAdd new Registration FormAdd new User ListingAdd your HTML (or text) contentAdd-On has been activatedAdd-On has been deactivated.Add-On is activeAdd-On is inactiveAdd-On is ActiveAdd-OnsAddressAddress line 2Admin ApprovalAdmin Approval (*)Admin Bar SettingsAdmin Email CustomizerAdmin Notification for User Password ResetAfghanistanAfghanistan AfghaniAfter Edit ProfileAfter LoginAfter LogoutAfter Profile Update...After RegistrationAfter Registration...After Successful Email ConfirmationAfter Successful Password ResetAfter login redirect URL (optional):Agree To Terms CheckboxAimAland IslandsAlbaniaAlbania LekAlgeriaAll UsersAll users have been successfully deletedAll-userlisting TemplateAllow Users to Log in With:Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.Allow users to log in with their email or username when accessing your site.Allow users to recover their password in the front-end using the %s.Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$sAllowable ValuesAllowed Image ExtensionsAllowed Upload ExtensionsAllowed time to display any success messages (in seconds)American SamoaAn administrator has just approved your account on %1$s (%2$s).An administrator has just unapproved your account on %1$s (%2$s).An error occurred, please try again later.AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApplyApproveApprovedAre you sure you want to delete this?ArgentinaArgentina PesoArmeniaArubaAruba GuilderAs an administrator you cannot change your role.AscendingAustraliaAustralia DollarAustriaAuthor Archive ( http://sitename.com/author/admin )Automatically Log InAvailable TagsAvailable in All VersionsAvailable in Hobbyist and Pro VersionsAvailable tags for dynamic URLsAvatarAvatar SizeAvatar Size (All-userlisting)Avatar Size (Single-userlisting)Avatar UploadAvatar or GravatarAzerbaijanAzerbaijan New ManatBackBahamasBahamas DollarBahrainBangladeshBangladeshi takaBarbadosBarbados DollarBasic InformationBeautiful registration forms fully customizable using the %s shortcode.Before you can access your account %1s, an administrator has to approve it. You will be notified via email.Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.Before you can access your account, an administrator needs to approve it. You will be notified via email.BehaviourBelarusBelarus RubleBelgiumBelizeBelize DollarBeninBermudaBermuda DollarBhutanBilling AddressBilling FieldsBilling Fields NameBilling Fields OrderBiographical InfoBlog DetailsBlog Details - only appears on the Registration page!Blog URLBoliviaBolivia BolivianoBolivia, __( Plurinational State ofBonaire, Saint Eustatius and SabaBonaire, __( Sint Eustatius and SabaBosnia and HerzegovinaBosnia and Herzegovina Convertible MarkaBoth fields are empty.BotswanaBotswana PulaBouvet IslandBrazilBrazil RealBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBrunei DarussalamBrunei Darussalam DollarBulgariaBulgaria LevBulk ActionsBurkina FasoBurundiCabo VerdeCambodiaCambodia RielCameroonCan contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}CanadaCanada DollarCancelCape VerdeCayman IslandsCayman Islands DollarCentral African RepublicChadChange heading field size on front-end formsChanged Email Address NotificationCheck your e-mail for the confirmation link.CheckboxChileChile PesoChinaChina Yuan RenminbiChoose Edit Profile form to display on My Account page:Choose Register form to display on My Account page:Choose how multiple selections affect the resultsChoose one of the supported field typesChoose one of the supported fields you manage install manually.Could not install plugin. Retry or install manually.CountryCountry SelectCroatiaCroatia KunaCubaCuba PesoCuracaoCurrency SelectCustom RedirectsCustomize Your Forms The Way You Want (*)CyprusCzech RepublicCzech Republic KorunaDashboard (redirect users from accessing the dashboard)Date-formatDatepickerDeactivateDefaultDefault ContentDefault Edit ProfileDefault LatitudeDefault LongitudeDefault OptionDefault Option(s)Default RegisterDefault RegistrationDefault Registration & Registration with Email ConfirmationDefault RoleDefault Sorting CriteriaDefault Sorting OrderDefault ValueDefault WP LoginDefault WP Recover PasswordDefault WP RegisterDefault Zoom LevelDefault limit for this repeater group.
            Leave 0 for unlimited.Default option of the fieldDefault value of the fieldDefault value of the textareaDeleteDelete allDelete all itemsDelete this itemDemocratic Republic of the CongoDenmarkDenmark KroneDescendingDescriptionDisabledDisplay MessagesDisplay NameDisplay name asDisplay name publicly asDisplay name publicly as - only appears on the Edit Profile page!Display on PB formsDisplay on WooCommerce CheckoutDisplay on default WP formsDisplays customer billing fields in front-end. Displays customer shipping fields in front-end. DjiboutiDo you want toDo you want to bulk approve the selected users?Do you want to bulk delete the selected users?Do you want to bulk unapprove the selected users?DominicaDominican RepublicDominican Republic PesoDownload NowDownloading and installing...E-mailERRORERROR:East Caribbean DollarEast TimorEasy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings.EcuadorEditEdit ProfileEdit field groupEdit the Edit-profile FormsEdit the Registration FormsEdit the User ListingEdit this itemEdit-profile FormEdit-profile FormsEg. (###) ###-####EgyptEgypt PoundEl SalvadorEl Salvador ColonEliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.EmailEmail AddressEmail ConfirmationEmail CustomizerEmail SubjectEmail TemplatesEmail notification resent to userEmpty field won't check for correct phone number.Enable extra featuresEnable limit to the number of fields to be generated by users in front end forms Enable your modulesEnter a (detailed) description of the option for end users to read
            OptionalEnter a comma separated list of labels
            Visible for the userEnter 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.Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophesEnter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100Enter the minimum characters the password should have. Leave empty for no minimum limitEnter your Google Maps API key ( Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used.Equatorial GuineaEritreaError MessageEstoniaEstonia KroonEthiopiaEuroEverything you will need to manage your users is probably already available using the Pro Modules.Example:Excerpt ViewExisting PagesExpand the resultsExtra FeaturesExtra FunctionsExtra Profile Fields are available in Hobbyist or PRO versionsExtra shortcode parametersFacet MetaFacet TypeFaceted MenusFalkland IslandsFalkland Islands (Malvinas)Falkland Islands (Malvinas) PoundFaroe IslandsFeatures that give you more control over your users, increased security and help you fight user registration spam.FieldField NameField PropertiesField TitleFijiFiji DollarFind out more about PRO ModulesFinlandFirst NameFirst/LastnameFirstnameFor Modern User InteractionFor security reasons, you must pass the remote ip to reCAPTCHA!Form ShortcodeFranceFreeFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriction-less login using %s shortcode or a widget.From (name)From (reply-to email)GabonGambiaGeneral LimitGeneral SettingsGeneric UploadsGeorgiaGermanyGet New PasswordGet started with extra fieldsGhanaGhana CedisGibraltarGibraltar PoundGlobal RedirectsGo Back LinkGoogle Maps API KeyGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuatemala QuetzalGuernseyGuernsey PoundGuineaGuinea-BissauGuyanaGuyana DollarHTMLHTML ContentHaitiHeading TagHeard Island and McDonald IslandsHere you can activate / deactivate available modules for Profile Builder.HideHoly See (Vatican City State)HondurasHonduras LempiraHong KongHong Kong DollarHow does this work?HungaryHungary ForintIDIcelandIceland KronaIf you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules.InactiveIncorrect phone numberIndiaIndia RupeeIndividual User RedirectsIndividual redirects defined in shortcodes; redirect_priority="top" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects.IndonesiaIndonesia RupiahInput / Hidden InputInstall NowInstallation completeInvalid activation key!Invalid key!Invalid username.IranIran RialIran, __( Islamic Republic ofIraqIrelandIsle of ManIsle of Man PoundIsraelIsrael ShekelItalyIvory CoastJabberJabber / Google TalkJamaicaJamaica DollarJapanJapan YenJerseyJersey PoundJordanKazakhstanKazakhstan TengeKeep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.KenyaKiribatiKorea (North) WonKorea (South) WonKorea, __( Democratic Peoples Republic ofKorea, __( Republic ofKosovoKuwaitKyrgyzstanKyrgyzstan SomLabelLabelsLao Peoples Democratic RepublicLaosLaos KipLast »»Last NameLastnameLatviaLatvia LatLearn MoreLeave 0 for unlimited.Leave it empty for no max valueLeave it empty for no min valueLeave it empty for no restrictionLebanonLebanon PoundLesothoLiberiaLiberia DollarLibyaLiechtensteinLimitLimit per RoleLimit reached messageList ViewLithuaniaLithuania LitasLoad Profile Builder's own CSS file in the front-end:Log outLog out »Log out of this accountLog out of this account.LoginLogin ( wp_login.php )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 )Login with Email or UsernameLogoutLost Password ( wp-login.php?action=lostpassword )Lost your passwordLost your password?LuxembourgM j, Y @ G:iMacaoMacedoniaMacedonia DenarMacedonia, __( the former Yugoslav Republic ofMadagascarMake sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.MalawiMalaysiaMalaysia RinggitMaldivesMaliMaltaManage Default and Extra FieldsManage FieldsManage field or group of fields that will be repeatable.MapMap HeightMarshall IslandsMartiniqueMauritaniaMauritiusMauritius RupeeMax Number ValueMax allowed number value (0 to allow only negative numbers)MayotteMediumMember ManagementMeta-nameMexicoMexico PesoMicronesiaMicronesia, __( Federated States ofMin Number ValueMin allowed number value (0 to allow only positive numbers)Minimum Password Length and Strength MeterMinimum Password Length:Minimum Password Strength:Minimum length of %d charactersMinimum required Profile Builder version:ModulesMoldovaMoldova, __( Republic ofMonacoMongoliaMongolia TughrikMontenegroMontserratMoreMore DetailsMore InfoMore Info UrlMore...MoroccoMozambiqueMozambique MeticalMultiple Edit-profile FormsMultiple Registration FormsMultiple Registration and Edit Profile form settings RedirectsMust be a valid email address or the tag {{reply_to}} which defaults to the administrator emailMyanmarNameName/DescriptionNamibiaNamibia DollarNarrow the resultsNauruNepalNepal RupeeNetherlandsNetherlands Antilles GuilderNew CaledoniaNew Edit-profile FormNew Registration FormNew User ListingNew ZealandNew Zealand DollarNew subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            Next » NicaraguaNicaragua CordobaNicknameNigerNigeriaNigeria NairaNiueNoNo Edit-profile Form foundNo Edit-profile Forms found in trashNo Registration Form foundNo Registration Forms found in trashNo User Listing foundNo User Listing found in trashNo items found.No options availableNo results found!NoneNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNorway KroneNot compatible with Profile BuilderNot compatible with your version of Profile Builder.Now that you acquired a copy of %s, you should take the time and register it with the serial number you receivedNumberNumber Step ValueNumber of PostsNumber of Users/PageOmanOman RialOnly administrators can see this field on edit profile forms.Only an administrator can add new users.OptionsOverwrite ExistingPB LoginPB Recover PasswordPB RegisterPaginationPaid & Free SubscriptionsPaid AccountsPaid Member Subscriptions - a free WordPress pluginPakistanPakistan RupeePalauPalestine, __( State ofPalestinian TerritoryPanamaPanama BalboaPapua New GuineaParaguayParaguay GuaraniPasswordPassword Lost and Found.Password Recovery page URL (optional):Password Reset EmailPassword Reset Success EmailPassword Reset from "%1$s"Password Successfully Reset for %1$s on "%2$s"Payment ManagementPersonalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.PeruPeru Nuevo SolPhilippinesPhilippines PesoPhonePhone FormatPitcairnPlease add the Google Maps API key for this field.Please check that you entered the correct email address.Please check that you entered the correct username.Please choose a different field type as this one already exists in your form (must be unique) Please enter a (valid) reCAPTCHA valuePlease enter a unique field title. Please enter a valid username.Please enter a value for the required field Please enter numbers onlyPlease enter your email address.Please enter your username or email address.Please select and enter the ID or username of your user.Please select at least one user role Please try a different one!Plugin has been activatedPlugin has been deactivated.Plugin is activePlugin is inactivePlugin is ActivePolandPoland ZlotyPortugalPostcode / ZipPostsPosts from what post type will be displayed in the select.Powerful Modules (**)Privacy: I would like my site to appear in search engines, and in public listings around this network.Profile Builder Login WidgetProfile Builder RegisterPuerto RicoQatarQatar RiyalRadio ButtonsRandom (very slow on large databases > 10K user)Recommended PluginsRecover PasswordRedirectRedirect Default WordPress Forms and PagesRedirect Default WordPress forms and pagesRedirect TypeRedirect URLRegisterRegister ( wp-login.php?action=register )Register VersionRegister Your VersionRegister page URL (optional):RegisteredRegistrationRegistration & Edit ProfileRegistration DateRegistration FormRegistration FormsRegistration with Admin ApprovalRegistration with Email ConfirmationRemember though, that the field-value combination must exist in the database.RemoveRemove All FiltersRepeat PasswordRepeatable fields saved!Repeated field groupRepeater FieldsReply ToRepublic of the CongoRequiredRequired phone number format: Resend Activation EmailReset KeyReset LinkReset PasswordReset UrlRestrict ContentRestrict the userlisting to these selected roles only
            If not specified, defaults to all existing rolesRetry InstallReunionRoleRoles to DisplayRomaniaRomania New LeuRow CountRussiaRussia RubleRussian FederationRwandaSaint BarthelemySaint HelenaSaint Helena PoundSaint Helena, __( Ascension and Tristan da CunhaSaint Kitts and NevisSaint LuciaSaint MartinSaint Martin (French part)Saint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaudi Arabia RiyalSaveSave ChangesSave SettingsSave the billing fields namesSave the billing fields order from the billing fields checkboxesSave the shipping fields namesSave the shipping fields order from the billing fields checkboxesSave the user role order from the user roles checkboxesSearchSearch FieldsSearch LocationSearch SettingsSearch UsersSearch Users by All FieldsSearch all FieldsSearch the Edit-profile FormsSearch the Registration FormsSearch the User ListingSecret KeySelectSelect AllSelect FileSelect a user role.Select on what user roles to activate Admin Approval.Select on which Profile Builder forms to display reCAPTCHASelect on which default WP forms to display reCAPTCHASelect which Profile Builder Edit-profile form to display on My Account page from WooCommerce.Select which Profile Builder Register form to display on My Account page from WooCommerce.
            This will also add the Profile Builder Login form to MyAccount page.Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be requiredSelect which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be requiredSelect which user roles to show to the user ( drag and drop to re-order )Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name
            Use this at your own riskSend these credentials via email.SenegalSerbiaSerbia DinarSet RoleSet a custom error message that will be displayed to the user.Set the avatar size on the all-userlisting onlySet the avatar size on the single-userlisting onlySet the default sorting criteria
            This can temporarily be changed for each new sessionSet the default sorting order
            This can temporarily be changed for each new sessionSet the number of users to be displayed on every paginated part of the all-userlistingSet up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role.Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.SeychellesSeychelles RupeeShare a little biographical information to fill out your profile. This may be shown publicly.Ship to a different address?Shipping AddressShipping FieldsShipping Fields NameShipping Fields OrderShortcodeShowShow AllShow Currency SymbolShow Post TypeShow a toggle link after this many choices. Leave blank for allShow all datesShow/Hide the Admin Bar on the Front-EndSierra LeoneSign-up DateSingaporeSingapore DollarSingle-userlisting TemplateSint MaartenSint Maarten (Dutch part)Site KeySite NameSite TitleSite URL slugSite UrlSlovakiaSloveniaSolomon IslandsSolomon Islands DollarSomaliaSomalia ShillingSomeone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$sSomething went wrong, we could not connect to the server. Please try again later.Something went wrong. Please try again.Sorry, but you don't have permission to do that!Sorry, you cannot upload this file type for this field.Sort TagsSouth AfricaSouth Africa RandSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.comSpecify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.comSpecify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yySpecify the number of rows for a 'Textarea' field
            If not specified, defaults to 5Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)Specify the option which should be selected by defaultSpecify 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.Specify the time format.Sri LankaSri Lanka RupeeState / CountyStatusStep by Step Quick SetupStep value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimalStraight forward edit profile forms using %s shortcode.Strength indicatorStrongSubscription ManagementSudanSurinameSuriname DollarSvalbard and Jan MayenSwazilandSwedenSweden KronaSwitzerlandSwitzerland FrancSyriaSyria PoundSyrian Arab RepublicTaiwanTaiwan New DollarTaiwan, __( Province of ChinaTajikistanTanzaniaTanzania, __( United Republic ofTerms of AgreementTextareaThailandThailand BahtThat field is already added in this form That meta-name is already in use That username is already activated!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!The account %1s has been successfully created!The best way to add front-end registration, edit profile and login forms.The email address entered wasn't found in the database!The email you entered is not a valid email address.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical The entered passwords don't match!The entered row number is not numerical The entered value for the Datepicker is not a valid date-format The following option did not coincide with the ones in the options list: %s The following option(s) did not coincide with the ones in the options list: %s The height of the map.The latitude at which the map should be displayed when no pins are attached.The longitude at which the map should be displayed when no pins are attached.The maximum number of fields has been reached.The meta-name can only contain lowercase letters, numbers, _ , - and no spaces. The meta-name cannot be empty The password must have a minimum strength of %sThe password must have the minimum length of %s charactersThe password you entered is incorrect.The passwords do not matchThe popup message to display when the limit of repeater groups is reached.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.The secret key from Google, www.google.com/recaptchaThe selected user couldn't be deletedThe selected users have been activatedThe selected users have had their activation emails resentThe serial number couldn't be validated because it expired!The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!The serial number entered couldn't be validated!The serial number is about to expire soon!The serial number was successfully validated!The shortcode will be available after you publish this form.The site key from Google, www.google.com/recaptchaThe userlisting will only be visible only to the logged in usersThe userlisting will only be visible to the following rolesThe username entered wasn't found in the database!The usernames cannot be changed.The users selected password at signupThere was an error in the submitted formThere was an error performing that action!There was an error while trying to activate the userThere was an error while trying to activate the user.There was an error while trying to send the activation link to %1$s!These redirects happen after a successful action, like registration or after a successful login.These settings are also replicated in the "Admin Email Customizer" settings-page upon save.These settings are also replicated in the "User Email Customizer" settings-page upon save.This email is already in use.This email is already reserved to be used soon.This field has conditional logic enabled.This field is requiredThis form is empty.This login widget lets you add a login form in the sidebar.This message is only visible by administratorsThis username already exists.This username is already activated!This username is already reserved to be used soon.This username is invalid because it uses illegal characters.This username is now active!This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using "Custom Redirects" module.Time FormatTimepickerTimezone SelectTimor-LesteTitle of the fieldTitle:To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login.To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so onTo 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$sTo allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$sTo create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s.To use reCAPTCHA you must get an API key fromTo use reCAPTCHA you must get an API public key from:TogoTokelauTongaTown / CityTrinidad and TobagoTrinidad and Tobago DollarTunisiaTurkeyTurkey LiraTurkmenistanTurks and Caicos IslandsTuvaluTuvalu DollarType your password again. Type your password.U.S. Virgin IslandsURLUS DollarUgandaUganda ShillingUkraineUkraine HryvnaUnapproveUnapprovedUnapproved User NotificationUnited Arab EmiratesUnited KingdomUnited Kingdom PoundUnited StatesUnited States Minor Outlying IslandsUpdateUpgrade Profile BuilderUpload UruguayUruguay PesoUse these shortcodes on the pages you want the forms to be displayed:Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-countUse this shortcode on the page you want the form to be displayed:User Approval NotificationUser CountUser Email CustomizerUser Fields TagsUser IDUser ID / UsernameUser ID or UsernameUser IdUser ListingUser MetaUser NicenameUser RoleUser Role based RedirectsUser RolesUser Roles OrderUser not foundUser successfully approved!User successfully deleted!User successfully unapproved!User to edit:User-RoleUser-statusUserlisting SettingsUsernameUsername and EmailUsername or E-mailUsername or EmailUsernames cannot be changed.Users can register themselves or you can manually create users here.Users cannot currently register themselves, but you can manually create users here.Users successfully approved!Users successfully deleted!Users successfully unapproved!Users with Unconfirmed Email AddressUzbekistanUzbekistan SomValid tags {{reply_to}} and {{site_name}}ValidationValue must be a multiplier of %1$sValue must be greater than or equal to %1$sValue must be less than or equal to %1$sVanuatuVaticanVenezuelaVenezuela BolivarVenezuela, __( Bolivarian Republic ofVersion %sVery WeakVery weakViet NamViet Nam DongVietnamView MapView all extra shortcode parametersView the Edit-profile FormView the Registration FormView the User ListingVirgin Islands, __( BritishVirgin Islands, __( U.S.VisibilityVisible choicesVisible only to logged in users?Visible to following RolesWallis and FutunaWeakWebsiteWelcome to %1$s!


            Your username is:%2$sWelcome to %1$s!


            Your username is:%2$s and password:%3$sWestern SaharaWhether the currency symbol should be displayed after the currency name in the select option.Whether the field is required or notWhether the field should be added to the WooCommerce checkout form or notWhether to automatically log in the newly registered user or not
            Only works on single-sites without "Admin Approval" and "Email Confirmation" features activated
            WARNING: Caching the registration form will make automatic login not workWhether to redirect the user to a specific page or notWhich redirect happens depends on the following priority:With Extra Profile Fields you can create the exact registration form your project needs.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.With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts.With these you can redirect various WordPress forms and pages to pages created with profile builder.WooCommerce SyncWooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!Yahoo IMYemenYemen RialYesYes, I'd like to create a new siteYimYou are already logged in. You can change your password on the edit profile form.You are currently logged in as %1$s. %2$sYou are currently logged in as %1s. You don't need another account. %2sYou are currently logged in as %s. You are not allowed to do this.You can add / edit user roles at %1$sUsers > Roles Editor%2$s.You can add the information for the %s after you add a entryYou 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)You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.You can find it in the Profile Builder menu.You can find the default file here: %1$sYou can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces.You can't add duplicate redirects!You cannot register this user roleYou decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.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.You do not have permission to view this user list.You do not have the required user role to view this user list.You don't have any pagination settings on this userlisting!You either don't have permission for that action or there was an error!You have successfully reset your password to: %1$sYou must be logged in to edit your profile.You must enter a valid email address.You must enter a value for the date-format You must enter a value for the row number You must enter the secret key You must enter the site key You must select a field You need to activate the Userlisting feature from within the "Modules" tab!You need to specify the title of the form before creating itYou use the following tags in your URLs to redirect users to various pages.You will receive a link to create a new password via email.You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$sYour account has been successfully created!Your account has to be confirmed by an administrator before you can log in.Your account has to be confirmed by an administrator before you can use the "Password Recovery" feature.Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.Your account on %1$s has been approved!Your account on %1$s has been unapproved!Your account on {{site_name}} has been approved!Your account on {{site_name}} has been unapproved!Your email was successfully confirmed.Your password has been successfully changed!Your profile has been successfully updated!Your selected password at signupYour session has expired! Please refresh the page and try againYour session has expired! Please refresh the page and try again.Your site url will look like this:
            ZambiaZimbabweZimbabwe Dollar[%1$s] Activate %2$s[%1$s] Your new account information[{{site_name}}] Activate {{username}}[{{site_name}}] Notice of Email Change[{{site_name}}] Password Reset[{{site_name}}] Password Reset Successfullyapprove this user?approvedconfirm this email yourself?delete this user from the _signups table?delete this user?displays all users except the ones you specified the user_id fordisplays only the users that you specified the user_id fordisplays users having a certain meta-value within a certain (extra) meta-fieldemailgenerates a url of the current website homepage.herein WordPress the site url can be different then the home urlis not a number.is not a valid phone number.must be a greater than or equal to must be a multiplier of must be less than or equal to reCAPTCHArequiredresend the activation link?showthe ID of the userthe URL of the previously visited pagethe URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces.unapprove this user?unapprovedusernameusername or emailPO-Revision-Date: 2017-11-13 12:34:03+0000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=n != 1; X-Generator: GlotPress/0.1 Project-Id-Version: Profile Builder

            Herzlich Willkommen!

            Der Administrator hat Ihr Konto freigeschaltet: {{username}} auf {{site_name}}.

            Lieber Benutzer,

            leider hat der Administrator Ihrem Konto soeben die Freigabe entzogen: {{username}} auf {{site_name}}.

            Willkommen bei {{Site_name}}!

            Ihr Benutzername ist: {{Username}} und das Passwort ist: {{Passwort}}

            Willkommen bei {{site_name}}!

            Ihr Benutzername ist: {{username}} und das Kennwort: {{password}}

            Bevor Sie in Ihr Konto zugreifen können, muss ein Administrator diesen Benutzer freischalten. Sie werden per E-Mail benachrichtigt, sobald dies passiert ist.

            Neue Abonnenten für {{site_name}}.

            Benutzername:{{username}}

            E-mail:{{user_email}}

            Neue Abonnenten für {{site_name}}.

            Benutzername: {{username}}

            E-Mail :{{user_email}}

            Die Admin Genehmigung Feature wurde zum Zeitpunkt der Registrierung aktiviert. Also bitte denken Sie daran, dass dieser Benutzer genehmigt sein muss, bevor er sich anmelden kann !

            Jemand hat für das folgende Konto ein neues Kennwort angefordert: {{site_name}}
            Benutzername: {{username}}

            Wenn das ein Fehler war, wird nichts passieren

            Gehe auf folgende Seite, um das Kennwort zu erneuern:
            {{{reset_link}}}

            Bitte klicke auf den folgenden Link, um dein Benutzerkonto zu aktivieren:
            {{{activation_link}}}

            Nach der Aktivierung erhälst du eine weitere E-Mail mit deinen Anmeldeinformationen.

            Du hast dein Passwort erfolgreich zurückgesetzt: {{password}}

            {{username}} hat sein Passwort geändert.

            Das neue Passwort ist: {{password}}

            * nur verfügbar in den %1$sHobbyist und Pro-Versionen %2$s.Seriennummer:Ihre Seriennummer wird bald ablaufen, bitte %1$ erneuere deine Lizenz%2$s.Ihre Seriennummer ist abgelaufen, bitte %1$serneuern Sie Ihre Lizenz%2$s.ist ebenfalls aktiviert. Du musst es vor der Aktivierung dieser Version des Plugins deaktivieren."Admin Genehmigung" aktiviert:"Admin Genehmigung" Feature:"Genehmigung durch Admin" auf Benutzer-Rolle:"E-Mail-Bestätigung" aktiviert:"E-Mail-Bestätigung" Landeseite:"E-Mail" - Benutzer können sich nur mit Ihrer E-Mail-Adresse anmelden."Rollen Editor" aktiviert:"Benutzername und E-Mail" - Benutzer können sich mit Ihrem Benutzernamen und EMail-Adresse anmelden."Benutzername" - Benutzer können sich nur mit Ihrem Benutzernamen anmelden%1$s %2$d %1$s hat eine Kennwortänderung über die Funktion "Kennwort zurücksetzen" angefordert.
            Ihr neues Passwort ist: %2$s%1$s von %2$s%s konnte nicht gelöscht werden%s ausstehend« Zurück«« Anfang(z.B. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985) (kein Titel)** nur in der %1$sPro Version%2$s verfügbar.Extra Feldtypen stehen in der Hobbyist oder PRO Version zur Verfügung.... Auswählen...Wähle1 Artikel

            Du kannst deine Webseite hier anschauen:

            Du kannst seine Webseite hier anschauen:

            Deine Profil-Builder -Lizenz ist abgelaufen.
            Bitte %1$serneuere deine Lizenz %2$s um Zugriff auf Produkt-Downloads, automatische Updates und Support zu erhalten. %3$sJetzt erneuern und 40% Rabatt erhalten! %4$s %6$sAusblenden%7$s

            Deine Profil-Builder -Lizenz läuft am %5$s ab.
            Bitte %1$serneuere deine Lizenz %2$s um Zugriff auf Produkt-Downloads, automatische Updates und Support zu erhalten. %3$sJetzt erneuern und 40% Rabatt erhalten! %4$s %6$sAusblenden%7$s

            Deine Profil Builder Seriennummer ist ungültig oder fehlt.
            Bitte %1$s registriere deine Kopie %2$s damit du Zugang zu automatischen Updates und Support erhalten kannst. Benötigst du noch einen Lizenzschlüssel? %3$s Kaufe jetzt eine%4$s

            Umleitung
            URL
            Titel (Type)
            Titel
            Typ
            Meta Name
             erforderlich
            Benutzer ID / Benutzername 
            Weiterleitung
            URL
            Benutzer-Rolle
            Weiterleitung
            URL
            Hinweis: die Änderung des Formulartitels ändert auch den Shortcode!FEHLER: Das Passwort muss eine Mindeststärke von %s habenFEHLER: Das Passwort muss mindestens %s Zeichen lang seinFehler: Ihr Konto muss von einem Administrator bestätigt werden, bevor Sie sich anmelden können. Profil BuilderEin neues Konto wurde für Sie auf {{Site_name}} erstelltEin neuer Benutzer ist (wurde) registriert!Ein einzigartiges, automatisch generiertes ID für dieses spezielle Feld
            Sie können dies in Verbindung mit Kriterien verwenden, um dieses Element bei Bedarf aufzuziehlen
            Nicht editierbarAIMÜber DichBezahlvorgänge, Abonnements und Inhaltsbeschränkungen für Ihre Mitgliedsseite.Aktzeptiere Benutzerzahlungen, erstelle Abonnement-Pläne und schränke den Inhalt deiner Webseite ein.Account ManagementAktivierenAktivierungsschlüsselAktivierungs-LinkAktivierungs-UrlAktivEintrag hinzufügenFeld hinzufügenNeu hinzufügenNeues Feld zur Liste hinzufügenBenutzer hinzufügenFügen Sie eine Zahl von 0 bis 19 hinzu. Je höher die Zahl, desto höher der Vergrößerung.Neues Profil-Bearbeiten Formular hinzufügenNeues Registrierungsformular hinzufügenNeue Benutzerliste hinzufügenFüge Deinen HTML (oder Text) Inhalt hinzuAdd-On wurde aktiviertAdd-On wurde deaktiviert.Add-On ist aktivAdd-On ist inaktivAdd-On ist aktivAdd-OnsAdresseAdresse Linie 2Admin-BestätigungAdmin-Zulassung (*)Admin Bar EinstellungenAnpassen der Admin-E-MailsAdmin Notiz für das Zurücksetzen eines Passwortes von einem BenutzerAfghanistanAfghanistan AfghaniNach dem Editieren eines ProfilsNach dem LoginNach dem LogoutNach Profil-Änderung...Nach der RegistrierungNach der Registrierung...Nach erfolgreicher EmailbestätigungNach erfolgreichem Zurücksetzen des PasswortsWeiterleitungs-URL nach dem Login (optional):AGB-CheckboxAimAland IslandsAlbanienAlbania LekAlgerienAlle BenutzerAlle Benutzer wurden erfolgreich gelöschtVorlage für globale BenutzerlisteBenutzerberechtigungen zum Einloggen mit:Ermöglichen Sie verschiedenen Benutzerrollen, ihre spezifischen Informationen zu bearbeiten. Errichten Sie mehrere Profil Bearbeitungs-Formulare mit verschiedenen Felder für bestimmte Benutzerrollen.Erlaube Benutzern, sich mit ihrer E-Mail-Adresse oder ihrem Benutzername anzumelden, wenn diese auf deine Seite zugreifen möchten. Ermöglicht dem User, sein Passwort im Front-End-Bereich unter Anwendung von %s wiederherzustellenErlaube deinen Benutzern, bezahlte Konten mit Profil Builder /strong> zu haben. %1$sFinde heraus, wie>%2$s %3$sAusblenden %4$sErlaubte WerteErlaubte Bild-ExtensionsZulässige Dateierweiterungen beim HochladenErlaubte Zeit (in Sekunden) um Erfolgsmeldungen anzuzeigenAmerican SamoaEin Administrator hat gerade Ihr Konto auf %1$s (%2$s) genehmigt.Ein Administrator hat Ihr Konto auf %1$ s (%2$ s) nicht genehmigt. Es ist ein Fehler aufgetreten, bitte versuchen Sie es später noch einmal.AndorraAngolaAnguillaAntarktisAntigua und BarbudaAnwendenGenehmigenGenehmigtBist du sicher, dass du das löschen möchtest?ArgentinienArgentina PesoArmeniaArubaAruba GuilderAls Administrator kannst du deine Berechtigungen nicht ändern.AufsteigendAustralienAustralia DollarÖsterreichAutoren Archiv ( http://seitenname.com/autor/admin )Automatisch einloggenVerfügbare TagsIn allen Versionen verfügbarVerfügbar in den Versionen Hobbyist und ProVerfügbare Tags für dynamische URLsProfil-BildProfilbild-GrößeProfilbild-Größe (alle Benutzereinträge)Profilbild-Größe (Einzel-Benutzeranzeige)Profilbild hochladenProfilbild oder GravatarAserbaidschanAzerbaijan New ManatZurückBahamasBahamas DollarBahrainBangladeshBangladeshi takaBarbadosBarbados DollarGrundlegende InformationenWunderschöne und voll anpassbare Registrierformulare mit der Nutzung von %s Shortcode.Bevor du auf dein Konto %1S zugreifen kannst, muss es von einem Administrator genehmigt werden. Über eine Bestätigung wirst du per E-Mail benachrichtigt.Bevor du auf dein Konto %1S zugreifen kannst, musst du deine E-Mail-Adresse bestätigen. Bitte überprüfe deinen Posteingang und klicke auf den Aktivierungslink.Bevor du auf dein Konto zugreifen kannst, muss es von einem Administrator genehmigt werden. Du wirst per E-Mail darüber benachrichtigt.VerhaltenWeissrusslandBelarus RubleBelgienBelizeBelize DollarBeninBermudaBermuda DollarBhutanRechnungsadresseRechnungsfelderRechnungsfelder-NameRechnungsfelder-SortierungLebenslaufBlog DetailsBlog Details - wird ausschließlich auf der Registrierungseite angezeigt!Blog URLBolivienBolivien BolivianoBolivia, __( Plurinational State ofBonaire, Saint Eustatius and SabaBonaire, __( Sint Eustatius and SabaBosnien und HerzegowinaBosnisch-Herzegowinische Konvertible MarkBeide Felder sind leer.BotswanaBotswana PulaBouvet InselBrasilienBrazil RealBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBrunei DarussalamBrunei Darussalam DollarBulgarienBulgaria LevBulk.AktionenBurkina FasoBurundiCabo VerdeKambodschaCambodia RielKamerunKann folgende dynamische Tags enthalten: {{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}KanadaCanada DollarAbbrechenCape VerdeKaimaninselnCayman Islands DollarZentralafrikanische RepublikTschadÄndern der Überschrift Feldgröße auf Front-End-FormularenGeänderte E-Mail-Adresse BenachrichtigungÜberprüfe dein E-Mail Postfach für den Bestätigungslink.CheckboxChileChile PesoChinaChina Yuan RenminbiWählen Sie das "Profil editieren"-Formular, welches im Kundenkonto (My Account) angezeigt werden soll:Wählen Sie das Registrierungsformular, welches im Kundenkonto (My Account) angezeigt werden soll:Wähle, wie Mehrfachauswahlen die Resultate beeinflussenWähle eins von den unterstützten Feldtypen.Wählen Sie eines der unterstützten Felder, die Sie verwalten aus manuell installieren.Die Erweiterung konnte nicht installiert werden. Versuchen Sie es noch einmal oder installieren Sie die Erweiterung manuell.StaatLand auswählenKroatienCroatia KunaKubaCuba PesoCuraçaoWährung wählenBenutzerdefinierte UmleitungenPassen Sie die Formulare wie Sie wollen an (*)ZypernTschechienCzech Republic KorunaÜbersichtsseite (leitet Benutzer weiter, wenn sie auf diese Seite wollen)Datum-FormatDatumsauswahlDeaktivierenVorgabeStandard-InhaltStandard "Profil editieren"-FormularStandard Breitengrad (Latitude)Standard Längengrad (Longitude)StandardoptionStandard-Option(en)Standard RegistrierungsformularStandard-AnmeldungStandard-Anmeldung & Anmeldung mit E-Mail-BestätigungStandardrolleStandard-SortierkriterienStandard-SortierreihenfolgeStandardwertStandardmäßige WP AnmeldungStandard WordPress "Passwort wiederherstellen"Standardmäßige WP RegistrierungStandard ZoomstufeVorgabe-Beschränkung für diese Repeater-Gruppe.
            Für unbegrenzt bitte auf 0 lassen.Voreinstellung des FeldesStandardwert des FeldesStandardwert der Textfeld-KomponenteLöschenAlles löschenLösche alle EinträgeDieses Element löschenDemokratische Republik KongoDänemarkDenmark KroneAbsteigendBeschreibungDeaktiviertMeldungen anzeigenAnzeigenameName anzeigen alsName öffentlich anzeigen alsDen Namen öffentlich anzeigen - erscheint nur auf der Edit Profile Seite!Zeige auf PB FormularenIm WooCommerce Bestellprozess anzeigenZeige auf standardmäßigen WP FormularenZeigt die Bezahldaten des Kunden auf der Seite an.Zeigt die Lieferadresse des Kunden auf der Seite an.DjiboutiMöchtest duMöchtest du alle ausgewählten Benutzer genehmigen?Möchtest du alle ausgewählten Benutzer löschen?Möchtest du alle ausgewählten Benutzer verwehren?DominicaDominikanische RepublikDominican Republic PesoJetzt herunterladenDownloaden und installieren...E-MailFEHLERFEHLER:East Caribbean DollarEast TimorEinfache editierbare Vorlagen für die Auflistung Ihrer Website-Benutzer sowie für das Erstellen einzelner Benutzer-Seiten. Shortcode basiert , bietet viele Möglichkeiten, Ihre Auflistungen anzupassen.EcuadorBearbeitenProfil bearbeitenFeldgruppe bearbeitenProfil-Bearbeiten Formular bearbeitenAnmeldeformulare bearbeitenBenutzerliste bearbeitenDieses Element bearbeitenProfil-Bearbeiten FormularProfil-Bearbeiten Formularz.B. (###) ####-####ÄgyptenEgypt PoundEl SalvadorEl Salvador ColonBeseitige schwache Kennwörter insgesamt, indem du eine minimale Kennwortlänge und Durchsetzung einer bestimmten Passwortstärke aktivierst.E-MailE-Mail AdresseE-Mail-BestätigungE-Mail AnpassungenE-Mail BetreffEmailvorlagenDie E-Mail-Benachrichtigung wurde dem Benutzer erneut geschickt.Leeres Feld kann nicht auf eine richtige Telefonnummer geprüft werden.Zusätzliche Features aktivierenEine Beschränkung für von Benutzern in Frontend-Formularen generierten Feldern aktivierenAktiviere deine ModuleGeben Sie eine (ausführliche) Beschreibung der Option ein die die Endbenutzer lesen können
            OptionalGeben Sie eine durch Kommas getrennte Liste der Beschriftungen ein.
            Sie ist für den Benutzer sichtbar.Geben Sie 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.Gib eine kommagetrennte Liste von Werten ein
            Diese kann alles mögliche enthalten, da sie vor den Benutzern verborgen ist, sollte aber keine Sonderzeichen oder Apostrophe enthaltenGeben Sie eine detaillierte Beschreibung der Bedingungen der Vereinbarung für den Benutzer zu lesen ein.
            Links können mit standard-HTML-Syntax eingefügt werden: < a href ="custom_url">custom_text </a>Geben Sie einen Wert (zwischen 20 und 200) für die Größe des 'Profilbilds' ein.
            Falls nicht angegeben, wird er standardmäßig auf 100 gesetztGeben Sie die minimalen Zeichen ein, die das Kennwort haben sollten. Lassen Sie es leer für keine UntergrenzeGoogle Maps API Schlüssel angeben ( API Schlüssel generieren ). Falls mehr als ein Kartenfeld in einem Formular vorhanden ist, wird der API Schlüssel der ersten Karte benutzt.Equatorial GuineaEritreaFehlermeldungEstlandEstonia KroonÄthiopienEuroAlles, was du benötigst, um deine Benutzer zu verwalten ist wahrscheinlich schon über die Pro-Module verfügbar.Beispiel:Excerpt-AnzeigeVorhandene SeitenErgebnisse ausdehnenExtra-FeaturesZusatzfunktionenZusätzliche Profil-Felder erhälst du mit den Hobbyist oder PRO Versionen. Zusätzliche Shortcode-ParameterFacette MetaFacet TypFacettierte MenüsFalklandinselnFalkland Islands (Malvinas)Falkland Islands (Malvinas) PoundFaroe IslandsFunktionen, die Ihnen mehr Kontrolle über Ihre Benutzer und erhöhte Sicherheit bietet und gegen Registrierungs-Spam von Nutzern hilft.FeldFeldnameFeld-EigenschaftenFeldtitelFijiFiji DollarErfahre mehr über die PRO-ModuleFinnlandVornameVor- / NachnameVornameFür die moderne BenutzerinteraktionAus Sicherheitsgründen müssen Sie die Remote-IP eingeben um ReCAPTCHA zu benutzen!Formular-ShortcodeFrankreichKostenlosFrench GuianaFrench PolynesiaFrench Southern TerritoriesReibungsloser Login, indem man %s oder ein Widget benutzt.Von (Name)Von (Antwort auf E-Mail)GabonGambiaAllgemeine GrenzeAllgemeine EinstellungenGenerische UploadsGeorgienDeutschlandNeues Passwort anfordernErste Schritte mit extra FelderGhanaGhana CedisGibraltarGibraltar PoundGlobale Weiterleitungen"Zurück"-LinkGoogle Maps API SchlüsselGriechenlandGrönlandGrenadaGuadeloupeGuamGuatemalaGuatemala QuetzalGuernseyGuernsey PoundGuineaGuinea-BissauGuyanaGuyana DollarHTMLHTML InhaltHaitiÜberschriften TagHeard Island and McDonald IslandsHier können Sie die verfügbaren Module für Profil-Generator aktivieren/deaktivieren.VerbergenHoly See (Vatican City State)HondurasHonduras LempiraHong KongHong Kong DollarWie funktioniert das?UngarnHungary ForintIDIslandIsländische KroneGefällt dir %1$s, dann bewerte uns bitte auf WordPress.org. Mehr glückliche Benutzer, bedeuten mehr Features, weniger Fehler und besseren Support für jeden.Wenn Sie diese Version vom Profile Builder registrieren, erhalten Sie Informationen zu Upgrades, Patches und technischen Support.Wenn du verschiedene Felder in den Anmelde- und Profilbearbeitungs-Formularen verwenden möchtest, benutze bitte die Mehrfach-Registrierungs und Profilbearbeitungsformular Module,inaktivFehlerhafte TelefonnummerIndienIndia RupeeIndividuelle Benutzer-WeiterleitungenEinzelne Umleitungen in Shortcodes definiert; der Redirect_priority = "top" Parameter kann in jedem Shortcode hinzugefügt werden, dann haben die Shortcode Umleitungen Vorrang vor allen anderen Umleitungen.IndonesienIndonesia RupiahEingabe / versteckte EingabeJetzt installierenInstallation abgeschlossenUngültiger Aktivierungsschlüssel!Ungültiger Schlüssel!Ungültiger Benutzername.IranIran RialIran, __( Islamic Republic ofIrakIrlandIsle of ManIsle of Man PoundIsraelIsrael ShekelItalienElfenbeinküsteJabberJabber / Google TalkJamaicaJamaica DollarJapanJapan YenJerseyJersey PoundJordanienKasachstanKazakhstan TengeSperre deine Benutzer aus dem WordPress-Dashboard aus und leite sie nach dem Login oder nach der Registrierung auf die Startseite weiter.KeniaKiribatiKorea (North) WonKorea (South) WonKorea, __( Democratic Peoples Republic ofKorea, __( Republic ofKosovoKuwaitKirgisistanKyrgyzstan SomBeschriftungBeschriftung Lao Peoples Democratic RepublicLaosLaos KipEnde »»NachnameNachnameLettlandLatvia LatWeitere InformationenFür unbeschränkt auf 0 stehen lassenLeer lassen für keinen maximalen WertLeer lassen für keinen minimalen WertLeer lassen für keine BeschränkungenLibanonLebanon PoundLesothoLiberiaLiberia DollarLibyaLiechtensteinLimitLimit pro Rolle"Limit erreicht" NachrichtListenansichtLitauenLithuania LitasLaden Sie die CSS-Datei vom Profil-Generator in die Front-End hochAusloggenAusloggen »Aus diesem Konto ausloggenAus diesem Konto ausloggen.LoginLogin ( wp_login.php )Anmeldung soll über die E-Mail-Adresse erfolgen. Dieses Feld erscheint NICHT im Front-End! (Du kannst diese Einstellungen unter der Registerkarte "%s" ändern)Login mit E-Mail oder BenutzernameAusloggenPasswort vergessen ( wp-login.php?action=lostpassword )Passwort vergessenPasswort vergessen?LuxemburgM j, Y @ G:iMacaoMacedoniaMacedonia DenarMacedonia, __( the former Yugoslav Republic ofMadagaskarStelle sicher, dass Benutzer sich mit echten E-Mail-Adressen anmelden. Bei der Registrierung erhalten die Benutzer eine Benachrichtigung an diese E-Mail-Adresse, welche diese bestätigen müssen.MalawiMalaysiaMalaysia RinggitMaldivesMaliMaltaVerwalten von Standard- und Extra FelderFelder verwaltenVerwalte ein Feld oder eine Gruppe von Feldern, die wiederholbar sein wird.KarteKartenhöheMarshall IslandsMartiniqueMauritaniaMauritiusMauritius RupeeMaximal erlaubter ZahlenwertMaximal erlaubter Zahlenwert (0, um nur negative Zahlen zu erlauben)MayotteDurchschnittlichMember ManagementMeta-name MexikoMexico PesoMicronesiaMicronesia, __( Federated States ofMinimaler ZahlenwertMinimal erlaubter Zahlenwert (0, um nur positive Zahlen zu erlauben)Minimale Kennwortlänge und Feldstärke-MessgerätMinimale Kennwortlänge:Minimale Passwortstärke:Mindestlänge: %d ZeichenMinimal benötigte Version von Profile Builder:ModuleMoldawienMoldova, __( Republic ofMonacoMongoleiMongolia TughrikMontenegroMontserratMehrWeitere DetailsMehr InfoUrl für weitere InformationenMehr...MarokkoMozambiqueMozambique MeticalMehrfache Profilbearbeitungs-FormulareMehrfache AnmeldeformulareUmleitungseinstellungen für Mehrfache Anmelde- und ProfilbearbeitungsformulareEs muss eine gültige E-Mail-Adresse oder der Tag {{reply_to}} sein der die Standardeinstellung für den E-Mail des Administrators ist.MyanmarNameName/BeschreibungNamibiaNamibia DollarErgebnisse eingrenzenNauruNepalNepal RupeeNiederlandeNetherlands Antilles GuilderNeukaledonienNeues Profil-Bearbeiten FormularNeues RegistrierungsformularNeue BenutzerlisteNeuseelandNew Zealand DollarNeuer Abonnent auf %1$s.

            Benutzername:%2$s
            E-Mail: %3$s
            Nächste Seite » NicaraguaNicaragua CordobaSpitznameNigerNigeriaNigeria NairaNiueNeinKein Profil Bearbeitungs-Formular wurde gefundenKeine Profil-bearbeitungs Formulare wurden im Papierkorb gefundenKein Registrierungsformular gefundenKeine Registrierungsformulare wurden im Papierkorb gefundenKeine Benutzereinträge gefundenKeine Benutzerliste im Papierkorb gefundenKeine Einträge wurden gefunden.Keine Einstellungen verfügbarEs wurden keine Ergebnisse gefunden!NichtsNorfolk IslandNordkoreaNorthern Mariana IslandsNorwegenNorway KroneNicht kompatibel mit Profile BuilderNicht kompatibel mit deiner Version von Profile Builder.Du hast eine Kopie von %s erworben. Du solltest dir die Zeit nehmen, um deine Seriennummer zu registrieren.NummerZahlenschrittwertBeitragsanzahlAnzahl Benutzer/SeiteOmanOman RialNur Administratoren können dieses Feld beim editieren von Profilformularen sehen.Nur ein Administrator kann neue Benutzer hinzufügen.OptionenExistierende überschreibenPB LoginPB Passwort wiederherstellenPB RegistrierungSeitennummerierungPaid & Free SubscriptionsBezahlte KontenPaid Member Subscriptions - eine kostenloses WordPress ErweiterungPakistanPakistan RupeePalauPalestine, __( State ofPalästinensisches TerritoriumPanamaPanama BalboaPapua New GuineaParaguayParaguay GuaraniKennwortPasswort-FundgrubeKennwort Wiederherstellungs-URL (optional):E-Mail für die PasswortzurücksetzungPasswort zurücksetzen erfolgreich EmailZurücksetzen des Kennworts "%1$s"Kennwort erfolgreich zurückgesetzt für %1$s auf "%2$s"Payment ManagementPersonalisiere alle E-Mails, die an Benutzer oder Administratoren gesendet werden. Bei der Registrierung, E-Mail-Bestätigung, Admin Genehmigung / un-Zulassung.PeruPeru Nuevo SolPhilippinenPhilippines PesoTelefonFormat der TelefonnummerPitcairnBitte füge den Google Maps API Schlüssel für dieses Feld hinzu.Bitte prüfe, ob du die richtige E-Mail Adresse angegeben hast.Bitte überprüfe, ob du den richtigen Benutzernamen eingegeben hast.Bitte wählen Sie ein anderes Feld aus. Dieses ist bereits im Formular vorhanden (muss einzigartig) sein. Bitte gib das reCAPTCHA (korrekt) ein.Bitte gib einen eindeutigen Feldtitel ein. Bitte gib einen gültigen Benutzernamen ein.Bitte gib einen Wert für das erforderliche Feld einBitte gib nur Zahlen einBitte gib deine Emailadresse ein.Bitte gib deinen Benutzernamen oder deine E-Mail Adresse ein.Bitte gib deine Benutzer ID oder deinen Benutzernamen an.Bitte wählen Sie mindestens eine Benutzerrolle Bitte versuche es mit einer anderen!Die Erweiterung wurde aktiviert.Die Erweiterung wurde deaktiviert.Die Erweiterung ist aktivDie Erweiterung ist inaktivErweiterung aktivPolenPoland ZlotyPortugalPLZBeiträgeDiese Beitragstypen werden in der Auswahl angezeigt.Leistungsstarke Module (*)Datenschutz: Ich möchte, dass meine Website in Suchmaschinen und in öffentlichen Verzeichnissen rund um dieses Netzwerk angezeigt wird.Profile Builder Login WidgetProfile Builder RegistrierungPuerto RicoKatarQatar RiyalOptionsfelderZufällig (sehr langsam bei großen Datenbanken > 10K Benutzer)Empfohlene ErweiterungenPasswort wiederherstellenWeiterleitungStandard WordPress Formulare und Seiten umleitenStandard WordPress Formulare und Seiten umleitenUmleitungs TypUmleitungs URLRegistrierenRegistrierung ( wp-login.php?action=register )Version registrierenRegistrieren Sie Ihre VersionRegistrierunggseite-URL (optional):AngemeldetRegistrierungRegistrierung & Profil-BearbeitungRegistrierungsdatumRegistrierungsformularRegistrierungsformulareAnmeldung über Admin-FreischaltungRegistrierung mit E-Mail-BestätigungDenke daran, dass die Feld-Wert Kombination in der Datenbank vorhanden sein muss.LöschenAlle Filter entfernenKennwort wiederholenWiederholbare Felder gespeichert!Wiederholte FeldgruppeWiederholungsfelderAntworten aufKongoErforderlichErforderliches Telefonnummernformat:Aktivierungs-E-Mail erneut sendenZurücksetzungs-KeyZurücksetzungs-LinkPasswort zurücksetzenZurücksetzungs-URLRestrict ContentBeschränken Sie die Benutzerlisten nur für diese ausgewählten Rollen
            Wenn nicht angegeben, wird standardmäßig auf allen vorhandenen Rollen die Beschränkung gesetztInstallation erneut versuchenReunionRolleRollen anzeigenRumänienRomania New LeuZeilenanzahlRussiaRussia RubleRusslandRwandaSaint BarthelemySaint HelenaSaint Helena PoundSaint Helena, __( Ascension and Tristan da CunhaSaint Kitts and NevisSaint LuciaSaint MartinSaint Martin (französisch)Saint Pierre and MiquelonSt. Vincent und die GrenadinenSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaudi Arabia RiyalSpeichernÄnderungen speichernEinstellungen speichernDie Rechnungsfelder-Namen sichernSichere die Rechnungsfelder-Reihenfolge von den Rechnungsfelder-CheckboxenDIe Verrsandfelder-Namen sichernSichere die Versandfelder-Reihenfolge von den Rechnungsfelder-CheckboxenSpeichere die Reihenfolge der Benutzerrollen-CheckboxenSuchenFelder suchenOrte suchenSucheinstellungenBenutzer suchenSuche Benutzer über alle FelderAlle Felder durchsuchenSuchen Sie nach Profil Bearbeitungs-FormulareRegistrierungsformulare durchsuchenBenutzerliste durchsuchenGeheimer SchlüsselAuswahlAlle auswählenDatei auswählenWähle eine Benutzerrolle aus.Benutzer-Rollen auswählen, welche durch einen Admin genehmigt werden sollen.Auswählen auf welchen Profile Builder Formularen reCSelect on which Profile Builder forms reCAPTCHA angezeigt werden soll.Wählen Sie die Standard WordPress Formulare, auf denen ein reCAPTCHA angezeigt werden sollWählen Sie das "Profil editieren"-Formular aus Profile Builder, welches im Kundenkonto (My Account) von WooCommerce angezeigt werden soll:Wählen Sie das Registrierungsformular, welches im Kundenkonto (My Account) angezeigt werden soll.
            Dadurch wird auch das Profile Builder Loginformular im Kundenkonto angezeigt.Wählen Sie, welche WooCommerce Rechnungs-Felder für den Benutzer (Drag & Drop für eine neue Reihenfolge) anzuzeigen und erforderlich sein solltenWählen Sie, welche WooCommerce Versand-Felder für den Benutzer (Drag & Drop für eine neue Reihenfolge) anzuzeigen und erforderlich sein solltenWähle, welche Benutzerrollen dem Benutzer gezeigt werden sollen (Drag & Drop zum Neusortieren)Bei Auswahl "Ja", wird das Feld in der Liste eingefügt aber es werden alle anderen Felder aus der Datenbank, die den gleichen Meta Namen haben, überschrieben.
            Benutzen auf eigene Gefahr!Senden Sie mir diese Anmeldeninformationen per E-Mail.SenegalSerbiaSerbia DinarRolle einstellenEigene Fehlermeldung angeben, die dem Nutzer angezeigt wird.Legen Sie die Profilbildgröße für alle Benutzer-Listen fest.Setzen Sie die Profilbild-Größe (nur für die Einzel-Benutzeranzeige)Festlegen der Standard-Sortierungskriterien
            Sie können temporär für jede neue Sitzung geändert werden.Festlegen der standard Sortierungskriterien
            Dieses kann temporär für jede neue Sitzung geändert werdenBestimme die Anzahl der Benutzer, die pro Seite auf der Benutzerliste angezeigt werden sollen.Erstelle eine sich wiederholende Gruppe von Feldern in Registrier- und Profil-Formularen. Beschränke die Anzahl der Gruppen für jede Benutzerrolle.Richten Sie mehrere Anmeldeformulare mit verschiedenen Feldern für bestimmte Benutzerrollen ein. Erfassen Sie verschiedene Informationen von verschiedene Arten von Benutzern.SeychellenSeychelles RupeeFülle ein paar biographische Informationen in deinem Profil aus. Diese können auch öffentlich angezeigt werden.An eine andere Adresse liefern?LieferadresseVersand FelderVersandfelder-NameVersandfelder-SortierungShortcodeAnzeigenAlle zeigenWährungssymbol anzeigenBeitragstyp anzeigenZeige einen Umschalt-Link nach x Auswahlmöglichkeiten. Lasse es leer, um alle anzuzeigenAlle Termine anzeigenAnzeigen/Verbergen der Admin Bar auf dem Front-EndSierra LeoneAnmeldungsdatumSingaporeSingapore DollarVorlage für EinzelbenutzerlisteSint MaartenSt. Martin (Niederländischer Teil)SeitenschlüsselWebseite NameWebseiten TitelWebseiten URL SlugWebseite-URLSlowakeiSlowenienSolomon IslandsSolomon Islands DollarSomaliaSomalia ShillingJemand hat angefragt, dass das Passwort für dieses Konto zurückgesetzt werden soll: %1$s
            Wenn diese Anfrage nicht von die ausgeht, bitte ignoriere diese E-Mail einfach und es geschieht nichts.
            Um dein Passwort zurückzusetzen, rufe folgenden Link auf: %2$sEtwas ist falsch gelaufen, wir konnten uns nicht mit dem Server verbinden. Bitte versuche es später erneut.Irgendetwas ging schief. Bitte probieren Sie es erneut.Tut uns leid aber du hast keine Berechtigung dazu!Dieser Dateityp ist für dieses Feld nicht erlaubt.Schlagwörter-SortierungSüdafrikaSouth Africa RandSouth Georgia and the South Sandwich IslandsSüdkoreaSüdsudanSpanienGib die URL der Seite ein, auf der die Benutzer nach der Registrierung mit diesem Formular umgeleitet werden sollen.
            Verwende dabei folgendes Format: http://www.meineseite.comGeben Sie die URL der Seite ein, zu der die Benutzer umgeleitet werden sollten, sobald sie ihr Profil mit diesem Formular aktualisiert haben
            verwenden Sie folgendes Format: http://www.meineWebseite.comGeben Sie die Datei-Erweiterung(en) ein, die Sie für den Upload erlauben möchten
            z. B.: .ext1,.ext2,.ext3
            Bei keiner Eingabe werden alle von WordPress erlaubten Datei-Erweiterungen gesetzt: (.*)Gib die Datei-Erweiterung(en) ein, die du für den Upload erlauben möchtest.
            z.B.: .ext1,.ext2,.ext3
            Bei keiner Eingabe werden die Standard-Erweiterungen gesetzt: .jpg,.jpeg,.gif,.png (.*)Gib das Format an, das in der Datumsauswahl angezeigt werden soll. Gültige Optionen: 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, @
            Vorgabe, wenn nicht anders gewählt: mm/dd/yyGeben Sie die Anzahl der Zeilen für ein Text-Feld ein
            Wenn nicht angegeben, wird dieser standardmäßig auf 5 gesetzt.Geben Sie die Option, die standardmäßig überprüft werden sollen, ein.
            Wenn mehrere Werte vorhanden sind, trennen Sie diese mit einem Komma.Geben Sie die Option ein, die standardmäßig ausgewählt sein soll.Geben Sie 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.Zeitformat festlegen.Sri LankaSri Lanka RupeeBundeslandStatusSchnelle Schritt für Schritt EinrichtungSchrittwert 1 erlaubt nur ganze Zahlen, 0.1 erlaubt Zahlen und Nummern mit einer DezimalstelleDirektes Profilbearbeitungsformular mit dem folgenden Shortcode: %s .StärkeanzeigesicherMitgliederverwaltungSudanSurinameSuriname DollarSvalbard and Jan MayenSwazilandSchwedenSweden KronaSchweizSwitzerland FrancSyrienSyria PoundSyrienTaiwanTaiwan New DollarTaiwan, __( Province of ChinaTadschikistanTanzaniaTanzania, __( United Republic ofNutzungsbedingungenTextbereichThailandThailand BahtDieses Feld wurde bereits in dieser Form hinzugefügt. Dieser Meta-Name wird bereits verwendet Dieser Benutzername ist bereits aktiviert worden!Das "Admin Approval" Feature war zum Zeitpunkt der Registrierung aktiv, also bitte denke daran, dass man diesen Benutzer genehmigen muss, bevor er sich anmelden kann!Das Konto %1s wurde erfolgreich erstellt!Der beste Weg, um Front-End-Registrierung hinzuzufügen, ist der, die Profil und Login-Formulare zu bearbeiten.Die eingegebene E-Mail-Adresse existiert nicht!Die angegebene E-Mail Adresse wurde als ungültig eingestuft.Die eingegebene Profilbild-Größe ist nicht zwischen 20 und 200 Die eingegebenen Profilbild-Größe ist nicht numerisch Die eingegebenen Passwörter stimmen nicht überein!Die eingegebene Nummer der Zeile ist nicht numerisch Der eingegebene Wert für den Datums-picker ist kein gültiges Datumsformat Die folgende Option übereinstimmt nicht mit denen, aus der Optionsliste: %s Die folgende Option(en) übereinstimmen nicht mit denen aus der Optionsliste :%s Die Höhe der anzuzeigenden KarteAuf der Karte angezeigter Breitengrad (Latitude) falls keine Pins vorhanden sind.Auf der Karte angezeigter Längengrad (Longitude) falls keine Pins vorhanden sind.Die maximale Anzahl von Feldern wurde erreicht.Der Meta-Name kann nur Kleinbuchstaben, Zahlen, _ , - und keine Leerzeichen beinhalten. Der Meta-Name darf nicht leer sein Das Passwort muss eine Mindeststärke von %s habenDas Passwort muss mindestes %s Zeichen habenDas eingegebene Kennwort ist falsch.Die Kennwörter stimmen nicht überein.Die Popup-Nachricht, die beim Erreichen der Grenze für Repeater Gruppen angezeigt wird.Die Rolle des erstellten Benutzers ist auf die Vorgabe gesetzt. Nur ein Admin kann einen Benutzer mit der diesem Formular zugeordneten Rolle registrieren.Der geheime Schlüssel von Google, www.google.com/recaptchaDer ausgewählte Benutzer konnte nicht gelöscht werdenDie ausgewählten Benutzer wurden aktiviertDie ausgewählten Benutzer haben ihre Aktivierung E-Mails erneut gesendet bekommen. Die Seriennummer konnte nicht überprüft werden, da diese abgelaufen ist!Die Seriennummer konnte nicht überprüft werden, weil der Prozess einen Time-Out bekam. Dies kann passieren, wenn der Server nicht verfügbar ist. Bitte versuche es später erneut!Die eingegebene Seriennummer konnte nicht überprüft werden!Die Seriennummer wird bald ablaufen!Die Seriennummer wurde erfolgreich überprüft!Der Shortcode wird verfügbar sein, nachdem Sie dieses Formular veröffentlichen.Der Seitenschlüssel von Google, www.google.com/recaptchaDie Benutzeranzeigen werden nur für die angemeldeten Benutzer sichtbar sein Die Benutzeranzeige wird nur für folgende Rollen sichtbar sein.Der eingegebene Benutzername existiert nicht!Benutzernamen können nicht geändert werden.Das vom Benutzer bei der Registrierung gewählte KennwortBitte alle erforderlichen Felder korrekt ausfüllen!Es gab einen Fehler bei der Durchführung dieser Aktion!Es ist ein Fehler aufgetreten, beim Versuch, den Benutzer zu aktivieren.Ein Fehler ist aufgetreten, während versucht wurde, den Benutzer zu aktivieren.Es gab einen Fehler beim Versuch den Aktivierungslink zu senden%1$s!Die Weiterleitungen werden nach einer erfolgreichen Aktion ausgelöst, wie z.B. einer Registrierung oder einem Login.Diese Einstellungen werden nach dem Abspeichern auch auf der Einstellungs-Seite "Admin-E-Mail Anpassungen" angezeigt.Diese Einstellungen werden auch auf der "Benutzer E-Mail Kustomisierung" Einstellungs-Seite beim Speichern repliziert.Diese E-Mail-Adresse ist bereits im Einsatz.Diese E-Mail ist bereits reserviert worden, um bald verwendet zu werden.Dieses Feld hat eine bedingte Logik aktiviertDieses Feld ist erforderlichDieses Formular ist leer.Mit diesem Login-Widget kannst du ein Anmeldeformular in der Sidebar hinzufügen.Diese Nachricht ist nur für Administratoren sichtbarDieser Benutzername ist bereits vorhanden.Dieser Benutzername ist bereits aktiviert!Dieser Benutzername ist bereits reserviert, um bald verwendet zu werden.Der Benutzername ist ungültig, da dieser ungültige Zeichen enthält.Dieser Benutzername ist jetzt aktiv!Das funktioniert nur mit Front-end Formularen. Wird empfohlen, um Standard Wordpress Registrierungen mittels des "Custom Redirects" zu einer Profile Builder Registrierung umzuleiten.ZeitformatZeit wählenZeitzone auswählenTimor-LesteTitel des FeldesTitel:Klicken Sie bitte hier, um Ihr Benutzerkonto zu aktivieren:

            %s%s%s

            Im Anschluss erhalten Sie eine weitere Email mit Ihren Logindaten.Um mehrere Dezimalstellen zu erlauben, benutze z.B. 0.01 (für 2 Dezimalstellen) usw.Damit sich Benutzer auf Ihre 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$sDamit sich Benutzer auf deiner Website über Profile Builder registrieren können, musst du zunächst die Benutzerregistrierung ermöglichen. Gehe dazu unter %1$sEinstellungen -> Allgemein%2$s und stelle unter Mitgliedschaft sicher, dass das Kontrollkästchen "Jeder kann sich registrieren" angekreuzt ist . %3$sentlassen%4$sUm eine Seite mit auf diesem Blog registrierten Benutzern zu erstellen, füge den folgenden Shortcodein in eine von dir gewählte Seite ein: %s.Um ReCAPTCHA zu verwenden müssen Sie einen API-Schlüssel von hier besorgen:Um ReCAPTCHA zu verwenden muss man einen öffentlichen API-Schlüssel von hier hohlen:TogoTokelauTongaOrtTrinidad und TobagoTrinidad and Tobago DollarTunesienTürkeiTurkey LiraTurkmenistanTurks and Caicos IslandsTuvaluTuvalu DollarBitte gib dein Kennwort erneut ein.Bitte gib dein Passwort ein.Amerikanische JungferninselnURLUS DollarUgandaUganda ShillingUkraineUkraine HryvnaAblehnenVerwehrtNicht genehmigte BenutzerbenachrichtigungVereinigte Arabische EmirateGrossbritannien (Vereinigtes Königreich)United Kingdom PoundUSAUnited States Minor Outlying IslandsAktualisierenProfile Builder upgradenHochladenUruguayUruguay PesoVerwenden Sie folgende Shortcodes auf den Seiten, auf denen Sie die Formulare angezeigt haben möchten:Benutze dieses in Verbindung mit WordPress Funktionen, um den Wert auf der von dir gewählten Seite anzuzeigen.
            . Automatisch ausgefüllt, aber in einigen Fällen bearbeitbar (dann muss es einzigartig sein)
            Das Ändern kann bei großen Benutzerzahlen sehr lange dauern.Verwenden Sie diesen Shortcode auf der Seite, wo das Formular angezeigt werden soll.Benutzer GenehmigungsbenachrichtigungBenutzeranzahlAnpassen der Benutzer-E-MailsBenutzerfelder-SchlagwörterBenutzer IDBenutzer ID / BenutzernameBenutzer ID oder BenutzernameBenutzer-IdBenutzer-ListeBenutzer-MetaBenutzernameBenutzerrolleBenutzerrollen basierte WeiterleitungenBenutzerrollenBenutzerrollen SortierungDer Benutzer wurde nicht gefunden.Benutzer erfolgreich genehmigt!Benutzer erfolgreich gelöscht!Benutzer erfolgreich abgelehnt!Benutzer editierenBenutzerrolleBenutzer-StatusEinstellungen für BenutzerlisteBenutzernameBenutzername und E-MailBenutzername oder E-MailBenutzername oder E-Mail-AdresseBenutzernamen können nicht geändert werden.Benutzer können sich selbst anmelden, oder du kannst Benutzer von Hand hier erstellen.Benutzer können sich derzeit selbst nicht registrieren, aber du kannst Benutzer hier manuell erstellen.Benutzer wurden erfolgreich genehmigt!Benutzer wurden erfolgreich gelöscht!Benutzer wurden erfolgreich verwehrt!Benutzer mit unbestätigter E-Mail-AdresseUzbekistanUzbekistan SomGültige Tags {{reply_to}} und {{site_name}}ValidierungWert muss ein Vielfaches von %1$s seinWert muss größer oder gleich %1$s seinWert muss kleiner oder gleich %1$s seinVanuatuVatikanVenezuelaVenezuela BolivarVenezuela, __( Bolivarian Republic ofVersion %sSehr schwachSehr unsicherViet NamViet Nam DongVietnamKarte ansehenAlle zusätzlichen Shortcode-Parameter anzeigenDas Profil-Bearbeiten Formular anzeigenRegistrierungsformular ansehenBenutzerliste anzeigenVirgin Islands, __( BritishVirgin Islands, __( U.S.SichtbarkeitSichtbare AuswahlNur für angemeldete Benutzer sichtbar?Für folgende Rollen sichtbarWallis und FutunaUnsicherWebseiteWillkommen bei %1$s!


            Ihr Benutzername lautet:%2$sWillkommen bei %1$s!


            Ihr Benutzername ist: %2$s und das Kennwort: %3$sWestsaharaOb das Währungssymbol nach dem Währungsnamen in der select-Option angezeigt werden soll.Ob das Feld erforderlich ist oder nichtOb das Feld zum WooCommerce Checkout hinzugefügt werden soll oder nichtOb man sich direkt automatisch als den neu registrierten Benutzer anmelden soll oder nicht.
            Funktioniert nur auf einzelnen Seiten ohne dass die Features "Admin Approval" und "E-Mail-Bestätigung" aktiviert sind.
            Achtung: Caching des Registrierungsformulars bricht die automatische Anmeldung.Ob der Benutzer zu einer bestimmten Seite umgeleitet werden soll oder nichtWelche Weiterleitung greift kommt auf die folgende Priorität an:Mit zusätzlichen Profil-Felder kannst du genau die Anmeldeformulare erstellen, die dein Projekt benötigt.Mit Profile Builder Pro v2 können Sie verschiedene Felder im Registrierungs- und Profilformular anzeigen. Nutzen Sie dazu das Modul Multiple Registration & Edit Profile Forms.Mit dem neuen Abonnement-Feld im Profile Builder, können sich Benutzer im Registrierungsformular für bezahlte Konten anmelden.Damit kannst du verschiedene WordPress Formulare und Seiten zu den Profile Builder Äquivalenten umleiten.WooCommerce SynchronisierungFür das Profile Builder - WooCommerce Sync Add-on muss WooCommerce installiert und aktiviert sein!Yahoo IMJemenYemen RialJaJa, ich möchte eine neue Seite erstellenYimDu bist bereits angemeldet. Du kannst das Kennwort in dem "Profil bearbeiten" Formular ändern.Derzeit als %1$s angemeldet. %2$s Du bist derzeit als %1s angemeldet. Du brauchst kein weiteres Konto. %2sDu bist eingeloggt als %s.Du hast keine Berechtigung, das zu tun.Du kannst über %1$Benutzer > Rollen Editor %2$s Benutzerrollen hinzufügen/bearbeiten.Du kannst die Informationen für "%s" hinzufügen, nachdem du einen Eintrag hinzugefügt hastDu kannst auch den Schrittwert benutzen, um die Intervalle der erlaubten Zahlen festzulegen (z.B. Schrittwert 2 wird nur -4, -2, 0, 2 usw erlauben)Sie können eine Liste der unbestätigten Emailadressen unter %1$sUsers > alle Benutzer > E-Mail Bestätigung%2$s finden.Sie können eine Liste mit allen Benutzer unter %1$sUsers > alle Benutzer > Admin Genehmigung%2$s finden.Sie finden es im Menü vom Profile BuilderSie finden die Standard-Datei hier:%1$sSie können folgendes nutzen: # für Nummern, Klammern ( ), - Zeichen, + Zeichen, Punkt . und Leerzeichen.Sie können keine doppelten Weiterleitungen anlegen!Sie können diese Benutzerrolle nicht registrierenSie entscheiden, wer als Benutzer auf Ihrer Website freigeschaltet wird. Sie können Benachrichtigungen per E-Mail erhalten oder mehrere Benutzer gleichzeitig über das WordPress-UI genehmigen.Sie entscheiden, wer als Benutzer auf Ihrer Website freigeschaltet wird. Sie können Benachrichtigungen per E-Mail erhalten oder mehrere Benutzer gleichzeitig über das WordPress-UI genehmigen. Aktivieren Sie die Admin-Genehmigung mit einem Upgrade auf %1$s die Hobbyist oder PRO Version %2$s.Sie haben keine Berechtigung, um diese Benutzerliste einzusehen.Sie haben nicht die notwendige Benutzerrolle, um diese Benutzerliste einzusehen.Sie haben keine Paginations-Einstellungen für diese Benutzerliste getätigt!Sie haben entweder keine Berechtigungen für diese Aktion oder es ist ein Fehler aufgetreten!Ihr Kennwort wurde erfolgreich zurückgesetzt: %1$sSie müssen angemeldet sein, um Ihr Profil zu bearbeiten.Sie müssen eine gültige E-Mail Adresse angeben.Sie müssen das Datumsformat angeben. Sie müssen die Zeilennummer angeben. Sie müssen den geheimen Schlüssel eingeben Sie müssen den Seiten Schlüssel eingeben Sie müssen ein Feld auswählen. Sie müssen die Benutzerlisten-Funktion innerhalb des Tabs "Module" aktivieren!Sie müssen dem Formular einen Titel geben, bevor Sie es anlegen können.Sie nutzen folgende Tags in Ihren Umleitungs-URLs.Sie werden per E-Mail einen Link erhalten, über den Sie ein neues Passwort vergeben können.Sie werden in Kürze automatisch weitergeleitet. Wenn Sie diese Seite mehr als %1$d Sekunden sehen, klicken Sie bitte hier %2$s.%3$sIhr Benutzerkonto wurde erfolgreich angelegt!Ihr Benutzerkonto muss von einem Administrator bestätigt werden, bevor Sie sich einloggen können.Ihr Benutzerkonto muss von einem Administrator bestätigt werden, bevor Sie die "Kennwort Wiederherstellung"-Funktion verwenden können.Ihr Benutzerkonto muss von einem Administrator bestätigt werden, bevor Sie Ihr Kennwort zurücksetzen können.Ihr Benutzerkonto auf %1$s wurde genehmigt!Ihr Benutzerkonto auf %1$s wurde nicht genehmigt!Ihr Benutzerkonto auf {{site_name}} wurde freigeschaltet!Ihr Benutzerkonto auf {{site_name}} wurde nicht freigeschaltet!Ihre E-Mail wurde erfolgreich bestätigt.Ihr Passwort wurde erfolgreich geändert!Ihr Profil wurde aktualisiert!Das von Ihnen gewählte AnmeldepasswortIhre Sitzung ist abgelaufen! Bitte laden Sie die Seite neu und versuchen es noch einmal.Ihre Sitzung ist abgelaufen! Bitte laden Sie die Seite neu und versuchen es noch einmal.Dein Seiten URL wird so aussehen:
            SambiaSimbabweZimbabwe Dollar[%1$s] Aktivieren %2$s[%1$s] Ihre neuen Kontodaten[{{site_name}}] Aktivieren {{username}}[{{Site_name}}] Benachrichtigung über die Änderung der eMail Adresse[{{site_name}}] Passwortzurücksetzung[{{site_name}}] Passwortzurücksetzung erfolgreichMöchtest du diesen Benutzer genehmigen?genehmigtBestätige diese E-Mail selbst?Möchtest du diesen Benutzer aus der _signups-Tabelle löschen?Möchtest du diesen Benutzer löschen?Zeigt alle Benutzer an, außer diejenigen, denen du eine user_id gegeben hast.Nur die Benutzer anzeigen, denen du die user_id vergeben hastAnzeige von Benutzer die einen bestimmten Meta-Wert innerhalb eines bestimmten (extra) Meta-Feld habenE-Mail-AdresseGeneriert eine URL der Startseite.hierin WordPress kann die Seiten URL von der Startseiten URL abweichen.ist keine Zahlist keine gültige TelefonnummerMuss größer oder gleich sein alsmuss eine Vielzahl sein vonmuss weniger oder gleich sein alsreCAPTCHAErforderlichAktivierungslink erneut senden?anzeigendie ID des Benutzersdie URL der vorherigen besuchten SeiteDie saubere URL version des Benutzernamens, der Benutzer "nicename" kann in URLs sicher verwendet werden, da er keine Spezialzeichen oder Leerschläge beinhalten kann.Benutzer ablehnen?abgelehntBenutzernameBenutzername oder E-Mail-Adressetranslation/profile-builder-zh_TW.po000066600000455053152141651160013601 0ustar00# Translation of Profile Builder in Chinese (Taiwan) # This file is distributed under the same license as the Profile Builder package. msgid "" msgstr "" "PO-Revision-Date: 2015-09-29 11:54:28+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: GlotPress/0.1\n" "Project-Id-Version: Profile Builder\n" #: admin/manage-fields.php:125 msgid "Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yy" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:244 msgid "Individual redirects defined in shortcodes; redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects." msgstr "" #: admin/manage-fields.php:1214 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." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:240 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "" #: admin/register-version.php:251 msgid "

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            " msgstr "" #: admin/register-version.php:246 msgid "

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            " msgstr "" #: front-end/recover.php:151 msgid "You are already logged in. You can change your password on the edit profile form." msgstr "" #: front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "" #: features/functions.php:909 msgid "

            You can visit your site at " msgstr "" #: features/functions.php:896 msgid "

            Also, you will be able to visit your site at " msgstr "" #: front-end/default-fields/blog-details/blog-details.php:138 msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network." msgstr "" #: front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "" #: front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "" #: front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "" #: modules/email-customizer/email-customizer.php:36 #: modules/user-listing/userlisting.php:118 msgid "Blog URL" msgstr "" #: admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "" #: admin/manage-fields.php:219 msgid "Blog Details" msgstr "" #: admin/pms-cross-promotion.php:239 msgid "Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "" #: features/email-confirmation/email-confirmation.php:578 msgid "Welcome to %1$s!


            Your username is:%2$s" msgstr "" #: modules/user-listing/userlisting.php:1303 msgid "View Map" msgstr "" #: admin/add-ons.php:103 msgid "Available in Hobbyist and Pro Versions" msgstr "" #: admin/add-ons.php:105 msgid "Available in All Versions" msgstr "" #: admin/add-ons.php:148 msgid "Learn More" msgstr "" #: admin/basic-info.php:99 msgid "Timepicker" msgstr "" #: admin/basic-info.php:100 msgid "Colorpicker" msgstr "" #: admin/basic-info.php:103 msgid "Currency Select" msgstr "" #: admin/basic-info.php:109 msgid "Number" msgstr "" #: admin/basic-info.php:114 msgid "Validation" msgstr "" #: admin/basic-info.php:115 msgid "Map" msgstr "" #: admin/basic-info.php:116 msgid "HTML" msgstr "" #: admin/basic-info.php:162 modules/modules.php:117 msgid "Repeater Fields" msgstr "" #: admin/basic-info.php:163 msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role." msgstr "" #: admin/general-settings.php:62 msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "" #: admin/manage-fields.php:118 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count" msgstr "" #: admin/manage-fields.php:141 msgid "Show Currency Symbol" msgstr "" #: admin/manage-fields.php:141 msgid "Whether the currency symbol should be displayed after the currency name in the select option." msgstr "" #: admin/manage-fields.php:142 msgid "Show Post Type" msgstr "" #: admin/manage-fields.php:142 msgid "Posts from what post type will be displayed in the select." msgstr "" #: admin/manage-fields.php:143 msgid "Allowable Values" msgstr "" #: admin/manage-fields.php:143 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." msgstr "" #: admin/manage-fields.php:144 msgid "Error Message" msgstr "" #: admin/manage-fields.php:144 msgid "Set a custom error message that will be displayed to the user." msgstr "" #: admin/manage-fields.php:145 msgid "Time Format" msgstr "" #: admin/manage-fields.php:145 msgid "Specify the time format." msgstr "" #: admin/manage-fields.php:146 msgid "Google Maps API Key" msgstr "" #: admin/manage-fields.php:146 msgid "Enter your Google Maps API key ( Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used." msgstr "" #: admin/manage-fields.php:147 msgid "Default Latitude" msgstr "" #: admin/manage-fields.php:147 msgid "The latitude at which the map should be displayed when no pins are attached." msgstr "" #: admin/manage-fields.php:148 msgid "Default Longitude" msgstr "" #: admin/manage-fields.php:148 msgid "The longitude at which the map should be displayed when no pins are attached." msgstr "" #: admin/manage-fields.php:149 msgid "Default Zoom Level" msgstr "" #: admin/manage-fields.php:149 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "" #: admin/manage-fields.php:150 msgid "Map Height" msgstr "" #: admin/manage-fields.php:150 msgid "The height of the map." msgstr "" #: admin/manage-fields.php:152 msgid "HTML Content" msgstr "" #: admin/manage-fields.php:152 msgid "Add your HTML (or text) content" msgstr "" #: admin/manage-fields.php:153 msgid "Phone Format" msgstr "" #: admin/manage-fields.php:153 msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces." msgstr "" #: admin/manage-fields.php:153 msgid "Eg. (###) ###-####" msgstr "" #: admin/manage-fields.php:153 msgid "Empty field won't check for correct phone number." msgstr "" #: admin/manage-fields.php:154 msgid "Heading Tag" msgstr "" #: admin/manage-fields.php:154 msgid "Change heading field size on front-end forms" msgstr "" #: admin/manage-fields.php:155 msgid "Min Number Value" msgstr "" #: admin/manage-fields.php:155 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "" #: admin/manage-fields.php:155 msgid "Leave it empty for no min value" msgstr "" #: admin/manage-fields.php:156 msgid "Max Number Value" msgstr "" #: admin/manage-fields.php:156 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "" #: admin/manage-fields.php:156 msgid "Leave it empty for no max value" msgstr "" #: admin/manage-fields.php:157 msgid "Number Step Value" msgstr "" #: admin/manage-fields.php:157 msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal" msgstr "" #: admin/manage-fields.php:157 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "" #: admin/manage-fields.php:157 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)" msgstr "" #: admin/manage-fields.php:157 msgid "Leave it empty for no restriction" msgstr "" #: admin/manage-fields.php:561 msgid "Albania Lek" msgstr "" #: admin/manage-fields.php:562 msgid "Afghanistan Afghani" msgstr "" #: admin/manage-fields.php:563 msgid "Argentina Peso" msgstr "" #: admin/manage-fields.php:564 msgid "Aruba Guilder" msgstr "" #: admin/manage-fields.php:565 msgid "Australia Dollar" msgstr "" #: admin/manage-fields.php:566 msgid "Azerbaijan New Manat" msgstr "" #: admin/manage-fields.php:567 msgid "Bahamas Dollar" msgstr "" #: admin/manage-fields.php:568 msgid "Barbados Dollar" msgstr "" #: admin/manage-fields.php:569 msgid "Bangladeshi taka" msgstr "" #: admin/manage-fields.php:570 msgid "Belarus Ruble" msgstr "" #: admin/manage-fields.php:571 msgid "Belize Dollar" msgstr "" #: admin/manage-fields.php:572 msgid "Bermuda Dollar" msgstr "" #: admin/manage-fields.php:573 msgid "Bolivia Boliviano" msgstr "" #: admin/manage-fields.php:574 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "" #: admin/manage-fields.php:575 msgid "Botswana Pula" msgstr "" #: admin/manage-fields.php:576 msgid "Bulgaria Lev" msgstr "" #: admin/manage-fields.php:577 msgid "Brazil Real" msgstr "" #: admin/manage-fields.php:578 msgid "Brunei Darussalam Dollar" msgstr "" #: admin/manage-fields.php:579 msgid "Cambodia Riel" msgstr "" #: admin/manage-fields.php:580 msgid "Canada Dollar" msgstr "" #: admin/manage-fields.php:581 msgid "Cayman Islands Dollar" msgstr "" #: admin/manage-fields.php:582 msgid "Chile Peso" msgstr "" #: admin/manage-fields.php:583 msgid "China Yuan Renminbi" msgstr "" #: admin/manage-fields.php:584 msgid "Colombia Peso" msgstr "" #: admin/manage-fields.php:585 msgid "Costa Rica Colon" msgstr "" #: admin/manage-fields.php:586 msgid "Croatia Kuna" msgstr "" #: admin/manage-fields.php:587 msgid "Cuba Peso" msgstr "" #: admin/manage-fields.php:588 msgid "Czech Republic Koruna" msgstr "" #: admin/manage-fields.php:589 msgid "Denmark Krone" msgstr "" #: admin/manage-fields.php:590 msgid "Dominican Republic Peso" msgstr "" #: admin/manage-fields.php:591 msgid "East Caribbean Dollar" msgstr "" #: admin/manage-fields.php:592 msgid "Egypt Pound" msgstr "" #: admin/manage-fields.php:593 msgid "El Salvador Colon" msgstr "" #: admin/manage-fields.php:594 msgid "Estonia Kroon" msgstr "" #: admin/manage-fields.php:595 msgid "Euro" msgstr "" #: admin/manage-fields.php:596 msgid "Falkland Islands (Malvinas) Pound" msgstr "" #: admin/manage-fields.php:597 msgid "Fiji Dollar" msgstr "" #: admin/manage-fields.php:598 msgid "Ghana Cedis" msgstr "" #: admin/manage-fields.php:599 msgid "Gibraltar Pound" msgstr "" #: admin/manage-fields.php:600 msgid "Guatemala Quetzal" msgstr "" #: admin/manage-fields.php:601 msgid "Guernsey Pound" msgstr "" #: admin/manage-fields.php:602 msgid "Guyana Dollar" msgstr "" #: admin/manage-fields.php:603 msgid "Honduras Lempira" msgstr "" #: admin/manage-fields.php:604 msgid "Hong Kong Dollar" msgstr "" #: admin/manage-fields.php:605 msgid "Hungary Forint" msgstr "" #: admin/manage-fields.php:606 msgid "Iceland Krona" msgstr "" #: admin/manage-fields.php:607 msgid "India Rupee" msgstr "" #: admin/manage-fields.php:608 msgid "Indonesia Rupiah" msgstr "" #: admin/manage-fields.php:609 msgid "Iran Rial" msgstr "" #: admin/manage-fields.php:610 msgid "Isle of Man Pound" msgstr "" #: admin/manage-fields.php:611 msgid "Israel Shekel" msgstr "" #: admin/manage-fields.php:612 msgid "Jamaica Dollar" msgstr "" #: admin/manage-fields.php:613 msgid "Japan Yen" msgstr "" #: admin/manage-fields.php:614 msgid "Jersey Pound" msgstr "" #: admin/manage-fields.php:615 msgid "Kazakhstan Tenge" msgstr "" #: admin/manage-fields.php:616 msgid "Korea (North) Won" msgstr "" #: admin/manage-fields.php:617 msgid "Korea (South) Won" msgstr "" #: admin/manage-fields.php:618 msgid "Kyrgyzstan Som" msgstr "" #: admin/manage-fields.php:619 msgid "Laos Kip" msgstr "" #: admin/manage-fields.php:620 msgid "Latvia Lat" msgstr "" #: admin/manage-fields.php:621 msgid "Lebanon Pound" msgstr "" #: admin/manage-fields.php:622 msgid "Liberia Dollar" msgstr "" #: admin/manage-fields.php:623 msgid "Lithuania Litas" msgstr "" #: admin/manage-fields.php:624 msgid "Macedonia Denar" msgstr "" #: admin/manage-fields.php:625 msgid "Malaysia Ringgit" msgstr "" #: admin/manage-fields.php:626 msgid "Mauritius Rupee" msgstr "" #: admin/manage-fields.php:627 msgid "Mexico Peso" msgstr "" #: admin/manage-fields.php:628 msgid "Mongolia Tughrik" msgstr "" #: admin/manage-fields.php:629 msgid "Mozambique Metical" msgstr "" #: admin/manage-fields.php:630 msgid "Namibia Dollar" msgstr "" #: admin/manage-fields.php:631 msgid "Nepal Rupee" msgstr "" #: admin/manage-fields.php:632 msgid "Netherlands Antilles Guilder" msgstr "" #: admin/manage-fields.php:633 msgid "New Zealand Dollar" msgstr "" #: admin/manage-fields.php:634 msgid "Nicaragua Cordoba" msgstr "" #: admin/manage-fields.php:635 msgid "Nigeria Naira" msgstr "" #: admin/manage-fields.php:636 msgid "Norway Krone" msgstr "" #: admin/manage-fields.php:637 msgid "Oman Rial" msgstr "" #: admin/manage-fields.php:638 msgid "Pakistan Rupee" msgstr "" #: admin/manage-fields.php:639 msgid "Panama Balboa" msgstr "" #: admin/manage-fields.php:640 msgid "Paraguay Guarani" msgstr "" #: admin/manage-fields.php:641 msgid "Peru Nuevo Sol" msgstr "" #: admin/manage-fields.php:642 msgid "Philippines Peso" msgstr "" #: admin/manage-fields.php:643 msgid "Poland Zloty" msgstr "" #: admin/manage-fields.php:644 msgid "Qatar Riyal" msgstr "" #: admin/manage-fields.php:645 msgid "Romania New Leu" msgstr "" #: admin/manage-fields.php:646 msgid "Russia Ruble" msgstr "" #: admin/manage-fields.php:647 msgid "Saint Helena Pound" msgstr "" #: admin/manage-fields.php:648 msgid "Saudi Arabia Riyal" msgstr "" #: admin/manage-fields.php:649 msgid "Serbia Dinar" msgstr "" #: admin/manage-fields.php:650 msgid "Seychelles Rupee" msgstr "" #: admin/manage-fields.php:651 msgid "Singapore Dollar" msgstr "" #: admin/manage-fields.php:652 msgid "Solomon Islands Dollar" msgstr "" #: admin/manage-fields.php:653 msgid "Somalia Shilling" msgstr "" #: admin/manage-fields.php:654 msgid "South Africa Rand" msgstr "" #: admin/manage-fields.php:655 msgid "Sri Lanka Rupee" msgstr "" #: admin/manage-fields.php:656 msgid "Sweden Krona" msgstr "" #: admin/manage-fields.php:657 msgid "Switzerland Franc" msgstr "" #: admin/manage-fields.php:658 msgid "Suriname Dollar" msgstr "" #: admin/manage-fields.php:659 msgid "Syria Pound" msgstr "" #: admin/manage-fields.php:660 msgid "Taiwan New Dollar" msgstr "" #: admin/manage-fields.php:661 msgid "Thailand Baht" msgstr "" #: admin/manage-fields.php:662 msgid "Trinidad and Tobago Dollar" msgstr "" #: admin/manage-fields.php:663 admin/manage-fields.php:664 msgid "Turkey Lira" msgstr "" #: admin/manage-fields.php:665 msgid "Tuvalu Dollar" msgstr "" #: admin/manage-fields.php:666 msgid "Ukraine Hryvna" msgstr "" #: admin/manage-fields.php:667 msgid "United Kingdom Pound" msgstr "" #: admin/manage-fields.php:668 msgid "Uganda Shilling" msgstr "" #: admin/manage-fields.php:669 msgid "US Dollar" msgstr "" #: admin/manage-fields.php:670 msgid "Uruguay Peso" msgstr "" #: admin/manage-fields.php:671 msgid "Uzbekistan Som" msgstr "" #: admin/manage-fields.php:672 msgid "Venezuela Bolivar" msgstr "" #: admin/manage-fields.php:673 msgid "Viet Nam Dong" msgstr "" #: admin/manage-fields.php:674 msgid "Yemen Rial" msgstr "" #: admin/manage-fields.php:675 msgid "Zimbabwe Dollar" msgstr "" #: admin/manage-fields.php:1094 msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n" msgstr "" #: admin/manage-fields.php:1311 msgid "Search Location" msgstr "" #: assets/lib/wck-api/wordpress-creation-kit.php:754 msgid "You are not allowed to do this." msgstr "" #: features/admin-approval/class-admin-approval.php:461 #: features/email-confirmation/class-email-confirmation.php:460 msgid "Search Users" msgstr "" #: features/conditional-fields/conditional-fields.php:78 msgid "Conditional Logic" msgstr "" #: features/conditional-fields/conditional-fields.php:79 msgid "Conditional Rules" msgstr "" #: features/conditional-fields/conditional-fields.php:448 msgid "This field has conditional logic enabled." msgstr "" #: features/functions.php:685 msgid "Incorrect phone number" msgstr "" #: front-end/class-formbuilder.php:113 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." msgstr "" #: front-end/extra-fields/map/map.php:46 front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "" #: front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "" #: front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "" #: front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "" #: front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "" #: front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "" #: front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bolivia, __( Plurinational State of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bonaire, __( Sint Eustatius and Saba" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Brunei Darussalam" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cabo Verde" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cocos (Keeling) Islands" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Congo" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Congo, __( the Democratic Republic of the" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cote dIvoire" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Falkland Islands (Malvinas)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Holy See (Vatican City State)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Iran, __( Islamic Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Democratic Peoples Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lao Peoples Democratic Republic" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Macedonia, __( the former Yugoslav Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Micronesia, __( Federated States of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Moldova, __( Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Palestine, __( State of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Russian Federation" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Helena, __( Ascension and Tristan da Cunha" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Martin (French part)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sint Maarten (Dutch part)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Syrian Arab Republic" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Taiwan, __( Province of China" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tanzania, __( United Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Timor-Leste" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Venezuela, __( Bolivarian Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Viet Nam" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( British" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( U.S." msgstr "" #: modules/email-customizer/email-customizer.php:11 #: modules/user-listing/userlisting.php:186 msgid "User Fields Tags" msgstr "" #: modules/email-customizer/email-customizer.php:479 msgid "The users selected password at signup" msgstr "" #: modules/email-customizer/user-email-customizer.php:278 msgid "[{{site_name}}] Notice of Email Change" msgstr "" #: modules/email-customizer/user-email-customizer.php:289 msgid "Changed Email Address Notification" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Limit" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Enable limit to the number of fields to be generated by users in front end forms " msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "General Limit" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "Limit reached message" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The maximum number of fields has been reached." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The popup message to display when the limit of repeater groups is reached." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Limit per Role" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Leave 0 for unlimited." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Repeated field group" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Manage field or group of fields that will be repeatable." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:259 msgid "Edit field group" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:260 msgid "Repeatable fields saved!" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:277 #: modules/repeater-field/admin/repeater-manage-fields.php:326 msgid "Please enter a unique field title.\n" msgstr "" #: modules/repeater-field/repeater-field.php:258 msgid "Are you sure you want to delete this?" msgstr "" #: modules/user-listing/userlisting.php:192 msgid "Sort Tags" msgstr "" #: modules/user-listing/userlisting.php:201 #: modules/user-listing/userlisting.php:2237 msgid "Faceted Menus" msgstr "" #: modules/user-listing/userlisting.php:202 msgid "User Count" msgstr "" #: modules/user-listing/userlisting.php:1536 msgid "Show All" msgstr "" #: modules/user-listing/userlisting.php:1668 msgid "No options available" msgstr "" #: modules/user-listing/userlisting.php:1807 msgid "Remove All Filters" msgstr "" #: modules/user-listing/userlisting.php:2227 msgid "Label" msgstr "" #: modules/user-listing/userlisting.php:2227 msgid "Choose the facet name that appears on the frontend" msgstr "" #: modules/user-listing/userlisting.php:2228 msgid "Facet Type" msgstr "" #: modules/user-listing/userlisting.php:2228 msgid "Choose the facet menu type" msgstr "" #: modules/user-listing/userlisting.php:2229 msgid "Facet Meta" msgstr "" #: modules/user-listing/userlisting.php:2229 msgid "Choose the meta field for the facet menu" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Behaviour" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Narrow the results" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Expand the results" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Choose how multiple selections affect the results" msgstr "" #: modules/user-listing/userlisting.php:2231 msgid "Visible choices" msgstr "" #: modules/user-listing/userlisting.php:2231 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "" #: modules/user-listing/userlisting.php:2254 msgid "Search Fields" msgstr "" #: modules/user-listing/userlisting.php:2254 msgid "Choose the fields in which the Search Field will look in" msgstr "" #: modules/user-listing/userlisting.php:2259 msgid "Search Settings" msgstr "" #: admin/add-ons.php:190 msgid "Recommended Plugins" msgstr "" #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102 msgid "Free" msgstr "" #: admin/add-ons.php:221 msgid "Accept user payments, create subscription plans and restrict content on your membership site." msgstr "" #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105 msgid "More Details" msgstr "" #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88 #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "" #: admin/add-ons.php:242 admin/pms-cross-promotion.php:87 #: admin/pms-cross-promotion.php:125 admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "" #: admin/add-ons.php:256 admin/pms-cross-promotion.php:146 msgid "Could not install plugin. Retry or install manually." msgstr "" #: admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "" #: admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "" #: admin/pms-cross-promotion.php:37 msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." msgstr "" #: admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "" #: admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "" #: admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "" #: admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "" #: admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "" #: admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "" #: admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "" #: admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "" #: admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "" #: admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "" #: admin/pms-cross-promotion.php:104 msgid "Accept user payments, create subscription plans and restrict content on your website." msgstr "" #: admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "" #: features/email-confirmation/email-confirmation.php:400 msgid "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:45 msgid "After Login" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:46 msgid "After Logout" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:47 msgid "After Registration" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:48 msgid "After Edit Profile" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Successful Email Confirmation" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Successful Password Reset" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:51 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:55 msgid "User ID" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:61 msgid "User ID or Username" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:62 msgid "User ID / Username" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:62 msgid "Please select and enter the ID or username of your user." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:63 #: modules/custom-redirects/custom_redirects_admin.php:93 #: modules/custom-redirects/custom_redirects_admin.php:112 #: modules/custom-redirects/custom_redirects_admin.php:131 msgid "Redirect Type" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:64 #: modules/custom-redirects/custom_redirects_admin.php:94 #: modules/custom-redirects/custom_redirects_admin.php:113 #: modules/custom-redirects/custom_redirects_admin.php:138 msgid "Redirect URL" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:64 #: modules/custom-redirects/custom_redirects_admin.php:94 #: modules/custom-redirects/custom_redirects_admin.php:113 #: modules/custom-redirects/custom_redirects_admin.php:138 msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:71 #: modules/custom-redirects/custom_redirects_admin.php:241 msgid "Individual User Redirects" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:84 msgid "... Choose" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:92 msgid "Select a user role." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:101 #: modules/custom-redirects/custom_redirects_admin.php:242 msgid "User Role based Redirects" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:120 #: modules/custom-redirects/custom_redirects_admin.php:243 msgid "Global Redirects" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:133 msgid "Login ( wp_login.php )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:134 msgid "Register ( wp-login.php?action=register )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:135 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:136 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:145 msgid "Redirect Default WordPress Forms and Pages" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:157 msgid "How does this work?" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:179 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:193 msgid "
            User Role
            Redirect
            URL
            " msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:207 #: modules/custom-redirects/custom_redirects_admin.php:221 msgid "
            Redirect
            URL
            " msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:236 msgid "These redirects happen after a successful action, like registration or after a successful login." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:238 msgid "Which redirect happens depends on the following priority:" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:247 msgid "Redirect Default WordPress forms and pages" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:248 msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:250 msgid "Available tags for dynamic URLs" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:251 msgid "You use the following tags in your URLs to redirect users to various pages." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:253 msgid "generates a url of the current website homepage." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:254 msgid "in WordPress the site url can be different then the home url" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:255 msgid "the ID of the user" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:256 msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:257 msgid "the URL of the previously visited page" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:340 #: modules/custom-redirects/custom_redirects_admin.php:346 #: modules/custom-redirects/custom_redirects_admin.php:352 msgid "You can't add duplicate redirects!" msgstr "" #: admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "" #: admin/basic-info.php:37 msgid "Friction-less login using %s shortcode or a widget." msgstr "" #: admin/basic-info.php:41 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "" #: admin/basic-info.php:45 msgid "Straight forward edit profile forms using %s shortcode." msgstr "" #: admin/basic-info.php:58 msgid "Allow users to recover their password in the front-end using the %s." msgstr "" #: admin/basic-info.php:140 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." msgstr "" #: admin/general-settings.php:118 msgid "\"Admin Approval\" on User Role:" msgstr "" #: admin/general-settings.php:137 msgid "Select on what user roles to activate Admin Approval." msgstr "" #: admin/manage-fields.php:131 msgid "Display on PB forms" msgstr "" #: admin/manage-fields.php:131 msgid "PB Login" msgstr "" #: admin/manage-fields.php:131 msgid "PB Register" msgstr "" #: admin/manage-fields.php:131 msgid "PB Recover Password" msgstr "" #: admin/manage-fields.php:131 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "" #: admin/manage-fields.php:132 msgid "Display on default WP forms" msgstr "" #: admin/manage-fields.php:132 msgid "Default WP Login" msgstr "" #: admin/manage-fields.php:132 msgid "Default WP Register" msgstr "" #: admin/manage-fields.php:132 msgid "Default WP Recover Password" msgstr "" #: admin/manage-fields.php:132 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "" #: admin/manage-fields.php:138 admin/manage-fields.php:139 #: admin/manage-fields.php:140 msgid "Default option of the field" msgstr "" #: admin/manage-fields.php:279 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Afghanistan" msgstr "Afghanistan" #: admin/manage-fields.php:280 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Aland Islands" msgstr "Aland Islands" #: admin/manage-fields.php:281 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Albania" msgstr "Albania" #: admin/manage-fields.php:282 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Algeria" msgstr "Algeria" #: admin/manage-fields.php:283 #: front-end/extra-fields/select-country/select-country.php:10 msgid "American Samoa" msgstr "American Samoa" #: admin/manage-fields.php:284 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Andorra" msgstr "Andorra" #: admin/manage-fields.php:285 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Angola" msgstr "Angola" #: admin/manage-fields.php:286 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Anguilla" msgstr "Anguilla" #: admin/manage-fields.php:287 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Antarctica" msgstr "Antarctica" #: admin/manage-fields.php:288 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" #: admin/manage-fields.php:289 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Argentina" msgstr "Argentina" #: admin/manage-fields.php:290 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Armenia" msgstr "Armenia" #: admin/manage-fields.php:291 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Aruba" msgstr "Aruba" #: admin/manage-fields.php:292 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Australia" msgstr "Australia" #: admin/manage-fields.php:293 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Austria" msgstr "Austria" #: admin/manage-fields.php:294 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Azerbaijan" msgstr "Azerbaijan" #: admin/manage-fields.php:295 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bahamas" msgstr "Bahamas" #: admin/manage-fields.php:296 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bahrain" msgstr "Bahrain" #: admin/manage-fields.php:297 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bangladesh" msgstr "Bangladesh" #: admin/manage-fields.php:298 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Barbados" msgstr "Barbados" #: admin/manage-fields.php:299 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Belarus" msgstr "Belarus" #: admin/manage-fields.php:300 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Belgium" msgstr "Belgium" #: admin/manage-fields.php:301 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Belize" msgstr "Belize" #: admin/manage-fields.php:302 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Benin" msgstr "Benin" #: admin/manage-fields.php:303 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bermuda" msgstr "Bermuda" #: admin/manage-fields.php:304 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bhutan" msgstr "Bhutan" #: admin/manage-fields.php:305 msgid "Bolivia" msgstr "Bolivia" #: admin/manage-fields.php:306 msgid "Bonaire, Saint Eustatius and Saba" msgstr "Bonaire, Saint Eustatius and Saba" #: admin/manage-fields.php:307 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bosnia and Herzegovina" msgstr "Bosnia and Herzegovina" #: admin/manage-fields.php:308 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Botswana" msgstr "Botswana" #: admin/manage-fields.php:309 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bouvet Island" msgstr "Bouvet Island" #: admin/manage-fields.php:310 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Brazil" msgstr "Brazil" #: admin/manage-fields.php:311 #: front-end/extra-fields/select-country/select-country.php:10 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: admin/manage-fields.php:312 msgid "British Virgin Islands" msgstr "British Virgin Islands" #: admin/manage-fields.php:313 msgid "Brunei" msgstr "Brunei" #: admin/manage-fields.php:314 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bulgaria" msgstr "Bulgaria" #: admin/manage-fields.php:315 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Burkina Faso" msgstr "Burkina Faso" #: admin/manage-fields.php:316 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Burundi" msgstr "Burundi" #: admin/manage-fields.php:317 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cambodia" msgstr "Cambodia" #: admin/manage-fields.php:318 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cameroon" msgstr "Cameroon" #: admin/manage-fields.php:319 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Canada" msgstr "Canada" #: admin/manage-fields.php:320 msgid "Cape Verde" msgstr "Cape Verde" #: admin/manage-fields.php:321 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cayman Islands" msgstr "Cayman Islands" #: admin/manage-fields.php:322 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Central African Republic" msgstr "Central African Republic" #: admin/manage-fields.php:323 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Chad" msgstr "Chad" #: admin/manage-fields.php:324 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Chile" msgstr "Chile" #: admin/manage-fields.php:325 #: front-end/extra-fields/select-country/select-country.php:10 msgid "China" msgstr "China" #: admin/manage-fields.php:326 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Christmas Island" msgstr "Christmas Island" #: admin/manage-fields.php:327 msgid "Cocos Islands" msgstr "Cocos Islands" #: admin/manage-fields.php:328 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Colombia" msgstr "Colombia" #: admin/manage-fields.php:329 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Comoros" msgstr "Comoros" #: admin/manage-fields.php:330 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cook Islands" msgstr "Cook Islands" #: admin/manage-fields.php:331 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Costa Rica" msgstr "Costa Rica" #: admin/manage-fields.php:332 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Croatia" msgstr "Croatia" #: admin/manage-fields.php:333 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cuba" msgstr "Cuba" #: admin/manage-fields.php:334 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Curacao" msgstr "Curacao" #: admin/manage-fields.php:335 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cyprus" msgstr "Cyprus" #: admin/manage-fields.php:336 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Czech Republic" msgstr "Czech Republic" #: admin/manage-fields.php:337 msgid "Democratic Republic of the Congo" msgstr "Democratic Republic of the Congo" #: admin/manage-fields.php:338 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Denmark" msgstr "Denmark" #: admin/manage-fields.php:339 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Djibouti" msgstr "Djibouti" #: admin/manage-fields.php:340 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Dominica" msgstr "Dominica" #: admin/manage-fields.php:341 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Dominican Republic" msgstr "Dominican Republic" #: admin/manage-fields.php:342 msgid "East Timor" msgstr "East Timor" #: admin/manage-fields.php:343 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ecuador" msgstr "Ecuador" #: admin/manage-fields.php:344 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Egypt" msgstr "Egypt" #: admin/manage-fields.php:345 #: front-end/extra-fields/select-country/select-country.php:10 msgid "El Salvador" msgstr "El Salvador" #: admin/manage-fields.php:346 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: admin/manage-fields.php:347 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Eritrea" msgstr "Eritrea" #: admin/manage-fields.php:348 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Estonia" msgstr "Estonia" #: admin/manage-fields.php:349 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ethiopia" msgstr "Ethiopia" #: admin/manage-fields.php:350 msgid "Falkland Islands" msgstr "Falkland Islands" #: admin/manage-fields.php:351 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Faroe Islands" msgstr "Faroe Islands" #: admin/manage-fields.php:352 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Fiji" msgstr "Fiji" #: admin/manage-fields.php:353 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Finland" msgstr "Finland" #: admin/manage-fields.php:354 #: front-end/extra-fields/select-country/select-country.php:10 msgid "France" msgstr "France" #: admin/manage-fields.php:355 #: front-end/extra-fields/select-country/select-country.php:10 msgid "French Guiana" msgstr "French Guiana" #: admin/manage-fields.php:356 #: front-end/extra-fields/select-country/select-country.php:10 msgid "French Polynesia" msgstr "French Polynesia" #: admin/manage-fields.php:357 #: front-end/extra-fields/select-country/select-country.php:10 msgid "French Southern Territories" msgstr "French Southern Territories" #: admin/manage-fields.php:358 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Gabon" msgstr "Gabon" #: admin/manage-fields.php:359 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Gambia" msgstr "Gambia" #: admin/manage-fields.php:360 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Georgia" msgstr "Georgia" #: admin/manage-fields.php:361 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Germany" msgstr "Germany" #: admin/manage-fields.php:362 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ghana" msgstr "Ghana" #: admin/manage-fields.php:363 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Gibraltar" msgstr "Gibraltar" #: admin/manage-fields.php:364 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Greece" msgstr "Greece" #: admin/manage-fields.php:365 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Greenland" msgstr "Greenland" #: admin/manage-fields.php:366 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Grenada" msgstr "Grenada" #: admin/manage-fields.php:367 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guadeloupe" msgstr "Guadeloupe" #: admin/manage-fields.php:368 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guam" msgstr "Guam" #: admin/manage-fields.php:369 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guatemala" msgstr "Guatemala" #: admin/manage-fields.php:370 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guernsey" msgstr "Guernsey" #: admin/manage-fields.php:371 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea" msgstr "Guinea" #: admin/manage-fields.php:372 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: admin/manage-fields.php:373 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guyana" msgstr "Guyana" #: admin/manage-fields.php:374 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Haiti" msgstr "Haiti" #: admin/manage-fields.php:375 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Heard Island and McDonald Islands" msgstr "Heard Island and McDonald Islands" #: admin/manage-fields.php:376 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Honduras" msgstr "Honduras" #: admin/manage-fields.php:377 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Hong Kong" msgstr "Hong Kong" #: admin/manage-fields.php:378 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Hungary" msgstr "Hungary" #: admin/manage-fields.php:379 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Iceland" msgstr "Iceland" #: admin/manage-fields.php:380 #: front-end/extra-fields/select-country/select-country.php:10 msgid "India" msgstr "India" #: admin/manage-fields.php:381 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Indonesia" msgstr "Indonesia" #: admin/manage-fields.php:382 msgid "Iran" msgstr "Iran" #: admin/manage-fields.php:383 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Iraq" msgstr "Iraq" #: admin/manage-fields.php:384 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ireland" msgstr "Ireland" #: admin/manage-fields.php:385 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Isle of Man" msgstr "Isle of Man" #: admin/manage-fields.php:386 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Israel" msgstr "Israel" #: admin/manage-fields.php:387 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Italy" msgstr "Italy" #: admin/manage-fields.php:388 msgid "Ivory Coast" msgstr "Ivory Coast" #: admin/manage-fields.php:389 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Jamaica" msgstr "Jamaica" #: admin/manage-fields.php:390 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Japan" msgstr "Japan" #: admin/manage-fields.php:391 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Jersey" msgstr "Jersey" #: admin/manage-fields.php:392 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Jordan" msgstr "Jordan" #: admin/manage-fields.php:393 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kazakhstan" msgstr "Kazakhstan" #: admin/manage-fields.php:394 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kenya" msgstr "Kenya" #: admin/manage-fields.php:395 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kiribati" msgstr "Kiribati" #: admin/manage-fields.php:396 msgid "Kosovo" msgstr "Kosovo" #: admin/manage-fields.php:397 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kuwait" msgstr "Kuwait" #: admin/manage-fields.php:398 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: admin/manage-fields.php:399 msgid "Laos" msgstr "Laos" #: admin/manage-fields.php:400 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Latvia" msgstr "Latvia" #: admin/manage-fields.php:401 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lebanon" msgstr "Lebanon" #: admin/manage-fields.php:402 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lesotho" msgstr "Lesotho" #: admin/manage-fields.php:403 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Liberia" msgstr "Liberia" #: admin/manage-fields.php:404 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Libya" msgstr "Libya" #: admin/manage-fields.php:405 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Liechtenstein" msgstr "Liechtenstein" #: admin/manage-fields.php:406 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lithuania" msgstr "Lithuania" #: admin/manage-fields.php:407 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Luxembourg" msgstr "Luxembourg" #: admin/manage-fields.php:408 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Macao" msgstr "Macao" #: admin/manage-fields.php:409 msgid "Macedonia" msgstr "Macedonia" #: admin/manage-fields.php:410 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Madagascar" msgstr "Madagascar" #: admin/manage-fields.php:411 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Malawi" msgstr "Malawi" #: admin/manage-fields.php:412 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Malaysia" msgstr "Malaysia" #: admin/manage-fields.php:413 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Maldives" msgstr "Maldives" #: admin/manage-fields.php:414 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mali" msgstr "Mali" #: admin/manage-fields.php:415 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Malta" msgstr "Malta" #: admin/manage-fields.php:416 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Marshall Islands" msgstr "Marshall Islands" #: admin/manage-fields.php:417 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Martinique" msgstr "Martinique" #: admin/manage-fields.php:418 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritania" msgstr "Mauritania" #: admin/manage-fields.php:419 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritius" msgstr "Mauritius" #: admin/manage-fields.php:420 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mayotte" msgstr "Mayotte" #: admin/manage-fields.php:421 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mexico" msgstr "Mexico" #: admin/manage-fields.php:422 msgid "Micronesia" msgstr "Micronesia" #: admin/manage-fields.php:423 msgid "Moldova" msgstr "Moldova" #: admin/manage-fields.php:424 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Monaco" msgstr "Monaco" #: admin/manage-fields.php:425 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mongolia" msgstr "Mongolia" #: admin/manage-fields.php:426 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Montenegro" msgstr "Montenegro" #: admin/manage-fields.php:427 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Montserrat" msgstr "Montserrat" #: admin/manage-fields.php:428 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Morocco" msgstr "Morocco" #: admin/manage-fields.php:429 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mozambique" msgstr "Mozambique" #: admin/manage-fields.php:430 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Myanmar" msgstr "Myanmar" #: admin/manage-fields.php:431 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Namibia" msgstr "Namibia" #: admin/manage-fields.php:432 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nauru" msgstr "Nauru" #: admin/manage-fields.php:433 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nepal" msgstr "Nepal" #: admin/manage-fields.php:434 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Netherlands" msgstr "Netherlands" #: admin/manage-fields.php:435 #: front-end/extra-fields/select-country/select-country.php:10 msgid "New Caledonia" msgstr "New Caledonia" #: admin/manage-fields.php:436 #: front-end/extra-fields/select-country/select-country.php:10 msgid "New Zealand" msgstr "New Zealand" #: admin/manage-fields.php:437 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nicaragua" msgstr "Nicaragua" #: admin/manage-fields.php:438 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Niger" msgstr "Niger" #: admin/manage-fields.php:439 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nigeria" msgstr "Nigeria" #: admin/manage-fields.php:440 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Niue" msgstr "Niue" #: admin/manage-fields.php:441 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Norfolk Island" msgstr "Norfolk Island" #: admin/manage-fields.php:442 msgid "North Korea" msgstr "North Korea" #: admin/manage-fields.php:443 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: admin/manage-fields.php:444 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Norway" msgstr "Norway" #: admin/manage-fields.php:445 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Oman" msgstr "Oman" #: admin/manage-fields.php:446 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Pakistan" msgstr "Pakistan" #: admin/manage-fields.php:447 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Palau" msgstr "Palau" #: admin/manage-fields.php:448 msgid "Palestinian Territory" msgstr "Palestinian Territory" #: admin/manage-fields.php:449 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Panama" msgstr "Panama" #: admin/manage-fields.php:450 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: admin/manage-fields.php:451 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Paraguay" msgstr "Paraguay" #: admin/manage-fields.php:452 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Peru" msgstr "Peru" #: admin/manage-fields.php:453 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Philippines" msgstr "Philippines" #: admin/manage-fields.php:454 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Pitcairn" msgstr "Pitcairn" #: admin/manage-fields.php:455 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Poland" msgstr "Poland" #: admin/manage-fields.php:456 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Portugal" msgstr "Portugal" #: admin/manage-fields.php:457 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Puerto Rico" msgstr "Puerto Rico" #: admin/manage-fields.php:458 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Qatar" msgstr "Qatar" #: admin/manage-fields.php:459 msgid "Republic of the Congo" msgstr "Republic of the Congo" #: admin/manage-fields.php:460 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Reunion" msgstr "Reunion" #: admin/manage-fields.php:461 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Romania" msgstr "Romania" #: admin/manage-fields.php:462 msgid "Russia" msgstr "Russia" #: admin/manage-fields.php:463 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Rwanda" msgstr "Rwanda" #: admin/manage-fields.php:464 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: admin/manage-fields.php:465 msgid "Saint Helena" msgstr "Saint Helena" #: admin/manage-fields.php:466 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts and Nevis" #: admin/manage-fields.php:467 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Lucia" msgstr "Saint Lucia" #: admin/manage-fields.php:468 msgid "Saint Martin" msgstr "Saint Martin" #: admin/manage-fields.php:469 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre and Miquelon" #: admin/manage-fields.php:470 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent and the Grenadines" #: admin/manage-fields.php:471 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Samoa" msgstr "Samoa" #: admin/manage-fields.php:472 #: front-end/extra-fields/select-country/select-country.php:10 msgid "San Marino" msgstr "San Marino" #: admin/manage-fields.php:473 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sao Tome and Principe" msgstr "Sao Tome and Principe" #: admin/manage-fields.php:474 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: admin/manage-fields.php:475 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Senegal" msgstr "Senegal" #: admin/manage-fields.php:476 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Serbia" msgstr "Serbia" #: admin/manage-fields.php:477 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Seychelles" msgstr "Seychelles" #: admin/manage-fields.php:478 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sierra Leone" msgstr "Sierra Leone" #: admin/manage-fields.php:479 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Singapore" msgstr "Singapore" #: admin/manage-fields.php:480 msgid "Sint Maarten" msgstr "Sint Maarten" #: admin/manage-fields.php:481 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Slovakia" msgstr "Slovakia" #: admin/manage-fields.php:482 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Slovenia" msgstr "Slovenia" #: admin/manage-fields.php:483 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Solomon Islands" msgstr "Solomon Islands" #: admin/manage-fields.php:484 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Somalia" msgstr "Somalia" #: admin/manage-fields.php:485 #: front-end/extra-fields/select-country/select-country.php:10 msgid "South Africa" msgstr "South Africa" #: admin/manage-fields.php:486 #: front-end/extra-fields/select-country/select-country.php:10 msgid "South Georgia and the South Sandwich Islands" msgstr "South Georgia and the South Sandwich Islands" #: admin/manage-fields.php:487 msgid "South Korea" msgstr "South Korea" #: admin/manage-fields.php:488 #: front-end/extra-fields/select-country/select-country.php:10 msgid "South Sudan" msgstr "South Sudan" #: admin/manage-fields.php:489 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Spain" msgstr "Spain" #: admin/manage-fields.php:490 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sri Lanka" msgstr "Sri Lanka" #: admin/manage-fields.php:491 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sudan" msgstr "Sudan" #: admin/manage-fields.php:492 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Suriname" msgstr "Suriname" #: admin/manage-fields.php:493 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Svalbard and Jan Mayen" msgstr "Svalbard and Jan Mayen" #: admin/manage-fields.php:494 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Swaziland" msgstr "Swaziland" #: admin/manage-fields.php:495 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sweden" msgstr "Sweden" #: admin/manage-fields.php:496 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Switzerland" msgstr "Switzerland" #: admin/manage-fields.php:497 msgid "Syria" msgstr "Syria" #: admin/manage-fields.php:498 msgid "Taiwan" msgstr "Taiwan" #: admin/manage-fields.php:499 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tajikistan" msgstr "Tajikistan" #: admin/manage-fields.php:500 msgid "Tanzania" msgstr "Tanzania" #: admin/manage-fields.php:501 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Thailand" msgstr "Thailand" #: admin/manage-fields.php:502 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Togo" msgstr "Togo" #: admin/manage-fields.php:503 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tokelau" msgstr "Tokelau" #: admin/manage-fields.php:504 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tonga" msgstr "Tonga" #: admin/manage-fields.php:505 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Trinidad and Tobago" msgstr "Trinidad and Tobago" #: admin/manage-fields.php:506 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tunisia" msgstr "Tunisia" #: admin/manage-fields.php:507 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Turkey" msgstr "Turkey" #: admin/manage-fields.php:508 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Turkmenistan" msgstr "Turkmenistan" #: admin/manage-fields.php:509 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Islands" #: admin/manage-fields.php:510 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tuvalu" msgstr "Tuvalu" #: admin/manage-fields.php:511 msgid "U.S. Virgin Islands" msgstr "U.S. Virgin Islands" #: admin/manage-fields.php:512 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Uganda" msgstr "Uganda" #: admin/manage-fields.php:513 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ukraine" msgstr "Ukraine" #: admin/manage-fields.php:514 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United Arab Emirates" msgstr "United Arab Emirates" #: admin/manage-fields.php:515 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United Kingdom" msgstr "United Kingdom" #: admin/manage-fields.php:516 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United States" msgstr "United States" #: admin/manage-fields.php:517 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: admin/manage-fields.php:518 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Uruguay" msgstr "Uruguay" #: admin/manage-fields.php:519 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Uzbekistan" msgstr "Uzbekistan" #: admin/manage-fields.php:520 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Vanuatu" msgstr "Vanuatu" #: admin/manage-fields.php:521 msgid "Vatican" msgstr "Vatican" #: admin/manage-fields.php:522 msgid "Venezuela" msgstr "Venezuela" #: admin/manage-fields.php:523 msgid "Vietnam" msgstr "Vietnam" #: admin/manage-fields.php:524 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Wallis and Futuna" msgstr "Wallis and Futuna" #: admin/manage-fields.php:525 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Western Sahara" msgstr "Western Sahara" #: admin/manage-fields.php:526 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Yemen" msgstr "Yemen" #: admin/manage-fields.php:527 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Zambia" msgstr "Zambia" #: admin/manage-fields.php:528 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Zimbabwe" msgstr "Zimbabwe" #: admin/manage-fields.php:1216 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." msgstr "" #: assets/misc/plugin-compatibilities.php:237 msgid "Your account has to be confirmed by an administrator before you can log in." msgstr "" #: features/admin-approval/admin-approval.php:214 msgid "Your account has been successfully created!" msgstr "" #: features/functions.php:678 #: front-end/extra-fields/recaptcha/recaptcha.php:374 #: front-end/extra-fields/recaptcha/recaptcha.php:379 #: front-end/extra-fields/recaptcha/recaptcha.php:421 #: front-end/extra-fields/recaptcha/recaptcha.php:458 msgid "Please enter a (valid) reCAPTCHA value" msgstr "" #: front-end/extra-fields/recaptcha/recaptcha.php:421 msgid "Click the BACK button on your browser, and try again." msgstr "" #: front-end/extra-fields/upload/upload_helper_functions.php:78 #: front-end/extra-fields/upload/upload_helper_functions.php:87 msgid "Sorry, you cannot upload this file type for this field." msgstr "" #: front-end/extra-fields/upload/upload_helper_functions.php:94 msgid "An error occurred, please try again later." msgstr "" #: modules/user-listing/userlisting.php:282 msgid "More" msgstr "" #: modules/user-listing/userlisting.php:376 msgid "You do not have permission to view this user list." msgstr "" #: modules/user-listing/userlisting.php:389 msgid "You do not have the required user role to view this user list." msgstr "" #: modules/user-listing/userlisting.php:2186 msgid "Ascending" msgstr "" #: modules/user-listing/userlisting.php:2187 msgid "Descending" msgstr "" #: admin/add-ons.php:148 admin/add-ons.php:248 #: admin/pms-cross-promotion.php:134 admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "" #: admin/admin-functions.php:200 msgid "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. " msgstr "" #: admin/manage-fields.php:80 msgid "Choose one of the supported field types" msgstr "" #: admin/manage-fields.php:82 msgid ". Extra Field Types are available in Hobbyist or PRO versions." msgstr "" #: admin/manage-fields.php:129 msgid "Site Key" msgstr "" #: admin/manage-fields.php:129 msgid "The site key from Google, www.google.com/recaptcha" msgstr "" #: admin/manage-fields.php:130 msgid "Secret Key" msgstr "" #: admin/manage-fields.php:130 msgid "The secret key from Google, www.google.com/recaptcha" msgstr "" #: admin/manage-fields.php:1020 msgid "You must enter the site key\n" msgstr "" #: admin/manage-fields.php:1022 msgid "You must enter the secret key\n" msgstr "" #: admin/add-ons.php:10 admin/add-ons.php:32 msgid "Add-Ons" msgstr "" #: admin/add-ons.php:34 admin/add-ons.php:129 admin/add-ons.php:231 #: admin/pms-cross-promotion.php:78 admin/pms-cross-promotion.php:114 #: admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "" #: admin/add-ons.php:36 admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "" #: admin/add-ons.php:37 admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "" #: admin/add-ons.php:39 msgid "Add-On is Active" msgstr "" #: admin/add-ons.php:40 msgid "Add-On has been activated" msgstr "" #: admin/add-ons.php:41 admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "" #: admin/add-ons.php:43 admin/add-ons.php:140 msgid "Add-On is active" msgstr "" #: admin/add-ons.php:44 admin/add-ons.php:138 msgid "Add-On is inactive" msgstr "" #: admin/add-ons.php:46 admin/add-ons.php:133 admin/add-ons.php:235 #: admin/pms-cross-promotion.php:90 admin/pms-cross-promotion.php:118 #: admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "" #: admin/add-ons.php:47 msgid "Add-On has been deactivated." msgstr "" #: admin/add-ons.php:59 msgid "Something went wrong, we could not connect to the server. Please try again later." msgstr "" #: admin/pms-cross-promotion.php:137 admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "" #: admin/add-ons.php:153 admin/add-ons.php:251 #: admin/pms-cross-promotion.php:141 admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "" #: admin/add-ons.php:162 msgid "Upgrade Profile Builder" msgstr "" #: admin/add-ons.php:163 msgid "Not compatible with Profile Builder" msgstr "" #: admin/add-ons.php:171 msgid "Not compatible with your version of Profile Builder." msgstr "" #: admin/add-ons.php:172 msgid "Minimum required Profile Builder version:" msgstr "" #: admin/add-ons.php:177 msgid "Could not install add-on. Retry or install manually." msgstr "" #: front-end/default-fields/email/email.php:51 msgid "You must enter a valid email address." msgstr "" #: front-end/default-fields/username/username.php:52 #: front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "" #: front-end/default-fields/username/username.php:52 #: front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "" #: front-end/extra-fields/user-role/user-role.php:72 #: front-end/extra-fields/user-role/user-role.php:85 msgid "Only administrators can see this field on edit profile forms." msgstr "" #: front-end/extra-fields/user-role/user-role.php:81 msgid "As an administrator you cannot change your role." msgstr "" #: modules/email-customizer/admin-email-customizer.php:117 msgid "" "\n" "

            {{username}} has requested a password change via the password reset feature.

            \n" "

            His/her new password is: {{password}}

            \n" msgstr "" #: modules/email-customizer/admin-email-customizer.php:141 msgid "Admin Notification for User Password Reset" msgstr "" #: modules/email-customizer/email-customizer.php:46 msgid "Reset Key" msgstr "" #: modules/email-customizer/email-customizer.php:47 msgid "Reset Url" msgstr "" #: modules/email-customizer/email-customizer.php:48 msgid "Reset Link" msgstr "" #: modules/email-customizer/user-email-customizer.php:204 msgid "" "\n" "

            Someone requested that the password be reset for the following account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            \n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" msgstr "" #: modules/email-customizer/user-email-customizer.php:218 msgid "[{{site_name}}] Password Reset" msgstr "" #: modules/email-customizer/user-email-customizer.php:229 msgid "Password Reset Email" msgstr "" #: modules/email-customizer/user-email-customizer.php:235 msgid "" "\n" "

            You have successfully reset your password to: {{password}}

            \n" msgstr "" #: modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset Successfully" msgstr "" #: modules/email-customizer/user-email-customizer.php:256 msgid "Password Reset Success Email" msgstr "" #: modules/user-listing/userlisting.php:159 msgid "User Nicename" msgstr "" #: modules/user-listing/userlisting.php:499 msgid "None" msgstr "" #: admin/admin-functions.php:132 msgid "ERROR: The password must have the minimum length of %s characters" msgstr "" #: admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr "" #: admin/general-settings.php:163 msgid "Username and Email" msgstr "" #: admin/general-settings.php:168 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "" #: admin/general-settings.php:169 msgid "\"Username\" - users can Log In only with Username." msgstr "" #: admin/general-settings.php:170 msgid "\"Email\" - users can Log In only with Email." msgstr "" #: admin/manage-fields.php:122 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "" #: admin/manage-fields.php:123 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)" msgstr "" #: admin/manage-fields.php:133 msgid "User Roles" msgstr "" #: admin/manage-fields.php:133 msgid "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "" #: admin/manage-fields.php:134 msgid "User Roles Order" msgstr "" #: admin/manage-fields.php:134 msgid "Save the user role order from the user roles checkboxes" msgstr "" #: admin/manage-fields.php:1125 msgid "Please select at least one user role\n" msgstr "" #: admin/register-version.php:22 msgid "Profile Builder Register" msgstr "" #: admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "" #: admin/register-version.php:81 msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr "" #: admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr "" #: assets/lib/wck-api/wordpress-creation-kit.php:334 msgid "Add Entry" msgstr "" #: features/email-confirmation/class-email-confirmation.php:91 msgid "show" msgstr "" #: features/functions.php:736 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" msgstr "" #: front-end/class-formbuilder.php:643 msgid "User to edit:" msgstr "" #: front-end/default-fields/password/password.php:46 front-end/recover.php:254 msgid "The password must have the minimum length of %s characters" msgstr "" #: front-end/default-fields/password/password.php:50 front-end/recover.php:258 msgid "The password must have a minimum strength of %s" msgstr "" #: front-end/extra-fields/user-role/user-role.php:118 msgid "You cannot register this user role" msgstr "" #: front-end/login.php:153 msgid "username or email" msgstr "" #: front-end/login.php:222 msgid "Username or Email" msgstr "" #: front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "" #: front-end/logout.php:15 msgid "Log out »" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:92 #: modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "" #: modules/user-listing/userlisting.php:2100 msgid "View all extra shortcode parameters" msgstr "" #: modules/user-listing/userlisting.php:2114 msgid "displays only the users that you specified the user_id for" msgstr "" #: modules/user-listing/userlisting.php:2120 msgid "displays all users except the ones you specified the user_id for" msgstr "" #: features/functions.php:566 msgid "Minimum length of %d characters" msgstr "" #: front-end/class-formbuilder.php:135 front-end/class-formbuilder.php:138 msgid "This message is only visible by administrators" msgstr "" #: modules/user-listing/userlisting.php:413 msgid "User not found" msgstr "" #: modules/email-customizer/admin-email-customizer.php:38 #: modules/email-customizer/user-email-customizer.php:38 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "" #: admin/admin-bar.php:48 msgid "Choose which user roles view the admin bar in the front-end of the website." msgstr "" #: admin/manage-fields.php:127 msgid "Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes" msgstr "" #: admin/manage-fields.php:1052 msgid "The meta-name cannot be empty\n" msgstr "" #: admin/register-version.php:69 msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received" msgstr "" #: admin/register-version.php:243 msgid "

            Your Profile Builder serial number is invalid or missing.
            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

            " msgstr "" #: assets/lib/wck-api/fields/country select.php:14 #: assets/lib/wck-api/fields/cpt select.php:17 #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36 #: front-end/extra-fields/select-cpt/select-cpt.php:60 msgid "...Choose" msgstr "" #: features/class-list-table.php:526 features/class-list-table.php:942 msgid "1 item" msgid_plural "%s items" msgstr[0] "" #: features/functions.php:552 msgid "Very Weak" msgstr "" #: features/functions.php:640 msgid "This field is required" msgstr "" #: features/functions.php:704 msgid "Cancel" msgstr "" #: features/functions.php:740 msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s" msgstr "" #: front-end/login.php:144 msgid "Invalid username." msgstr "" #: front-end/login.php:149 front-end/login.php:153 msgid "username" msgstr "" #: front-end/login.php:149 msgid "email" msgstr "" #: front-end/login.php:256 msgid "Lost your password?" msgstr "" #: index.php:34 msgid " is also activated. You need to deactivate it before activating this version of the plugin." msgstr "" #: modules/email-customizer/admin-email-customizer.php:54 #: modules/email-customizer/user-email-customizer.php:54 msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email" msgstr "" #: features/email-confirmation/email-confirmation.php:573 #: features/email-confirmation/email-confirmation.php:582 #: modules/email-customizer/email-customizer.php:487 #: modules/email-customizer/email-customizer.php:494 #: modules/email-customizer/email-customizer.php:508 msgid "Your selected password at signup" msgstr "" #: modules/email-customizer/user-email-customizer.php:38 msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save." msgstr "" #: modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "" #: modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "" #: modules/multiple-forms/multiple-forms.php:406 msgid "Delete all" msgstr "" #: modules/user-listing/userlisting.php:1592 msgid "Choose..." msgstr "" #: modules/user-listing/userlisting.php:2196 msgid "Set the number of users to be displayed on every paginated part of the all-userlisting" msgstr "" #: admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "顯示/隱藏管理員工具欄在前端" #: admin/admin-bar.php:10 admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "管理員工具欄設置" #: admin/admin-bar.php:57 msgid "User-Role" msgstr "用戶角色" #: admin/admin-bar.php:58 msgid "Visibility" msgstr "可見" #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "默認" #: admin/admin-bar.php:74 msgid "Show" msgstr "顯示" #: admin/admin-bar.php:75 modules/user-listing/userlisting.php:1537 msgid "Hide" msgstr "隱藏" #: admin/admin-bar.php:86 admin/general-settings.php:208 #: admin/register-version.php:95 features/functions.php:697 #: modules/modules.php:127 msgid "Save Changes" msgstr "保存更改" #: admin/admin-functions.php:37 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 )" msgstr "登錄允許使用電子郵件。這字段不會顯示在前端! ( 妳可以改變這些設置,在 \"%s\" 選項卡中 )" #: admin/admin-functions.php:37 admin/general-settings.php:10 #: admin/general-settings.php:38 msgid "General Settings" msgstr "常規設置" #: admin/admin-functions.php:137 admin/general-settings.php:194 msgid "Very weak" msgstr "非常弱" #: admin/admin-functions.php:137 admin/general-settings.php:195 #: features/functions.php:552 msgid "Weak" msgstr "弱" #: admin/admin-functions.php:137 admin/general-settings.php:196 #: features/functions.php:552 msgid "Medium" msgstr "中" #: admin/admin-functions.php:137 admin/general-settings.php:197 #: features/functions.php:552 msgid "Strong" msgstr "強" #: admin/admin-functions.php:187 msgid "Add Field" msgstr "添加字段" #: admin/admin-functions.php:189 #: modules/class-mustache-templates/class-mustache-templates.php:390 msgid "Save Settings" msgstr "保存設置" #: admin/basic-info.php:10 msgid "Basic Information" msgstr "基本信息" #: admin/basic-info.php:29 msgid "Version %s" msgstr "版本 %s" #: admin/basic-info.php:30 msgid "Profile Builder " msgstr "Profile Builder " #: admin/basic-info.php:31 msgid "The best way to add front-end registration, edit profile and login forms." msgstr "最好的前端註冊、編輯個人資料與登陸表單的實現方式。" #: admin/basic-info.php:33 msgid "For Modern User Interaction" msgstr "新穎的用戶交互。" #: admin/basic-info.php:36 features/login-widget/login-widget.php:59 msgid "Login" msgstr "登陸" #: admin/basic-info.php:40 msgid "Registration" msgstr "註冊" #: admin/basic-info.php:44 msgid "Edit Profile" msgstr "編輯個人資料" #: admin/basic-info.php:51 msgid "Extra Features" msgstr "額外字段" #: admin/basic-info.php:52 msgid "Features that give you more control over your users, increased security and help you fight user registration spam." msgstr "特性,讓您對您的用戶更多的控制,增強安全性,幫助用戶註冊與限制垃圾郵件。" #: admin/basic-info.php:53 msgid "Enable extra features" msgstr "啟用額外功能" #: admin/basic-info.php:57 msgid "Recover Password" msgstr "恢復密碼" #: admin/basic-info.php:61 msgid "Admin Approval (*)" msgstr "管理員審批 (*)" #: admin/basic-info.php:62 msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI." msgstr "妳決定在妳的網站用戶是誰。從WordPress 界面通過電子郵件或批準的多個用戶獲得通知。" #: admin/basic-info.php:65 msgid "Email Confirmation" msgstr "電子郵件確認" #: admin/basic-info.php:66 msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address." msgstr "確保用戶註冊是使用真實的電子郵件。註冊用戶將收到壹個通知,確認他們的電子郵件地址。" #: admin/basic-info.php:69 msgid "Minimum Password Length and Strength Meter" msgstr "最小密碼長度和強度表" #: admin/basic-info.php:70 msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength." msgstr "消除弱密碼最小密碼長度,並強制執行設定的密碼強度。" #: admin/basic-info.php:73 msgid "Login with Email or Username" msgstr "通過電子郵件或用戶名登錄" #: admin/basic-info.php:74 msgid "Allow users to log in with their email or username when accessing your site." msgstr "當用戶訪問您的網站時,允許用戶登錄他們的用戶名和電子郵件。" #: admin/basic-info.php:87 msgid "Customize Your Forms The Way You Want (*)" msgstr "自定義表格用妳想要的方式(*)" #: admin/basic-info.php:88 msgid "With Extra Profile Fields you can create the exact registration form your project needs." msgstr "額外個人資料字段,根據您的項目需求妳可以創建精確的登註冊表單。" #: admin/basic-info.php:90 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "額外個人資料字段需要激活 Hobbyist 或者 PRO 版本才可用" #: admin/basic-info.php:92 msgid "Get started with extra fields" msgstr "開始使用額外字段" #: admin/basic-info.php:95 msgid "Avatar Upload" msgstr "頭像上傳" #: admin/basic-info.php:96 msgid "Generic Uploads" msgstr "常規上傳" #: admin/basic-info.php:97 msgid "Agree To Terms Checkbox" msgstr "同意使用條款" #: admin/basic-info.php:98 msgid "Datepicker" msgstr "日期選擇器" #: admin/basic-info.php:101 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: admin/basic-info.php:102 msgid "Country Select" msgstr "國家選擇" #: admin/basic-info.php:104 msgid "Timezone Select" msgstr "時區選擇" #: admin/basic-info.php:108 msgid "Input / Hidden Input" msgstr "輸入/隱藏輸入" #: admin/basic-info.php:110 msgid "Checkbox" msgstr "復選框" #: admin/basic-info.php:111 msgid "Select" msgstr "選擇" #: admin/basic-info.php:112 msgid "Radio Buttons" msgstr "單選按鈕" #: admin/basic-info.php:113 msgid "Textarea" msgstr "文本框" #: admin/basic-info.php:125 msgid "Powerful Modules (**)" msgstr "強大的模塊(**)" #: admin/basic-info.php:126 msgid "Everything you will need to manage your users is probably already available using the Pro Modules." msgstr "使用壹切妳需要的工具,用於管理妳的用戶的模塊。" #: admin/basic-info.php:128 msgid "Enable your modules" msgstr "啟用妳的模塊" #: admin/basic-info.php:131 msgid "Find out more about PRO Modules" msgstr "了解關於專業版模塊的更多內容" #: admin/basic-info.php:136 modules/modules.php:89 #: modules/user-listing/userlisting.php:11 #: modules/user-listing/userlisting.php:12 #: modules/user-listing/userlisting.php:17 #: modules/user-listing/userlisting.php:23 msgid "User Listing" msgstr "用戶列表" #: admin/basic-info.php:138 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." msgstr "易於編輯模列表您的網站用戶,以及創建單用戶頁面模板。基於簡碼,提供了許多選項來定制您的列表。" #: admin/basic-info.php:144 msgid "Email Customizer" msgstr "電子郵件定制" #: admin/basic-info.php:145 msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval." msgstr "個性化郵件發送到妳的用戶或管理員。註冊,電子郵件確認,管理員批準/拒絕。" #: admin/basic-info.php:148 #: modules/custom-redirects/custom_redirects_admin.php:32 #: modules/custom-redirects/custom_redirects_admin.php:33 #: modules/modules.php:110 msgid "Custom Redirects" msgstr "自定義重定向" #: admin/basic-info.php:149 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." msgstr "讓妳的用戶離開 WordPress 儀表盤,重定向到他們的前端頁面,登錄註冊壹切都只需幾個點擊。" #: admin/basic-info.php:154 modules/modules.php:75 msgid "Multiple Registration Forms" msgstr "多個註冊形式" #: admin/basic-info.php:155 msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users." msgstr "設置多個註冊表單為某些用戶角色不同的字段。獲取來自不同類型的用戶不同的信息。" #: admin/basic-info.php:158 modules/modules.php:82 msgid "Multiple Edit-profile Forms" msgstr "多個編輯個人資料形式" #: admin/basic-info.php:159 msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles." msgstr "允許不同的用戶角色去編輯他們的具體信息。設置多個編輯表單壹不同的作用字段。" #: admin/basic-info.php:187 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr " * 僅獲得在 %1$sHobbyist 與專業版本 %2$s." #: admin/basic-info.php:188 msgid "** only available in the %1$sPro version%2$s." msgstr "** 僅激活在 %1$s專業版本 %2$s." #: admin/general-settings.php:42 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "在前端載入 Profile Builder 的CSS文件:" #: admin/general-settings.php:45 admin/general-settings.php:58 #: admin/general-settings.php:107 #: 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:2201 msgid "Yes" msgstr "是" #: admin/general-settings.php:47 msgid "You can find the default file here: %1$s" msgstr "妳可以在這裏找到默認的文件: %1$s" #: admin/general-settings.php:54 msgid "\"Email Confirmation\" Activated:" msgstr "\"郵件確認\" 激活:" #: admin/general-settings.php:59 admin/general-settings.php:108 #: modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:229 #: modules/multiple-forms/register-forms.php:230 msgid "No" msgstr "不" #: admin/general-settings.php:64 msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s." msgstr "您可以找到還沒確認郵箱地址的列表 %1$s用戶 > 所有用戶 > 郵箱確認%2$s." #: admin/general-settings.php:72 msgid "\"Email Confirmation\" Landing Page:" msgstr "\"郵件確認\" 登陸頁面:" #: admin/general-settings.php:77 msgid "Existing Pages" msgstr "現有頁面" #: admin/general-settings.php:92 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." msgstr "指定供用戶確認郵件的轉向頁面。此頁面可不同於註冊頁面(s)並且可隨時改變。如果沒有指定,將顯示給用戶壹個簡單確認頁。" #: admin/general-settings.php:103 msgid "\"Admin Approval\" Activated:" msgstr "\"管理員審批\" 激活:" #: admin/general-settings.php:111 msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "您可以找到用戶在 %1$s用戶 > 所有用戶 > 管理員審批%2$s." #: admin/general-settings.php:149 msgid "\"Admin Approval\" Feature:" msgstr "\"管理員審批\" 功能 :" #: admin/general-settings.php:152 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." msgstr "您控制您的用戶在網站上的角色。獲得遊戲通知或者壹次性批量審批多用戶。啟用管理審批功能需要升級到 %1$sHobbyist 或者 專業版本%2$s。" #: admin/general-settings.php:159 msgid "Allow Users to Log in With:" msgstr "允許用戶使用什麽登陸:" #: admin/general-settings.php:164 admin/manage-fields.php:198 #: features/admin-approval/class-admin-approval.php:166 #: features/email-confirmation/class-email-confirmation.php:167 #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218 #: modules/custom-redirects/custom_redirects_admin.php:56 #: modules/email-customizer/email-customizer.php:28 #: modules/user-listing/userlisting.php:102 #: modules/user-listing/userlisting.php:277 #: modules/user-listing/userlisting.php:730 #: modules/user-listing/userlisting.php:2152 msgid "Username" msgstr "姓名" #: admin/general-settings.php:165 front-end/login.php:215 #: modules/email-customizer/email-customizer.php:29 #: modules/user-listing/userlisting.php:736 #: modules/user-listing/userlisting.php:2153 msgid "Email" msgstr "電子郵件" #: admin/general-settings.php:177 msgid "Minimum Password Length:" msgstr "最小密碼長度:" #: admin/general-settings.php:182 msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit" msgstr "輸入密碼必須最少字符。留空為沒有限制" #: admin/general-settings.php:189 msgid "Minimum Password Strength:" msgstr "最小密碼強度:" #: admin/general-settings.php:193 msgid "Disabled" msgstr "關閉" #: admin/manage-fields.php:12 msgid "Manage Fields" msgstr "管理字段" #: admin/manage-fields.php:13 msgid "Manage Default and Extra Fields" msgstr "管理默認與額外字段" #: admin/manage-fields.php:116 msgid "Field Title" msgstr "字段標題" #: admin/manage-fields.php:116 msgid "Title of the field" msgstr "字段的標題" #: admin/manage-fields.php:117 #: modules/multiple-forms/edit-profile-forms.php:245 #: modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "字段" #: admin/manage-fields.php:118 msgid "Meta-name" msgstr "Meta-name" #: admin/manage-fields.php:119 #: modules/custom-redirects/custom_redirects_admin.php:65 #: modules/custom-redirects/custom_redirects_admin.php:95 #: modules/custom-redirects/custom_redirects_admin.php:114 #: modules/custom-redirects/custom_redirects_admin.php:139 #: modules/multiple-forms/edit-profile-forms.php:246 #: modules/multiple-forms/register-forms.php:267 msgid "ID" msgstr "編號" #: admin/manage-fields.php:119 #: modules/multiple-forms/edit-profile-forms.php:246 #: modules/multiple-forms/register-forms.php:267 msgid "A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be edited" msgstr "壹個獨特的、為特定的字段自動生成ID
            如果需要可以使用過濾器調用這個目標
            不能編輯" #: admin/manage-fields.php:120 msgid "Description" msgstr "描述" #: admin/manage-fields.php:120 msgid "Enter a (detailed) description of the option for end users to read
            Optional" msgstr "輸入(詳細)的最終用戶閱讀選項的描述
            可選" #: admin/manage-fields.php:121 msgid "Row Count" msgstr "行數" #: admin/manage-fields.php:121 msgid "Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5" msgstr "指定 'Textarea' 字段的行數
            如果沒有指定,缺省為5" #: admin/manage-fields.php:122 msgid "Allowed Image Extensions" msgstr "允許的圖像擴展" #: admin/manage-fields.php:123 msgid "Allowed Upload Extensions" msgstr "允許的上傳擴展" #: admin/manage-fields.php:124 msgid "Avatar Size" msgstr "頭像大小" #: admin/manage-fields.php:124 msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100" msgstr "輸入 '頭像' 大小數值 ( 20 與 200 之間 )
            如果沒指定,默認是100" #: admin/manage-fields.php:125 msgid "Date-format" msgstr "日期格式" #: admin/manage-fields.php:126 msgid "Terms of Agreement" msgstr "協議條款" #: admin/manage-fields.php:126 msgid "Enter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>" msgstr "輸入壹個供用戶查看的協議內容。
            連接可以使用 HTML 語法,例如:<a href=\"custom_url\">custom_text</a>" #: admin/manage-fields.php:127 msgid "Options" msgstr "選項" #: admin/manage-fields.php:128 msgid "Labels" msgstr "標簽" #: admin/manage-fields.php:128 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "輸入壹個逗號分隔標簽
            對用戶可見的" #: admin/manage-fields.php:135 msgid "Default Value" msgstr "默認值" #: admin/manage-fields.php:135 msgid "Default value of the field" msgstr "該字段的默認值" #: admin/manage-fields.php:136 admin/manage-fields.php:138 #: admin/manage-fields.php:139 admin/manage-fields.php:140 msgid "Default Option" msgstr "默認選項" #: admin/manage-fields.php:136 msgid "Specify the option which should be selected by default" msgstr "指定選項的默認選擇值" #: admin/manage-fields.php:137 msgid "Default Option(s)" msgstr "默認選項(s)" #: admin/manage-fields.php:137 msgid "Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)" msgstr "指定選項默認是否勾選
            如果有多個值的選項,使用“,”分開(逗號)" #: admin/manage-fields.php:151 msgid "Default Content" msgstr "默認內容" #: admin/manage-fields.php:151 msgid "Default value of the textarea" msgstr "文本默認值" #: admin/manage-fields.php:158 msgid "Required" msgstr "必須" #: admin/manage-fields.php:158 msgid "Whether the field is required or not" msgstr "該字段是否必須" #: admin/manage-fields.php:159 msgid "Overwrite Existing" msgstr "覆蓋現有" #: admin/manage-fields.php:159 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
            Use this at your own risk" msgstr "選擇“是”將增加字段到列表中,但將覆蓋在數據庫中具有相同名稱的任何其他領域的 meta-name
            使用需自己承擔風險" #: admin/manage-fields.php:165 msgid "Field Properties" msgstr "字段屬性" #: admin/manage-fields.php:178 msgid "Registration & Edit Profile" msgstr "註冊與編輯資料" #: admin/manage-fields.php:197 msgid "Name" msgstr "姓名" #: admin/manage-fields.php:198 msgid "Usernames cannot be changed." msgstr " 用戶名不可更改。" #: admin/manage-fields.php:199 msgid "First Name" msgstr "名字" #: admin/manage-fields.php:200 msgid "Last Name" msgstr "姓氏" #: admin/manage-fields.php:201 modules/user-listing/userlisting.php:769 #: modules/user-listing/userlisting.php:2160 msgid "Nickname" msgstr "昵稱" #: admin/manage-fields.php:202 msgid "Display name publicly as" msgstr "公開顯示為" #: admin/manage-fields.php:203 msgid "Contact Info" msgstr "聯系信息" #: admin/manage-fields.php:204 #: features/admin-approval/class-admin-approval.php:169 #: features/email-confirmation/class-email-confirmation.php:168 #: modules/user-listing/userlisting.php:108 msgid "E-mail" msgstr "電子郵件" #: admin/manage-fields.php:205 modules/email-customizer/email-customizer.php:32 #: modules/user-listing/userlisting.php:111 #: modules/user-listing/userlisting.php:751 #: modules/user-listing/userlisting.php:2154 msgid "Website" msgstr "站點" #: admin/manage-fields.php:209 msgid "AIM" msgstr "AIM" #: admin/manage-fields.php:210 msgid "Yahoo IM" msgstr "雅虎通訊" #: admin/manage-fields.php:211 msgid "Jabber / Google Talk" msgstr "Jabber / Google Talk" #: admin/manage-fields.php:214 msgid "About Yourself" msgstr "關於您自己" #: admin/manage-fields.php:215 modules/user-listing/userlisting.php:114 #: modules/user-listing/userlisting.php:754 #: modules/user-listing/userlisting.php:2155 msgid "Biographical Info" msgstr "個人說明" #: admin/manage-fields.php:215 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "分享關於您的壹些信息。可能會被公開。" #: admin/manage-fields.php:216 front-end/recover.php:73 #: modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "新密碼" #: admin/manage-fields.php:216 msgid "Type your password." msgstr "重復新密碼" #: admin/manage-fields.php:217 front-end/recover.php:74 msgid "Repeat Password" msgstr "重復新密碼" #: admin/manage-fields.php:217 msgid "Type your password again. " msgstr "再輸入壹遍新密碼。" #: admin/manage-fields.php:977 admin/manage-fields.php:1134 msgid "You must select a field\n" msgstr "妳必須選擇壹個字段\n" #: admin/manage-fields.php:987 msgid "Please choose a different field type as this one already exists in your form (must be unique)\n" msgstr "請選擇壹個不同的字段類型,這個已經存在妳的表格(必須是唯壹的)\n" #: admin/manage-fields.php:998 msgid "The entered avatar size is not between 20 and 200\n" msgstr "輸入的頭像大小不是20與200之間 \n" #: admin/manage-fields.php:1001 msgid "The entered avatar size is not numerical\n" msgstr "輸入的頭像大小不是數值\n" #: admin/manage-fields.php:1009 msgid "The entered row number is not numerical\n" msgstr "輸入的行數不是數值\n" #: admin/manage-fields.php:1012 msgid "You must enter a value for the row number\n" msgstr "您必須輸入壹個值的行數\n" #: admin/manage-fields.php:1033 msgid "The entered value for the Datepicker is not a valid date-format\n" msgstr "日期選擇器輸入的值不是有效的日期格式\n" #: admin/manage-fields.php:1036 msgid "You must enter a value for the date-format\n" msgstr "您必須輸入壹個日期格式的值\n" #: admin/manage-fields.php:1064 admin/manage-fields.php:1072 #: admin/manage-fields.php:1083 msgid "That meta-name is already in use\n" msgstr "meta-name 已在使用\n" #: admin/manage-fields.php:1114 msgid "The following option(s) did not coincide with the ones in the options list: %s\n" msgstr "下列選項(s)不符合的選項清單: %s\n" #: admin/manage-fields.php:1118 msgid "The following option did not coincide with the ones in the options list: %s\n" msgstr "下列選項不符合的選項清單: %s\n" #: admin/manage-fields.php:1141 msgid "That field is already added in this form\n" msgstr "這個字段已經加入這個\n" #: admin/manage-fields.php:1190 msgid "
            Title
            Type
            Meta Name
            Required
            " msgstr "
            標題
            類型
            Meta Name
            必須
            " #: admin/manage-fields.php:1190 #: assets/lib/wck-api/wordpress-creation-kit.php:438 #: assets/lib/wck-api/wordpress-creation-kit.php:535 #: features/admin-approval/class-admin-approval.php:108 #: features/functions.php:718 features/functions.php:725 #: modules/custom-redirects/custom_redirects_admin.php:179 #: modules/custom-redirects/custom_redirects_admin.php:193 #: modules/custom-redirects/custom_redirects_admin.php:207 #: modules/custom-redirects/custom_redirects_admin.php:221 #: modules/multiple-forms/multiple-forms.php:406 msgid "Edit" msgstr "編輯" #: admin/manage-fields.php:1190 #: assets/lib/wck-api/wordpress-creation-kit.php:438 #: assets/lib/wck-api/wordpress-creation-kit.php:536 #: features/admin-approval/class-admin-approval.php:113 #: features/admin-approval/class-admin-approval.php:224 #: features/email-confirmation/class-email-confirmation.php:120 #: features/email-confirmation/class-email-confirmation.php:217 #: features/functions.php:711 features/functions.php:725 #: modules/custom-redirects/custom_redirects_admin.php:179 #: modules/custom-redirects/custom_redirects_admin.php:193 #: modules/custom-redirects/custom_redirects_admin.php:207 #: modules/custom-redirects/custom_redirects_admin.php:221 msgid "Delete" msgstr "刪除" #: admin/manage-fields.php:1205 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "使用這些簡碼在頁面中妳想要的形式顯示:" #: admin/register-version.php:14 msgid "Register Your Version" msgstr "註冊您的版本" #: admin/register-version.php:14 msgid "Register Version" msgstr "註冊版本" #: admin/register-version.php:70 msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support." msgstr "如果您註冊這個版本的 Profile Builder ,您將收到有關升級,補丁,和技術支持。" #: admin/register-version.php:72 msgid " Serial Number:" msgstr "序號:" #: admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "序號成功驗證!" #: admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "序號無法驗證!" #: admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "序號無法驗證,因已過期!" #: admin/register-version.php:85 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!" msgstr "序號無法驗證,因為連接超時。這可能是由於服務器維護。請稍後再試!" #: admin/register-version.php:87 msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "(例如: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725 msgid "Content" msgstr "內容" #: assets/lib/wck-api/wordpress-creation-kit.php:535 msgid "Edit this item" msgstr "編輯此項目" #: assets/lib/wck-api/wordpress-creation-kit.php:536 msgid "Delete this item" msgstr "刪除此項目" #: assets/lib/wck-api/wordpress-creation-kit.php:705 msgid "Please enter a value for the required field " msgstr "請為這個字段輸入所需的值" #: front-end/extra-fields/upload/upload.php:122 msgid "Select File" msgstr "選擇文件" #: assets/lib/wck-api/fields/upload.php:43 #: front-end/extra-fields/upload/upload.php:112 msgid "Remove" msgstr "移除" #: assets/lib/wck-api/fields/nested repeater.php:8 msgid "You can add the information for the %s after you add a entry" msgstr "您可以添加信息到 %s" #: assets/lib/wck-api/fields/upload.php:75 #: front-end/extra-fields/upload/upload.php:128 msgid "Upload " msgstr "上傳" #: features/class-list-table.php:184 msgid "No items found." msgstr "找不到項目。" #: features/class-list-table.php:308 msgid "Bulk Actions" msgstr "批量動作" #: features/class-list-table.php:318 msgid "Apply" msgstr "應用" #: features/class-list-table.php:402 msgid "Show all dates" msgstr "顯示所有日期" #: features/class-list-table.php:415 msgid "%1$s %2$d" msgstr "%1$s %2$d" #: features/class-list-table.php:431 msgid "List View" msgstr "列表查看" #: features/class-list-table.php:432 msgid "Excerpt View" msgstr "摘錄查看" #: features/class-list-table.php:458 msgid "%s pending" msgstr "%s 等待中" #: features/class-list-table.php:566 msgid "%1$s of %2$s" msgstr "%1$s 的 %2$s" #: features/class-list-table.php:713 msgid "Select All" msgstr "選擇所有" #: features/functions.php:526 msgid "Strength indicator" msgstr "強度指標" #: features/admin-approval/admin-approval.php:14 #: features/admin-approval/class-admin-approval.php:453 msgid "Admin Approval" msgstr "管理員審批" #: features/admin-approval/admin-approval.php:28 #: features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "您想要" #: features/admin-approval/admin-approval.php:51 msgid "Your session has expired! Please refresh the page and try again" msgstr "您的會話已過期!請刷新頁面重試" #: features/admin-approval/admin-approval.php:64 msgid "User successfully approved!" msgstr "用戶成功批準!" #: features/admin-approval/admin-approval.php:74 msgid "User successfully unapproved!" msgstr "用戶成功拒絕!" #: features/admin-approval/admin-approval.php:80 msgid "User successfully deleted!" msgstr "用戶成功刪除!" #: features/admin-approval/admin-approval.php:85 #: features/admin-approval/admin-approval.php:129 #: features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "妳沒有權限操作,或出現壹個錯誤!" #: features/admin-approval/admin-approval.php:96 msgid "Your session has expired! Please refresh the page and try again." msgstr "您的會話已過期!請刷新頁面重試" #: features/admin-approval/admin-approval.php:108 msgid "Users successfully approved!" msgstr "用戶成功批準!" #: features/admin-approval/admin-approval.php:117 msgid "Users successfully unapproved!" msgstr "用戶成功拒絕!" #: features/admin-approval/admin-approval.php:125 msgid "Users successfully deleted!" msgstr "用戶成功刪除!" #: features/admin-approval/admin-approval.php:145 msgid "Your account on %1$s has been approved!" msgstr "您在 %1$s 的帳號成功通過!" #: features/admin-approval/admin-approval.php:146 #: features/admin-approval/admin-approval.php:149 msgid "approved" msgstr "已批準" #: features/admin-approval/admin-approval.php:148 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "管理員已經批準您在 %1$s (%2$s) 的帳號。" #: features/admin-approval/admin-approval.php:153 msgid "Your account on %1$s has been unapproved!" msgstr "您在 %1$s 的帳號被拒絕!" #: features/admin-approval/admin-approval.php:154 #: features/admin-approval/admin-approval.php:157 msgid "unapproved" msgstr "已拒絕" #: features/admin-approval/admin-approval.php:156 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "管理員已拒絕您在 %1$s (%2$s) 的帳號。" #: features/admin-approval/admin-approval.php:175 msgid "ERROR: Your account has to be confirmed by an administrator before you can log in." msgstr "錯誤: 您的帳號需要管理員批準後才能登陸使用。" #: features/admin-approval/admin-approval.php:187 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature." msgstr "您的帳號在管理員確認前可以使用 \"密碼找回\" 功能." #: features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "刪除這個用戶?" #: features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "拒絕這個用戶?" #: features/admin-approval/class-admin-approval.php:116 #: features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr "拒絕" #: features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "允許這個用戶?" #: features/admin-approval/class-admin-approval.php:118 #: features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "允許" #: features/admin-approval/class-admin-approval.php:167 #: modules/user-listing/userlisting.php:278 #: modules/user-listing/userlisting.php:742 #: modules/user-listing/userlisting.php:2157 msgid "Firstname" msgstr "名子" #: features/admin-approval/class-admin-approval.php:168 #: modules/user-listing/userlisting.php:745 #: modules/user-listing/userlisting.php:2158 msgid "Lastname" msgstr "姓氏" #: features/admin-approval/class-admin-approval.php:170 #: modules/user-listing/userlisting.php:149 #: modules/user-listing/userlisting.php:279 #: modules/user-listing/userlisting.php:772 #: modules/user-listing/userlisting.php:2162 msgid "Role" msgstr "角色" #: features/admin-approval/class-admin-approval.php:171 #: features/email-confirmation/class-email-confirmation.php:169 msgid "Registered" msgstr "已註冊" #: features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "用戶狀態" #: features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "妳想批量允許所選用戶?" #: features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "妳想批量拒絕所選用戶?" #: features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "妳想批量刪除所選用戶?" #: features/admin-approval/class-admin-approval.php:274 #: features/email-confirmation/class-email-confirmation.php:278 msgid "Sorry, but you don't have permission to do that!" msgstr "抱歉,您沒有相應的操作權限!" #: features/admin-approval/class-admin-approval.php:339 msgid "Approved" msgstr "已允許" #: features/admin-approval/class-admin-approval.php:341 msgid "Unapproved" msgstr "已拒絕" #: features/admin-approval/class-admin-approval.php:456 #: features/email-confirmation/class-email-confirmation.php:454 msgid "All Users" msgstr "所有用戶" #: features/email-confirmation/class-email-confirmation.php:120 msgid "delete this user from the _signups table?" msgstr "在 the _signups 表單中 刪除這個用戶?" #: features/email-confirmation/class-email-confirmation.php:121 msgid "confirm this email yourself?" msgstr "確認自己的電子郵件?" #: features/email-confirmation/class-email-confirmation.php:121 #: features/email-confirmation/class-email-confirmation.php:218 msgid "Confirm Email" msgstr "確認電子郵件" #: features/email-confirmation/class-email-confirmation.php:122 msgid "resend the activation link?" msgstr "重新發送激活鏈接?" #: features/email-confirmation/class-email-confirmation.php:122 #: features/email-confirmation/class-email-confirmation.php:219 msgid "Resend Activation Email" msgstr "發送激活郵件" #: features/email-confirmation/class-email-confirmation.php:249 msgid "%s couldn't be deleted" msgstr "%s 不能刪除" #: features/email-confirmation/class-email-confirmation.php:253 msgid "All users have been successfully deleted" msgstr "所有的用戶已成功刪除" #: features/email-confirmation/class-email-confirmation.php:263 msgid "The selected users have been activated" msgstr "所選的用戶已被激活" #: features/email-confirmation/class-email-confirmation.php:274 msgid "The selected users have had their activation emails resent" msgstr "所選用戶已經重新發送激活電子郵件" #: features/email-confirmation/class-email-confirmation.php:451 #: features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "沒經確認郵箱的用戶" #: features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "執行操作時出錯!" #: features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "所選用戶不能刪除" #: features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "電子郵件通知重發給用戶" #: features/email-confirmation/email-confirmation.php:397 msgid "[%1$s] Activate %2$s" msgstr "[%1$s] 激活 %2$s" #: features/email-confirmation/email-confirmation.php:441 #: front-end/register.php:71 msgid "Could not create user!" msgstr "無法創建用戶!" #: features/email-confirmation/email-confirmation.php:444 msgid "That username is already activated!" msgstr "用戶名已經被激活!" #: features/email-confirmation/email-confirmation.php:467 msgid "There was an error while trying to activate the user" msgstr "試圖激活用戶時出現壹個錯誤" #: features/email-confirmation/email-confirmation.php:515 #: modules/email-customizer/admin-email-customizer.php:73 msgid "A new subscriber has (been) registered!" msgstr "壹個新的用戶已經(被)註冊!" #: features/email-confirmation/email-confirmation.php:518 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "新用戶在 %1$s.

            用戶名:%2$s
            郵箱:%3$s
            " #: features/email-confirmation/email-confirmation.php:633 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!" msgstr "管理員審批”的功能是註冊時激活,所以請記住,妳必須批準該用戶,他/她才能進行登錄!" #: features/email-confirmation/email-confirmation.php:569 msgid "[%1$s] Your new account information" msgstr "[%1$s] 您的新帳戶信息" #: features/email-confirmation/email-confirmation.php:580 msgid "Welcome to %1$s!


            Your username is:%2$s and password:%3$s" msgstr "歡迎來到 %1$s!


            您的用戶名是:%2$s 密碼是:%3$s" #: features/email-confirmation/email-confirmation.php:641 #: front-end/register.php:125 msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email." msgstr "需要管理員審核通過才能訪問您的帳戶。您將收到壹封電子郵件。" #: features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "該登錄控件是允許您添加在側邊欄的登錄表單。" #: features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "Profile Builder 登陸小工具" #: front-end/class-formbuilder.php:399 front-end/login.php:250 msgid "Register" msgstr "註冊" #: features/login-widget/login-widget.php:63 msgid "Title:" msgstr "標題:" #: features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "登錄後的重定向URL(可選):" #: features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "註冊頁面URL(可選):" #: features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "密碼恢復頁URL(可選):" #: features/upgrades/upgrades-functions.php:91 #: features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "用戶名不可更改。" #: front-end/class-formbuilder.php:125 msgid "Only an administrator can add new users." msgstr "只有管理員可以添加新用戶。" #: front-end/class-formbuilder.php:135 msgid "Users can register themselves or you can manually create users here." msgstr "用戶可以註冊自己註冊,或您可以在這裏手動創建用戶。" #: front-end/class-formbuilder.php:138 msgid "Users cannot currently register themselves, but you can manually create users here." msgstr "用戶無法自己註冊,但妳可以在這裏手動創建用戶。" #: front-end/class-formbuilder.php:158 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "您當前登陸為 %1s。您不需要其它帳號。 %2s" #: front-end/class-formbuilder.php:158 msgid "Log out of this account." msgstr "退出這個帳號。" #: front-end/class-formbuilder.php:158 msgid "Logout" msgstr "退出" #: front-end/class-formbuilder.php:164 msgid "You must be logged in to edit your profile." msgstr "您必須在登陸狀態下編輯個人資料。" #: features/functions.php:994 msgid "here" msgstr "這裏" #: features/functions.php:995 msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s" msgstr "您很快將會自動重定向。如果妳看到這個頁面超過 %1$d 秒,請點擊 %2$s.%3$s" #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306 msgid "The account %1s has been successfully created!" msgstr "帳號 %1s 創建成功!" #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312 msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link." msgstr "訪問您的帳號 %1s 前,您需要確認您的郵箱地址。請檢查您的郵箱並點擊激活連接。" #: front-end/class-formbuilder.php:308 msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email." msgstr "訪問您的帳號 %1s 前,需要管理員審批通過。您將收到郵件。" #: front-end/class-formbuilder.php:331 msgid "Your profile has been successfully updated!" msgstr "個人資料已更新!" #: front-end/class-formbuilder.php:342 msgid "There was an error in the submitted form" msgstr "在遞交表單時出錯" #: front-end/class-formbuilder.php:399 msgid "Add User" msgstr "所有用戶" #: admin/add-ons.php:170 front-end/class-formbuilder.php:402 msgid "Update" msgstr "更新個人資料" #: front-end/class-formbuilder.php:465 msgid "Send these credentials via email." msgstr "通過電子郵件發送這些憑據。" #: front-end/extra-fields/extra-fields.php:94 front-end/login.php:137 #: front-end/login.php:144 front-end/login.php:158 front-end/recover.php:17 #: front-end/recover.php:237 msgid "ERROR" msgstr "錯誤" #: front-end/login.php:137 msgid "The password you entered is incorrect." msgstr "妳輸入的密碼不正確。" #: front-end/login.php:138 front-end/login.php:145 msgid "Password Lost and Found." msgstr "密碼遺失。" #: front-end/login.php:138 front-end/login.php:145 msgid "Lost your password" msgstr "忘記您的密碼" #: front-end/login.php:158 msgid "Both fields are empty." msgstr "字段均空" #: front-end/login.php:296 msgid "You are currently logged in as %1$s. %2$s" msgstr "您當前登錄為 %1$s. %2$s" #: front-end/login.php:295 front-end/logout.php:25 msgid "Log out of this account" msgstr "退出這個帳戶" #: front-end/login.php:295 msgid "Log out" msgstr "退出" #: front-end/recover.php:17 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature." msgstr "您的帳戶需被管理員審批後才可使用 \"密碼重置\" 功能。" #: front-end/recover.php:94 msgid "Reset Password" msgstr "重置密碼" #: front-end/recover.php:114 msgid "Please enter your username or email address." msgstr "請輸入您的用戶名或電子郵件地址。" #: front-end/recover.php:115 msgid "You will receive a link to create a new password via email." msgstr "妳將收到壹封創建壹個新密碼連接的電子郵件。" #: front-end/recover.php:120 msgid "Username or E-mail" msgstr "用戶或郵箱地址" #: front-end/recover.php:130 msgid "Get New Password" msgstr "獲取新密碼" #: front-end/recover.php:177 msgid "The username entered wasn't found in the database!" msgstr "輸入的用戶名不存在數據庫中!" #: front-end/recover.php:177 msgid "Please check that you entered the correct username." msgstr "請檢查您已輸入正確的用戶名。" #: front-end/recover.php:192 msgid "Check your e-mail for the confirmation link." msgstr "檢查妳的郵件中的確認鏈接。" #: front-end/recover.php:227 msgid "Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s" msgstr "有人要求以下帳號密碼進行重置: %1$s
            如果不是您自己的操作,請忽略。
            需要重置您的密碼的話,請點擊 :%2$s" #: front-end/recover.php:230 msgid "Password Reset from \"%1$s\"" msgstr "從 \"%1$s\" 密碼重置" #: front-end/recover.php:237 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "發送激活鏈接時出現錯誤 %1$s!" #: front-end/recover.php:199 msgid "The email address entered wasn't found in the database!" msgstr "郵箱地址無法在數據庫中找到" #: front-end/recover.php:199 msgid "Please check that you entered the correct email address." msgstr "請檢查您輸入(正確)電子郵件地址。" #: front-end/recover.php:265 msgid "Your password has been successfully changed!" msgstr "您已經成功地更改密碼!" #: front-end/recover.php:284 msgid "You have successfully reset your password to: %1$s" msgstr "您已經成功地將密碼更改成:%1$s" #: front-end/recover.php:287 front-end/recover.php:298 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "密碼成功重置 %1$s 在 \"%2$s\"" #: front-end/recover.php:295 msgid "%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s" msgstr "%1$s 請求通過密碼重置功能修改密碼。
            他的密碼是:%2$s" #: front-end/recover.php:312 msgid "The entered passwords don't match!" msgstr "輸入的密碼不匹配!" #: front-end/recover.php:367 msgid "ERROR:" msgstr "錯誤:" #: front-end/recover.php:367 msgid "Invalid key!" msgstr "無效密鑰!" #: front-end/register.php:56 msgid "Invalid activation key!" msgstr "無效的激活密鑰!" #: front-end/register.php:60 msgid "This username is now active!" msgstr "這個用戶名現在被激活!" #: front-end/register.php:74 msgid "This username is already activated!" msgstr "這個用戶名已經被激活!" #: front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "您的電子郵件已確認。" #: front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "嘗試激活用戶時出現壹個錯誤。" #: front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "您輸入的電子郵件不是壹個有效的電子郵件地址。" #: front-end/default-fields/email/email.php:60 #: front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "此郵箱地址已被保留使用。" #: front-end/default-fields/email/email.php:60 #: front-end/default-fields/email/email.php:67 #: front-end/default-fields/email/email.php:77 #: front-end/default-fields/email/email.php:95 #: front-end/default-fields/username/username.php:49 #: front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "請嘗試壹個不同的!" #: front-end/default-fields/email/email.php:77 #: front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "電子郵件已被使用。" #: front-end/default-fields/password-repeat/password-repeat.php:37 #: front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "密碼不匹配" #: front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "用戶名已經存在。" #: front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "這個用戶名已經被保留。" #: modules/user-listing/userlisting.php:276 msgid "Avatar" msgstr "頭像" #: front-end/extra-fields/avatar/avatar.php:72 #: front-end/extra-fields/checkbox/checkbox.php:45 #: front-end/extra-fields/colorpicker/colorpicker.php:45 #: front-end/extra-fields/datepicker/datepicker.php:40 #: front-end/extra-fields/input-hidden/input-hidden.php:34 #: front-end/extra-fields/input/input.php:30 #: front-end/extra-fields/map/map.php:51 #: front-end/extra-fields/number/number.php:30 #: front-end/extra-fields/phone/phone.php:39 #: front-end/extra-fields/radio/radio.php:44 #: front-end/extra-fields/select-cpt/select-cpt.php:52 #: front-end/extra-fields/select-multiple/select-multiple.php:46 #: front-end/extra-fields/select-timezone/select-timezone.php:49 #: front-end/extra-fields/select/select.php:51 #: front-end/extra-fields/textarea/textarea.php:30 #: front-end/extra-fields/upload/upload.php:70 #: front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "必須" #: front-end/extra-fields/recaptcha/recaptcha.php:48 msgid "To use reCAPTCHA you must get an API key from" msgstr "使用 reCAPTCHA 妳必須獲得壹個API密鑰" #: front-end/extra-fields/recaptcha/recaptcha.php:131 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "安全原因,您必須通過遠程IP到reCAPTCHA!" #: front-end/extra-fields/recaptcha/recaptcha.php:192 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "使用reCAPTCHA,妳必須得到壹個API公開密鑰:" #: modules/modules.php:11 modules/modules.php:58 msgid "Modules" msgstr "模塊" #: modules/modules.php:59 msgid "Here you can activate / deactivate available modules for Profile Builder." msgstr "在這裏妳可以激活/停用 Profile Builder 模塊。" #: modules/modules.php:69 msgid "Name/Description" msgstr "名稱/描述" #: modules/modules.php:70 msgid "Status" msgstr "狀態" #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91 #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112 #: modules/modules.php:119 msgid "Active" msgstr "激活" #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92 #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113 #: modules/modules.php:120 msgid "Inactive" msgstr "關閉" #: modules/email-customizer/admin-email-customizer.php:11 #: modules/email-customizer/admin-email-customizer.php:12 #: modules/modules.php:96 msgid "Admin Email Customizer" msgstr "管理員郵件定制" #: modules/email-customizer/user-email-customizer.php:11 #: modules/email-customizer/user-email-customizer.php:12 #: modules/modules.php:103 msgid "User Email Customizer" msgstr "用戶郵件定制" #: assets/lib/wck-api/wordpress-creation-kit.php:334 #: modules/class-mustache-templates/class-mustache-templates.php:253 msgid "Save" msgstr "保存" #: modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "重定向" #: modules/multiple-forms/edit-profile-forms.php:208 #: modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "網址" #: modules/email-customizer/admin-email-customizer.php:38 msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save." msgstr "這些設置也復制在\"用戶郵件定制\" 設置頁中保存。" #: modules/email-customizer/admin-email-customizer.php:41 #: modules/email-customizer/user-email-customizer.php:41 msgid "From (name)" msgstr "來自(名子)" #: modules/email-customizer/admin-email-customizer.php:49 #: modules/email-customizer/user-email-customizer.php:49 msgid "From (reply-to email)" msgstr "來自(回復郵件)" #: modules/email-customizer/admin-email-customizer.php:57 #: modules/email-customizer/user-email-customizer.php:57 msgid "Common Settings" msgstr "常用設置" #: modules/email-customizer/admin-email-customizer.php:60 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" msgstr "" "\n" "

            新用戶在 {{site_name}}.

            \n" "

            用戶名:{{username}}

            \n" "

            郵箱:{{user_email}}

            \n" #: modules/email-customizer/admin-email-customizer.php:69 #: modules/email-customizer/admin-email-customizer.php:99 #: modules/email-customizer/admin-email-customizer.php:126 #: modules/email-customizer/user-email-customizer.php:71 #: modules/email-customizer/user-email-customizer.php:99 #: modules/email-customizer/user-email-customizer.php:128 #: modules/email-customizer/user-email-customizer.php:155 #: modules/email-customizer/user-email-customizer.php:183 #: modules/email-customizer/user-email-customizer.php:214 #: modules/email-customizer/user-email-customizer.php:241 #: modules/email-customizer/user-email-customizer.php:274 msgid "Email Subject" msgstr "郵件主題" #: modules/email-customizer/admin-email-customizer.php:84 msgid "Default Registration & Registration with Email Confirmation" msgstr "默認註冊與郵件確認註冊" #: modules/email-customizer/admin-email-customizer.php:87 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log in!

            \n" msgstr "" "\n" "

            新用戶在 {{site_name}}.

            \n" "

            用戶名:{{username}}

            \n" "

            郵箱:{{user_email}}

            \n" "

            管理審核功能已被激活,\n" "請記住,您需要批準這個用戶,他才能登陸!

            \n" #: modules/email-customizer/admin-email-customizer.php:114 #: modules/email-customizer/user-email-customizer.php:143 msgid "Registration with Admin Approval" msgstr "註冊需管理員審批" #: modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "可用標簽" #: features/email-confirmation/class-email-confirmation.php:91 #: features/email-confirmation/class-email-confirmation.php:170 msgid "User Meta" msgstr "User Meta" #: modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "網站地址" #: modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "網站名稱" #: modules/email-customizer/email-customizer.php:25 #: modules/user-listing/userlisting.php:158 msgid "User Id" msgstr "用戶名稱" #: modules/email-customizer/email-customizer.php:33 msgid "Reply To" msgstr "回復" #: modules/email-customizer/email-customizer.php:40 msgid "Activation Key" msgstr "激活密鑰" #: modules/email-customizer/email-customizer.php:41 msgid "Activation Url" msgstr "激活URL" #: modules/email-customizer/email-customizer.php:42 msgid "Activation Link" msgstr "激活鏈接" #: modules/email-customizer/user-email-customizer.php:64 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" msgstr "" "\n" "

            歡迎來到 {{site_name}}!

            \n" "

            您的用戶名是:{{username}} 密碼是:{{password}}

            \n" #: modules/email-customizer/user-email-customizer.php:85 msgid "Default Registration" msgstr "默認註冊" #: modules/email-customizer/user-email-customizer.php:91 msgid "" "\n" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials.

            \n" msgstr "" "\n" "

            激活您的帳戶,請點擊下面連接:
            \n" "{{{activation_link}}}

            \n" "

            在您激活完成後,將會收到另外壹封憑據郵件。

            \n" #: modules/email-customizer/user-email-customizer.php:103 msgid "[{{site_name}}] Activate {{username}}" msgstr "[{{site_name}}] 激活 {{username}}" #: modules/email-customizer/user-email-customizer.php:114 msgid "Registration with Email Confirmation" msgstr "電子郵件確認註冊" #: modules/email-customizer/user-email-customizer.php:120 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n" msgstr "" "\n" "

            歡迎來到 {{site_name}}!

            \n" "

            您的用戶名:{{username}} 密碼:{{password}}

            \n" "

            在您訪問您的帳號前,需要管理審批。您將會收郵件通知。

            \n" #: modules/email-customizer/user-email-customizer.php:132 msgid "A new account has been created for you on {{site_name}}" msgstr "壹個新的帳號在您的 {{site_name}} 上建立" #: modules/email-customizer/user-email-customizer.php:148 msgid "" "\n" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            好消息 !

            \n" "

            管理員已經批準您的帳號: {{username}} 在 {{site_name}}.

            \n" #: modules/email-customizer/user-email-customizer.php:159 msgid "Your account on {{site_name}} has been approved!" msgstr "您在 {{site_name}} 的帳號已經被通過!" #: modules/email-customizer/user-email-customizer.php:170 msgid "User Approval Notification" msgstr "用戶批準通知" #: modules/email-customizer/user-email-customizer.php:175 msgid "" "\n" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            您好,

            \n" "

            抱歉,管理員未批準您的帳號: {{username}} 在 {{site_name}}.

            \n" #: modules/email-customizer/user-email-customizer.php:187 msgid "Your account on {{site_name}} has been unapproved!" msgstr "您在 {{site_name}} 的帳號被拒絕!" #: modules/email-customizer/user-email-customizer.php:198 msgid "Unapproved User Notification" msgstr "被拒絕的用戶通知" #: modules/multiple-forms/edit-profile-forms.php:11 #: modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "編輯資料表單" #: modules/multiple-forms/edit-profile-forms.php:13 #: modules/multiple-forms/register-forms.php:13 #: modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "新增加" #: modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "添加新的編輯資料表單" #: modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "編輯的編輯個人資料表單" #: modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "新的編輯資料表單" #: modules/multiple-forms/edit-profile-forms.php:17 #: modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "編輯資料表單" #: modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "查看編輯資料表單" #: modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "搜索編輯資料表單" #: modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "沒有編輯個人資料表單" #: modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "在回收站中沒有編輯個人資料表單" #: modules/multiple-forms/edit-profile-forms.php:135 #: modules/multiple-forms/register-forms.php:138 #: modules/user-listing/userlisting.php:2048 msgid "Shortcode" msgstr "簡碼" #: modules/multiple-forms/edit-profile-forms.php:155 #: modules/multiple-forms/register-forms.php:159 #: modules/user-listing/userlisting.php:2069 msgid "(no title)" msgstr "(沒有標題)" #: modules/multiple-forms/edit-profile-forms.php:175 #: modules/multiple-forms/register-forms.php:178 #: modules/user-listing/userlisting.php:2089 msgid "The shortcode will be available after you publish this form." msgstr "簡碼將在您發布表單後可用。" #: modules/multiple-forms/edit-profile-forms.php:177 #: modules/multiple-forms/register-forms.php:180 #: modules/user-listing/userlisting.php:2091 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "使用這個簡碼在頁面上,將會獲得您想要的表單顯示效果:" #: modules/multiple-forms/edit-profile-forms.php:181 #: modules/multiple-forms/register-forms.php:184 #: modules/user-listing/userlisting.php:2095 msgid "Note: changing the form title also changes the shortcode!" msgstr "註意: 改變表單標題也將改變簡碼!" #: modules/multiple-forms/edit-profile-forms.php:187 #: modules/multiple-forms/register-forms.php:190 #: modules/user-listing/userlisting.php:2128 msgid "Form Shortcode" msgstr "表單簡碼" #: modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "是否將用戶重定向到特定頁" #: modules/multiple-forms/edit-profile-forms.php:207 #: modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "顯示消息" #: modules/multiple-forms/edit-profile-forms.php:207 #: modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "允許用時間去顯示成功信息提示(秒)" #: modules/multiple-forms/edit-profile-forms.php:208 msgid "Specify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.com" msgstr "指定頁面用於用戶壹旦更新他們的資料使用這個表單轉向
            使用這種格式: http://www.mysite.com" #: modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "檔案更新後…" #: modules/multiple-forms/edit-profile-forms.php:241 #: modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "添加新字段到列表" #: modules/multiple-forms/edit-profile-forms.php:245 #: modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage Title (Type)" msgstr "
            標題 (類型)
            " #: modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "妳需要在創建前指定表單的標題" #: modules/multiple-forms/register-forms.php:11 #: modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "註冊表單" #: modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "增加新的註冊表單" #: modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "編緝註冊表單" #: modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "新註冊表單" #: modules/multiple-forms/register-forms.php:17 #: modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "註冊表單" #: modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "查看註冊表單" #: modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "搜索註冊表單" #: modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "沒有找到註冊表單" #: modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "在回收站沒有找到註冊表單" #: modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "默認角色" #: modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "設置角色" #: modules/multiple-forms/register-forms.php:228 msgid "Choose what role the user will have after (s)he registered
            If not specified, defaults to the role set in the WordPress settings" msgstr "選擇用戶註冊後的角色
            如無指定,將默認使用 WordPress 的設定" #: modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "自動登錄" #: modules/multiple-forms/register-forms.php:229 msgid "Whether to automatically log in the newly registered user or not
            Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work" msgstr "是否記錄用戶新註冊
            只使用於單網站,並且沒有開啟 \"管理員審批\" 與 \"郵箱確認\" 功能
            警告:緩存註冊表單會讓自動登錄不正常" #: modules/multiple-forms/register-forms.php:232 msgid "Specify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.com" msgstr "指定用戶註冊頁面地址將被重定向
            使用下列格式: http://www.mysite.com" #: modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "註冊後…" #: modules/user-listing/userlisting.php:1021 #: modules/user-listing/userlisting.php:1468 #: modules/user-listing/userlisting.php:1886 #: modules/user-listing/userlisting.php:2355 msgid "Search Users by All Fields" msgstr "在所有字段中搜索用戶" #: modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "增加新的用戶列表" #: modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "編輯用戶列表" #: modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "新的用戶列表" #: modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "查看用戶列表" #: modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "搜索用戶列表" #: modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "沒有找到用戶列表" #: modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "沒有在回收站找到用戶列表" #: modules/user-listing/userlisting.php:105 msgid "Display name as" msgstr "顯示名稱為" #: modules/user-listing/userlisting.php:150 #: modules/user-listing/userlisting.php:2156 msgid "Registration Date" msgstr "註冊日期" #: modules/user-listing/userlisting.php:151 #: modules/user-listing/userlisting.php:2161 msgid "Number of Posts" msgstr "帖子數" #: modules/user-listing/userlisting.php:155 msgid "More Info" msgstr "更多信息" #: modules/user-listing/userlisting.php:156 msgid "More Info Url" msgstr "更多信息網址" #: modules/user-listing/userlisting.php:157 msgid "Avatar or Gravatar" msgstr "頭像或 Gravatar" #: modules/user-listing/userlisting.php:196 #: modules/user-listing/userlisting.php:227 msgid "Extra Functions" msgstr "額外功能" #: modules/user-listing/userlisting.php:199 msgid "Pagination" msgstr "分頁" #: modules/user-listing/userlisting.php:200 msgid "Search all Fields" msgstr "搜索所有字段" #: modules/user-listing/userlisting.php:229 msgid "Go Back Link" msgstr "返回鏈接" #: modules/user-listing/userlisting.php:247 msgid "All-userlisting Template" msgstr "所有用戶列表模板" #: modules/user-listing/userlisting.php:250 msgid "Single-userlisting Template" msgstr "單用戶列表模板" #: modules/user-listing/userlisting.php:733 msgid "First/Lastname" msgstr "名字/姓氏" #: modules/user-listing/userlisting.php:281 #: modules/user-listing/userlisting.php:739 msgid "Sign-up Date" msgstr "註冊日期" #: modules/user-listing/userlisting.php:748 #: modules/user-listing/userlisting.php:2159 msgid "Display Name" msgstr "顯示名稱" #: modules/user-listing/userlisting.php:280 #: modules/user-listing/userlisting.php:757 msgid "Posts" msgstr "帖子" #: modules/user-listing/userlisting.php:760 #: modules/user-listing/userlisting.php:2166 msgid "Aim" msgstr "Aim" #: modules/user-listing/userlisting.php:763 #: modules/user-listing/userlisting.php:2167 msgid "Yim" msgstr "Yim" #: modules/user-listing/userlisting.php:766 #: modules/user-listing/userlisting.php:2168 msgid "Jabber" msgstr "Jabber" #: modules/user-listing/userlisting.php:1273 msgid "Click here to see more information about this user" msgstr "點擊這裏查看此用戶的更多信息" #: modules/user-listing/userlisting.php:1273 msgid "More..." msgstr "更多..." #: modules/user-listing/userlisting.php:1276 msgid "Click here to see more information about this user." msgstr "點擊這裏查看此用戶的更多信息。" #: modules/user-listing/userlisting.php:1422 #: modules/user-listing/userlisting.php:1425 msgid "Click here to go back" msgstr "點擊這裏返回" #: modules/user-listing/userlisting.php:1422 msgid "Back" msgstr "返回" #: modules/user-listing/userlisting.php:1455 msgid "«« First" msgstr "«« 首頁" #: modules/user-listing/userlisting.php:1456 msgid "« Prev" msgstr "« 上壹頁" #: modules/user-listing/userlisting.php:1457 msgid "Next » " msgstr "下壹頁 » " #: modules/user-listing/userlisting.php:1458 msgid "Last »»" msgstr "最後 »»" #: modules/user-listing/userlisting.php:1487 msgid "You don't have any pagination settings on this userlisting!" msgstr "您不需在用戶列表中設置分頁" #: modules/user-listing/userlisting.php:1903 msgid "Search" msgstr "搜索" #: modules/user-listing/userlisting.php:1904 msgid "Clear Results" msgstr "清除結果" #: modules/user-listing/userlisting.php:2098 #: modules/user-listing/userlisting.php:2102 msgid "Extra shortcode parameters" msgstr "額外簡碼參數" #: modules/user-listing/userlisting.php:2105 msgid "displays users having a certain meta-value within a certain (extra) meta-field" msgstr "顯示用戶在某壹(額外)元字段(meta-field)" #: modules/user-listing/userlisting.php:2106 msgid "Example:" msgstr "例子:" #: modules/user-listing/userlisting.php:2108 msgid "Remember though, that the field-value combination must exist in the database." msgstr "記住,該字段值的組合必須存在於數據庫中。" #: modules/user-listing/userlisting.php:2183 msgid "Random (very slow on large databases > 10K user)" msgstr "隨機 (在大於 10K 的用戶數據庫中將會很慢 )" #: modules/user-listing/userlisting.php:2195 msgid "Roles to Display" msgstr "角色顯示:" #: modules/user-listing/userlisting.php:2195 msgid "Restrict the userlisting to these selected roles only
            If not specified, defaults to all existing roles" msgstr "限制用戶列表中的特定角色
            如果沒有指定,默認為全部現有的角色" #: modules/user-listing/userlisting.php:2196 msgid "Number of Users/Page" msgstr "用戶/頁面數" #: modules/user-listing/userlisting.php:2197 msgid "Default Sorting Criteria" msgstr "默認分類標準" #: modules/user-listing/userlisting.php:2197 msgid "Set the default sorting criteria
            This can temporarily be changed for each new session" msgstr "設置默認的排序標準
            這可以暫時被每壹個新的會話更改" #: modules/user-listing/userlisting.php:2198 msgid "Default Sorting Order" msgstr "默認排列順序" #: modules/user-listing/userlisting.php:2198 msgid "Set the default sorting order
            This can temporarily be changed for each new session" msgstr "設置默認排列順序
            這可以在每個新會話時被改變" #: modules/user-listing/userlisting.php:2199 msgid "Avatar Size (All-userlisting)" msgstr "頭像大小(所有用戶列表)" #: modules/user-listing/userlisting.php:2199 msgid "Set the avatar size on the all-userlisting only" msgstr "設置在所有用戶列表的頭像大小" #: modules/user-listing/userlisting.php:2200 msgid "Avatar Size (Single-userlisting)" msgstr "頭像大小(單用戶列表)" #: modules/user-listing/userlisting.php:2200 msgid "Set the avatar size on the single-userlisting only" msgstr "設置在單用戶列表的頭像大小" #: modules/user-listing/userlisting.php:2201 msgid "Visible only to logged in users?" msgstr "只有登錄用戶可見的?" #: modules/user-listing/userlisting.php:2201 msgid "The userlisting will only be visible only to the logged in users" msgstr "用戶列表只有登錄用戶可見的" #: modules/user-listing/userlisting.php:2202 msgid "Visible to following Roles" msgstr "以下角色可見" #: modules/user-listing/userlisting.php:2202 msgid "The userlisting will only be visible to the following roles" msgstr "用戶列表只允許以下角色可見" #: modules/user-listing/userlisting.php:2208 msgid "Userlisting Settings" msgstr "用戶列表設置" #: modules/user-listing/userlisting.php:2331 msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "您需要激活用戶列表功能在 \"模塊\" 選項卡!" #: modules/user-listing/userlisting.php:2331 msgid "You can find it in the Profile Builder menu." msgstr "妳可以在 Profile Builder 菜單中找到它。" #: modules/user-listing/userlisting.php:2494 msgid "No results found!" msgstr "無任何結果!"translation/profile-builder-uk.po000066600000763464152141651160013175 0ustar00# Translation of Profile Builder in Ukrainian # This file is distributed under the same license as the Profile Builder package. msgid "" msgstr "" "PO-Revision-Date: 2017-05-29 07:06:53+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: GlotPress/0.1\n" "Project-Id-Version: Profile Builder\n" #: profile-builder-2.0/admin/general-settings.php:154 msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s." msgstr "" #: profile-builder-2.0/admin/general-settings.php:146 msgid "\"Roles Editor\" Activated:" msgstr "" #: profile-builder-2.0/features/roles-editor/roles-editor.php:300 msgid "M j, Y @ G:i" msgstr "" #: profile-builder-2.0/front-end/recover.php:117 msgid "Please enter your email address." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yy" msgstr "Вкажіть формат дати при використанні 'Вибір Дати'
            Допустимі значення: 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/dd/yy" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244 msgid "Individual redirects defined in shortcodes; redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects." msgstr "Індивідуальні редиректи, обумовлені у шорткодах; (redirect_priority=\\\"top\\\" параметр може бути доданий у будь-якому шорткоді, згодом цей редирект матиме пріорітет, найвищий серед усіх редиректів)." #: profile-builder-2.0/admin/manage-fields.php:1217 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." msgstr "Якщо ви зацікавлені у відображенні різних полів під час реєстрації і редагуванні форм профілів будь ласка використовуйте аддон Multiple Registration & Edit Profile Forms." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "Редиректи налаштувань форм Множинної Реєстрації і Редагування Профілю" #: profile-builder-2.0/admin/register-version.php:251 msgid "

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            " msgstr "

            Строк Вашої ліцензії на Profile Builder стікає %5$s.
            Будь-ласка %1$sОбновіть Вашу Ліцензію%2$s щоб продовжити отримувати доступ до скачувань продукту, автоматичних оновлень та технічної підтримки. %3$sОновіть зараз і оримайте 40% знижки %4$s %6$sВідмінити%7$s

            " #: profile-builder-2.0/admin/register-version.php:246 msgid "

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            " msgstr "

            Строк дії Вашої ліцензії на Profile Builder стік.
            Будь-ласка %1$sОбновіть Вашу Ліцензію%2$s щоб продовжити отримувати доступ до скачувань продукту, автоматичних оновлень та технічної підтримки. %3$sОновіть зараз і оримайте 40% знижки %4$s %5$sВідмінити%6$s

            " #: profile-builder-2.0/front-end/recover.php:159 msgid "You are already logged in. You can change your password on the edit profile form." msgstr "Ви уже увійшли. Ви можете змінити свій пароль у формі редагування паролю." #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "URL Вашого сайту виглядатиме так:
            " #: profile-builder-2.0/features/functions.php:909 msgid "

            You can visit your site at " msgstr "

            Ви можете відвідати Ваш сайт за наступним посиланням" #: profile-builder-2.0/features/functions.php:896 msgid "

            Also, you will be able to visit your site at " msgstr "

            Ви також зможете відвідати Ваш сайт за наступним посиланням" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138 msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network." msgstr "Налаштування приватності: Я хочу щоб мій сайт був видимий для пошукових систем і у публічних списках у цій мережі." #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "Назва Сайту" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "Слаг URL сайту" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "Так, я хочу створити новий сайт" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36 #: profile-builder-2.0/modules/user-listing/userlisting.php:118 msgid "Blog URL" msgstr "URL Блогу" #: profile-builder-2.0/admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "Деталі Блогу - видимі лиша на сторінці Реєстрації!" #: profile-builder-2.0/admin/manage-fields.php:222 msgid "Blog Details" msgstr "Деталі Блогу" #: profile-builder-2.0/admin/pms-cross-promotion.php:239 msgid "Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "Дозвольте користувачам мати платні облікові записи із Profile Builder. %1$sДізнайтесь як >%2$s %3$sВідхилити%4$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579 msgid "Welcome to %1$s!


            Your username is:%2$s" msgstr "Ласкаво просимо на%1$s!


            Ваше ім'я користувача:%2$s" #: profile-builder-2.0/modules/user-listing/userlisting.php:1320 msgid "View Map" msgstr "Переглянути Карту" #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267 #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367 #: pb-add-on-woocommerce/index.php:493 msgid "Address line 2" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "Billing Fields" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Billing Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Save the billing fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Billing Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Save the billing fields names" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Shipping Fields" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Shipping Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Save the shipping fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Shipping Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Save the shipping fields names" msgstr "" #: pb-add-on-woocommerce/index.php:305 msgid "Field Name" msgstr "" #: pb-add-on-woocommerce/index.php:369 msgid "Click to edit " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:368 msgid "is not a valid phone number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:377 msgid "is not a number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:382 msgid "must be a multiplier of " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:387 msgid "must be a greater than or equal to " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:392 msgid "must be less than or equal to " msgstr "" #: profile-builder-2.0/admin/add-ons.php:103 msgid "Available in Hobbyist and Pro Versions" msgstr "Доступний у версіях Hobbyist і Pro" #: profile-builder-2.0/admin/add-ons.php:105 msgid "Available in All Versions" msgstr "Доступний в Усіх версіях" #: profile-builder-2.0/admin/add-ons.php:148 msgid "Learn More" msgstr "Дізнатись більше" #: profile-builder-2.0/admin/basic-info.php:99 msgid "Timepicker" msgstr "Налаштування часу" #: profile-builder-2.0/admin/basic-info.php:100 msgid "Colorpicker" msgstr "Налаштування кольору" #: profile-builder-2.0/admin/basic-info.php:103 msgid "Currency Select" msgstr "Вибір валюти" #: profile-builder-2.0/admin/basic-info.php:109 msgid "Number" msgstr "Число" #: profile-builder-2.0/admin/basic-info.php:114 msgid "Validation" msgstr "Валідація" #: profile-builder-2.0/admin/basic-info.php:115 msgid "Map" msgstr "Карта" #: profile-builder-2.0/admin/basic-info.php:116 msgid "HTML" msgstr "HTML" #: profile-builder-2.0/admin/basic-info.php:162 #: profile-builder-2.0/modules/modules.php:117 msgid "Repeater Fields" msgstr "Повторювані поля" #: profile-builder-2.0/admin/basic-info.php:163 msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role." msgstr "Налаштуйте повторювану групу полів під час реєстрації та редагуванні форм. Обмежте число повторюваних груп для кожної ролі." #: profile-builder-2.0/admin/general-settings.php:59 msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "Це працює лише з формами у користувацькій частині сайту. Рекомендовано перенаправити реєстрацію WP за замовчуванням на Profile Builder використовуючи модуль \"Custom Redirects\"." #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count" msgstr "Використовуйте це у поєднанні з функціями WordPress для відображення величини на обраній сторінці
            Автоматично-завершені, проте у деяких випадках з можливістю редагування (у цьому випадку це унікально)
            Зміна цього налаштування може зайняти багато часу у разі великої кількості користувачів" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Show Currency Symbol" msgstr "Відобразити символ валюти" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Whether the currency symbol should be displayed after the currency name in the select option." msgstr "Чи повинен відображатись символ валюти після назви валюти у даному виборі" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Show Post Type" msgstr "Відобразити Тип Поста" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Posts from what post type will be displayed in the select." msgstr "Встановлює який тип Поста буде відображатись у виборі" #: profile-builder-2.0/admin/manage-fields.php:145 msgid "Allowable Values" msgstr "Дозволені Значення" #: profile-builder-2.0/admin/manage-fields.php:145 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." msgstr "Введіть список можливих значень розділених комоюю Під час реєстрації, якщо значення, надане користувачем не співпадатиме із жодним з цих значень, користувач не буде зареєстрований." #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Error Message" msgstr "Повідомлення про помилку" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Set a custom error message that will be displayed to the user." msgstr "Налаштувати повідомлення про помилку, що відображатиметься для користувача." #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Time Format" msgstr "Формат Часу" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Specify the time format." msgstr "Встановіть формат часу." #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Google Maps API Key" msgstr "Google Maps API Key" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Enter your Google Maps API key (
            Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used." msgstr "Введіть Ваш Google Maps API key ( Отримайте Ваш ключ API ). Якщо більш ніж одне поле карти додано до форми, ключ API першої відображеної карти буде використаний." #: profile-builder-2.0/admin/manage-fields.php:149 msgid "Default Latitude" msgstr "Широта за замовчуванням" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "The latitude at which the map should be displayed when no pins are attached." msgstr "Широта на якій повинна відображатися карта, коли не прікріплені піни." #: profile-builder-2.0/admin/manage-fields.php:150 msgid "Default Longitude" msgstr "Довгота за замовчуванням" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "The longitude at which the map should be displayed when no pins are attached." msgstr "Довгота на якій повинна відображатися карта, коли не прікріплені піни." #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Default Zoom Level" msgstr "Рівень Зближення за замовчуванням" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "Додайте число від 0 до 19. Чим вище число, тим більша кратність зближення." #: profile-builder-2.0/admin/manage-fields.php:152 msgid "Map Height" msgstr "Висота Карти" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "The height of the map." msgstr "Висота карти" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "HTML Content" msgstr "Вміст HTML" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "Add your HTML (or text) content" msgstr "Додайте Ваш HTML (або текстовий) вміст " #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Phone Format" msgstr "Формат номера телефону" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces." msgstr "Ви можете використовувати: # для чисел, дужки ( ), - знак, + знак, крапку . та пробіли." #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Eg. (###) ###-####" msgstr "Наприклад (###) ###-####" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Empty field won't check for correct phone number." msgstr "Пусте поле не проходитиме перевірку на правильність введення телефонного номеру." #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Heading Tag" msgstr "Тег Заголовку" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Change heading field size on front-end forms" msgstr "Змініть розмір поля заголовку у формах на користувацькій частині сайту" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min Number Value" msgstr "Мінімальне Значення Числа" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "Дозволене мінімальне значення числа (0 щоб дозволити лише додатні числа)" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Leave it empty for no min value" msgstr "Залишіть пустим щоб не встановлювати мінімальне число" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max Number Value" msgstr "Максимальне Значення Числа" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "Дозволене максимальне значення числа (0 щоб дозволити лише від'ємні числа)" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Leave it empty for no max value" msgstr "Залишіть пустим щоб не встановлювати максимальне число" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Number Step Value" msgstr "Значення Кроку Числа" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal" msgstr "Значення кроку 1 щоб дозволити лише цілі числа, 0.1 щоб дозволити десяткові дроби з одним числом після крапки" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "Щоб дозволити використання десяткових дробів з двома числами після крапки" #: profile-builder-2.0/admin/manage-fields.php:159 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)" msgstr "Ви також можете використати значення кроку щоб встановити дозволені інтервали між числами (Наприклад: значення кроку 2 дозволить лише -4, -2, 0, 2 і так далі)" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Leave it empty for no restriction" msgstr "Залиште пустим щоб не встановлювати жодних обмежень" #: profile-builder-2.0/admin/manage-fields.php:564 msgid "Albania Lek" msgstr "Албанський лек" #: profile-builder-2.0/admin/manage-fields.php:565 msgid "Afghanistan Afghani" msgstr "Афганський афгані" #: profile-builder-2.0/admin/manage-fields.php:566 msgid "Argentina Peso" msgstr "Аргентинський песо" #: profile-builder-2.0/admin/manage-fields.php:567 msgid "Aruba Guilder" msgstr "Арубський гільдер" #: profile-builder-2.0/admin/manage-fields.php:568 msgid "Australia Dollar" msgstr "Австралійський долар" #: profile-builder-2.0/admin/manage-fields.php:569 msgid "Azerbaijan New Manat" msgstr "Азербайджанський новий манат" #: profile-builder-2.0/admin/manage-fields.php:570 msgid "Bahamas Dollar" msgstr "Багамський долар" #: profile-builder-2.0/admin/manage-fields.php:571 msgid "Barbados Dollar" msgstr "Барбадоський долар" #: profile-builder-2.0/admin/manage-fields.php:572 msgid "Bangladeshi taka" msgstr "Бангладешський така" #: profile-builder-2.0/admin/manage-fields.php:573 msgid "Belarus Ruble" msgstr "Білоруський рубль" #: profile-builder-2.0/admin/manage-fields.php:574 msgid "Belize Dollar" msgstr "Белізький долар" #: profile-builder-2.0/admin/manage-fields.php:575 msgid "Bermuda Dollar" msgstr "Бермудський долар" #: profile-builder-2.0/admin/manage-fields.php:576 msgid "Bolivia Boliviano" msgstr "Болівійський болівіано" #: profile-builder-2.0/admin/manage-fields.php:577 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "Боснійська конвертова марка" #: profile-builder-2.0/admin/manage-fields.php:578 msgid "Botswana Pula" msgstr "Ботсванська пула" #: profile-builder-2.0/admin/manage-fields.php:579 msgid "Bulgaria Lev" msgstr "Болгарський лев" #: profile-builder-2.0/admin/manage-fields.php:580 msgid "Brazil Real" msgstr "Бразильський реал" #: profile-builder-2.0/admin/manage-fields.php:581 msgid "Brunei Darussalam Dollar" msgstr "Брунейський долар" #: profile-builder-2.0/admin/manage-fields.php:582 msgid "Cambodia Riel" msgstr "Камбоджійський реал" #: profile-builder-2.0/admin/manage-fields.php:583 msgid "Canada Dollar" msgstr "Канадський долар" #: profile-builder-2.0/admin/manage-fields.php:584 msgid "Cayman Islands Dollar" msgstr "долар Кайманових островів" #: profile-builder-2.0/admin/manage-fields.php:585 msgid "Chile Peso" msgstr "Чилійський песо" #: profile-builder-2.0/admin/manage-fields.php:586 msgid "China Yuan Renminbi" msgstr "Китайський юань" #: profile-builder-2.0/admin/manage-fields.php:587 msgid "Colombia Peso" msgstr "Колумбійський песо" #: profile-builder-2.0/admin/manage-fields.php:588 msgid "Costa Rica Colon" msgstr "Коста-Ріканський колон" #: profile-builder-2.0/admin/manage-fields.php:589 msgid "Croatia Kuna" msgstr "Хорватська куна" #: profile-builder-2.0/admin/manage-fields.php:590 msgid "Cuba Peso" msgstr "Кубинський песо" #: profile-builder-2.0/admin/manage-fields.php:591 msgid "Czech Republic Koruna" msgstr "Чеська крона" #: profile-builder-2.0/admin/manage-fields.php:592 msgid "Denmark Krone" msgstr "Датська крона" #: profile-builder-2.0/admin/manage-fields.php:593 msgid "Dominican Republic Peso" msgstr "Домініканський песо" #: profile-builder-2.0/admin/manage-fields.php:594 msgid "East Caribbean Dollar" msgstr "Східно-карибский долар" #: profile-builder-2.0/admin/manage-fields.php:595 msgid "Egypt Pound" msgstr "Єгипетський фунт" #: profile-builder-2.0/admin/manage-fields.php:596 msgid "El Salvador Colon" msgstr "Ель-Cальвадорський колон" #: profile-builder-2.0/admin/manage-fields.php:597 msgid "Estonia Kroon" msgstr "Естонська крона" #: profile-builder-2.0/admin/manage-fields.php:598 msgid "Euro" msgstr "Євро" #: profile-builder-2.0/admin/manage-fields.php:599 msgid "Falkland Islands (Malvinas) Pound" msgstr "Фолклендский фунт" #: profile-builder-2.0/admin/manage-fields.php:600 msgid "Fiji Dollar" msgstr "Фіджійський долар" #: profile-builder-2.0/admin/manage-fields.php:601 msgid "Ghana Cedis" msgstr "Ганський седі" #: profile-builder-2.0/admin/manage-fields.php:602 msgid "Gibraltar Pound" msgstr "Гібралтарський фунт" #: profile-builder-2.0/admin/manage-fields.php:603 msgid "Guatemala Quetzal" msgstr "Гватемальський кецаль" #: profile-builder-2.0/admin/manage-fields.php:604 msgid "Guernsey Pound" msgstr "Гернсійський фунт" #: profile-builder-2.0/admin/manage-fields.php:605 msgid "Guyana Dollar" msgstr "Гаянський долар" #: profile-builder-2.0/admin/manage-fields.php:606 msgid "Honduras Lempira" msgstr "Гондураська лемпіра" #: profile-builder-2.0/admin/manage-fields.php:607 msgid "Hong Kong Dollar" msgstr "Гонконгський долар" #: profile-builder-2.0/admin/manage-fields.php:608 msgid "Hungary Forint" msgstr "Угорський форінт" #: profile-builder-2.0/admin/manage-fields.php:609 msgid "Iceland Krona" msgstr "Ісландська крона" #: profile-builder-2.0/admin/manage-fields.php:610 msgid "India Rupee" msgstr "Індійська рупія" #: profile-builder-2.0/admin/manage-fields.php:611 msgid "Indonesia Rupiah" msgstr "Індонезійська рупія" #: profile-builder-2.0/admin/manage-fields.php:612 msgid "Iran Rial" msgstr "Іранський реал" #: profile-builder-2.0/admin/manage-fields.php:613 msgid "Isle of Man Pound" msgstr "Менський фунт" #: profile-builder-2.0/admin/manage-fields.php:614 msgid "Israel Shekel" msgstr "Ізраїльський шекель" #: profile-builder-2.0/admin/manage-fields.php:615 msgid "Jamaica Dollar" msgstr "Ямайський долар" #: profile-builder-2.0/admin/manage-fields.php:616 msgid "Japan Yen" msgstr "Японська єна" #: profile-builder-2.0/admin/manage-fields.php:617 msgid "Jersey Pound" msgstr "Джерсійський фунт" #: profile-builder-2.0/admin/manage-fields.php:618 msgid "Kazakhstan Tenge" msgstr "Казахський тенге" #: profile-builder-2.0/admin/manage-fields.php:619 msgid "Korea (North) Won" msgstr "Північно-Корейський вон" #: profile-builder-2.0/admin/manage-fields.php:620 msgid "Korea (South) Won" msgstr "Південно-Корейський вон" #: profile-builder-2.0/admin/manage-fields.php:621 msgid "Kyrgyzstan Som" msgstr "Киргизький сом" #: profile-builder-2.0/admin/manage-fields.php:622 msgid "Laos Kip" msgstr "Лаоський кіп" #: profile-builder-2.0/admin/manage-fields.php:623 msgid "Latvia Lat" msgstr "Латвійський лат" #: profile-builder-2.0/admin/manage-fields.php:624 msgid "Lebanon Pound" msgstr "Лівійський фунт" #: profile-builder-2.0/admin/manage-fields.php:625 msgid "Liberia Dollar" msgstr "Ліберійський долар" #: profile-builder-2.0/admin/manage-fields.php:626 msgid "Lithuania Litas" msgstr "Литовський лит" #: profile-builder-2.0/admin/manage-fields.php:627 msgid "Macedonia Denar" msgstr "Македонський денар" #: profile-builder-2.0/admin/manage-fields.php:628 msgid "Malaysia Ringgit" msgstr "Малазійський рінггіт" #: profile-builder-2.0/admin/manage-fields.php:629 msgid "Mauritius Rupee" msgstr "Маврикійська рупія" #: profile-builder-2.0/admin/manage-fields.php:630 msgid "Mexico Peso" msgstr "Мексиканський песо" #: profile-builder-2.0/admin/manage-fields.php:631 msgid "Mongolia Tughrik" msgstr "Монгольський тугрик" #: profile-builder-2.0/admin/manage-fields.php:632 msgid "Mozambique Metical" msgstr "Мозамбіцький метікал" #: profile-builder-2.0/admin/manage-fields.php:633 msgid "Namibia Dollar" msgstr "Намібійський долар" #: profile-builder-2.0/admin/manage-fields.php:634 msgid "Nepal Rupee" msgstr "Непальска рупія" #: profile-builder-2.0/admin/manage-fields.php:635 msgid "Netherlands Antilles Guilder" msgstr "Антильський гільдер" #: profile-builder-2.0/admin/manage-fields.php:636 msgid "New Zealand Dollar" msgstr "Ново-Зеландський долар" #: profile-builder-2.0/admin/manage-fields.php:637 msgid "Nicaragua Cordoba" msgstr "Нікарагуанська кордоба" #: profile-builder-2.0/admin/manage-fields.php:638 msgid "Nigeria Naira" msgstr "Нігерійська найра" #: profile-builder-2.0/admin/manage-fields.php:639 msgid "Norway Krone" msgstr "Норвезька крона" #: profile-builder-2.0/admin/manage-fields.php:640 msgid "Oman Rial" msgstr "Оманський ріал" #: profile-builder-2.0/admin/manage-fields.php:641 msgid "Pakistan Rupee" msgstr "Пакистанська рупія" #: profile-builder-2.0/admin/manage-fields.php:642 msgid "Panama Balboa" msgstr "Панамське бальбоа" #: profile-builder-2.0/admin/manage-fields.php:643 msgid "Paraguay Guarani" msgstr "Парагвайський гуарані" #: profile-builder-2.0/admin/manage-fields.php:644 msgid "Peru Nuevo Sol" msgstr "Перуанський новий соль" #: profile-builder-2.0/admin/manage-fields.php:645 msgid "Philippines Peso" msgstr "Філіпінське песо" #: profile-builder-2.0/admin/manage-fields.php:646 msgid "Poland Zloty" msgstr "Польський злотий" #: profile-builder-2.0/admin/manage-fields.php:647 msgid "Qatar Riyal" msgstr "Катарський ріал" #: profile-builder-2.0/admin/manage-fields.php:648 msgid "Romania New Leu" msgstr "Румунський новий лей" #: profile-builder-2.0/admin/manage-fields.php:649 msgid "Russia Ruble" msgstr "Російський рубль" #: profile-builder-2.0/admin/manage-fields.php:650 msgid "Saint Helena Pound" msgstr "Сейнт-Хеленський фунт" #: profile-builder-2.0/admin/manage-fields.php:651 msgid "Saudi Arabia Riyal" msgstr "Саудівский ріал" #: profile-builder-2.0/admin/manage-fields.php:652 msgid "Serbia Dinar" msgstr "Сербський динар" #: profile-builder-2.0/admin/manage-fields.php:653 msgid "Seychelles Rupee" msgstr "Сейшельська рупія" #: profile-builder-2.0/admin/manage-fields.php:654 msgid "Singapore Dollar" msgstr "Сінгапурський долар" #: profile-builder-2.0/admin/manage-fields.php:655 msgid "Solomon Islands Dollar" msgstr "долар Соломонових островів" #: profile-builder-2.0/admin/manage-fields.php:656 msgid "Somalia Shilling" msgstr "Сомалійський шилінг" #: profile-builder-2.0/admin/manage-fields.php:657 msgid "South Africa Rand" msgstr "Південно-Африканський ранд" #: profile-builder-2.0/admin/manage-fields.php:658 msgid "Sri Lanka Rupee" msgstr "Шрі-Ланкійська рупія" #: profile-builder-2.0/admin/manage-fields.php:659 msgid "Sweden Krona" msgstr "Шведська крона" #: profile-builder-2.0/admin/manage-fields.php:660 msgid "Switzerland Franc" msgstr "Швейцарський франк" #: profile-builder-2.0/admin/manage-fields.php:661 msgid "Suriname Dollar" msgstr "Сурінамський долар" #: profile-builder-2.0/admin/manage-fields.php:662 msgid "Syria Pound" msgstr "Сирійський фунт" #: profile-builder-2.0/admin/manage-fields.php:663 msgid "Taiwan New Dollar" msgstr "Тайванський новий долар" #: profile-builder-2.0/admin/manage-fields.php:664 msgid "Thailand Baht" msgstr "Тайландський бат" #: profile-builder-2.0/admin/manage-fields.php:665 msgid "Trinidad and Tobago Dollar" msgstr "долар Трінідад і Тобаго" #: profile-builder-2.0/admin/manage-fields.php:666 #: profile-builder-2.0/admin/manage-fields.php:667 msgid "Turkey Lira" msgstr "Турецька ліра" #: profile-builder-2.0/admin/manage-fields.php:668 msgid "Tuvalu Dollar" msgstr "долар Тувалу" #: profile-builder-2.0/admin/manage-fields.php:669 msgid "Ukraine Hryvna" msgstr "Українська гривня" #: profile-builder-2.0/admin/manage-fields.php:670 msgid "United Kingdom Pound" msgstr "Британський фунт" #: profile-builder-2.0/admin/manage-fields.php:671 msgid "Uganda Shilling" msgstr "Угандійський шилінг" #: profile-builder-2.0/admin/manage-fields.php:672 msgid "US Dollar" msgstr "Американський долар" #: profile-builder-2.0/admin/manage-fields.php:673 msgid "Uruguay Peso" msgstr "Уругвайський песо" #: profile-builder-2.0/admin/manage-fields.php:674 msgid "Uzbekistan Som" msgstr "Узбецький сом" #: profile-builder-2.0/admin/manage-fields.php:675 msgid "Venezuela Bolivar" msgstr "Венесуельский болівар" #: profile-builder-2.0/admin/manage-fields.php:676 msgid "Viet Nam Dong" msgstr "В'єтнамський донг" #: profile-builder-2.0/admin/manage-fields.php:677 msgid "Yemen Rial" msgstr "Єменський ріал" #: profile-builder-2.0/admin/manage-fields.php:678 msgid "Zimbabwe Dollar" msgstr "Зімбабвійський долар" #: profile-builder-2.0/admin/manage-fields.php:1097 msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n" msgstr "Мета-ім'я може містити лише малі букви, числа_ , - і жодних пробілів.\n" #: profile-builder-2.0/admin/manage-fields.php:1314 msgid "Search Location" msgstr "Місце Пошуку" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754 msgid "You are not allowed to do this." msgstr "У вас немає прав на виконання цієї дії." #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460 msgid "Search Users" msgstr "Пошук Користувачів" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78 msgid "Conditional Logic" msgstr "Умовна Логіка" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79 msgid "Conditional Rules" msgstr "Умовні Правила" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448 msgid "This field has conditional logic enabled." msgstr "Це поле дозволяє використання умовної логіки." #: profile-builder-2.0/features/functions.php:685 msgid "Incorrect phone number" msgstr "Невірний номер телефону" #: profile-builder-2.0/front-end/class-formbuilder.php:124 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." msgstr "Роль створеного користувача налаштована як роль за замовчуванням. Тільки адміністратор може зареєструвати користувача з роллю призначеною для цієї форми." #: profile-builder-2.0/front-end/extra-fields/map/map.php:46 #: profile-builder-2.0/front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "Будь-ласка додайте ключ Google Maps API для цього поля." #: profile-builder-2.0/front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "Щось пішло не так. Будь-ласка спробуйте ще." #: profile-builder-2.0/front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "Будь-ласка введіть лише цифри." #: profile-builder-2.0/front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "Значення повинно бути множником %1$s" #: profile-builder-2.0/front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "Значення повинно бути більшим або рівним %1$s" #: profile-builder-2.0/front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "Значення повинно бути меншим або рівним %1$s" #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "Необхідний формат номера телефону:" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bolivia, __( Plurinational State of" msgstr "Болі́вія, __(Багатонаціона́льна Держа́ва " #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bonaire, __( Sint Eustatius and Saba" msgstr "Карибські Нідерланди" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brunei Darussalam" msgstr "Бруней Даруссалам" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cabo Verde" msgstr "Кабо-Верде" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cocos (Keeling) Islands" msgstr "Кокосові острови" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo" msgstr "Конго" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo, __( the Democratic Republic of the" msgstr "Конго,__(Демократична Республіка" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cote dIvoire" msgstr "Кот-д'Івуар" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Falkland Islands (Malvinas)" msgstr "Фолклендські Острови" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Holy See (Vatican City State)" msgstr "Ватикан" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iran, __( Islamic Republic of" msgstr "Іран,__(Ісламська Республіка" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Democratic Peoples Republic of" msgstr "Корея,__(Народно-демократична Республіка" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Republic of" msgstr "Корея,__(Республіка" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lao Peoples Democratic Republic" msgstr "Народна-демократична Республіка Лаос" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macedonia, __( the former Yugoslav Republic of" msgstr "Македонія,__(колишня частина Республіки Югославія" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Micronesia, __( Federated States of" msgstr "Мікронезія,__(Федеративні Штати" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Moldova, __( Republic of" msgstr "Молдова,__(Республіка" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palestine, __( State of" msgstr "Палестина" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Russian Federation" msgstr "Російська Федерація" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Helena, __( Ascension and Tristan da Cunha" msgstr "Острів Святої Єлени,__(Вознесіння і Тристан-да-Кунья" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Martin (French part)" msgstr "Сен-Мартен (Французька частина)" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sint Maarten (Dutch part)" msgstr "Сен-Мартен (Голандська частина)" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Syrian Arab Republic" msgstr "Арабська Республіка Сирія" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Taiwan, __( Province of China" msgstr "Тайвань,__(Китайська Провінція" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tanzania, __( United Republic of" msgstr "Танзанія,__(Об'єднана Республіка" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Timor-Leste" msgstr "Східний Тимор" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Venezuela, __( Bolivarian Republic of" msgstr "Венесуела,__(Боліварська Республіка" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Viet Nam" msgstr "В'єтнам" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( British" msgstr "Віргінські Острови,__(Британські" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( U.S." msgstr "Віргінські Острови,__(Американські" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:186 msgid "User Fields Tags" msgstr "Користувацькі Теги Полів" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479 msgid "The users selected password at signup" msgstr "Користувачі обирають пароль під час створення профілю" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278 msgid "[{{site_name}}] Notice of Email Change" msgstr "[{{site_name}}] Повідомлення про зміну адреси електронної пошти" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289 msgid "Changed Email Address Notification" msgstr "Сповіщення за адресою елетронної пошти змінено" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Limit" msgstr "Ліміт" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Enable limit to the number of fields to be generated by users in front end forms " msgstr "Дозволити обмеження по кількості полів згенерованих у формах користувацької частини сайту" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "General Limit" msgstr "Загальний Ліміт" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "Ліміт за замовчуванням для цієї повторюваної групи.
            Залишити 0 для необмеженого." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "Limit reached message" msgstr "Повідомлення про досягнення ліміту" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The maximum number of fields has been reached." msgstr "Максимальне число полів було досягнуто." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The popup message to display when the limit of repeater groups is reached." msgstr "Спливаюче повідомлення, коли було досягнуто ліміт повторюваних груп." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Limit per Role" msgstr "Ліміт за Роллю" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Leave 0 for unlimited." msgstr "Залишити 0 для необмеженого." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Repeated field group" msgstr "Повторювана група полів" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Manage field or group of fields that will be repeatable." msgstr "Керувати полем або групою полів, які будуть повторюваними." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259 msgid "Edit field group" msgstr "Редагувати групу полів" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260 msgid "Repeatable fields saved!" msgstr "Повторювані поля збережено!" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277 #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326 msgid "Please enter a unique field title.\n" msgstr "Будь-ласка, введіть унікальну назву поля.\n" #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267 msgid "Are you sure you want to delete this?" msgstr "Ви впевнені, що хочете видалити це?" #: profile-builder-2.0/modules/user-listing/userlisting.php:192 msgid "Sort Tags" msgstr "Сортувати Теги" #: profile-builder-2.0/modules/user-listing/userlisting.php:201 #: profile-builder-2.0/modules/user-listing/userlisting.php:2308 msgid "Faceted Menus" msgstr "Аспектні меню" #: profile-builder-2.0/modules/user-listing/userlisting.php:202 msgid "User Count" msgstr "Кількість Користувачів" #: profile-builder-2.0/modules/user-listing/userlisting.php:1553 msgid "Show All" msgstr "Відобразити усе" #: profile-builder-2.0/modules/user-listing/userlisting.php:1710 msgid "No options available" msgstr "Опції недоступні" #: profile-builder-2.0/modules/user-listing/userlisting.php:1861 msgid "Remove All Filters" msgstr "Прибрати усі фільтри" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Label" msgstr "Мітка" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Choose the facet name that appears on the frontend" msgstr "Оберіть назву назву аспекта, що з'являється на користувацькому інтерфесі" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Facet Type" msgstr "Тип Аспекту" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Choose the facet menu type" msgstr "Оберіть тип аспектного меню" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Facet Meta" msgstr "Аспектна Meta" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Choose the meta field for the facet menu" msgstr "Оберіть мета-поле з аспектного меню" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Behaviour" msgstr "Поведінка" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Narrow the results" msgstr "Зменшити к-ть результатів" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Expand the results" msgstr "Збільшити к-ть результатів" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Choose how multiple selections affect the results" msgstr "Оберіть як множинний вибір вплине на результат" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Visible choices" msgstr "Видимий вибір" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "Показати перемикаючий лінк після множинного вибору. Залишити усе пустим" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Search Fields" msgstr "Поля Пошуку" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Choose the fields in which the Search Field will look in" msgstr "Оберіть поля у яких відображатиметься Поле Пошуку" #: profile-builder-2.0/modules/user-listing/userlisting.php:2330 msgid "Search Settings" msgstr "Налаштування Пошуку" #: pb-add-on-woocommerce/billing-fields.php:8 #: pb-add-on-woocommerce/shipping-fields.php:8 msgid "Company Name" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:9 #: pb-add-on-woocommerce/shipping-fields.php:9 msgid "Address" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:5 #: pb-add-on-woocommerce/shipping-fields.php:5 msgid "Country" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:11 #: pb-add-on-woocommerce/shipping-fields.php:11 msgid "Town / City" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:12 #: pb-add-on-woocommerce/shipping-fields.php:12 msgid "State / County" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:13 #: pb-add-on-woocommerce/shipping-fields.php:13 msgid "Postcode / Zip" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:14 msgid "Email Address" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:15 msgid "Phone" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:278 msgid "Ship to a different address?" msgstr "" #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437 msgid "Billing Address" msgstr "" #: pb-add-on-woocommerce/index.php:169 msgid "Displays customer billing fields in front-end. " msgstr "" #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438 msgid "Shipping Address" msgstr "" #: pb-add-on-woocommerce/index.php:173 msgid "Displays customer shipping fields in front-end. " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Display on WooCommerce Checkout" msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Whether the field should be added to the WooCommerce checkout form or not" msgstr "" #: pb-add-on-woocommerce/index.php:541 msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:23 #: pb-add-on-woocommerce/woosync-page.php:70 msgid "WooCommerce Sync" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:76 msgid "Choose Register form to display on My Account page:" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:81 msgid "Default Register" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:103 msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce.
            This will also add the Profile Builder Login form to MyAccount page." msgstr "" #: pb-add-on-woocommerce/woosync-page.php:110 msgid "Choose Edit Profile form to display on My Account page:" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:115 msgid "Default Edit Profile" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:137 msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce." msgstr "" #: profile-builder-2.0/admin/add-ons.php:190 msgid "Recommended Plugins" msgstr "Назва Компанії" #: profile-builder-2.0/admin/add-ons.php:219 #: profile-builder-2.0/admin/pms-cross-promotion.php:102 msgid "Free" msgstr "Безкоштовно" #: profile-builder-2.0/admin/add-ons.php:221 msgid "Accept user payments, create subscription plans and restrict content on your membership site." msgstr "Приймайте платежі користувачів, створюйте плани підписки і обмежуйте контент на вашому сайті." #: profile-builder-2.0/admin/add-ons.php:222 #: profile-builder-2.0/admin/pms-cross-promotion.php:105 msgid "More Details" msgstr "Більше Деталей" #: profile-builder-2.0/admin/add-ons.php:240 #: profile-builder-2.0/admin/pms-cross-promotion.php:88 #: profile-builder-2.0/admin/pms-cross-promotion.php:123 #: profile-builder-2.0/admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "Плагін неактивний" #: profile-builder-2.0/admin/add-ons.php:242 #: profile-builder-2.0/admin/pms-cross-promotion.php:87 #: profile-builder-2.0/admin/pms-cross-promotion.php:125 #: profile-builder-2.0/admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "Плагінактивний" #: profile-builder-2.0/admin/add-ons.php:256 #: profile-builder-2.0/admin/pms-cross-promotion.php:146 msgid "Could not install plugin. Retry or install manually." msgstr "Неможливо встановити плагін. Спробуйте ще раз або встановіть вручну." #: profile-builder-2.0/admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "Платні Акаунти" #: profile-builder-2.0/admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "Paid Member Subscriptions - безкоштовний плагін WordPress" #: profile-builder-2.0/admin/pms-cross-promotion.php:37 msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." msgstr "\"З новим Полем Підписки у Profile Builder, ваші реєстраційні форми дозволять користувачам підписуватися на платні акаунти." #: profile-builder-2.0/admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "Платна та Безкоштовна Підписки" #: profile-builder-2.0/admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "Обмежити Контент" #: profile-builder-2.0/admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "Управління Учасниками" #: profile-builder-2.0/admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "Шаблони Електронної Пошти" #: profile-builder-2.0/admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "Управління Акаунтами" #: profile-builder-2.0/admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "Управління Підпискою" #: profile-builder-2.0/admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "Управління Платежами" #: profile-builder-2.0/admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "Плагін активний" #: profile-builder-2.0/admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "Плагін активований" #: profile-builder-2.0/admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "Плагін деактивований." #: profile-builder-2.0/admin/pms-cross-promotion.php:104 msgid "Accept user payments, create subscription plans and restrict content on your website." msgstr "Приймайте платежі користувачів, створюйте плани підписки та обмежуйте контент вашого сайту." #: profile-builder-2.0/admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "Швидке Покрокове Налаштування" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401 msgid "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login." msgstr "Щоб активувати вашого користувача, натисніть на ссилку:

            %s%s%s

            Після активації ви отримаєте ​​*інший email* з вашим логіном." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45 msgid "After Login" msgstr "Після Входу" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46 msgid "After Logout" msgstr "Після Виходу" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47 msgid "After Registration" msgstr "Після Реєстрації" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48 msgid "After Edit Profile" msgstr "Після Редагування Профілю" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Successful Email Confirmation" msgstr "Після успішного підтвердження адреси електронної пошти" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Successful Password Reset" msgstr "Після Успішної Зміни Паролю" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "Консоль (обмеженння доступу до консолі користувачам)" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55 msgid "User ID" msgstr "ID користувача" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61 msgid "User ID or Username" msgstr "ID або ім'я користувача" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "User ID / Username" msgstr "ID користувача / Ім'я користувача" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "Please select and enter the ID or username of your user." msgstr "Будь-ласка, виберіть і введіть ID або ім'я вашого користувача" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131 msgid "Redirect Type" msgstr "Тип переспрямування" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Redirect URL" msgstr "URL переспрямування" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" msgstr "Може містити наступні динамічні теги:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241 msgid "Individual User Redirects" msgstr "Індивідуальні Переспрямування Користувача" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84 msgid "... Choose" msgstr "...Обрати" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 msgid "Select a user role." msgstr "Обрати роль користувача" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242 msgid "User Role based Redirects" msgstr "Переспрямування, застновані на ролі користувача" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243 msgid "Global Redirects" msgstr "Глобальні переспрямування" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133 msgid "Login ( wp_login.php )" msgstr "Логін ( wp_login.php )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134 msgid "Register ( wp-login.php?action=register )" msgstr "Зареєструватися ( wp-login.php?action=register )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "Втратили пароль ( wp-login.php?action=lostpassword )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "Архів Автора ( http://sitename.com/author/admin )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145 msgid "Redirect Default WordPress Forms and Pages" msgstr "Переспрямування Стандартних Форм і Сторінок Wordpress" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157 msgid "How does this work?" msgstr "Як це працює?" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "
            ID / Ім'я Користувача
            Переспрямування
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 msgid "
            User Role
            Redirect
            URL
            " msgstr "
            Роль Користувача
            Переспрямування
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "
            Redirect
            URL
            " msgstr "
            Переспрямування
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236 msgid "These redirects happen after a successful action, like registration or after a successful login." msgstr "Ці переспрямування відбуваються після успішної дії, накшталт реєстрації або успішного входу" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238 msgid "Which redirect happens depends on the following priority:" msgstr "Переспрямування, що відбудеться, залежить від наступного пріорітету:" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247 msgid "Redirect Default WordPress forms and pages" msgstr "Переспрямувати стандартні форми та сторінки WordPress" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248 msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder." msgstr "За допомогою цього Ви зможете переспрямувати різноманітні форми і сторінки WordPress на сторінки, створені в Profile Builder." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250 msgid "Available tags for dynamic URLs" msgstr "Доступні теги для динамічних URL" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251 msgid "You use the following tags in your URLs to redirect users to various pages." msgstr "Ви використовуєте наступні теги у Ваших URL для переспрямування користувачів на різноманітні сторінки." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253 msgid "generates a url of the current website homepage." msgstr "генерує URL діючої головної сторінки сайту." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254 msgid "in WordPress the site url can be different then the home url" msgstr "у WordPress URL сайту може відрізнятися від URL головної сторінки" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255 msgid "the ID of the user" msgstr "ID користувача" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256 msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." msgstr "опрацьована для URL версія імені користувача, нікнейм користувача може бути безпечно використаний у URL-адресах, оскільки він не може містити спеціальні символи чи пробіли." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257 msgid "the URL of the previously visited page" msgstr "URL попередньо відвіданої сторінки" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352 msgid "You can't add duplicate redirects!" msgstr "Ви не можете додавати редиректи, що дублюються!" #: profile-builder-2.0/admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "\"Відобразити ім'я публічно як\" - лише з'являється на сторінці Редагувати Профіль" #: profile-builder-2.0/admin/basic-info.php:37 msgid "Friction-less login using %s shortcode or a widget." msgstr "Форма входу в один клік, що використовує шорткод %s або віджет." #: profile-builder-2.0/admin/basic-info.php:41 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "Красиві реєстраційні форми, з можливістю повного налаштування за допомогою шорткоду %s." #: profile-builder-2.0/admin/basic-info.php:45 msgid "Straight forward edit profile forms using %s shortcode." msgstr "Прямолінійні форми редагування профілю за допомогою шорткоду %s." #: profile-builder-2.0/admin/basic-info.php:58 msgid "Allow users to recover their password in the front-end using the %s." msgstr "Дозволити користувачам відновлювати пароль у користувацькому інтерфейсі, використовучи %s." #: profile-builder-2.0/admin/basic-info.php:140 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." msgstr "Щоб створити сторінку, що містить користувачів зареєстрованих на поточному сайті/блозі, вставте наступний шорткод на сторінку за Ваш вибором: %s." #: profile-builder-2.0/admin/general-settings.php:115 msgid "\"Admin Approval\" on User Role:" msgstr "\"Підтвердження Адміністратором\" у Ролі Користувачів:" #: profile-builder-2.0/admin/general-settings.php:134 msgid "Select on what user roles to activate Admin Approval." msgstr "Виберіть, для яких ролей активувати Підтвердження Адміністратором." #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Display on PB forms" msgstr "Відображати на формах PB" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Login" msgstr "Логін PB" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Register" msgstr "Реєстрація PB" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Recover Password" msgstr "Форма відновлення паролю PB" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "Выберіть, на яких формах Profile Builder відображатиметься reCAPTCHA" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Display on default WP forms" msgstr "Відображати на Стандартних Формах WP" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Login" msgstr "Стандартна Форма Входу WP" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Register" msgstr "Стандартна Форма Реєстрацї WP" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Recover Password" msgstr "Стандартна Форма Відновлення Паролю WP" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "Виберіть, на яких стандартних формах WP відображатиметься reCAPTCHA" #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default option of the field" msgstr "Значення поля за замовчуванням" #: profile-builder-2.0/admin/manage-fields.php:282 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Afghanistan" msgstr "Афганістан" #: profile-builder-2.0/admin/manage-fields.php:283 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aland Islands" msgstr "Аландські острови" #: profile-builder-2.0/admin/manage-fields.php:284 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Albania" msgstr "Албанія" #: profile-builder-2.0/admin/manage-fields.php:285 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Algeria" msgstr "Алжир" #: profile-builder-2.0/admin/manage-fields.php:286 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "American Samoa" msgstr "Американське Самоа" #: profile-builder-2.0/admin/manage-fields.php:287 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Andorra" msgstr "Андора" #: profile-builder-2.0/admin/manage-fields.php:288 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Angola" msgstr "Ангола" #: profile-builder-2.0/admin/manage-fields.php:289 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Anguilla" msgstr "Ангілья" #: profile-builder-2.0/admin/manage-fields.php:290 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antarctica" msgstr "Антарктика" #: profile-builder-2.0/admin/manage-fields.php:291 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antigua and Barbuda" msgstr "Антигуа і Барбуда" #: profile-builder-2.0/admin/manage-fields.php:292 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Argentina" msgstr "Аргентина" #: profile-builder-2.0/admin/manage-fields.php:293 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Armenia" msgstr "Вірменія" #: profile-builder-2.0/admin/manage-fields.php:294 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aruba" msgstr "Аруба" #: profile-builder-2.0/admin/manage-fields.php:295 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Australia" msgstr "Австралія" #: profile-builder-2.0/admin/manage-fields.php:296 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Austria" msgstr "Австрія" #: profile-builder-2.0/admin/manage-fields.php:297 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Azerbaijan" msgstr "Азербайджан" #: profile-builder-2.0/admin/manage-fields.php:298 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahamas" msgstr "Багами" #: profile-builder-2.0/admin/manage-fields.php:299 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahrain" msgstr "Бахрейн" #: profile-builder-2.0/admin/manage-fields.php:300 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bangladesh" msgstr "Бангладеш" #: profile-builder-2.0/admin/manage-fields.php:301 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Barbados" msgstr "Барбадос" #: profile-builder-2.0/admin/manage-fields.php:302 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belarus" msgstr "Білорусь" #: profile-builder-2.0/admin/manage-fields.php:303 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belgium" msgstr "Бельгія" #: profile-builder-2.0/admin/manage-fields.php:304 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belize" msgstr "Беліз" #: profile-builder-2.0/admin/manage-fields.php:305 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Benin" msgstr "Бенін" #: profile-builder-2.0/admin/manage-fields.php:306 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bermuda" msgstr "Бермуди" #: profile-builder-2.0/admin/manage-fields.php:307 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bhutan" msgstr "Бутан" #: profile-builder-2.0/admin/manage-fields.php:308 msgid "Bolivia" msgstr "Болівія" #: profile-builder-2.0/admin/manage-fields.php:309 msgid "Bonaire, Saint Eustatius and Saba" msgstr "Бонайре, Сінт-Естатіус і Саба" #: profile-builder-2.0/admin/manage-fields.php:310 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bosnia and Herzegovina" msgstr "Боснія і Герцеговина" #: profile-builder-2.0/admin/manage-fields.php:311 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Botswana" msgstr "Ботсвана" #: profile-builder-2.0/admin/manage-fields.php:312 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bouvet Island" msgstr "Острів Буве" #: profile-builder-2.0/admin/manage-fields.php:313 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brazil" msgstr "Бразилія" #: profile-builder-2.0/admin/manage-fields.php:314 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "British Indian Ocean Territory" msgstr "Британська територія в Індійському океані" #: profile-builder-2.0/admin/manage-fields.php:315 msgid "British Virgin Islands" msgstr "Британські Віргінські Острови" #: profile-builder-2.0/admin/manage-fields.php:316 msgid "Brunei" msgstr "Бруней" #: profile-builder-2.0/admin/manage-fields.php:317 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bulgaria" msgstr "Болгарія" #: profile-builder-2.0/admin/manage-fields.php:318 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burkina Faso" msgstr "Буркіна Фасо" #: profile-builder-2.0/admin/manage-fields.php:319 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burundi" msgstr "Бурунді" #: profile-builder-2.0/admin/manage-fields.php:320 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cambodia" msgstr "Камбоджа" #: profile-builder-2.0/admin/manage-fields.php:321 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cameroon" msgstr "Камерун" #: profile-builder-2.0/admin/manage-fields.php:322 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Canada" msgstr "Канада" #: profile-builder-2.0/admin/manage-fields.php:323 msgid "Cape Verde" msgstr "Кабо-Верде" #: profile-builder-2.0/admin/manage-fields.php:324 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cayman Islands" msgstr "Кайманові Острови" #: profile-builder-2.0/admin/manage-fields.php:325 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Central African Republic" msgstr "Центрально-Африканська Республіка" #: profile-builder-2.0/admin/manage-fields.php:326 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chad" msgstr "Чад" #: profile-builder-2.0/admin/manage-fields.php:327 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chile" msgstr "Чилі" #: profile-builder-2.0/admin/manage-fields.php:328 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "China" msgstr "Китай" #: profile-builder-2.0/admin/manage-fields.php:329 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Christmas Island" msgstr "Острів Різдва" #: profile-builder-2.0/admin/manage-fields.php:330 msgid "Cocos Islands" msgstr "Кокосові Острови" #: profile-builder-2.0/admin/manage-fields.php:331 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Colombia" msgstr "Колумбія" #: profile-builder-2.0/admin/manage-fields.php:332 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Comoros" msgstr "Комори" #: profile-builder-2.0/admin/manage-fields.php:333 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cook Islands" msgstr "Острови Кука" #: profile-builder-2.0/admin/manage-fields.php:334 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Costa Rica" msgstr "Коста-Ріка" #: profile-builder-2.0/admin/manage-fields.php:335 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Croatia" msgstr "Хорватія" #: profile-builder-2.0/admin/manage-fields.php:336 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cuba" msgstr "Куба" #: profile-builder-2.0/admin/manage-fields.php:337 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Curacao" msgstr "Кюрасао" #: profile-builder-2.0/admin/manage-fields.php:338 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cyprus" msgstr "Кіпр" #: profile-builder-2.0/admin/manage-fields.php:339 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Czech Republic" msgstr "Чеська Республіка" #: profile-builder-2.0/admin/manage-fields.php:340 msgid "Democratic Republic of the Congo" msgstr "Демократична Республіка Конго" #: profile-builder-2.0/admin/manage-fields.php:341 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Denmark" msgstr "Данія" #: profile-builder-2.0/admin/manage-fields.php:342 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Djibouti" msgstr "Джібуті" #: profile-builder-2.0/admin/manage-fields.php:343 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominica" msgstr "Домініка" #: profile-builder-2.0/admin/manage-fields.php:344 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominican Republic" msgstr "Домініканська Республіка" #: profile-builder-2.0/admin/manage-fields.php:345 msgid "East Timor" msgstr "Східний Тимор" #: profile-builder-2.0/admin/manage-fields.php:346 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ecuador" msgstr "Еквадор" #: profile-builder-2.0/admin/manage-fields.php:347 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Egypt" msgstr "Єгипет" #: profile-builder-2.0/admin/manage-fields.php:348 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "El Salvador" msgstr "Ель Сальвадор" #: profile-builder-2.0/admin/manage-fields.php:349 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Equatorial Guinea" msgstr "Екваторіальна Гвінея" #: profile-builder-2.0/admin/manage-fields.php:350 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Eritrea" msgstr "Еритрея" #: profile-builder-2.0/admin/manage-fields.php:351 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Estonia" msgstr "Естонія" #: profile-builder-2.0/admin/manage-fields.php:352 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ethiopia" msgstr "Ефіопія" #: profile-builder-2.0/admin/manage-fields.php:353 msgid "Falkland Islands" msgstr "Фолклендські острови" #: profile-builder-2.0/admin/manage-fields.php:354 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Faroe Islands" msgstr "Фарерські острови" #: profile-builder-2.0/admin/manage-fields.php:355 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Fiji" msgstr "Фіджі" #: profile-builder-2.0/admin/manage-fields.php:356 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Finland" msgstr "Фінляндія" #: profile-builder-2.0/admin/manage-fields.php:357 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "France" msgstr "Франція" #: profile-builder-2.0/admin/manage-fields.php:358 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Guiana" msgstr "Французька Гвіана" #: profile-builder-2.0/admin/manage-fields.php:359 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Polynesia" msgstr "Французька Полінезія" #: profile-builder-2.0/admin/manage-fields.php:360 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Southern Territories" msgstr "Французькі Південні і Антарктичні Території" #: profile-builder-2.0/admin/manage-fields.php:361 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gabon" msgstr "Габон" #: profile-builder-2.0/admin/manage-fields.php:362 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gambia" msgstr "Гамбія" #: profile-builder-2.0/admin/manage-fields.php:363 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Georgia" msgstr "Грузія" #: profile-builder-2.0/admin/manage-fields.php:364 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Germany" msgstr "Німеччина" #: profile-builder-2.0/admin/manage-fields.php:365 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ghana" msgstr "Гана" #: profile-builder-2.0/admin/manage-fields.php:366 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gibraltar" msgstr "Гібралтар" #: profile-builder-2.0/admin/manage-fields.php:367 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greece" msgstr "Греція" #: profile-builder-2.0/admin/manage-fields.php:368 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greenland" msgstr "Гренландія" #: profile-builder-2.0/admin/manage-fields.php:369 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Grenada" msgstr "Гренада" #: profile-builder-2.0/admin/manage-fields.php:370 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guadeloupe" msgstr "Гваделупа" #: profile-builder-2.0/admin/manage-fields.php:371 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guam" msgstr "Гуам" #: profile-builder-2.0/admin/manage-fields.php:372 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guatemala" msgstr "Гватемала" #: profile-builder-2.0/admin/manage-fields.php:373 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guernsey" msgstr "Гернсі" #: profile-builder-2.0/admin/manage-fields.php:374 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea" msgstr "Гвінея" #: profile-builder-2.0/admin/manage-fields.php:375 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea-Bissau" msgstr "Гвінея-Бісау" #: profile-builder-2.0/admin/manage-fields.php:376 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guyana" msgstr "Гаяна" #: profile-builder-2.0/admin/manage-fields.php:377 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Haiti" msgstr "Гаїті" #: profile-builder-2.0/admin/manage-fields.php:378 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Heard Island and McDonald Islands" msgstr "Острів Херд і острови Макдональд" #: profile-builder-2.0/admin/manage-fields.php:379 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Honduras" msgstr "Гондурас" #: profile-builder-2.0/admin/manage-fields.php:380 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hong Kong" msgstr "Гонконг" #: profile-builder-2.0/admin/manage-fields.php:381 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hungary" msgstr "Угорщина" #: profile-builder-2.0/admin/manage-fields.php:382 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iceland" msgstr "Ісландія" #: profile-builder-2.0/admin/manage-fields.php:383 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "India" msgstr "Індія" #: profile-builder-2.0/admin/manage-fields.php:384 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Indonesia" msgstr "Індонезія" #: profile-builder-2.0/admin/manage-fields.php:385 msgid "Iran" msgstr "Іран" #: profile-builder-2.0/admin/manage-fields.php:386 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iraq" msgstr "Ірак" #: profile-builder-2.0/admin/manage-fields.php:387 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ireland" msgstr "Ірландія" #: profile-builder-2.0/admin/manage-fields.php:388 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Isle of Man" msgstr "Острів Мен" #: profile-builder-2.0/admin/manage-fields.php:389 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Israel" msgstr "Ізраїль" #: profile-builder-2.0/admin/manage-fields.php:390 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Italy" msgstr "Італія" #: profile-builder-2.0/admin/manage-fields.php:391 msgid "Ivory Coast" msgstr "Берег Слонової Кістки" #: profile-builder-2.0/admin/manage-fields.php:392 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jamaica" msgstr "Ямайка" #: profile-builder-2.0/admin/manage-fields.php:393 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Japan" msgstr "Японія" #: profile-builder-2.0/admin/manage-fields.php:394 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jersey" msgstr "Джерсі" #: profile-builder-2.0/admin/manage-fields.php:395 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jordan" msgstr "Йорданія" #: profile-builder-2.0/admin/manage-fields.php:396 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kazakhstan" msgstr "Казахстан" #: profile-builder-2.0/admin/manage-fields.php:397 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kenya" msgstr "Кенія" #: profile-builder-2.0/admin/manage-fields.php:398 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kiribati" msgstr "Кірібаті" #: profile-builder-2.0/admin/manage-fields.php:399 msgid "Kosovo" msgstr "Косово" #: profile-builder-2.0/admin/manage-fields.php:400 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kuwait" msgstr "Кувейт" #: profile-builder-2.0/admin/manage-fields.php:401 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kyrgyzstan" msgstr "Киргизтан" #: profile-builder-2.0/admin/manage-fields.php:402 msgid "Laos" msgstr "Лаос" #: profile-builder-2.0/admin/manage-fields.php:403 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Latvia" msgstr "Латвія" #: profile-builder-2.0/admin/manage-fields.php:404 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lebanon" msgstr "Лівія" #: profile-builder-2.0/admin/manage-fields.php:405 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lesotho" msgstr "Лесото" #: profile-builder-2.0/admin/manage-fields.php:406 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liberia" msgstr "Ліберія" #: profile-builder-2.0/admin/manage-fields.php:407 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Libya" msgstr "Лівія" #: profile-builder-2.0/admin/manage-fields.php:408 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liechtenstein" msgstr "Ліхтенштейн" #: profile-builder-2.0/admin/manage-fields.php:409 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lithuania" msgstr "Литва" #: profile-builder-2.0/admin/manage-fields.php:410 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Luxembourg" msgstr "Люксембург" #: profile-builder-2.0/admin/manage-fields.php:411 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macao" msgstr "Макао" #: profile-builder-2.0/admin/manage-fields.php:412 msgid "Macedonia" msgstr "Македонія" #: profile-builder-2.0/admin/manage-fields.php:413 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Madagascar" msgstr "Мадагаскар" #: profile-builder-2.0/admin/manage-fields.php:414 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malawi" msgstr "Малаві" #: profile-builder-2.0/admin/manage-fields.php:415 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malaysia" msgstr "Малайзія" #: profile-builder-2.0/admin/manage-fields.php:416 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Maldives" msgstr "Мальдіви" #: profile-builder-2.0/admin/manage-fields.php:417 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mali" msgstr "Малі" #: profile-builder-2.0/admin/manage-fields.php:418 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malta" msgstr "Мальта" #: profile-builder-2.0/admin/manage-fields.php:419 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Marshall Islands" msgstr "Маршалові Острови" #: profile-builder-2.0/admin/manage-fields.php:420 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Martinique" msgstr "Мартиніка" #: profile-builder-2.0/admin/manage-fields.php:421 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritania" msgstr "Мавританія" #: profile-builder-2.0/admin/manage-fields.php:422 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritius" msgstr "Маврикій" #: profile-builder-2.0/admin/manage-fields.php:423 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mayotte" msgstr "Майотта" #: profile-builder-2.0/admin/manage-fields.php:424 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mexico" msgstr "Мексика" #: profile-builder-2.0/admin/manage-fields.php:425 msgid "Micronesia" msgstr "Мікронезія" #: profile-builder-2.0/admin/manage-fields.php:426 msgid "Moldova" msgstr "Молдова" #: profile-builder-2.0/admin/manage-fields.php:427 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Monaco" msgstr "Монако" #: profile-builder-2.0/admin/manage-fields.php:428 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mongolia" msgstr "Монголія" #: profile-builder-2.0/admin/manage-fields.php:429 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montenegro" msgstr "Чорногорія" #: profile-builder-2.0/admin/manage-fields.php:430 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montserrat" msgstr "Монтсерат" #: profile-builder-2.0/admin/manage-fields.php:431 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Morocco" msgstr "Марокко" #: profile-builder-2.0/admin/manage-fields.php:432 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mozambique" msgstr "Мозамбік" #: profile-builder-2.0/admin/manage-fields.php:433 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Myanmar" msgstr "М'янма" #: profile-builder-2.0/admin/manage-fields.php:434 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Namibia" msgstr "Намібія" #: profile-builder-2.0/admin/manage-fields.php:435 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nauru" msgstr "Науру" #: profile-builder-2.0/admin/manage-fields.php:436 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nepal" msgstr "Непал" #: profile-builder-2.0/admin/manage-fields.php:437 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Netherlands" msgstr "Нідерланди" #: profile-builder-2.0/admin/manage-fields.php:438 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Caledonia" msgstr "Нова Каледонія" #: profile-builder-2.0/admin/manage-fields.php:439 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Zealand" msgstr "Нова Зеландія" #: profile-builder-2.0/admin/manage-fields.php:440 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nicaragua" msgstr "Нікарагуа" #: profile-builder-2.0/admin/manage-fields.php:441 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niger" msgstr "Нігер" #: profile-builder-2.0/admin/manage-fields.php:442 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nigeria" msgstr "Нігерія" #: profile-builder-2.0/admin/manage-fields.php:443 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niue" msgstr "Ніуе" #: profile-builder-2.0/admin/manage-fields.php:444 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norfolk Island" msgstr "Острів Норфолк" #: profile-builder-2.0/admin/manage-fields.php:445 msgid "North Korea" msgstr "Північна Корея" #: profile-builder-2.0/admin/manage-fields.php:446 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Northern Mariana Islands" msgstr "Північні Маріанські Острови" #: profile-builder-2.0/admin/manage-fields.php:447 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norway" msgstr "Норвегія" #: profile-builder-2.0/admin/manage-fields.php:448 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Oman" msgstr "Оман" #: profile-builder-2.0/admin/manage-fields.php:449 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pakistan" msgstr "Пакистан" #: profile-builder-2.0/admin/manage-fields.php:450 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palau" msgstr "Палау" #: profile-builder-2.0/admin/manage-fields.php:451 msgid "Palestinian Territory" msgstr "Палестина" #: profile-builder-2.0/admin/manage-fields.php:452 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Panama" msgstr "Панама" #: profile-builder-2.0/admin/manage-fields.php:453 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Papua New Guinea" msgstr "Папуа Нова Гвінея" #: profile-builder-2.0/admin/manage-fields.php:454 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Paraguay" msgstr "Парагвай" #: profile-builder-2.0/admin/manage-fields.php:455 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Peru" msgstr "Перу" #: profile-builder-2.0/admin/manage-fields.php:456 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Philippines" msgstr "Філіпіни" #: profile-builder-2.0/admin/manage-fields.php:457 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pitcairn" msgstr "Піткерн" #: profile-builder-2.0/admin/manage-fields.php:458 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Poland" msgstr "Польща" #: profile-builder-2.0/admin/manage-fields.php:459 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Portugal" msgstr "Португалія" #: profile-builder-2.0/admin/manage-fields.php:460 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Puerto Rico" msgstr "Пуерто Ріко" #: profile-builder-2.0/admin/manage-fields.php:461 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Qatar" msgstr "Катар" #: profile-builder-2.0/admin/manage-fields.php:462 msgid "Republic of the Congo" msgstr "Республіка Конго" #: profile-builder-2.0/admin/manage-fields.php:463 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Reunion" msgstr "Реюньйон" #: profile-builder-2.0/admin/manage-fields.php:464 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Romania" msgstr "Румунія" #: profile-builder-2.0/admin/manage-fields.php:465 msgid "Russia" msgstr "Росія" #: profile-builder-2.0/admin/manage-fields.php:466 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Rwanda" msgstr "Руанда" #: profile-builder-2.0/admin/manage-fields.php:467 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Barthelemy" msgstr "Сен-Бартельмі" #: profile-builder-2.0/admin/manage-fields.php:468 msgid "Saint Helena" msgstr "Острів Святої Єлени" #: profile-builder-2.0/admin/manage-fields.php:469 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Kitts and Nevis" msgstr "Сент-Кіттс і Невіс" #: profile-builder-2.0/admin/manage-fields.php:470 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Lucia" msgstr "Сент-Люсія" #: profile-builder-2.0/admin/manage-fields.php:471 msgid "Saint Martin" msgstr "Сен-Мартен" #: profile-builder-2.0/admin/manage-fields.php:472 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Pierre and Miquelon" msgstr "Сен-П'єр і Мікелон" #: profile-builder-2.0/admin/manage-fields.php:473 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Vincent and the Grenadines" msgstr "Сент-Вінсент і Гренадини" #: profile-builder-2.0/admin/manage-fields.php:474 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Samoa" msgstr "Самоа" #: profile-builder-2.0/admin/manage-fields.php:475 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "San Marino" msgstr "Сан Маріно" #: profile-builder-2.0/admin/manage-fields.php:476 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sao Tome and Principe" msgstr "Сан-Томе і Принсіпі" #: profile-builder-2.0/admin/manage-fields.php:477 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saudi Arabia" msgstr "Саудівська Аравія" #: profile-builder-2.0/admin/manage-fields.php:478 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Senegal" msgstr "Сенегал" #: profile-builder-2.0/admin/manage-fields.php:479 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Serbia" msgstr "Сербія" #: profile-builder-2.0/admin/manage-fields.php:480 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Seychelles" msgstr "Сейшели" #: profile-builder-2.0/admin/manage-fields.php:481 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sierra Leone" msgstr "Сьєрра-Леоне" #: profile-builder-2.0/admin/manage-fields.php:482 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Singapore" msgstr "Сингапур" #: profile-builder-2.0/admin/manage-fields.php:483 msgid "Sint Maarten" msgstr "Сінт-Мартен" #: profile-builder-2.0/admin/manage-fields.php:484 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovakia" msgstr "Словаччина" #: profile-builder-2.0/admin/manage-fields.php:485 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovenia" msgstr "Словенія" #: profile-builder-2.0/admin/manage-fields.php:486 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Solomon Islands" msgstr "Соломонові острови" #: profile-builder-2.0/admin/manage-fields.php:487 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Somalia" msgstr "Сомалі" #: profile-builder-2.0/admin/manage-fields.php:488 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Africa" msgstr "Південна Африка" #: profile-builder-2.0/admin/manage-fields.php:489 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Georgia and the South Sandwich Islands" msgstr "Південна Джорджія та Південні Сандвічеві острови" #: profile-builder-2.0/admin/manage-fields.php:490 msgid "South Korea" msgstr "Південна Корея" #: profile-builder-2.0/admin/manage-fields.php:491 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Sudan" msgstr "Південний Судан" #: profile-builder-2.0/admin/manage-fields.php:492 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Spain" msgstr "Іспанія" #: profile-builder-2.0/admin/manage-fields.php:493 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sri Lanka" msgstr "Шрі Ланка" #: profile-builder-2.0/admin/manage-fields.php:494 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sudan" msgstr "Судан" #: profile-builder-2.0/admin/manage-fields.php:495 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Suriname" msgstr "Сурінам" #: profile-builder-2.0/admin/manage-fields.php:496 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Svalbard and Jan Mayen" msgstr "Свальбард і Ян-Маєн" #: profile-builder-2.0/admin/manage-fields.php:497 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Swaziland" msgstr "Свазіленд" #: profile-builder-2.0/admin/manage-fields.php:498 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sweden" msgstr "Швеція" #: profile-builder-2.0/admin/manage-fields.php:499 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Switzerland" msgstr "Швейцарія" #: profile-builder-2.0/admin/manage-fields.php:500 msgid "Syria" msgstr "Сирія" #: profile-builder-2.0/admin/manage-fields.php:501 msgid "Taiwan" msgstr "Тайвань" #: profile-builder-2.0/admin/manage-fields.php:502 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tajikistan" msgstr "Таджикістан" #: profile-builder-2.0/admin/manage-fields.php:503 msgid "Tanzania" msgstr "Танзанія" #: profile-builder-2.0/admin/manage-fields.php:504 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Thailand" msgstr "Тайланд" #: profile-builder-2.0/admin/manage-fields.php:505 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Togo" msgstr "Того" #: profile-builder-2.0/admin/manage-fields.php:506 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tokelau" msgstr "Токелау" #: profile-builder-2.0/admin/manage-fields.php:507 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tonga" msgstr "Тонга" #: profile-builder-2.0/admin/manage-fields.php:508 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Trinidad and Tobago" msgstr "Трінідад і Тобаго" #: profile-builder-2.0/admin/manage-fields.php:509 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tunisia" msgstr "Туніс" #: profile-builder-2.0/admin/manage-fields.php:510 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkey" msgstr "Туреччина" #: profile-builder-2.0/admin/manage-fields.php:511 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkmenistan" msgstr "Туркменістан" #: profile-builder-2.0/admin/manage-fields.php:512 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turks and Caicos Islands" msgstr "Острови Теркс і Кайкос" #: profile-builder-2.0/admin/manage-fields.php:513 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tuvalu" msgstr "Тувалу" #: profile-builder-2.0/admin/manage-fields.php:514 msgid "U.S. Virgin Islands" msgstr "Американські Віргінські Острови" #: profile-builder-2.0/admin/manage-fields.php:515 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uganda" msgstr "Уганда" #: profile-builder-2.0/admin/manage-fields.php:516 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ukraine" msgstr "Україна" #: profile-builder-2.0/admin/manage-fields.php:517 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Arab Emirates" msgstr "Об'єднані Арабські Емірати" #: profile-builder-2.0/admin/manage-fields.php:518 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Kingdom" msgstr "Сполучене Королівство" #: profile-builder-2.0/admin/manage-fields.php:519 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States" msgstr "Сполучені Штати" #: profile-builder-2.0/admin/manage-fields.php:520 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States Minor Outlying Islands" msgstr "Зовнішні малі острови США" #: profile-builder-2.0/admin/manage-fields.php:521 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uruguay" msgstr "Уругвай" #: profile-builder-2.0/admin/manage-fields.php:522 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uzbekistan" msgstr "Узбекістан" #: profile-builder-2.0/admin/manage-fields.php:523 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Vanuatu" msgstr "Вануату" #: profile-builder-2.0/admin/manage-fields.php:524 msgid "Vatican" msgstr "Ватикан" #: profile-builder-2.0/admin/manage-fields.php:525 msgid "Venezuela" msgstr "Венесуела" #: profile-builder-2.0/admin/manage-fields.php:526 msgid "Vietnam" msgstr "В'єтнам" #: profile-builder-2.0/admin/manage-fields.php:527 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Wallis and Futuna" msgstr "Волліс і Футуна" #: profile-builder-2.0/admin/manage-fields.php:528 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Western Sahara" msgstr "Західна Сахара" #: profile-builder-2.0/admin/manage-fields.php:529 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Yemen" msgstr "Ємен" #: profile-builder-2.0/admin/manage-fields.php:530 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zambia" msgstr "Замбія" #: profile-builder-2.0/admin/manage-fields.php:531 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zimbabwe" msgstr "Зімбабве" #: profile-builder-2.0/admin/manage-fields.php:1219 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." msgstr "З Profile Builder Pro v2 ви можете відображати різноманітні поля в формах реєстрації і редагування профілю, використовуючи модуль Multiple Registration & Edit Profile Forms." #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237 msgid "Your account has to be confirmed by an administrator before you can log in." msgstr "Ваш акаунт повинен бути підтверджений адміністратором, перед тим як Ви зможете увійти." #: profile-builder-2.0/features/admin-approval/admin-approval.php:216 msgid "Your account has been successfully created!" msgstr "Ваш акаунт було успішно створено!" #: profile-builder-2.0/features/functions.php:678 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458 msgid "Please enter a (valid) reCAPTCHA value" msgstr "Будь-ласка, введіть (дійсне) значенння reCAPTCHA" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 msgid "Click the BACK button on your browser, and try again." msgstr "Натисніть кнопку Назад у вашому браузері, и спробуйте ще раз." #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78 #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87 msgid "Sorry, you cannot upload this file type for this field." msgstr "Вибачте, Ви не можете завантажувати файли цого типу у цьому полі." #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94 msgid "An error occurred, please try again later." msgstr "Помилка! Спробуйте пізніше." #: profile-builder-2.0/modules/user-listing/userlisting.php:282 msgid "More" msgstr "Більше" #: profile-builder-2.0/modules/user-listing/userlisting.php:376 msgid "You do not have permission to view this user list." msgstr "У вас немає прав для перегляду цього списку користувачів." #: profile-builder-2.0/modules/user-listing/userlisting.php:389 msgid "You do not have the required user role to view this user list." msgstr "У Вас немає необхідної ролі для перегляду цього списку користувачів." #: profile-builder-2.0/modules/user-listing/userlisting.php:2253 msgid "Ascending" msgstr "Висхідний" #: profile-builder-2.0/modules/user-listing/userlisting.php:2254 msgid "Descending" msgstr "Спадний" #: profile-builder-2.0/admin/add-ons.php:148 #: profile-builder-2.0/admin/add-ons.php:248 #: profile-builder-2.0/admin/pms-cross-promotion.php:134 #: profile-builder-2.0/admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "Завантажити зараз" #: profile-builder-2.0/admin/admin-functions.php:200 msgid "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. " msgstr "Якщо Вам сподобалось користуватися %1$s будь-ласка оцініть нас на WordPress.org. Більше щасливих користувачів - більше можливостей, менше багів і краща підтримка для усіх. " #: profile-builder-2.0/admin/manage-fields.php:82 msgid "Choose one of the supported field types" msgstr "Оберіть один із можливих типів полів" #: profile-builder-2.0/admin/manage-fields.php:84 msgid ". Extra Field Types are available in Hobbyist or PRO versions." msgstr ".Додаткові типи полів доступні у Hobbyist або PRO версіях." #: profile-builder-2.0/admin/manage-fields.php:131 msgid "Site Key" msgstr "Ключ Сайту" #: profile-builder-2.0/admin/manage-fields.php:131 msgid "The site key from Google, www.google.com/recaptcha" msgstr "Ключ сайту від Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "Secret Key" msgstr "Секретний Ключ" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "The secret key from Google, www.google.com/recaptcha" msgstr "Секретний ключ від Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:1023 msgid "You must enter the site key\n" msgstr "Ви повинні ввести ключ сайту\n" #: profile-builder-2.0/admin/manage-fields.php:1025 msgid "You must enter the secret key\n" msgstr "Ви повинні ввести секретний ключ\n" #: profile-builder-2.0/admin/add-ons.php:10 #: profile-builder-2.0/admin/add-ons.php:32 msgid "Add-Ons" msgstr "Аддони" #: profile-builder-2.0/admin/add-ons.php:34 #: profile-builder-2.0/admin/add-ons.php:129 #: profile-builder-2.0/admin/add-ons.php:231 #: profile-builder-2.0/admin/pms-cross-promotion.php:78 #: profile-builder-2.0/admin/pms-cross-promotion.php:114 #: profile-builder-2.0/admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "Активувати" #: profile-builder-2.0/admin/add-ons.php:36 #: profile-builder-2.0/admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "Завантажується і встановлюється..." #: profile-builder-2.0/admin/add-ons.php:37 #: profile-builder-2.0/admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "Встановлення завершено" #: profile-builder-2.0/admin/add-ons.php:39 msgid "Add-On is Active" msgstr "Аддон активний" #: profile-builder-2.0/admin/add-ons.php:40 msgid "Add-On has been activated" msgstr "Аддон активовано" #: profile-builder-2.0/admin/add-ons.php:41 #: profile-builder-2.0/admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "Спробувати Перевстановити" #: profile-builder-2.0/admin/add-ons.php:43 #: profile-builder-2.0/admin/add-ons.php:140 msgid "Add-On is active" msgstr "Аддон активний" #: profile-builder-2.0/admin/add-ons.php:44 #: profile-builder-2.0/admin/add-ons.php:138 msgid "Add-On is inactive" msgstr "Аддон неактивний" #: profile-builder-2.0/admin/add-ons.php:46 #: profile-builder-2.0/admin/add-ons.php:133 #: profile-builder-2.0/admin/add-ons.php:235 #: profile-builder-2.0/admin/pms-cross-promotion.php:90 #: profile-builder-2.0/admin/pms-cross-promotion.php:118 #: profile-builder-2.0/admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "Деактивувати" #: profile-builder-2.0/admin/add-ons.php:47 msgid "Add-On has been deactivated." msgstr "Аддон деактивовано" #: profile-builder-2.0/admin/add-ons.php:59 msgid "Something went wrong, we could not connect to the server. Please try again later." msgstr "Виникла помилка, неможливо з'єднатися з сервером. Будь-ласка, спробуйте пізніше." #: profile-builder-2.0/admin/pms-cross-promotion.php:137 #: profile-builder-2.0/admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "Встановити Зараз" #: profile-builder-2.0/admin/add-ons.php:153 #: profile-builder-2.0/admin/add-ons.php:251 #: profile-builder-2.0/admin/pms-cross-promotion.php:141 #: profile-builder-2.0/admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "Сумісний з Вашою версією Profile Builder." #: profile-builder-2.0/admin/add-ons.php:162 msgid "Upgrade Profile Builder" msgstr "Обновити Profile Builder" #: profile-builder-2.0/admin/add-ons.php:163 msgid "Not compatible with Profile Builder" msgstr "Не сумісно з Profile Builder" #: profile-builder-2.0/admin/add-ons.php:171 msgid "Not compatible with your version of Profile Builder." msgstr "Не сумісно з вашою версією Profile Builder." #: profile-builder-2.0/admin/add-ons.php:172 msgid "Minimum required Profile Builder version:" msgstr "Мінімально необхідна версія Profile Builder:" #: profile-builder-2.0/admin/add-ons.php:177 msgid "Could not install add-on. Retry or install manually." msgstr "Встановлення не вдалося. Перейдіть по посиланню і спробуйте встановити вручну." #: profile-builder-2.0/front-end/default-fields/email/email.php:51 msgid "You must enter a valid email address." msgstr "Введіть дійсну електронну адресу." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "Ім'я користувача введено некоректно, оскільки містить заборонені символи." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "Будь-ласка, введіть дійсне ім'я користувача." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72 #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85 msgid "Only administrators can see this field on edit profile forms." msgstr "Тільки адміністратори можуть бачити це поле у формах редагування профілю." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81 msgid "As an administrator you cannot change your role." msgstr "Як адміністратор ви не можете змінити свою роль" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117 msgid "" "\n" "

            {{username}} has requested a password change via the password reset feature.

            \n" "

            His/her new password is: {{password}}

            \n" msgstr "" "\n" "\n" "

            {{username}} запросив зміну паролю.

            \n" "

            Його/Її новий пароль: {{password}}

            \n" "\n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141 msgid "Admin Notification for User Password Reset" msgstr "Сповіщення Адміністратора для Скидання Паролю Користувача" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46 msgid "Reset Key" msgstr "Ключ Скидання" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47 msgid "Reset Url" msgstr "Url Скидання" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48 msgid "Reset Link" msgstr "Посилання Скидання" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204 msgid "" "\n" "

            Someone requested that the password be reset for the following account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            \n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" msgstr "" "\n" "\n" "

            Хтось запросив пароль для скидання акаунту: {{site_name}}
            \n" "Ім'я користувача: {{username}}

            \n" "

            Якщо лист прийшов до вас помилково, не відповідайте на нього..

            \n" "

            Щоб скинути пароль, перейдіть по ссилці:
            \n" "{{{reset_link}}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218 msgid "[{{site_name}}] Password Reset" msgstr "Скинути пароль для [{{site_name}}] " #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229 msgid "Password Reset Email" msgstr "Лист Скидання Паролю" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235 msgid "" "\n" "

            You have successfully reset your password to: {{password}}

            \n" msgstr "" "\n" "\n" "

            Ви успішно змінили пароль на: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset Successfully" msgstr "Пароль було успішно змінено для [{{site_name}}]" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256 msgid "Password Reset Success Email" msgstr "Лист Підтвердження Зміни Паролю" #: profile-builder-2.0/modules/user-listing/userlisting.php:159 msgid "User Nicename" msgstr "Прізвисько Користувача" #: pb-add-on-woocommerce/woosync-page.php:80 #: pb-add-on-woocommerce/woosync-page.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:499 msgid "None" msgstr "Відсутнє" #: profile-builder-2.0/admin/admin-functions.php:132 msgid "ERROR: The password must have the minimum length of %s characters" msgstr "ПОМИЛКА: Пароль повинен мати мінімальну довжину %s символів" #: profile-builder-2.0/admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr "ПОМИЛКА: Мінімальна сила паролю повинна бути %s" #: profile-builder-2.0/admin/general-settings.php:179 msgid "Username and Email" msgstr "Логін та Електронна пошта" #: profile-builder-2.0/admin/general-settings.php:184 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "\"Логін і Електронна пошта\" - можливо увійти з іменем користувача і адресою електронної пошти." #: profile-builder-2.0/admin/general-settings.php:185 msgid "\"Username\" - users can Log In only with Username." msgstr "\"Логін\" - можливо увійти тільки за допомогою імені користувача." #: profile-builder-2.0/admin/general-settings.php:186 msgid "\"Email\" - users can Log In only with Email." msgstr "\"Електронна пошта\" - можливо увійти тільки за допомогою адреси електронної пошти." #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "Вкажіть допущені до завантаження розширення файлів
            Наприклад: .ext1, .ext2, .ext3
            Якщо не вказано за замовчуванням, будуть використані: .jpg, .jpeg, .gif, .png (.*)" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)" msgstr "Вкажіть розширення, використання завантаження яких Ви хотіли б обмежити
            Наприклад: .ext1,.ext2,.ext3
            Якщо не вказано, усі розширення файлів WordPress за замовчуванням будуть доступні (.*)" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "User Roles" msgstr "Ролі Користувачів" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "Оберіть які ролі користувачів відображатимуться користувачеві ( змініть порядок перетягуванням )" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "User Roles Order" msgstr "Порядок Ролей Користувачів" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "Save the user role order from the user roles checkboxes" msgstr "Збережіть порядок обраних ролей користувачів за допомогою чекбоксів" #: profile-builder-2.0/admin/manage-fields.php:1128 msgid "Please select at least one user role\n" msgstr "Будь-ласка оберіть принаймі одну роль користувача\n" #: profile-builder-2.0/admin/register-version.php:22 msgid "Profile Builder Register" msgstr "Реєстрація Profile Builder" #: profile-builder-2.0/admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "Строк дії серійного номера скоро завершиться!" #: profile-builder-2.0/admin/register-version.php:81 msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr "Строк дії Вашого серійного номера завершується, будь-ласка,%1$s Продовжити Ліцензію%2$s." #: profile-builder-2.0/admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr "Строк дії вашого серійного номера завершився, будь-ласка,%1$s Обновити ліцензію%2$s." #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 msgid "Add Entry" msgstr "Додати запис" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 msgid "show" msgstr "відобразити" #: profile-builder-2.0/features/functions.php:736 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" msgstr "Щоб дозволити користувачам реєструватися на Вашому сайті за допомогою Profile Builder, спочатку треба увімкнути реєстрацію користувачів. Перейдіть до %1$sНалаштування мережі%2$s, під Реєстраційними Налаштуваннями поставте галочку \"Профілі користувачів можуть бути зареєстровані\". %3$sПрибрати%4$s" #: profile-builder-2.0/front-end/class-formbuilder.php:659 msgid "User to edit:" msgstr "Редагувати користувача:" #: profile-builder-2.0/front-end/default-fields/password/password.php:46 #: profile-builder-2.0/front-end/recover.php:262 msgid "The password must have the minimum length of %s characters" msgstr "Пароль повинен бути не меншим за %s знаків" #: profile-builder-2.0/front-end/default-fields/password/password.php:50 #: profile-builder-2.0/front-end/recover.php:266 msgid "The password must have a minimum strength of %s" msgstr "Мінімальна слабкість паролю повинна бути не меншою за %s" #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118 msgid "You cannot register this user role" msgstr "Ви не можете зареєструвати дану роль користувача" #: profile-builder-2.0/front-end/login.php:153 msgid "username or email" msgstr "логін або електронна пошта" #: profile-builder-2.0/front-end/login.php:222 msgid "Username or Email" msgstr "Логін або Електронна пошта" #: profile-builder-2.0/front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "Ви увійшли в систему як %s." #: profile-builder-2.0/front-end/logout.php:15 msgid "Log out »" msgstr "Вийти »" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "Роль Користувача" #: profile-builder-2.0/modules/user-listing/userlisting.php:2167 msgid "View all extra shortcode parameters" msgstr "Переглянути усі додаткові параметри шорткодів" #: profile-builder-2.0/modules/user-listing/userlisting.php:2181 msgid "displays only the users that you specified the user_id for" msgstr "відображаються лише ті користувачі, для котрих ви вказали user_id" #: profile-builder-2.0/modules/user-listing/userlisting.php:2187 msgid "displays all users except the ones you specified the user_id for" msgstr "відображаються усі користувачі, крім тих, для котрих ви вказали user_id" #: profile-builder-2.0/features/functions.php:566 msgid "Minimum length of %d characters" msgstr "Мінімальна довжина %d символів" #: profile-builder-2.0/front-end/class-formbuilder.php:146 #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "This message is only visible by administrators" msgstr "Це повідомлення видиме лише адміністратору" #: profile-builder-2.0/modules/user-listing/userlisting.php:413 msgid "User not found" msgstr "Користувача не знайдено" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "Валідні теги {{reply_to}} і {{site_name}}" #: profile-builder-2.0/admin/admin-bar.php:48 msgid "Choose which user roles view the admin bar in the front-end of the website." msgstr "Виберіть ролі користувачів, для котрих відображається адмін-панель у клієнтській частині сайту." #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes" msgstr "Введіть розділений комами список значень
            Він може бути будь-чим, так як його вміст не відображається для користувачів, але не повинен містити спеціальні символи чи апострофи" #: profile-builder-2.0/admin/manage-fields.php:1055 msgid "The meta-name cannot be empty\n" msgstr "Мета-ім'я не може бути пустим\n" #: profile-builder-2.0/admin/register-version.php:69 msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received" msgstr "Зареєструйте придбану копію %s за допомогою отриманого вами серійного номера" #: profile-builder-2.0/admin/register-version.php:243 msgid "

            Your Profile Builder serial number is invalid or missing.
            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

            " msgstr "

            Ваш серійний номер Profile Builder невірний або відсутній
            Будь-ласка %1$srзареєструйте Вашу копію%2$s щоб отримати доступ до оновлень та технічної підтримки. Вам потрібен ліцензійний ключ? %3$sПридбайте зараз%4$s

            " #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17 #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60 msgid "...Choose" msgstr "...Оберіть" #: profile-builder-2.0/features/class-list-table.php:526 #: profile-builder-2.0/features/class-list-table.php:942 msgid "1 item" msgstr "%s предмет" #: profile-builder-2.0/features/functions.php:552 msgid "Very Weak" msgstr "Дуже слабкий" #: profile-builder-2.0/features/functions.php:640 msgid "This field is required" msgstr "Це поле обов'язкове до заповнення" #: profile-builder-2.0/features/functions.php:704 msgid "Cancel" msgstr "Відмінити" #: profile-builder-2.0/features/functions.php:740 msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s" msgstr "Щоб у користувачів з'явилась можливість реєструватися на сайті через Profile Builder, ви повинні дозволити реєстрацію. Пройдіть %1$s Налаштування -> Загальні %2$s, і в пункті Членство поставте галочку “Будь-хто може зареєструватись”. %3$sВідмінити%4$s" #: profile-builder-2.0/front-end/login.php:144 msgid "Invalid username." msgstr "Невірне ім'я користувача" #: profile-builder-2.0/front-end/login.php:149 #: profile-builder-2.0/front-end/login.php:153 msgid "username" msgstr "м'я користувача" #: profile-builder-2.0/front-end/login.php:149 msgid "email" msgstr "електронна скринька" #: profile-builder-2.0/front-end/login.php:256 msgid "Lost your password?" msgstr "Втратили пароль?" #: profile-builder-2.0/index.php:34 msgid " is also activated. You need to deactivate it before activating this version of the plugin." msgstr "активований. Ви повинні деактивувати його, перед тим як активувати цю версію плагіна." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54 msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email" msgstr "Тег або адреса електронної скриньки повинна бути діючою {{reply_to}} що веде за замовчуванням до адреси електронної скриньки адміністратора" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508 msgid "Your selected password at signup" msgstr "Пароль обраний при реєстрації" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save." msgstr "Ці налаштування будуть відтворені на сторінці налаштувань у закладці \"Налаштування елетронної пошти адміністратора\" після збереження." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "Ця форма пуста." #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "Видалити усі елементи" #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all" msgstr "Видалити усе" #: profile-builder-2.0/modules/user-listing/userlisting.php:1621 msgid "Choose..." msgstr "Обрати..." #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Set the number of users to be displayed on every paginated part of the all-userlisting" msgstr "Встановіть кількість користувачів, яка відображатиметься на кожній сторінці списку користувачів" #: profile-builder-2.0/admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "Відобразити/Приховати Панель Адміністратора на користувацькій частині сайту" #: profile-builder-2.0/admin/admin-bar.php:10 #: profile-builder-2.0/admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "Налаштування Панелі Адміністратора" #: profile-builder-2.0/admin/admin-bar.php:57 msgid "User-Role" msgstr "Роль Користувача" #: profile-builder-2.0/admin/admin-bar.php:58 msgid "Visibility" msgstr "Видимість" #: profile-builder-2.0/admin/admin-bar.php:73 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "За замовчуванням" #: profile-builder-2.0/admin/admin-bar.php:74 msgid "Show" msgstr "Відобразити" #: profile-builder-2.0/admin/admin-bar.php:75 #: profile-builder-2.0/modules/user-listing/userlisting.php:1554 msgid "Hide" msgstr "Приховати" #: pb-add-on-woocommerce/woosync-page.php:147 #: profile-builder-2.0/admin/admin-bar.php:86 #: profile-builder-2.0/admin/general-settings.php:224 #: profile-builder-2.0/admin/register-version.php:95 #: profile-builder-2.0/features/functions.php:697 #: profile-builder-2.0/modules/modules.php:127 msgid "Save Changes" msgstr "Зберегти Зміни" #: profile-builder-2.0/admin/admin-functions.php:37 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 )" msgstr "Встановлено вхід із використанням електронної пошти. Це поле НЕ відображатиметься на користувацькій частині сайту (ви можете змінити ці налаштування у вкладці \\\"%s)" #: profile-builder-2.0/admin/admin-functions.php:37 #: profile-builder-2.0/admin/general-settings.php:10 #: profile-builder-2.0/admin/general-settings.php:35 msgid "General Settings" msgstr "Основні Налаштування" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:210 msgid "Very weak" msgstr "Дуже Слабкий" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:211 #: profile-builder-2.0/features/functions.php:552 msgid "Weak" msgstr "Слабкий" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:212 #: profile-builder-2.0/features/functions.php:552 msgid "Medium" msgstr "Середній" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:213 #: profile-builder-2.0/features/functions.php:552 msgid "Strong" msgstr "Сильний" #: profile-builder-2.0/admin/admin-functions.php:187 msgid "Add Field" msgstr "Додати Поле" #: profile-builder-2.0/admin/admin-functions.php:189 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390 msgid "Save Settings" msgstr "Зберегти Налаштування" #: profile-builder-2.0/admin/basic-info.php:10 msgid "Basic Information" msgstr "Основна Інформація" #: profile-builder-2.0/admin/basic-info.php:29 msgid "Version %s" msgstr "Версія %s" #: profile-builder-2.0/admin/basic-info.php:30 msgid "Profile Builder " msgstr "Profile Builder " #: profile-builder-2.0/admin/basic-info.php:31 msgid "The best way to add front-end registration, edit profile and login forms." msgstr "Найкращим способом додати реєстрацію на користувацькій частині сайту є редагування профілю та форми логіну." #: profile-builder-2.0/admin/basic-info.php:33 msgid "For Modern User Interaction" msgstr "Для сучасної взаємодії з користувачем" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25 #: profile-builder-2.0/admin/basic-info.php:36 #: profile-builder-2.0/features/login-widget/login-widget.php:59 msgid "Login" msgstr "Логін" #: profile-builder-2.0/admin/basic-info.php:40 msgid "Registration" msgstr "Реєстрація" #: profile-builder-2.0/admin/basic-info.php:44 msgid "Edit Profile" msgstr "Редагувати Профіль" #: profile-builder-2.0/admin/basic-info.php:51 msgid "Extra Features" msgstr "Додаткові Можливості" #: profile-builder-2.0/admin/basic-info.php:52 msgid "Features that give you more control over your users, increased security and help you fight user registration spam." msgstr "Можливості, що дозволяють розширити шляхи конролю над користувачами, підвищену безпеку і допомогу у боротьбі зі спам-реєстраціями користувачів." #: profile-builder-2.0/admin/basic-info.php:53 msgid "Enable extra features" msgstr "Дозволити додаткові можливості" #: profile-builder-2.0/admin/basic-info.php:57 msgid "Recover Password" msgstr "Відновити Пароль" #: profile-builder-2.0/admin/basic-info.php:61 msgid "Admin Approval (*)" msgstr "Затверджується адміністратором (*)" #: profile-builder-2.0/admin/basic-info.php:62 msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI." msgstr "Ви самі вирішуєте, хто є користувачем вашого сайту. Отримайте сповіщення електронною поштою або затвердіть декількох користувачів одночасно за допомогою інтерфейсу WordPress." #: profile-builder-2.0/admin/basic-info.php:65 msgid "Email Confirmation" msgstr "Підтвердження Електронною поштою" #: profile-builder-2.0/admin/basic-info.php:66 msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address." msgstr "Впевніться, що користувачі використовують справжні адреси електронних скриньок. Після реєстрації користувачі отримують сповіщення для підтвердження адреси електронної пошти." #: profile-builder-2.0/admin/basic-info.php:69 msgid "Minimum Password Length and Strength Meter" msgstr "Мінімальна Довжина Паролю і Вимірювач Складності" #: profile-builder-2.0/admin/basic-info.php:70 msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength." msgstr "Ліквідуйте можливість використання слабких паролів, налаштувавши мінімальну довжину і складність паролю." #: profile-builder-2.0/admin/basic-info.php:73 msgid "Login with Email or Username" msgstr "Вхід за адресою електронної пошти або іменем користувача" #: profile-builder-2.0/admin/basic-info.php:74 msgid "Allow users to log in with their email or username when accessing your site." msgstr "Дозволити вхід на сайт використовуючи адресу електронної пошти або ім'я користувача." #: profile-builder-2.0/admin/basic-info.php:87 msgid "Customize Your Forms The Way You Want (*)" msgstr "Налаштуйте Ваші форми шляхом найзручнішим для Вас (*)" #: profile-builder-2.0/admin/basic-info.php:88 msgid "With Extra Profile Fields you can create the exact registration form your project needs." msgstr "З Додатковими Полями Профілю ви зможете створити реєстраційну форму у точній відповідності з потребами Вашого проекту." #: profile-builder-2.0/admin/basic-info.php:90 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "Додаткові Поля Профілю доступні у Hobbyist або PRO версіях" #: profile-builder-2.0/admin/basic-info.php:92 msgid "Get started with extra fields" msgstr "Почніть роботу з додатковими полями" #: profile-builder-2.0/admin/basic-info.php:95 msgid "Avatar Upload" msgstr "Завантаження Аватару" #: profile-builder-2.0/admin/basic-info.php:96 msgid "Generic Uploads" msgstr "Загальні Завантаження" #: profile-builder-2.0/admin/basic-info.php:97 msgid "Agree To Terms Checkbox" msgstr "Чекбокс Погодження з Умовами" #: profile-builder-2.0/admin/basic-info.php:98 msgid "Datepicker" msgstr "Вибір дати" #: profile-builder-2.0/admin/basic-info.php:101 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: profile-builder-2.0/admin/basic-info.php:102 msgid "Country Select" msgstr "Вибір часового поясу" #: profile-builder-2.0/admin/basic-info.php:104 msgid "Timezone Select" msgstr "Вибір часового поясу" #: profile-builder-2.0/admin/basic-info.php:108 msgid "Input / Hidden Input" msgstr "Ввід / Прихований Ввід" #: profile-builder-2.0/admin/basic-info.php:110 msgid "Checkbox" msgstr "Чекбокс" #: profile-builder-2.0/admin/basic-info.php:111 msgid "Select" msgstr "Вибрати" #: profile-builder-2.0/admin/basic-info.php:112 msgid "Radio Buttons" msgstr "Перемикачі" #: profile-builder-2.0/admin/basic-info.php:113 msgid "Textarea" msgstr "Текстове поле" #: profile-builder-2.0/admin/basic-info.php:125 msgid "Powerful Modules (**)" msgstr "Потужні Модулі (**)" #: profile-builder-2.0/admin/basic-info.php:126 msgid "Everything you will need to manage your users is probably already available using the Pro Modules." msgstr "Усе, що Вам необхідно для управління Вашими користувачами уже можливо доступно у модулях Pro." #: profile-builder-2.0/admin/basic-info.php:128 msgid "Enable your modules" msgstr "Увімкнути Модулі" #: profile-builder-2.0/admin/basic-info.php:131 msgid "Find out more about PRO Modules" msgstr "Дізнатись більше про модулі PRO" #: profile-builder-2.0/admin/basic-info.php:136 #: profile-builder-2.0/modules/modules.php:89 #: profile-builder-2.0/modules/user-listing/userlisting.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:12 #: profile-builder-2.0/modules/user-listing/userlisting.php:17 #: profile-builder-2.0/modules/user-listing/userlisting.php:23 msgid "User Listing" msgstr "Список Користувачів" #: profile-builder-2.0/admin/basic-info.php:138 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." msgstr "Легко редактувати шаблони для відображення користувачів у формі списку на Вашому сайті, а також створювати окремі сторінки користувачів. Заснований на використанні шорткодів, включаючи багато можливостей для налаштування Ваших списків." #: profile-builder-2.0/admin/basic-info.php:144 msgid "Email Customizer" msgstr "Інструмент налаштування електронної пошти" #: profile-builder-2.0/admin/basic-info.php:145 msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval." msgstr "ерсоналізуйте усі електронні листи, що відправляються Вашим користувачам чи адміністраторам. При реєстрації, підтвердженні електронної пошти, підтвердженні або відхиленні адміністратором." #: profile-builder-2.0/admin/basic-info.php:148 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33 #: profile-builder-2.0/modules/modules.php:110 msgid "Custom Redirects" msgstr "Налаштовані Переспрямування" #: profile-builder-2.0/admin/basic-info.php:149 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." msgstr "Забороніть користувачам переглядати панель управління WordPress, перенаправивши їх на задану сторінку після входу або реєстрації, лише у декілька кліків." #: profile-builder-2.0/admin/basic-info.php:154 #: profile-builder-2.0/modules/modules.php:75 msgid "Multiple Registration Forms" msgstr "Множинні Реєстраційні Форми" #: profile-builder-2.0/admin/basic-info.php:155 msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users." msgstr "Налаштуйте декілька реєстраційних форм з різними полями для певних ролей користувачів. Отримуйте різноманітну інформацію від різних типів користувачів." #: profile-builder-2.0/admin/basic-info.php:158 #: profile-builder-2.0/modules/modules.php:82 msgid "Multiple Edit-profile Forms" msgstr "Форми Редагування Декількох Профілів" #: profile-builder-2.0/admin/basic-info.php:159 msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles." msgstr "Дозвольте різним ролям користувачам редактувати свою власну інформацію. Налаштуйте декілька форм редагування профілу з різноманітними полями для різних конкретних ролей користувачів." #: profile-builder-2.0/admin/basic-info.php:187 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr "* доступно лише у %1$sHobbyist і Pro версіях%2$s." #: profile-builder-2.0/admin/basic-info.php:188 msgid "** only available in the %1$sPro version%2$s." msgstr "** доступно лише у %1$sPro версії%2$s." #: profile-builder-2.0/admin/general-settings.php:39 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "Завантажте власний CSS файл з користувацької частини сайту Profile Builder:" #: profile-builder-2.0/admin/general-settings.php:42 #: profile-builder-2.0/admin/general-settings.php:55 #: profile-builder-2.0/admin/general-settings.php:104 #: profile-builder-2.0/admin/general-settings.php:151 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Yes" msgstr "Так" #: profile-builder-2.0/admin/general-settings.php:44 msgid "You can find the default file here: %1$s" msgstr "Ви зможете знайти файл за замовчуванням тут: %1$s" #: profile-builder-2.0/admin/general-settings.php:51 msgid "\"Email Confirmation\" Activated:" msgstr "Підтвердення Електронної пошти Активовано:" #: profile-builder-2.0/admin/general-settings.php:56 #: profile-builder-2.0/admin/general-settings.php:105 #: profile-builder-2.0/admin/general-settings.php:150 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "No" msgstr "Ні" #: profile-builder-2.0/admin/general-settings.php:61 msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s." msgstr "Ви можете знайти список непідтверджених електронних адрес у %1$sКористувачі > Усі користувачі > Підтвердження Електронної пошти%2$s." #: profile-builder-2.0/admin/general-settings.php:69 msgid "\"Email Confirmation\" Landing Page:" msgstr "\"Підтвердження електронної пошти\" Цільова Сторінка:" #: profile-builder-2.0/admin/general-settings.php:74 msgid "Existing Pages" msgstr "Існуючі Сторінки" #: profile-builder-2.0/admin/general-settings.php:89 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." msgstr "Вкажіть сторінку, куди користувачі будуть переспрямовані при підтвердженні облікового запису електронної пошти. Ця сторінка може відрізнятися від сторінки (-ок) реєстрації і може бути зміненою у будь-який час. Якщо нічого не обрано, буде відображатися сторінка підтвердження за замовчуванням." #: profile-builder-2.0/admin/general-settings.php:100 msgid "\"Admin Approval\" Activated:" msgstr "\"Підтвердження Адміністратором\" активовано:" #: profile-builder-2.0/admin/general-settings.php:108 msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "Ви можете знайти список користувачів у %1$sКористувачі > Усі користувачі > Підтвердження Адміністратором%2$s." #: profile-builder-2.0/admin/general-settings.php:165 msgid "\"Admin Approval\" Feature:" msgstr "Функція \"Підтвердження адміністратором\":" #: profile-builder-2.0/admin/general-settings.php:168 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." msgstr "Ви вирішуєте кого допустити на свій сайт. Отримувати сповіщення електронною поштою або підтверджувати декілька користувачів одночасно за допомогою інтерфейсу WordPress. Увімкнути підтвердження адміністратором через оновлення до %1$s Hobbyist або PRO версії %2$s." #: profile-builder-2.0/admin/general-settings.php:175 msgid "Allow Users to Log in With:" msgstr "Дозволити користувачам заходити в систему з:" #: profile-builder-2.0/admin/general-settings.php:180 #: profile-builder-2.0/admin/manage-fields.php:201 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167 #: profile-builder-2.0/front-end/login.php:85 #: profile-builder-2.0/front-end/login.php:99 #: profile-builder-2.0/front-end/login.php:218 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28 #: profile-builder-2.0/modules/user-listing/userlisting.php:102 #: profile-builder-2.0/modules/user-listing/userlisting.php:277 #: profile-builder-2.0/modules/user-listing/userlisting.php:730 #: profile-builder-2.0/modules/user-listing/userlisting.php:2219 msgid "Username" msgstr "Ім'я користувача" #: profile-builder-2.0/admin/general-settings.php:181 #: profile-builder-2.0/front-end/login.php:215 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29 #: profile-builder-2.0/modules/user-listing/userlisting.php:736 #: profile-builder-2.0/modules/user-listing/userlisting.php:2220 msgid "Email" msgstr "Електронна пошта" #: profile-builder-2.0/admin/general-settings.php:193 msgid "Minimum Password Length:" msgstr "Мінімальна Довжина Паролю:" #: profile-builder-2.0/admin/general-settings.php:198 msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit" msgstr "Введіть мінімальну кількість знаків, з якої повинен складатись пароль. Залиште пустим, щоб не встановлювати мінімальне значення." #: profile-builder-2.0/admin/general-settings.php:205 msgid "Minimum Password Strength:" msgstr "Мінімальна Сила Паролю:" #: profile-builder-2.0/admin/general-settings.php:209 msgid "Disabled" msgstr "Вимкнено" #: profile-builder-2.0/admin/manage-fields.php:12 msgid "Manage Fields" msgstr "Керувати Полями" #: profile-builder-2.0/admin/manage-fields.php:13 msgid "Manage Default and Extra Fields" msgstr "Керувати Стандартними та Додатковими Полями" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Field Title" msgstr "Назва Поля" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Title of the field" msgstr "Назва поля" #: profile-builder-2.0/admin/manage-fields.php:119 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "Поле" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Meta-name" msgstr "Мета-ім'я" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "ID" msgstr "ID" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be edited" msgstr "Унікальний, автоматично згенерований ID для цього конкретного поля
            Ви можете використовувати його у поєднанні з фільтрами, як цільовий елемент, якщо це необхідно
            Не може бути редагованим" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Description" msgstr "Опис" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Enter a (detailed) description of the option for end users to read
            Optional" msgstr "Введіть (детальний) опис опції для ознайомлення користувачем
            Вибірково" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Row Count" msgstr "Кількість Рядків" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5" msgstr "Вкажіть кількість рядків елементу 'Текстова область'
            Якщо не вказано, за замовчуванням 5" #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Allowed Image Extensions" msgstr "Допустимі розширення файлів зображень" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Allowed Upload Extensions" msgstr "Допустимі розширення файлів для завантаження" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Avatar Size" msgstr "Розмір Аватару" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100" msgstr "Вкажіть значення (між 20 і 200) для розміру 'Аватару'
            Якщо не вказано, за замовчуванням 100" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Date-format" msgstr "Формат Дати" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Terms of Agreement" msgstr "Умови Договору" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Enter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>" msgstr "Введіть детальний опис умов договору для користувачів.
            Посилання можуть бути вставленими за допомогою стандартного синтаксиса HTML: <a href=\\\"custom_url\\\">custom_text</a>" #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Options" msgstr "Опції" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Labels" msgstr "Мітки" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "Введіть розділений комами список міток
            Ввидимий для користувачів" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default Value" msgstr "Значення за замовчуванням" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default value of the field" msgstr "Значення за замовчуванням для поля" #: profile-builder-2.0/admin/manage-fields.php:138 #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default Option" msgstr "Опція за замовчуванням" #: profile-builder-2.0/admin/manage-fields.php:138 msgid "Specify the option which should be selected by default" msgstr "Вкажіть опцію, яка повиннна бути обраною за замовчуванням" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Default Option(s)" msgstr "Опція(-ї) за замовчуванням" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)" msgstr "Вкажіть опцію, яка повинна бути вибраною за замовчуванням
            Якщо є декілька значень, розділіть їх за допомогою ',' (коми)" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default Content" msgstr "Вміст за замовчуванням" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default value of the textarea" msgstr "Значення текстового поля за замовчуванням" #: pb-add-on-woocommerce/index.php:306 #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Required" msgstr "Обов'язково" #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Whether the field is required or not" msgstr "Обов'язкове поле чи ні" #: profile-builder-2.0/admin/manage-fields.php:161 msgid "Overwrite Existing" msgstr "Перезаписати Існуюче" #: profile-builder-2.0/admin/manage-fields.php:161 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
            Use this at your own risk" msgstr "Вибір 'Так' додасть поле до списку, але перезапише будь-яке інше поле у базі даних з ідентичним мета-іменем
            Використовуйте це на свій страх та ризик" #: profile-builder-2.0/admin/manage-fields.php:167 msgid "Field Properties" msgstr "Параметри Поля" #: profile-builder-2.0/admin/manage-fields.php:181 msgid "Registration & Edit Profile" msgstr "Реєстрація та Редагування Профілю" #: profile-builder-2.0/admin/manage-fields.php:200 msgid "Name" msgstr "Ім'я" #: profile-builder-2.0/admin/manage-fields.php:201 msgid "Usernames cannot be changed." msgstr "Імена користувачів не можуть бути зміненими." #: pb-add-on-woocommerce/billing-fields.php:6 #: pb-add-on-woocommerce/shipping-fields.php:6 #: profile-builder-2.0/admin/manage-fields.php:202 msgid "First Name" msgstr "Ім'я" #: pb-add-on-woocommerce/billing-fields.php:7 #: pb-add-on-woocommerce/shipping-fields.php:7 #: profile-builder-2.0/admin/manage-fields.php:203 msgid "Last Name" msgstr "Прізвище" #: profile-builder-2.0/admin/manage-fields.php:204 #: profile-builder-2.0/modules/user-listing/userlisting.php:769 #: profile-builder-2.0/modules/user-listing/userlisting.php:2227 msgid "Nickname" msgstr "Прізвисько" #: profile-builder-2.0/admin/manage-fields.php:205 msgid "Display name publicly as" msgstr "Відобразити ім'я публічно як" #: profile-builder-2.0/admin/manage-fields.php:206 msgid "Contact Info" msgstr "Контактна Інформація" #: profile-builder-2.0/admin/manage-fields.php:207 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168 #: profile-builder-2.0/front-end/recover.php:118 #: profile-builder-2.0/modules/user-listing/userlisting.php:108 msgid "E-mail" msgstr "Електронна Пошта" #: profile-builder-2.0/admin/manage-fields.php:208 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32 #: profile-builder-2.0/modules/user-listing/userlisting.php:111 #: profile-builder-2.0/modules/user-listing/userlisting.php:751 #: profile-builder-2.0/modules/user-listing/userlisting.php:2221 msgid "Website" msgstr "Вебсайт" #: profile-builder-2.0/admin/manage-fields.php:212 msgid "AIM" msgstr "AIM" #: profile-builder-2.0/admin/manage-fields.php:213 msgid "Yahoo IM" msgstr "Yahoo IM" #: profile-builder-2.0/admin/manage-fields.php:214 msgid "Jabber / Google Talk" msgstr "Jabber / Google Talk" #: profile-builder-2.0/admin/manage-fields.php:217 msgid "About Yourself" msgstr "Про Вас" #: profile-builder-2.0/admin/manage-fields.php:218 #: profile-builder-2.0/modules/user-listing/userlisting.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:754 #: profile-builder-2.0/modules/user-listing/userlisting.php:2222 msgid "Biographical Info" msgstr "Біографічні Дані" #: profile-builder-2.0/admin/manage-fields.php:218 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "Розкажіть про себе, щоб заповнити профіль. Цю інформацію можуть бачити інші." #: profile-builder-2.0/admin/manage-fields.php:219 #: profile-builder-2.0/front-end/recover.php:73 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "Пароль" #: profile-builder-2.0/admin/manage-fields.php:219 msgid "Type your password." msgstr "Введіть Ваш пароль" #: profile-builder-2.0/admin/manage-fields.php:220 #: profile-builder-2.0/front-end/recover.php:74 msgid "Repeat Password" msgstr "Повторіть Пароль" #: profile-builder-2.0/admin/manage-fields.php:220 msgid "Type your password again. " msgstr "Введіть пароль знову" #: profile-builder-2.0/admin/manage-fields.php:980 #: profile-builder-2.0/admin/manage-fields.php:1137 msgid "You must select a field\n" msgstr "Ви повинні обрати поле\n" #: profile-builder-2.0/admin/manage-fields.php:990 msgid "Please choose a different field type as this one already exists in your form (must be unique)\n" msgstr "Будь-ласка оберіть інший тип поля, так як цей уже існує у Вашій формі (повинен бути унікальним)\n" #: profile-builder-2.0/admin/manage-fields.php:1001 msgid "The entered avatar size is not between 20 and 200\n" msgstr "Введений розмір аватару менше 20 або більше 200\n" #: profile-builder-2.0/admin/manage-fields.php:1004 msgid "The entered avatar size is not numerical\n" msgstr "Значення розміру аватару повинне бути числом\n" #: profile-builder-2.0/admin/manage-fields.php:1012 msgid "The entered row number is not numerical\n" msgstr "Введений номер ряду не є числом\n" #: profile-builder-2.0/admin/manage-fields.php:1015 msgid "You must enter a value for the row number\n" msgstr "" "Ви повинні задати значення числа рядків\n" "\n" #: profile-builder-2.0/admin/manage-fields.php:1036 msgid "The entered value for the Datepicker is not a valid date-format\n" msgstr "" "Введене значення у Виборі Дати має некоректний формат\n" "\n" #: profile-builder-2.0/admin/manage-fields.php:1039 msgid "You must enter a value for the date-format\n" msgstr "" "Вам необхідно ввести значення формата дати\n" "\n" #: profile-builder-2.0/admin/manage-fields.php:1067 #: profile-builder-2.0/admin/manage-fields.php:1075 #: profile-builder-2.0/admin/manage-fields.php:1086 msgid "That meta-name is already in use\n" msgstr "" "Таке мета-ім'я уже використовується\n" "\n" #: profile-builder-2.0/admin/manage-fields.php:1117 msgid "The following option(s) did not coincide with the ones in the options list: %s\n" msgstr "" "Наступна опція(-ї) не співпадає із жодною опцією зі списку: %s\n" "\n" #: profile-builder-2.0/admin/manage-fields.php:1121 msgid "The following option did not coincide with the ones in the options list: %s\n" msgstr "Наступна опція не співпадає з опціями зі списку: %s\n" #: profile-builder-2.0/admin/manage-fields.php:1144 msgid "That field is already added in this form\n" msgstr "Таке поле вже було додано в цю форму\n" #: profile-builder-2.0/admin/manage-fields.php:1193 msgid "
            Title
            Type
            Meta Name
            Required
            " msgstr "
            Назва
            Тип
            Мета ім'я
            Обов'язково
            " #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108 #: profile-builder-2.0/features/functions.php:718 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Edit" msgstr "Редагувати" #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217 #: profile-builder-2.0/features/functions.php:711 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "Delete" msgstr "Видалити" #: profile-builder-2.0/admin/manage-fields.php:1208 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "Використайте ці шорткоди на сторінках, на яких повинні відображатись форми:" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Your Version" msgstr "Зареєструйте Свою Версію" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Version" msgstr "Зареєструвати Версію" #: profile-builder-2.0/admin/register-version.php:70 msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support." msgstr "Якщо ви зареєструєте цю версію Profile Builder, вы будете отримувати інформацію, що стосується оновлень, правок і технічної підтримки." #: profile-builder-2.0/admin/register-version.php:72 msgid " Serial Number:" msgstr "Серійний Номер:" #: profile-builder-2.0/admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "Серійний номер був успішно перевірений!" #: profile-builder-2.0/admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "Введений серійний номер не вдалося перевірити!" #: profile-builder-2.0/admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "Серійний номер неможливо підтвердити, так як строк його використання вичерпаний!" #: profile-builder-2.0/admin/register-version.php:85 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!" msgstr "Серійний номер неможливо підтвердити, так як час перевірки вичерпано. Це можливо із-за проблем на сервері. Будь-ласка, повторіть спробу пізніше!" #: profile-builder-2.0/admin/register-version.php:87 msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "(Наприклад RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/features/functions.php:725 msgid "Content" msgstr "Вміст" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 msgid "Edit this item" msgstr "Редагувати цей елемент" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 msgid "Delete this item" msgstr "Видалити цей елемент" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705 msgid "Please enter a value for the required field " msgstr "Будь-ласка, введіть значення для обов'язкового поля" #: pb-add-on-woocommerce/woo-checkout-field-support.php:262 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122 msgid "Select File" msgstr "Оберіть Файл" #: pb-add-on-woocommerce/woo-checkout-field-support.php:252 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112 msgid "Remove" msgstr "Прибрати" #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8 msgid "You can add the information for the %s after you add a entry" msgstr "Ви можете додати інформацію для %s після того як додасте запис" #: pb-add-on-woocommerce/woo-checkout-field-support.php:268 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128 msgid "Upload " msgstr "Завантажити" #: profile-builder-2.0/features/class-list-table.php:184 msgid "No items found." msgstr "Не знайдено жодних елементів." #: profile-builder-2.0/features/class-list-table.php:308 msgid "Bulk Actions" msgstr "Групові Дії" #: profile-builder-2.0/features/class-list-table.php:318 msgid "Apply" msgstr "Застосувати" #: profile-builder-2.0/features/class-list-table.php:402 msgid "Show all dates" msgstr "Відобразити усі дати" #: profile-builder-2.0/features/class-list-table.php:415 msgid "%1$s %2$d" msgstr "%1$s %2$d" #: profile-builder-2.0/features/class-list-table.php:431 msgid "List View" msgstr "Перегляд Списку" #: profile-builder-2.0/features/class-list-table.php:432 msgid "Excerpt View" msgstr "Перегляд Уривку" #: profile-builder-2.0/features/class-list-table.php:458 msgid "%s pending" msgstr "%s очікується" #: profile-builder-2.0/features/class-list-table.php:566 msgid "%1$s of %2$s" msgstr "%1$s з %2$s" #: profile-builder-2.0/features/class-list-table.php:713 msgid "Select All" msgstr "Обрати усе" #: profile-builder-2.0/features/functions.php:526 msgid "Strength indicator" msgstr "Індикатор Сили" #: profile-builder-2.0/features/admin-approval/admin-approval.php:14 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453 msgid "Admin Approval" msgstr "Підтвердження Адміністратором" #: profile-builder-2.0/features/admin-approval/admin-approval.php:28 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "Чи хочете ви" #: profile-builder-2.0/features/admin-approval/admin-approval.php:51 msgid "Your session has expired! Please refresh the page and try again" msgstr "Час сесії вичерпано! Будь-ласка, оновіть сторінку і спробуйте ще раз" #: profile-builder-2.0/features/admin-approval/admin-approval.php:64 msgid "User successfully approved!" msgstr "Користувач успішно підтверджений!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:74 msgid "User successfully unapproved!" msgstr "Користувачу успішно відмовлено у підтвердженні!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:80 msgid "User successfully deleted!" msgstr "Користувач успішно видалений!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:85 #: profile-builder-2.0/features/admin-approval/admin-approval.php:131 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "У вас або недостатньо прав на цю дію, або сталася помилка!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:96 msgid "Your session has expired! Please refresh the page and try again." msgstr "Час сеансу вичерпано! Будь-ласка, обновіть сторінку і спробуйте ще раз." #: profile-builder-2.0/features/admin-approval/admin-approval.php:109 msgid "Users successfully approved!" msgstr "Користувачі успішно підтверджені!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:119 msgid "Users successfully unapproved!" msgstr "Користувачам успішно відмовлено у підтвердженні!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:127 msgid "Users successfully deleted!" msgstr "Користувачі успішно видалені!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:147 msgid "Your account on %1$s has been approved!" msgstr "Ваш обліковий запис %1$s був підтверджений!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:148 #: profile-builder-2.0/features/admin-approval/admin-approval.php:151 msgid "approved" msgstr "підтверджено" #: profile-builder-2.0/features/admin-approval/admin-approval.php:150 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "Адміністратор підтвердив Ваш обліковий запис %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:155 msgid "Your account on %1$s has been unapproved!" msgstr "Вашому обліковому запису %1$s було відмовлено у підтвердженні!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:156 #: profile-builder-2.0/features/admin-approval/admin-approval.php:159 msgid "unapproved" msgstr "відмовлено" #: profile-builder-2.0/features/admin-approval/admin-approval.php:158 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "Адміністратор не підтвердив Ваш обліковий запис %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:177 msgid "ERROR: Your account has to be confirmed by an administrator before you can log in." msgstr "ПОМИЛКА: Ваш обліковий запис повинен бути підверджений адміністратором, перед тим як ви зможете увійти." #: profile-builder-2.0/features/admin-approval/admin-approval.php:189 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature." msgstr "Ваш обліковий запис повинен бути підверджений адміністратором, перед тим як ви зможете скористуватися функцією \"Відновлення Паролю\"." #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "видалити цього користувача?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "відмовити цьому користувачу?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr "Відхилити" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "підтвердити цього користувача?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "Підтвердити" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167 #: profile-builder-2.0/modules/user-listing/userlisting.php:278 #: profile-builder-2.0/modules/user-listing/userlisting.php:742 #: profile-builder-2.0/modules/user-listing/userlisting.php:2224 msgid "Firstname" msgstr "Ім'я" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168 #: profile-builder-2.0/modules/user-listing/userlisting.php:745 #: profile-builder-2.0/modules/user-listing/userlisting.php:2225 msgid "Lastname" msgstr "Прізвище" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170 #: profile-builder-2.0/modules/user-listing/userlisting.php:149 #: profile-builder-2.0/modules/user-listing/userlisting.php:279 #: profile-builder-2.0/modules/user-listing/userlisting.php:772 #: profile-builder-2.0/modules/user-listing/userlisting.php:2229 msgid "Role" msgstr "Роль" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169 msgid "Registered" msgstr "Зареєстрований" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "Статус Користувача" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "Підтвердити усіх обраних користувачів?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "Відмовити у підтвердженні усім обраним користувачам?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "Видалити усіх обраних користувачів" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278 msgid "Sorry, but you don't have permission to do that!" msgstr "Вибачте, у Вас немає достатньо прав на виконання цієї дії!" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339 msgid "Approved" msgstr "Підтверджено" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341 msgid "Unapproved" msgstr "Відхилено" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454 msgid "All Users" msgstr "Усі Користувачі" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 msgid "delete this user from the _signups table?" msgstr "видалити цього користувача з _signups table?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 msgid "confirm this email yourself?" msgstr "підтвердити цю адресу електронної пошти самостійно?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218 msgid "Confirm Email" msgstr "Підтвердити електронну адресу" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 msgid "resend the activation link?" msgstr "повторно надіслати посилання активації?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219 msgid "Resend Activation Email" msgstr "Повторно надіслати Лист Активації?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249 msgid "%s couldn't be deleted" msgstr "%s не може бути видалено" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253 msgid "All users have been successfully deleted" msgstr "Усі користувачі успішно видалені" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263 msgid "The selected users have been activated" msgstr "Обрані користувачі активовані" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274 msgid "The selected users have had their activation emails resent" msgstr "Обраним користувачам повторно надіслано листи активації" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "Користувачі з непідтвердженими адресами електронної пошти" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "Під час виконанні цієї дії сталася помилка!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "Обраний користувач не може бути видалений" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "Користувачу було надіслано повторне сповіщення" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398 msgid "[%1$s] Activate %2$s" msgstr "[%1$s] Активувати %2$s\n" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442 #: profile-builder-2.0/front-end/register.php:71 msgid "Could not create user!" msgstr "Не вдалося створити користувача!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445 msgid "That username is already activated!" msgstr "Ім'я такого користувача уже було активовано!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468 msgid "There was an error while trying to activate the user" msgstr "При спробі активувати користувача сталась помилка" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73 msgid "A new subscriber has (been) registered!" msgstr "Новий підписник (був) зареєстрований!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "Новий підписник %1$s.

            Ім'я користувача:%2$s
            Електронна пошта:%3$s
            " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634 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!" msgstr "Функція \"Підтвердження адміністратором\" була активована під час реєстрації, тому будь-ласка, зверніть увагу на те що ви повинні підтвердити цього користувача, перш ніж він/вона зможе увійти!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570 msgid "[%1$s] Your new account information" msgstr "[%1$s] Інформація про Ваш новий обліковий запис\"" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581 msgid "Welcome to %1$s!


            Your username is:%2$s and password:%3$s" msgstr "Ласкаво просимо %1$s!


            Ваше ім'я користувача:%2$s і пароль:%3$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642 #: profile-builder-2.0/front-end/register.php:125 msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email." msgstr "Перш ніж ви зможете увійти у свій обліковий запис, адміністратор повинен його підтвердити. Ви отримаєте сповіщення електронною поштою." #: profile-builder-2.0/features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "Цей віджет авторизації дозволить Вам додати форму входу у бічну панель." #: profile-builder-2.0/features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "Віджет Авторизації Profile Builder" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36 #: profile-builder-2.0/front-end/class-formbuilder.php:415 #: profile-builder-2.0/front-end/login.php:250 msgid "Register" msgstr "Зареєструватись" #: profile-builder-2.0/features/login-widget/login-widget.php:63 msgid "Title:" msgstr "Назва:" #: profile-builder-2.0/features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "URL переспрямування після входу (вибірково):" #: profile-builder-2.0/features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "Адреса сторінки реєстрації (вибірково):" #: profile-builder-2.0/features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "URL сторінки відновлення паролю (вибірково):" #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91 #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "Ім'я користувача не може бути змінене." #: profile-builder-2.0/front-end/class-formbuilder.php:136 msgid "Only an administrator can add new users." msgstr "Тільки адміністратор може додавати нових користувачів." #: profile-builder-2.0/front-end/class-formbuilder.php:146 msgid "Users can register themselves or you can manually create users here." msgstr "Користувачі можуть реєструватись самостійно або Ви можете створити користувачів вручну тут." #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "Users cannot currently register themselves, but you can manually create users here." msgstr "Користувачі не можуть реєструватись самостійно, але Ви можете створити користувачів вручну тут." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "На даний момент Ви увійшли як %1s. Вам не потрібен інший обліковий запис. %2s" #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Log out of this account." msgstr "Вийти з облікового запису." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Logout" msgstr "Вийти" #: profile-builder-2.0/front-end/class-formbuilder.php:175 msgid "You must be logged in to edit your profile." msgstr "Ви повинні увійти, щоб відредагувати Ваш профіль." #: profile-builder-2.0/features/functions.php:994 msgid "here" msgstr "тут" #: profile-builder-2.0/features/functions.php:995 msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s" msgstr "Згодом Вас буде перенаправлено автоматично. Якщо Ви бачите цю сторінку більше ніж %1$d секунд, будь-ласка натисніть %2$s.%3$s" #: profile-builder-2.0/front-end/class-formbuilder.php:315 #: profile-builder-2.0/front-end/class-formbuilder.php:322 msgid "The account %1s has been successfully created!" msgstr "Обліковий запис %1s успішно створено!" #: profile-builder-2.0/front-end/class-formbuilder.php:318 #: profile-builder-2.0/front-end/class-formbuilder.php:328 msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link." msgstr "Перш ніж Ви зможете отримати доступ до Вашого облікового запису %1s, необхідно підтвердити свою адресу електронної пошти. Будь-ласка, перевірте свою поштову скриньку і натисніть на посилання активації." #: profile-builder-2.0/front-end/class-formbuilder.php:324 msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email." msgstr "ерш ніж Ви зможете отримати доступ до Вашого облікового запису %1s, адміністратор повинен підтвердити його. Ви будете сповіщені електронною поштою." #: profile-builder-2.0/front-end/class-formbuilder.php:347 msgid "Your profile has been successfully updated!" msgstr "Ваш профіль успішно оновлено!" #: profile-builder-2.0/front-end/class-formbuilder.php:358 msgid "There was an error in the submitted form" msgstr "Під час валідації форми сталась помилка" #: profile-builder-2.0/front-end/class-formbuilder.php:415 msgid "Add User" msgstr "Додати Користувача" #: profile-builder-2.0/admin/add-ons.php:170 #: profile-builder-2.0/front-end/class-formbuilder.php:418 msgid "Update" msgstr "Оновити" #: profile-builder-2.0/front-end/class-formbuilder.php:481 msgid "Send these credentials via email." msgstr "Надіслати облікові дані електронною поштою." #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92 #: profile-builder-2.0/front-end/login.php:137 #: profile-builder-2.0/front-end/login.php:144 #: profile-builder-2.0/front-end/login.php:158 #: profile-builder-2.0/front-end/recover.php:17 #: profile-builder-2.0/front-end/recover.php:245 msgid "ERROR" msgstr "ПОМИЛКА" #: profile-builder-2.0/front-end/login.php:137 msgid "The password you entered is incorrect." msgstr "Введений Вами пароль - помилковий." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Password Lost and Found." msgstr "Пароль втрачено і відновлено." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Lost your password" msgstr "Втратили пароль" #: profile-builder-2.0/front-end/login.php:158 msgid "Both fields are empty." msgstr "Обидва поля пусті." #: profile-builder-2.0/front-end/login.php:296 msgid "You are currently logged in as %1$s. %2$s" msgstr "На даний момент Ви увійшли як %1$s. %2$s" #: profile-builder-2.0/front-end/login.php:295 #: profile-builder-2.0/front-end/logout.php:25 msgid "Log out of this account" msgstr "Вийти з цього акаунту." #: profile-builder-2.0/front-end/login.php:295 msgid "Log out" msgstr "Вийти" #: profile-builder-2.0/front-end/recover.php:17 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature." msgstr "Ваш обліковий запис повинен бути підтверджений адміністратором перш ніж Ви зможете скористатись функцією \"Відновлення паролю\"." #: profile-builder-2.0/front-end/recover.php:94 msgid "Reset Password" msgstr "Скинути Пароль" #: profile-builder-2.0/front-end/recover.php:121 msgid "Please enter your username or email address." msgstr "Будь-ласка введіть Ваше ім'я користувача або електронну адресу." #: profile-builder-2.0/front-end/recover.php:125 msgid "You will receive a link to create a new password via email." msgstr "Ви отримаєте посилання для створення нового паролю електронною поштою." #: profile-builder-2.0/front-end/recover.php:122 msgid "Username or E-mail" msgstr "Ім'я Користувача або Електронна Адреса" #: profile-builder-2.0/front-end/recover.php:138 msgid "Get New Password" msgstr "Отримати Новий Пароль" #: profile-builder-2.0/front-end/recover.php:185 msgid "The username entered wasn't found in the database!" msgstr "Введене ім'я користувача не було знайдено у базі даних!" #: profile-builder-2.0/front-end/recover.php:185 msgid "Please check that you entered the correct username." msgstr "Будь-ласка перевірте правильність введення імені користувача." #: profile-builder-2.0/front-end/recover.php:200 msgid "Check your e-mail for the confirmation link." msgstr "Лист із підтверджуючим посиланням був надісланий на електронну пошту." #: profile-builder-2.0/front-end/recover.php:235 msgid "Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s" msgstr "Хтось створив запит скидання паролю для наступного облікового запису: %1$s
            Якщо запит сворено не Вами - просто ігноруйте це повідомлення.
            Для скидання паролю перейдіть за цим посиланням:%2$s" #: profile-builder-2.0/front-end/recover.php:238 msgid "Password Reset from \"%1$s\"" msgstr "Пароль Скинуто від \"%1$s\"" #: profile-builder-2.0/front-end/recover.php:245 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "Сталась помилка при спробі відправити посилання активації для %1$s!" #: profile-builder-2.0/front-end/recover.php:207 msgid "The email address entered wasn't found in the database!" msgstr "Введену Вами адресу електронної пошти не було знайдено у базі даних!" #: profile-builder-2.0/front-end/recover.php:207 msgid "Please check that you entered the correct email address." msgstr "Будь-ласка, перевірте правильність введення електронної адреси." #: profile-builder-2.0/front-end/recover.php:273 msgid "Your password has been successfully changed!" msgstr "Ваш пароль було успішно змінено!" #: profile-builder-2.0/front-end/recover.php:292 msgid "You have successfully reset your password to: %1$s" msgstr "Ви успішно відновили свій пароль для: %1$s" #: profile-builder-2.0/front-end/recover.php:295 #: profile-builder-2.0/front-end/recover.php:306 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "Пароль було успішно встановлено для %1$s на \"%2$s\"" #: profile-builder-2.0/front-end/recover.php:303 msgid "%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s" msgstr "%1$s створив запит зміни паролю шляхом скидання паролю.
            Його/її новий пароль: %2$s" #: profile-builder-2.0/front-end/recover.php:320 msgid "The entered passwords don't match!" msgstr "Введені Вами паролі не збігаються!" #: profile-builder-2.0/front-end/recover.php:375 msgid "ERROR:" msgstr "ПОМИЛКА:" #: profile-builder-2.0/front-end/recover.php:375 msgid "Invalid key!" msgstr "Невірний ключ!" #: profile-builder-2.0/front-end/register.php:56 msgid "Invalid activation key!" msgstr "Невірний ключ активації!" #: profile-builder-2.0/front-end/register.php:60 msgid "This username is now active!" msgstr "Це ім'я користувача тепер активне!" #: profile-builder-2.0/front-end/register.php:74 msgid "This username is already activated!" msgstr "Це ім'я користувача уже активовано!" #: profile-builder-2.0/front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "Ваша адреса електронної пошти була успішно підтверджена." #: profile-builder-2.0/front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "При спробі активувати користувача сталась помилка" #: pb-add-on-woocommerce/index.php:393 #: profile-builder-2.0/front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "Введена Вами адреса електронної пошти не існує." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "Ця адреса електронної пошти уже зарезервована для використання у найближчий час." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 #: profile-builder-2.0/front-end/default-fields/username/username.php:49 #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "Будь-ласка, спробуйте інакшу!" #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "Ця адреса електронної пошти уже використовується." #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37 #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "Паролі не співпадають" #: profile-builder-2.0/front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "Таке ім'я користувача уже існує." #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "Таке ім'я користувача уже зарезервоване для використання у найближчий час." #: profile-builder-2.0/modules/user-listing/userlisting.php:276 msgid "Avatar" msgstr "Аватар" #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72 #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45 #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45 #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40 #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34 #: profile-builder-2.0/front-end/extra-fields/input/input.php:30 #: profile-builder-2.0/front-end/extra-fields/map/map.php:51 #: profile-builder-2.0/front-end/extra-fields/number/number.php:30 #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39 #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52 #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46 #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49 #: profile-builder-2.0/front-end/extra-fields/select/select.php:51 #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70 #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "обов'язково" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48 msgid "To use reCAPTCHA you must get an API key from" msgstr "Для використання reCAPTCHA Ви повинні отримати API ключ від" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "В цілях безпеки Ви повинні спрямувати віддалений ip на reCAPTCHA!" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "Для використання reCAPTCHA Ви повинні отримати публічний ключ API від:" #: profile-builder-2.0/modules/modules.php:11 #: profile-builder-2.0/modules/modules.php:58 msgid "Modules" msgstr "Модулі" #: profile-builder-2.0/modules/modules.php:59 msgid "Here you can activate / deactivate available modules for Profile Builder." msgstr "Тут Ви можете активувати / деативувати доступні модулі Profile Builder." #: profile-builder-2.0/modules/modules.php:69 msgid "Name/Description" msgstr "Ім'я/Опис" #: profile-builder-2.0/modules/modules.php:70 msgid "Status" msgstr "Статус" #: profile-builder-2.0/modules/modules.php:77 #: profile-builder-2.0/modules/modules.php:84 #: profile-builder-2.0/modules/modules.php:91 #: profile-builder-2.0/modules/modules.php:98 #: profile-builder-2.0/modules/modules.php:105 #: profile-builder-2.0/modules/modules.php:112 #: profile-builder-2.0/modules/modules.php:119 msgid "Active" msgstr "Активний" #: profile-builder-2.0/modules/modules.php:78 #: profile-builder-2.0/modules/modules.php:85 #: profile-builder-2.0/modules/modules.php:92 #: profile-builder-2.0/modules/modules.php:99 #: profile-builder-2.0/modules/modules.php:106 #: profile-builder-2.0/modules/modules.php:113 #: profile-builder-2.0/modules/modules.php:120 msgid "Inactive" msgstr "Неактивний" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:96 msgid "Admin Email Customizer" msgstr "Налаштування електронної пошти адміністратора" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:103 msgid "User Email Customizer" msgstr "Налаштування електронної пошти користувача" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253 msgid "Save" msgstr "Зберегти" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "Переспрямувати" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "URL" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save." msgstr "Ці налаштування також дублюються на сторінку налаштувань елементу \"Інструмент налаштування електронної пошти користувача\" після збереження." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41 msgid "From (name)" msgstr "Від (ім'я)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49 msgid "From (reply-to email)" msgstr "Від (відповісти електронним листом)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57 msgid "Common Settings" msgstr "Стандартні Налаштування" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" msgstr "" "\n" "

            Новий підписник від {{site_name}}.

            \n" "

            Ім'я користувача:{{username}}

            \n" "

            Електронна пошта:{{user_email}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274 msgid "Email Subject" msgstr "Заголовок Електронного Листа" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84 msgid "Default Registration & Registration with Email Confirmation" msgstr "Стандартна Реєстрація і Реєстрація з підведженням лектронної пошти" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log in!

            \n" msgstr "" "\n" "

            Новий підписник на {{site_name}}.

            \n" "

            Ім'я користувача:{{username}}

            \n" "

            Електронна пошта:{{user_email}}

            \n" "

            Функція Підтвердження Адміністратором була активована на момент реєстрації,\n" "тому будь-ласка, зверніть увагу на те що Ви повинні підтвердити цього користувача, перш ніж він/вона зможе увійти!

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143 msgid "Registration with Admin Approval" msgstr "Реєстрація за Згодою Адміністратора" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "Доступні Теги" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170 msgid "User Meta" msgstr "Meta Користувача" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "Url Сайту" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "Назва Сайту" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25 #: profile-builder-2.0/modules/user-listing/userlisting.php:158 msgid "User Id" msgstr "Id Користувача" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33 msgid "Reply To" msgstr "Відповісти" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40 msgid "Activation Key" msgstr "Ключ Активації" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41 msgid "Activation Url" msgstr "Url Активації" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42 msgid "Activation Link" msgstr "Посилання Активації" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" msgstr "" "\n" "

            Ласкаво просимо на {{site_name}}!

            \n" "

            Ваше ім'я користувача:{{username}} і пароль:{{password}}

            \n" "\n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85 msgid "Default Registration" msgstr "Стандартна Реєстрація" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91 msgid "" "\n" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials.

            \n" msgstr "" "\n" "

            Для активації Вашого користувача, будь-ласка натисніть на наступне посилання:
            \n" "\"{{{activation_link}}}

            \n" "

            Після активації, Ви отримаєте ще один лист з обліковими даними.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103 msgid "[{{site_name}}] Activate {{username}}" msgstr "[{{site_name}}] Активувати {{username}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114 msgid "Registration with Email Confirmation" msgstr "Реєстрація з підтвердженням електронної пошти" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n" msgstr "" "\n" "

            Ласкаво просимо на {{site_name}}!

            \n" "

            Ваше ім'я користувача:{{username}} і пароль:{{password}}

            \n" "

            Перш ніж Ви зможете увійти на свій акаунт, адміністратор повинен його підтвердити. Ви будете сповіщені електронною поштою.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132 msgid "A new account has been created for you on {{site_name}}" msgstr "Новий обліковий запис був сворений для Вас на {{site_name}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148 msgid "" "\n" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Вітаємо!

            \n" "

            Адміністратор тільки що затвердив Ваш обліковий запис: {{username}} на {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159 msgid "Your account on {{site_name}} has been approved!" msgstr "Ваш обліковий запис на {{site_name}} був підтверджений!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170 msgid "User Approval Notification" msgstr "Сповіщення Підтвердження Користувача" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175 msgid "" "\n" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Привіт,

            \n" "

            Нажаль адміністратор не підтвердив Ваш обліковий запис: {{username}} на {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187 msgid "Your account on {{site_name}} has been unapproved!" msgstr "Ваш обліковий запис на {{site_name}} не був підтверджений!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198 msgid "Unapproved User Notification" msgstr "Сповіщення Відмови Користувачеві" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "Форма Редагування Профілю" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13 #: profile-builder-2.0/modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "Додати Нове" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "Додати нову Форму Редагування Профілю" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "Редагувати Форми Редагування Профілю" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "Нова Форма Редагування Профілю" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "Форми Редагування Профілю" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "Перегляд Форми Редагування Профілю" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "Пошук Форм Редагування Профілю" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "Не знайдено Форм Редагування Профілю" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "Не знайдено Форми Редагування Профілю в корзині" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138 #: profile-builder-2.0/modules/user-listing/userlisting.php:2115 msgid "Shortcode" msgstr "Шорткод" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159 #: profile-builder-2.0/modules/user-listing/userlisting.php:2136 msgid "(no title)" msgstr "(без назви)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178 #: profile-builder-2.0/modules/user-listing/userlisting.php:2156 msgid "The shortcode will be available after you publish this form." msgstr "Шорткод буде доступний після публікації цієї форми." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180 #: profile-builder-2.0/modules/user-listing/userlisting.php:2158 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "Використовуйте цей шорткод на тих сторінках, де повинна відображатись форма:" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184 #: profile-builder-2.0/modules/user-listing/userlisting.php:2162 msgid "Note: changing the form title also changes the shortcode!" msgstr "Примітка: зміна назви форми також змінює шорткод!" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190 #: profile-builder-2.0/modules/user-listing/userlisting.php:2195 msgid "Form Shortcode" msgstr "Шорткод форми" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "Переспрямувати користувача на певну сторінку чи ні" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "Відобразити Повідомлення" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "Допустимий час для відображення повідомлень про успішну дію (в секундах)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 msgid "Specify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.com" msgstr "Вкажіть URL сторінки, куди користувачі будуть переспрямовані після оновлення свого профілю, використовуючи цю форму
            Використовуйте наступний формат: http://www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "Після оновлення профілю..." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "Додати нове поле до списку" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage Title (Type)" msgstr "
            Назва (Тип)
            " #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "Ви повинні вказати назву форми, перш ніж створювати її" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "Форма Реєстрації" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "Додати нову Реєстраційну Форму" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "Редагувати Реєстраційні Форми" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "Нова Реєстраційна Форма" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "Форми Реєстрації" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "Переглянути Реєстраційну Форму" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "Шукати Реєстраційні Форми" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "Не знайдено Реєстраційних Форм" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "Не знайдено Реєстраційних Форм у корзині" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "Стандартна Роль" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "Встановити Роль" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Choose what role the user will have after (s)he registered
            If not specified, defaults to the role set in the WordPress settings" msgstr "Вкажіть роль користувача після його (її) реєстрації
            якщо роль не зазначена, налаштування WordPress будуть використані за замовчуванням " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "Входити Автоматично" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Whether to automatically log in the newly registered user or not
            Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work" msgstr "Визначити чи автоматично виконувати вхід щойно зареєстрованого користувача чи ні
            Працює лише на одиночних-сайтах з неактивною функцією \"Підтвердження Адміністратором\" і \"Підтвердження електронною поштою\"
            УВАГА: Кешування реєстраційної форми робить автоматичний вхід неробочим" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "Specify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.com" msgstr "Вкажіть URL сторінки, куди користувачі будуть переспрямовані після реєстрації з використанням цієї форми
            Використайте наступний формат: http://www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "Після Реєстрації..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1038 #: profile-builder-2.0/modules/user-listing/userlisting.php:1485 #: profile-builder-2.0/modules/user-listing/userlisting.php:1953 #: profile-builder-2.0/modules/user-listing/userlisting.php:2426 msgid "Search Users by All Fields" msgstr "Пошук користувачів за усіма полями" #: profile-builder-2.0/modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "Додати новий Список Користувачів" #: profile-builder-2.0/modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "Редагувати Список Користувачів" #: profile-builder-2.0/modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "Новий Список Користувачів" #: profile-builder-2.0/modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "Перегляд Списку Користувачів" #: profile-builder-2.0/modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "Пошук Списку Користувачів" #: profile-builder-2.0/modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "Не знайдено Списку Користувачів" #: profile-builder-2.0/modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "Не знайдено Списку Користувачів у кошику" #: profile-builder-2.0/modules/user-listing/userlisting.php:105 msgid "Display name as" msgstr "Відобразити ім'я як" #: profile-builder-2.0/modules/user-listing/userlisting.php:150 #: profile-builder-2.0/modules/user-listing/userlisting.php:2223 msgid "Registration Date" msgstr "Дата Реєстрації" #: profile-builder-2.0/modules/user-listing/userlisting.php:151 #: profile-builder-2.0/modules/user-listing/userlisting.php:2228 msgid "Number of Posts" msgstr "Число Постів" #: profile-builder-2.0/modules/user-listing/userlisting.php:155 msgid "More Info" msgstr "Більше Інформації" #: profile-builder-2.0/modules/user-listing/userlisting.php:156 msgid "More Info Url" msgstr "Url Більше Інформації" #: profile-builder-2.0/modules/user-listing/userlisting.php:157 msgid "Avatar or Gravatar" msgstr "Аватар чи Граватар" #: profile-builder-2.0/modules/user-listing/userlisting.php:196 #: profile-builder-2.0/modules/user-listing/userlisting.php:227 msgid "Extra Functions" msgstr "Додаткові Функції" #: profile-builder-2.0/modules/user-listing/userlisting.php:199 msgid "Pagination" msgstr "Нумерація Сторінок" #: profile-builder-2.0/modules/user-listing/userlisting.php:200 msgid "Search all Fields" msgstr "Пошук по усім полям" #: profile-builder-2.0/modules/user-listing/userlisting.php:229 msgid "Go Back Link" msgstr "Посилання \"Назад\"" #: profile-builder-2.0/modules/user-listing/userlisting.php:247 msgid "All-userlisting Template" msgstr "Шаблон усіх Списків Користувачів" #: profile-builder-2.0/modules/user-listing/userlisting.php:250 msgid "Single-userlisting Template" msgstr "Шаблон одного Списку Користувачів" #: profile-builder-2.0/modules/user-listing/userlisting.php:733 msgid "First/Lastname" msgstr "Ім'я/Прізвище" #: profile-builder-2.0/modules/user-listing/userlisting.php:281 #: profile-builder-2.0/modules/user-listing/userlisting.php:739 msgid "Sign-up Date" msgstr "Дата Реєстрації" #: profile-builder-2.0/modules/user-listing/userlisting.php:748 #: profile-builder-2.0/modules/user-listing/userlisting.php:2226 msgid "Display Name" msgstr "Відобразити Ім'я" #: profile-builder-2.0/modules/user-listing/userlisting.php:280 #: profile-builder-2.0/modules/user-listing/userlisting.php:757 msgid "Posts" msgstr "Пости" #: profile-builder-2.0/modules/user-listing/userlisting.php:760 #: profile-builder-2.0/modules/user-listing/userlisting.php:2233 msgid "Aim" msgstr "Aim" #: profile-builder-2.0/modules/user-listing/userlisting.php:763 #: profile-builder-2.0/modules/user-listing/userlisting.php:2234 msgid "Yim" msgstr "Yim" #: profile-builder-2.0/modules/user-listing/userlisting.php:766 #: profile-builder-2.0/modules/user-listing/userlisting.php:2235 msgid "Jabber" msgstr "Jabber" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "Click here to see more information about this user" msgstr "Натисніть тут, щоб переглянути детальнішу інформацію про цього користувача" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "More..." msgstr "Більше..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1293 msgid "Click here to see more information about this user." msgstr "Натисніть тут, щоб переглянути детальнішу інформацію про цього користувача." #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 #: profile-builder-2.0/modules/user-listing/userlisting.php:1442 msgid "Click here to go back" msgstr "Натисніть тут щоб повернутися" #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 msgid "Back" msgstr "Назад" #: profile-builder-2.0/modules/user-listing/userlisting.php:1472 msgid "«« First" msgstr "«« Перший" #: profile-builder-2.0/modules/user-listing/userlisting.php:1473 msgid "« Prev" msgstr "« Попередній" #: profile-builder-2.0/modules/user-listing/userlisting.php:1474 msgid "Next » " msgstr "Наступний »" #: profile-builder-2.0/modules/user-listing/userlisting.php:1475 msgid "Last »»" msgstr "Останній »»" #: profile-builder-2.0/modules/user-listing/userlisting.php:1504 msgid "You don't have any pagination settings on this userlisting!" msgstr "У Вас немає жодних налаштувань розмітки сторінок в даному списку користувачів!" #: profile-builder-2.0/modules/user-listing/userlisting.php:1970 msgid "Search" msgstr "Пошук" #: profile-builder-2.0/modules/user-listing/userlisting.php:1971 msgid "Clear Results" msgstr "Очистити Результати" #: profile-builder-2.0/modules/user-listing/userlisting.php:2165 #: profile-builder-2.0/modules/user-listing/userlisting.php:2169 msgid "Extra shortcode parameters" msgstr "Додаткові параметри шорткодів" #: profile-builder-2.0/modules/user-listing/userlisting.php:2172 msgid "displays users having a certain meta-value within a certain (extra) meta-field" msgstr "відображає користувачів, що мають певне мета-значення в межах (додаткового) мета-поля" #: profile-builder-2.0/modules/user-listing/userlisting.php:2173 msgid "Example:" msgstr "Приклад:" #: profile-builder-2.0/modules/user-listing/userlisting.php:2175 msgid "Remember though, that the field-value combination must exist in the database." msgstr "Пам'ятайте, що комбінації значень полів повинні існувати у базі даних." #: profile-builder-2.0/modules/user-listing/userlisting.php:2250 msgid "Random (very slow on large databases > 10K user)" msgstr "Випадковий (повільно працює на базах данихб що містять більш ніж 10к користувачів)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Roles to Display" msgstr "Відображення Ролей" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Restrict the userlisting to these selected roles only
            If not specified, defaults to all existing roles" msgstr "Обмежити список користувачів тільки певними ролями
            Якщо значення не визначено, використовуються значення за замовчуванням для усіх існуючих ролей" #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Number of Users/Page" msgstr "Кількість Користувачів/Сторінок" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Default Sorting Criteria" msgstr "Стандартний Критерій Сортування" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Set the default sorting criteria
            This can temporarily be changed for each new session" msgstr "Встановлення критерія сортування за замовчуванням
            Може бути тимчасово зміненим для кожної нової сесії" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Default Sorting Order" msgstr "Порядок сортування за замовчуванням" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Set the default sorting order
            This can temporarily be changed for each new session" msgstr "Встановлення порядку сортування за замовчуванням
            Може бути тимчасово зміненим для кожної нової сесії" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Avatar Size (All-userlisting)" msgstr "Розмір Аватару (Усіх списків користувачів)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Set the avatar size on the all-userlisting only" msgstr "Встановлення розміру аватару лише для усіх списків користувачів" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Avatar Size (Single-userlisting)" msgstr "Розмір Аватару (Одного списку користувачів)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Set the avatar size on the single-userlisting only" msgstr "Встановлення розміру аватару тільки на одному списку користувачів" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Visible only to logged in users?" msgstr "Відображати тільки для залогованих користувачів?" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "The userlisting will only be visible only to the logged in users" msgstr "Список користувачів буде відображатись лише залогованим користувачам" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "Visible to following Roles" msgstr "Видимий лише наступним ролям" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "The userlisting will only be visible to the following roles" msgstr "Список користувачів буде відображатись тільки для наступних ролей" #: profile-builder-2.0/modules/user-listing/userlisting.php:2275 msgid "Userlisting Settings" msgstr "Налаштування Списку Користувачів" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "Ви повинні активувати функцію Список Користувачів з вкладки \"Модулі\"!" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You can find it in the Profile Builder menu." msgstr "Ви зможете знайти це у меню Profile Builder." #: profile-builder-2.0/modules/user-listing/userlisting.php:2565 msgid "No results found!" msgstr "Нічого не знайдено!"translation/profile-builder-it_IT.mo000066600000222640152141651160013545 0ustar00d<\6\6l]6y6cD77c}889:C;;;q<<K<C =[M===="=+">EN>1> >e> 6?C? Z? e?r?2? ?-?O? C@M@5T@#@@AdAYBG_BRBcB!^C7C'CC{DDDDDDD D DDDE E%E?ETEnE!E#EEEEEFF.F*EF pF|FF$FFF FFG G(GVQV WVscVVVV W!W11WcWQyWWOW?/XoXYeYW%Z}ZZZZbZ [ [![0[?[>O[[[ [r[;\A\ R\^\c\\ \\ \\?\ ]]!] &]4]E] a]m]]] ]]]]]]]] ^ ^^/^ 6^@^ H^S^ X^b^k^ r^^^^!^I^^_ ___!_)__j`s`` `` ``` ``a aa a&a-a 3a?aFa[acaiapa waabb$b+b 2b=bDbIb ]bgbpb wbbbbb bb b b5bbcc.cGcMccccd $d/d 5d ?d~Jddddddd eee 0e ;e FePeXe _eie pe*{eeee)e$f,f4f;f Df Of Zf dfrfzf fff_f%g-g2gCgKgQg Wg cgqggg gCg g hhh%h-h2h5h$Phuh$hhhhh ii i,iEi#Li4pipij&j;j=@j(~jjj jjjjjj kkk&5k\kqkk.kwkPl Ulal8jl3l^l6m,Umm,m%mm! n#-nQnXnangn}nn nn n0noo)o2o;oLobo o ooooo o$ pM1pppppppp p p q qj#q qqqqq qqqq qq r r'r Arbr hrsr rr r r7rrrs"s@s^s vss s sysItct!u"u*u1u/:u2juYuVuVNvv 3w]>w www(w w w wx #x0x 9x CxNxWx`xixyxxQZy'y0y z,z ?z KzWz]zz{ |U|x}6}} ~~~~~~~ ~  #.7JS)\!#.dI7݀32I)|"(Ɂ@L3OЂ/:&Zr%&5:\;ӄ0]*-<p$@;ֆ2 E(f*45D%[jZƈ!/?o;.։##2G<zԊ-o5Ӎ؍ /6Qey} ӎ $4<EDȀ    * 4?P_{  ̐ؐ .DKS$< a)l"+(  ( 3 =GO#X| ȓ ӓ!&4.Fc$ޔ6ѕXajp"tQ)G#_<bK#,o(NŘ"y7;sG2+*%V+|*ӛK(<t;rh`eɝ'/)W02&, +9 e?@Ɵ&.5>#S%w&Ġ+"+)Hr@:šNOUZk#Ţ  -8ASsAzp0cu(٦ g:ުVOHS'4!I)k4aʬH, u0?S3j0V 8D4M%eְg<ISsB#:ڲ'=0EYbq!3ʴ(')E,o26ϵ!( =JeE ' 4.K'zɷ4ܷ6,Hua<"N0L@Lں   ,"8 [fo4v һ!* 5=%Q(w ɼ ռ߼ jh}ƾ  ")Ld Ŀܿ    !+ 3 =IYsy1 ,D NS ERdx:; ! 0:O0X )rhz#-  &0G\s?$ ! 5$V {! &:N ku2|26 # 7DYb k uB KV'i$ 4 ;H10A'rYb Ynw{TpAT] f`p J0{=E\kq(G(?GO^p /J Q\n   "M c n x~} % ,$7 \j"  4=DL T`  & 2>D \ fpx ? ","="`2;"W z 9 A KU[-b   2B_#}.   6@ I,U"m#6?F MZi H # .8?HN+S9(6+7c{ $8t=Y:> y  1$I<n"8 :6q<(5& .41c%%' "9X v 7 ("C fs&+$"FG  )* 7Pe}|*3;S\nv~  !  7EMbAz$!@X hta(%>dmu?Bvu\R j iu~:  2 1? P\ m x \.4 Q-_ Zrx8!  &0 HS [ho w  6!&>.[:r,C4&S.zDNP=&?;'1Yty-,JI>7$4Hr\>;7J,)1: ;FPyxME+JPd8!&K7G      5 ? = C L S h q  y   %       ( 8 X n ~ %     B E.t 0E e$! 0F*[N` 6 W$x+ 0(//-_   /*'Fn ' ;PA/5t$ "R++NWHv d+*M<)UJIE660H5y,!"!P?8Ax xx2v659 0P 3 2 + K!I`!,!! !!6"'7"&_"*"3"" #" #1/#a#M|#:#Z$`$h$n$$$ $$$ % %*%F%N%m% }%%

            Good News!

            An administrator has just approved your account: {{username}} on {{site_name}}.

            Hello,

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            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!

            Someone requested that the password be reset for the following account: {{site_name}}
            Username: {{username}}

            If this was a mistake, just ignore this email and nothing will happen.

            To reset your password, visit the following address:
            {{{reset_link}}}

            To activate your user, please click the following link:
            {{{activation_link}}}

            After you activate, you will receive another email with your credentials.

            You have successfully reset your password to: {{password}}

            {{username}} has requested a password change via the password reset feature.

            His/her new password is: {{password}}

            * only available in the %1$sHobbyist and Pro versions%2$s. Serial Number: Your serial number is about to expire, please %1$s Renew Your License%2$s. Your serial number is expired, please %1$s Renew Your License%2$s. is also activated. You need to deactivate it before activating this version of the plugin."Admin Approval" Activated:"Admin Approval" Feature:"Email Confirmation" Activated:"Email Confirmation" Landing Page:"Email" - users can Log In only with Email."Username and Email" - users can Log In with both Username and Email."Username" - users can Log In only with Username.%1$s %2$d%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s%1$s of %2$s%s couldn't be deleted%s pending« Prev«« First(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(no title)** only available in the %1$sPro version%2$s.. Extra Field Types are available in
            Hobbyist or PRO versions....Choose1 item

            Also, you will be able to visit your site at

            You can visit your site at

            Your Profile Builder serial number is invalid or missing.
            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

            Title (Type)
            Title
            Type
            Meta Name
            Required
            Note: changing the form title also changes the shortcode!ERROR: The password must have a minimum strength of %sERROR: The password must have the minimum length of %s charactersERROR: Your account has to be confirmed by an administrator before you can log in.Profile Builder A new account has been created for you on {{site_name}}A new subscriber has (been) registered!A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be editedAIMAbout YourselfActivateActivation KeyActivation LinkActivation UrlActiveAdd EntryAdd FieldAdd NewAdd New Field to the ListAdd UserAdd new Edit-profile FormAdd new Registration FormAdd new User ListingAdd-On has been activatedAdd-On has been deactivated.Add-On is activeAdd-On is inactiveAdd-On is ActiveAdd-OnsAddress line 2Admin ApprovalAdmin Approval (*)Admin Bar SettingsAdmin Email CustomizerAdmin Notification for User Password ResetAfghanistanAfter Profile Update...After Registration...After login redirect URL (optional):Agree To Terms CheckboxAimAland IslandsAlbaniaAlgeriaAll UsersAll users have been successfully deletedAll-userlisting TemplateAllow Users to Log in With:Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.Allow users to log in with their email or username when accessing your site.Allowed Image ExtensionsAllowed Upload ExtensionsAllowed time to display any success messages (in seconds)American SamoaAn administrator has just approved your account on %1$s (%2$s).An administrator has just unapproved your account on %1$s (%2$s).AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApplyApproveApprovedAre you sure you want to delete this?ArgentinaArmeniaArubaAs an administrator you cannot change your role.AustraliaAustriaAutomatically Log InAvailable TagsAvailable in All VersionsAvailable in Hobbyist and Pro VersionsAvatarAvatar SizeAvatar Size (All-userlisting)Avatar Size (Single-userlisting)Avatar UploadAvatar or GravatarAzerbaijanBackBahamasBahrainBangladeshBarbadosBasic InformationBefore you can access your account %1s, an administrator has to approve it. You will be notified via email.Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.Before you can access your account, an administrator needs to approve it. You will be notified via email.BelarusBelgiumBelizeBeninBermudaBhutanBilling FieldsBilling Fields OrderBiographical InfoBlog DetailsBlog URLBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBoth fields are empty.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaBulk ActionsBurkina FasoBurundiCambodiaCameroonCanadaCancelCape VerdeCayman IslandsCentral African RepublicChadChanged Email Address NotificationCheck your e-mail for the confirmation link.CheckboxChileChinaChoose one of the supported field typesChoose one of the supported fields you manage install manually.Country SelectCroatiaCubaCuracaoCustom RedirectsCustomize Your Forms The Way You Want (*)CyprusCzech RepublicDate-formatDatepickerDeactivateDefaultDefault ContentDefault OptionDefault Option(s)Default RegistrationDefault Registration & Registration with Email ConfirmationDefault RoleDefault Sorting CriteriaDefault Sorting OrderDefault ValueDefault value of the fieldDefault value of the textareaDeleteDelete allDelete all itemsDelete this itemDemocratic Republic of the CongoDenmarkDescriptionDisabledDisplay MessagesDisplay NameDisplay name asDisplay name publicly asDjiboutiDo you want toDo you want to bulk approve the selected users?Do you want to bulk delete the selected users?Do you want to bulk unapprove the selected users?DominicaDominican RepublicDownload NowDownloading and installing...E-mailERRORERROR:East TimorEasy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings.EcuadorEditEdit ProfileEdit the Edit-profile FormsEdit the Registration FormsEdit the User ListingEdit this itemEdit-profile FormEdit-profile FormsEg. (###) ###-####EgyptEl SalvadorEliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.EmailEmail ConfirmationEmail CustomizerEmail SubjectEmail notification resent to userEmpty field won't check for correct phone number.Enable extra featuresEnable limit to the number of fields to be generated by users in front end forms Enable your modulesEnter a (detailed) description of the option for end users to read
            OptionalEnter a comma separated list of labels
            Visible for the userEnter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophesEnter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100Enter the minimum characters the password should have. Leave empty for no minimum limitEquatorial GuineaEritreaEstoniaEthiopiaEverything you will need to manage your users is probably already available using the Pro Modules.Example:Excerpt ViewExisting PagesExtra FeaturesExtra FunctionsExtra Profile Fields are available in Hobbyist or PRO versionsExtra shortcode parametersFalkland IslandsFaroe IslandsFeatures that give you more control over your users, increased security and help you fight user registration spam.FieldField PropertiesField TitleFijiFind out more about PRO ModulesFinlandFirst NameFirst/LastnameFirstnameFor Modern User InteractionFor security reasons, you must pass the remote ip to reCAPTCHA!Form ShortcodeFranceFreeFrench GuianaFrench PolynesiaFrench Southern TerritoriesFrom (name)From (reply-to email)GabonGambiaGeneral LimitGeneral SettingsGeneric UploadsGeorgiaGermanyGet New PasswordGet started with extra fieldsGhanaGibraltarGo Back LinkGoogle Maps API KeyGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHTMLHaitiHeard Island and McDonald IslandsHere you can activate / deactivate available modules for Profile Builder.HideHondurasHong KongHungaryIDIcelandIf you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.InactiveIncorrect phone numberIndiaIndonesiaInput / Hidden InputInstall NowInstallation completeInvalid activation key!Invalid key!Invalid username.IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanKeep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.KenyaKiribatiKosovoKuwaitKyrgyzstanLabelsLaosLast »»Last NameLastnameLatviaLearn MoreLebanonLesothoLiberiaLibyaLiechtensteinLimitList ViewLithuaniaLoad Profile Builder's own CSS file in the front-end:Log outLog out »Log out of this accountLog out of this account.LoginLogin 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 )Login with Email or UsernameLogoutLost your passwordLost your password?LuxembourgMacaoMacedoniaMadagascarMake sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.MalawiMalaysiaMaldivesMaliMaltaManage Default and Extra FieldsManage FieldsMapMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMediumMeta-nameMexicoMicronesiaMinimum Password Length and Strength MeterMinimum Password Length:Minimum Password Strength:Minimum length of %d charactersMinimum required Profile Builder version:ModulesMoldovaMonacoMongoliaMontenegroMontserratMore InfoMore Info UrlMore...MoroccoMozambiqueMultiple Edit-profile FormsMultiple Registration FormsMust be a valid email address or the tag {{reply_to}} which defaults to the administrator emailMyanmarNameName/DescriptionNamibiaNauruNepalNetherlandsNew CaledoniaNew Edit-profile FormNew Registration FormNew User ListingNew ZealandNew subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            Next » NicaraguaNicknameNigerNigeriaNiueNoNo Edit-profile Form foundNo Edit-profile Forms found in trashNo Registration Form foundNo Registration Forms found in trashNo User Listing foundNo User Listing found in trashNo items found.No results found!NoneNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNot compatible with Profile BuilderNot compatible with your version of Profile Builder.Now that you acquired a copy of %s, you should take the time and register it with the serial number you receivedNumber of PostsNumber of Users/PageOmanOnly administrators can see this field on edit profile forms.Only an administrator can add new users.OptionsOverwrite ExistingPaginationPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayPasswordPassword Lost and Found.Password Recovery page URL (optional):Password Reset EmailPassword Reset Success EmailPassword Reset from "%1$s"Password Successfully Reset for %1$s on "%2$s"Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.PeruPhilippinesPitcairnPlease check that you entered the correct email address.Please check that you entered the correct username.Please choose a different field type as this one already exists in your form (must be unique) Please enter a valid username.Please enter a value for the required field Please enter numbers onlyPlease enter your username or email address.Please select at least one user role Please try a different one!Plugin is activePlugin is inactivePolandPortugalPostsPowerful Modules (**)Profile Builder Login WidgetProfile Builder RegisterPuerto RicoQatarRadio ButtonsRandom (very slow on large databases > 10K user)Recommended PluginsRecover PasswordRedirectRegisterRegister VersionRegister Your VersionRegister page URL (optional):RegisteredRegistrationRegistration & Edit ProfileRegistration DateRegistration FormRegistration FormsRegistration with Admin ApprovalRegistration with Email ConfirmationRemember though, that the field-value combination must exist in the database.RemoveRepeat PasswordReply ToRepublic of the CongoRequiredRequired phone number format: Resend Activation EmailReset KeyReset LinkReset PasswordReset UrlRestrict the userlisting to these selected roles only
            If not specified, defaults to all existing rolesRetry InstallReunionRoleRoles to DisplayRomaniaRow CountRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaveSave ChangesSave SettingsSave the user role order from the user roles checkboxesSearchSearch Users by All FieldsSearch all FieldsSearch the Edit-profile FormsSearch the Registration FormsSearch the User ListingSecret KeySelectSelect AllSelect FileSelect which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be requiredSelect which user roles to show to the user ( drag and drop to re-order )Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name
            Use this at your own riskSend these credentials via email.SenegalSerbiaSet RoleSet the avatar size on the all-userlisting onlySet the avatar size on the single-userlisting onlySet the default sorting criteria
            This can temporarily be changed for each new sessionSet the default sorting order
            This can temporarily be changed for each new sessionSet the number of users to be displayed on every paginated part of the all-userlistingSet up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.SeychellesShare a little biographical information to fill out your profile. This may be shown publicly.ShortcodeShowShow all datesShow/Hide the Admin Bar on the Front-EndSierra LeoneSign-up DateSingaporeSingle-userlisting TemplateSint MaartenSite KeySite NameSite TitleSite UrlSlovakiaSloveniaSolomon IslandsSomaliaSomeone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$sSomething went wrong, we could not connect to the server. Please try again later.Something went wrong. Please try again.Sorry, but you don't have permission to do that!South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.comSpecify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.comSpecify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)Specify the option which should be selected by defaultSpecify 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.Sri LankaStatusStrength indicatorStrongSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaTerms of AgreementTextareaThailandThat field is already added in this form That meta-name is already in use That username is already activated!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!The account %1s has been successfully created!The best way to add front-end registration, edit profile and login forms.The email address entered wasn't found in the database!The email you entered is not a valid email address.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical The entered passwords don't match!The entered row number is not numerical The entered value for the Datepicker is not a valid date-format The following option did not coincide with the ones in the options list: %s The following option(s) did not coincide with the ones in the options list: %s The meta-name cannot be empty The password must have a minimum strength of %sThe password must have the minimum length of %s charactersThe password you entered is incorrect.The passwords do not matchThe secret key from Google, www.google.com/recaptchaThe selected user couldn't be deletedThe selected users have been activatedThe selected users have had their activation emails resentThe serial number couldn't be validated because it expired!The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!The serial number entered couldn't be validated!The serial number is about to expire soon!The serial number was successfully validated!The shortcode will be available after you publish this form.The site key from Google, www.google.com/recaptchaThe userlisting will only be visible only to the logged in usersThe userlisting will only be visible to the following rolesThe username entered wasn't found in the database!The usernames cannot be changed.There was an error in the submitted formThere was an error performing that action!There was an error while trying to activate the userThere was an error while trying to activate the user.There was an error while trying to send the activation link to %1$s!These settings are also replicated in the "Admin Email Customizer" settings-page upon save.These settings are also replicated in the "User Email Customizer" settings-page upon save.This email is already in use.This email is already reserved to be used soon.This field is requiredThis form is empty.This login widget lets you add a login form in the sidebar.This message is only visible by administratorsThis username already exists.This username is already activated!This username is already reserved to be used soon.This username is invalid because it uses illegal characters.This username is now active!Timezone SelectTitle of the fieldTitle:To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login.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$sTo allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$sTo use reCAPTCHA you must get an API key fromTo use reCAPTCHA you must get an API public key from:TogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluType your password again. Type your password.U.S. Virgin IslandsURLUgandaUkraineUnapproveUnapprovedUnapproved User NotificationUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUpdateUpgrade Profile BuilderUpload UruguayUse these shortcodes on the pages you want the forms to be displayed:Use this shortcode on the page you want the form to be displayed:User Approval NotificationUser Email CustomizerUser IdUser ListingUser MetaUser NicenameUser RoleUser RolesUser Roles OrderUser not foundUser successfully approved!User successfully deleted!User successfully unapproved!User to edit:User-RoleUser-statusUserlisting SettingsUsernameUsername and EmailUsername or E-mailUsername or EmailUsernames cannot be changed.Users can register themselves or you can manually create users here.Users cannot currently register themselves, but you can manually create users here.Users successfully approved!Users successfully deleted!Users successfully unapproved!Users with Unconfirmed Email AddressUzbekistanValid tags {{reply_to}} and {{site_name}}Value must be a multiplier of %1$sValue must be greater than or equal to %1$sValue must be less than or equal to %1$sVanuatuVaticanVenezuelaVersion %sVery WeakVery weakVietnamView MapView all extra shortcode parametersView the Edit-profile FormView the Registration FormView the User ListingVisibilityVisible only to logged in users?Visible to following RolesWallis and FutunaWeakWebsiteWelcome to %1$s!


            Your username is:%2$sWelcome to %1$s!


            Your username is:%2$s and password:%3$sWestern SaharaWhether the field is required or notWhether to automatically log in the newly registered user or not
            Only works on single-sites without "Admin Approval" and "Email Confirmation" features activated
            WARNING: Caching the registration form will make automatic login not workWhether to redirect the user to a specific page or notWith Extra Profile Fields you can create the exact registration form your project needs.Yahoo IMYemenYesYes, I'd like to create a new siteYimYou are already logged in. You can change your password on the edit profile form.You are currently logged in as %1$s. %2$sYou are currently logged in as %1s. You don't need another account. %2sYou are currently logged in as %s. You can add the information for the %s after you add a entryYou can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.You can find it in the Profile Builder menu.You can find the default file here: %1$sYou can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces.You cannot register this user roleYou decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.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.You don't have any pagination settings on this userlisting!You either don't have permission for that action or there was an error!You have successfully reset your password to: %1$sYou must be logged in to edit your profile.You must enter a valid email address.You must enter a value for the date-format You must enter a value for the row number You must enter the secret key You must enter the site key You must select a field You need to activate the Userlisting feature from within the "Modules" tab!You need to specify the title of the form before creating itYou will receive a link to create a new password via email.You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$sYour account has to be confirmed by an administrator before you can use the "Password Recovery" feature.Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.Your account on %1$s has been approved!Your account on %1$s has been unapproved!Your account on {{site_name}} has been approved!Your account on {{site_name}} has been unapproved!Your email was successfully confirmed.Your password has been successfully changed!Your profile has been successfully updated!Your selected password at signupYour session has expired! Please refresh the page and try againYour session has expired! Please refresh the page and try again.Your site url will look like this:
            ZambiaZimbabwe[%1$s] Activate %2$s[%1$s] Your new account information[{{site_name}}] Activate {{username}}[{{site_name}}] Notice of Email Change[{{site_name}}] Password Reset[{{site_name}}] Password Reset Successfullyapprove this user?approvedconfirm this email yourself?delete this user from the _signups table?delete this user?displays all users except the ones you specified the user_id fordisplays only the users that you specified the user_id fordisplays users having a certain meta-value within a certain (extra) meta-fieldemailhereis not a number.is not a valid phone number.must be a greater than or equal to must be a multiplier of must be less than or equal to reCAPTCHArequiredresend the activation link?showunapprove this user?unapprovedusernameusername or emailPO-Revision-Date: 2017-08-01 13:43:35+0000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=n != 1; X-Generator: GlotPress/0.1 Project-Id-Version: Profile Builder

            Buone Notizie!

            Un amministratore ha appena approvato il tuo conto {{username}} su {{site_name}}.

            Ciao,

            Sfortunatamente, un amministratore non ha approvato il tuo profilo: {{username}} su {{site_name}}.

            Benvenuto in {{site_name}}!

            Il tuo nome utente è:{{username}} e la tua password:{{password}}

            Benvenuto in {{site_name}}!

            Il tuo nome utente è:{{username}} e la password:{{password}}

            Prima di accedere al tuo profilo, un amministratore deve approvarlo. Sarai notificato via email.

            Nuovo iscritto a {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            Nuovo abbonato su {{site_name}}.

            Nome utente:{{username}}

            E-mail:{{user_email}}

            La caratteristica Approvazione dell'Admin è stata abilitata al momento della registrazione, di conseguenza, tieni conto che devi approvare questo utente prima che esso faccia il login!

            Qualcuno ha richiesto il reset della password per questo account: {{site_name}}
            Username: {{username}}

            Se non è stata richiesta da voi, ignorate questa mail.

            Per il reset della password collegarsi a questo indirizzo:
            {{{reset_link}}}

            Per attivare il tuo utente, prego cliccare su:
            {{{activation_link}}}

            Dopo l'attivazione, riceverai un'altra email con le tue credenziali.

            Il processo di reset della password è andato a buon fine, la nuova password è: {{password}}

            {{username}} ha richiesto il cambio della password attraverso la funzione di reset.

            La sua nuova password è: {{password}}

            * disponibile solo nella versione %1$sHobbyist e Pro%2$s.Numero di serie: Il suo numero di serie sta per scadere, per favore%1$s rinnova la vostra licenza%2$s.La vostra licenza è scaduta, per favore %1$s rinnovate la vostra licenza%2$s.è anche attivata. Devi deattivarla prima di attivare questa versione del plugin. \"Approvazione dell'Admin\" attivata: Caratteristiche dell' \"Approvazione dell'Admin\": \"Email di conferma\" Attivata: \"Email di conferma\" pagina principale "Email" - utente può fare il log in solo con email"Nome utente ed Email" - gli utenti possono fare il login sia con nome il utente che con l'email"Nome utente" - l'utente può fare il login solo con il suo nome utente%1$s %2$d %1$s ha richiesto una modifica della password via la caratteristica di reimpostazione password.
            Sua nuova password è:%2$s %1$s di %2$s %s non può essere eliminato %s in attesa « Anteriore «« Primo (e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(nessun titolo) * disponibile solo nella versione %1$sPro%2$s. . Ulteriori campi sono disponibili su Hobbyist o nella versione PRO....Scegli 1 voce

            Inoltre, potrai visitare il tuo sito da qui

            Puoi visitare il tuo sito da

            Il tuo numero seriale di Profile Builder è sbagliato o manca.
            Per cortesia %1$registra la tua copia%2$s così da ricevere accesso agli aggiornamenti automatici e al supporto. Hai bisogno di un numero di licenza? %3$sAcquistane uno adesso%4$s

            Titolo (Type)
            Title
            Type
            Meta Name
            Required
            Nota: il cambiamento del titolo del modulo cambia anche il shortcode! ERROR: La password deve avere la lunghezza minima di %sERROR: La password deve avere la lunghezza minima di %s caratteriERRORE: La tua registrazione deve essere confermata da un amministratore prima di fare il login. Profile Builder Un nuovo profilo è stato creato per te su {{site_name}} Un nuovo abbonato (si) è registrato! Un'ID unica, auto-generata per questo campo particolare
            La puoi usare in congiunzione con i filtri per indirizzarsi a questo elemento, se necessario
            Non può essere modificata AIM Descrizione personAttivaChiave d'attivazione Link d'attivazione Url d'attivazione Attivo Aggiungi voceAggiungi Campo Aggiungi uno nuovoAggiungi nuovo campo alla lista Aggiungi Utente Aggiungi nuovo modulo per l'editazione del profiloAggiungi nuovo Modulo di registrazione Aggiungi nuova Lista Utenti La funzione aggiuntiva è stata attivataLa funzione aggiuntiva è stata disattivataLa funzione aggiuntiva è attivaLa funzione aggiuntiva non è attivaLa funzione aggiuntiva è attivaFunzione aggiuntivaIndirizzo 2Approvazione dell' Admin Autorizzazione di Admin (*)Impostazioni Barra Admin Configuratore Email Admin Notifica dell'amministratore per il reset della password dell'utenteAfghanistanDopo l'attualizzazione del profilo... Dopo registrazione...Dopo il login reindirizzare URL (opzionale): Casella Accetta i Termini di Utilizzo AIM Aland IslandsAlbaniaAlgeriaTutti gli Utenti Tutti gli utenti sono stati eliminati con successo Modello lista per tutti gli utenti (All-userlisting) Permetti agli utenti di fare il login con: Permetti ai diversi ruoli degli utenti di modificare le loro specifiche informazioni. Predisponi moduli multipli per la modifica del profilo con differenti campi per particolari ruoli degli utenti.Permetti agli utenti di fare il login con la loro email o username quando accedono al tuo sito. Estensioni file immagini ammesse Estensioni ammesse per upload Tempo permesso per visualizzare qualsiasi messaggio di successo (in secondi) American SamoaUn amministratore ha appena approvato la tua registrazione su %1$s (%2$s). Un amministratore ha appena approvato la tua registrazione su %1$s (%2$s). AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApplica Approvare Approvato Sei sicuro di volerlo cancellare?ArgentinaArmeniaArubaCome amministratore non puoi cambiare il tuo ruolo.AustraliaAustriaLog in automaticoDei tag disponibili Disponibile in tutte le versioniDisponibile nella versione Hobbyist e ProAvatarDimensione Avatar Dimensione Avatar (All-userlisting) Dimensione Avatar (Single-userlisting) Caricamento Avatar Avatar o Gravatar AzerbaijanRitorna BahamasBahrainBangladeshBarbadosInformazioni base Prima di poter accedere il tuo conto %1s, un amministratore deve approvarlo. Sarai notificato via email. Prima di poter accedere al tuo profilo %1s, devi confermare il tuo indirizzo email. Verifica il tuo inbox e clicca sul link di attivazione. Prima di poter accedere al tuo profilo, un amministratore deve approvarlo. Sarai notificato via email. BelarusBelgiumBelizeBeninBermudaBhutanCampi di FatturazioneOrdine Campi di FatturazioneInformazioni biografiche Dettagli del blogURL del blogBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaEntrambi i campi sono vuoti. BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaAzione di bloccoBurkina FasoBurundiCambodiaCameroonCanadaAnnulla Cape VerdeCayman IslandsCentral African RepublicChadNotifica di cambio mailVerifica la tua e-mail per il link di conferma. Casella ChileChinaScegli uno dei dei tipi di campo supportatiSceglie uno dei campi sopportati che ne hai in gestione Se non specificato, sarà impostato per default al ruolo impostato nelle impostazioni WordPress Scegli quali ruoli utente visualizzano la barra admin sul front-end del sito web. Sceglie... Christmas IslandElimina Risultati Clicca qui per ritornare Clicca qui per vedere più informazioni su questo utente Clicca qui per vedere più informazioni su questo utente. Clicca per modificareCocos IslandsColombiaImpostazioni comuniComorosCompatibile con la versione di Profile Builder.Conferma Email Recapito Contenuto Cook IslandsCosta RicaNon è stato possibile creare l'utente! Non posso installare la funzione aggiuntiva. Riprovare o installare manualmente.Seleziona Paese CroatiaCubaCuracaoReindirizzamenti personalizzabili Personalizza i tuoi moduli come desideri (*)CyprusCzech RepublicFormato data Datepicker Non attivatoDefault Contenuto di default Opzione di default Opzione/i di default Registrazione Default Registrazione di default & Registrazione con email di confermaRuolo Default Criteri di classificazione default Ordine classificazione default Valore di default Valore di default per il campo Valore di default per l'area testo Cancella Cancella tutto Cancella tutte le voci Eliminare questa voce Democratic Republic of the CongoDenmarkDescrizione Disabilitato Visualizza messaggi Nome visualizzato Nome visualizzato Nome pubblico visualizzato DjiboutiVuoi Vuoi approvare in blocco gli utenti selezionati? Vuoi eliminare in blocco gli utenti selezionati? Vuoi non approvare in blocco gli utenti selezionati? DominicaDominican RepublicScarica oraScarica ed installaE-mail ERRORE ERRORE: East TimorModelli facili da modificare per elencare gli utenti del tuo sito web, così come creare pagine per singoli utenti. Basato su shortcode, offre molte opzioni per personalizzare le tue liste. EcuadorModifica Modifica profilo Modifica il nuovo modulo edita profiloModifica i Moduli di registrazione Modifica la Lista Utenti Modificare questa voceModulo modifica profilo Moduli di modifica profilo Es. (###) ###-####EgyptEl SalvadorElimina le password deboli impostando una lunghezza minima delle password e applicando una determinata intensità della password.Email Conferma Email Configuratore Email Oggetto della emailNotificazione Email inviata di nuovo all'utente Il campo lasciato vuoto non verrà controllato Abilita le caratteristiche aggiuntive Abilita il limite di quanti campi devono essere generati dagli utenti nei form front endAbilita i tuoi moduliInserire una descrizione (dettagliata) dell'opzione da leggere per l'utente finale
            Opzionale Inserire una virgola di separazione nella lista delle etichette
            Visibile all'utente inserisci una lista di valori separata da virgole
            Può contenere qualsiasi cosa, in quanto è nascosta agli utenti, ma non può contenere caratteri speciali o apostrofoInserire una descrizione dettagliata dei termini dell'accordo per essere letta dall'utente.
            Possono essere inseriti dei link utilizzando la sintassi HTML standard: <a href=\"custom_url\">custom_text</a> Inserire un valore (tra 20 e 200) per la dimensione dell'Avatar'
            Se non specificato, sarà impostato per default a 100Inserisci il numero minimo di caratteri che la password deve avere. Lascia vuoto per non avere un limite minimoEquatorial GuineaEritreaEstoniaEthiopiaTutto il necessario per gestire gli utenti è probabilmente già disponibile con i Moduli Pro. Esempio: Vista in estratto Pagine esistentiCaratteristiche aggiuntive Funzioni extra I campi extra del profilo sono disponibili nelle versioni Hobbyist o PRO Parametri shortcode extra Falkland IslandsFaroe IslandsCaratteristiche che assicurano un maggior controllo sugli utenti, un maggior sicurezza ed aiuta a combattere le registrazioni spam.Campo Proprietà del campo Titolo campo FijiScopri di più dei moduli PRO FinlandNome Nome/Cognome Nome Per interazione moderna con gli utenti Per ragioni di sicurezza, devi cambiare l'ip a distanza su reCAPTCHA! Shortcode del Modulo FranceGratisFrench GuianaFrench PolynesiaFrench Southern TerritoriesDa (nome)Da (email di risposta)GabonGambiaLimite GeneraleImpostazioni generali Caricamento generico GeorgiaGermanyRichiedi una nuova password Inizia con i campi extra GhanaGibraltarLink di ritorno Google Maps API KeyGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHTMLHaitiHeard Island and McDonald IslandsQui puoi abilitare / disabilitare i moduli disponibili per Profile Builder. Nascondi HondurasHong KongHungaryID IcelandSe ti fa piacere usare %1$s per favore vota per noi su WordPress.org. Più utenti soddisfatti significa ancora nuove funzioni, meno bug ed un miglior supporto pre ognuno.Se registri questa versione di Profile Builder, riceverai informazioni riguardo aggiornamenti, patches ed assistenza tecnica.Inattivo Numero di telefono scorrettoIndiaIndonesiaInserimento / Inserimento nascosto Installa oraInstallazione completataChiave d'attivazione non valida! Chiave non valida! Nome utente non valido. IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabber Jabber / Google Talk JamaicaJapanJerseyJordanKazakhstanTieni lontano i tuoi utenti dalla dashboard di WordPress, reindirizzali alla pagina iniziale dopo il loro login o la loro registrazione, il tutto con pochi clicks.KenyaKiribatiKosovoKuwaitKyrgyzstanEtichette LaosUltimo »» Cognome Cognome LatviaScopri di piùLebanonLesothoLiberiaLibyaLiechtensteinLimiteVista in modo lista LithuaniaCarica il proprio file CSS del Profile Builder nel front-end: Log out Log out »Fare il Log out da questo profiloFare il Log out da questo conto. Login Il login sarà fatto attraverso E-mail. Questo campo NON apparirà nel front-end! (puoi cambiare questa impostazione nel tab \"%s\") Login con Email o Nome Utente Logout Hai perso la tua password Hai dimenticato la tua password? LuxembourgMacaoMacedoniaMadagascarAssicurarsi che gli utenti si registrino con email validi. Alla registrazione gli utenti riceveranno una notifica di conferma dell'indirizzo email.MalawiMalaysiaMaldivesMaliMaltaGestire i campi di default ed i campi extra Gestire i campi MappaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMedia Meta-name MexicoMicronesiaLunghezza Minima Password e Misuratore IntensitàLunghezza Minima Password: Intensità Minima Password: Lunghezza minima dei caratteri %d Minima versione di Profile Builder richiesta:Moduli MoldovaMonacoMongoliaMontenegroMontserratInfo addizionali Url Info addizionali Più... MoroccoMozambiqueModuli multipli per la modifica del profiloModuli per registrazioni multipleDeve essere un indirizzo di mail valido o il tag {{reply_to}} che reindirizza alla mail dell'amministratore MyanmarNome Nome/Descrizione NamibiaNauruNepalNetherlandsNew CaledoniaNuovo modulo edita profiloNuovo Modulo di registrazione Nuova Lista Utenti New ZealandNuovo abbonato su %1$s.

            Nome utente:%2$s
            E-mail:%3$s
            Seguente » NicaraguaNicknameNigerNigeriaNiueNo Nessun Modulo di modifica profilo trovato Nessun Modulo di modifica profilo trovato tra i rifiuti Nessun Modulo di registrazione trovato Nessun Modulo di registrazione trovato tra i rifiuti Nessun Lista Utenti trovata Nessun Lista Utenti trovata tra i rifiuti Nessuna voce trovata. Nessun risultato trovato! NessunoNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNon compatibile con Profile BuilderNon compatibile con la tua versione di Profile Builder.Adesso che hai acquistato una copia di %s, spendi un istante e registrala con il numero di serie che hai ricevuto. Numero dei post Numero di Utenti/Pagina OmanSolo l'amministratore può visualizzare questo campo nelle form di gestione dei profili.Soltanto un amministratore può aggiungere nuovi utenti. Opzioni Sovrascrivi l'esistente Paginazione PakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayPassword Recupera password. URL della pagina Recupero Password (opzionale): Email del ripristino della passwordEmail di conferma del successo di ripristino della passwordReimpostare password da \"%1$s\" Password reimpostata con successo per %1$s su \"%2$s\" Personalizza tutte le email inviate ai tuoi utenti o amministratori. Alla registrazione, conferma della email, approvazione o non approvazione dell'amministratore.PeruPhilippinesPitcairnAssicurati di aver inserito il corretto indirizzo email. Assicurati di aver inserito il corretto Nome Utente. Per favore scegli un tipo differente per il campo perchè quello esiste già nel tuo modulo (deve essere unico) Per favore inserire un username valido.Per favore inserire un valore per il campo richiestoPer favore inserisci solamente numeriInserisci il tuo nome utente e la tua email. Per favore selezionare almeno una regola utente Prego di provare una email diversa! Il Plugin è attivoIl Plugin è inattivoPolandPortugalPost Moduli potenti (**) Profile Builder Login Widget Registro del Profile BuilderPuerto RicoQatarTasti Radio Casuale (molto lento su database grandi > 10K utente) Plugin RaccomandatiRecupera Password Reindirizza Registrati Registra versione Registra la tua versione Registra pagina URL (opzionale): Registrato Registrazione Registrazione & Modifica del profilo Data di registrazione Modulo di registrazione Moduli di registrazione Registrazione con Approvazione dell'Admin Registrazione con email di confermaRicorda che la combinazione valore-campo deve esistere nel database. Rimuovere Ripeti la Password Risponde a Republic of the CongoObbligatorio Formato di numero di telefono richiesto:Inviare di nuovo la Email di Attivazione Ripristino della chiaveRipristino del linkReimposta la Password Ripristino dell'UrlLimita la lista utenti soltanto a questi ruoli
            Se non specificato, saranno ammesse per default tutti i ruoli esistenti Riprovare l'installazioneReunionRuolo Ruoli da visualizzare RomaniaConteggio righe RussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSalva Salva i cambiamentiSalva le impostazioni Salva la regola utente dalle checkboxes delle regole dell'utenteCerca Cerca utenti su tutti i campiCerca tutti i Campi Cerca i Moduli di modifica profilo Cerca i Moduli di registrazione Cerca la Lista Utenti Chiave segretaSeleziona Seleziona tutto Selezionare il file Seleziona quali campi di fatturazione di WooCommerce mostrare agli utenti (trascina per riordinare) e quali dovrebbero essere obbligatori Selezionare quali regole utente devono essere mostrate all'utente (drag-and-drop per riordinare)Selezionando "Si" sarà aggiunto il campo alla lista, ma sarà sovrascritto ogni altro campo nel database che ha lo stesso meta-name
            L'utilizzo di questo è a proprio rischioInvia queste credenziali via email. SenegalSerbiaImposta regolaImposta la dimensione dell'avatar soltanto su all-userlisting Imposta la dimensione dell'avatar soltanto su single-userlisting Imposta i criteri di classificazione default
            Questo può essere cambiato temporaneamente per ogni nuova sessione Imposta l'ordine di classificazione default
            Questo può essere cambiato temporaneamente per ogni nuova sessione Imposta il numero di utenti da visualizzare su ogni pagina della lista di tutti gli utenti Predisponi moduli per registrazioni multiple con differenti campi per particolari ruoli degli utenti. Raccogli diversi informazioni da diversi tipi d'utenti.SeychellesCondividi qualche informazione biografica per riempire il tuo profilo. Questo può essere reso pubblico. Shortcode Mostra Mostra tutte le date Mostra/Nascondi la Barra admin agli utenti sul Front-End Sierra LeoneData registrazione SingaporeModello lista per un utente (Single-userlisting) Sint MaartenChiave del sitoNome Sito Titolo del sitoUrl Sito SlovakiaSloveniaSolomon IslandsSomaliaQualcuno ha richiesto di reimpostare la password del seguente profilo: %1$s
            In caso di errore, semplicemente ignora questa email e non succederà niente.
            Per reimpostare la tua password, visita il seguente link:%2$s Qualcosa non ha funzionato, la connessione al server non è riuscita. Riprovare più tardi.Qualcosa è andato storto. Per favore riprovaCi dispiace, ma non sei autorizzato a fare questo! South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecifica l'URL della pagina dove gli utenti saranno reindirizzati dopo che siano registrati utilizzando questo modulo
            Usa il seguente formato: http://www.mysite.com Specifica l'URL della pagina dove gli utenti saranno reindirizzati dopo che attualizzano i loro profili utilizzando questo modulo
            Usa il seguente formato: http://www.mysite.com Specificare le esternsioni dei file che si vogliono limitare in fase di carico dei file.
            Ad esempio: .ext1,.ext2,.ext3
            Se non sepecificati, per default sono tutte le estensioni permesse da Wordpress (.*)Specificare le estensioni che si vogliono limitare in fase di carico dei file
            Ad esempio: .ext1,.ext2,.ext3
            Se non specificate, i valori di default sono: .jpg,.jpeg,.gif,.png (.*)Specifica il numero di righe per il campo 'Area testo'
            Se non specificato, sarà assunto per default pari a 5Specificare l'opzione che sarà selezionata per default
            Se ci sono valori multipli, separarli con una "," (virgola)Specificare l'opzione che sarà selezionata per defaultSpecifica la pagina dove gli utenti saranno reindirizzati alla conferma del conto email. Questa pagina può essere diversa dalla pagina(e) di registrazione e può essere cambiata in ogni momento. Se non è stata selezionata, una semplice pagina di conferma sarà visualizzata dall'utente.Sri LankaStato Indicatore intensità Forte SudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaTermini dell'accordo Area di testo ThailandQuel campo è già stato aggiunto in questo modulo\n Quel meta-name è già in uso\n Questo nome utente è già attivato! La caratteristica "Admin Approval" è stata attivata al momento della registrazione, quindi ricorda che devi approvare l'utente prima che lui/lei possa fare il log in.Il profilo %1s è stato creato con successo! La migliore via per aggiungere registrazione front-end, modificare profilo e moduli login.L'indirizzo email inserito non è presente nel database! La email inserita non è una email valida. La dimensione dell'avatar inserito non è compresa tra 20 e 200\n La dimensione dell'avatar inserito non è numerica Le password inserite non coincidono! Il numero di riga inserito non è numerico\n Il valore inserito del Datepicker non è un formato di data valido La seguente opzione non corrisponde a quelle nella lista delle opzioni: %s\n Le seguenti opzioni non corrispondono a quelle nella lista delle opzioni: %s\n Il meta-name non può essere vuoto\n La password deve avere come minimo una robustezza uguale a %sLa password deve avere la lunghezza minima di %s caratteriLa password inserita non è corretta. Le password non corrispondono La chiave segreta da Google, www.google.com/recaptchaL'utente selezionato non è stato eliminato Gli utenti selezionati sono stati attivati Email di attivazione sono stati inviati di nuovo agli utenti selezionati Il numero di serie non è stato validato perchè è scaduto! Il numero di serie non è stato validato perchè il processo sta impiegando troppo tempo. Questo può essere dovuto al server non attivo. Per favore, riprovare più tardi!Il numero di serie inserito non può essere validato! Il numero di serie scadrà a breve!Il numero di serie è stato validato con successo! Il shortcode sarà disponibile dopo la pubblicazione di questo modulo. Chiave del sito da Google, www.google.com/recaptchaLa lista utenti sarà visibile soltanto agli utenti connessi La lista utenti sarà visibile soltanto ai seguenti ruoli Il nome utente inserito non è presente nel database! I nomi utente non possono essere cambiati. C'è stato un errore nel modulo inviato C'è stato un errore nel compiere quell'azione! C'è stato un errore mentre tentavi di attivare l'utente C'è stato un errore mentre tentavi di attivare l'utente. C'è stato un errore mentre tentavi di inviare il link di attivazione al %1$s! Queste impostazioni saranno replicate anche nella pagina d'impostazioni \"Admin Email Customizer\" dopo il salvataggio. Queste impostazioni saranno replicate anche nella pagina d'impostazioni \"User Email Customizer\" dopo il salvataggio. Questa email è già in uso. Questa email è già riservata ad essere utilizzata fra poco tempo. Questo campo è obbligatorio Questo modulo è vuoto. Questo login widget ti lascia aggiungere un modulo login nella barra laterale. Questo messaggio è visibile solo dagli amministratori Questo Nome Utente già esiste. Questo nome utente è già attivato! Questo nome utente è già riservato ad essere utilizzato fra poco tempo. Questo username non è valido perchè utilizza caratteri non permessi.Questo nome utente è attivo! Seleziona Fuso Orario Titolo del campo Titolo: Per attivare il tuo utente, clicca il seguente link:

            %s%s%s

            Dopo l'attivazione riceverai un'altra email con i dati di accesso.Per permettere agli utenti di registrarsi tramite Profile Builder, devi prima abilitare la registrazione degli utenti. Vai a %1$sNetwork Settings%2$s, e sotto Registration Settings devi abilitare "Lo user account può essere registrato". %3$sAbbandona%4$sPer permettere agli utenti di registrarsi nel tuo sito via Profile Builder, devi prima abilitare la registrazione degli utenti. Vai al menu %1$sImpostazioni -> Impostazioni generali%2$s e per l'Appartenenza seleziona "Possono essere creati nuovi conto utente". %3$sDismiss%4$sPer usare reCAPTCHA devi ottenere una chiave API da Per usare reCAPTCHA devi ottenere una chiave API pubblica da: TogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluInserisci di nuovo la tua password. Inserisci la tua password. U.S. Virgin IslandsURL UgandaUkraineNon approvare Non approvato Notifica utente non approvato United Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsAggiornaAggiorna Profile BuilderCaricare UruguayUsa questi shortcodes sui pagini dove vuoi visualizzare i moduli:Usa questo shortcode sulla pagina dove vuoi visualizzare il modulo: Notifica approvazione utente Configuratore Email Utente Id Utente Lista degli utenti Meta Utente Utente NicenameRegola utenteRegole dell'utenteOrdine delle regole utenteUtente non trovato Utente approvato con successo!Utente eliminato con successo! Utente non approvato con successo! Utente da modificare:Utente-Ruolo Stato utente Impostazioni della lista utenti Nome utente Nome utente ed indirizzo EmailNome Utente o Email Nome utente o EmailIl Nome Utente non può essere cambiato. Gli utenti possono registrarsi da soli o puoi creare manualmente utenti qui. Al momento, gli utenti non possono registrarsi da soli, ma puoi creare manualmente utenti qui. Utenti approvati con successo! Utenti eliminati con successo! Utenti non approvati con successo! Utenti con Indirizzo Email non confermato UzbekistanI tag validi sono {{reply_to}} e {{site_name}} I valori devono essere multipli di %1$sI valori devono essere maggiori o guali a %1$sI valori devono essere minori o guali a %1$sVanuatuVaticanVenezuelaVersione %s Molto debole Molto debole VietnamVedi MappaVisualizza tutti i parametri delle scorciatoieVisualizza il Modulo di modifica profilo Visualizza il Modulo di registrazione Visualizza la Lista Utenti Visibilità Visibile soltanto ai utenti connessi? Visibile ai seguenti Ruoli Wallis and FutunaDebole Sito web Benvenuto in %1$s!


            Il tuo nome utente: %2$sBenvenuto su %1$s!


            Il tuo nome utente è:%2$s e la password:%3$s Western SaharaIndicare se il campo è obbligatorio oppure noSe connettere automaticamente o no gli utenti nuovi registrati
            Funziona soltanto su siti individuali senza le caratteristiche \"Approvazione dell'Admin\" e \"Conferma Email\" attivati
            AVVERTENZA: Mettere il modulo di registrazione nella cache impedisce il login automatico Reindirizzare o no l'utente ad una pagina specifica Con i campi extra del profilo puoi creare esattamente il modulo di registrazione di cui ha bisogno il tuo progetto.Yahoo IM YemenSiSì, vorrei creare un nuovo sito.Yim Sei già loggato. Puoi cambiare la tua password editando il form del tuo profilo.Sei attualmente collegato come %1$s. %2$s Sei attualmente collegato come %1s. Non hai bisogno di un nuovo profilo. %2s Ora sei loggato come %s.Si può aggiungere l'informazione per il %s dopo aver aggiunto una vocePuoi trovare una lista degli indirizzi email non confermati qui %1$sUtenti > Tutti gli Utenti > Email di conferma%2$sPuoi trovare una lista degli utenti al %1$sUtenti > Tutti gli Utenti > Approvazione dell'Admin%2$s.La puoi trovare nel Profile Builder menu. Puoi trovare il file di default qui: %1$sPuoi usare: # per i numeri, parentesi (), segno -, segno +. punto . e spazi.Non puoi registrare questa regola utenteSei tu a decidere chi è un utente sul tuo sito web. Ricevi una notifica via e-mail o approva più utenti contemporaneamente dall'interfaccia utente WordPress.Sei tu a decidere chi è un utente sul tuo sito web. Ricevi una notifica via e-mail o approva più utenti contemporaneamente dall'interfaccia utente WordPress. Abilita Approvazione dell'Admin con l'upgrade ai versioni %1$sHobbyist o PRO%2$s. Non hai delle impostazioni di paginazione per questa lista degli utenti! Non hai ancora il permesso per quell'azione o c'è stato un errore! Hai reimpostato la tua password con successo a: %1$s Devi essere collegato per modificare il tuo profilo. Deve essere inserito un indirizzo email valido.Devi inserire un valore per il formato della data\n È necessario inserire un numero di riga\n Deve inserire la chiave segreta Deve inserire la chiave del sito Devi selezionare un campo\n Devi attivare la caratteristica Userlisting (lista utenti) dal tab \"Moduli\"! Devi specificare il titolo del modulo prima di crearlo Riceverai un'email con un link per generare una nuova password. Sarai reindirizzato in modo automatico in poco tempo. Se vedi questa pagina per più di %1$d secondi, clicca %2$s.%3$s Il tuo conto deve essere confermato da un amministratore prima di utilizzare la caratteristica \"Recupera Password\" . Il tuo profilo deve essere confermato da un amministratore prima di utilizzare la funzione \"Reimposta la Password\" . La tua registrazione su %1$s è stata approvata! La tua registrazione su %1$s non è stata approvata! Il tuo profilo su {{site_name}} è stato approvato! Il tuo profilo su {{site_name}} è stato non approvato! La tua email è stata confermata con successo. La tua password è stata modificata con successo! Il tuo profilo è stato aggiornato con successo! La tua password scelta alla registrazione La sessione è scaduta! Per favore ricarica la pagina e prova nuovamente La sessione è scaduta! Per favore ricarica la pagina e prova nuovamenteL'url del tuo sito assomiglia a questo:
            ZambiaZimbabwe[%1$s] Attivare %2$s [%1$s] Le informazioni della tua nuova registrazione [{{site_name}}] Attivare {{username}} [{{site_name}}] Avviso di cambio mail[{{site_name}}] Ripristino della password[{{site_name}}] Ripristino della password riuscitoapprovare questo utente? approvato confermi tu stesso questa email? eliminare questo utente dalla tabella _signups? eliminare questo utente? Visualizza tutti gli utenti ad eccezione di quelli specificati nello user_idVisualizza solo gli utenti che specificati per lo user_idvisualizza gli utenti che hanno una certa valore-meta entro un certa campo-meta (extra) email qui Non è un numeroNon è un numero di telefono validoDeve essere maggiore o uguale aDeve essere un multiplo diDeve essere minore o uguale areCAPTCHAobbligatorio inviare di nuovo il link di attivazione? mostranon approvare questo utente? non approvato nome utente nome utente o emailtranslation/profile-builder-ja.po000066600000514272152141651160013137 0ustar00# Translation of Profile Builder in Japanese # This file is distributed under the same license as the Profile Builder package. msgid "" msgstr "" "PO-Revision-Date: 2017-04-12 05:23:16+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: GlotPress/0.1\n" "Project-Id-Version: Profile Builder\n" #: admin/manage-fields.php:125 msgid "Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yy" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:244 msgid "Individual redirects defined in shortcodes; redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects." msgstr "" #: admin/manage-fields.php:1214 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." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:240 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "" #: admin/register-version.php:251 msgid "

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            " msgstr "" #: admin/register-version.php:246 msgid "

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            " msgstr "" #: front-end/recover.php:151 msgid "You are already logged in. You can change your password on the edit profile form." msgstr "" #: front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "" #: features/functions.php:909 msgid "

            You can visit your site at " msgstr "" #: features/functions.php:896 msgid "

            Also, you will be able to visit your site at " msgstr "" #: front-end/default-fields/blog-details/blog-details.php:138 msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network." msgstr "" #: front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "" #: front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "" #: front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "" #: modules/email-customizer/email-customizer.php:36 #: modules/user-listing/userlisting.php:118 msgid "Blog URL" msgstr "" #: admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "" #: admin/manage-fields.php:219 msgid "Blog Details" msgstr "" #: admin/pms-cross-promotion.php:239 msgid "Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "" #: features/email-confirmation/email-confirmation.php:578 msgid "Welcome to %1$s!


            Your username is:%2$s" msgstr "" #: modules/user-listing/userlisting.php:1303 msgid "View Map" msgstr "" #: admin/add-ons.php:103 msgid "Available in Hobbyist and Pro Versions" msgstr "" #: admin/add-ons.php:105 msgid "Available in All Versions" msgstr "" #: admin/add-ons.php:148 msgid "Learn More" msgstr "" #: admin/basic-info.php:99 msgid "Timepicker" msgstr "" #: admin/basic-info.php:100 msgid "Colorpicker" msgstr "" #: admin/basic-info.php:103 msgid "Currency Select" msgstr "" #: admin/basic-info.php:109 msgid "Number" msgstr "" #: admin/basic-info.php:114 msgid "Validation" msgstr "" #: admin/basic-info.php:115 msgid "Map" msgstr "" #: admin/basic-info.php:116 msgid "HTML" msgstr "" #: admin/basic-info.php:162 modules/modules.php:117 msgid "Repeater Fields" msgstr "" #: admin/basic-info.php:163 msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role." msgstr "" #: admin/general-settings.php:62 msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "" #: admin/manage-fields.php:118 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count" msgstr "" #: admin/manage-fields.php:141 msgid "Show Currency Symbol" msgstr "" #: admin/manage-fields.php:141 msgid "Whether the currency symbol should be displayed after the currency name in the select option." msgstr "" #: admin/manage-fields.php:142 msgid "Show Post Type" msgstr "" #: admin/manage-fields.php:142 msgid "Posts from what post type will be displayed in the select." msgstr "" #: admin/manage-fields.php:143 msgid "Allowable Values" msgstr "" #: admin/manage-fields.php:143 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." msgstr "" #: admin/manage-fields.php:144 msgid "Error Message" msgstr "" #: admin/manage-fields.php:144 msgid "Set a custom error message that will be displayed to the user." msgstr "" #: admin/manage-fields.php:145 msgid "Time Format" msgstr "" #: admin/manage-fields.php:145 msgid "Specify the time format." msgstr "" #: admin/manage-fields.php:146 msgid "Google Maps API Key" msgstr "" #: admin/manage-fields.php:146 msgid "Enter your Google Maps API key ( Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used." msgstr "" #: admin/manage-fields.php:147 msgid "Default Latitude" msgstr "" #: admin/manage-fields.php:147 msgid "The latitude at which the map should be displayed when no pins are attached." msgstr "" #: admin/manage-fields.php:148 msgid "Default Longitude" msgstr "" #: admin/manage-fields.php:148 msgid "The longitude at which the map should be displayed when no pins are attached." msgstr "" #: admin/manage-fields.php:149 msgid "Default Zoom Level" msgstr "" #: admin/manage-fields.php:149 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "" #: admin/manage-fields.php:150 msgid "Map Height" msgstr "" #: admin/manage-fields.php:150 msgid "The height of the map." msgstr "" #: admin/manage-fields.php:152 msgid "HTML Content" msgstr "" #: admin/manage-fields.php:152 msgid "Add your HTML (or text) content" msgstr "" #: admin/manage-fields.php:153 msgid "Phone Format" msgstr "" #: admin/manage-fields.php:153 msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces." msgstr "" #: admin/manage-fields.php:153 msgid "Eg. (###) ###-####" msgstr "" #: admin/manage-fields.php:153 msgid "Empty field won't check for correct phone number." msgstr "" #: admin/manage-fields.php:154 msgid "Heading Tag" msgstr "" #: admin/manage-fields.php:154 msgid "Change heading field size on front-end forms" msgstr "" #: admin/manage-fields.php:155 msgid "Min Number Value" msgstr "" #: admin/manage-fields.php:155 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "" #: admin/manage-fields.php:155 msgid "Leave it empty for no min value" msgstr "" #: admin/manage-fields.php:156 msgid "Max Number Value" msgstr "" #: admin/manage-fields.php:156 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "" #: admin/manage-fields.php:156 msgid "Leave it empty for no max value" msgstr "" #: admin/manage-fields.php:157 msgid "Number Step Value" msgstr "" #: admin/manage-fields.php:157 msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal" msgstr "" #: admin/manage-fields.php:157 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "" #: admin/manage-fields.php:157 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)" msgstr "" #: admin/manage-fields.php:157 msgid "Leave it empty for no restriction" msgstr "" #: admin/manage-fields.php:561 msgid "Albania Lek" msgstr "" #: admin/manage-fields.php:562 msgid "Afghanistan Afghani" msgstr "" #: admin/manage-fields.php:563 msgid "Argentina Peso" msgstr "" #: admin/manage-fields.php:564 msgid "Aruba Guilder" msgstr "" #: admin/manage-fields.php:565 msgid "Australia Dollar" msgstr "" #: admin/manage-fields.php:566 msgid "Azerbaijan New Manat" msgstr "" #: admin/manage-fields.php:567 msgid "Bahamas Dollar" msgstr "" #: admin/manage-fields.php:568 msgid "Barbados Dollar" msgstr "" #: admin/manage-fields.php:569 msgid "Bangladeshi taka" msgstr "" #: admin/manage-fields.php:570 msgid "Belarus Ruble" msgstr "" #: admin/manage-fields.php:571 msgid "Belize Dollar" msgstr "" #: admin/manage-fields.php:572 msgid "Bermuda Dollar" msgstr "" #: admin/manage-fields.php:573 msgid "Bolivia Boliviano" msgstr "" #: admin/manage-fields.php:574 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "" #: admin/manage-fields.php:575 msgid "Botswana Pula" msgstr "" #: admin/manage-fields.php:576 msgid "Bulgaria Lev" msgstr "" #: admin/manage-fields.php:577 msgid "Brazil Real" msgstr "" #: admin/manage-fields.php:578 msgid "Brunei Darussalam Dollar" msgstr "" #: admin/manage-fields.php:579 msgid "Cambodia Riel" msgstr "" #: admin/manage-fields.php:580 msgid "Canada Dollar" msgstr "" #: admin/manage-fields.php:581 msgid "Cayman Islands Dollar" msgstr "" #: admin/manage-fields.php:582 msgid "Chile Peso" msgstr "" #: admin/manage-fields.php:583 msgid "China Yuan Renminbi" msgstr "" #: admin/manage-fields.php:584 msgid "Colombia Peso" msgstr "" #: admin/manage-fields.php:585 msgid "Costa Rica Colon" msgstr "" #: admin/manage-fields.php:586 msgid "Croatia Kuna" msgstr "" #: admin/manage-fields.php:587 msgid "Cuba Peso" msgstr "" #: admin/manage-fields.php:588 msgid "Czech Republic Koruna" msgstr "" #: admin/manage-fields.php:589 msgid "Denmark Krone" msgstr "" #: admin/manage-fields.php:590 msgid "Dominican Republic Peso" msgstr "" #: admin/manage-fields.php:591 msgid "East Caribbean Dollar" msgstr "" #: admin/manage-fields.php:592 msgid "Egypt Pound" msgstr "" #: admin/manage-fields.php:593 msgid "El Salvador Colon" msgstr "" #: admin/manage-fields.php:594 msgid "Estonia Kroon" msgstr "" #: admin/manage-fields.php:595 msgid "Euro" msgstr "" #: admin/manage-fields.php:596 msgid "Falkland Islands (Malvinas) Pound" msgstr "" #: admin/manage-fields.php:597 msgid "Fiji Dollar" msgstr "" #: admin/manage-fields.php:598 msgid "Ghana Cedis" msgstr "" #: admin/manage-fields.php:599 msgid "Gibraltar Pound" msgstr "" #: admin/manage-fields.php:600 msgid "Guatemala Quetzal" msgstr "" #: admin/manage-fields.php:601 msgid "Guernsey Pound" msgstr "" #: admin/manage-fields.php:602 msgid "Guyana Dollar" msgstr "" #: admin/manage-fields.php:603 msgid "Honduras Lempira" msgstr "" #: admin/manage-fields.php:604 msgid "Hong Kong Dollar" msgstr "" #: admin/manage-fields.php:605 msgid "Hungary Forint" msgstr "" #: admin/manage-fields.php:606 msgid "Iceland Krona" msgstr "" #: admin/manage-fields.php:607 msgid "India Rupee" msgstr "" #: admin/manage-fields.php:608 msgid "Indonesia Rupiah" msgstr "" #: admin/manage-fields.php:609 msgid "Iran Rial" msgstr "" #: admin/manage-fields.php:610 msgid "Isle of Man Pound" msgstr "" #: admin/manage-fields.php:611 msgid "Israel Shekel" msgstr "" #: admin/manage-fields.php:612 msgid "Jamaica Dollar" msgstr "" #: admin/manage-fields.php:613 msgid "Japan Yen" msgstr "" #: admin/manage-fields.php:614 msgid "Jersey Pound" msgstr "" #: admin/manage-fields.php:615 msgid "Kazakhstan Tenge" msgstr "" #: admin/manage-fields.php:616 msgid "Korea (North) Won" msgstr "" #: admin/manage-fields.php:617 msgid "Korea (South) Won" msgstr "" #: admin/manage-fields.php:618 msgid "Kyrgyzstan Som" msgstr "" #: admin/manage-fields.php:619 msgid "Laos Kip" msgstr "" #: admin/manage-fields.php:620 msgid "Latvia Lat" msgstr "" #: admin/manage-fields.php:621 msgid "Lebanon Pound" msgstr "" #: admin/manage-fields.php:622 msgid "Liberia Dollar" msgstr "" #: admin/manage-fields.php:623 msgid "Lithuania Litas" msgstr "" #: admin/manage-fields.php:624 msgid "Macedonia Denar" msgstr "" #: admin/manage-fields.php:625 msgid "Malaysia Ringgit" msgstr "" #: admin/manage-fields.php:626 msgid "Mauritius Rupee" msgstr "" #: admin/manage-fields.php:627 msgid "Mexico Peso" msgstr "" #: admin/manage-fields.php:628 msgid "Mongolia Tughrik" msgstr "" #: admin/manage-fields.php:629 msgid "Mozambique Metical" msgstr "" #: admin/manage-fields.php:630 msgid "Namibia Dollar" msgstr "" #: admin/manage-fields.php:631 msgid "Nepal Rupee" msgstr "" #: admin/manage-fields.php:632 msgid "Netherlands Antilles Guilder" msgstr "" #: admin/manage-fields.php:633 msgid "New Zealand Dollar" msgstr "" #: admin/manage-fields.php:634 msgid "Nicaragua Cordoba" msgstr "" #: admin/manage-fields.php:635 msgid "Nigeria Naira" msgstr "" #: admin/manage-fields.php:636 msgid "Norway Krone" msgstr "" #: admin/manage-fields.php:637 msgid "Oman Rial" msgstr "" #: admin/manage-fields.php:638 msgid "Pakistan Rupee" msgstr "" #: admin/manage-fields.php:639 msgid "Panama Balboa" msgstr "" #: admin/manage-fields.php:640 msgid "Paraguay Guarani" msgstr "" #: admin/manage-fields.php:641 msgid "Peru Nuevo Sol" msgstr "" #: admin/manage-fields.php:642 msgid "Philippines Peso" msgstr "" #: admin/manage-fields.php:643 msgid "Poland Zloty" msgstr "" #: admin/manage-fields.php:644 msgid "Qatar Riyal" msgstr "" #: admin/manage-fields.php:645 msgid "Romania New Leu" msgstr "" #: admin/manage-fields.php:646 msgid "Russia Ruble" msgstr "" #: admin/manage-fields.php:647 msgid "Saint Helena Pound" msgstr "" #: admin/manage-fields.php:648 msgid "Saudi Arabia Riyal" msgstr "" #: admin/manage-fields.php:649 msgid "Serbia Dinar" msgstr "" #: admin/manage-fields.php:650 msgid "Seychelles Rupee" msgstr "" #: admin/manage-fields.php:651 msgid "Singapore Dollar" msgstr "" #: admin/manage-fields.php:652 msgid "Solomon Islands Dollar" msgstr "" #: admin/manage-fields.php:653 msgid "Somalia Shilling" msgstr "" #: admin/manage-fields.php:654 msgid "South Africa Rand" msgstr "" #: admin/manage-fields.php:655 msgid "Sri Lanka Rupee" msgstr "" #: admin/manage-fields.php:656 msgid "Sweden Krona" msgstr "" #: admin/manage-fields.php:657 msgid "Switzerland Franc" msgstr "" #: admin/manage-fields.php:658 msgid "Suriname Dollar" msgstr "" #: admin/manage-fields.php:659 msgid "Syria Pound" msgstr "" #: admin/manage-fields.php:660 msgid "Taiwan New Dollar" msgstr "" #: admin/manage-fields.php:661 msgid "Thailand Baht" msgstr "" #: admin/manage-fields.php:662 msgid "Trinidad and Tobago Dollar" msgstr "" #: admin/manage-fields.php:663 admin/manage-fields.php:664 msgid "Turkey Lira" msgstr "" #: admin/manage-fields.php:665 msgid "Tuvalu Dollar" msgstr "" #: admin/manage-fields.php:666 msgid "Ukraine Hryvna" msgstr "" #: admin/manage-fields.php:667 msgid "United Kingdom Pound" msgstr "" #: admin/manage-fields.php:668 msgid "Uganda Shilling" msgstr "" #: admin/manage-fields.php:669 msgid "US Dollar" msgstr "" #: admin/manage-fields.php:670 msgid "Uruguay Peso" msgstr "" #: admin/manage-fields.php:671 msgid "Uzbekistan Som" msgstr "" #: admin/manage-fields.php:672 msgid "Venezuela Bolivar" msgstr "" #: admin/manage-fields.php:673 msgid "Viet Nam Dong" msgstr "" #: admin/manage-fields.php:674 msgid "Yemen Rial" msgstr "" #: admin/manage-fields.php:675 msgid "Zimbabwe Dollar" msgstr "" #: admin/manage-fields.php:1094 msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n" msgstr "" #: admin/manage-fields.php:1311 msgid "Search Location" msgstr "" #: assets/lib/wck-api/wordpress-creation-kit.php:754 msgid "You are not allowed to do this." msgstr "" #: features/admin-approval/class-admin-approval.php:461 #: features/email-confirmation/class-email-confirmation.php:460 msgid "Search Users" msgstr "" #: features/conditional-fields/conditional-fields.php:78 msgid "Conditional Logic" msgstr "" #: features/conditional-fields/conditional-fields.php:79 msgid "Conditional Rules" msgstr "" #: features/conditional-fields/conditional-fields.php:448 msgid "This field has conditional logic enabled." msgstr "" #: features/functions.php:685 msgid "Incorrect phone number" msgstr "" #: front-end/class-formbuilder.php:113 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." msgstr "" #: front-end/extra-fields/map/map.php:46 front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "" #: front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "" #: front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "" #: front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "" #: front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "" #: front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "" #: front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bolivia, __( Plurinational State of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bonaire, __( Sint Eustatius and Saba" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Brunei Darussalam" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cabo Verde" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cocos (Keeling) Islands" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Congo" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Congo, __( the Democratic Republic of the" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cote dIvoire" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Falkland Islands (Malvinas)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Holy See (Vatican City State)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Iran, __( Islamic Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Democratic Peoples Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lao Peoples Democratic Republic" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Macedonia, __( the former Yugoslav Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Micronesia, __( Federated States of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Moldova, __( Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Palestine, __( State of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Russian Federation" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Helena, __( Ascension and Tristan da Cunha" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Martin (French part)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sint Maarten (Dutch part)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Syrian Arab Republic" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Taiwan, __( Province of China" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tanzania, __( United Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Timor-Leste" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Venezuela, __( Bolivarian Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Viet Nam" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( British" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( U.S." msgstr "" #: modules/email-customizer/email-customizer.php:11 #: modules/user-listing/userlisting.php:186 msgid "User Fields Tags" msgstr "" #: modules/email-customizer/email-customizer.php:479 msgid "The users selected password at signup" msgstr "" #: modules/email-customizer/user-email-customizer.php:278 msgid "[{{site_name}}] Notice of Email Change" msgstr "" #: modules/email-customizer/user-email-customizer.php:289 msgid "Changed Email Address Notification" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Limit" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Enable limit to the number of fields to be generated by users in front end forms " msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "General Limit" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "Limit reached message" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The maximum number of fields has been reached." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The popup message to display when the limit of repeater groups is reached." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Limit per Role" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Leave 0 for unlimited." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Repeated field group" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Manage field or group of fields that will be repeatable." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:259 msgid "Edit field group" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:260 msgid "Repeatable fields saved!" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:277 #: modules/repeater-field/admin/repeater-manage-fields.php:326 msgid "Please enter a unique field title.\n" msgstr "" #: modules/repeater-field/repeater-field.php:258 msgid "Are you sure you want to delete this?" msgstr "" #: modules/user-listing/userlisting.php:192 msgid "Sort Tags" msgstr "" #: modules/user-listing/userlisting.php:201 #: modules/user-listing/userlisting.php:2237 msgid "Faceted Menus" msgstr "" #: modules/user-listing/userlisting.php:202 msgid "User Count" msgstr "" #: modules/user-listing/userlisting.php:1536 msgid "Show All" msgstr "" #: modules/user-listing/userlisting.php:1668 msgid "No options available" msgstr "" #: modules/user-listing/userlisting.php:1807 msgid "Remove All Filters" msgstr "" #: modules/user-listing/userlisting.php:2227 msgid "Label" msgstr "" #: modules/user-listing/userlisting.php:2227 msgid "Choose the facet name that appears on the frontend" msgstr "" #: modules/user-listing/userlisting.php:2228 msgid "Facet Type" msgstr "" #: modules/user-listing/userlisting.php:2228 msgid "Choose the facet menu type" msgstr "" #: modules/user-listing/userlisting.php:2229 msgid "Facet Meta" msgstr "" #: modules/user-listing/userlisting.php:2229 msgid "Choose the meta field for the facet menu" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Behaviour" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Narrow the results" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Expand the results" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Choose how multiple selections affect the results" msgstr "" #: modules/user-listing/userlisting.php:2231 msgid "Visible choices" msgstr "" #: modules/user-listing/userlisting.php:2231 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "" #: modules/user-listing/userlisting.php:2254 msgid "Search Fields" msgstr "" #: modules/user-listing/userlisting.php:2254 msgid "Choose the fields in which the Search Field will look in" msgstr "" #: modules/user-listing/userlisting.php:2259 msgid "Search Settings" msgstr "" #: admin/add-ons.php:190 msgid "Recommended Plugins" msgstr "" #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102 msgid "Free" msgstr "" #: admin/add-ons.php:221 msgid "Accept user payments, create subscription plans and restrict content on your membership site." msgstr "" #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105 msgid "More Details" msgstr "" #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88 #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "" #: admin/add-ons.php:242 admin/pms-cross-promotion.php:87 #: admin/pms-cross-promotion.php:125 admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "" #: admin/add-ons.php:256 admin/pms-cross-promotion.php:146 msgid "Could not install plugin. Retry or install manually." msgstr "" #: admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "" #: admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "" #: admin/pms-cross-promotion.php:37 msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." msgstr "" #: admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "" #: admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "" #: admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "" #: admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "" #: admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "" #: admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "" #: admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "" #: admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "" #: admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "" #: admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "" #: admin/pms-cross-promotion.php:104 msgid "Accept user payments, create subscription plans and restrict content on your website." msgstr "" #: admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "" #: features/email-confirmation/email-confirmation.php:400 msgid "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:45 msgid "After Login" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:46 msgid "After Logout" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:47 msgid "After Registration" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:48 msgid "After Edit Profile" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Successful Email Confirmation" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Successful Password Reset" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:51 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:55 msgid "User ID" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:61 msgid "User ID or Username" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:62 msgid "User ID / Username" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:62 msgid "Please select and enter the ID or username of your user." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:63 #: modules/custom-redirects/custom_redirects_admin.php:93 #: modules/custom-redirects/custom_redirects_admin.php:112 #: modules/custom-redirects/custom_redirects_admin.php:131 msgid "Redirect Type" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:64 #: modules/custom-redirects/custom_redirects_admin.php:94 #: modules/custom-redirects/custom_redirects_admin.php:113 #: modules/custom-redirects/custom_redirects_admin.php:138 msgid "Redirect URL" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:64 #: modules/custom-redirects/custom_redirects_admin.php:94 #: modules/custom-redirects/custom_redirects_admin.php:113 #: modules/custom-redirects/custom_redirects_admin.php:138 msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:71 #: modules/custom-redirects/custom_redirects_admin.php:241 msgid "Individual User Redirects" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:84 msgid "... Choose" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:92 msgid "Select a user role." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:101 #: modules/custom-redirects/custom_redirects_admin.php:242 msgid "User Role based Redirects" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:120 #: modules/custom-redirects/custom_redirects_admin.php:243 msgid "Global Redirects" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:133 msgid "Login ( wp_login.php )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:134 msgid "Register ( wp-login.php?action=register )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:135 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:136 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:145 msgid "Redirect Default WordPress Forms and Pages" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:157 msgid "How does this work?" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:179 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:193 msgid "
            User Role
            Redirect
            URL
            " msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:207 #: modules/custom-redirects/custom_redirects_admin.php:221 msgid "
            Redirect
            URL
            " msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:236 msgid "These redirects happen after a successful action, like registration or after a successful login." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:238 msgid "Which redirect happens depends on the following priority:" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:247 msgid "Redirect Default WordPress forms and pages" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:248 msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:250 msgid "Available tags for dynamic URLs" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:251 msgid "You use the following tags in your URLs to redirect users to various pages." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:253 msgid "generates a url of the current website homepage." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:254 msgid "in WordPress the site url can be different then the home url" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:255 msgid "the ID of the user" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:256 msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:257 msgid "the URL of the previously visited page" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:340 #: modules/custom-redirects/custom_redirects_admin.php:346 #: modules/custom-redirects/custom_redirects_admin.php:352 msgid "You can't add duplicate redirects!" msgstr "" #: admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "" #: admin/basic-info.php:37 msgid "Friction-less login using %s shortcode or a widget." msgstr "" #: admin/basic-info.php:41 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "" #: admin/basic-info.php:45 msgid "Straight forward edit profile forms using %s shortcode." msgstr "" #: admin/basic-info.php:58 msgid "Allow users to recover their password in the front-end using the %s." msgstr "" #: admin/basic-info.php:140 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." msgstr "" #: admin/general-settings.php:118 msgid "\"Admin Approval\" on User Role:" msgstr "" #: admin/general-settings.php:137 msgid "Select on what user roles to activate Admin Approval." msgstr "" #: admin/manage-fields.php:131 msgid "Display on PB forms" msgstr "" #: admin/manage-fields.php:131 msgid "PB Login" msgstr "" #: admin/manage-fields.php:131 msgid "PB Register" msgstr "" #: admin/manage-fields.php:131 msgid "PB Recover Password" msgstr "" #: admin/manage-fields.php:131 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "" #: admin/manage-fields.php:132 msgid "Display on default WP forms" msgstr "" #: admin/manage-fields.php:132 msgid "Default WP Login" msgstr "" #: admin/manage-fields.php:132 msgid "Default WP Register" msgstr "" #: admin/manage-fields.php:132 msgid "Default WP Recover Password" msgstr "" #: admin/manage-fields.php:132 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "" #: admin/manage-fields.php:138 admin/manage-fields.php:139 #: admin/manage-fields.php:140 msgid "Default option of the field" msgstr "" #: admin/manage-fields.php:279 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Afghanistan" msgstr "Afghanistan" #: admin/manage-fields.php:280 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Aland Islands" msgstr "Aland Islands" #: admin/manage-fields.php:281 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Albania" msgstr "Albania" #: admin/manage-fields.php:282 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Algeria" msgstr "Algeria" #: admin/manage-fields.php:283 #: front-end/extra-fields/select-country/select-country.php:10 msgid "American Samoa" msgstr "American Samoa" #: admin/manage-fields.php:284 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Andorra" msgstr "Andorra" #: admin/manage-fields.php:285 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Angola" msgstr "Angola" #: admin/manage-fields.php:286 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Anguilla" msgstr "Anguilla" #: admin/manage-fields.php:287 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Antarctica" msgstr "Antarctica" #: admin/manage-fields.php:288 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" #: admin/manage-fields.php:289 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Argentina" msgstr "Argentina" #: admin/manage-fields.php:290 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Armenia" msgstr "Armenia" #: admin/manage-fields.php:291 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Aruba" msgstr "Aruba" #: admin/manage-fields.php:292 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Australia" msgstr "Australia" #: admin/manage-fields.php:293 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Austria" msgstr "Austria" #: admin/manage-fields.php:294 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Azerbaijan" msgstr "Azerbaijan" #: admin/manage-fields.php:295 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bahamas" msgstr "Bahamas" #: admin/manage-fields.php:296 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bahrain" msgstr "Bahrain" #: admin/manage-fields.php:297 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bangladesh" msgstr "Bangladesh" #: admin/manage-fields.php:298 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Barbados" msgstr "Barbados" #: admin/manage-fields.php:299 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Belarus" msgstr "Belarus" #: admin/manage-fields.php:300 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Belgium" msgstr "Belgium" #: admin/manage-fields.php:301 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Belize" msgstr "Belize" #: admin/manage-fields.php:302 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Benin" msgstr "Benin" #: admin/manage-fields.php:303 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bermuda" msgstr "Bermuda" #: admin/manage-fields.php:304 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bhutan" msgstr "Bhutan" #: admin/manage-fields.php:305 msgid "Bolivia" msgstr "Bolivia" #: admin/manage-fields.php:306 msgid "Bonaire, Saint Eustatius and Saba" msgstr "Bonaire, Saint Eustatius and Saba" #: admin/manage-fields.php:307 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bosnia and Herzegovina" msgstr "Bosnia and Herzegovina" #: admin/manage-fields.php:308 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Botswana" msgstr "Botswana" #: admin/manage-fields.php:309 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bouvet Island" msgstr "Bouvet Island" #: admin/manage-fields.php:310 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Brazil" msgstr "Brazil" #: admin/manage-fields.php:311 #: front-end/extra-fields/select-country/select-country.php:10 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: admin/manage-fields.php:312 msgid "British Virgin Islands" msgstr "British Virgin Islands" #: admin/manage-fields.php:313 msgid "Brunei" msgstr "Brunei" #: admin/manage-fields.php:314 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bulgaria" msgstr "Bulgaria" #: admin/manage-fields.php:315 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Burkina Faso" msgstr "Burkina Faso" #: admin/manage-fields.php:316 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Burundi" msgstr "Burundi" #: admin/manage-fields.php:317 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cambodia" msgstr "Cambodia" #: admin/manage-fields.php:318 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cameroon" msgstr "Cameroon" #: admin/manage-fields.php:319 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Canada" msgstr "Canada" #: admin/manage-fields.php:320 msgid "Cape Verde" msgstr "Cape Verde" #: admin/manage-fields.php:321 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cayman Islands" msgstr "Cayman Islands" #: admin/manage-fields.php:322 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Central African Republic" msgstr "Central African Republic" #: admin/manage-fields.php:323 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Chad" msgstr "Chad" #: admin/manage-fields.php:324 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Chile" msgstr "Chile" #: admin/manage-fields.php:325 #: front-end/extra-fields/select-country/select-country.php:10 msgid "China" msgstr "China" #: admin/manage-fields.php:326 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Christmas Island" msgstr "Christmas Island" #: admin/manage-fields.php:327 msgid "Cocos Islands" msgstr "Cocos Islands" #: admin/manage-fields.php:328 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Colombia" msgstr "Colombia" #: admin/manage-fields.php:329 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Comoros" msgstr "Comoros" #: admin/manage-fields.php:330 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cook Islands" msgstr "Cook Islands" #: admin/manage-fields.php:331 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Costa Rica" msgstr "Costa Rica" #: admin/manage-fields.php:332 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Croatia" msgstr "Croatia" #: admin/manage-fields.php:333 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cuba" msgstr "Cuba" #: admin/manage-fields.php:334 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Curacao" msgstr "Curacao" #: admin/manage-fields.php:335 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cyprus" msgstr "Cyprus" #: admin/manage-fields.php:336 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Czech Republic" msgstr "Czech Republic" #: admin/manage-fields.php:337 msgid "Democratic Republic of the Congo" msgstr "Democratic Republic of the Congo" #: admin/manage-fields.php:338 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Denmark" msgstr "Denmark" #: admin/manage-fields.php:339 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Djibouti" msgstr "Djibouti" #: admin/manage-fields.php:340 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Dominica" msgstr "Dominica" #: admin/manage-fields.php:341 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Dominican Republic" msgstr "Dominican Republic" #: admin/manage-fields.php:342 msgid "East Timor" msgstr "East Timor" #: admin/manage-fields.php:343 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ecuador" msgstr "Ecuador" #: admin/manage-fields.php:344 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Egypt" msgstr "Egypt" #: admin/manage-fields.php:345 #: front-end/extra-fields/select-country/select-country.php:10 msgid "El Salvador" msgstr "El Salvador" #: admin/manage-fields.php:346 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: admin/manage-fields.php:347 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Eritrea" msgstr "Eritrea" #: admin/manage-fields.php:348 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Estonia" msgstr "Estonia" #: admin/manage-fields.php:349 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ethiopia" msgstr "Ethiopia" #: admin/manage-fields.php:350 msgid "Falkland Islands" msgstr "Falkland Islands" #: admin/manage-fields.php:351 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Faroe Islands" msgstr "Faroe Islands" #: admin/manage-fields.php:352 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Fiji" msgstr "Fiji" #: admin/manage-fields.php:353 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Finland" msgstr "Finland" #: admin/manage-fields.php:354 #: front-end/extra-fields/select-country/select-country.php:10 msgid "France" msgstr "France" #: admin/manage-fields.php:355 #: front-end/extra-fields/select-country/select-country.php:10 msgid "French Guiana" msgstr "French Guiana" #: admin/manage-fields.php:356 #: front-end/extra-fields/select-country/select-country.php:10 msgid "French Polynesia" msgstr "French Polynesia" #: admin/manage-fields.php:357 #: front-end/extra-fields/select-country/select-country.php:10 msgid "French Southern Territories" msgstr "French Southern Territories" #: admin/manage-fields.php:358 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Gabon" msgstr "Gabon" #: admin/manage-fields.php:359 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Gambia" msgstr "Gambia" #: admin/manage-fields.php:360 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Georgia" msgstr "Georgia" #: admin/manage-fields.php:361 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Germany" msgstr "Germany" #: admin/manage-fields.php:362 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ghana" msgstr "Ghana" #: admin/manage-fields.php:363 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Gibraltar" msgstr "Gibraltar" #: admin/manage-fields.php:364 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Greece" msgstr "Greece" #: admin/manage-fields.php:365 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Greenland" msgstr "Greenland" #: admin/manage-fields.php:366 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Grenada" msgstr "Grenada" #: admin/manage-fields.php:367 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guadeloupe" msgstr "Guadeloupe" #: admin/manage-fields.php:368 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guam" msgstr "Guam" #: admin/manage-fields.php:369 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guatemala" msgstr "Guatemala" #: admin/manage-fields.php:370 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guernsey" msgstr "Guernsey" #: admin/manage-fields.php:371 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea" msgstr "Guinea" #: admin/manage-fields.php:372 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: admin/manage-fields.php:373 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guyana" msgstr "Guyana" #: admin/manage-fields.php:374 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Haiti" msgstr "Haiti" #: admin/manage-fields.php:375 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Heard Island and McDonald Islands" msgstr "Heard Island and McDonald Islands" #: admin/manage-fields.php:376 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Honduras" msgstr "Honduras" #: admin/manage-fields.php:377 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Hong Kong" msgstr "Hong Kong" #: admin/manage-fields.php:378 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Hungary" msgstr "Hungary" #: admin/manage-fields.php:379 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Iceland" msgstr "Iceland" #: admin/manage-fields.php:380 #: front-end/extra-fields/select-country/select-country.php:10 msgid "India" msgstr "India" #: admin/manage-fields.php:381 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Indonesia" msgstr "Indonesia" #: admin/manage-fields.php:382 msgid "Iran" msgstr "Iran" #: admin/manage-fields.php:383 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Iraq" msgstr "Iraq" #: admin/manage-fields.php:384 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ireland" msgstr "Ireland" #: admin/manage-fields.php:385 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Isle of Man" msgstr "Isle of Man" #: admin/manage-fields.php:386 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Israel" msgstr "Israel" #: admin/manage-fields.php:387 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Italy" msgstr "Italy" #: admin/manage-fields.php:388 msgid "Ivory Coast" msgstr "Ivory Coast" #: admin/manage-fields.php:389 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Jamaica" msgstr "Jamaica" #: admin/manage-fields.php:390 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Japan" msgstr "Japan" #: admin/manage-fields.php:391 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Jersey" msgstr "Jersey" #: admin/manage-fields.php:392 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Jordan" msgstr "Jordan" #: admin/manage-fields.php:393 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kazakhstan" msgstr "Kazakhstan" #: admin/manage-fields.php:394 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kenya" msgstr "Kenya" #: admin/manage-fields.php:395 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kiribati" msgstr "Kiribati" #: admin/manage-fields.php:396 msgid "Kosovo" msgstr "Kosovo" #: admin/manage-fields.php:397 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kuwait" msgstr "Kuwait" #: admin/manage-fields.php:398 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: admin/manage-fields.php:399 msgid "Laos" msgstr "Laos" #: admin/manage-fields.php:400 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Latvia" msgstr "Latvia" #: admin/manage-fields.php:401 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lebanon" msgstr "Lebanon" #: admin/manage-fields.php:402 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lesotho" msgstr "Lesotho" #: admin/manage-fields.php:403 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Liberia" msgstr "Liberia" #: admin/manage-fields.php:404 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Libya" msgstr "Libya" #: admin/manage-fields.php:405 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Liechtenstein" msgstr "Liechtenstein" #: admin/manage-fields.php:406 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lithuania" msgstr "Lithuania" #: admin/manage-fields.php:407 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Luxembourg" msgstr "Luxembourg" #: admin/manage-fields.php:408 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Macao" msgstr "Macao" #: admin/manage-fields.php:409 msgid "Macedonia" msgstr "Macedonia" #: admin/manage-fields.php:410 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Madagascar" msgstr "Madagascar" #: admin/manage-fields.php:411 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Malawi" msgstr "Malawi" #: admin/manage-fields.php:412 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Malaysia" msgstr "Malaysia" #: admin/manage-fields.php:413 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Maldives" msgstr "Maldives" #: admin/manage-fields.php:414 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mali" msgstr "Mali" #: admin/manage-fields.php:415 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Malta" msgstr "Malta" #: admin/manage-fields.php:416 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Marshall Islands" msgstr "Marshall Islands" #: admin/manage-fields.php:417 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Martinique" msgstr "Martinique" #: admin/manage-fields.php:418 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritania" msgstr "Mauritania" #: admin/manage-fields.php:419 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritius" msgstr "Mauritius" #: admin/manage-fields.php:420 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mayotte" msgstr "Mayotte" #: admin/manage-fields.php:421 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mexico" msgstr "Mexico" #: admin/manage-fields.php:422 msgid "Micronesia" msgstr "Micronesia" #: admin/manage-fields.php:423 msgid "Moldova" msgstr "Moldova" #: admin/manage-fields.php:424 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Monaco" msgstr "Monaco" #: admin/manage-fields.php:425 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mongolia" msgstr "Mongolia" #: admin/manage-fields.php:426 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Montenegro" msgstr "Montenegro" #: admin/manage-fields.php:427 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Montserrat" msgstr "Montserrat" #: admin/manage-fields.php:428 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Morocco" msgstr "Morocco" #: admin/manage-fields.php:429 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mozambique" msgstr "Mozambique" #: admin/manage-fields.php:430 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Myanmar" msgstr "Myanmar" #: admin/manage-fields.php:431 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Namibia" msgstr "Namibia" #: admin/manage-fields.php:432 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nauru" msgstr "Nauru" #: admin/manage-fields.php:433 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nepal" msgstr "Nepal" #: admin/manage-fields.php:434 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Netherlands" msgstr "Netherlands" #: admin/manage-fields.php:435 #: front-end/extra-fields/select-country/select-country.php:10 msgid "New Caledonia" msgstr "New Caledonia" #: admin/manage-fields.php:436 #: front-end/extra-fields/select-country/select-country.php:10 msgid "New Zealand" msgstr "New Zealand" #: admin/manage-fields.php:437 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nicaragua" msgstr "Nicaragua" #: admin/manage-fields.php:438 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Niger" msgstr "Niger" #: admin/manage-fields.php:439 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nigeria" msgstr "Nigeria" #: admin/manage-fields.php:440 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Niue" msgstr "Niue" #: admin/manage-fields.php:441 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Norfolk Island" msgstr "Norfolk Island" #: admin/manage-fields.php:442 msgid "North Korea" msgstr "North Korea" #: admin/manage-fields.php:443 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: admin/manage-fields.php:444 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Norway" msgstr "Norway" #: admin/manage-fields.php:445 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Oman" msgstr "Oman" #: admin/manage-fields.php:446 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Pakistan" msgstr "Pakistan" #: admin/manage-fields.php:447 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Palau" msgstr "Palau" #: admin/manage-fields.php:448 msgid "Palestinian Territory" msgstr "Palestinian Territory" #: admin/manage-fields.php:449 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Panama" msgstr "Panama" #: admin/manage-fields.php:450 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: admin/manage-fields.php:451 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Paraguay" msgstr "Paraguay" #: admin/manage-fields.php:452 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Peru" msgstr "Peru" #: admin/manage-fields.php:453 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Philippines" msgstr "Philippines" #: admin/manage-fields.php:454 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Pitcairn" msgstr "Pitcairn" #: admin/manage-fields.php:455 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Poland" msgstr "Poland" #: admin/manage-fields.php:456 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Portugal" msgstr "Portugal" #: admin/manage-fields.php:457 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Puerto Rico" msgstr "Puerto Rico" #: admin/manage-fields.php:458 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Qatar" msgstr "Qatar" #: admin/manage-fields.php:459 msgid "Republic of the Congo" msgstr "Republic of the Congo" #: admin/manage-fields.php:460 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Reunion" msgstr "Reunion" #: admin/manage-fields.php:461 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Romania" msgstr "Romania" #: admin/manage-fields.php:462 msgid "Russia" msgstr "Russia" #: admin/manage-fields.php:463 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Rwanda" msgstr "Rwanda" #: admin/manage-fields.php:464 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: admin/manage-fields.php:465 msgid "Saint Helena" msgstr "Saint Helena" #: admin/manage-fields.php:466 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts and Nevis" #: admin/manage-fields.php:467 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Lucia" msgstr "Saint Lucia" #: admin/manage-fields.php:468 msgid "Saint Martin" msgstr "Saint Martin" #: admin/manage-fields.php:469 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre and Miquelon" #: admin/manage-fields.php:470 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent and the Grenadines" #: admin/manage-fields.php:471 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Samoa" msgstr "Samoa" #: admin/manage-fields.php:472 #: front-end/extra-fields/select-country/select-country.php:10 msgid "San Marino" msgstr "San Marino" #: admin/manage-fields.php:473 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sao Tome and Principe" msgstr "Sao Tome and Principe" #: admin/manage-fields.php:474 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: admin/manage-fields.php:475 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Senegal" msgstr "Senegal" #: admin/manage-fields.php:476 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Serbia" msgstr "Serbia" #: admin/manage-fields.php:477 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Seychelles" msgstr "Seychelles" #: admin/manage-fields.php:478 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sierra Leone" msgstr "Sierra Leone" #: admin/manage-fields.php:479 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Singapore" msgstr "Singapore" #: admin/manage-fields.php:480 msgid "Sint Maarten" msgstr "Sint Maarten" #: admin/manage-fields.php:481 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Slovakia" msgstr "Slovakia" #: admin/manage-fields.php:482 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Slovenia" msgstr "Slovenia" #: admin/manage-fields.php:483 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Solomon Islands" msgstr "Solomon Islands" #: admin/manage-fields.php:484 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Somalia" msgstr "Somalia" #: admin/manage-fields.php:485 #: front-end/extra-fields/select-country/select-country.php:10 msgid "South Africa" msgstr "South Africa" #: admin/manage-fields.php:486 #: front-end/extra-fields/select-country/select-country.php:10 msgid "South Georgia and the South Sandwich Islands" msgstr "South Georgia and the South Sandwich Islands" #: admin/manage-fields.php:487 msgid "South Korea" msgstr "South Korea" #: admin/manage-fields.php:488 #: front-end/extra-fields/select-country/select-country.php:10 msgid "South Sudan" msgstr "South Sudan" #: admin/manage-fields.php:489 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Spain" msgstr "Spain" #: admin/manage-fields.php:490 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sri Lanka" msgstr "Sri Lanka" #: admin/manage-fields.php:491 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sudan" msgstr "Sudan" #: admin/manage-fields.php:492 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Suriname" msgstr "Suriname" #: admin/manage-fields.php:493 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Svalbard and Jan Mayen" msgstr "Svalbard and Jan Mayen" #: admin/manage-fields.php:494 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Swaziland" msgstr "Swaziland" #: admin/manage-fields.php:495 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sweden" msgstr "Sweden" #: admin/manage-fields.php:496 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Switzerland" msgstr "Switzerland" #: admin/manage-fields.php:497 msgid "Syria" msgstr "Syria" #: admin/manage-fields.php:498 msgid "Taiwan" msgstr "Taiwan" #: admin/manage-fields.php:499 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tajikistan" msgstr "Tajikistan" #: admin/manage-fields.php:500 msgid "Tanzania" msgstr "Tanzania" #: admin/manage-fields.php:501 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Thailand" msgstr "Thailand" #: admin/manage-fields.php:502 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Togo" msgstr "Togo" #: admin/manage-fields.php:503 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tokelau" msgstr "Tokelau" #: admin/manage-fields.php:504 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tonga" msgstr "Tonga" #: admin/manage-fields.php:505 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Trinidad and Tobago" msgstr "Trinidad and Tobago" #: admin/manage-fields.php:506 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tunisia" msgstr "Tunisia" #: admin/manage-fields.php:507 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Turkey" msgstr "Turkey" #: admin/manage-fields.php:508 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Turkmenistan" msgstr "Turkmenistan" #: admin/manage-fields.php:509 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Islands" #: admin/manage-fields.php:510 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tuvalu" msgstr "Tuvalu" #: admin/manage-fields.php:511 msgid "U.S. Virgin Islands" msgstr "U.S. Virgin Islands" #: admin/manage-fields.php:512 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Uganda" msgstr "Uganda" #: admin/manage-fields.php:513 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ukraine" msgstr "Ukraine" #: admin/manage-fields.php:514 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United Arab Emirates" msgstr "United Arab Emirates" #: admin/manage-fields.php:515 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United Kingdom" msgstr "United Kingdom" #: admin/manage-fields.php:516 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United States" msgstr "United States" #: admin/manage-fields.php:517 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: admin/manage-fields.php:518 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Uruguay" msgstr "Uruguay" #: admin/manage-fields.php:519 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Uzbekistan" msgstr "Uzbekistan" #: admin/manage-fields.php:520 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Vanuatu" msgstr "Vanuatu" #: admin/manage-fields.php:521 msgid "Vatican" msgstr "Vatican" #: admin/manage-fields.php:522 msgid "Venezuela" msgstr "Venezuela" #: admin/manage-fields.php:523 msgid "Vietnam" msgstr "Vietnam" #: admin/manage-fields.php:524 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Wallis and Futuna" msgstr "Wallis and Futuna" #: admin/manage-fields.php:525 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Western Sahara" msgstr "Western Sahara" #: admin/manage-fields.php:526 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Yemen" msgstr "Yemen" #: admin/manage-fields.php:527 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Zambia" msgstr "Zambia" #: admin/manage-fields.php:528 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Zimbabwe" msgstr "Zimbabwe" #: admin/manage-fields.php:1216 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." msgstr "" #: assets/misc/plugin-compatibilities.php:237 msgid "Your account has to be confirmed by an administrator before you can log in." msgstr "" #: features/admin-approval/admin-approval.php:214 msgid "Your account has been successfully created!" msgstr "" #: features/functions.php:678 #: front-end/extra-fields/recaptcha/recaptcha.php:374 #: front-end/extra-fields/recaptcha/recaptcha.php:379 #: front-end/extra-fields/recaptcha/recaptcha.php:421 #: front-end/extra-fields/recaptcha/recaptcha.php:458 msgid "Please enter a (valid) reCAPTCHA value" msgstr "" #: front-end/extra-fields/recaptcha/recaptcha.php:421 msgid "Click the BACK button on your browser, and try again." msgstr "" #: front-end/extra-fields/upload/upload_helper_functions.php:78 #: front-end/extra-fields/upload/upload_helper_functions.php:87 msgid "Sorry, you cannot upload this file type for this field." msgstr "" #: front-end/extra-fields/upload/upload_helper_functions.php:94 msgid "An error occurred, please try again later." msgstr "" #: modules/user-listing/userlisting.php:282 msgid "More" msgstr "" #: modules/user-listing/userlisting.php:376 msgid "You do not have permission to view this user list." msgstr "" #: modules/user-listing/userlisting.php:389 msgid "You do not have the required user role to view this user list." msgstr "" #: modules/user-listing/userlisting.php:2186 msgid "Ascending" msgstr "" #: modules/user-listing/userlisting.php:2187 msgid "Descending" msgstr "" #: admin/add-ons.php:148 admin/add-ons.php:248 #: admin/pms-cross-promotion.php:134 admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "すぐにダウンロードする" #: admin/admin-functions.php:200 msgid "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. " msgstr " %1$s をお楽しみいただけましたら、より多くの方に知ってもらえるようWordPress.orgで評価をお願いいたします。ユーザが増えることで、より多くの機能、少ないバグ、そしてより良いサポートが実現します。" #: admin/manage-fields.php:80 msgid "Choose one of the supported field types" msgstr "対応した記入欄タイプを選択してください" #: admin/manage-fields.php:82 msgid ". Extra Field Types are available in Hobbyist or PRO versions." msgstr "プロフィールの項目追加はHobbyistとPROバージョンでのみ利用可能です" #: admin/manage-fields.php:129 msgid "Site Key" msgstr "サイト鍵" #: admin/manage-fields.php:129 msgid "The site key from Google, www.google.com/recaptcha" msgstr "Googleからのサイトキー、www.google.com/recaptcha" #: admin/manage-fields.php:130 msgid "Secret Key" msgstr "Secret Key" #: admin/manage-fields.php:130 msgid "The secret key from Google, www.google.com/recaptcha" msgstr "GoogleからのSecret Key, www.google.com/recaptcha" #: admin/manage-fields.php:1020 msgid "You must enter the site key\n" msgstr "サイトキーを入力してください\n" #: admin/manage-fields.php:1022 msgid "You must enter the secret key\n" msgstr "秘密キー(Secret Key)を入力してください\n" #: admin/add-ons.php:10 admin/add-ons.php:32 msgid "Add-Ons" msgstr "アドオン" #: admin/add-ons.php:34 admin/add-ons.php:129 admin/add-ons.php:231 #: admin/pms-cross-promotion.php:78 admin/pms-cross-promotion.php:114 #: admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "アクティベート" #: admin/add-ons.php:36 admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "ダウンロードとインストール中..." #: admin/add-ons.php:37 admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "インストール完了" #: admin/add-ons.php:39 msgid "Add-On is Active" msgstr "アドオンは有効です。" #: admin/add-ons.php:40 msgid "Add-On has been activated" msgstr "アドオンが有効化されました" #: admin/add-ons.php:41 admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "インストール再試行" #: admin/add-ons.php:43 admin/add-ons.php:140 msgid "Add-On is active" msgstr "アドオンは 有効です" #: admin/add-ons.php:44 admin/add-ons.php:138 msgid "Add-On is inactive" msgstr "アドオンは 無効です" #: admin/add-ons.php:46 admin/add-ons.php:133 admin/add-ons.php:235 #: admin/pms-cross-promotion.php:90 admin/pms-cross-promotion.php:118 #: admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "ディアクティベート" #: admin/add-ons.php:47 msgid "Add-On has been deactivated." msgstr "アドオンは無効化されました。" #: admin/add-ons.php:59 msgid "Something went wrong, we could not connect to the server. Please try again later." msgstr "何らかの原因でサーバーに接続できませんでした。後ほど再度お試しください。" #: admin/pms-cross-promotion.php:137 admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "すぐにインストールする" #: admin/add-ons.php:153 admin/add-ons.php:251 #: admin/pms-cross-promotion.php:141 admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "お使いのProfile Builderと互換性があります。" #: admin/add-ons.php:162 msgid "Upgrade Profile Builder" msgstr "Profile Builderを更新" #: admin/add-ons.php:163 msgid "Not compatible with Profile Builder" msgstr "Profile Builderと互換性がありません" #: admin/add-ons.php:171 msgid "Not compatible with your version of Profile Builder." msgstr "お使いのProfile Builderバージョンとは互換性がありません。" #: admin/add-ons.php:172 msgid "Minimum required Profile Builder version:" msgstr "対応するProfile Builderの最低バージョン:" #: admin/add-ons.php:177 msgid "Could not install add-on. Retry or install manually." msgstr "アドオンをインストールできませんでした。再度実行するか手動インストールをお試しください。" #: front-end/default-fields/email/email.php:51 msgid "You must enter a valid email address." msgstr "正しいメールアドレスを入力してください。" #: front-end/default-fields/username/username.php:52 #: front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "このユーザ名には使用できない文字が含まれています。" #: front-end/default-fields/username/username.php:52 #: front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "有効なユーザ名を入力してください。" #: front-end/extra-fields/user-role/user-role.php:72 #: front-end/extra-fields/user-role/user-role.php:85 msgid "Only administrators can see this field on edit profile forms." msgstr "プロフィール編集フォームのこのフィールドを見られるのは管理者のみです。" #: front-end/extra-fields/user-role/user-role.php:81 msgid "As an administrator you cannot change your role." msgstr "管理者として、あなた自身の権限は変更できません。" #: modules/email-customizer/admin-email-customizer.php:117 msgid "" "\n" "

            {{username}} has requested a password change via the password reset feature.

            \n" "

            His/her new password is: {{password}}

            \n" msgstr "" "\n" "

            {{username}} がパスワードリセット機能によるパスワードの変更を要求しました。

            \n" "

            彼/彼女の新しいパスワードは {{password}}です。

            \n" #: modules/email-customizer/admin-email-customizer.php:141 msgid "Admin Notification for User Password Reset" msgstr "ユーザのパスワードリセットに対する通知" #: modules/email-customizer/email-customizer.php:46 msgid "Reset Key" msgstr "リセットキー" #: modules/email-customizer/email-customizer.php:47 msgid "Reset Url" msgstr "リセットURL" #: modules/email-customizer/email-customizer.php:48 msgid "Reset Link" msgstr "リセットリンク" #: modules/email-customizer/user-email-customizer.php:204 msgid "" "\n" "

            Someone requested that the password be reset for the following account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            \n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" msgstr "" "\n" "

            次のアカウントのパスワードリセットが要求されました: {{site_name}}
            \n" "ユーザ名: {{username}}

            \n" "

            このこれが間違いなら単に無視してください。何も処理されません。

            \n" "

            パスワードリセットを実行するには、下記のアドレスにアクセスしてください。:
            \n" "{{{reset_link}}}

            \n" #: modules/email-customizer/user-email-customizer.php:218 msgid "[{{site_name}}] Password Reset" msgstr "[{{site_name}}] パスワードリセット" #: modules/email-customizer/user-email-customizer.php:229 msgid "Password Reset Email" msgstr "パスワードリセットメール" #: modules/email-customizer/user-email-customizer.php:235 msgid "" "\n" "

            You have successfully reset your password to: {{password}}

            \n" msgstr "" "\n" "

            以下のパスワードにリセットしました: {{password}}

            \n" #: modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset Successfully" msgstr "[{{site_name}}] パスワードリセットは完了しました" #: modules/email-customizer/user-email-customizer.php:256 msgid "Password Reset Success Email" msgstr "パスワードリセット成功メール" #: modules/user-listing/userlisting.php:159 msgid "User Nicename" msgstr "ニックネーム" #: modules/user-listing/userlisting.php:499 msgid "None" msgstr "なし" #: admin/admin-functions.php:132 msgid "ERROR: The password must have the minimum length of %s characters" msgstr "エラー: パスワードは最低%s文字必要です。" #: admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr "エラー: パスワードは最低%s文字必要です。" #: admin/general-settings.php:163 msgid "Username and Email" msgstr "ユーザー名とメールアドレス" #: admin/general-settings.php:168 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "\"ユーザ名とメールアドレス\" - ユーザーはユーザー名とメールアドレスのどちらでもログインできます。" #: admin/general-settings.php:169 msgid "\"Username\" - users can Log In only with Username." msgstr "\"ユーザー名\" - ユーザーはユーザー名でのみログインできます。" #: admin/general-settings.php:170 msgid "\"Email\" - users can Log In only with Email." msgstr "\"メールアドレス\" - ユーザはメールアドレスでのみログインできます。" #: admin/manage-fields.php:122 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "アップロード可能にしたいファイル拡張子を指定してください。
            例: .ext1,.ext2,.ext3
            指定しない場合は.jpg,.jpeg,.gif,.png (.*)となります。" #: admin/manage-fields.php:123 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)" msgstr "アップロード可能にしたいファイル拡張子を指定してください。
            例: .ext1,.ext2,.ext3
            指定しない場合はWordPressがデフォルトで許可する拡張子になります (.*)。" #: admin/manage-fields.php:133 msgid "User Roles" msgstr "ユーザ権限" #: admin/manage-fields.php:133 msgid "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "ユーザーに提示するユーザー権限を選択してください。 ( ドラッグ&ドロップして順序を入れ替え )" #: admin/manage-fields.php:134 msgid "User Roles Order" msgstr "ユーザ権限順" #: admin/manage-fields.php:134 msgid "Save the user role order from the user roles checkboxes" msgstr "" #: admin/manage-fields.php:1125 msgid "Please select at least one user role\n" msgstr "最低1つのユーザ権限を選択してください\n" #: admin/register-version.php:22 msgid "Profile Builder Register" msgstr "Profile Builder 登録" #: admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "シリアル番号がまもなく期限切れです!" #: admin/register-version.php:81 msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr "あなたのシリアル番号はもうすぐ期限切れとなります。%1$sライセンス更新%2$sをお願いします。" #: admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr "シリアル番号の有効期限が切れました。%1$s ライセンス更新%2$sを行ってください。." #: assets/lib/wck-api/wordpress-creation-kit.php:334 msgid "Add Entry" msgstr "エントリを追加" #: features/email-confirmation/class-email-confirmation.php:91 msgid "show" msgstr "表示" #: features/functions.php:736 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" msgstr "ユーザがProfile Builderを通じてあなたのウェブサイトに登録できるようにするには、ユーザ登録を有効化する必要があります。%1$sネットワークの設定%2$sを開き、「登録の設定」の下の「ユーザーアカウントの新規登録を許可する。」をチェックしてください。 %3$s非表示%4$s" #: front-end/class-formbuilder.php:643 msgid "User to edit:" msgstr "編集するユーザ:" #: front-end/default-fields/password/password.php:46 front-end/recover.php:254 msgid "The password must have the minimum length of %s characters" msgstr "パスワードは最低%s文字必要です。" #: front-end/default-fields/password/password.php:50 front-end/recover.php:258 msgid "The password must have a minimum strength of %s" msgstr "パスワードの強度が最低「%s」である必要があります。" #: front-end/extra-fields/user-role/user-role.php:118 msgid "You cannot register this user role" msgstr "このユーザー権限は登録できません。" #: front-end/login.php:153 msgid "username or email" msgstr "ユーザー名またはメールアドレス" #: front-end/login.php:222 msgid "Username or Email" msgstr "ユーザー名またはメールアドレス" #: front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "%s さんとしてログイン中です。" #: front-end/logout.php:15 msgid "Log out »" msgstr "ログアウト »" #: modules/custom-redirects/custom_redirects_admin.php:92 #: modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "権限グループ" #: modules/user-listing/userlisting.php:2100 msgid "View all extra shortcode parameters" msgstr "全てのショートコード用パラメーターを見る" #: modules/user-listing/userlisting.php:2114 msgid "displays only the users that you specified the user_id for" msgstr "user_idを指定したユーザのみを表示" #: modules/user-listing/userlisting.php:2120 msgid "displays all users except the ones you specified the user_id for" msgstr "user_idで指定した以外の全てのユーザを表示" #: features/functions.php:566 msgid "Minimum length of %d characters" msgstr "最低%d文字必要です。" #: front-end/class-formbuilder.php:135 front-end/class-formbuilder.php:138 msgid "This message is only visible by administrators" msgstr "このメッセージは管理者のみ閲覧できます" #: modules/user-listing/userlisting.php:413 msgid "User not found" msgstr "ユーザーが見つかりませんでした" #: modules/email-customizer/admin-email-customizer.php:38 #: modules/email-customizer/user-email-customizer.php:38 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "使用可能なタグは {{reply_to}} と {{site_name}} です。" #: admin/admin-bar.php:48 msgid "Choose which user roles view the admin bar in the front-end of the website." msgstr "どの権限のユーザのサイト閲覧時に管理バーが表示されるか選択してください。" #: admin/manage-fields.php:127 msgid "Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes" msgstr "選択肢に対応する値をカンマで区切って入力してください。
            この値はhiddenフォームで使われ、ユーザに見えないのでどんなもの構いませんが、特殊文字とアポストロフィは含めない方が良いでしょう。" #: admin/manage-fields.php:1052 msgid "The meta-name cannot be empty\n" msgstr "メタネームは空欄にはできません\n" #: admin/register-version.php:69 msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received" msgstr "%sをご購入いただきましたら、こちらでお受け取りになったシリアルナンバーを登録してください。" #: admin/register-version.php:243 msgid "

            Your Profile Builder serial number is invalid or missing.
            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

            " msgstr "

            Profile Builderのシリアルナンバーが未登録か誤っています。
            %1$sライセンス登録%2$s から登録し、自動アップデートやサポートをお受け取りください。まだライセンスキーをお持ちでない場合はこちらで購入できます。%3$s今すぐ購入%4$s

            " #: assets/lib/wck-api/fields/country select.php:14 #: assets/lib/wck-api/fields/cpt select.php:17 #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36 #: front-end/extra-fields/select-cpt/select-cpt.php:60 msgid "...Choose" msgstr "...選択してください" #: features/class-list-table.php:526 features/class-list-table.php:942 msgid "1 item" msgid_plural "%s items" msgstr[0] "1アイテム" #: features/functions.php:552 msgid "Very Weak" msgstr "とても弱い" #: features/functions.php:640 msgid "This field is required" msgstr "この欄は必須です" #: features/functions.php:704 msgid "Cancel" msgstr "キャンセル" #: features/functions.php:740 msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s" msgstr "ユーザがProfile Builderを通じてあなたのウェブサイトに登録できるようにするには、ユーザ登録を有効化する必要があります。%1$s設定 -> 一般%2$sタブを開き、「メンバーシップ」の「だれでもユーザー登録ができるようにする」をチェックしてください。%3$s非表示%4$s" #: front-end/login.php:144 msgid "Invalid username." msgstr "不適格なユーザ名" #: front-end/login.php:149 front-end/login.php:153 msgid "username" msgstr "ユーザー名" #: front-end/login.php:149 msgid "email" msgstr "メール" #: front-end/login.php:256 msgid "Lost your password?" msgstr "パスワードをお忘れですか?" #: index.php:34 msgid " is also activated. You need to deactivate it before activating this version of the plugin." msgstr "が有効になっています。このバージョンのプラグインを有効にするには、それを無効化する必要があります。" #: modules/email-customizer/admin-email-customizer.php:54 #: modules/email-customizer/user-email-customizer.php:54 msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email" msgstr "正しいメールアドレスか{{reply_to}}タグ(標準では管理者のメールアドレス)を入れてください。" #: features/email-confirmation/email-confirmation.php:573 #: features/email-confirmation/email-confirmation.php:582 #: modules/email-customizer/email-customizer.php:487 #: modules/email-customizer/email-customizer.php:494 #: modules/email-customizer/email-customizer.php:508 msgid "Your selected password at signup" msgstr "登録時に選択したパスワード" #: modules/email-customizer/user-email-customizer.php:38 msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save." msgstr "これらの設定を変更すると「メール文面編集(ユーザ宛)」設定ページにも反映されます。" #: modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "フォームが空欄です。" #: modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "全項目削除" #: modules/multiple-forms/multiple-forms.php:406 msgid "Delete all" msgstr "全削除" #: modules/user-listing/userlisting.php:1592 msgid "Choose..." msgstr "選択..." #: modules/user-listing/userlisting.php:2196 msgid "Set the number of users to be displayed on every paginated part of the all-userlisting" msgstr "全てのユーザ一覧のページネーション毎のユーザ表示数を指定してください。" #: admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "公開ページでの管理バーの表示/非表示" #: admin/admin-bar.php:10 admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "管理バー設定" #: admin/admin-bar.php:57 msgid "User-Role" msgstr "ユーザー権限" #: admin/admin-bar.php:58 msgid "Visibility" msgstr "表示" #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "デフォルトに従う" #: admin/admin-bar.php:74 msgid "Show" msgstr "表示" #: admin/admin-bar.php:75 modules/user-listing/userlisting.php:1537 msgid "Hide" msgstr "非表示" #: admin/admin-bar.php:86 admin/general-settings.php:208 #: admin/register-version.php:95 features/functions.php:697 #: modules/modules.php:127 msgid "Save Changes" msgstr "変更を保存" #: admin/admin-functions.php:37 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 )" msgstr "ログインはメールアドレスを用いるよう設定されました. この欄は公開部分には表示されません! ( この設定は \"%s\" タブで変更できます )" #: admin/admin-functions.php:37 admin/general-settings.php:10 #: admin/general-settings.php:38 msgid "General Settings" msgstr "一般設定" #: admin/admin-functions.php:137 admin/general-settings.php:194 msgid "Very weak" msgstr "とても弱い" #: admin/admin-functions.php:137 admin/general-settings.php:195 #: features/functions.php:552 msgid "Weak" msgstr "弱い" #: admin/admin-functions.php:137 admin/general-settings.php:196 #: features/functions.php:552 msgid "Medium" msgstr "中程度" #: admin/admin-functions.php:137 admin/general-settings.php:197 #: features/functions.php:552 msgid "Strong" msgstr "強固" #: admin/admin-functions.php:187 msgid "Add Field" msgstr "欄を追加" #: admin/admin-functions.php:189 #: modules/class-mustache-templates/class-mustache-templates.php:390 msgid "Save Settings" msgstr "設定を保存" #: admin/basic-info.php:10 msgid "Basic Information" msgstr "基本情報" #: admin/basic-info.php:29 msgid "Version %s" msgstr "バージョン %s" #: admin/basic-info.php:30 msgid "Profile Builder " msgstr "Profile Builder " #: admin/basic-info.php:31 msgid "The best way to add front-end registration, edit profile and login forms." msgstr "登録、プロフィール編集、ログインフォームをサイトに追加する最高の選択肢です。" #: admin/basic-info.php:33 msgid "For Modern User Interaction" msgstr "現代的なユーザインタラクション" #: admin/basic-info.php:36 features/login-widget/login-widget.php:59 msgid "Login" msgstr "ログイン" #: admin/basic-info.php:40 msgid "Registration" msgstr "利用登録" #: admin/basic-info.php:44 msgid "Edit Profile" msgstr "プロフィール編集" #: admin/basic-info.php:51 msgid "Extra Features" msgstr "追加機能" #: admin/basic-info.php:52 msgid "Features that give you more control over your users, increased security and help you fight user registration spam." msgstr "サイトユーザに関する操作権をあなたに与え、セキュリティを強化し、登録スパムと戦うお手伝いをする追加機能を備えています。" #: admin/basic-info.php:53 msgid "Enable extra features" msgstr "追加機能を設定" #: admin/basic-info.php:57 msgid "Recover Password" msgstr "パスワード忘れ対応" #: admin/basic-info.php:61 msgid "Admin Approval (*)" msgstr "管理者承認 (*)" #: admin/basic-info.php:62 msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI." msgstr "誰がこのサイトを利用できるか管理者が選別します。メールでの通知を受け取るか、WordPress UI上でまとめて承認することができます。" #: admin/basic-info.php:65 msgid "Email Confirmation" msgstr "メールアドレス確認" #: admin/basic-info.php:66 msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address." msgstr "本物のメールアドレスによる登録を確実にします。登録時、ユーザはメールアドレス確認の通知メールを受け取ります。" #: admin/basic-info.php:69 msgid "Minimum Password Length and Strength Meter" msgstr "最低パスワード長と強度メーター" #: admin/basic-info.php:70 msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength." msgstr "最低パスワード文字数とパスワード強度を設定することで、単純すぎるパスワードの使用を防止できます。" #: admin/basic-info.php:73 msgid "Login with Email or Username" msgstr "メールアドレスまたはユーザー名でログイン" #: admin/basic-info.php:74 msgid "Allow users to log in with their email or username when accessing your site." msgstr "あなたのサイトにユーザがアクセスする際、メールアドレスまたはユーザ名でログインできます。" #: admin/basic-info.php:87 msgid "Customize Your Forms The Way You Want (*)" msgstr "フォームも自由自在にカスタマイズ (*)" #: admin/basic-info.php:88 msgid "With Extra Profile Fields you can create the exact registration form your project needs." msgstr "プロフィール項目追加機能で、登録フォームに必要な欄を追加することができます。" #: admin/basic-info.php:90 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "プロフィールの項目追加はHobbyistとPROバージョンでのみ利用可能です" #: admin/basic-info.php:92 msgid "Get started with extra fields" msgstr "追加記入欄を使用" #: admin/basic-info.php:95 msgid "Avatar Upload" msgstr "アバター画像アップロード" #: admin/basic-info.php:96 msgid "Generic Uploads" msgstr "ファイルアップロード" #: admin/basic-info.php:97 msgid "Agree To Terms Checkbox" msgstr "利用許諾チェックボックス" #: admin/basic-info.php:98 msgid "Datepicker" msgstr "日付ピッカー" #: admin/basic-info.php:101 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: admin/basic-info.php:102 msgid "Country Select" msgstr "国選択" #: admin/basic-info.php:104 msgid "Timezone Select" msgstr "タイムゾーン選択" #: admin/basic-info.php:108 msgid "Input / Hidden Input" msgstr "テキスト(一行)/不可視" #: admin/basic-info.php:110 msgid "Checkbox" msgstr "チェックボックス" #: admin/basic-info.php:111 msgid "Select" msgstr "プルダウンメニュー" #: admin/basic-info.php:112 msgid "Radio Buttons" msgstr "ラジオボタン" #: admin/basic-info.php:113 msgid "Textarea" msgstr "テキスト(複数行)" #: admin/basic-info.php:125 msgid "Powerful Modules (**)" msgstr "強力な追加モジュール (**)" #: admin/basic-info.php:126 msgid "Everything you will need to manage your users is probably already available using the Pro Modules." msgstr "あなたのユーザを管理するのに必要なものが、PROバージョンには既に用意されているでしょう。" #: admin/basic-info.php:128 msgid "Enable your modules" msgstr "モジュール設定" #: admin/basic-info.php:131 msgid "Find out more about PRO Modules" msgstr "PROバージョンについて詳しく見る" #: admin/basic-info.php:136 modules/modules.php:89 #: modules/user-listing/userlisting.php:11 #: modules/user-listing/userlisting.php:12 #: modules/user-listing/userlisting.php:17 #: modules/user-listing/userlisting.php:23 msgid "User Listing" msgstr "ユーザー一覧表示" #: admin/basic-info.php:138 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." msgstr "" #: admin/basic-info.php:144 msgid "Email Customizer" msgstr "メール文面編集" #: admin/basic-info.php:145 msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval." msgstr "新規登録、Eメール確認時、管理者承認/不承認などユーザや管理者宛に送信される全てのメール文面をカスタマイズできます。" #: admin/basic-info.php:148 #: modules/custom-redirects/custom_redirects_admin.php:32 #: modules/custom-redirects/custom_redirects_admin.php:33 #: modules/modules.php:110 msgid "Custom Redirects" msgstr "カスタム・リダイレクト" #: admin/basic-info.php:149 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." msgstr "一般ユーザにWordPressダッシュボードを見せなくし、ログイン後、登録後などに任意の公開ページに簡単にリダイレクトできます。" #: admin/basic-info.php:154 modules/modules.php:75 msgid "Multiple Registration Forms" msgstr "複数の登録フォーム" #: admin/basic-info.php:155 msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users." msgstr "ユーザの権限毎に異なる記入欄を備えた個別の登録フォームを用意することができます。様々なユーザタイプ毎に異なる情報を取得することが可能です。" #: admin/basic-info.php:158 modules/modules.php:82 msgid "Multiple Edit-profile Forms" msgstr "複数のプロフィール編集フォーム" #: admin/basic-info.php:159 msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles." msgstr "ユーザの権限毎に異なる記入欄を備えた個別のプロフィール編集フォームを用意することができます。様々なユーザタイプ毎に異なる情報を記入させることが可能です。" #: admin/basic-info.php:187 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr " *印の項目は%1$sHobbyistとProバージョン%2$sでのみ利用可能です。" #: admin/basic-info.php:188 msgid "** only available in the %1$sPro version%2$s." msgstr "**印の項目は%1$sProバージョン%2$sでのみ利用可能です。" #: admin/general-settings.php:42 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "Profile Builder固有のCSSを公開ページで読み込む:" #: admin/general-settings.php:45 admin/general-settings.php:58 #: admin/general-settings.php:107 #: 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:2201 msgid "Yes" msgstr "はい" #: admin/general-settings.php:47 msgid "You can find the default file here: %1$s" msgstr "初期ファイルはこちら: %1$s" #: admin/general-settings.php:54 msgid "\"Email Confirmation\" Activated:" msgstr "\"Eメール確認\"機能 有効化:" #: admin/general-settings.php:59 admin/general-settings.php:108 #: modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:229 #: modules/multiple-forms/register-forms.php:230 msgid "No" msgstr "いいえ" #: admin/general-settings.php:64 msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s." msgstr "未確認のメールアドレス一覧は、%1$sユーザー > ユーザー一覧 > アドレス未確認ユーザー%2$s で確認できます。" #: admin/general-settings.php:72 msgid "\"Email Confirmation\" Landing Page:" msgstr "\"Eメール確認\"機能 ランディングページ:" #: admin/general-settings.php:77 msgid "Existing Pages" msgstr "存在するページ" #: admin/general-settings.php:92 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." msgstr "Eメール確認後にリダイレクトされるページを指定してください。これは登録ページと違っていてもよく、またいつでも変更できます。なにも指定していない場合、シンプルは確認ページが表示されます。" #: admin/general-settings.php:103 msgid "\"Admin Approval\" Activated:" msgstr "\"管理者承認\" 機能 有効化:" #: admin/general-settings.php:111 msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "ユーザーの一覧は %1$sユーザー > ユーザー一覧 > 監視者承認%2$sで見ることができます。" #: admin/general-settings.php:149 msgid "\"Admin Approval\" Feature:" msgstr "\"管理者承認\" 機能:" #: admin/general-settings.php:152 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." msgstr "誰がこのサイトを利用できるか管理者が選別します。メールでの通知を受け取るか、WordPress UI上でまとめて承認することができます。この機能は%1$sHobbyist または PRO バージョン%2$sで有効化できます。" #: admin/general-settings.php:159 msgid "Allow Users to Log in With:" msgstr "ユーザーログイン方法:" #: admin/general-settings.php:164 admin/manage-fields.php:198 #: features/admin-approval/class-admin-approval.php:166 #: features/email-confirmation/class-email-confirmation.php:167 #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218 #: modules/custom-redirects/custom_redirects_admin.php:56 #: modules/email-customizer/email-customizer.php:28 #: modules/user-listing/userlisting.php:102 #: modules/user-listing/userlisting.php:277 #: modules/user-listing/userlisting.php:730 #: modules/user-listing/userlisting.php:2152 msgid "Username" msgstr "ユーザー名" #: admin/general-settings.php:165 front-end/login.php:215 #: modules/email-customizer/email-customizer.php:29 #: modules/user-listing/userlisting.php:736 #: modules/user-listing/userlisting.php:2153 msgid "Email" msgstr "メールアドレス" #: admin/general-settings.php:177 msgid "Minimum Password Length:" msgstr "最低パスワード長:" #: admin/general-settings.php:182 msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit" msgstr "パスワードの最低文字数を入力。指定しない場合は空欄。" #: admin/general-settings.php:189 msgid "Minimum Password Strength:" msgstr "パスワードの最低強度:" #: admin/general-settings.php:193 msgid "Disabled" msgstr "無効" #: admin/manage-fields.php:12 msgid "Manage Fields" msgstr "記入欄設定" #: admin/manage-fields.php:13 msgid "Manage Default and Extra Fields" msgstr "記入欄設定" #: admin/manage-fields.php:116 msgid "Field Title" msgstr "欄名称" #: admin/manage-fields.php:116 msgid "Title of the field" msgstr "欄の名称" #: admin/manage-fields.php:117 #: modules/multiple-forms/edit-profile-forms.php:245 #: modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "記入欄" #: admin/manage-fields.php:118 msgid "Meta-name" msgstr "メタネーム" #: admin/manage-fields.php:119 #: modules/custom-redirects/custom_redirects_admin.php:65 #: modules/custom-redirects/custom_redirects_admin.php:95 #: modules/custom-redirects/custom_redirects_admin.php:114 #: modules/custom-redirects/custom_redirects_admin.php:139 #: modules/multiple-forms/edit-profile-forms.php:246 #: modules/multiple-forms/register-forms.php:267 msgid "ID" msgstr "ID" #: admin/manage-fields.php:119 #: modules/multiple-forms/edit-profile-forms.php:246 #: modules/multiple-forms/register-forms.php:267 msgid "A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be edited" msgstr "この記入欄固有の自動生成されたIDです
            フィルターでこの要素を指し示すのに使用できます。
            編集不可" #: admin/manage-fields.php:120 msgid "Description" msgstr "説明" #: admin/manage-fields.php:120 msgid "Enter a (detailed) description of the option for end users to read
            Optional" msgstr "一般ユーザが何を記入すれば良いかの詳しい説明を記入してください(任意)" #: admin/manage-fields.php:121 msgid "Row Count" msgstr "行数" #: admin/manage-fields.php:121 msgid "Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5" msgstr "'Textarea'型記入欄の行数
            指定しない場合は5行になります。" #: admin/manage-fields.php:122 msgid "Allowed Image Extensions" msgstr "対応画像拡張子" #: admin/manage-fields.php:123 msgid "Allowed Upload Extensions" msgstr "アップロード可能な拡張子" #: admin/manage-fields.php:124 msgid "Avatar Size" msgstr "アバターサイズ" #: admin/manage-fields.php:124 msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100" msgstr "アバター画像サイズの値を入力してください(20から200の間)
            指定しない場合のデフォルトは100です。" #: admin/manage-fields.php:125 msgid "Date-format" msgstr "日付様式" #: admin/manage-fields.php:126 msgid "Terms of Agreement" msgstr "利用許諾" #: admin/manage-fields.php:126 msgid "Enter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>" msgstr "ユーザに読ませたい利用許諾書を入力します。
            リンクは標準的なHTML文法で挿入できます。: <a href=\"custom_url\">custom_text</a>" #: admin/manage-fields.php:127 msgid "Options" msgstr "選択肢(記録)" #: admin/manage-fields.php:128 msgid "Labels" msgstr "選択肢(表示)" #: admin/manage-fields.php:128 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "選択肢をカンマで区切って入力してください。
            ユーザに提示される値です。" #: admin/manage-fields.php:135 msgid "Default Value" msgstr "初期値" #: admin/manage-fields.php:135 msgid "Default value of the field" msgstr "記入欄のデフォルト値" #: admin/manage-fields.php:136 admin/manage-fields.php:138 #: admin/manage-fields.php:139 admin/manage-fields.php:140 msgid "Default Option" msgstr "デフォルトの選択肢" #: admin/manage-fields.php:136 msgid "Specify the option which should be selected by default" msgstr "デフォルトで選択状態にしたい選択肢を指定してください。" #: admin/manage-fields.php:137 msgid "Default Option(s)" msgstr "デフォルトの選択肢(複数)" #: admin/manage-fields.php:137 msgid "Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)" msgstr "デフォルトで選択状態にしたい選択肢を指定してください。
            複数の値を指定する場合は',' (半角カンマ)で区切ってください。" #: admin/manage-fields.php:151 msgid "Default Content" msgstr "デフォルトの値" #: admin/manage-fields.php:151 msgid "Default value of the textarea" msgstr "テキストエリアのデフォルト値" #: admin/manage-fields.php:158 msgid "Required" msgstr "必須" #: admin/manage-fields.php:158 msgid "Whether the field is required or not" msgstr "この記入欄が必須かどうか" #: admin/manage-fields.php:159 msgid "Overwrite Existing" msgstr "上書き" #: admin/manage-fields.php:159 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
            Use this at your own risk" msgstr "「Yes」を指定すると、データベース上で同じmeta-nameをもつ他のフィールドを上書きします。
            自己責任でお使いください。" #: admin/manage-fields.php:165 msgid "Field Properties" msgstr "記入欄の属性" #: admin/manage-fields.php:178 msgid "Registration & Edit Profile" msgstr "プロファイルの登録と編集" #: admin/manage-fields.php:197 msgid "Name" msgstr "名前" #: admin/manage-fields.php:198 msgid "Usernames cannot be changed." msgstr "ユーザ名は変更できません。" #: admin/manage-fields.php:199 msgid "First Name" msgstr "名" #: admin/manage-fields.php:200 msgid "Last Name" msgstr "姓" #: admin/manage-fields.php:201 modules/user-listing/userlisting.php:769 #: modules/user-listing/userlisting.php:2160 msgid "Nickname" msgstr "ニックネーム" #: admin/manage-fields.php:202 msgid "Display name publicly as" msgstr "この名前で公開表示" #: admin/manage-fields.php:203 msgid "Contact Info" msgstr "連絡先" #: admin/manage-fields.php:204 #: features/admin-approval/class-admin-approval.php:169 #: features/email-confirmation/class-email-confirmation.php:168 #: modules/user-listing/userlisting.php:108 msgid "E-mail" msgstr "メールアドレス" #: admin/manage-fields.php:205 modules/email-customizer/email-customizer.php:32 #: modules/user-listing/userlisting.php:111 #: modules/user-listing/userlisting.php:751 #: modules/user-listing/userlisting.php:2154 msgid "Website" msgstr "Webサイト" #: admin/manage-fields.php:209 msgid "AIM" msgstr "AIM" #: admin/manage-fields.php:210 msgid "Yahoo IM" msgstr "Yahoo IM" #: admin/manage-fields.php:211 msgid "Jabber / Google Talk" msgstr "Jabber / Google Talk" #: admin/manage-fields.php:214 msgid "About Yourself" msgstr "あなたについて" #: admin/manage-fields.php:215 modules/user-listing/userlisting.php:114 #: modules/user-listing/userlisting.php:754 #: modules/user-listing/userlisting.php:2155 msgid "Biographical Info" msgstr "略歴" #: admin/manage-fields.php:215 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "" #: admin/manage-fields.php:216 front-end/recover.php:73 #: modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "パスワード" #: admin/manage-fields.php:216 msgid "Type your password." msgstr "パスワードを入力してください。" #: admin/manage-fields.php:217 front-end/recover.php:74 msgid "Repeat Password" msgstr "パスワード(確認)" #: admin/manage-fields.php:217 msgid "Type your password again. " msgstr "パスワードを再入力してください。" #: admin/manage-fields.php:977 admin/manage-fields.php:1134 msgid "You must select a field\n" msgstr "記入欄を選択してください\n" #: admin/manage-fields.php:987 msgid "Please choose a different field type as this one already exists in your form (must be unique)\n" msgstr "他の記入欄タイプを選択してください(既にあるものと重複はできません)。\n" #: admin/manage-fields.php:998 msgid "The entered avatar size is not between 20 and 200\n" msgstr "入力したアバターサイズが20から200の間ではありません\n" #: admin/manage-fields.php:1001 msgid "The entered avatar size is not numerical\n" msgstr "入力されたアバターサイズが数値ではありませんl\n" #: admin/manage-fields.php:1009 msgid "The entered row number is not numerical\n" msgstr "入力された行数が数値ではありませんl\n" #: admin/manage-fields.php:1012 msgid "You must enter a value for the row number\n" msgstr "数字で入力してください。\n" #: admin/manage-fields.php:1033 msgid "The entered value for the Datepicker is not a valid date-format\n" msgstr "日付欄に指定された値が正しい日付書式ではありません\n" #: admin/manage-fields.php:1036 msgid "You must enter a value for the date-format\n" msgstr "正しい書式で日付を入力してください。\n" #: admin/manage-fields.php:1064 admin/manage-fields.php:1072 #: admin/manage-fields.php:1083 msgid "That meta-name is already in use\n" msgstr "そのメタネームは既に存在します。\n" #: admin/manage-fields.php:1114 msgid "The following option(s) did not coincide with the ones in the options list: %s\n" msgstr "以下の選択肢が一覧のにあるものと一致しません: %s\n" #: admin/manage-fields.php:1118 msgid "The following option did not coincide with the ones in the options list: %s\n" msgstr "以下の選択肢が一覧のにあるものと一致しません: %s\n" #: admin/manage-fields.php:1141 msgid "That field is already added in this form\n" msgstr "この記入欄はこのフォームに追加済みです\n" #: admin/manage-fields.php:1190 msgid "
            Title
            Type
            Meta Name
            Required
            " msgstr "
            ラベル
            タイプ
            メタネーム
            必須指定
            " #: admin/manage-fields.php:1190 #: assets/lib/wck-api/wordpress-creation-kit.php:438 #: assets/lib/wck-api/wordpress-creation-kit.php:535 #: features/admin-approval/class-admin-approval.php:108 #: features/functions.php:718 features/functions.php:725 #: modules/custom-redirects/custom_redirects_admin.php:179 #: modules/custom-redirects/custom_redirects_admin.php:193 #: modules/custom-redirects/custom_redirects_admin.php:207 #: modules/custom-redirects/custom_redirects_admin.php:221 #: modules/multiple-forms/multiple-forms.php:406 msgid "Edit" msgstr "編集" #: admin/manage-fields.php:1190 #: assets/lib/wck-api/wordpress-creation-kit.php:438 #: assets/lib/wck-api/wordpress-creation-kit.php:536 #: features/admin-approval/class-admin-approval.php:113 #: features/admin-approval/class-admin-approval.php:224 #: features/email-confirmation/class-email-confirmation.php:120 #: features/email-confirmation/class-email-confirmation.php:217 #: features/functions.php:711 features/functions.php:725 #: modules/custom-redirects/custom_redirects_admin.php:179 #: modules/custom-redirects/custom_redirects_admin.php:193 #: modules/custom-redirects/custom_redirects_admin.php:207 #: modules/custom-redirects/custom_redirects_admin.php:221 msgid "Delete" msgstr "削除" #: admin/manage-fields.php:1205 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "フォームを表示したいページに以下のショートコードを貼り付けてください:" #: admin/register-version.php:14 msgid "Register Your Version" msgstr "ライセンスの登録" #: admin/register-version.php:14 msgid "Register Version" msgstr "ライセンス登録" #: admin/register-version.php:70 msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support." msgstr "登録すると、アップグレードの案内、修正プログラム、テクニカルサポートが受けられます。" #: admin/register-version.php:72 msgid " Serial Number:" msgstr "シリアルナンバー:" #: admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "シリアル番号は正常に承認されました!" #: admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "シリアル番号が承認されませんでした!" #: admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "シリアルナンバーが期限切れで承認されませんでした。" #: admin/register-version.php:85 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!" msgstr "シリアル番号の承認がタイムアウトしました。おそらくサーバーの不具合によるものです。後ほど再度お試しください。" #: admin/register-version.php:87 msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "(例. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725 msgid "Content" msgstr "内容" #: assets/lib/wck-api/wordpress-creation-kit.php:535 msgid "Edit this item" msgstr "この項目を編集" #: assets/lib/wck-api/wordpress-creation-kit.php:536 msgid "Delete this item" msgstr "この項目を削除" #: assets/lib/wck-api/wordpress-creation-kit.php:705 msgid "Please enter a value for the required field " msgstr "必須欄に入力してください。" #: front-end/extra-fields/upload/upload.php:122 msgid "Select File" msgstr "" #: assets/lib/wck-api/fields/upload.php:43 #: front-end/extra-fields/upload/upload.php:112 msgid "Remove" msgstr "削除" #: assets/lib/wck-api/fields/nested repeater.php:8 msgid "You can add the information for the %s after you add a entry" msgstr "エントリの追加後、%sの情報を追加することができます" #: assets/lib/wck-api/fields/upload.php:75 #: front-end/extra-fields/upload/upload.php:128 msgid "Upload " msgstr "アップロード" #: features/class-list-table.php:184 msgid "No items found." msgstr "項目が見つかりません" #: features/class-list-table.php:308 msgid "Bulk Actions" msgstr "一括操作" #: features/class-list-table.php:318 msgid "Apply" msgstr "適用" #: features/class-list-table.php:402 msgid "Show all dates" msgstr "全てのの日付を用事" #: features/class-list-table.php:415 msgid "%1$s %2$d" msgstr "%1$s %2$d" #: features/class-list-table.php:431 msgid "List View" msgstr "一覧表示" #: features/class-list-table.php:432 msgid "Excerpt View" msgstr "抜粋ビュー" #: features/class-list-table.php:458 msgid "%s pending" msgstr "%s保留中" #: features/class-list-table.php:566 msgid "%1$s of %2$s" msgstr "%1$s of %2$s" #: features/class-list-table.php:713 msgid "Select All" msgstr "全て選択" #: features/functions.php:526 msgid "Strength indicator" msgstr "強度インジゲーター" #: features/admin-approval/admin-approval.php:14 #: features/admin-approval/class-admin-approval.php:453 msgid "Admin Approval" msgstr "管理者承認" #: features/admin-approval/admin-approval.php:28 #: features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "" #: features/admin-approval/admin-approval.php:51 msgid "Your session has expired! Please refresh the page and try again" msgstr "セッションの有効期限が切れました!ページをリロードして再度お試しください。" #: features/admin-approval/admin-approval.php:64 msgid "User successfully approved!" msgstr "ユーザーを承認しました!" #: features/admin-approval/admin-approval.php:74 msgid "User successfully unapproved!" msgstr "ユーザーを不承認しました!" #: features/admin-approval/admin-approval.php:80 msgid "User successfully deleted!" msgstr "ユーザーを削除しました!" #: features/admin-approval/admin-approval.php:85 #: features/admin-approval/admin-approval.php:129 #: features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "その処理を実行する権限がない、もしくはエラーが発生しました!" #: features/admin-approval/admin-approval.php:96 msgid "Your session has expired! Please refresh the page and try again." msgstr "セッションの有効期限が切れました!ページをリロードして再度お試しください。" #: features/admin-approval/admin-approval.php:108 msgid "Users successfully approved!" msgstr "ユーザの承認が完了しました!" #: features/admin-approval/admin-approval.php:117 msgid "Users successfully unapproved!" msgstr "ユーザの不承認が完了しました!" #: features/admin-approval/admin-approval.php:125 msgid "Users successfully deleted!" msgstr "ユーザの削除が完了しました!" #: features/admin-approval/admin-approval.php:145 msgid "Your account on %1$s has been approved!" msgstr "%1$sのあなたのアカウントは承認されました!" #: features/admin-approval/admin-approval.php:146 #: features/admin-approval/admin-approval.php:149 msgid "approved" msgstr "承認済み" #: features/admin-approval/admin-approval.php:148 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "%1$s (%2$s)上のあなたのアカウントを管理者が承認しました。" #: features/admin-approval/admin-approval.php:153 msgid "Your account on %1$s has been unapproved!" msgstr "%1$sのアカウントが承認されませんでした!" #: features/admin-approval/admin-approval.php:154 #: features/admin-approval/admin-approval.php:157 msgid "unapproved" msgstr "不承認" #: features/admin-approval/admin-approval.php:156 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "%1$s (%2$s)上のあなたのアカウントを管理者が不承認としました。" #: features/admin-approval/admin-approval.php:175 msgid "ERROR: Your account has to be confirmed by an administrator before you can log in." msgstr "エラー: あなたのアカウントは事前に管理者の承認を受ける必要があります。" #: features/admin-approval/admin-approval.php:187 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature." msgstr "あなたのアカウントはパスワードリカバリーの手続きをとる前に、管理者により確認されました。" #: features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "このユーザを削除しますか?" #: features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "このユーザを不承認にしますか?" #: features/admin-approval/class-admin-approval.php:116 #: features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr "不承認" #: features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "このユーザを承認しますか?" #: features/admin-approval/class-admin-approval.php:118 #: features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "承認" #: features/admin-approval/class-admin-approval.php:167 #: modules/user-listing/userlisting.php:278 #: modules/user-listing/userlisting.php:742 #: modules/user-listing/userlisting.php:2157 msgid "Firstname" msgstr "名" #: features/admin-approval/class-admin-approval.php:168 #: modules/user-listing/userlisting.php:745 #: modules/user-listing/userlisting.php:2158 msgid "Lastname" msgstr "姓" #: features/admin-approval/class-admin-approval.php:170 #: modules/user-listing/userlisting.php:149 #: modules/user-listing/userlisting.php:279 #: modules/user-listing/userlisting.php:772 #: modules/user-listing/userlisting.php:2162 msgid "Role" msgstr "権限" #: features/admin-approval/class-admin-approval.php:171 #: features/email-confirmation/class-email-confirmation.php:169 msgid "Registered" msgstr "登録日時" #: features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "ユーザ状態" #: features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "選択したユーザを一括で承認しますか?" #: features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "選択したユーザを一括で不承認にしますか?" #: features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "選択したユーザを一括で削除しますか?" #: features/admin-approval/class-admin-approval.php:274 #: features/email-confirmation/class-email-confirmation.php:278 msgid "Sorry, but you don't have permission to do that!" msgstr "申し訳ありません、それはあなたの権限では行えません!" #: features/admin-approval/class-admin-approval.php:339 msgid "Approved" msgstr "承認" #: features/admin-approval/class-admin-approval.php:341 msgid "Unapproved" msgstr "不承認" #: features/admin-approval/class-admin-approval.php:456 #: features/email-confirmation/class-email-confirmation.php:454 msgid "All Users" msgstr "全ユーザ" #: features/email-confirmation/class-email-confirmation.php:120 msgid "delete this user from the _signups table?" msgstr "_signupsテーブルからこのユーザを削除しますか?" #: features/email-confirmation/class-email-confirmation.php:121 msgid "confirm this email yourself?" msgstr "このメールをあなた自身で確認しますか?" #: features/email-confirmation/class-email-confirmation.php:121 #: features/email-confirmation/class-email-confirmation.php:218 msgid "Confirm Email" msgstr "確認Eメール" #: features/email-confirmation/class-email-confirmation.php:122 msgid "resend the activation link?" msgstr "アクティベーションリンクを再送しますか?" #: features/email-confirmation/class-email-confirmation.php:122 #: features/email-confirmation/class-email-confirmation.php:219 msgid "Resend Activation Email" msgstr "アクティベーションメールの再送" #: features/email-confirmation/class-email-confirmation.php:249 msgid "%s couldn't be deleted" msgstr "%sが削除できませんでした。" #: features/email-confirmation/class-email-confirmation.php:253 msgid "All users have been successfully deleted" msgstr "全てのユーザを削除しました" #: features/email-confirmation/class-email-confirmation.php:263 msgid "The selected users have been activated" msgstr "選択したユーザは有効化されました。" #: features/email-confirmation/class-email-confirmation.php:274 msgid "The selected users have had their activation emails resent" msgstr "選択したユーザに有効化メールが再送信されました。" #: features/email-confirmation/class-email-confirmation.php:451 #: features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "アドレス未確認ユーザー" #: features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "その処理を実行する際にエラーが起きました!" #: features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "選択したユーザが削除できませんでした" #: features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "Eメール通知がユーザに再送されました。" #: features/email-confirmation/email-confirmation.php:397 msgid "[%1$s] Activate %2$s" msgstr "[%1$s] 有効化 %2$s" #: features/email-confirmation/email-confirmation.php:441 #: front-end/register.php:71 msgid "Could not create user!" msgstr "ユーザを作成できません!" #: features/email-confirmation/email-confirmation.php:444 msgid "That username is already activated!" msgstr "このユーザー名は承認済みです!" #: features/email-confirmation/email-confirmation.php:467 msgid "There was an error while trying to activate the user" msgstr "ユーザをアクティベートする際にエラーが発生しました" #: features/email-confirmation/email-confirmation.php:515 #: modules/email-customizer/admin-email-customizer.php:73 msgid "A new subscriber has (been) registered!" msgstr "新しい購読者が登録されました!" #: features/email-confirmation/email-confirmation.php:518 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "%1$sに新規登録がありました。

            ユーザー名:%2$s
            E-メールアドレス:%3$s
            " #: features/email-confirmation/email-confirmation.php:633 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!" msgstr "登録地の\"管理者承認\"機能が有効化されました。あなたが承認するまでユーザはログインすることはできません!" #: features/email-confirmation/email-confirmation.php:569 msgid "[%1$s] Your new account information" msgstr "[%1$s] あなたの新アカウント情報" #: features/email-confirmation/email-confirmation.php:580 msgid "Welcome to %1$s!


            Your username is:%2$s and password:%3$s" msgstr "ようこそ、%1$sへ!


            あなたのユーザ名は%2$s、パスワードは%3$sとなります。" #: features/email-confirmation/email-confirmation.php:641 #: front-end/register.php:125 msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email." msgstr "ご登録いただいたアカウントのご利用には、管理者の承認が必要です。eメールにて通知が届きます。" #: features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "このログインウィジェットはサイドバーにログインフォームを表示します。" #: features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "Profile Buiderログインウィジェット" #: front-end/class-formbuilder.php:399 front-end/login.php:250 msgid "Register" msgstr "新規登録" #: features/login-widget/login-widget.php:63 msgid "Title:" msgstr "タイトル:" #: features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "ログイン後リダイレクト先URL(オプション):" #: features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "登録ページURL(オプション):" #: features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "パスワード復旧ページURL (オプション):" #: features/upgrades/upgrades-functions.php:91 #: features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "ユーザ名は変更できません。" #: front-end/class-formbuilder.php:125 msgid "Only an administrator can add new users." msgstr "管理者のみがユーザを新規追加できます。" #: front-end/class-formbuilder.php:135 msgid "Users can register themselves or you can manually create users here." msgstr "こちらで新規ユーザ登録ができます。" #: front-end/class-formbuilder.php:138 msgid "Users cannot currently register themselves, but you can manually create users here." msgstr "ユーザが自身で登録することができませでした。しかしあなたは手動でユーザを作成することができます。" #: front-end/class-formbuilder.php:158 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "あなたは現在%1sとしてログインしています。 別のアカウントは必要ありません。%2s" #: front-end/class-formbuilder.php:158 msgid "Log out of this account." msgstr "このアカウントをログアウトする" #: front-end/class-formbuilder.php:158 msgid "Logout" msgstr "ログアウト" #: front-end/class-formbuilder.php:164 msgid "You must be logged in to edit your profile." msgstr "プロフィールの編集にはログインが必要です。" #: features/functions.php:994 msgid "here" msgstr "ここ" #: features/functions.php:995 msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s" msgstr "ページは自動遷移します。このページが %1$d 秒以上見えている時は、以下をクリックしてください %2$s.%3$s" #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306 msgid "The account %1s has been successfully created!" msgstr "アカウント %1s が作成されました!" #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312 msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link." msgstr "ご登録いただいたアカウント%1sのご利用には、メールアドレスの確認が必要です。メールボックスに届いたメールに記載されたアクティベーション用のリンクをクリックしてください。" #: front-end/class-formbuilder.php:308 msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email." msgstr "ご登録いただいたアカウント%1sのご利用には、管理者の承認が必要です。eメールにて通知が届きます。" #: front-end/class-formbuilder.php:331 msgid "Your profile has been successfully updated!" msgstr "プロファイルは正常に更新されました!" #: front-end/class-formbuilder.php:342 msgid "There was an error in the submitted form" msgstr "入力内容にエラーがあります。" #: front-end/class-formbuilder.php:399 msgid "Add User" msgstr "ユーザー追加" #: admin/add-ons.php:170 front-end/class-formbuilder.php:402 msgid "Update" msgstr "更新" #: front-end/class-formbuilder.php:465 msgid "Send these credentials via email." msgstr "承認情報をメールで送信" #: front-end/extra-fields/extra-fields.php:94 front-end/login.php:137 #: front-end/login.php:144 front-end/login.php:158 front-end/recover.php:17 #: front-end/recover.php:237 msgid "ERROR" msgstr "エラー" #: front-end/login.php:137 msgid "The password you entered is incorrect." msgstr "入力されたパスワードが間違っています。" #: front-end/login.php:138 front-end/login.php:145 msgid "Password Lost and Found." msgstr "パスワード紛失対応" #: front-end/login.php:138 front-end/login.php:145 msgid "Lost your password" msgstr "パスワードをお忘れですか" #: front-end/login.php:158 msgid "Both fields are empty." msgstr "両方の欄とも未記入です。" #: front-end/login.php:296 msgid "You are currently logged in as %1$s. %2$s" msgstr "%1$sさんとしてログイン中です。%2$s" #: front-end/login.php:295 front-end/logout.php:25 msgid "Log out of this account" msgstr "このアカウントをログアウトする" #: front-end/login.php:295 msgid "Log out" msgstr "ログアウト" #: front-end/recover.php:17 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature." msgstr "あなたのアカウントはパスワードリセットの手続きをとる前に、管理者により確認されました。" #: front-end/recover.php:94 msgid "Reset Password" msgstr "パスワードをリセット" #: front-end/recover.php:114 msgid "Please enter your username or email address." msgstr "ユーザー名またはメールアドレスを入力してください。" #: front-end/recover.php:115 msgid "You will receive a link to create a new password via email." msgstr "新しいパスワードを設定する為のリンクがメールで送信されます。" #: front-end/recover.php:120 msgid "Username or E-mail" msgstr "ユーザー名またはメールアドレス" #: front-end/recover.php:130 msgid "Get New Password" msgstr "新しいパスワードを取得" #: front-end/recover.php:177 msgid "The username entered wasn't found in the database!" msgstr "入力されたユーザ名はデータベース上で見付かりません!" #: front-end/recover.php:177 msgid "Please check that you entered the correct username." msgstr "正しいユーザー名を入力したか確認してください。" #: front-end/recover.php:192 msgid "Check your e-mail for the confirmation link." msgstr "確認リンクをメールでチェックしてください。" #: front-end/recover.php:227 msgid "Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s" msgstr "次のアカウントのパスワードリセットが要求されました。: %1$s
            もし間違いであれば、このメールは無視して結構です。
            パスワードをリセットする場合は、こちらのリンクをクリックしてください。:%2$s" #: front-end/recover.php:230 msgid "Password Reset from \"%1$s\"" msgstr "\"%1$s\"からのパスワードリセット" #: front-end/recover.php:237 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "%1$sにアクティベーションリンクを送信しようとしてエラーが発生しました!" #: front-end/recover.php:199 msgid "The email address entered wasn't found in the database!" msgstr "そのメールアドレスはデータベース上で見付かりません!" #: front-end/recover.php:199 msgid "Please check that you entered the correct email address." msgstr "正しいEメールアドレスを入力したか確認してください。" #: front-end/recover.php:265 msgid "Your password has been successfully changed!" msgstr "パスワードは正常に更新されました!" #: front-end/recover.php:284 msgid "You have successfully reset your password to: %1$s" msgstr "%1$sに対するパスワードを正常にリセットしました。" #: front-end/recover.php:287 front-end/recover.php:298 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "\"%2$s\"の%1$sのパスワードがリセットされました。" #: front-end/recover.php:295 msgid "%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s" msgstr "%1$sさんがパスワードリセット機能によりパスワードの変更を要求しました。
            新しいパスワード:%2$s" #: front-end/recover.php:312 msgid "The entered passwords don't match!" msgstr "入力されたパスワードが異なります!" #: front-end/recover.php:367 msgid "ERROR:" msgstr "エラー:" #: front-end/recover.php:367 msgid "Invalid key!" msgstr "無効なキー!" #: front-end/register.php:56 msgid "Invalid activation key!" msgstr "無効なアクティベーションキー!" #: front-end/register.php:60 msgid "This username is now active!" msgstr "このユーザー名は有効です!" #: front-end/register.php:74 msgid "This username is already activated!" msgstr "このユーザ名は既に有効化されています!" #: front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "あなたのメールアドレス確認が正常に完了しました。" #: front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "ユーザを有効にする際にエラーがありました。" #: front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "入力したメールアドレスは有効なものではありません。" #: front-end/default-fields/email/email.php:60 #: front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "このメールアドレスは予約済みです。" #: front-end/default-fields/email/email.php:60 #: front-end/default-fields/email/email.php:67 #: front-end/default-fields/email/email.php:77 #: front-end/default-fields/email/email.php:95 #: front-end/default-fields/username/username.php:49 #: front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "他のものをお試しください!" #: front-end/default-fields/email/email.php:77 #: front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "このメールアドレスは登録済みです。" #: front-end/default-fields/password-repeat/password-repeat.php:37 #: front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "パスワードが合致しません。" #: front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "このユーザ名は既に存在します。" #: front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "このユーザ名は既に予約されています。" #: modules/user-listing/userlisting.php:276 msgid "Avatar" msgstr "アバター" #: front-end/extra-fields/avatar/avatar.php:72 #: front-end/extra-fields/checkbox/checkbox.php:45 #: front-end/extra-fields/colorpicker/colorpicker.php:45 #: front-end/extra-fields/datepicker/datepicker.php:40 #: front-end/extra-fields/input-hidden/input-hidden.php:34 #: front-end/extra-fields/input/input.php:30 #: front-end/extra-fields/map/map.php:51 #: front-end/extra-fields/number/number.php:30 #: front-end/extra-fields/phone/phone.php:39 #: front-end/extra-fields/radio/radio.php:44 #: front-end/extra-fields/select-cpt/select-cpt.php:52 #: front-end/extra-fields/select-multiple/select-multiple.php:46 #: front-end/extra-fields/select-timezone/select-timezone.php:49 #: front-end/extra-fields/select/select.php:51 #: front-end/extra-fields/textarea/textarea.php:30 #: front-end/extra-fields/upload/upload.php:70 #: front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "必須" #: front-end/extra-fields/recaptcha/recaptcha.php:48 msgid "To use reCAPTCHA you must get an API key from" msgstr "reCAPTCHAの利用には、APIキーの取得が必要です" #: front-end/extra-fields/recaptcha/recaptcha.php:131 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "セキュリティ保護のため、リモートIPをreCAPTCHAに渡す必要があります。" #: front-end/extra-fields/recaptcha/recaptcha.php:192 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "reCAPTCHAの利用には、以下よりAPI公開キー(public key)の取得が必要です" #: modules/modules.php:11 modules/modules.php:58 msgid "Modules" msgstr "モジュール" #: modules/modules.php:59 msgid "Here you can activate / deactivate available modules for Profile Builder." msgstr "こちらでProfule Builderモジュールの有効化/無効化ができます。" #: modules/modules.php:69 msgid "Name/Description" msgstr "名前/説明" #: modules/modules.php:70 msgid "Status" msgstr "ステータス" #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91 #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112 #: modules/modules.php:119 msgid "Active" msgstr "有効" #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92 #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113 #: modules/modules.php:120 msgid "Inactive" msgstr "無効" #: modules/email-customizer/admin-email-customizer.php:11 #: modules/email-customizer/admin-email-customizer.php:12 #: modules/modules.php:96 msgid "Admin Email Customizer" msgstr "メール文面編集(管理者宛)" #: modules/email-customizer/user-email-customizer.php:11 #: modules/email-customizer/user-email-customizer.php:12 #: modules/modules.php:103 msgid "User Email Customizer" msgstr "メール文面編集(ユーザ宛)" #: assets/lib/wck-api/wordpress-creation-kit.php:334 #: modules/class-mustache-templates/class-mustache-templates.php:253 msgid "Save" msgstr "保存" #: modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "リダイレクト" #: modules/multiple-forms/edit-profile-forms.php:208 #: modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "URL" #: modules/email-customizer/admin-email-customizer.php:38 msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save." msgstr "これらの設定を変更すると「メール文面編集(管理者宛)」設定ページにも反映されます。" #: modules/email-customizer/admin-email-customizer.php:41 #: modules/email-customizer/user-email-customizer.php:41 msgid "From (name)" msgstr "差出人 (name)" #: modules/email-customizer/admin-email-customizer.php:49 #: modules/email-customizer/user-email-customizer.php:49 msgid "From (reply-to email)" msgstr "差出人 (reply-to email)" #: modules/email-customizer/admin-email-customizer.php:57 #: modules/email-customizer/user-email-customizer.php:57 msgid "Common Settings" msgstr "共通設定" #: modules/email-customizer/admin-email-customizer.php:60 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" msgstr "" "\n" "

            {{site_name}}の新規登録がありました。

            \n" "

            ユーザー名:{{username}}

            \n" "

            メールアドレス:{{user_email}}

            \n" #: modules/email-customizer/admin-email-customizer.php:69 #: modules/email-customizer/admin-email-customizer.php:99 #: modules/email-customizer/admin-email-customizer.php:126 #: modules/email-customizer/user-email-customizer.php:71 #: modules/email-customizer/user-email-customizer.php:99 #: modules/email-customizer/user-email-customizer.php:128 #: modules/email-customizer/user-email-customizer.php:155 #: modules/email-customizer/user-email-customizer.php:183 #: modules/email-customizer/user-email-customizer.php:214 #: modules/email-customizer/user-email-customizer.php:241 #: modules/email-customizer/user-email-customizer.php:274 msgid "Email Subject" msgstr "メールタイトル" #: modules/email-customizer/admin-email-customizer.php:84 msgid "Default Registration & Registration with Email Confirmation" msgstr "標準登録およびメール確認付き登録" #: modules/email-customizer/admin-email-customizer.php:87 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log in!

            \n" msgstr "" "\n" "

            {{site_name}}に新規登録がありました。

            \n" "

            ユーザ名:{{username}}

            \n" "

            メールアドレス:{{user_email}}

            \n" "

            登録時点で管理者承認機能が有効でしたので、,\n" "あなたが承認するまでは彼/彼女はログインすることができません。

            \n" #: modules/email-customizer/admin-email-customizer.php:114 #: modules/email-customizer/user-email-customizer.php:143 msgid "Registration with Admin Approval" msgstr "登録に管理者の承認" #: modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "有効なタグ" #: features/email-confirmation/class-email-confirmation.php:91 #: features/email-confirmation/class-email-confirmation.php:170 msgid "User Meta" msgstr "User Meta" #: modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "サイトURL" #: modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "サイト名" #: modules/email-customizer/email-customizer.php:25 #: modules/user-listing/userlisting.php:158 msgid "User Id" msgstr "ユーザーID" #: modules/email-customizer/email-customizer.php:33 msgid "Reply To" msgstr "Reply To" #: modules/email-customizer/email-customizer.php:40 msgid "Activation Key" msgstr "アクティベーションキー" #: modules/email-customizer/email-customizer.php:41 msgid "Activation Url" msgstr "アクティベーションURL" #: modules/email-customizer/email-customizer.php:42 msgid "Activation Link" msgstr "アクティベーションリンク" #: modules/email-customizer/user-email-customizer.php:64 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" msgstr "" "\n" "

            ようこそ、{{site_name}}へ!

            \n" "

            あなたのユーザ名は{{username}}、パスワードは{{password}}になります。

            \n" #: modules/email-customizer/user-email-customizer.php:85 msgid "Default Registration" msgstr "標準登録" #: modules/email-customizer/user-email-customizer.php:91 msgid "" "\n" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials.

            \n" msgstr "" "\n" "

            作成したアカウントのアクティベートの為に、下記のリンクをクリックしてください。
            \n" "{{{activation_link}}}

            \n" "

            アクティベート完了後、あなたの認証情報が記載されたメールが別途届きます。

            \n" #: modules/email-customizer/user-email-customizer.php:103 msgid "[{{site_name}}] Activate {{username}}" msgstr "[{{site_name}}]のユーザー{{username}}の有効化" #: modules/email-customizer/user-email-customizer.php:114 msgid "Registration with Email Confirmation" msgstr "Eメール確認有りの登録" #: modules/email-customizer/user-email-customizer.php:120 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n" msgstr "" "\n" "

            ようこそ、{{site_name}}へ!

            \n" "

            あなたのユーザー名は{{username}}、パスワードは{{password}}です。

            \n" "

            ご登録いただいたアカウントのご利用には、管理者の承認が必要です。eメールにて通知が届きます。

            \n" #: modules/email-customizer/user-email-customizer.php:132 msgid "A new account has been created for you on {{site_name}}" msgstr "{{site_name}}用のあなたの新しいアカウントが作成されました。" #: modules/email-customizer/user-email-customizer.php:148 msgid "" "\n" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            おめでとうございます!

            \n" "

            {{site_name}}の管理者があなたのアカウント{{username}}を承認しました。

            \n" #: modules/email-customizer/user-email-customizer.php:159 msgid "Your account on {{site_name}} has been approved!" msgstr "{{site_name}}のあなたのアカウントが承認されました!" #: modules/email-customizer/user-email-customizer.php:170 msgid "User Approval Notification" msgstr "ユーザー承認通知" #: modules/email-customizer/user-email-customizer.php:175 msgid "" "\n" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            こんにちは,

            \n" "

            残念ながら{{site_name}}の管理者はあなたのアカウント{{username}}を不承認としました。

            \n" #: modules/email-customizer/user-email-customizer.php:187 msgid "Your account on {{site_name}} has been unapproved!" msgstr "{{site_name}}のあなたのアカウントが承認されませんでした!" #: modules/email-customizer/user-email-customizer.php:198 msgid "Unapproved User Notification" msgstr "ユーザー不承認通知" #: modules/multiple-forms/edit-profile-forms.php:11 #: modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "プロフィール編集フォーム" #: modules/multiple-forms/edit-profile-forms.php:13 #: modules/multiple-forms/register-forms.php:13 #: modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "新規追加" #: modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "プロフィール編集フォームを追加" #: modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "プロフィール編集フォームを編集" #: modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "新規プロフィール編集フォーム" #: modules/multiple-forms/edit-profile-forms.php:17 #: modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "プロフィール編集フォーム" #: modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "プロフィール編集フォームを見る" #: modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "プロフィール編集フォームを検索" #: modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "プロフィール編集フォームが見つかりません" #: modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "ゴミ箱にプロフィール編集フォームが見つかりません" #: modules/multiple-forms/edit-profile-forms.php:135 #: modules/multiple-forms/register-forms.php:138 #: modules/user-listing/userlisting.php:2048 msgid "Shortcode" msgstr "ショートコード" #: modules/multiple-forms/edit-profile-forms.php:155 #: modules/multiple-forms/register-forms.php:159 #: modules/user-listing/userlisting.php:2069 msgid "(no title)" msgstr "(無題)" #: modules/multiple-forms/edit-profile-forms.php:175 #: modules/multiple-forms/register-forms.php:178 #: modules/user-listing/userlisting.php:2089 msgid "The shortcode will be available after you publish this form." msgstr "ショートコードはこのフォームを公開後に有効となります。" #: modules/multiple-forms/edit-profile-forms.php:177 #: modules/multiple-forms/register-forms.php:180 #: modules/user-listing/userlisting.php:2091 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "フォームを表示したいページにこのショートコードを挿入してください:" #: modules/multiple-forms/edit-profile-forms.php:181 #: modules/multiple-forms/register-forms.php:184 #: modules/user-listing/userlisting.php:2095 msgid "Note: changing the form title also changes the shortcode!" msgstr "メモ: タイトルを変更するとショートコードも変更されます!" #: modules/multiple-forms/edit-profile-forms.php:187 #: modules/multiple-forms/register-forms.php:190 #: modules/user-listing/userlisting.php:2128 msgid "Form Shortcode" msgstr "フォーム・ショートコード" #: modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "ユーザを特定のページにリダイレクトするかを指定します。" #: modules/multiple-forms/edit-profile-forms.php:207 #: modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "表示メッセージ" #: modules/multiple-forms/edit-profile-forms.php:207 #: modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "成功メッセージの表示時間(秒)" #: modules/multiple-forms/edit-profile-forms.php:208 msgid "Specify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.com" msgstr "このフォームでプロフィールを更新した後にリダイレクトされるページを指定します。
            次の形式で指定: http://www.mysite.com" #: modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "プロフォール更新後..." #: modules/multiple-forms/edit-profile-forms.php:241 #: modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "リストに欄を追加" #: modules/multiple-forms/edit-profile-forms.php:245 #: modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage Title (Type)" msgstr "
            タイトル (タイプ)
            " #: modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "フォーム作成前にタイトルを指定する必要があります" #: modules/multiple-forms/register-forms.php:11 #: modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "登録フォーム" #: modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "登録フォームを追加" #: modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "登録フォームを編集" #: modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "新規登録フォーム" #: modules/multiple-forms/register-forms.php:17 #: modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "登録フォーム" #: modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "登録フォームを見る" #: modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "登録フォームを検索" #: modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "登録フォームが見つかりません。" #: modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "ゴミ箱に登録フォームが見つかりません。" #: modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "デフォルト権限" #: modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "権限をセットする" #: modules/multiple-forms/register-forms.php:228 msgid "Choose what role the user will have after (s)he registered
            If not specified, defaults to the role set in the WordPress settings" msgstr "登録したユーザに割り当てられる権限を選択してください。選択しなかった場合、WordPress設定のデフォルトが適用されます。" #: modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "自動でログイン" #: modules/multiple-forms/register-forms.php:229 msgid "Whether to automatically log in the newly registered user or not
            Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work" msgstr "新規登録ユーザが自動的にログインするかどうかを指定します。\"管理者承認\"機能\"と\"Eメール確認\"機能が無効化されたシングルサイトでのみ機能します。注意: 登録フォームをキャッシュすると自動ログイン機能は機能しません。" #: modules/multiple-forms/register-forms.php:232 msgid "Specify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.com" msgstr "このフォームで新規登録した後にリダイレクトされるページを指定します。
            次の形式で指定: http://www.mysite.com" #: modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "登録後..." #: modules/user-listing/userlisting.php:1021 #: modules/user-listing/userlisting.php:1468 #: modules/user-listing/userlisting.php:1886 #: modules/user-listing/userlisting.php:2355 msgid "Search Users by All Fields" msgstr "全ての欄でユーザを検索" #: modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "新しいユーザ一覧を追加" #: modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "ユーザ一覧の編集" #: modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "新規ユーザ一覧" #: modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "ユーザー一覧を表示" #: modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "ユーザー一覧を検索" #: modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "ユーザ一覧が見つかりません" #: modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "ゴミ箱にユーザ一覧が見つかりません" #: modules/user-listing/userlisting.php:105 msgid "Display name as" msgstr "表示名" #: modules/user-listing/userlisting.php:150 #: modules/user-listing/userlisting.php:2156 msgid "Registration Date" msgstr "登録日" #: modules/user-listing/userlisting.php:151 #: modules/user-listing/userlisting.php:2161 msgid "Number of Posts" msgstr "投稿数" #: modules/user-listing/userlisting.php:155 msgid "More Info" msgstr "追加情報" #: modules/user-listing/userlisting.php:156 msgid "More Info Url" msgstr "追加情報URL" #: modules/user-listing/userlisting.php:157 msgid "Avatar or Gravatar" msgstr "アバター or Gravatar" #: modules/user-listing/userlisting.php:196 #: modules/user-listing/userlisting.php:227 msgid "Extra Functions" msgstr "追加機能タグ (Extra Functions)" #: modules/user-listing/userlisting.php:199 msgid "Pagination" msgstr "ページ分割" #: modules/user-listing/userlisting.php:200 msgid "Search all Fields" msgstr "全ての欄を検索" #: modules/user-listing/userlisting.php:229 msgid "Go Back Link" msgstr "戻るリンク" #: modules/user-listing/userlisting.php:247 msgid "All-userlisting Template" msgstr "一覧画面のテンプレート" #: modules/user-listing/userlisting.php:250 msgid "Single-userlisting Template" msgstr "個別画面のテンプレート" #: modules/user-listing/userlisting.php:733 msgid "First/Lastname" msgstr "名/姓" #: modules/user-listing/userlisting.php:281 #: modules/user-listing/userlisting.php:739 msgid "Sign-up Date" msgstr "登録日" #: modules/user-listing/userlisting.php:748 #: modules/user-listing/userlisting.php:2159 msgid "Display Name" msgstr "表示名" #: modules/user-listing/userlisting.php:280 #: modules/user-listing/userlisting.php:757 msgid "Posts" msgstr "投稿数" #: modules/user-listing/userlisting.php:760 #: modules/user-listing/userlisting.php:2166 msgid "Aim" msgstr "AIM" #: modules/user-listing/userlisting.php:763 #: modules/user-listing/userlisting.php:2167 msgid "Yim" msgstr "Yahoo! Messenger" #: modules/user-listing/userlisting.php:766 #: modules/user-listing/userlisting.php:2168 msgid "Jabber" msgstr "Jabber" #: modules/user-listing/userlisting.php:1273 msgid "Click here to see more information about this user" msgstr "このユーザについてもっと見るにはここをクリック" #: modules/user-listing/userlisting.php:1273 msgid "More..." msgstr "詳細..." #: modules/user-listing/userlisting.php:1276 msgid "Click here to see more information about this user." msgstr "このユーザーの詳細はここをクリック" #: modules/user-listing/userlisting.php:1422 #: modules/user-listing/userlisting.php:1425 msgid "Click here to go back" msgstr "戻るにはここをクリック" #: modules/user-listing/userlisting.php:1422 msgid "Back" msgstr "戻る" #: modules/user-listing/userlisting.php:1455 msgid "«« First" msgstr "«« 最初" #: modules/user-listing/userlisting.php:1456 msgid "« Prev" msgstr "« 前" #: modules/user-listing/userlisting.php:1457 msgid "Next » " msgstr "次 » " #: modules/user-listing/userlisting.php:1458 msgid "Last »»" msgstr "最後 »»" #: modules/user-listing/userlisting.php:1487 msgid "You don't have any pagination settings on this userlisting!" msgstr "このユーザー一覧に対するページネーションの設定がありません。" #: modules/user-listing/userlisting.php:1903 msgid "Search" msgstr "検索" #: modules/user-listing/userlisting.php:1904 msgid "Clear Results" msgstr "結果をクリア" #: modules/user-listing/userlisting.php:2098 #: modules/user-listing/userlisting.php:2102 msgid "Extra shortcode parameters" msgstr "その他のショートコード用パラメーター" #: modules/user-listing/userlisting.php:2105 msgid "displays users having a certain meta-value within a certain (extra) meta-field" msgstr "特定の(extra) meta-fieldが特定のmeta-valueをもつユーザのみ表示" #: modules/user-listing/userlisting.php:2106 msgid "Example:" msgstr "例:" #: modules/user-listing/userlisting.php:2108 msgid "Remember though, that the field-value combination must exist in the database." msgstr "" #: modules/user-listing/userlisting.php:2183 msgid "Random (very slow on large databases > 10K user)" msgstr "ランダム (1万ユーザ以上の大きなデータベースではとても遅い)" #: modules/user-listing/userlisting.php:2195 msgid "Roles to Display" msgstr "表示対象にする権限:" #: modules/user-listing/userlisting.php:2195 msgid "Restrict the userlisting to these selected roles only
            If not specified, defaults to all existing roles" msgstr "このユーザ一覧を選択した権限のみに制限してください。
            指定しない場合は、全ての権限のデフォルトになります。" #: modules/user-listing/userlisting.php:2196 msgid "Number of Users/Page" msgstr "1ページに表示するユーザ数:" #: modules/user-listing/userlisting.php:2197 msgid "Default Sorting Criteria" msgstr "デフォルトのソート基準" #: modules/user-listing/userlisting.php:2197 msgid "Set the default sorting criteria
            This can temporarily be changed for each new session" msgstr "デフォルトのソート基準を指定してください。
            この指定はセッション毎に一時的に変更できます。" #: modules/user-listing/userlisting.php:2198 msgid "Default Sorting Order" msgstr "初期ソート順" #: modules/user-listing/userlisting.php:2198 msgid "Set the default sorting order
            This can temporarily be changed for each new session" msgstr "デフォルトのソート順を指定してください。この指定はセッション毎に一時的に変更できます。" #: modules/user-listing/userlisting.php:2199 msgid "Avatar Size (All-userlisting)" msgstr "アバター画像サイズ(一覧画面)" #: modules/user-listing/userlisting.php:2199 msgid "Set the avatar size on the all-userlisting only" msgstr "一覧画面で表示するアバター画像のサイズを指定してください。" #: modules/user-listing/userlisting.php:2200 msgid "Avatar Size (Single-userlisting)" msgstr "アバター画像サイズ(個別画面)" #: modules/user-listing/userlisting.php:2200 msgid "Set the avatar size on the single-userlisting only" msgstr "個別画面で表示するアバター画像のサイズを指定してください。" #: modules/user-listing/userlisting.php:2201 msgid "Visible only to logged in users?" msgstr "ログイン中のユーザーにのみ表示" #: modules/user-listing/userlisting.php:2201 msgid "The userlisting will only be visible only to the logged in users" msgstr "ユーザー一覧をログインしたユーザにだけ表示します" #: modules/user-listing/userlisting.php:2202 msgid "Visible to following Roles" msgstr "" #: modules/user-listing/userlisting.php:2202 msgid "The userlisting will only be visible to the following roles" msgstr "ユーザー一覧を以下の権限ユーザにだけ表示します" #: modules/user-listing/userlisting.php:2208 msgid "Userlisting Settings" msgstr "ユーザー一覧設定" #: modules/user-listing/userlisting.php:2331 msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "「モジュール」タブの「ユーザー一覧表示」機能を有効にする必要があります!" #: modules/user-listing/userlisting.php:2331 msgid "You can find it in the Profile Builder menu." msgstr "Profile Builderメニューの中にあります。" #: modules/user-listing/userlisting.php:2494 msgid "No results found!" msgstr "見つかりませんでした。"translation/profile-builder-ro_RO.mo000066600000216455152141651160013564 0ustar006|3|3l}3y3cd44c5678C89;99K9C):[m::::";+B;En;1; ;e; V<c< z< <<2< <-<O= c=m=t=N>df>Y>G%?Rm?c?!$@7F@'~@@AAEATA]AlA|AA A AAAAAABB4B!QB#sBBBBBBB*B 'C3CKC$aCCC CCC C(CC D(DLDEE98ErE?EAEF FF F&F:F@FHF QF[FcF0iF FFFFF FF G "G0G CGNGSG[G cGnGwGkGGi|HHHHHI II$I!,INIeI|I IIIIII I IIJ JJJ "J-JL rLLLL0L L LL L M MU$MzMMMMM)MMM M M NNN)N8NJN;_N NNN NNOO %O0OAO ROsO {OOO OOOOO/O.P1NPPP PPPPP PPQQ QQQQQQR"R (Rs4RRRR R!RSSO,S?|SSUTe UWrUUUUUbUXV aVnV}VV>VVV WrWWW WWWW WW WW?XXXgX nX|XX XXXXXXXY YY8Y >Y HYUY \YfY nYyY ~YYY YYY!YIYZ$Z -Z7Z?ZBZJZ [[[ [[ [[[ [\\\\ $\0\7\ =\I\P\e\m\s\z\ \\]%].]5] <]G]N]S] g]q]z]]]]] ] ] ]5]]]^'^@^F^^^^ _ _(_ ._ 8_~C_______ `` %` 0` ;`E`M` T`^` e`*p````)`a!a)a0a 9a Da Oa Yagaoa waaa_ab"b'b8b@bFb Lb Xbfb|bb bCb b c ccc"c'c*c$Ecjc$cccccdd d!d:d#Ad4edpd ee0e=5e(seee eeeeeeeff&*fQffff.fwfEg JgVg8_g3g^g+h,Jh,wh%hhhhhhi/i HiTi Zi0hiiiiiii j jj5jGjYj lj$jMjkkk k6k?k Wk aklk {kjk kkl ll $l.l5l-^FoӤSC h 7K_3x0[ J Ua^d}fOITh#W7{+ߪ ϫޫ "9,N+{&ά')0Z q~$ӭD ="Kn/4 0),Z*tv@&g?xZ  & 1> T ^ h r ~1 ² βز 1:Q ³ ͳ ׳ oo   ҵ#ܵ 7BR [|  Ͷ ׶   ;3B v<HηN   #7L[K  !0+\o  ${ϺK _i p!z3лٻ -D\|Cݼ# 3$J'o ˽"   )=Mb | 45ǾH FQf+w ̿ -) 3Tn <EYp0oUTG$ 8 B LiW Nh*3 P^%e  0M7LUex!  #1U ]i  #L e o z   9C KWw ! )7@ Wair {Q Ydm v  " ;* fq&Pw   /  - 9C KW `3m!",/ 8B K V cp# #&    (I gKu  0 <=,z7)3 "=`x '8q#P5" Xc  !- 76V3u | C:l3:@21"d   G$l#+* :[s)*Q P[l !     0? Wet"  G+s0|(& 6 CQcs|( VPJbboa u 21ds &   _>w. jr$R%1x     $2: C P[ p {0#- $bBTB?@ [;|GEEF6;$CtY,,L(=u((+@r^ID9`+*BF4D{Twx,T3f6)(`-IM+O{DV4@J\ cmu  $. E#Rv&  \Oz "4Fct *+ ; X o      + R7 [ " * +4 .`  /          ' ,H ,u $  + ' * >  E \O  $ $ L}T ,G!eCiU5/+2FJ&J6q48<&S$z!GC =M{z%(4.]1'(,%<ObB  ,")O$y/ *0O]kL^u~   , 

            Good News!

            An administrator has just approved your account: {{username}} on {{site_name}}.

            Hello,

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            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!

            Someone requested that the password be reset for the following account: {{site_name}}
            Username: {{username}}

            If this was a mistake, just ignore this email and nothing will happen.

            To reset your password, visit the following address:
            {{{reset_link}}}

            To activate your user, please click the following link:
            {{{activation_link}}}

            After you activate, you will receive another email with your credentials.

            You have successfully reset your password to: {{password}}

            {{username}} has requested a password change via the password reset feature.

            His/her new password is: {{password}}

            * only available in the %1$sHobbyist and Pro versions%2$s. Serial Number: Your serial number is about to expire, please %1$s Renew Your License%2$s. Your serial number is expired, please %1$s Renew Your License%2$s. is also activated. You need to deactivate it before activating this version of the plugin."Admin Approval" Activated:"Admin Approval" Feature:"Email Confirmation" Activated:"Email Confirmation" Landing Page:"Email" - users can Log In only with Email."Username and Email" - users can Log In with both Username and Email."Username" - users can Log In only with Username.%1$s %2$d%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s%1$s of %2$s%s couldn't be deleted%s pending« Prev«« First(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(no title)** only available in the %1$sPro version%2$s.. Extra Field Types are available in
            Hobbyist or PRO versions....Choose1 item

            Your Profile Builder serial number is invalid or missing.
            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

            Title (Type)
            Title
            Type
            Meta Name
            Required
            Note: changing the form title also changes the shortcode!ERROR: The password must have a minimum strength of %sERROR: The password must have the minimum length of %s charactersERROR: Your account has to be confirmed by an administrator before you can log in.Profile Builder A new account has been created for you on {{site_name}}A new subscriber has (been) registered!A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be editedAIMAbout YourselfActivateActivation KeyActivation LinkActivation UrlActiveAdd EntryAdd FieldAdd NewAdd New Field to the ListAdd UserAdd new Edit-profile FormAdd new Registration FormAdd new User ListingAdd-On has been activatedAdd-On has been deactivated.Add-On is activeAdd-On is inactiveAdd-On is ActiveAdd-OnsAdmin ApprovalAdmin Approval (*)Admin Bar SettingsAdmin Email CustomizerAdmin Notification for User Password ResetAfghanistanAfter Profile Update...After Registration...After login redirect URL (optional):Agree To Terms CheckboxAimAland IslandsAlbaniaAlgeriaAll UsersAll users have been successfully deletedAll-userlisting TemplateAllow Users to Log in With:Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.Allow users to log in with their email or username when accessing your site.Allowed Image ExtensionsAllowed Upload ExtensionsAllowed time to display any success messages (in seconds)American SamoaAn administrator has just approved your account on %1$s (%2$s).An administrator has just unapproved your account on %1$s (%2$s).AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApplyApproveApprovedArgentinaArmeniaArubaAs an administrator you cannot change your role.AustraliaAustriaAutomatically Log InAvailable TagsAvatarAvatar SizeAvatar Size (All-userlisting)Avatar Size (Single-userlisting)Avatar UploadAvatar or GravatarAzerbaijanBackBahamasBahrainBangladeshBarbadosBasic InformationBefore you can access your account %1s, an administrator has to approve it. You will be notified via email.Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.Before you can access your account, an administrator needs to approve it. You will be notified via email.BelarusBelgiumBelizeBeninBermudaBhutanBiographical InfoBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBoth fields are empty.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaBulk ActionsBurkina FasoBurundiCambodiaCameroonCanadaCancelCape VerdeCayman IslandsCentral African RepublicChadCheck your e-mail for the confirmation link.CheckboxChileChinaChoose one of the supported field typesChoose one of the supported fields you manage install manually.Country SelectCroatiaCubaCuracaoCustom RedirectsCustomize Your Forms The Way You Want (*)CyprusCzech RepublicDate-formatDatepickerDeactivateDefaultDefault ContentDefault OptionDefault Option(s)Default RegistrationDefault Registration & Registration with Email ConfirmationDefault RoleDefault Sorting CriteriaDefault Sorting OrderDefault ValueDefault value of the fieldDefault value of the textareaDeleteDelete allDelete all itemsDelete this itemDemocratic Republic of the CongoDenmarkDescriptionDisabledDisplay MessagesDisplay NameDisplay name asDisplay name publicly asDjiboutiDo you want toDo you want to bulk approve the selected users?Do you want to bulk delete the selected users?Do you want to bulk unapprove the selected users?DominicaDominican RepublicDownload NowDownloading and installing...E-mailERRORERROR:East TimorEasy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings.EcuadorEditEdit ProfileEdit the Edit-profile FormsEdit the Registration FormsEdit the User ListingEdit this itemEdit-profile FormEdit-profile FormsEgyptEl SalvadorEliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.EmailEmail ConfirmationEmail CustomizerEmail SubjectEmail notification resent to userEnable extra featuresEnable your modulesEnter a (detailed) description of the option for end users to read
            OptionalEnter a comma separated list of labels
            Visible for the userEnter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophesEnter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100Enter the minimum characters the password should have. Leave empty for no minimum limitEquatorial GuineaEritreaEstoniaEthiopiaEverything you will need to manage your users is probably already available using the Pro Modules.Example:Excerpt ViewExisting PagesExtra FeaturesExtra FunctionsExtra Profile Fields are available in Hobbyist or PRO versionsExtra shortcode parametersFalkland IslandsFaroe IslandsFeatures that give you more control over your users, increased security and help you fight user registration spam.FieldField PropertiesField TitleFijiFind out more about PRO ModulesFinlandFirst NameFirst/LastnameFirstnameFor Modern User InteractionFor security reasons, you must pass the remote ip to reCAPTCHA!Form ShortcodeFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesFrom (name)From (reply-to email)GabonGambiaGeneral SettingsGeneric UploadsGeorgiaGermanyGet New PasswordGet started with extra fieldsGhanaGibraltarGo Back LinkGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald IslandsHere you can activate / deactivate available modules for Profile Builder.HideHondurasHong KongHungaryIDIcelandIf you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.InactiveIndiaIndonesiaInput / Hidden InputInstall NowInstallation completeInvalid activation key!Invalid key!Invalid username.IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanKeep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.KenyaKiribatiKosovoKuwaitKyrgyzstanLabelsLaosLast »»Last NameLastnameLatviaLebanonLesothoLiberiaLibyaLiechtensteinList ViewLithuaniaLoad Profile Builder's own CSS file in the front-end:Log outLog out »Log out of this accountLog out of this account.LoginLogin 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 )Login with Email or UsernameLogoutLost your passwordLost your password?LuxembourgMacaoMacedoniaMadagascarMake sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.MalawiMalaysiaMaldivesMaliMaltaManage Default and Extra FieldsManage FieldsMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMediumMeta-nameMexicoMicronesiaMinimum Password Length and Strength MeterMinimum Password Length:Minimum Password Strength:Minimum length of %d charactersMinimum required Profile Builder version:ModulesMoldovaMonacoMongoliaMontenegroMontserratMore InfoMore Info UrlMore...MoroccoMozambiqueMultiple Edit-profile FormsMultiple Registration FormsMust be a valid email address or the tag {{reply_to}} which defaults to the administrator emailMyanmarNameName/DescriptionNamibiaNauruNepalNetherlandsNew CaledoniaNew Edit-profile FormNew Registration FormNew User ListingNew ZealandNew subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            Next » NicaraguaNicknameNigerNigeriaNiueNoNo Edit-profile Form foundNo Edit-profile Forms found in trashNo Registration Form foundNo Registration Forms found in trashNo User Listing foundNo User Listing found in trashNo items found.No results found!NoneNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNot compatible with Profile BuilderNot compatible with your version of Profile Builder.Now that you acquired a copy of %s, you should take the time and register it with the serial number you receivedNumber of PostsNumber of Users/PageOmanOnly administrators can see this field on edit profile forms.Only an administrator can add new users.OptionsOverwrite ExistingPaginationPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayPasswordPassword Lost and Found.Password Recovery page URL (optional):Password Reset EmailPassword Reset Success EmailPassword Reset from "%1$s"Password Successfully Reset for %1$s on "%2$s"Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.PeruPhilippinesPitcairnPlease check that you entered the correct email address.Please check that you entered the correct username.Please choose a different field type as this one already exists in your form (must be unique) Please enter a valid username.Please enter a value for the required field Please enter your username or email address.Please select at least one user role Please try a different one!PolandPortugalPostsPowerful Modules (**)Profile Builder Login WidgetProfile Builder RegisterPuerto RicoQatarRadio ButtonsRandom (very slow on large databases > 10K user)Recover PasswordRedirectRegisterRegister VersionRegister Your VersionRegister page URL (optional):RegisteredRegistrationRegistration & Edit ProfileRegistration DateRegistration FormRegistration FormsRegistration with Admin ApprovalRegistration with Email ConfirmationRemember though, that the field-value combination must exist in the database.RemoveRepeat PasswordReply ToRepublic of the CongoRequiredResend Activation EmailReset KeyReset LinkReset PasswordReset UrlRestrict the userlisting to these selected roles only
            If not specified, defaults to all existing rolesRetry InstallReunionRoleRoles to DisplayRomaniaRow CountRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaveSave ChangesSave SettingsSave the user role order from the user roles checkboxesSearchSearch Users by All FieldsSearch all FieldsSearch the Edit-profile FormsSearch the Registration FormsSearch the User ListingSecret KeySelectSelect AllSelect FileSelect which user roles to show to the user ( drag and drop to re-order )Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name
            Use this at your own riskSend these credentials via email.SenegalSerbiaSet RoleSet the avatar size on the all-userlisting onlySet the avatar size on the single-userlisting onlySet the default sorting criteria
            This can temporarily be changed for each new sessionSet the default sorting order
            This can temporarily be changed for each new sessionSet the number of users to be displayed on every paginated part of the all-userlistingSet up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.SeychellesShare a little biographical information to fill out your profile. This may be shown publicly.ShortcodeShowShow all datesShow/Hide the Admin Bar on the Front-EndSierra LeoneSign-up DateSingaporeSingle-userlisting TemplateSint MaartenSite KeySite NameSite UrlSlovakiaSloveniaSolomon IslandsSomaliaSomeone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$sSomething went wrong, we could not connect to the server. Please try again later.Sorry, but you don't have permission to do that!South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.comSpecify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.comSpecify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)Specify the option which should be selected by defaultSpecify 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.Sri LankaStatusStrength indicatorStrongSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaTerms of AgreementTextareaThailandThat field is already added in this form That meta-name is already in use That username is already activated!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!The account %1s has been successfully created!The best way to add front-end registration, edit profile and login forms.The email address entered wasn't found in the database!The email you entered is not a valid email address.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical The entered passwords don't match!The entered row number is not numerical The entered value for the Datepicker is not a valid date-format The following option did not coincide with the ones in the options list: %s The following option(s) did not coincide with the ones in the options list: %s The meta-name cannot be empty The password must have a minimum strength of %sThe password must have the minimum length of %s charactersThe password you entered is incorrect.The passwords do not matchThe secret key from Google, www.google.com/recaptchaThe selected user couldn't be deletedThe selected users have been activatedThe selected users have had their activation emails resentThe serial number couldn't be validated because it expired!The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!The serial number entered couldn't be validated!The serial number is about to expire soon!The serial number was successfully validated!The shortcode will be available after you publish this form.The site key from Google, www.google.com/recaptchaThe userlisting will only be visible only to the logged in usersThe userlisting will only be visible to the following rolesThe username entered wasn't found in the database!The usernames cannot be changed.There was an error in the submitted formThere was an error performing that action!There was an error while trying to activate the userThere was an error while trying to activate the user.There was an error while trying to send the activation link to %1$s!These settings are also replicated in the "Admin Email Customizer" settings-page upon save.These settings are also replicated in the "User Email Customizer" settings-page upon save.This email is already in use.This email is already reserved to be used soon.This field is requiredThis form is empty.This login widget lets you add a login form in the sidebar.This message is only visible by administratorsThis username already exists.This username is already activated!This username is already reserved to be used soon.This username is invalid because it uses illegal characters.This username is now active!Timezone SelectTitle of the fieldTitle:To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login.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$sTo allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$sTo use reCAPTCHA you must get an API key fromTo use reCAPTCHA you must get an API public key from:TogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluType your password again. Type your password.U.S. Virgin IslandsURLUgandaUkraineUnapproveUnapprovedUnapproved User NotificationUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUpdateUpgrade Profile BuilderUpload UruguayUse these shortcodes on the pages you want the forms to be displayed:Use this shortcode on the page you want the form to be displayed:User Approval NotificationUser Email CustomizerUser IdUser ListingUser MetaUser NicenameUser RoleUser RolesUser Roles OrderUser not foundUser successfully approved!User successfully deleted!User successfully unapproved!User to edit:User-RoleUser-statusUserlisting SettingsUsernameUsername and EmailUsername or E-mailUsername or EmailUsernames cannot be changed.Users can register themselves or you can manually create users here.Users cannot currently register themselves, but you can manually create users here.Users successfully approved!Users successfully deleted!Users successfully unapproved!Users with Unconfirmed Email AddressUzbekistanValid tags {{reply_to}} and {{site_name}}VanuatuVaticanVenezuelaVersion %sVery WeakVery weakVietnamView all extra shortcode parametersView the Edit-profile FormView the Registration FormView the User ListingVisibilityVisible only to logged in users?Visible to following RolesWallis and FutunaWeakWebsiteWelcome to %1$s!


            Your username is:%2$s and password:%3$sWestern SaharaWhether the field is required or notWhether to automatically log in the newly registered user or not
            Only works on single-sites without "Admin Approval" and "Email Confirmation" features activated
            WARNING: Caching the registration form will make automatic login not workWhether to redirect the user to a specific page or notWith Extra Profile Fields you can create the exact registration form your project needs.Yahoo IMYemenYesYimYou are currently logged in as %1$s. %2$sYou are currently logged in as %1s. You don't need another account. %2sYou are currently logged in as %s. You can add the information for the %s after you add a entryYou can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.You can find it in the Profile Builder menu.You can find the default file here: %1$sYou cannot register this user roleYou decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.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.You don't have any pagination settings on this userlisting!You either don't have permission for that action or there was an error!You have successfully reset your password to: %1$sYou must be logged in to edit your profile.You must enter a valid email address.You must enter a value for the date-format You must enter a value for the row number You must enter the secret key You must enter the site key You must select a field You need to activate the Userlisting feature from within the "Modules" tab!You need to specify the title of the form before creating itYou will receive a link to create a new password via email.You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$sYour account has to be confirmed by an administrator before you can use the "Password Recovery" feature.Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.Your account on %1$s has been approved!Your account on %1$s has been unapproved!Your account on {{site_name}} has been approved!Your account on {{site_name}} has been unapproved!Your email was successfully confirmed.Your password has been successfully changed!Your profile has been successfully updated!Your selected password at signupYour session has expired! Please refresh the page and try againYour session has expired! Please refresh the page and try again.ZambiaZimbabwe[%1$s] Activate %2$s[%1$s] Your new account information[{{site_name}}] Activate {{username}}[{{site_name}}] Password Reset[{{site_name}}] Password Reset Successfullyapprove this user?approvedconfirm this email yourself?delete this user from the _signups table?delete this user?displays all users except the ones you specified the user_id fordisplays only the users that you specified the user_id fordisplays users having a certain meta-value within a certain (extra) meta-fieldemailherereCAPTCHArequiredresend the activation link?showunapprove this user?unapprovedusernameusername or emailPO-Revision-Date: 2017-05-08 09:42:31+0000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2); X-Generator: GlotPress/0.1 Project-Id-Version: Profile Builder

            Vești bune!

            Un administrator tocmai ți-a aprobat contul: {{username}} pe {{site_name}}.

            Salut,

            Din păcate un administrator nu ți-a aprobat contul: {{username}} pe {{site_name}}.

            Bine ai venit pe {{site_name}}!

            Numele tău de utilizator este:{{username}} și parola:{{password}}

            Bine ai venit pe {{site_name}}!

            Numele tău de utilizator este:{{username}} și parola:{{password}}

            Înainte de a iți putea accesa contul, un administrator trebuie să îl aprobe. Vei fi notificat prin e-mail

            Nou abonat pe {{site_name}}.

            Nume utilizator:{{username}}

            E-mail:{{user_email}}

            Nou abonat pe {{site_name}}.

            Nume utilizator:{{username}}

            E-mail:{{user_email}}

            Opțiunea aprobare administrator a fost activată în momentul înregistrarii, astfel vă rugăm țineți minte că acest utilizator trebuie aprobat înainte ca el/ea să se logheze!

            A fost înregistrată o cerere de schimbare a parolei pentru următorul cont: {{site_name}}
            Nume utilizator: {{username}}

            În cazul în care ai primit acest e-mail dintr-o greșeală, te rugăm să îl ignori și nu va avea loc nici o modificare.

            Pentru a reseta parola, te rugăm să accesezi următoarea adresă:
            {{{reset_link}}}

            Pentru a iți activa utilizatorul, apasă pe link-ul următor:
            {{{activation_link}}}

            După activare, vei primi încă un e-mail cu acreditările.

            Parola a fost modificată cu succes. Noua parolă este: {{password}}

            {{username}} a solicitat o parolă nouă prin opțiunea de resetare a parolei.

            Parola nouă este: {{password}}

            * disponibil doar pentru versiunile %1$sHobbyist și Pro %2$sNumăr serial:Numărul serial va expira în curând, te rugăm %1$s să reînnoiești licența %2$s.Numărul serial a expirat, te rugăm %1$s să reînnoiești licența %2$s.este activată. Este nevoie să o dezactivezi înainte de a activa această versiune a plugin-ului. "Aprobare Administrator" ActivatăOpțiune "Aprobare Administrator":"Confirmare E-mail" ActivatăPagina de destinație "Confirmare E-mail": "E-mail" - utilizatorii pot să se logheze doar cu adresa de e-mail."Nume utilizator și e-mail" - utilizatorii pot să se logheze fie cu numele de utilizator, fie cu e-mail-ul."Nume utilizator" - utilizatorii pot să se logheze doar cu numele de utilizator.%1$s %2$d%1$s a cerut schimbarea parolei prin opțiunea resetare parolă.
            Noua lui/ei parolă este: %2$s %1$s din %2$s%s nu a putut fi șters %s în așteptare« Anterior «« Primul (ex. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(fără titlu)** disponibil doar în versiunea %1$sPro %2$s.. Sunt disponibile Câmpuri Adiționale în versiunile Hobbyist sau PRO....Alege1 articol

            Numărul serial al Profile Builder este invalid sau lipsește.
            Te rugăm %1$sînregistrează copia ta%2$s pentru a primi acces la actualizările automate și la suport. Ai nevoie de o licență? %3$sCumpără una acum%4$s

            Titlu (Tastează)
            Titlu
            Tip
            Meta Name
            Necesar
            Notă: schimbarea titlului formularului va schimba și shortcode-ul!EROARE: Parola trebuie să aibă complexitatea minimă de %sEROARE: Parola trebuie să aibă lungimea minimă de %s caractereEROARE: Contul tău trebuie confirmat de către un administrator înainte de logare. Profile Builder Un nou cont a fost creat pentru tine pe {{site_name}}Un nou abonat este (a fost) înregistrat!Un ID unic, auto-generat pentru exact acest câmp
            Poți folosi acest lucru coroborat cu filtrele, pentru a viza acest element dacă e nevoie
            Nu poate fi editatAIMDespre tineActiveazăCheie activareLink activareURL activareActivAdaugă intrareAdaugă CâmpAdaugă nouAdaugă în listă un nou câmp Adaugă utilizatorAdaugă formular nou pentru editare profilAdaugă un nou formular de înregistrare Adaugă o noua listă de utilizatoriAdd-On-ul a fost activatAdd-On-ul a fost dezactivat.Add-On-ul este activAdd-On-ul este inactivAdd-on-ul este activAdd-On-uriAprobare administrator Aprobare Administrator (*)Setări Bară AdministratorPersonalizare E-mail AdministratorNotificare Administrator pentru modificarea parolei utilizatoruluiAfghanistanDupă actualizarea profilului...După înregistrare URL redirecționare după logare (opțional):Sunt de acord cu termenii și condițiile CheckboxAimAland IslandsAlbaniaAlgeriaToți utilizatoriiToți utilizatorii au fost șterși cu succes Template care listează toți utilizatoriiPermite utilizatorilor sa se logheze cu:Permite rolurilor diferite de utilizatori să editeze informațiile lor specifice. Configurează formularele de editare profil multiple cu câmpuri diferite pentru anumite roluri de utilizator.Permite utilizatorilor să se logheze cu E-mail-ul sau Numele Utilizatorului atunci când accesează site-ul tău.Extensii imagini permise Încărcare extensii permiseTimp permis pentru afișarea mesajelor de succes (în secunde)American SamoaUn administrator tocmai a aprobat contul tău pe %1$s (%2$s).Un administrator tocmai a respins cererea de aprobare pentru contul tău pe %1$s (%2$s).AndorraAngolaAnguillaAntarcticaAntigua and BarbudaAplicăAprobăAprobatArgentinaArmeniaArubaCa administrator, nu îți poți schimba rolul.AustraliaAustriaLogare automatăEtichete disponibileAvatarDimensiune AvatarDimensiune Avatar (Toată lista de utilizatori)Dimensiune Avatar (Template pentru o singură persoană)Încarcă AvatarAvatar sau GravatarAzerbaijanÎnapoi BahamasBahrainBangladeshBarbadosInformații de bazăÎnainte de a putea accesa contul %1s, un administrator trebuie să îl aprobe. Vei fi notificat prin e-mail.Înainte de a-ți putea accesa contul %1s, trebuie să confirmi adresa de e-mail. Te rog verifică inbox-ul și apasă pe link-ul de activare.Înainte de a-ți putea accesa contul, un administrator trebuie să îl aprobe. Vei fi notificat prin e-mail.BelarusBelgiumBelizeBeninBermudaBhutanInformații biograficeBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaAmbele câmpuri sunt goale.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaAcțiuni în masăBurkina FasoBurundiCambodiaCameroonCanadaAnuleazăCape VerdeCayman IslandsCentral African RepublicChadVerifică e-mail-ul pentru link-ul de confirmare.CheckboxChileChinaAlege o singură variantă de câmp, dintre cele suportateAlege unul dintre câmpurile acceptate pe care le gestionezi să instalezi manual.Selectează țaraCroatiaCubaCuracaoRedirecționări personalizate Personalizează formularele așa cum dorești (*)CyprusCzech RepublicFormat datăCâmp DatăDezactiveazăSetări predefiniteConținut predefinitOpțiune predefinităOpțiune/opțiuni predefiniteÎnregistrare predefinităÎnregistrare predefinită și înregistrare cu confirmare e-mailRol predefinitCriterii de sortare prestabilite Ordine de sortare predefinităValoare predefinităValoarea predefinită a câmpului Valoarea predefinită pentru textareaȘterge Șterge totȘterge toate articoleleȘterge acest elementDemocratic Republic of the CongoDenmarkDescriereDezactivatAfișează mesajeNume afișat Afișează nume caNume public afișat ca:DjiboutiVrei săVrei să aprobi în masă utilizatorii selectați?Vrei să ștergi în masă utilizatorii selectați?Vrei să anulezi în masă aprobările pentru utilizatorii selectați?DominicaDominican RepublicDescarcă AcumSe începe descărcarea și instalarea...E-mailEROAREEROARE:East TimorFormulare ușor de editat atât pentru afișarea utilizatorilor site-ului tău, cât și pentru a crea pagini individuale pentru utilizatori. Bazat pe shortcode, oferă opțiuni multiple pentru personalizarea modului de afișare.EcuadorEditeazăEditare ProfilAdaugă formulare noi pentru editare profilEditează formularele de înregistrare Editează lista de utilizatoriEditează acest elementFormular editare profilFormulare editare profilEgyptEl SalvadorElimină cu totul parolele vulnerabile, prin stabilirea unei lungimi minime și aplicarea unei anumite complexități a parolei.E-mailConfirmare E-mailPersonalizare e-mailSubiect e-mailNotificare e-mail retrimisă către utilizatorActivează opțiuni extraActivează moduleleIntrodu o descriere (detaliată) a opțiunii pentru a fi citită de către utilizatorii finali
            Opțional Introdu o listă de etichete separate prin virgulă
            Vizibilă pentru utilizatorIntrodu o listă de valori separate prin virgulă
            Nefiind permisă utilizatorului, poate conține orice, exceptând caractere speciale sau apostrofuriIntrodu o descriere detaliată a termenilor acordului pentru a fi citită de utilizator.
            Link-urile pot fi introduse prin folosirea sintaxei HTML standard: <a href="custom_url">custom_text</a>Introdu o valoare (intre 20 și 200) pentru a stabili dimensiunea 'Avatar'
            Dacă nu se specifică, numărul predefinit este 100Introdu numărul minim de caractere pe care parola trebuie să îl conțină. A se lasă liber dacă nu există o limită minimăEquatorial GuineaEritreaEstoniaEthiopiaTot ce ai nevoie pentru a gestiona utilizatorii este cel mai probabil disponibil folosind Modulele Pro.Exemplu:Vizualizare fragmentPagini existenteOpțiuni extraFuncții extra Câmpurile extra din profil sunt disponibile în versiunile Hobbyist sau PROParametri extra shortcodeFalkland IslandsFaroe IslandsOpțiuni care oferă mai mult control asupra utilizatorilor, cresc securitatea și ajută împotriva spam-ului la înregistrare.Câmp Proprietățile câmpului Titlu câmpFijiAflă mai multe despre Modulele PROFinlandPrenumePrenume/NumePrenumePentru interacțiunea modernă cu utilizatorulDin motive de securitate, trebuie să introduci ip-ul remote în reCAPTCHA!Formular shortcodeFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesDe la (nume)De la (răspunde către e-mail)GabonGambiaSetări GeneraleÎncărcări generaleGeorgiaGermanyObţine o nouă parolăÎncepe cu câmpuri suplimentare GhanaGibraltarLink de mers înapoiGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald IslandsAici poți activa / dezactiva modulele disponibile pentru Profile Builder.AscundeHondurasHong KongHungaryIDIcelandDacă apreciezi %1$s te rugăm trimite-ne feedback-ul tău pe WordPress.org. Cu cât mai mulți utilizatori fericiți, cu atât mai multe caracteristici, mai puține bug-uri și mai multă activitate pe partea de suport.Dacă înregistrezi această versiune a Profile Builder, vei primi informații legate de upgrade-uri, patch-uri și suport tehnic.InactivIndiaIndonesiaAdăugare / Ascunde adăugareInstalează acumInstalare finalizatăCheie de validare incorectă!Cheie incorectă! Nume utilizator invalid.IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanPăstrați utilizatorii în afara dashboard-ului WordPress, redirecționându-i după logare sau înregistrare către prima pagină, iar în felul acesta totul este la câteva click-uri distanță. KenyaKiribatiKosovoKuwaitKyrgyzstanEticheteLaosUltimul »»NumeNumeLatviaLebanonLesothoLiberiaLibyaLiechtensteinVizualizare sub forma de listă LithuaniaÎncarcă fișierul CSS al Profile Builder în Front-end:Ieșire Deconectare »Ieși din acest contLogout din acest cont.LogareLogarea se realizează folosind adresa de e-mail. Acest câmp NU va apărea în Front-end! ( aceste setări se pot schimba din tab-ul "%s" ) Logare cu E-mail sau Nume UtilizatorLogoutŢi-ai pierdut parolaŢi-ai pierdut parola?LuxembourgMacaoMacedoniaMadagascarAsigură-te că utilizatorii se înregistrează cu adrese de e-mail autentice. La înregistrare utilizatorii vor primi o notificare de confirmare a adresei de e-mail.MalawiMalaysiaMaldivesMaliMaltaGestionează câmpurile predefinite și extraGestionează câmpurileMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMediuMeta-nameMexicoMicronesiaIndicator al lungimii și complexității paroleiLungime minimă a paroleiComplexitate minimă a parolei:Lungimea minimă de %d caractereVersiunea Profile Builder minim necesară:ModuleMoldovaMonacoMongoliaMontenegroMontserratMai multe informații URL pentru mai multe informații Mai mult...MoroccoMozambiqueFormulare editare profil multipleFormulare multiple de înregistrare Trebuie să introduci o adresă de e–mail validă sau tag-ul {{reply_to}} care folosește adresa de e-mailul predefinită a administratoruluiMyanmarNumeNume/DescriereNamibiaNauruNepalNetherlandsNew CaledoniaFormular editare profil nouFormular nou de înregistrare Listă de utilizatori nouăNew ZealandUn nou abonat pe %1$s.

            Nume utilizator:%2$s
            E-mail:%3$s
            Următorul » NicaraguaPoreclăNigerNigeriaNiueNuNu s-au găsit formulare pentru editare profilNu s-au găsit formularele pentru editare profil în gunoiNu s-au găsit formulare de înregistrare Nu s-au găsit formularele de înregistrare în gunoiNu a fost găsită lista de utilizatoriNu a fost găsită lista de utilizatori în gunoiNu a fost găsit niciun element.Nu există rezultate!NoneNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNu este compatibil cu Profile BuilderNu este compatibil cu versiunea ta de Profile Builder.Acum, că ai primit o copie de %s, te rugăm să înregistrezi plugin-ul cu numărul serial pe care l-ai primitNumăr de postăriNumăr de utilizatori/paginăOmanAcest câmp în formularele editare profil este permis doar administratorilor.Doar administratorul poate adăuga noi utilizatori.OpțiuniSuprascrie ceea ce existăPaginarePakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayParola Parolă pierdută și găsită.URL pagină recuperare parolă (opțional):E-mail de resetare a paroleiE-mail de confirmare a parolei modificată cu succesResetare parolă de la "%1$s"Parolă resetată cu succes pentru %1$s pe "%2$s"Personalizează toate e-mail-urile trimise către utilizatori și administratori. La înregistrare, confirmare e-mail, aprobare / refuz aprobare.PeruPhilippinesPitcairnTe rog verifică dacă adresa de e-mail introdusă este corectă.Te rog verifică dacă numele de utilizator este corect.Selectează un tip diferit de câmp fiindcă cel selectat există deja în formular (trebuie sa fie unic) Te rugăm să introduci un nume utilizator valid.Te rugăm să introduci o valoare pentru câmpul necesarTe rog introdu numele tău de utilizator și adresa de e-mail.Selectează cel puțin un rol pentru utilizator Te rog încearcă una diferită!PolandPortugalPostări Module puternice (**)Profile Builder Login WidgetÎnregistrare Profile BuilderPuerto RicoQatarButoane radioAleator (foarte încet pentru baze de date mari > 10 000 utilizatori)Recuperează ParolaRedirecționează Înregistrează-te Înregistrează versiunea Înregistrează versiunea proprieURL pagină de înregistrare (opțional):Înregistrat ÎnregistrareÎnregistrare & editare profilData înregistrării Formular de inregistrareFormulare înregistrare Înregistrare cu aprobare administratorÎnregistrare folosind confirmare e-mailAdu-ți aminte, combinația valoare-câmp trebuie să existe în baza de date. Șterge Repetă parolaRăspunde cătreRepublic of the CongoNecesarRetrimite e-mail-ul de activareReset KeyReset LinkResetare parolăReset UrlRestricționează lista de utilizatori doar pentru rolurile selectate
            În lipsa unei selecții, se activează opțiunile predefinite pentru toate rolurile existenteInstalează din nouReunionRolRoluri pentru afișare RomaniaNumărătoare rânduriRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSalveazăSalvează ModificărileSalvează SetărileSalvează ordinea rolurilor de utilizator din checkbox-urile acestoraCautăCaută utilizatorii folosind toate câmpurile Caută toate câmpurile Caută formulare pentru editare profilCaută formularele de înregistrare Caută lista de utilizatoriSecret KeySelecteazăSelectează totSelectează fișierul Selectează care dintre roluri vor fi afișate către utilizator (trage și așează-le pentru a schimba ordinea)Selectând "Da" se va adăuga câmpul la listă, dar va suprascrie orice alt câmp din baza de date care are același meta-name
            Folosești acest lucru pe propria răspundere Trimite aceste acreditari prin e-mail.SenegalSerbiaStabilește rolStabilește dimensiunea avatarului în template-ul care listează toți utilizatoriiStabilește dimensiunea avatarului în template-ul pentru o singură persoanăPredefineşte criteriile de sortare
            Pot fi schimbate temporar pentru fiecare sesiune nouăPredefinește ordinea de sortare
            Poate fi schimbată temporar pentru fiecare sesiune nouăSetează numărul utilizatorilor care vor fi afișați pe fiecare pagină numerotată a listei de utilizatoriConfigurează formulare de înregistrare multiple, cu câmpuri diferite pentru anumite tipuri de roluri. Surprinde informații diferite pentru tipuri diferite de utilizatori.SeychellesÎmpărtășește câteva informații biografice care să completeze profilul tău. Acestea pot fi afișate public.ShortcodeAratăArată toate datele Arată/Ascunde Bara Administrator în Front-end Sierra LeoneDată înregistrare SingaporeTemplate pentru o singură persoanăSint MaartenSite KeyNume siteURL siteSlovakiaSloveniaSolomon IslandsSomaliaCineva a cerut ca parola pentru următorul cont să fie resetată: %1$s
            Dacă acest lucru este o greșeala, ignoră acest e-mail și lucrurile vor rămâne neschimbate.
            Pentru a reseta parola, accesează următorul link: %2$sA apărut o eroare, conectare eșuată la server. Te rugăm să încerci din nou mai târziu.Îmi pare rău, dar nu ai permisiunea de a face acest lucru!South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecifică URL-ul paginii către care utilizatorii vor fi redirecționați după ce se înregistrează cu acest formular
            Folosește următorul format: http://www.mysite.comSpecifică URL-ul paginii către care utilizatorii vor fi redirecționați după actualizarea profilului folosind acest formular
            Folosește formatul următor: http://www.mysite.comSpecifică extensia/extensiile pe care vrei să le limitezi la upload
            Exemplu: .ext1,.ext2,.ext3
            Dacă nu se specifică, setările originale sunt: toate extensiile de fișiere permise de către Wordpress (.*) Specifică extensia/extensiile pe care vrei să le limitezi la upload
            Exemplu: .ext1,.ext2,.ext3
            Dacă nu se specifică, setările originale sunt: .jpg,.jpeg,.gif,.png (.*)Specifică numărul de rânduri pentru câmpul 'Textarea'
            Dacă nu se specifică, numărul predefinit este 5Specifică opțiunea care ar trebui să fie bifată în setările predefinite
            Dacă sunt valori multiple, separă-le cu "," (virgula)Specifică opțiunea care ar trebui să fie selectată în setările predefiniteSpecifică pagina către care utilizatorii vor fi direcționați atunci când confirmă adresa de e-mail. Aceasta pagină poate să difere de pagina/paginile de înregistrare și poate fi schimbată oricând. În lipsa unei selecții, o pagină simplă de confirmare va fi afișată pentru utilizator. Sri LankaStatusIndicator complexitatePuternicSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaTermenii acorduluiTextareaThailandCâmpul este deja adăugat în acest formular Acest meta-name este deja în uz Acest nume de utilizator este deja activat!Opțiunea "Aprobare administrator" a fost activată în momentul înregistrării, astfel vă rog amintiți-vă că este nevoie de aprobarea utilizatorului înainte ca el/ea să se poată loga!Contul %1s a fost creat cu succes!Cel mai bun mod de a adăuga formulare de înregistrare, login și editare profil din front-end.Adresa de e-mail introdusă nu a fost găsită în baza de date!Adresa de e-mail introdusă nu este o adresă de e-mail validă.Mărimea introdusă a avatarului nu este între 20 şi 200 Mărimea introdusă a avatarului nu este în formă numerică Parolele introduse nu coincid!Numărul rândului introdus nu este în formă numerică Valoarea introdusă pentru Datepicker nu este în format dată valid Următoarea opțiune nu coincide cu cele din lista de opțiuni: %s Următoarele opțiuni nu coincid cu cele din lista de opțiuni: %s Numele-meta nu poate fi gol Parola trebuie să aibă complexitatea minimă de %sParola trebuie să aibă lungimea minimă de %s caractereParola introdusă este incorectă.Parolele nu coincidSecret key-ul de la Google, www.google.com/recaptchaUtilizatorul selectat nu a putut fi ștersUtilizatorii selectați au fost activați E-mail-urile de activare au fost retrimise către utilizatorii selectați Numărul serial nu a putut fi validat pentru că a expirat!Numărul serial nu a putut fi validat pentru că timpul pentru procesul de validare a expirat. Acest lucru e posibil să se fi întâmplat din cauză că serverul nu funcționează momentan. Te rugăm încearcă din nou mai târziu! Numărul serial nu a putut fi validat!Numărul serial va expira în curând!Numărul serial a fost validat cu succes!Shortcode-ul va fi disponibil după ce publici acest formular.Site key-ul de la Google, www.google.com/recaptchaLista utilizatorilor va fi vizibilă doar de către utilizatorii logatiLista utilizatorilor va fi vizibilă de către rolurile următoareNumele de utilizator nu a fost găsit în baza de date!Numele de utilizator nu pot fi schimbate.A apărut o eroare în formularul trimisA apărut o eroare în timp ce se desfășura această acțiune!A apărut o eroare în timpul acțiunii de activare a utilizatoruluiA apărut o eroare în timp ce se derula activarea utilizatorului.A apărut o eroare în timpul acțiunii de trimitere a link-ului de activare %1$s!Aceste setări sunt replicate, de asemenea, în pagina de setări "Personalizare e-mail administrator" după salvare.Aceste setări sunt de asemenea replicate după salvare în pagina pentru setări a "Personalizare e-mail utilizator" Acestă adresa de e-mail este deja în uz.Această adresă de e-mail este deja rezervată pentru a fi folosită în curând.Acest câmp este obligatoriuAcest formular este gol.Acest widget de conectare îți permite să adaugi un formular de conectare în bara de instrumente.Acest mesaj este vizibil doar pentru administratori.Acest nume de utilizator există deja.Acest nume de utilizator este deja activat!Acest nume de utilizator este rezervat pentru a fi folosit în curând.Acest nume utilizator este invalid deoarece folosește caractere nepermise.Acest nume de utilizator este acum activ!Selectează fusul orarTitlul câmpului Titlu:Pentru a-ți activa contul, dă click pe următorul link:

            %s%s%s

            După ce îl activezi, vei primi *un nou email* cu informații despre contul tău.Pentru a permite utilizatorilor să se înregistreze pe website folosind Profile Builder, mai întâi trebuie activată înregistrarea utilizatorilor. Mergi la %1$s Setări rețea %2$s, și în meniul Setări Înregistrare asigură-te că este bifat “Conturile utilizatorilor pot fi înregistrate”. %3$s Anulează %4$sPentru a permite utilizatorilor să se înregistreze pe website-ul tău prin intermediul Profile Builder, mai întâi trebuie sa activezi înregistrarea utilizatorilor. Mergi la tab-ul %1$sSetări -> Generale%2$s, și sub Membership bifează căsuța “Oricine se poate înregistra”. %3$sÎnlătură%4$sPentru a folosi reCAPTCHA trebuie să obţii o cheie API de laPentru a folosi reCAPTCHA trebuie să obţii o cheie publică API de la:TogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluTastează parola din nouTastează parolaU.S. Virgin IslandsURLUgandaUkraineanulează aprobarea Neaprobat Notificare utilizator neaprobatăUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsActualizează Actualizează Profile BuilderÎncarcă UruguayFolosește aceste shortcode-uri pe paginile în care vrei ca formularele să fie afișate:Folosește acest shortcode pe pagina pe care vrei să fie afișat formularul:Notificare aprobare utilizatorPersonalizare E-mail Utilizator ID utilizatorListă utilizatori Utilizator MetaNicename-ul utilizatoruluiRol UtilizatorRoluri utilizatorOrdine roluri utilizatorUtilizatorul nu a fost găsit.Utilizator aprobat cu succes!Ștergerea utilizatorului a avut succes!Neaprobarea utilizatorului a avut succes!Utilizator pentru editare:Rolul UtilizatoruluiStatus utilizator Setări listă utilizatoriNume UtilizatorNume utilizator și e-mail Nume utilizator sau e-mailNume Utilizator sau E-mailNumele de utilizator nu poate fi schimbatAici utilizatorii se pot înregistra singuri sau tu poți să ii creezi manual. Utilizatorii momentan nu se pot înregistra singuri, dar poți să ii creezi manual aici.Utilizatori aprobați cu succes!Ștergerea utilizatorilor a avut succes!Neaprobarea utilizatorilor a avut succes!Utilizatori cu adrese de e-mail neconfirmateUzbekistanTag-uri valide {{reply_to}} și {{site_name}}VanuatuVaticanVenezuelaVersiune %sFoarte slabFoarte SlabVietnamVezi toți parametrii shortcode extraVizualizează formularul de editare profilVizualizează formularul de înregistrare Vizualizează lista de utilizatoriVizibilitateVizibil doar pentru utilizatorii logați?Vizibil de către rolurile următoareWallis and FutunaSlabWebsiteBine ai venit pe %1$s!


            Numele tău de utilizator este: %2$s şi parola:%3$sWestern SaharaDacă un câmp este necesar sau nuDacă noul utilizator se poate loga automat sau nu
            Funcționează doar pentru site-uri singulare care nu au activate opțiunile "aprobare administrator" sau "confirmare e-mail"
            ATENȚIE: Caching-ul formularului de înregistrare va face ca logarea automată să nu funcționeze Dacă utilizatorul va fi redirecționat către o pagină specifică sau nuFolosind câmpurile extra din profil poți să creezi exact formularul de înregistrare de care are nevoie proiectul tău. Yahoo IMYemenDaYimÎn acest moment ești logat ca %1$s. %2$sÎn acest moment ești logat ca %1s. Nu ai nevoie de un alt cont. %2sÎn prezent ești logat ca %s. Poți să adaugi informația pentru %s după ce adaugi o intrare Poți găsi o listă cu adresele de e-mail neconfirmate %1$sUsers > All Users > Email Confirmation%2$s.Poți găsi o lista a utilizatorilor la %1$sUsers > All Users > Admin Approval%2$s.Îl puteți găsi în meniul Profile Builder.Poți găsi fișierul inițial aici: %1$sNu poți înregistra acest rol pentru utilizatorTu decizi cine este utilizatorul website-ului tău. Primești notificări prin e-mail sau aprobi mai mulţi utilizatori simultan din interfața WordPress.Tu decizi cine este utilizatorul website-ului tău. Primești notificări prin e-mail sau aprobi mai mulţi utilizatori simultan din interfața WordPress. Activează opțiunea "Aprobare Administrator" prin a trece la versiunile %1$sHobbyist sau PRO %2$s.Nu ai nicio setare de paginare pentru acestă listă de utilizatori!Fie nu ai permisiunea pentru această acțiune, fie a avut loc o eroare!Ai resetat cu succes parola ca: %1$sTrebuie să fii logat pentru a putea edita profilul.Trebuie să introduci o adresă de e-mail validă.Trebuie să introduci o valoare pentru formatul dată Trebuie să introduci o valoare pentru numărul rândului Trebuie să introduci secret key-ul Trebuie să introduci site key-ul Trebuie sa selectezi un câmp Trebuie să activezi opțiunea Listă Utilizatori din tab-ul "Module"Trebuie să specifici titlul formularului înainte de crearea luiVei primi prin e-mail un link pentru a crea o noua parolă.În curând vei fi redirecționat automat. Dacă această pagina se poate vizualiza pentru mai mult de %1$d, te rog apasă aici %2$s.%3$sContul tău trebuie să fie confirmat de către un administrator înainte să poți folosi opțiunea "Recuperare parolă"Contul tău trebuie să fie confirmat de către un administrator înainte de a putea folosi opțiunea "Resetare parola".Contul tău pe %1$s a fost aprobat!Contul tău pe %1$s nu a fost aprobat!Contul tău pe {{site_name}} a fost aprobat!Contul tău pe {{site_name}} nu a fost aprobat!E-mail-ul a fost confirmat cu succes.Parola ta a fost schimbată cu succes!Profilul tău a fost actualizat cu succes!Parola selectată la înregistrare Sesiunea a expirat! Te rugăm să actualizezi pagina și să încerci din nouSesiunea a expirat! Actualizează pagina și încearcă din nou.ZambiaZimbabwe[%1$s] Activează %2$s[%1$s] Noile informații ale contului tău[{{site_name}}] Activează {{username}}[{{site_name}}] Modificare parolă[{{site_name}}] Parolă modificată cu succesaprobi acest utilizator?aprobatpropria confirmare a adresei de e-mail? ștergi acest utilizator din tabelul _signups?ștergi acest utilizator?afișează toți utilizatorii, exceptând cei pentru care ai specificat un id de utilizatorafișează doar utilizatorii pentru care ai specificat un id de utilizatorafișează utilizatorii ca având a anumită valoare meta într-un anumit câmp meta (extra)E-mailaicireCAPTCHAnecesarretrimite link-ul de activare aratăanulezi aprobarea pentru acest utilizator?neaprobatNume utilizatornume utilizator sau e-mailtranslation/profile-builder-da_DK.mo000066600000234236152141651160013503 0ustar00L|:|:l}:y:cd;;c<=>?C?@;@@K@C)A[mAAAAB">B+aBEB1B CeC uCC C CC2C C-DO2D D DDD!xEEdE>F5VFYFGFR.GcG!G7H'?HgHII]IUsIIIIIJJ J $J.J6JPJYJsJJJJ!J#JK0K8K@KOKbKuK*K KK K KKLL#0LTL$tLLL LLL L(LMM;MLMDN]NvN9NN?NAO*[OOOO OOOOO OOO0O P 'P1P39PmPPPP PP P QQ $Q/Q4Q+djdd drdee .e:e?e_e gere ee?eeee ff!f3=f qf}fffffffffg gg !g.g 5g?g GgRg Wgagjg qggg!gIggg hh$h,h/h7hhxiii ii iii ijjj#j +j7j>j DjPjWjljtjzjj jj&k,k5kwew,w,w8w%x=xYxsx!x#xxxxxy y"y?y Xydy jy0xyyyy*y*z -z ;zHz)Qz{zzz z zzz{{ +{$L{Mq{{{{{{{ | |+| :|D|jU| ||||| ||} } }*} @} L}Y} s}} }} }} } }7} ~'~B~T~r~~ ~~ ~ ~~5~:5V^I5!Ҁ/ 2<YoVɁV w ]n (  #0 9CLU^nvQO07҅ , D P\b%Ux 6 Ɗ͊718PV_ v  NjЋ)ً!#%I.I7Z32ƍ)"#(F@oLOM/l:&׏r%&:ِ;P0ڑ* -6<dp@;S2 “(* 475lD`[HZ/Md;x.#2%<X—՗ܗИ->5lɚњ ؚ 4HLS [ ep $ EAY̜Ԝ    (2 LWhw ̝ ڝ !4FDcS5$T y) ȟ ӟ ݟ#.I _ jFŠ $@639jXd$f )GB#<bKN,(Ǧ""y62r>;G 2h+%ǩ+*DcK<K";nr+KIhe'd)02&,A+n ?@<CL#a%+ʯ )/Y@k:N60<mr 49&Ls  );o)zjdbǶ.׷IĹ:ٺGB0Is'&( !5%W1}Q9 ;pF Ž ܽ6H+WO Ӿ ޾"h?6fBcH\"L9o5 ^V M [ex )! B!]#13 !/8Kb$}7   !<Ne( ."C!f_<E'( B3v?N1GP X bn 0 5 ?S i)* ,5> G S]Hpi#h!)09AWf"o  #- =K T ^rh  #') Q[b8i4&DCM 7ASc454 /9P Y/d  pVc ..AI8Y " ,>=U/K/c  !   ,:BS(% 3=7E5}F  %CKQ Xd:CL%\  w %,MBBlF7JS \rf B.q;A UagI08=L^4{  7U \g y   "J^ e ozw  .9O^z  #*2 :F  " 9 DOW`iry 2%>$4 AY r~ : B LV\/c   *D c",  &1@I R*^$^ .7> ERa S  *5<EK(P6y#3*%P_y $3n D,!1 IS h u 4  ",5,U(085G  73<ap"(&4E3z&!"#Dhy  =Ma v++ )+>"U x +% BF   -=  0> U bp!  6 D(Js" 6);`7_`403dmu88YUPP a /<A'R z #     #,Z<p. -  %29| 8 Y w@ 2      8 N _ g {             /"D%g(9ab9:990s&-AO;N 0<,"i~%&&L>s71wDu+E;5# Y(z67<IOai`e!@)ER]3&( D4Xy0,?C;AJQfo w(#Lbr%@@  ^        ! !%! D!R!f!z!!!! ! !! ""+"D"]"Jz"\""#5#"G#)j# #*### # # # $ $%$;$[$w$ $+$$$$$Q%U% e%.%B&:&j3''E(e(-)c?) )))).)Q)'@*Fh*h*R++k+%+)+)+},,.u-E-A->,.5k.5.+..//2/*b/"//F/;0LL0E0s0S1Ck1a1\2'n2.20272+.3+Z3/3&3>3?4\4 d4n4!4&4%434'5 >5H5<e55A565Q/661666 T7_7h77 777&A8h8 y88

            Good News!

            An administrator has just approved your account: {{username}} on {{site_name}}.

            Hello,

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            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!

            Someone requested that the password be reset for the following account: {{site_name}}
            Username: {{username}}

            If this was a mistake, just ignore this email and nothing will happen.

            To reset your password, visit the following address:
            {{{reset_link}}}

            To activate your user, please click the following link:
            {{{activation_link}}}

            After you activate, you will receive another email with your credentials.

            You have successfully reset your password to: {{password}}

            {{username}} has requested a password change via the password reset feature.

            His/her new password is: {{password}}

            * only available in the %1$sHobbyist and Pro versions%2$s. Serial Number: Your serial number is about to expire, please %1$s Renew Your License%2$s. Your serial number is expired, please %1$s Renew Your License%2$s. is also activated. You need to deactivate it before activating this version of the plugin."Admin Approval" Activated:"Admin Approval" Feature:"Admin Approval" on User Role:"Email Confirmation" Activated:"Email Confirmation" Landing Page:"Email" - users can Log In only with Email."Username and Email" - users can Log In with both Username and Email."Username" - users can Log In only with Username.%1$s %2$d%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s%1$s of %2$s%s couldn't be deleted%s pending« Prev«« First(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(no title)** only available in the %1$sPro version%2$s.. Extra Field Types are available in Hobbyist or PRO versions.... Choose...Choose1 item

            Your Profile Builder serial number is invalid or missing.
            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

            Redirect
            URL
            Title (Type)
            Title
            Type
            Meta Name
            Required
            User ID / Username
            Redirect
            URL
            User Role
            Redirect
            URL
            Note: changing the form title also changes the shortcode!ERROR: The password must have a minimum strength of %sERROR: The password must have the minimum length of %s charactersERROR: Your account has to be confirmed by an administrator before you can log in.Profile Builder A new account has been created for you on {{site_name}}A new subscriber has (been) registered!A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be editedAIMAbout YourselfAccept user payments, create subscription plans and restrict content on your membership site.Accept user payments, create subscription plans and restrict content on your website.Account ManagementActivateActivation KeyActivation LinkActivation UrlActiveAdd EntryAdd FieldAdd NewAdd New Field to the ListAdd UserAdd new Edit-profile FormAdd new Registration FormAdd new User ListingAdd-On has been activatedAdd-On has been deactivated.Add-On is activeAdd-On is inactiveAdd-On is ActiveAdd-OnsAddressAdmin ApprovalAdmin Approval (*)Admin Bar SettingsAdmin Email CustomizerAdmin Notification for User Password ResetAfghanistanAfter Edit ProfileAfter LoginAfter LogoutAfter Profile Update...After RegistrationAfter Registration...After Successful Email ConfirmationAfter Successful Password ResetAfter login redirect URL (optional):Agree To Terms CheckboxAimAland IslandsAlbaniaAlgeriaAll UsersAll users have been successfully deletedAll-userlisting TemplateAllow Users to Log in With:Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.Allow users to log in with their email or username when accessing your site.Allow users to recover their password in the front-end using the %s.Allowed Image ExtensionsAllowed Upload ExtensionsAllowed time to display any success messages (in seconds)American SamoaAn administrator has just approved your account on %1$s (%2$s).An administrator has just unapproved your account on %1$s (%2$s).An error occurred, please try again later.AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApplyApproveApprovedArgentinaArmeniaArubaAs an administrator you cannot change your role.AscendingAustraliaAustriaAuthor Archive ( http://sitename.com/author/admin )Automatically Log InAvailable TagsAvailable tags for dynamic URLsAvatarAvatar SizeAvatar Size (All-userlisting)Avatar Size (Single-userlisting)Avatar UploadAvatar or GravatarAzerbaijanBackBahamasBahrainBangladeshBarbadosBasic InformationBeautiful registration forms fully customizable using the %s shortcode.Before you can access your account %1s, an administrator has to approve it. You will be notified via email.Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.Before you can access your account, an administrator needs to approve it. You will be notified via email.BelarusBelgiumBelizeBeninBermudaBhutanBilling AddressBiographical InfoBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBoth fields are empty.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaBulk ActionsBurkina FasoBurundiCambodiaCameroonCan contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}CanadaCancelCape VerdeCayman IslandsCentral African RepublicChadCheck your e-mail for the confirmation link.CheckboxChileChinaChoose Edit Profile form to display on My Account page:Choose Register form to display on My Account page:Choose one of the supported field typesChoose one of the supported fields you manage install manually.Could not install plugin. Retry or install manually.CountryCountry SelectCroatiaCubaCuracaoCustom RedirectsCustomize Your Forms The Way You Want (*)CyprusCzech RepublicDashboard (redirect users from accessing the dashboard)Date-formatDatepickerDeactivateDefaultDefault ContentDefault Edit ProfileDefault OptionDefault Option(s)Default RegisterDefault RegistrationDefault Registration & Registration with Email ConfirmationDefault RoleDefault Sorting CriteriaDefault Sorting OrderDefault ValueDefault WP LoginDefault WP Recover PasswordDefault WP RegisterDefault option of the fieldDefault value of the fieldDefault value of the textareaDeleteDelete allDelete all itemsDelete this itemDemocratic Republic of the CongoDenmarkDescendingDescriptionDisabledDisplay MessagesDisplay NameDisplay name asDisplay name publicly asDisplay name publicly as - only appears on the Edit Profile page!Display on PB formsDisplay on WooCommerce CheckoutDisplay on default WP formsDisplays customer billing fields in front-end. Displays customer shipping fields in front-end. DjiboutiDo you want toDo you want to bulk approve the selected users?Do you want to bulk delete the selected users?Do you want to bulk unapprove the selected users?DominicaDominican RepublicDownload NowDownloading and installing...E-mailERRORERROR:East TimorEasy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings.EcuadorEditEdit ProfileEdit the Edit-profile FormsEdit the Registration FormsEdit the User ListingEdit this itemEdit-profile FormEdit-profile FormsEgyptEl SalvadorEliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.EmailEmail AddressEmail ConfirmationEmail CustomizerEmail SubjectEmail TemplatesEmail notification resent to userEnable extra featuresEnable your modulesEnter a (detailed) description of the option for end users to read
            OptionalEnter a comma separated list of labels
            Visible for the userEnter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophesEnter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100Enter the minimum characters the password should have. Leave empty for no minimum limitEquatorial GuineaEritreaEstoniaEthiopiaEverything you will need to manage your users is probably already available using the Pro Modules.Example:Excerpt ViewExisting PagesExtra FeaturesExtra FunctionsExtra Profile Fields are available in Hobbyist or PRO versionsExtra shortcode parametersFalkland IslandsFaroe IslandsFeatures that give you more control over your users, increased security and help you fight user registration spam.FieldField PropertiesField TitleFijiFind out more about PRO ModulesFinlandFirst NameFirst/LastnameFirstnameFor Modern User InteractionFor security reasons, you must pass the remote ip to reCAPTCHA!Form ShortcodeFranceFreeFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriction-less login using %s shortcode or a widget.From (name)From (reply-to email)GabonGambiaGeneral SettingsGeneric UploadsGeorgiaGermanyGet New PasswordGet started with extra fieldsGhanaGibraltarGlobal RedirectsGo Back LinkGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald IslandsHere you can activate / deactivate available modules for Profile Builder.HideHondurasHong KongHow does this work?HungaryIDIcelandIf you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.InactiveIndiaIndividual User RedirectsIndonesiaInput / Hidden InputInstall NowInstallation completeInvalid activation key!Invalid key!Invalid username.IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanKeep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.KenyaKiribatiKosovoKuwaitKyrgyzstanLabelsLaosLast »»Last NameLastnameLatviaLebanonLesothoLiberiaLibyaLiechtensteinList ViewLithuaniaLoad Profile Builder's own CSS file in the front-end:Log outLog out »Log out of this accountLog out of this account.LoginLogin ( wp_login.php )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 )Login with Email or UsernameLogoutLost Password ( wp-login.php?action=lostpassword )Lost your passwordLost your password?LuxembourgMacaoMacedoniaMadagascarMake sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.MalawiMalaysiaMaldivesMaliMaltaManage Default and Extra FieldsManage FieldsMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMediumMember ManagementMeta-nameMexicoMicronesiaMinimum Password Length and Strength MeterMinimum Password Length:Minimum Password Strength:Minimum length of %d charactersMinimum required Profile Builder version:ModulesMoldovaMonacoMongoliaMontenegroMontserratMoreMore DetailsMore InfoMore Info UrlMore...MoroccoMozambiqueMultiple Edit-profile FormsMultiple Registration FormsMust be a valid email address or the tag {{reply_to}} which defaults to the administrator emailMyanmarNameName/DescriptionNamibiaNauruNepalNetherlandsNew CaledoniaNew Edit-profile FormNew Registration FormNew User ListingNew ZealandNew subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            Next » NicaraguaNicknameNigerNigeriaNiueNoNo Edit-profile Form foundNo Edit-profile Forms found in trashNo Registration Form foundNo Registration Forms found in trashNo User Listing foundNo User Listing found in trashNo items found.No results found!NoneNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNot compatible with Profile BuilderNot compatible with your version of Profile Builder.Now that you acquired a copy of %s, you should take the time and register it with the serial number you receivedNumber of PostsNumber of Users/PageOmanOnly administrators can see this field on edit profile forms.Only an administrator can add new users.OptionsOverwrite ExistingPB LoginPB Recover PasswordPB RegisterPaginationPaid & Free SubscriptionsPaid AccountsPaid Member Subscriptions - a free WordPress pluginPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayPasswordPassword Lost and Found.Password Recovery page URL (optional):Password Reset EmailPassword Reset Success EmailPassword Reset from "%1$s"Password Successfully Reset for %1$s on "%2$s"Payment ManagementPersonalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.PeruPhilippinesPhonePitcairnPlease check that you entered the correct email address.Please check that you entered the correct username.Please choose a different field type as this one already exists in your form (must be unique) Please enter a (valid) reCAPTCHA valuePlease enter a valid username.Please enter a value for the required field Please enter your username or email address.Please select and enter the ID or username of your user.Please select at least one user role Please try a different one!Plugin has been activatedPlugin has been deactivated.Plugin is activePlugin is inactivePlugin is ActivePolandPortugalPostcode / ZipPostsPowerful Modules (**)Profile Builder Login WidgetProfile Builder RegisterPuerto RicoQatarRadio ButtonsRandom (very slow on large databases > 10K user)Recommended PluginsRecover PasswordRedirectRedirect Default WordPress Forms and PagesRedirect Default WordPress forms and pagesRedirect TypeRedirect URLRegisterRegister ( wp-login.php?action=register )Register VersionRegister Your VersionRegister page URL (optional):RegisteredRegistrationRegistration & Edit ProfileRegistration DateRegistration FormRegistration FormsRegistration with Admin ApprovalRegistration with Email ConfirmationRemember though, that the field-value combination must exist in the database.RemoveRepeat PasswordReply ToRepublic of the CongoRequiredResend Activation EmailReset KeyReset LinkReset PasswordReset UrlRestrict ContentRestrict the userlisting to these selected roles only
            If not specified, defaults to all existing rolesRetry InstallReunionRoleRoles to DisplayRomaniaRow CountRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaveSave ChangesSave SettingsSave the user role order from the user roles checkboxesSearchSearch Users by All FieldsSearch all FieldsSearch the Edit-profile FormsSearch the Registration FormsSearch the User ListingSecret KeySelectSelect AllSelect FileSelect a user role.Select on what user roles to activate Admin Approval.Select on which Profile Builder forms to display reCAPTCHASelect on which default WP forms to display reCAPTCHASelect which Profile Builder Edit-profile form to display on My Account page from WooCommerce.Select which user roles to show to the user ( drag and drop to re-order )Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name
            Use this at your own riskSend these credentials via email.SenegalSerbiaSet RoleSet the avatar size on the all-userlisting onlySet the avatar size on the single-userlisting onlySet the default sorting criteria
            This can temporarily be changed for each new sessionSet the default sorting order
            This can temporarily be changed for each new sessionSet the number of users to be displayed on every paginated part of the all-userlistingSet up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.SeychellesShare a little biographical information to fill out your profile. This may be shown publicly.Ship to a different address?Shipping AddressShortcodeShowShow all datesShow/Hide the Admin Bar on the Front-EndSierra LeoneSign-up DateSingaporeSingle-userlisting TemplateSint MaartenSite KeySite NameSite UrlSlovakiaSloveniaSolomon IslandsSomaliaSomeone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$sSomething went wrong, we could not connect to the server. Please try again later.Sorry, but you don't have permission to do that!Sorry, you cannot upload this file type for this field.South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.comSpecify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.comSpecify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)Specify the option which should be selected by defaultSpecify 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.Sri LankaState / CountyStatusStep by Step Quick SetupStraight forward edit profile forms using %s shortcode.Strength indicatorStrongSubscription ManagementSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaTerms of AgreementTextareaThailandThat field is already added in this form That meta-name is already in use That username is already activated!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!The account %1s has been successfully created!The best way to add front-end registration, edit profile and login forms.The email address entered wasn't found in the database!The email you entered is not a valid email address.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical The entered passwords don't match!The entered row number is not numerical The entered value for the Datepicker is not a valid date-format The following option did not coincide with the ones in the options list: %s The following option(s) did not coincide with the ones in the options list: %s The meta-name cannot be empty The password must have a minimum strength of %sThe password must have the minimum length of %s charactersThe password you entered is incorrect.The passwords do not matchThe secret key from Google, www.google.com/recaptchaThe selected user couldn't be deletedThe selected users have been activatedThe selected users have had their activation emails resentThe serial number couldn't be validated because it expired!The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!The serial number entered couldn't be validated!The serial number is about to expire soon!The serial number was successfully validated!The shortcode will be available after you publish this form.The site key from Google, www.google.com/recaptchaThe userlisting will only be visible only to the logged in usersThe userlisting will only be visible to the following rolesThe username entered wasn't found in the database!The usernames cannot be changed.There was an error in the submitted formThere was an error performing that action!There was an error while trying to activate the userThere was an error while trying to activate the user.There was an error while trying to send the activation link to %1$s!These redirects happen after a successful action, like registration or after a successful login.These settings are also replicated in the "Admin Email Customizer" settings-page upon save.These settings are also replicated in the "User Email Customizer" settings-page upon save.This email is already in use.This email is already reserved to be used soon.This field is requiredThis form is empty.This login widget lets you add a login form in the sidebar.This message is only visible by administratorsThis username already exists.This username is already activated!This username is already reserved to be used soon.This username is invalid because it uses illegal characters.This username is now active!Timezone SelectTitle of the fieldTitle: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$sTo allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$sTo create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s.To use reCAPTCHA you must get an API key fromTo use reCAPTCHA you must get an API public key from:TogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluType your password again. Type your password.U.S. Virgin IslandsURLUgandaUkraineUnapproveUnapprovedUnapproved User NotificationUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUpdateUpgrade Profile BuilderUpload UruguayUse these shortcodes on the pages you want the forms to be displayed:Use this shortcode on the page you want the form to be displayed:User Approval NotificationUser Email CustomizerUser IDUser ID / UsernameUser ID or UsernameUser IdUser ListingUser MetaUser NicenameUser RoleUser Role based RedirectsUser RolesUser Roles OrderUser not foundUser successfully approved!User successfully deleted!User successfully unapproved!User to edit:User-RoleUser-statusUserlisting SettingsUsernameUsername and EmailUsername or E-mailUsername or EmailUsernames cannot be changed.Users can register themselves or you can manually create users here.Users cannot currently register themselves, but you can manually create users here.Users successfully approved!Users successfully deleted!Users successfully unapproved!Users with Unconfirmed Email AddressUzbekistanValid tags {{reply_to}} and {{site_name}}VanuatuVaticanVenezuelaVersion %sVery WeakVery weakVietnamView all extra shortcode parametersView the Edit-profile FormView the Registration FormView the User ListingVisibilityVisible only to logged in users?Visible to following RolesWallis and FutunaWeakWebsiteWelcome to %1$s!


            Your username is:%2$s and password:%3$sWestern SaharaWhether the field is required or notWhether to automatically log in the newly registered user or not
            Only works on single-sites without "Admin Approval" and "Email Confirmation" features activated
            WARNING: Caching the registration form will make automatic login not workWhether to redirect the user to a specific page or notWhich redirect happens depends on the following priority:With Extra Profile Fields you can create the exact registration form your project needs.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.With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts.With these you can redirect various WordPress forms and pages to pages created with profile builder.WooCommerce SyncWooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!Yahoo IMYemenYesYimYou are currently logged in as %1$s. %2$sYou are currently logged in as %1s. You don't need another account. %2sYou are currently logged in as %s. You can add the information for the %s after you add a entryYou can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.You can find it in the Profile Builder menu.You can find the default file here: %1$sYou can't add duplicate redirects!You cannot register this user roleYou decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.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.You do not have permission to view this user list.You do not have the required user role to view this user list.You don't have any pagination settings on this userlisting!You either don't have permission for that action or there was an error!You have successfully reset your password to: %1$sYou must be logged in to edit your profile.You must enter a valid email address.You must enter a value for the date-format You must enter a value for the row number You must enter the secret key You must enter the site key You must select a field You need to activate the Userlisting feature from within the "Modules" tab!You need to specify the title of the form before creating itYou use the following tags in your URLs to redirect users to various pages.You will receive a link to create a new password via email.You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$sYour account has been successfully created!Your account has to be confirmed by an administrator before you can log in.Your account has to be confirmed by an administrator before you can use the "Password Recovery" feature.Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.Your account on %1$s has been approved!Your account on %1$s has been unapproved!Your account on {{site_name}} has been approved!Your account on {{site_name}} has been unapproved!Your email was successfully confirmed.Your password has been successfully changed!Your profile has been successfully updated!Your selected password at signupYour session has expired! Please refresh the page and try againYour session has expired! Please refresh the page and try again.ZambiaZimbabwe[%1$s] Activate %2$s[%1$s] Your new account information[{{site_name}}] Activate {{username}}[{{site_name}}] Password Reset[{{site_name}}] Password Reset Successfullyapprove this user?approvedconfirm this email yourself?delete this user from the _signups table?delete this user?displays all users except the ones you specified the user_id fordisplays only the users that you specified the user_id fordisplays users having a certain meta-value within a certain (extra) meta-fieldemailgenerates a url of the current website homepage.herein WordPress the site url can be different then the home urlreCAPTCHArequiredresend the activation link?showthe ID of the userthe URL of the previously visited pagethe URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces.unapprove this user?unapprovedusernameusername or emailPO-Revision-Date: 2017-05-08 09:42:03+0000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=n != 1; X-Generator: GlotPress/0.1 Project-Id-Version: Profile Builder

            Gode nyheder!

            En administrator har netop godkendt din konto: {{username}} på {{site_name}}.

            Hej,

            En administrator har desværre ophævet godkendelsen af din konto: {{username}} på {{site_name}}.

            Velkommen til {{site_name}}!

            Dit brugernavn er:{{username}} og adgangskode:{{password}}

            Velkommen til {{site_name}}!

            Dit brugernavn er:{{username}} og adgangskode:{{password}}

            Før du kan tilgå din konto skal en administrator først godkende den. Du vil få yderligere besked via e-mail.

            Ny abonnent på {{site_name}}.

            Brugernavn:{{username}}

            E-mail:{{user_email}}

            Ny abonnent på {{site_name}}.

            Brugernavn:{{username}}

            E-mail:{{user_email}}

            Administrator godkendelsesfunktione blev aktiveret på tidspunktet for registrering, så husk venligst at du skal godkende denne bruger før han/hun kan logge ind!

            Nogen har foretaget en genskabning af adgangskoden for følgende konto: {{site_name}}
            Brugernavn: {{username}}

            Hvis dette var en fejl skal du blot se bort fra denne email og intet vil ske.

            For at genskabe din adgangskode gå ind på følgende adresse:
            {{{reset_link}}}

            For at aktivere din bruger klik venligst på følgende link:
            {{{activation_link}}}

            Efter du aktiverer vil du modtage endnu en e-mail med dine legitimationsoplysninger.

            Du har med succes nulstillet din adgangskode til: {{password}}

            {{username}} har foretaget en ændring af adgangskoden via genskab adgangskode.

            Hans/hendes nye adgangskode er: {{password}}

            * kun tilgængelig %1$sHobbyist and Pro versionerne%2$s.Serie Nummer:Dit serienummer er ved at udløbe, venligst %1$s forny din licens%2$s. Dit serienummer er udløbet, venligst %1$s forny din licens%2$s.er også aktiveret. Du skal deaktivere det før aktivering af plugin'et."Administrator godkendelse" aktiveret:"Administrator godkendelse" funktion:Admin godkendelse på denne brugerrolle"E-mail bekræftelse" aktiveret:"E-mail bekræftelse" landings side:"E-mail" - brugere kan kun logge ind med e-mail."Brugernavn og e-mail" - brugere kan logge ind med såvel brugernavn som e-mail."Brugernavn" - brugere kan kun logge ind med brugernavn.%1$s %2$d%1$s har anmodet om ændring af adgangskoden via 'Genskab adgangskode'.
            Hans/hendes nye adgagnskode er:%2$s%1$s of %2$s%s kunne ikke slettes%s afventer« Forrige«« Først(f.eks.: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(ingen titel)** kun tilgængelig i %1$sPro version%2$s..Ekstra felttyper er tilgængelig i Hobbyist or PRO versions.... Vælg...Vælg1 emne

            DinProfile Builder serienummer er ugyldigt eller mangler.
            Venligst %1$sregistrer din kopi%2$s for at få adgang til automatiske opdateringer og support.Har du brug for en licensnøgle? %3$sPurchase one now%4$s

            Redirect
            URL
            Titel (Type)
            titel
            Type
            Meta navn
            nødvendigt
            User ID / Username
            Redirect
            URL
            User Role
            Redirect
            URL
            Bemærk: ændring af denne formulars titel ændrer også 'shortcode'!FEJL: Adgangskodens styrke skal være mindst: %sFEJL: Adgangskoden skal bestå af mindst %s charactersERROR: Din konto skal godkendes af en administrator før du kan logge ind.Profile Builder En ny konto er blevet oprettet til dig på {{site_name}}En ny abonnent ('subscriber') er blevet registreret!En unik autogenereret ID for dette bestemte felt
            Du kan bruge dette sammen med filtre for at målrette dette element, hvis nødvendigt.
            Kan ikke redigeres AIMOm dig selvAccept user payments, create subscription plans and restrict content on your membership site.Accepter bruger betaling opret tilmeldings planer og beskyt indhold på din webside.KontostyringAktivérAktiveringsnøgleAktiveringslinkAktiverings URLAktivTilføj postTilføj feltTilføj nyTilføj nyt felt til listenTilføj brugerTilføj ny formular til profilredigeringTilføj ny registreringsformularTilføj ny brugeroversigtTilføjelser er blevet aktiveretTilføjelser er blevet deaktiveretTilføjelser (add-on) er activeTilføjelser (add-on) er inactiveTilføjelser er aktiveTilføjelserAdresseAdmin godkendelseAdmin godkendelse (*)Admin menu indstillinger Opsætning af administrator e-mailsAdmin meddelelse for genskabning af bruger adgangskodeAfghanistanEfter brugerprofil opdateringEfter logindEfter logudEfter profilopdatering...Efter tilmeldingEfter registrering...Efter email bekræftelseEfter psssword resetEfter login URL omdirigering (valgfri):Accept af betingelser tjekboks'Aim'Aland IslandsAlbaniaAlgeriaAlle brugereAlle brugere er blevet slettet uden problemerSkabelon for flere-brugeroversigtTillad brugere at logge ind med:Tillad forskellige brugerroller at redigere deres specifikke information. Opsæt forskellige profil redigerings formularer med forskellige felter tilpasset bestemte brugerroller.Tillad brugere at logge ind med deres e-mail eller brugernavn når de logger ind på dit site.Allow users to recover their password in the front-end using the %s.Tilladte billedformater ('extensions')Tilladte upload formater ('extensions')Tilladt visningstid (i sekunder) for alle problemfrie meddelelserAmerican SamoaEn administrator har netop godkendt din konto på %1$s (%2$s).En administrator har netop sat din konto til 'ikke-godkendt' på %1$s (%2$s).Der opstaod en fejl, prøv venligst igen senere.AndorraAngolaAnguillaAntarcticaAntigua and BarbudaTilføjGodkendGodkendtArgentinaArmeniaArubaSom administrator kan du ikke ændre din rolle.StigendeAustraliaAustriaForfatter arkiv ( http://sitename.com/author/admin )Automatisk log indTilgængelige 'tags'Available tags for dynamic URLsAvatarAvatar størrelseAvatar størrelse (Flere-brugeroversigt)Avatar størrelse (enkelt-brugeroversigt)Avatar uploadAvatar eller GravatarAzerbaijanTilbageBahamasBahrainBangladeshBarbadosBasis informationBeautiful registration forms fully customizable using the %s shortcode.Før du kan tilgå din konto %1s, skal en administrator godkende den. Du vil blive adviseret via e-mail.Før du kan tilgå din konto %1s, skal du bekræfte din e-mail adresse. Tjek venligst din indbakke og klik på aktiveringslinket.Før du kan tilgå din konto skal en administrator først godkende det. Du bliver adviseret via a-mail.BelarusBelgiumBelizeBeninBermudaBhutanFakturerings adresseBiografi infoBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBegge felter er tomme.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaMængde aktionBurkina FasoBurundiCambodiaCameroonCan contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}CanadaAnnullerCape VerdeCayman IslandsCentral African RepublicChadTjek din e-mail for bekræftelseslink.TjekboksChileChinaChoose Edit Profile form to display on My Account page:Choose Register form to display on My Account page:Vælg en af de supporterede felttyperVælg en af de understøttede felter som du administrerer install manually.Could not install plugin. Retry or install manually.LandLandevalgCroatiaCubaCuracaoBrugertilpassede omdirigeringer ('redirects')Tilpas dine formularer som du ønsker det (*)CyprusCzech RepublicDashboard (redirect users from accessing the dashboard)DatoformatDatovælgerDeaktivérDefaultStandard indholdStandard editerings profilStandard indstillingsvalgStandard indstillingsvalg (flere)Default RegisterStandard registreringStandard registrering & registrering med e-mail bekræftelseStandard rolleStandard sorteringskriterieStandard sorteringsordenStandard værdiDefault WP LoginDefault WP Recover PasswordDefault WP RegisterStandard værdi på feltetFeltets standardværdiStandard værdi for tekstområdet ('textarea')SletSlet altSlet alle emnerSlet denneDemocratic Republic of the CongoDenmarkFaldendeBeskrivelseDeaktiverVis meddelelserVis navn somVis navn somVis navn offentligt somDisplay name publicly as - only appears on the Edit Profile page!Se på PB formsSe på WooCommerce betal sidenDisplay on default WP formsSe kunde faktureringsfelter i front-endSe kunde leveringsfelter i front-endDjiboutiVil duØnsker du at godkende de valgte brugere på én gang?Ønsker du at slette de valgte brugere på én gang?Ønsker du at ophæve godkendelsen af de valgte brugere på én gang?DominicaDominican RepublicDownload nuDowloader og installerer....E-mailFEJLFEJL:East TimorBrugervenlige skabeloner gør det muligt at liste dit websites bruger ligesom du kan skabe enkelt bruger sider. Og så er det 'Shortcode' baseret, som gør det muligt for dig at tilpasse dine lister/oversigter. EcuadorRedigerRediger profilRediger profilredigerings formularerRediger registreringsformularerRediger brugeroversigtenRediger denneFormular til profilredigeringProfilredigerings formularerEgyptEl SalvadorUndgå svage adgangskoder ved at sætte et krav om min. længde samt sætte et krav om en vis styrke på adgangskoden.E-mailEmailE-mail bekræftelseE-mail opsætningE-mail emneEmail skabelonerE-mail besked er gensendt til brugerAktiver ekstra funktionerAktiver dine modulerAngiv en (detaljeret) beskrivelse til slutbrugerne af muligheden
            ValgfriAngiv et komme separeret liste med labels
            Synlig for brugerenIndsæt en komma separeret liste med værdier
            Det kan være hvad som helst, idet værdierne er skjulte for brugeren. Men listen må ikke indeholde specielle karakterer eller apostroffer.Angiv en detaljeret beskrivelse til brugerne af aftalebetingelserne.
            Link kan indsætte ved at anvende standard HTML syntax: <a href="custom_url">custom_text</a>Angiv en værdi (mellem 20 og 200) for størrelsen af 'Avatar'
            Hvis ikke angivet er default sat til 100Angiv minimum antallet af karakterer som adgangskoden skal bestå af. Lad feltet være tomt for ikke at have minimumsbegrænsning.Equatorial GuineaEritreaEstoniaEthiopiaAlt hvad du behøver for at håndtere dine brugere er formentlig allerede tilgængeligt ved at bruge Pro Moduler.Eksempel:UddragsvisningEksisterende siderEkstra funktionerEkstra funktionerEkstra profilfelter er tilgængelig i Hobbyist og PRO versionerneEkstra 'shortcode' parametreFalkland IslandsFaroe IslandsFunktioner som giver dig mere kontrol over dine brugere, forbedret sikkerhed og hjælper dig med at bekæmpe spam ved brugerregistrering.FeltFelt indstillingerFelt titelFijiFin ud af mere om PRO ModulerFinlandFornavnFor-/EfternavnFornavnTil 'Modern User Interaction'Af sikkerhedsmæssige grunde skal du angive 'remote' ip til 'reCAPTCHA'!Formular 'shortcode'FranceFriFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriction-less login using %s shortcode or a widget.Fra (navn)Fra (svar-til e-mail)GabonGambiaGenerelle indstillingerGenerisk uploadGeorgiaGermanyAnmod om ny adgangskodeKom i gang med ekstra felterGhanaGibraltarGlobal RedirectsTilbage linkGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald IslandsHer kan du aktivere / deaktivere tilgængelige moduler i Profile Builder.SkjulHondurasHong KongHvordan virker dette ?HungaryIDIcelandHvis du kan lide at bruge %1$s please rate os på WordPress.org. Flere tilfredse brugere betyder flere features, færre fejl og bedre support til alle.Hvis du registrere denne version af Profile Builder, så vil du modtage information vedrørende opgraderinger, patches og teknisk support.InaktivIndiaIndividual User RedirectsIndonesiaInput / Skjult inputInstallér nuInstallationen gennemførtUgyldig aktiveringsnøgle!Ugyldig nøgle!Ugyldigt brugernavnIranIraqIrelandIsle of ManIsraelItalyIvory Coast'Jabber'Jabber / Google TalkJamaicaJapanJerseyJordanKazakhstanHold dine brugere ud af Wordpress' kontrolpanel ('dashboard'), omdiriger dem til forsiden efter login eller registrering. Alt dette er kun nogle få klik væk.KenyaKiribatiKosovoKuwaitKyrgyzstanLabelsLaosSidste »»EfternavnEfternavnLatviaLebanonLesothoLiberiaLibyaLiechtensteinListevisningLithuaniaBrug Profile Builders egen CSS fil i 'front-end':Log udLog ud »Log ud af denne kontoLog ud fra denne konto.Log indLogind ( wp_login.php )Login er indstillet til at blive foretaget ved hjælp af e-mail. Dette felt vil IKKE fremgå af 'front-end'! (du kan ændre disse indstillinger på "%s" fanen)Log ind med e-mail eller brugernavnLog udMistet kodeord ( wp-login.php?action=lostpassword )Mistet din adgangskodeMistet din adgangskode?LuxembourgMacaoMacedoniaMadagascarSørg for at brugere registrerer med en ægte e-mail adresse. Ved registrering vil brugerne modtage en e-mail, hvori de skal bekræfte deres e-mail adresse.MalawiMalaysiaMaldivesMaliMaltaHåndter standard ('default') og ekstra felterHåndter felterMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMiddelMedlemsstyringMeta-navnMexicoMicronesiaMinimum længde og styrke på adgangskodeMin. længde på adgangskode:Minimum styrke på adgangskode:Minimum længde på %d karaktererMinimum krævet version af Profile Builder:ModulerMoldovaMonacoMongoliaMontenegroMontserratMereFlere detaljerMere infoMere info URLMere...MoroccoMozambiqueForskellige profil redigerings formularerForskellige registreringsformularerSkal være en gyldig e-mail adresse eller {{reply_to}} som default for administrator e-mailenMyanmarNavnNavn/BeskrivelseNamibiaNauruNepalNetherlandsNew CaledoniaNy profilredigerings formularNy registreringsformularNy brugeroversigtNew ZealandNy abonnent ('subscriber') på %1$s.

            Brugernavn:%2$s
            E-mail:%3$s
            Næste » NicaraguaKælenavnNigerNigeriaNiueNejIngen profilredigerings formular fundetIngen profilredigerings formular fundet i papirkurvenIngen registreringsformular funderIngen registreringsformularer fundet i papirkurvenIngen brugeroversigt fundetIngen brugeroversigt fundet i papirkurvenIntet fundet.Ingen resultater fundet!IngenNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayIkke kompatibel med Profile BuilderIkke kompatibel med din version af Profile BuilderNu du har erhvervet en kopi af %s bør du tage dig tid til at registrere det med serienummeret som du modtog.Antal posterAntal brugere/sideOmanKun administratorer kan se dette felt på rediger profilformularer.Kun administrator kan tilføje nye brugere.ValgmulighederOverskriv eksisterendePB LoginPB Recover PasswordPB RegisterSideopdelingBetalt og fri tilmeldingBetalt kontoPaid Member Subscriptions - a free WordPress pluginPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayKodeordAdgangskode 'mistet og fundet'Adgangskode genskabnings side URL (valgfri)E-mail vedr. nulstilling af adgangskodeE-mail vedr. adgangskode nulstillet succesfuldtAdgangskode genskab fra "%1$s"Adgangskoden ændret uden problemer for %1$s på "%2$s"BetalingsstyringPersonaliser alle e-mails sendt til dine brugere eller administratorer. Ved registrering, e-mail bekræftelse, administrator godkendelse / afvisning.PeruPhilippinesTelefonPitcairnTjek venligst at du angav den korrekte e-mail adresse.Tjek venligst at du angav det korrekte brugernavn.Vælg venligst en anden felttype, da denne allerede eksistere i din formular. (skal være unik) Indtast en valid reCAPTCHA værdiVenligst indtast et gyldigt brugernavn.Venligst indsæt en værdi for feltetVenligst angiv dit brugernavn eller e-mail adresse.Vælg og intast ID eller brugernavn på din brugerVælg venligst mindst en brugerrolle Venligst prøv en anden!Plugin er aktiveretPlugin er blevet deaktiveretPlugin er aktivPlugin er inaktivPlugin er aktivPolandPortugalPostnrPosterStærke moduler (**)Profile Builder login widgetRegistrer Profile BuilderPuerto RicoQatar'Radio' knapperVilkårlig (meget langsom på store databaser > 10K brugere)Anbefalede pluginsGenskab adgangskodeOmdirigerRedirect Default WordPress Forms and PagesRedirect Default WordPress forms and pagesRedirect TypeRedirect URLRegistrerTilmeld ( wp-login.php?action=register )Registrer versionRegistrer din versionRegistrerings side URL (valgfri):RegistreretRegistreringRegistrering & ændre profilRegistreringsdatoRegistreringsformularRegistreringsformularerRegistrering med administrator godkendelseRegistrering med e-mail bekræftelseHusk dog, at feltværdi kombinationen skal eksistere i databasen.FjernGentag dit kodeordSvar tilRepublic of the CongoKrævetGen-send aktiverings e-mailenGenskab nøgleGenskab linkGenskab adgangskodeGenskab URLBeskyt indholdBegræns brugeroversigter til kun at omfatte disse udvalgte roller
            Hvis ikke specificeret, så bruges alle eksisterende rollerGeninstallérReunionRolleRoller der skal visesRomaniaRække antalRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaGemGem ændringerGem indstillingerGem brugerrolle ordenen fra brugerrollernes tjekbokseSøgSøg brugere ved at bruge 'Alle felter'Søg 'Alle felter'Søg profilredigerings formularerSøg registreringsformularerSøg i brugeroversigtHemmelig nøgle (Key)VælgVælg altVælg en filVælg brugerrolleSelect on what user roles to activate Admin Approval.Select on which Profile Builder forms to display reCAPTCHAVælg på hvilne standard WP forms de vil se reCAPTCHASelect which Profile Builder Edit-profile form to display on My Account page from WooCommerce.Vælg hvilke brugerroller der skal vises for brugerne ("træk" og "slip" for at om-organiserer)Ved at vælge 'Ja' tilføjes feltet til listen, men vil overskrive ethvert andet felt i databasen som har det samme meta-navn
            Brug dette på eget ansvarSend disse legitimationsoplysninger via e-mail.SenegalSerbiaIndstil rolleSæt avatar størrelsen på kun flere-brugeroversigten Sæt avatar størrelsen på kun enkelt-brugeroversigtenSæt standard sorteringskriteriet
            Denne kan ændres midlertidigt for hver ny sessionSæt standard sorteringsorden
            Denne kan ændres midlertidigt for hver ny sessionAngiv antallet af brugere som vises på hver side af den samlede brugeroversigtOpsæt forskellige registreringsformularer med forskellige felter tilpasset bestemte brugeroller. Indsaml forskelligt information fra forskellige brugertyper.SeychellesDel en lille biografisk information for at fylde din profil ud. Dette kan blive vist offentligt.Send til anden adresseLeveringsadresse'Shortcode'VisVis alle datoerVis/Skjul 'Admin menu' på 'Front-end'Sierra LeoneTilmeldingsdatoSingaporeSkabelon for enkelt-brugeroversigtSint MaartenSite nøgle (Key)Site navnSite URLSlovakiaSloveniaSolomon IslandsSomaliaNogen anmodede om at adgangskoden skulle genskabes for følgende konto: %1$s
            Hvis dette var en fejltagelse, så se bare bort fra denne e-mail og intet vil ske.
            For at genskabe din adgangskode, følge dette link:%2$sEt eller andet gik galt, vi kunne ikke forbinde til serveren. Venligst prøv igen senere.Beklager, men du har ikke rettighederne til at gøre dette!Beklager, du kan ikke uploade denne fil type.South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecificer sidens URL som brugere vil blive omdirigeret til så snart de er registreret via denne formular.
            Brug følgende format: http://www.mysite.comSpecificer sidens URL som brugere vil blive omdirigeret til så snart de opdaterer deres profil fra denne formular
            Brug følgende format: http://www.mysite.comSpecificer hvilke filformater (extensions) du ønsker at afgrænse til i uploads
            Eks: .ext1,.ext2,.ext3
            Hvis ikke specificeret er default alle WordPress tilladte filformater (.*)Specificer hvilke filformater (extensions) du ønsker at afgrænse til i uploads
            Eks: .ext1,.ext2,.ext3
            Hvis ikke specificeret er default: .jpg,.jpeg,.gif,.png (.*)Angiv antallet af rækker i feltet 'Textarea'
            Hvis ikke angivet er default 5 rækkerAngiv indstillingen som skal vælges som standard
            Hvis der er flere valgmuligheder, separer dem med ',' (et komma)Angiv indstillingen som skal vælges som standardAngiv siden hvortil brugere bliver omdirigeret til når de bekræfter e-mail kontoen. Denne side kan være forskellig fra registrerings siden (siderne) og kan altid ændres. Hvis ingen er valgt vises der en simpel bekræftelsesside for brugeren.Sri LankaStatStatusStep by Step Quick SetupStraight forward edit profile forms using %s shortcode.StyrkeindikatorStærkTilmeldingsstyringSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaAftalebetingelserTekstområdeThailandDet felt er allerede tilføjet denne formular Det meta-navn er allerede i brug Dette brugernavn er allerede i brug!"Administrator godkendelses" funktionen blev aktiveret på registreringstidspunktet, så vær venlig at huske at du skal godkende denne bruger før han/hun kan logge ind!Kontoen %1s er oprettet uden problemer!Den bedste måde at tilføje 'front-end' registrering, redigere profile og login formularer på.Den angivne e-mail adresse blev ikke fundet i databasen!E-mailen, som du angav, er ikke en gyldig e-mail adresse.Den indsatte avatar størrelse er ikke mellem 20 og 200 Det indtastede rækkenummer er ikke nummereret Den angivne adgangskode matcher ikke!Det indsatte række nummer er ikke nummeret Den indsatte værdi for datovælgeren er ikke korret datoformat Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s 'Meta-name' kan ikke være tom Adgangskoden skal minimum have en styrke på %sAdgangskoden skal have en minimumslængde på %s karaktererAdgangskoden du angav er forkert.Adgangskoden matcher ikkeDen hemmelige nøgle (Key) fra Google, www.google.com/recaptchaDe valgte brugere kunne ikke slettesDe valgte brugere er blevet aktiveretDe valgte brugere har fået deres aktiverings e-mail gensendtSerienummeret kunne ikke godkendes da det er udløbet!Serienummeret kunne ikke valideres på grund af process time-out. Dette skyldes formentlig at serveren er nede. Venligst prøv igen senere!Serienummeret som du har indsat er ikke korrekt!Serienummeret udløber snart!Serienummeret blev godkendt!'Shortcode' er tilgængelig efter du har publiceret denne formular.Site nøgle (Key) fra Google, www.google.com/recaptchaBrugeroversigten vil kun være synlig for brugere, der er logget indBrugeroversigten vil kun være synlig for følgende rollerDet angivne brugernavn blev ikke fundet i databasen!Brugernavnene kan ikke ændres.Der var en fejl i den sendte formular. Der opstod en fejl ved udførelsen af denne handling!Der skete en fejl ved forsøg på at aktivere brugerenDer skete en fejl under forsøget på at aktivere brugeren.Der opstod en fejl, da aktivireingslinket blev forsøgt sendt til %1$s!These redirects happen after a successful action, like registration or after a successful login.Disse indstillinger gemmes ligeledes på indstillingssiden på 'Admin Email Customizer', når de gemmes.Disse indstillinger bliver samtidig også gemt i "Opsætning af bruger e-mails" når de gemmes.Denne e-mail er allerede i brug.Denne e-mail er allerede reserveret til snart at blive anvendt.Dette felt er obligatoriskDenne formular er tom.Denne login widget gør det muligt for dig at tilføje en formular i din sidebar.Denne meddelelse er kun synlig for administratorerDette brugernavn eksisterer allerede.Dette brugernavn er allerede aktiveret!Dette brugernavn er allerede reserveret til snart at blive anvendt.Dette brugernavn er ugyldigt, idet det indeholde karaterer / tegn som ikke er tilladte.Dette brugernavn er nu aktivt!Tidszone valgFeltets titelTitel:For at tillade brugere at registrere sig på din hjemmeside via Profile Builder, skal du først aktivere brugerregistrering. Gå til %1$sNetwork Settings%2$s, og under registreringsopsætningen sørg for at sætte markering ved “Brugerkonti må registreres.” %3$sDismiss%4$sFor at tillade bruger at registrere sig på dit site via Profile Builder, skal du først aktiverer brugerregistrering. Gå til %1$sIndstillinger -> Generel%2$s fane, og under Medlemskab sørge for at markere “Alle kan registrere sig". %3$sAfvis%4$sTo create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s.For at bruge 'reCAPTCHA' skal du først have en API nøgle fraFor at bruge 'reCAPTCHA' skal du have en offentlig API nøgle fra:TogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluSkriv dit kodeord igen.Skriv din kodeord.U.S. Virgin IslandsURLUgandaUkraineOphæv godkendelsenIkke godkendtMeddelelse om ophævelse af brugerkontoUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsOpdaterOpgradér Profile BuilderUploadUruguayBenyt disse shortcodes på siden du vil have vist formularerne:Brug denne 'shortcode' på den side du ønsker formularen vist:Meddelelse om brugergodkendelseOpsætning af bruger e-mailsBruger IDBruger ID / BrugernavnBruger ID eller BrugernavnBruger IDBrugeroversigtBruger 'meta'Bruger kaldenavnBrugerrolleRollebaseret bruger redirectsBrugerrollerBrugerroller ordenBruger ikke fundetBruger godkendt!Bruger slettet!Bruger ikke godkendt!Bruger der skal redigeres:BrugerrolleBrugerstatusOpsætning af brugeroversigtBrugernavnBrugernavn og e-mailBrugernavn eller e-mailBrugernavn eller e-mailBrugernavn kan ikke ændresBrugere kan registrere sig selv eller du kan manuelt oprette brugere her.Brugere kan ikke i øjeblikket registrere sig selv, men du kan manuelt oprette brugere her.Brugere godkendt!Brugere slettet!Brugere ikke godkendt med succes!Brugere med ubekræftede e-mail adresserUzbekistanGyldige tags {{reply_to}} og{{site_name}}VanuatuVaticanVenezuelaVersion %sMeget svagMeget svagVietnamSe alle ekstra "shortcode" parametreVis profilredigerings formularVis registrerinsformularenVis brugeroversigtenSynlighedSynlig kun for brugere, der er logget ind?Synlig for følgende rollerWallis and FutunaSvagWebsiteVelkommen til %1$s!


            Dit brugernavn er:%2$s og adgangskoden er:%3$sWestern SaharaOm feltet er krævet eller ikkeHvorvidt nyligt registrerede brugere skal logges automatisk ind eller ikke
            Virker kun på 'single-sites' hvor "Administrator godkendelse" og "E-mail bekræftelse" ikke er aktiveret
            ADVARSEL: 'Caching' af registreringsformularer vil bevirke, at den automatiske log ind funktion ikke vil fungereHvorvidt brugeren skal omdirigeres til en bestemt side eller ikkeWhich redirect happens depends on the following priority:Med ekstra profil felter kan du lave nøjagtigt den registreringsformular, som dit projekt har brug for. 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.With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts.With these you can redirect various WordPress forms and pages to pages created with profile builder.WooCommerce SyncWooCommerce skal installeres ag aktiveret for at Profile Builder - WooCommerce Sync Add-on virker!Yahoo IMYemenJa'Yim'Du er i øjeblikket logget ind som %1$s. %2$sDu er i øjeblikket logget ind som %1s. Du har ikke brug for en anden konto. %2sDu er i øjeblikket logget ind som %s.Du kan tilføje information for %s efter du har indsat en indtastningDu kan finde en liste over ubekræftede e-mail adresser %1$sUsers > All Users > Email Confirmation%2$s.Du kan finde en liste med brugere på %1$sUsers > All Users > Admin Approval%2$s.Du kan finde det i Profile Builder menuen.Du kan finde default filen her: %1$sDu kan ikke oprette duplicate redirects!Du kan ikke registrere denne brugerrolleDu bestemmer hvem der er bruger på dit site. Få besked via e-mail eller godkende flere brugere ad gangen fra WordPress UI.Du bestemmer hvem der er bruger på dit website. Bliv informeret via e-mail eller godkend flere brugere samlet ('bulk') via WordPress UI. Aktiver 'Administrator godkendelse' ved at opgradere til %1$sHobbyist or PRO versions%2$s.Du har ikke lov til at se denne bruger liste.Du er ikke oprettet med en rigtige brugerrolle for at se denne listeDu har ingen sideopdeling (paginering) på denne brugeroversigt!Enten har du ikke tilladelse til dette eller der var en felj!Du har med succes genskabt din adgangskode til: %1$sDu skal være logget ind for at redigere din profil.Du skal indtaste en gyldig e-mail adresse.Du skal indskrive en værdi for datoformatet Du skal indtaste en værdi for rækkenummeret Du skal enter den hemmelige nøgle (Key) Du skal enter site nøglen (Key) Du skal vælge et felt Du skal aktivere brugeroversigts funktionen inde på fanen "Moduler"!Du skal specificere formularens titel før du opretter denYou use the following tags in your URLs to redirect users to various pages.Du modtager et link via e-mail, så du kan oprette en ny adgangskodeDu vil snart blive omdirigeret automatisk. Hvis du ser denne side i mere end %1$d seconds, klik venligst %2$s.%3$sDin konto er oprettet!Di konto skal godekendes af en administrator før du kan logge indDin konto skal først være godkendt af en administrator før du kan bruge 'Genskab adgangskode'Din konto skal først godkendes af en administrator før du kan bruge "Genskab adgangskode"Din konto på %1$s er blevet godkendt!Din konto på %1$s er blevet 'ikke-godkendt'!Din konto på {{site_name}} er blevet godkendt!Din konto på {{site_name}} er ikke længere godkendt!Din e-mail blev bekræftet uden problemer.Din adgangskode er ændret uden problemer!Din profil er blevet opdateret uden problemer!Din valgte adgangskode ved oprettelseDin session er udløbet! Venligst opdater siden og prøv igenDin session er udløbet! Opdater venligst siden og prøv igen.ZambiaZimbabwe[%1$s] Aktivér %2$s[%1$s] Din nye konto information[{{site_name}}] Aktivér {{username}}[{{site_name}}] Nulstil adgangskode [{{site_name}}] Adgangskode nulstillet succesfuldtgodkend denne bruger?godkendtbekræft selv denne e-mail?slet denne bruger fra tilmeldingstabellen (_signups table)?slet denne bruger?vis alle brugere undtagen dem som du specificerede 'user_id' forvis kun de brugere som du specificerede 'user_id' forviser brugere med en bestemt meta-værdi inden for et bestemt (ekstra) meta-felte-mailgenerates a url of the current website homepage.herin WordPress the site url can be different then the home urlreCAPTCHAkrævetgen-send aktiveringslinket?visBruger ID URL på sidst besøgte sidethe URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces.sæt denne bruge til 'ikke-godkendt'?'ikke-godkendt'brugernavnbrugernavn eller e-mailtranslation/profile-builder-sl_SI.po000066600000622725152141651160013561 0ustar00# Translation of Profile Builder in Slovenian # This file is distributed under the same license as the Profile Builder package. msgid "" msgstr "" "PO-Revision-Date: 2015-09-29 11:56:41+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" "X-Generator: GlotPress/0.1\n" "Project-Id-Version: Profile Builder\n" #: profile-builder-2.0/admin/general-settings.php:154 msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s." msgstr "" #: profile-builder-2.0/admin/general-settings.php:146 msgid "\"Roles Editor\" Activated:" msgstr "" #: profile-builder-2.0/features/roles-editor/roles-editor.php:300 msgid "M j, Y @ G:i" msgstr "" #: profile-builder-2.0/front-end/recover.php:117 msgid "Please enter your email address." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yy" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244 msgid "Individual redirects defined in shortcodes; redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1217 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." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "" #: profile-builder-2.0/admin/register-version.php:251 msgid "

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            " msgstr "" #: profile-builder-2.0/admin/register-version.php:246 msgid "

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            " msgstr "" #: profile-builder-2.0/front-end/recover.php:159 msgid "You are already logged in. You can change your password on the edit profile form." msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "" #: profile-builder-2.0/features/functions.php:909 msgid "

            You can visit your site at " msgstr "" #: profile-builder-2.0/features/functions.php:896 msgid "

            Also, you will be able to visit your site at " msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138 msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network." msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36 #: profile-builder-2.0/modules/user-listing/userlisting.php:118 msgid "Blog URL" msgstr "" #: profile-builder-2.0/admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:222 msgid "Blog Details" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:239 msgid "Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579 msgid "Welcome to %1$s!


            Your username is:%2$s" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1320 msgid "View Map" msgstr "" #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267 #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367 #: pb-add-on-woocommerce/index.php:493 msgid "Address line 2" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "Billing Fields" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Billing Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Save the billing fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Billing Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Save the billing fields names" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Shipping Fields" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Shipping Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Save the shipping fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Shipping Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Save the shipping fields names" msgstr "" #: pb-add-on-woocommerce/index.php:305 msgid "Field Name" msgstr "" #: pb-add-on-woocommerce/index.php:369 msgid "Click to edit " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:368 msgid "is not a valid phone number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:377 msgid "is not a number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:382 msgid "must be a multiplier of " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:387 msgid "must be a greater than or equal to " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:392 msgid "must be less than or equal to " msgstr "" #: profile-builder-2.0/admin/add-ons.php:103 msgid "Available in Hobbyist and Pro Versions" msgstr "" #: profile-builder-2.0/admin/add-ons.php:105 msgid "Available in All Versions" msgstr "" #: profile-builder-2.0/admin/add-ons.php:148 msgid "Learn More" msgstr "" #: profile-builder-2.0/admin/basic-info.php:99 msgid "Timepicker" msgstr "" #: profile-builder-2.0/admin/basic-info.php:100 msgid "Colorpicker" msgstr "" #: profile-builder-2.0/admin/basic-info.php:103 msgid "Currency Select" msgstr "" #: profile-builder-2.0/admin/basic-info.php:109 msgid "Number" msgstr "" #: profile-builder-2.0/admin/basic-info.php:114 msgid "Validation" msgstr "" #: profile-builder-2.0/admin/basic-info.php:115 msgid "Map" msgstr "" #: profile-builder-2.0/admin/basic-info.php:116 msgid "HTML" msgstr "" #: profile-builder-2.0/admin/basic-info.php:162 #: profile-builder-2.0/modules/modules.php:117 msgid "Repeater Fields" msgstr "" #: profile-builder-2.0/admin/basic-info.php:163 msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role." msgstr "" #: profile-builder-2.0/admin/general-settings.php:59 msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Show Currency Symbol" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Whether the currency symbol should be displayed after the currency name in the select option." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Show Post Type" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Posts from what post type will be displayed in the select." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:145 msgid "Allowable Values" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:145 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." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Error Message" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Set a custom error message that will be displayed to the user." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Time Format" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Specify the time format." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Google Maps API Key" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Enter your Google Maps API key ( Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "Default Latitude" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "The latitude at which the map should be displayed when no pins are attached." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "Default Longitude" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "The longitude at which the map should be displayed when no pins are attached." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Default Zoom Level" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "Map Height" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "The height of the map." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "HTML Content" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "Add your HTML (or text) content" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Phone Format" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Eg. (###) ###-####" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Empty field won't check for correct phone number." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Heading Tag" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Change heading field size on front-end forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min Number Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Leave it empty for no min value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max Number Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Leave it empty for no max value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Number Step Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 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)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Leave it empty for no restriction" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:564 msgid "Albania Lek" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:565 msgid "Afghanistan Afghani" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:566 msgid "Argentina Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:567 msgid "Aruba Guilder" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:568 msgid "Australia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:569 msgid "Azerbaijan New Manat" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:570 msgid "Bahamas Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:571 msgid "Barbados Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:572 msgid "Bangladeshi taka" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:573 msgid "Belarus Ruble" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:574 msgid "Belize Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:575 msgid "Bermuda Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:576 msgid "Bolivia Boliviano" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:577 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:578 msgid "Botswana Pula" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:579 msgid "Bulgaria Lev" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:580 msgid "Brazil Real" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:581 msgid "Brunei Darussalam Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:582 msgid "Cambodia Riel" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:583 msgid "Canada Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:584 msgid "Cayman Islands Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:585 msgid "Chile Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:586 msgid "China Yuan Renminbi" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:587 msgid "Colombia Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:588 msgid "Costa Rica Colon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:589 msgid "Croatia Kuna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:590 msgid "Cuba Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:591 msgid "Czech Republic Koruna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:592 msgid "Denmark Krone" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:593 msgid "Dominican Republic Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:594 msgid "East Caribbean Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:595 msgid "Egypt Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:596 msgid "El Salvador Colon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:597 msgid "Estonia Kroon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:598 msgid "Euro" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:599 msgid "Falkland Islands (Malvinas) Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:600 msgid "Fiji Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:601 msgid "Ghana Cedis" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:602 msgid "Gibraltar Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:603 msgid "Guatemala Quetzal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:604 msgid "Guernsey Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:605 msgid "Guyana Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:606 msgid "Honduras Lempira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:607 msgid "Hong Kong Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:608 msgid "Hungary Forint" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:609 msgid "Iceland Krona" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:610 msgid "India Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:611 msgid "Indonesia Rupiah" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:612 msgid "Iran Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:613 msgid "Isle of Man Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:614 msgid "Israel Shekel" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:615 msgid "Jamaica Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:616 msgid "Japan Yen" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:617 msgid "Jersey Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:618 msgid "Kazakhstan Tenge" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:619 msgid "Korea (North) Won" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:620 msgid "Korea (South) Won" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:621 msgid "Kyrgyzstan Som" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:622 msgid "Laos Kip" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:623 msgid "Latvia Lat" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:624 msgid "Lebanon Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:625 msgid "Liberia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:626 msgid "Lithuania Litas" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:627 msgid "Macedonia Denar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:628 msgid "Malaysia Ringgit" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:629 msgid "Mauritius Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:630 msgid "Mexico Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:631 msgid "Mongolia Tughrik" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:632 msgid "Mozambique Metical" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:633 msgid "Namibia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:634 msgid "Nepal Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:635 msgid "Netherlands Antilles Guilder" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:636 msgid "New Zealand Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:637 msgid "Nicaragua Cordoba" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:638 msgid "Nigeria Naira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:639 msgid "Norway Krone" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:640 msgid "Oman Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:641 msgid "Pakistan Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:642 msgid "Panama Balboa" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:643 msgid "Paraguay Guarani" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:644 msgid "Peru Nuevo Sol" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:645 msgid "Philippines Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:646 msgid "Poland Zloty" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:647 msgid "Qatar Riyal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:648 msgid "Romania New Leu" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:649 msgid "Russia Ruble" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:650 msgid "Saint Helena Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:651 msgid "Saudi Arabia Riyal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:652 msgid "Serbia Dinar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:653 msgid "Seychelles Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:654 msgid "Singapore Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:655 msgid "Solomon Islands Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:656 msgid "Somalia Shilling" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:657 msgid "South Africa Rand" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:658 msgid "Sri Lanka Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:659 msgid "Sweden Krona" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:660 msgid "Switzerland Franc" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:661 msgid "Suriname Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:662 msgid "Syria Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:663 msgid "Taiwan New Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:664 msgid "Thailand Baht" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:665 msgid "Trinidad and Tobago Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:666 #: profile-builder-2.0/admin/manage-fields.php:667 msgid "Turkey Lira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:668 msgid "Tuvalu Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:669 msgid "Ukraine Hryvna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:670 msgid "United Kingdom Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:671 msgid "Uganda Shilling" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:672 msgid "US Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:673 msgid "Uruguay Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:674 msgid "Uzbekistan Som" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:675 msgid "Venezuela Bolivar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:676 msgid "Viet Nam Dong" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:677 msgid "Yemen Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:678 msgid "Zimbabwe Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1097 msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1314 msgid "Search Location" msgstr "" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754 msgid "You are not allowed to do this." msgstr "" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460 msgid "Search Users" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78 msgid "Conditional Logic" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79 msgid "Conditional Rules" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448 msgid "This field has conditional logic enabled." msgstr "" #: profile-builder-2.0/features/functions.php:685 msgid "Incorrect phone number" msgstr "" #: profile-builder-2.0/front-end/class-formbuilder.php:124 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." msgstr "" #: profile-builder-2.0/front-end/extra-fields/map/map.php:46 #: profile-builder-2.0/front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "" #: profile-builder-2.0/front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bolivia, __( Plurinational State of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bonaire, __( Sint Eustatius and Saba" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brunei Darussalam" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cabo Verde" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cocos (Keeling) Islands" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo, __( the Democratic Republic of the" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cote dIvoire" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Falkland Islands (Malvinas)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Holy See (Vatican City State)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iran, __( Islamic Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Democratic Peoples Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lao Peoples Democratic Republic" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macedonia, __( the former Yugoslav Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Micronesia, __( Federated States of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Moldova, __( Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palestine, __( State of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Russian Federation" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Helena, __( Ascension and Tristan da Cunha" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Martin (French part)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sint Maarten (Dutch part)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Syrian Arab Republic" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Taiwan, __( Province of China" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tanzania, __( United Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Timor-Leste" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Venezuela, __( Bolivarian Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Viet Nam" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( British" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( U.S." msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:186 msgid "User Fields Tags" msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479 msgid "The users selected password at signup" msgstr "" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278 msgid "[{{site_name}}] Notice of Email Change" msgstr "" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289 msgid "Changed Email Address Notification" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Limit" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Enable limit to the number of fields to be generated by users in front end forms " msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "General Limit" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "Limit reached message" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The maximum number of fields has been reached." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The popup message to display when the limit of repeater groups is reached." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Limit per Role" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Leave 0 for unlimited." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Repeated field group" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Manage field or group of fields that will be repeatable." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259 msgid "Edit field group" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260 msgid "Repeatable fields saved!" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277 #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326 msgid "Please enter a unique field title.\n" msgstr "" #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267 msgid "Are you sure you want to delete this?" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:192 msgid "Sort Tags" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:201 #: profile-builder-2.0/modules/user-listing/userlisting.php:2308 msgid "Faceted Menus" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:202 msgid "User Count" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1553 msgid "Show All" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1710 msgid "No options available" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1861 msgid "Remove All Filters" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Label" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Choose the facet name that appears on the frontend" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Facet Type" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Choose the facet menu type" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Facet Meta" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Choose the meta field for the facet menu" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Behaviour" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Narrow the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Expand the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Choose how multiple selections affect the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Visible choices" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Search Fields" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Choose the fields in which the Search Field will look in" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2330 msgid "Search Settings" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:8 #: pb-add-on-woocommerce/shipping-fields.php:8 msgid "Company Name" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:9 #: pb-add-on-woocommerce/shipping-fields.php:9 msgid "Address" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:5 #: pb-add-on-woocommerce/shipping-fields.php:5 msgid "Country" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:11 #: pb-add-on-woocommerce/shipping-fields.php:11 msgid "Town / City" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:12 #: pb-add-on-woocommerce/shipping-fields.php:12 msgid "State / County" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:13 #: pb-add-on-woocommerce/shipping-fields.php:13 msgid "Postcode / Zip" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:14 msgid "Email Address" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:15 msgid "Phone" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:278 msgid "Ship to a different address?" msgstr "" #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437 msgid "Billing Address" msgstr "" #: pb-add-on-woocommerce/index.php:169 msgid "Displays customer billing fields in front-end. " msgstr "" #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438 msgid "Shipping Address" msgstr "" #: pb-add-on-woocommerce/index.php:173 msgid "Displays customer shipping fields in front-end. " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Display on WooCommerce Checkout" msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Whether the field should be added to the WooCommerce checkout form or not" msgstr "" #: pb-add-on-woocommerce/index.php:541 msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:23 #: pb-add-on-woocommerce/woosync-page.php:70 msgid "WooCommerce Sync" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:76 msgid "Choose Register form to display on My Account page:" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:81 msgid "Default Register" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:103 msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce.
            This will also add the Profile Builder Login form to MyAccount page." msgstr "" #: pb-add-on-woocommerce/woosync-page.php:110 msgid "Choose Edit Profile form to display on My Account page:" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:115 msgid "Default Edit Profile" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:137 msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce." msgstr "" #: profile-builder-2.0/admin/add-ons.php:190 msgid "Recommended Plugins" msgstr "" #: profile-builder-2.0/admin/add-ons.php:219 #: profile-builder-2.0/admin/pms-cross-promotion.php:102 msgid "Free" msgstr "" #: profile-builder-2.0/admin/add-ons.php:221 msgid "Accept user payments, create subscription plans and restrict content on your membership site." msgstr "" #: profile-builder-2.0/admin/add-ons.php:222 #: profile-builder-2.0/admin/pms-cross-promotion.php:105 msgid "More Details" msgstr "" #: profile-builder-2.0/admin/add-ons.php:240 #: profile-builder-2.0/admin/pms-cross-promotion.php:88 #: profile-builder-2.0/admin/pms-cross-promotion.php:123 #: profile-builder-2.0/admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "" #: profile-builder-2.0/admin/add-ons.php:242 #: profile-builder-2.0/admin/pms-cross-promotion.php:87 #: profile-builder-2.0/admin/pms-cross-promotion.php:125 #: profile-builder-2.0/admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "" #: profile-builder-2.0/admin/add-ons.php:256 #: profile-builder-2.0/admin/pms-cross-promotion.php:146 msgid "Could not install plugin. Retry or install manually." msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:37 msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:104 msgid "Accept user payments, create subscription plans and restrict content on your website." msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401 msgid "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45 msgid "After Login" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46 msgid "After Logout" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47 msgid "After Registration" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48 msgid "After Edit Profile" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Successful Email Confirmation" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Successful Password Reset" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55 msgid "User ID" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61 msgid "User ID or Username" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "User ID / Username" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "Please select and enter the ID or username of your user." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131 msgid "Redirect Type" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Redirect URL" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241 msgid "Individual User Redirects" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84 msgid "... Choose" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 msgid "Select a user role." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242 msgid "User Role based Redirects" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243 msgid "Global Redirects" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133 msgid "Login ( wp_login.php )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134 msgid "Register ( wp-login.php?action=register )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145 msgid "Redirect Default WordPress Forms and Pages" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157 msgid "How does this work?" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 msgid "
            User Role
            Redirect
            URL
            " msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "
            Redirect
            URL
            " msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236 msgid "These redirects happen after a successful action, like registration or after a successful login." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238 msgid "Which redirect happens depends on the following priority:" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247 msgid "Redirect Default WordPress forms and pages" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248 msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250 msgid "Available tags for dynamic URLs" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251 msgid "You use the following tags in your URLs to redirect users to various pages." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253 msgid "generates a url of the current website homepage." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254 msgid "in WordPress the site url can be different then the home url" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255 msgid "the ID of the user" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256 msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257 msgid "the URL of the previously visited page" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352 msgid "You can't add duplicate redirects!" msgstr "" #: profile-builder-2.0/admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "" #: profile-builder-2.0/admin/basic-info.php:37 msgid "Friction-less login using %s shortcode or a widget." msgstr "" #: profile-builder-2.0/admin/basic-info.php:41 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "" #: profile-builder-2.0/admin/basic-info.php:45 msgid "Straight forward edit profile forms using %s shortcode." msgstr "" #: profile-builder-2.0/admin/basic-info.php:58 msgid "Allow users to recover their password in the front-end using the %s." msgstr "" #: profile-builder-2.0/admin/basic-info.php:140 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." msgstr "" #: profile-builder-2.0/admin/general-settings.php:115 msgid "\"Admin Approval\" on User Role:" msgstr "" #: profile-builder-2.0/admin/general-settings.php:134 msgid "Select on what user roles to activate Admin Approval." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Display on PB forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Login" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Register" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Recover Password" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Display on default WP forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Login" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Register" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Recover Password" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default option of the field" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:282 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Afghanistan" msgstr "Afghanistan" #: profile-builder-2.0/admin/manage-fields.php:283 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aland Islands" msgstr "Aland Islands" #: profile-builder-2.0/admin/manage-fields.php:284 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Albania" msgstr "Albania" #: profile-builder-2.0/admin/manage-fields.php:285 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Algeria" msgstr "Algeria" #: profile-builder-2.0/admin/manage-fields.php:286 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "American Samoa" msgstr "American Samoa" #: profile-builder-2.0/admin/manage-fields.php:287 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Andorra" msgstr "Andorra" #: profile-builder-2.0/admin/manage-fields.php:288 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Angola" msgstr "Angola" #: profile-builder-2.0/admin/manage-fields.php:289 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Anguilla" msgstr "Anguilla" #: profile-builder-2.0/admin/manage-fields.php:290 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antarctica" msgstr "Antarctica" #: profile-builder-2.0/admin/manage-fields.php:291 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" #: profile-builder-2.0/admin/manage-fields.php:292 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Argentina" msgstr "Argentina" #: profile-builder-2.0/admin/manage-fields.php:293 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Armenia" msgstr "Armenia" #: profile-builder-2.0/admin/manage-fields.php:294 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aruba" msgstr "Aruba" #: profile-builder-2.0/admin/manage-fields.php:295 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Australia" msgstr "Australia" #: profile-builder-2.0/admin/manage-fields.php:296 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Austria" msgstr "Austria" #: profile-builder-2.0/admin/manage-fields.php:297 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Azerbaijan" msgstr "Azerbaijan" #: profile-builder-2.0/admin/manage-fields.php:298 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahamas" msgstr "Bahamas" #: profile-builder-2.0/admin/manage-fields.php:299 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahrain" msgstr "Bahrain" #: profile-builder-2.0/admin/manage-fields.php:300 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bangladesh" msgstr "Bangladesh" #: profile-builder-2.0/admin/manage-fields.php:301 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Barbados" msgstr "Barbados" #: profile-builder-2.0/admin/manage-fields.php:302 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belarus" msgstr "Belarus" #: profile-builder-2.0/admin/manage-fields.php:303 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belgium" msgstr "Belgium" #: profile-builder-2.0/admin/manage-fields.php:304 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belize" msgstr "Belize" #: profile-builder-2.0/admin/manage-fields.php:305 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Benin" msgstr "Benin" #: profile-builder-2.0/admin/manage-fields.php:306 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bermuda" msgstr "Bermuda" #: profile-builder-2.0/admin/manage-fields.php:307 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bhutan" msgstr "Bhutan" #: profile-builder-2.0/admin/manage-fields.php:308 msgid "Bolivia" msgstr "Bolivia" #: profile-builder-2.0/admin/manage-fields.php:309 msgid "Bonaire, Saint Eustatius and Saba" msgstr "Bonaire, Saint Eustatius and Saba" #: profile-builder-2.0/admin/manage-fields.php:310 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bosnia and Herzegovina" msgstr "Bosnia and Herzegovina" #: profile-builder-2.0/admin/manage-fields.php:311 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Botswana" msgstr "Botswana" #: profile-builder-2.0/admin/manage-fields.php:312 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bouvet Island" msgstr "Bouvet Island" #: profile-builder-2.0/admin/manage-fields.php:313 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brazil" msgstr "Brazil" #: profile-builder-2.0/admin/manage-fields.php:314 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: profile-builder-2.0/admin/manage-fields.php:315 msgid "British Virgin Islands" msgstr "British Virgin Islands" #: profile-builder-2.0/admin/manage-fields.php:316 msgid "Brunei" msgstr "Brunei" #: profile-builder-2.0/admin/manage-fields.php:317 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bulgaria" msgstr "Bulgaria" #: profile-builder-2.0/admin/manage-fields.php:318 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burkina Faso" msgstr "Burkina Faso" #: profile-builder-2.0/admin/manage-fields.php:319 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burundi" msgstr "Burundi" #: profile-builder-2.0/admin/manage-fields.php:320 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cambodia" msgstr "Cambodia" #: profile-builder-2.0/admin/manage-fields.php:321 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cameroon" msgstr "Cameroon" #: profile-builder-2.0/admin/manage-fields.php:322 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Canada" msgstr "Canada" #: profile-builder-2.0/admin/manage-fields.php:323 msgid "Cape Verde" msgstr "Cape Verde" #: profile-builder-2.0/admin/manage-fields.php:324 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cayman Islands" msgstr "Cayman Islands" #: profile-builder-2.0/admin/manage-fields.php:325 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Central African Republic" msgstr "Central African Republic" #: profile-builder-2.0/admin/manage-fields.php:326 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chad" msgstr "Chad" #: profile-builder-2.0/admin/manage-fields.php:327 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chile" msgstr "Chile" #: profile-builder-2.0/admin/manage-fields.php:328 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "China" msgstr "China" #: profile-builder-2.0/admin/manage-fields.php:329 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Christmas Island" msgstr "Christmas Island" #: profile-builder-2.0/admin/manage-fields.php:330 msgid "Cocos Islands" msgstr "Cocos Islands" #: profile-builder-2.0/admin/manage-fields.php:331 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Colombia" msgstr "Colombia" #: profile-builder-2.0/admin/manage-fields.php:332 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Comoros" msgstr "Comoros" #: profile-builder-2.0/admin/manage-fields.php:333 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cook Islands" msgstr "Cook Islands" #: profile-builder-2.0/admin/manage-fields.php:334 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Costa Rica" msgstr "Costa Rica" #: profile-builder-2.0/admin/manage-fields.php:335 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Croatia" msgstr "Croatia" #: profile-builder-2.0/admin/manage-fields.php:336 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cuba" msgstr "Cuba" #: profile-builder-2.0/admin/manage-fields.php:337 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Curacao" msgstr "Curacao" #: profile-builder-2.0/admin/manage-fields.php:338 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cyprus" msgstr "Cyprus" #: profile-builder-2.0/admin/manage-fields.php:339 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Czech Republic" msgstr "Czech Republic" #: profile-builder-2.0/admin/manage-fields.php:340 msgid "Democratic Republic of the Congo" msgstr "Democratic Republic of the Congo" #: profile-builder-2.0/admin/manage-fields.php:341 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Denmark" msgstr "Denmark" #: profile-builder-2.0/admin/manage-fields.php:342 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Djibouti" msgstr "Djibouti" #: profile-builder-2.0/admin/manage-fields.php:343 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominica" msgstr "Dominica" #: profile-builder-2.0/admin/manage-fields.php:344 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominican Republic" msgstr "Dominican Republic" #: profile-builder-2.0/admin/manage-fields.php:345 msgid "East Timor" msgstr "East Timor" #: profile-builder-2.0/admin/manage-fields.php:346 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ecuador" msgstr "Ecuador" #: profile-builder-2.0/admin/manage-fields.php:347 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Egypt" msgstr "Egypt" #: profile-builder-2.0/admin/manage-fields.php:348 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "El Salvador" msgstr "El Salvador" #: profile-builder-2.0/admin/manage-fields.php:349 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: profile-builder-2.0/admin/manage-fields.php:350 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Eritrea" msgstr "Eritrea" #: profile-builder-2.0/admin/manage-fields.php:351 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Estonia" msgstr "Estonia" #: profile-builder-2.0/admin/manage-fields.php:352 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ethiopia" msgstr "Ethiopia" #: profile-builder-2.0/admin/manage-fields.php:353 msgid "Falkland Islands" msgstr "Falkland Islands" #: profile-builder-2.0/admin/manage-fields.php:354 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Faroe Islands" msgstr "Faroe Islands" #: profile-builder-2.0/admin/manage-fields.php:355 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Fiji" msgstr "Fiji" #: profile-builder-2.0/admin/manage-fields.php:356 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Finland" msgstr "Finland" #: profile-builder-2.0/admin/manage-fields.php:357 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "France" msgstr "France" #: profile-builder-2.0/admin/manage-fields.php:358 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Guiana" msgstr "French Guiana" #: profile-builder-2.0/admin/manage-fields.php:359 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Polynesia" msgstr "French Polynesia" #: profile-builder-2.0/admin/manage-fields.php:360 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Southern Territories" msgstr "French Southern Territories" #: profile-builder-2.0/admin/manage-fields.php:361 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gabon" msgstr "Gabon" #: profile-builder-2.0/admin/manage-fields.php:362 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gambia" msgstr "Gambia" #: profile-builder-2.0/admin/manage-fields.php:363 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Georgia" msgstr "Georgia" #: profile-builder-2.0/admin/manage-fields.php:364 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Germany" msgstr "Germany" #: profile-builder-2.0/admin/manage-fields.php:365 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ghana" msgstr "Ghana" #: profile-builder-2.0/admin/manage-fields.php:366 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gibraltar" msgstr "Gibraltar" #: profile-builder-2.0/admin/manage-fields.php:367 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greece" msgstr "Greece" #: profile-builder-2.0/admin/manage-fields.php:368 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greenland" msgstr "Greenland" #: profile-builder-2.0/admin/manage-fields.php:369 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Grenada" msgstr "Grenada" #: profile-builder-2.0/admin/manage-fields.php:370 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guadeloupe" msgstr "Guadeloupe" #: profile-builder-2.0/admin/manage-fields.php:371 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guam" msgstr "Guam" #: profile-builder-2.0/admin/manage-fields.php:372 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guatemala" msgstr "Guatemala" #: profile-builder-2.0/admin/manage-fields.php:373 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guernsey" msgstr "Guernsey" #: profile-builder-2.0/admin/manage-fields.php:374 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea" msgstr "Guinea" #: profile-builder-2.0/admin/manage-fields.php:375 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: profile-builder-2.0/admin/manage-fields.php:376 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guyana" msgstr "Guyana" #: profile-builder-2.0/admin/manage-fields.php:377 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Haiti" msgstr "Haiti" #: profile-builder-2.0/admin/manage-fields.php:378 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Heard Island and McDonald Islands" msgstr "Heard Island and McDonald Islands" #: profile-builder-2.0/admin/manage-fields.php:379 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Honduras" msgstr "Honduras" #: profile-builder-2.0/admin/manage-fields.php:380 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hong Kong" msgstr "Hong Kong" #: profile-builder-2.0/admin/manage-fields.php:381 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hungary" msgstr "Hungary" #: profile-builder-2.0/admin/manage-fields.php:382 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iceland" msgstr "Iceland" #: profile-builder-2.0/admin/manage-fields.php:383 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "India" msgstr "India" #: profile-builder-2.0/admin/manage-fields.php:384 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Indonesia" msgstr "Indonesia" #: profile-builder-2.0/admin/manage-fields.php:385 msgid "Iran" msgstr "Iran" #: profile-builder-2.0/admin/manage-fields.php:386 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iraq" msgstr "Iraq" #: profile-builder-2.0/admin/manage-fields.php:387 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ireland" msgstr "Ireland" #: profile-builder-2.0/admin/manage-fields.php:388 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Isle of Man" msgstr "Isle of Man" #: profile-builder-2.0/admin/manage-fields.php:389 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Israel" msgstr "Israel" #: profile-builder-2.0/admin/manage-fields.php:390 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Italy" msgstr "Italy" #: profile-builder-2.0/admin/manage-fields.php:391 msgid "Ivory Coast" msgstr "Ivory Coast" #: profile-builder-2.0/admin/manage-fields.php:392 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jamaica" msgstr "Jamaica" #: profile-builder-2.0/admin/manage-fields.php:393 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Japan" msgstr "Japan" #: profile-builder-2.0/admin/manage-fields.php:394 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jersey" msgstr "Jersey" #: profile-builder-2.0/admin/manage-fields.php:395 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jordan" msgstr "Jordan" #: profile-builder-2.0/admin/manage-fields.php:396 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kazakhstan" msgstr "Kazakhstan" #: profile-builder-2.0/admin/manage-fields.php:397 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kenya" msgstr "Kenya" #: profile-builder-2.0/admin/manage-fields.php:398 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kiribati" msgstr "Kiribati" #: profile-builder-2.0/admin/manage-fields.php:399 msgid "Kosovo" msgstr "Kosovo" #: profile-builder-2.0/admin/manage-fields.php:400 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kuwait" msgstr "Kuwait" #: profile-builder-2.0/admin/manage-fields.php:401 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: profile-builder-2.0/admin/manage-fields.php:402 msgid "Laos" msgstr "Laos" #: profile-builder-2.0/admin/manage-fields.php:403 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Latvia" msgstr "Latvia" #: profile-builder-2.0/admin/manage-fields.php:404 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lebanon" msgstr "Lebanon" #: profile-builder-2.0/admin/manage-fields.php:405 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lesotho" msgstr "Lesotho" #: profile-builder-2.0/admin/manage-fields.php:406 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liberia" msgstr "Liberia" #: profile-builder-2.0/admin/manage-fields.php:407 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Libya" msgstr "Libya" #: profile-builder-2.0/admin/manage-fields.php:408 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liechtenstein" msgstr "Liechtenstein" #: profile-builder-2.0/admin/manage-fields.php:409 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lithuania" msgstr "Lithuania" #: profile-builder-2.0/admin/manage-fields.php:410 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Luxembourg" msgstr "Luxembourg" #: profile-builder-2.0/admin/manage-fields.php:411 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macao" msgstr "Macao" #: profile-builder-2.0/admin/manage-fields.php:412 msgid "Macedonia" msgstr "Macedonia" #: profile-builder-2.0/admin/manage-fields.php:413 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Madagascar" msgstr "Madagascar" #: profile-builder-2.0/admin/manage-fields.php:414 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malawi" msgstr "Malawi" #: profile-builder-2.0/admin/manage-fields.php:415 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malaysia" msgstr "Malaysia" #: profile-builder-2.0/admin/manage-fields.php:416 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Maldives" msgstr "Maldives" #: profile-builder-2.0/admin/manage-fields.php:417 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mali" msgstr "Mali" #: profile-builder-2.0/admin/manage-fields.php:418 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malta" msgstr "Malta" #: profile-builder-2.0/admin/manage-fields.php:419 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Marshall Islands" msgstr "Marshall Islands" #: profile-builder-2.0/admin/manage-fields.php:420 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Martinique" msgstr "Martinique" #: profile-builder-2.0/admin/manage-fields.php:421 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritania" msgstr "Mauritania" #: profile-builder-2.0/admin/manage-fields.php:422 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritius" msgstr "Mauritius" #: profile-builder-2.0/admin/manage-fields.php:423 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mayotte" msgstr "Mayotte" #: profile-builder-2.0/admin/manage-fields.php:424 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mexico" msgstr "Mexico" #: profile-builder-2.0/admin/manage-fields.php:425 msgid "Micronesia" msgstr "Micronesia" #: profile-builder-2.0/admin/manage-fields.php:426 msgid "Moldova" msgstr "Moldova" #: profile-builder-2.0/admin/manage-fields.php:427 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Monaco" msgstr "Monaco" #: profile-builder-2.0/admin/manage-fields.php:428 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mongolia" msgstr "Mongolia" #: profile-builder-2.0/admin/manage-fields.php:429 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montenegro" msgstr "Montenegro" #: profile-builder-2.0/admin/manage-fields.php:430 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montserrat" msgstr "Montserrat" #: profile-builder-2.0/admin/manage-fields.php:431 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Morocco" msgstr "Morocco" #: profile-builder-2.0/admin/manage-fields.php:432 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mozambique" msgstr "Mozambique" #: profile-builder-2.0/admin/manage-fields.php:433 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Myanmar" msgstr "Myanmar" #: profile-builder-2.0/admin/manage-fields.php:434 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Namibia" msgstr "Namibia" #: profile-builder-2.0/admin/manage-fields.php:435 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nauru" msgstr "Nauru" #: profile-builder-2.0/admin/manage-fields.php:436 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nepal" msgstr "Nepal" #: profile-builder-2.0/admin/manage-fields.php:437 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Netherlands" msgstr "Netherlands" #: profile-builder-2.0/admin/manage-fields.php:438 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Caledonia" msgstr "New Caledonia" #: profile-builder-2.0/admin/manage-fields.php:439 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Zealand" msgstr "New Zealand" #: profile-builder-2.0/admin/manage-fields.php:440 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nicaragua" msgstr "Nicaragua" #: profile-builder-2.0/admin/manage-fields.php:441 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niger" msgstr "Niger" #: profile-builder-2.0/admin/manage-fields.php:442 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nigeria" msgstr "Nigeria" #: profile-builder-2.0/admin/manage-fields.php:443 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niue" msgstr "Niue" #: profile-builder-2.0/admin/manage-fields.php:444 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norfolk Island" msgstr "Norfolk Island" #: profile-builder-2.0/admin/manage-fields.php:445 msgid "North Korea" msgstr "North Korea" #: profile-builder-2.0/admin/manage-fields.php:446 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: profile-builder-2.0/admin/manage-fields.php:447 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norway" msgstr "Norway" #: profile-builder-2.0/admin/manage-fields.php:448 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Oman" msgstr "Oman" #: profile-builder-2.0/admin/manage-fields.php:449 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pakistan" msgstr "Pakistan" #: profile-builder-2.0/admin/manage-fields.php:450 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palau" msgstr "Palau" #: profile-builder-2.0/admin/manage-fields.php:451 msgid "Palestinian Territory" msgstr "Palestinian Territory" #: profile-builder-2.0/admin/manage-fields.php:452 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Panama" msgstr "Panama" #: profile-builder-2.0/admin/manage-fields.php:453 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: profile-builder-2.0/admin/manage-fields.php:454 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Paraguay" msgstr "Paraguay" #: profile-builder-2.0/admin/manage-fields.php:455 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Peru" msgstr "Peru" #: profile-builder-2.0/admin/manage-fields.php:456 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Philippines" msgstr "Philippines" #: profile-builder-2.0/admin/manage-fields.php:457 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pitcairn" msgstr "Pitcairn" #: profile-builder-2.0/admin/manage-fields.php:458 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Poland" msgstr "Poland" #: profile-builder-2.0/admin/manage-fields.php:459 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Portugal" msgstr "Portugal" #: profile-builder-2.0/admin/manage-fields.php:460 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Puerto Rico" msgstr "Puerto Rico" #: profile-builder-2.0/admin/manage-fields.php:461 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Qatar" msgstr "Qatar" #: profile-builder-2.0/admin/manage-fields.php:462 msgid "Republic of the Congo" msgstr "Republic of the Congo" #: profile-builder-2.0/admin/manage-fields.php:463 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Reunion" msgstr "Reunion" #: profile-builder-2.0/admin/manage-fields.php:464 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Romania" msgstr "Romania" #: profile-builder-2.0/admin/manage-fields.php:465 msgid "Russia" msgstr "Russia" #: profile-builder-2.0/admin/manage-fields.php:466 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Rwanda" msgstr "Rwanda" #: profile-builder-2.0/admin/manage-fields.php:467 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: profile-builder-2.0/admin/manage-fields.php:468 msgid "Saint Helena" msgstr "Saint Helena" #: profile-builder-2.0/admin/manage-fields.php:469 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts and Nevis" #: profile-builder-2.0/admin/manage-fields.php:470 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Lucia" msgstr "Saint Lucia" #: profile-builder-2.0/admin/manage-fields.php:471 msgid "Saint Martin" msgstr "Saint Martin" #: profile-builder-2.0/admin/manage-fields.php:472 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre and Miquelon" #: profile-builder-2.0/admin/manage-fields.php:473 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent and the Grenadines" #: profile-builder-2.0/admin/manage-fields.php:474 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Samoa" msgstr "Samoa" #: profile-builder-2.0/admin/manage-fields.php:475 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "San Marino" msgstr "San Marino" #: profile-builder-2.0/admin/manage-fields.php:476 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sao Tome and Principe" msgstr "Sao Tome and Principe" #: profile-builder-2.0/admin/manage-fields.php:477 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: profile-builder-2.0/admin/manage-fields.php:478 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Senegal" msgstr "Senegal" #: profile-builder-2.0/admin/manage-fields.php:479 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Serbia" msgstr "Serbia" #: profile-builder-2.0/admin/manage-fields.php:480 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Seychelles" msgstr "Seychelles" #: profile-builder-2.0/admin/manage-fields.php:481 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sierra Leone" msgstr "Sierra Leone" #: profile-builder-2.0/admin/manage-fields.php:482 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Singapore" msgstr "Singapore" #: profile-builder-2.0/admin/manage-fields.php:483 msgid "Sint Maarten" msgstr "Sint Maarten" #: profile-builder-2.0/admin/manage-fields.php:484 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovakia" msgstr "Slovakia" #: profile-builder-2.0/admin/manage-fields.php:485 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovenia" msgstr "Slovenia" #: profile-builder-2.0/admin/manage-fields.php:486 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Solomon Islands" msgstr "Solomon Islands" #: profile-builder-2.0/admin/manage-fields.php:487 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Somalia" msgstr "Somalia" #: profile-builder-2.0/admin/manage-fields.php:488 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Africa" msgstr "South Africa" #: profile-builder-2.0/admin/manage-fields.php:489 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Georgia and the South Sandwich Islands" msgstr "South Georgia and the South Sandwich Islands" #: profile-builder-2.0/admin/manage-fields.php:490 msgid "South Korea" msgstr "South Korea" #: profile-builder-2.0/admin/manage-fields.php:491 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Sudan" msgstr "South Sudan" #: profile-builder-2.0/admin/manage-fields.php:492 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Spain" msgstr "Spain" #: profile-builder-2.0/admin/manage-fields.php:493 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sri Lanka" msgstr "Sri Lanka" #: profile-builder-2.0/admin/manage-fields.php:494 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sudan" msgstr "Sudan" #: profile-builder-2.0/admin/manage-fields.php:495 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Suriname" msgstr "Suriname" #: profile-builder-2.0/admin/manage-fields.php:496 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Svalbard and Jan Mayen" msgstr "Svalbard and Jan Mayen" #: profile-builder-2.0/admin/manage-fields.php:497 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Swaziland" msgstr "Swaziland" #: profile-builder-2.0/admin/manage-fields.php:498 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sweden" msgstr "Sweden" #: profile-builder-2.0/admin/manage-fields.php:499 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Switzerland" msgstr "Switzerland" #: profile-builder-2.0/admin/manage-fields.php:500 msgid "Syria" msgstr "Syria" #: profile-builder-2.0/admin/manage-fields.php:501 msgid "Taiwan" msgstr "Taiwan" #: profile-builder-2.0/admin/manage-fields.php:502 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tajikistan" msgstr "Tajikistan" #: profile-builder-2.0/admin/manage-fields.php:503 msgid "Tanzania" msgstr "Tanzania" #: profile-builder-2.0/admin/manage-fields.php:504 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Thailand" msgstr "Thailand" #: profile-builder-2.0/admin/manage-fields.php:505 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Togo" msgstr "Togo" #: profile-builder-2.0/admin/manage-fields.php:506 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tokelau" msgstr "Tokelau" #: profile-builder-2.0/admin/manage-fields.php:507 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tonga" msgstr "Tonga" #: profile-builder-2.0/admin/manage-fields.php:508 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Trinidad and Tobago" msgstr "Trinidad and Tobago" #: profile-builder-2.0/admin/manage-fields.php:509 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tunisia" msgstr "Tunisia" #: profile-builder-2.0/admin/manage-fields.php:510 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkey" msgstr "Turkey" #: profile-builder-2.0/admin/manage-fields.php:511 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkmenistan" msgstr "Turkmenistan" #: profile-builder-2.0/admin/manage-fields.php:512 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Islands" #: profile-builder-2.0/admin/manage-fields.php:513 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tuvalu" msgstr "Tuvalu" #: profile-builder-2.0/admin/manage-fields.php:514 msgid "U.S. Virgin Islands" msgstr "U.S. Virgin Islands" #: profile-builder-2.0/admin/manage-fields.php:515 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uganda" msgstr "Uganda" #: profile-builder-2.0/admin/manage-fields.php:516 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ukraine" msgstr "Ukraine" #: profile-builder-2.0/admin/manage-fields.php:517 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Arab Emirates" msgstr "United Arab Emirates" #: profile-builder-2.0/admin/manage-fields.php:518 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Kingdom" msgstr "United Kingdom" #: profile-builder-2.0/admin/manage-fields.php:519 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States" msgstr "United States" #: profile-builder-2.0/admin/manage-fields.php:520 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: profile-builder-2.0/admin/manage-fields.php:521 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uruguay" msgstr "Uruguay" #: profile-builder-2.0/admin/manage-fields.php:522 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uzbekistan" msgstr "Uzbekistan" #: profile-builder-2.0/admin/manage-fields.php:523 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Vanuatu" msgstr "Vanuatu" #: profile-builder-2.0/admin/manage-fields.php:524 msgid "Vatican" msgstr "Vatican" #: profile-builder-2.0/admin/manage-fields.php:525 msgid "Venezuela" msgstr "Venezuela" #: profile-builder-2.0/admin/manage-fields.php:526 msgid "Vietnam" msgstr "Vietnam" #: profile-builder-2.0/admin/manage-fields.php:527 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Wallis and Futuna" msgstr "Wallis and Futuna" #: profile-builder-2.0/admin/manage-fields.php:528 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Western Sahara" msgstr "Western Sahara" #: profile-builder-2.0/admin/manage-fields.php:529 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Yemen" msgstr "Yemen" #: profile-builder-2.0/admin/manage-fields.php:530 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zambia" msgstr "Zambia" #: profile-builder-2.0/admin/manage-fields.php:531 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zimbabwe" msgstr "Zimbabwe" #: profile-builder-2.0/admin/manage-fields.php:1219 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." msgstr "" #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237 msgid "Your account has to be confirmed by an administrator before you can log in." msgstr "" #: profile-builder-2.0/features/admin-approval/admin-approval.php:216 msgid "Your account has been successfully created!" msgstr "" #: profile-builder-2.0/features/functions.php:678 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458 msgid "Please enter a (valid) reCAPTCHA value" msgstr "" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 msgid "Click the BACK button on your browser, and try again." msgstr "" #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78 #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87 msgid "Sorry, you cannot upload this file type for this field." msgstr "" #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94 msgid "An error occurred, please try again later." msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:282 msgid "More" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:376 msgid "You do not have permission to view this user list." msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:389 msgid "You do not have the required user role to view this user list." msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2253 msgid "Ascending" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2254 msgid "Descending" msgstr "" #: profile-builder-2.0/admin/add-ons.php:148 #: profile-builder-2.0/admin/add-ons.php:248 #: profile-builder-2.0/admin/pms-cross-promotion.php:134 #: profile-builder-2.0/admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "Prenesite sedaj" #: profile-builder-2.0/admin/admin-functions.php:200 msgid "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. " msgstr "Če ste zadovoljni z uporabo %1$s nas prosimo ocenite na WordPress.org. Več zadovoljnih uporabnikov pomeni več dodatnih funkcij, manj napak in boljšo podporo za vse." #: profile-builder-2.0/admin/manage-fields.php:82 msgid "Choose one of the supported field types" msgstr "Izberite enega izmed podprtih tipov polj" #: profile-builder-2.0/admin/manage-fields.php:84 msgid ". Extra Field Types are available in Hobbyist or PRO versions." msgstr "Dodatni tipi polj so na voljo v Hobbyist ali PRO različici." #: profile-builder-2.0/admin/manage-fields.php:131 msgid "Site Key" msgstr "Ključ spletne strani" #: profile-builder-2.0/admin/manage-fields.php:131 msgid "The site key from Google, www.google.com/recaptcha" msgstr "Ključ Google strani, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "Secret Key" msgstr "Skriti ključ" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "The secret key from Google, www.google.com/recaptcha" msgstr "Skriti ključ iz Googla, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:1023 msgid "You must enter the site key\n" msgstr "Vnesti morate ključ spletne strani\n" #: profile-builder-2.0/admin/manage-fields.php:1025 msgid "You must enter the secret key\n" msgstr "Vnesti morate skrivni ključ\n" #: profile-builder-2.0/admin/add-ons.php:10 #: profile-builder-2.0/admin/add-ons.php:32 msgid "Add-Ons" msgstr "Dodatki" #: profile-builder-2.0/admin/add-ons.php:34 #: profile-builder-2.0/admin/add-ons.php:129 #: profile-builder-2.0/admin/add-ons.php:231 #: profile-builder-2.0/admin/pms-cross-promotion.php:78 #: profile-builder-2.0/admin/pms-cross-promotion.php:114 #: profile-builder-2.0/admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "Aktiviraj" #: profile-builder-2.0/admin/add-ons.php:36 #: profile-builder-2.0/admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "Prenašanje in nameščanje..." #: profile-builder-2.0/admin/add-ons.php:37 #: profile-builder-2.0/admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "Namestitev končana" #: profile-builder-2.0/admin/add-ons.php:39 msgid "Add-On is Active" msgstr "Dodatek je aktiven" #: profile-builder-2.0/admin/add-ons.php:40 msgid "Add-On has been activated" msgstr "Dodatek je bil aktiviran" #: profile-builder-2.0/admin/add-ons.php:41 #: profile-builder-2.0/admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "Ponoven poskus namestitve" #: profile-builder-2.0/admin/add-ons.php:43 #: profile-builder-2.0/admin/add-ons.php:140 msgid "Add-On is active" msgstr "Dodatek je aktiven" #: profile-builder-2.0/admin/add-ons.php:44 #: profile-builder-2.0/admin/add-ons.php:138 msgid "Add-On is inactive" msgstr "Dodatek je neaktiven" #: profile-builder-2.0/admin/add-ons.php:46 #: profile-builder-2.0/admin/add-ons.php:133 #: profile-builder-2.0/admin/add-ons.php:235 #: profile-builder-2.0/admin/pms-cross-promotion.php:90 #: profile-builder-2.0/admin/pms-cross-promotion.php:118 #: profile-builder-2.0/admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "Deaktiviraj" #: profile-builder-2.0/admin/add-ons.php:47 msgid "Add-On has been deactivated." msgstr "Dodatek je bil deaktiviran" #: profile-builder-2.0/admin/add-ons.php:59 msgid "Something went wrong, we could not connect to the server. Please try again later." msgstr "Nekaj je šlo narobe, povezava na strežnik je bila neuspešna. Prosimo poizkusite kasneje." #: profile-builder-2.0/admin/pms-cross-promotion.php:137 #: profile-builder-2.0/admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "Namestite sedaj" #: profile-builder-2.0/admin/add-ons.php:153 #: profile-builder-2.0/admin/add-ons.php:251 #: profile-builder-2.0/admin/pms-cross-promotion.php:141 #: profile-builder-2.0/admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "Združljivo z vašo različico Profile Builder" #: profile-builder-2.0/admin/add-ons.php:162 msgid "Upgrade Profile Builder" msgstr "Posodobite Profile Builder" #: profile-builder-2.0/admin/add-ons.php:163 msgid "Not compatible with Profile Builder" msgstr "Ni združljivo s Profile Builder" #: profile-builder-2.0/admin/add-ons.php:171 msgid "Not compatible with your version of Profile Builder." msgstr "Ni združljivo z vašo različico Profile Builder" #: profile-builder-2.0/admin/add-ons.php:172 msgid "Minimum required Profile Builder version:" msgstr "Minimalna zahtevana različica Profile Builder:" #: profile-builder-2.0/admin/add-ons.php:177 msgid "Could not install add-on. Retry or install manually." msgstr "Namestitev dodatka je bila neuspešna. Poizkusite ponovno ali namestite ročno." #: profile-builder-2.0/front-end/default-fields/email/email.php:51 msgid "You must enter a valid email address." msgstr "Vnesti morate veljaven e-naslov." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "To uporabniško ime je neveljavno, ker vsebuje nedovoljene znake." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "Prosimo vpišite veljavno uporabniško ime." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72 #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85 msgid "Only administrators can see this field on edit profile forms." msgstr "Samo skrbniki strani lahko vidijo to polje na urejanju profilnih obrazcev" #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81 msgid "As an administrator you cannot change your role." msgstr "Kot skrbnik strani ne morete spremeniti svoje vloge." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117 msgid "" "\n" "

            {{username}} has requested a password change via the password reset feature.

            \n" "

            His/her new password is: {{password}}

            \n" msgstr "" "\n" "

            {{username}} je prosil za spremembo gesla preko funkcije za zamenjavo gesla.

            \n" "

            Novo geslo je: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141 msgid "Admin Notification for User Password Reset" msgstr "Obvestilo skrbniku strani za ponastavitev gesla uporabnika" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46 msgid "Reset Key" msgstr "Ponastavitveni ključ" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47 msgid "Reset Url" msgstr "Ponastavitveni spletni naslov" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48 msgid "Reset Link" msgstr "Ponastavitvena povezava" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204 msgid "" "\n" "

            Someone requested that the password be reset for the following account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            \n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" msgstr "" "\n" "

            Nekdo je sprožil zahtevo po ponastavitvi gesla za sledeči uporabniški račun: {{site_name}}
            \n" "Uporabniško ime: {{username}}

            \n" "

            Če je prišlo do napake, ignorirajte to e-pošto in nič se ne bo zgodilo.

            \n" "

            Za ponastavitev vašega gesla obiščite sledečo povezavo:
            \n" "{{{reset_link}}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218 msgid "[{{site_name}}] Password Reset" msgstr "[{{site_name}}] Ponastavitev gesla" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229 msgid "Password Reset Email" msgstr "E-pošta za ponastavitev gesla" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235 msgid "" "\n" "

            You have successfully reset your password to: {{password}}

            \n" msgstr "" "\n" "

            Uspešno ste spremenili vaše geslo v: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset Successfully" msgstr "[{{site_name}}] Uspešno ponastavljeno geslo" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256 msgid "Password Reset Success Email" msgstr "E-pošta o uspešni ponastavitvi gesla" #: profile-builder-2.0/modules/user-listing/userlisting.php:159 msgid "User Nicename" msgstr "Uporabnikovo olepšano ime" #: pb-add-on-woocommerce/woosync-page.php:80 #: pb-add-on-woocommerce/woosync-page.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:499 msgid "None" msgstr "Noben" #: profile-builder-2.0/admin/admin-functions.php:132 msgid "ERROR: The password must have the minimum length of %s characters" msgstr "NAPAKA: Geslo mora vsebovati najmanj %s znakov" #: profile-builder-2.0/admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr "NAPAKA: Geslo mora biti najmanj %s v težavnosti" #: profile-builder-2.0/admin/general-settings.php:179 msgid "Username and Email" msgstr "Uporabniško ime in e-naslov" #: profile-builder-2.0/admin/general-settings.php:184 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "\"Uporabniško ime in e-naslov\" - uporabnik se lahko prijavi tako z uporabniškim imenom kot tudi z e-naslovom." #: profile-builder-2.0/admin/general-settings.php:185 msgid "\"Username\" - users can Log In only with Username." msgstr "\"Uporabniško ime\" - uporabniki se lahko prijavijo le z njihovim uporabniškim imenom." #: profile-builder-2.0/admin/general-settings.php:186 msgid "\"Email\" - users can Log In only with Email." msgstr "\"E-naslov\" - uporabniki se lahko prijavijo samo z e-poštnim naslovom" #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "Določite končnice na katere hočete omejiti naložene datoteke
            Primer: .ext1,.ext2,.ext3
            Če niso določene, so privzete končnice: .jpg,.jpeg,.gif,.png (.*)" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)" msgstr "Določite končnice na katere hočete omejiti naložene datoteke
            Primer: .ext1,.ext2,.ext3
            Če niso določene, so privzete končnice vse dovoljene WordPress končnice (.*)" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "User Roles" msgstr "Vloge uporabnikov" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "Izberite katere vloge uporabnikov se prikažejo uporabniku ( povleci in spusti za razvrstitev )" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "User Roles Order" msgstr "Vrstni red vlog uporabnikov" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "Save the user role order from the user roles checkboxes" msgstr "Shranite vrstni red vlog uporabnikov s pomočjo potrditvenih polj" #: profile-builder-2.0/admin/manage-fields.php:1128 msgid "Please select at least one user role\n" msgstr "Prosimo izberite vsaj eno vlogo uporabnika\n" #: profile-builder-2.0/admin/register-version.php:22 msgid "Profile Builder Register" msgstr "Registriranje Profile Builder" #: profile-builder-2.0/admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "Serijska številka bo kmalu potekla!" #: profile-builder-2.0/admin/register-version.php:81 msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr "Vaša serijska številka bo kmalu potekla, prosimo %1$sObnovite vašo licenco%2$s." #: profile-builder-2.0/admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr "Vaša serijska številka je potekla, prosimo %1$sObnovite vašo licenco%2$s." #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 msgid "Add Entry" msgstr "Dodaj vnos" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 msgid "show" msgstr "prikaži" #: profile-builder-2.0/features/functions.php:736 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" msgstr "Da se bodo uporabniki lahko registrirali na vaši strani preko Profile Builder vtičnika, morate najprej omogočiti registracijo uporabnikov. Pojdite na %1$sNastavitve omrežja%2$s, in pod Registracijske nastavitve označite “Uporabniški računi so lahko registrirani”. %3$sSkrij%4$s" #: profile-builder-2.0/front-end/class-formbuilder.php:659 msgid "User to edit:" msgstr "Uporabnik, ki ga urejate:" #: profile-builder-2.0/front-end/default-fields/password/password.php:46 #: profile-builder-2.0/front-end/recover.php:262 msgid "The password must have the minimum length of %s characters" msgstr "Geslo mora imeti najmanj %s znakov" #: profile-builder-2.0/front-end/default-fields/password/password.php:50 #: profile-builder-2.0/front-end/recover.php:266 msgid "The password must have a minimum strength of %s" msgstr "Geslo mora biti najmanj takšne težavnosti: %s" #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118 msgid "You cannot register this user role" msgstr "Te uporabniške vloge ne morete registrirati" #: profile-builder-2.0/front-end/login.php:153 msgid "username or email" msgstr "uporabniško ime ali e-naslov" #: profile-builder-2.0/front-end/login.php:222 msgid "Username or Email" msgstr "Uporabniško ime ali e-naslov" #: profile-builder-2.0/front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "Trenutno ste prijavljeni kot %1$s." #: profile-builder-2.0/front-end/logout.php:15 msgid "Log out »" msgstr "Izpis »" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "Vloga uporabnika" #: profile-builder-2.0/modules/user-listing/userlisting.php:2167 msgid "View all extra shortcode parameters" msgstr "Preglej vse parametre kratke kode (shortcode)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2181 msgid "displays only the users that you specified the user_id for" msgstr "prikaže samo uporabnike za katere ste določili user_id" #: profile-builder-2.0/modules/user-listing/userlisting.php:2187 msgid "displays all users except the ones you specified the user_id for" msgstr "prikaže vse uporabnike razen tistih za katere ste določili user_id" #: profile-builder-2.0/features/functions.php:566 msgid "Minimum length of %d characters" msgstr "Najmanjša dolžina %d znakov" #: profile-builder-2.0/front-end/class-formbuilder.php:146 #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "This message is only visible by administrators" msgstr "To sporočilo je vidno samo skrbnikom strani" #: profile-builder-2.0/modules/user-listing/userlisting.php:413 msgid "User not found" msgstr "Uporabnik ni bil najden" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "Veljavni oznaki {{reply_to}} in {{site_name}}" #: profile-builder-2.0/admin/admin-bar.php:48 msgid "Choose which user roles view the admin bar in the front-end of the website." msgstr "Izberite katere vloge uporabnikov (user roles) vidijo Admin Bar na sprednji strani (Front-End) spletne strani." #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes" msgstr "Vnesite seznam vrednosti ločenih z vejico
            To je lahko karkoli, ker je skrito pred uporabniki, ampak ne sme vsebovati posebnih znakov ali opuščajev (apostrofov)." #: profile-builder-2.0/admin/manage-fields.php:1055 msgid "The meta-name cannot be empty\n" msgstr "Meta-ime ne more biti prazno\n" #: profile-builder-2.0/admin/register-version.php:69 msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received" msgstr "Sedaj ko ste pridobili svoj izvod %s, si vzamite čas in ga registrirajte z serijsko številko, ki ste jo dobili" #: profile-builder-2.0/admin/register-version.php:243 msgid "

            Your Profile Builder serial number is invalid or missing.
            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

            " msgstr "

            Your Profile Builder serijska številka je neveljavna ali manjkajoča.
            Prosimo %1$sregistrirajte svoj izvod%2$s, da dobite dostop do samodejnih posodobitev in podpore. Potrebujete licenčni ključ? %3$sKupite sedaj%4$s

            " #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17 #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60 msgid "...Choose" msgstr "...Izberite" #: profile-builder-2.0/features/class-list-table.php:526 #: profile-builder-2.0/features/class-list-table.php:942 msgid "1 item" msgstr "1 element" #: profile-builder-2.0/features/functions.php:552 msgid "Very Weak" msgstr "Zelo slabo" #: profile-builder-2.0/features/functions.php:640 msgid "This field is required" msgstr "To polje je obvezno" #: profile-builder-2.0/features/functions.php:704 msgid "Cancel" msgstr "Prekini" #: profile-builder-2.0/features/functions.php:740 msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s" msgstr "Da se bodo uporabniki lahko registrirali na vaši strani preko Profile Builder vtičnika, morate najprej omogočiti registracijo uporabnikov. Pojdite na %1$sNastavitve%2$s, in pod Članstvo označite “Registrira se lahko kdorkoli”. %3$sSkrij%4$s" #: profile-builder-2.0/front-end/login.php:144 msgid "Invalid username." msgstr "Neveljavno uporabniško ime." #: profile-builder-2.0/front-end/login.php:149 #: profile-builder-2.0/front-end/login.php:153 msgid "username" msgstr "uporabniško ime" #: profile-builder-2.0/front-end/login.php:149 msgid "email" msgstr "e-naslov" #: profile-builder-2.0/front-end/login.php:256 msgid "Lost your password?" msgstr "Izgubljeno geslo?" #: profile-builder-2.0/index.php:34 msgid " is also activated. You need to deactivate it before activating this version of the plugin." msgstr "je tudi aktiviran. Za aktivacijo te različice vtičnika morate najprej deaktivirati trenutnega." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54 msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email" msgstr "Mora biti veljaven e-naslov ali oznaka {{reply_to}}, ki ima privzeto vrednost e-naslova skrbnika strani" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508 msgid "Your selected password at signup" msgstr "Vaše izbrano geslo pri registraciji" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save." msgstr "Te nastavitve bodo podvojene tudi na \"Oblikovalec Skrbniškega E-naslova\" strani z nastavitvami ob shranitvi." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "Ta obrazec je prazen." #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "Izbris vseh elementov" #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all" msgstr "Izbriši vse" #: profile-builder-2.0/modules/user-listing/userlisting.php:1621 msgid "Choose..." msgstr "Izberi..." #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Set the number of users to be displayed on every paginated part of the all-userlisting" msgstr "Nastavi število uporabnikov, ki se jih prikaže na vsaki oštevilčeni strani seznama uporabnikov" #: profile-builder-2.0/admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "Prikaži/skrij Admin Bar na sprednji strani (Front-End)" #: profile-builder-2.0/admin/admin-bar.php:10 #: profile-builder-2.0/admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "Admin Bar nastavitve" #: profile-builder-2.0/admin/admin-bar.php:57 msgid "User-Role" msgstr "Vloga uporabnika" #: profile-builder-2.0/admin/admin-bar.php:58 msgid "Visibility" msgstr "Vidnost" #: profile-builder-2.0/admin/admin-bar.php:73 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "Privzeto" #: profile-builder-2.0/admin/admin-bar.php:74 msgid "Show" msgstr "Prikaži" #: profile-builder-2.0/admin/admin-bar.php:75 #: profile-builder-2.0/modules/user-listing/userlisting.php:1554 msgid "Hide" msgstr "Skrij" #: pb-add-on-woocommerce/woosync-page.php:147 #: profile-builder-2.0/admin/admin-bar.php:86 #: profile-builder-2.0/admin/general-settings.php:224 #: profile-builder-2.0/admin/register-version.php:95 #: profile-builder-2.0/features/functions.php:697 #: profile-builder-2.0/modules/modules.php:127 msgid "Save Changes" msgstr "Shrani spremembe" #: profile-builder-2.0/admin/admin-functions.php:37 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 )" msgstr "Prijava je nastavljena na uporabo z e-naslovom. To polje se NE bo prikazalo na sprednji strani (Front-End)! ( te nastavitve lahko spremenite pod zavihkom \"%s\" )" #: profile-builder-2.0/admin/admin-functions.php:37 #: profile-builder-2.0/admin/general-settings.php:10 #: profile-builder-2.0/admin/general-settings.php:35 msgid "General Settings" msgstr "Splošne nastavitve" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:210 msgid "Very weak" msgstr "Zelo slabo" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:211 #: profile-builder-2.0/features/functions.php:552 msgid "Weak" msgstr "Slabo" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:212 #: profile-builder-2.0/features/functions.php:552 msgid "Medium" msgstr "Srednje" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:213 #: profile-builder-2.0/features/functions.php:552 msgid "Strong" msgstr "Močno" #: profile-builder-2.0/admin/admin-functions.php:187 msgid "Add Field" msgstr "Dodaj polje" #: profile-builder-2.0/admin/admin-functions.php:189 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390 msgid "Save Settings" msgstr "Shrani nastavitve" #: profile-builder-2.0/admin/basic-info.php:10 msgid "Basic Information" msgstr "Osnovne informacije" #: profile-builder-2.0/admin/basic-info.php:29 msgid "Version %s" msgstr "Različica %s" #: profile-builder-2.0/admin/basic-info.php:30 msgid "Profile Builder " msgstr "Profile Builder " #: profile-builder-2.0/admin/basic-info.php:31 msgid "The best way to add front-end registration, edit profile and login forms." msgstr "Najboljši način za registracijo na sprednji strani (Front-End), urejanje profila in obrazce za prijavo." #: profile-builder-2.0/admin/basic-info.php:33 msgid "For Modern User Interaction" msgstr "Interakcija za moderne uporabnike" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25 #: profile-builder-2.0/admin/basic-info.php:36 #: profile-builder-2.0/features/login-widget/login-widget.php:59 msgid "Login" msgstr "Prijava" #: profile-builder-2.0/admin/basic-info.php:40 msgid "Registration" msgstr "Registracija" #: profile-builder-2.0/admin/basic-info.php:44 msgid "Edit Profile" msgstr "Uredi profil" #: profile-builder-2.0/admin/basic-info.php:51 msgid "Extra Features" msgstr "Dodatne funkcije" #: profile-builder-2.0/admin/basic-info.php:52 msgid "Features that give you more control over your users, increased security and help you fight user registration spam." msgstr "Funkcije, ki vam dajo več nadzora nad vašimi uporabniki, povečano varnost in pomagajo pri borbi proti nezaželenim prijavam." #: profile-builder-2.0/admin/basic-info.php:53 msgid "Enable extra features" msgstr "Omogoči dodatne funkcije" #: profile-builder-2.0/admin/basic-info.php:57 msgid "Recover Password" msgstr "Obnovitev gesla" #: profile-builder-2.0/admin/basic-info.php:61 msgid "Admin Approval (*)" msgstr "Odobritev skrbnikov strani (*)" #: profile-builder-2.0/admin/basic-info.php:62 msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI." msgstr "Vi določite kdo bo postal uporabnik vaše strani. Prejmite obvestilo preko e-pošte ali odobrite več uporabnikov iz WordPress-a." #: profile-builder-2.0/admin/basic-info.php:65 msgid "Email Confirmation" msgstr "Potrditev e-naslova" #: profile-builder-2.0/admin/basic-info.php:66 msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address." msgstr "Poskrbite, da se vaši uporabniki prijavljajo s pristnimi e-naslovi. Pri registraciji prejmejo uporabniki na e-naslov obvestilo, v katerem morajo potrditi svoj e-naslov." #: profile-builder-2.0/admin/basic-info.php:69 msgid "Minimum Password Length and Strength Meter" msgstr "Najmanjša dolžina gesla ter prikaz težavnosti gesla" #: profile-builder-2.0/admin/basic-info.php:70 msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength." msgstr "V celoti onemogočite slaba gesla z nastavitvijo najmanjše dolžine gesla in z zahtevo močnih gesel." #: profile-builder-2.0/admin/basic-info.php:73 msgid "Login with Email or Username" msgstr "Prijava z e-naslovom ali uporabniškim imenom" #: profile-builder-2.0/admin/basic-info.php:74 msgid "Allow users to log in with their email or username when accessing your site." msgstr "Dovolite uporabnikom, da se prijavijo z njihovim e-naslovom ali uporabniškim imenom pri prijavi na vašo stran." #: profile-builder-2.0/admin/basic-info.php:87 msgid "Customize Your Forms The Way You Want (*)" msgstr "Prilagodite vaše obrazce po svojih željah (*)" #: profile-builder-2.0/admin/basic-info.php:88 msgid "With Extra Profile Fields you can create the exact registration form your project needs." msgstr "Z dodatnimi profilnimi polji lahko ustvarite registracijski obrazec po vaši meri." #: profile-builder-2.0/admin/basic-info.php:90 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "Dodatna profilna polja so na voljo v različicah Hobbyist ali PRO" #: profile-builder-2.0/admin/basic-info.php:92 msgid "Get started with extra fields" msgstr "Začnite z uporabo dodatnih polj" #: profile-builder-2.0/admin/basic-info.php:95 msgid "Avatar Upload" msgstr "Nastavitev prikazne slike" #: profile-builder-2.0/admin/basic-info.php:96 msgid "Generic Uploads" msgstr "Splošni upload-i" #: profile-builder-2.0/admin/basic-info.php:97 msgid "Agree To Terms Checkbox" msgstr "Strinjam se s pogoji uporabe Checkbox" #: profile-builder-2.0/admin/basic-info.php:98 msgid "Datepicker" msgstr "Izbira datuma z vmesnikom" #: profile-builder-2.0/admin/basic-info.php:101 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: profile-builder-2.0/admin/basic-info.php:102 msgid "Country Select" msgstr "Izbira države" #: profile-builder-2.0/admin/basic-info.php:104 msgid "Timezone Select" msgstr "Izbira časovnega pasa" #: profile-builder-2.0/admin/basic-info.php:108 msgid "Input / Hidden Input" msgstr "Vnosno polje / skrito vnosno polje" #: profile-builder-2.0/admin/basic-info.php:110 msgid "Checkbox" msgstr "Checkbox" #: profile-builder-2.0/admin/basic-info.php:111 msgid "Select" msgstr "Select" #: profile-builder-2.0/admin/basic-info.php:112 msgid "Radio Buttons" msgstr "Izbirni gumbi (radio buttons)" #: profile-builder-2.0/admin/basic-info.php:113 msgid "Textarea" msgstr "Textarea" #: profile-builder-2.0/admin/basic-info.php:125 msgid "Powerful Modules (**)" msgstr "Zmogljivi moduli (**)" #: profile-builder-2.0/admin/basic-info.php:126 msgid "Everything you will need to manage your users is probably already available using the Pro Modules." msgstr "Vse kar boste kadarkoli potrebovali za upravljanje z vašimi uporabniki je verjetno že na voljo v naboru Pro modulov." #: profile-builder-2.0/admin/basic-info.php:128 msgid "Enable your modules" msgstr "Omogočite vaše module" #: profile-builder-2.0/admin/basic-info.php:131 msgid "Find out more about PRO Modules" msgstr "Izvedite več o PRO modulih" #: profile-builder-2.0/admin/basic-info.php:136 #: profile-builder-2.0/modules/modules.php:89 #: profile-builder-2.0/modules/user-listing/userlisting.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:12 #: profile-builder-2.0/modules/user-listing/userlisting.php:17 #: profile-builder-2.0/modules/user-listing/userlisting.php:23 msgid "User Listing" msgstr "Seznam uporabnikov" #: profile-builder-2.0/admin/basic-info.php:138 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." msgstr "Predloge z enostavnim urejanjem za ustvarjanje seznamov uporabnikov kot tudi za ustvarjanje strani za posamezne uporabnike. Temelječa na kratki kodi (shortcode), ta opcija ponuja veliko možnosti za upravljanje z vašimi seznami." #: profile-builder-2.0/admin/basic-info.php:144 msgid "Email Customizer" msgstr "Spremenite e-poštna sporočila" #: profile-builder-2.0/admin/basic-info.php:145 msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval." msgstr "Naredite vso e-pošto, ki je poslana vašim uporabnikom ter skrbnikom strani, bolj osebno. Registracija, potrditvena e-pošta, odobritev / zavrnitev skrbnika strani." #: profile-builder-2.0/admin/basic-info.php:148 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33 #: profile-builder-2.0/modules/modules.php:110 msgid "Custom Redirects" msgstr "Preusmeritve po meri" #: profile-builder-2.0/admin/basic-info.php:149 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." msgstr "Ne dovolite, da vaši uporabniki vidijo WordPress nadzorno ploščo, preusmerite jih na sprednjo stran (Front-End) po prijavi ali registraciji - vse samo nekaj klikov stran." #: profile-builder-2.0/admin/basic-info.php:154 #: profile-builder-2.0/modules/modules.php:75 msgid "Multiple Registration Forms" msgstr "Več registracijskih obrazcev" #: profile-builder-2.0/admin/basic-info.php:155 msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users." msgstr "Postavite več registracijskih obrazcev z različnimi polji za določene vloge uporabnikov. Zajemite več različnih informacij od različnih tipov uporabnikov." #: profile-builder-2.0/admin/basic-info.php:158 #: profile-builder-2.0/modules/modules.php:82 msgid "Multiple Edit-profile Forms" msgstr "Več obrazcev za urejanje profila" #: profile-builder-2.0/admin/basic-info.php:159 msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles." msgstr "Dovolite različnim vlogam uporabnikov urejanje njihovih specifičnih informacij. Postavite več obrazcev za urejanje profila z različnimi polji za različne tipe uporabnikov." #: profile-builder-2.0/admin/basic-info.php:187 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr "* na voljo samo v %1$sHobbyist in Pro različicah%2$s." #: profile-builder-2.0/admin/basic-info.php:188 msgid "** only available in the %1$sPro version%2$s." msgstr "** na voljo samo v %1$sPro različici%2$s." #: profile-builder-2.0/admin/general-settings.php:39 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "Naložite lastno Profile Builder CSS datoteko na sprednji strani (Front-End):" #: profile-builder-2.0/admin/general-settings.php:42 #: profile-builder-2.0/admin/general-settings.php:55 #: profile-builder-2.0/admin/general-settings.php:104 #: profile-builder-2.0/admin/general-settings.php:151 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Yes" msgstr "Da" #: profile-builder-2.0/admin/general-settings.php:44 msgid "You can find the default file here: %1$s" msgstr "Originalno datoteko lahko najdete tu: %1$s" #: profile-builder-2.0/admin/general-settings.php:51 msgid "\"Email Confirmation\" Activated:" msgstr "\"Potrditvena e-pošta\" aktivirana:" #: profile-builder-2.0/admin/general-settings.php:56 #: profile-builder-2.0/admin/general-settings.php:105 #: profile-builder-2.0/admin/general-settings.php:150 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "No" msgstr "Ne" #: profile-builder-2.0/admin/general-settings.php:61 msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s." msgstr "Seznam nepotrjenih e-naslovov lahko najdete na %1$sUporabniki > Vsi uporabniki > Potrditvena e-pošta%2$s." #: profile-builder-2.0/admin/general-settings.php:69 msgid "\"Email Confirmation\" Landing Page:" msgstr "Ciljna stran za \"Potrditveno e-pošto\"" #: profile-builder-2.0/admin/general-settings.php:74 msgid "Existing Pages" msgstr "Obstoječe strani" #: profile-builder-2.0/admin/general-settings.php:89 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." msgstr "Določite stran, kamor bodo uporabniki preusmerjeni po potrditvi svojega e-naslova. Ta stran se lahko razlikuje od strani za registracijo in je lahko spremenjena kadarkoli. Če ni izbrana nobena stran, se bo uporabniku prikazala preprosta potrditvena stran." #: profile-builder-2.0/admin/general-settings.php:100 msgid "\"Admin Approval\" Activated:" msgstr "\"Odobritev s strani skrbnikov\" je bila aktivirana:" #: profile-builder-2.0/admin/general-settings.php:108 msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "Seznam e-naslovov uporabnikov lahko najdete na %1$sUporabniki > Vsi uporabniki > Potrditve skrbnikov strani%2$s." #: profile-builder-2.0/admin/general-settings.php:165 msgid "\"Admin Approval\" Feature:" msgstr "\"Odobritev s strani skrbnikov\" možnost:" #: profile-builder-2.0/admin/general-settings.php:168 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." msgstr "Vi določite kdo bo uporabnik na vaši strani. Prejmite obvestilo po e-pošti ali odobrite več uporabnikov hkrati preko WordPress UI. Omogočite Odobritev skrbnikov Strani z nadgradnjo na %1$sHobbyist ali PRO različico%2$s." #: profile-builder-2.0/admin/general-settings.php:175 msgid "Allow Users to Log in With:" msgstr "Dovolite uporabnikom, da se prijavijo z:" #: profile-builder-2.0/admin/general-settings.php:180 #: profile-builder-2.0/admin/manage-fields.php:201 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167 #: profile-builder-2.0/front-end/login.php:85 #: profile-builder-2.0/front-end/login.php:99 #: profile-builder-2.0/front-end/login.php:218 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28 #: profile-builder-2.0/modules/user-listing/userlisting.php:102 #: profile-builder-2.0/modules/user-listing/userlisting.php:277 #: profile-builder-2.0/modules/user-listing/userlisting.php:730 #: profile-builder-2.0/modules/user-listing/userlisting.php:2219 msgid "Username" msgstr "Uporabniško ime" #: profile-builder-2.0/admin/general-settings.php:181 #: profile-builder-2.0/front-end/login.php:215 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29 #: profile-builder-2.0/modules/user-listing/userlisting.php:736 #: profile-builder-2.0/modules/user-listing/userlisting.php:2220 msgid "Email" msgstr "E-naslov" #: profile-builder-2.0/admin/general-settings.php:193 msgid "Minimum Password Length:" msgstr "Najmanjša dolžina gesla:" #: profile-builder-2.0/admin/general-settings.php:198 msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit" msgstr "Vnesite minimalno št., ki jih mora imeti geslo. Pustite prazno za brez omejitve" #: profile-builder-2.0/admin/general-settings.php:205 msgid "Minimum Password Strength:" msgstr "Najmanjša težavnost gesla:" #: profile-builder-2.0/admin/general-settings.php:209 msgid "Disabled" msgstr "Onemogočeno" #: profile-builder-2.0/admin/manage-fields.php:12 msgid "Manage Fields" msgstr "Upravljajte s polji" #: profile-builder-2.0/admin/manage-fields.php:13 msgid "Manage Default and Extra Fields" msgstr "Upravljajte s privzetimi in dodatnimi polji" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Field Title" msgstr "Naslov polja" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Title of the field" msgstr "Naslov polja" #: profile-builder-2.0/admin/manage-fields.php:119 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "Polje" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Meta-name" msgstr "Meta-ime" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "ID" msgstr "ID" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be edited" msgstr "Edinstven, samodejno ustvarjen ID za to določeno polje
            Če je potrebno lahko uporabite to v povezavi s filtri za ciljanje tega elementa
            Ni mogoče urejati" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Description" msgstr "Opis" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Enter a (detailed) description of the option for end users to read
            Optional" msgstr "Vnesite (podroben) opis možnosti za končnega uporabnika
            Izbirno" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Row Count" msgstr "Število vrstic" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5" msgstr "Določite število vrstic za polje 'Textarea'
            Če ni določeno, je privzeta vrednost 5" #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Allowed Image Extensions" msgstr "Dovoljene končnice datotek za slike" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Allowed Upload Extensions" msgstr "Dovoljene končnice datotek za nalaganje" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Avatar Size" msgstr "Velikost prikazne slike" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100" msgstr "Vnesite vrednost (med 20 in 200) za velikost prikazne slike
            Če ni določena vrednost, je privzeta vrednost 100" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Date-format" msgstr "Format datuma" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Terms of Agreement" msgstr "Splošni pogoji" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Enter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>" msgstr "Vnesite podroben opis pogojev uporabe za uporabnike.
            Povezave so lahko vnešene s strandardno HTML sintakso: <a href=\"custom_url\">custom_text</a>" #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Options" msgstr "Možnosti" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Labels" msgstr "Oznake" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "Vnesite seznam vrednosti ločenih z vejico
            Vidno končnemu uporabniku" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default Value" msgstr "Privzeta vrednost" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default value of the field" msgstr "Privzeta vrednost polja" #: profile-builder-2.0/admin/manage-fields.php:138 #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default Option" msgstr "Privzeta možnost" #: profile-builder-2.0/admin/manage-fields.php:138 msgid "Specify the option which should be selected by default" msgstr "Določite možnost, ki naj bo izbrana kot privzeta" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Default Option(s)" msgstr "Privzeta(e) možnost(i)" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)" msgstr "Določite katere možnosti naj bodo privzeto označene
            Če mislite napisate več možnosti, jih ločite z ',' (vejica)" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default Content" msgstr "Privzeta vsebina" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default value of the textarea" msgstr "Privzeta vrednost besedilnega polja" #: pb-add-on-woocommerce/index.php:306 #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Required" msgstr "Zahtevano" #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Whether the field is required or not" msgstr "Ali je polje zahtevano ali ne" #: profile-builder-2.0/admin/manage-fields.php:161 msgid "Overwrite Existing" msgstr "Prepiši obstoječe" #: profile-builder-2.0/admin/manage-fields.php:161 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
            Use this at your own risk" msgstr "Izbira 'Da' bo dodala polje na seznam, ampak če v bazi obstaja še eno polje z istim meta-imenom bo polje v bazi prepisano.
            Uporabite na lastno odgovornost" #: profile-builder-2.0/admin/manage-fields.php:167 msgid "Field Properties" msgstr "Lastnosti polja" #: profile-builder-2.0/admin/manage-fields.php:181 msgid "Registration & Edit Profile" msgstr "Registracija & urejanje profila" #: profile-builder-2.0/admin/manage-fields.php:200 msgid "Name" msgstr "Ime" #: profile-builder-2.0/admin/manage-fields.php:201 msgid "Usernames cannot be changed." msgstr "Uporabniškega imena se ne da spremeniti." #: pb-add-on-woocommerce/billing-fields.php:6 #: pb-add-on-woocommerce/shipping-fields.php:6 #: profile-builder-2.0/admin/manage-fields.php:202 msgid "First Name" msgstr "Ime" #: pb-add-on-woocommerce/billing-fields.php:7 #: pb-add-on-woocommerce/shipping-fields.php:7 #: profile-builder-2.0/admin/manage-fields.php:203 msgid "Last Name" msgstr "Priimek" #: profile-builder-2.0/admin/manage-fields.php:204 #: profile-builder-2.0/modules/user-listing/userlisting.php:769 #: profile-builder-2.0/modules/user-listing/userlisting.php:2227 msgid "Nickname" msgstr "Vzdevek" #: profile-builder-2.0/admin/manage-fields.php:205 msgid "Display name publicly as" msgstr "Prikaži ime javno kot" #: profile-builder-2.0/admin/manage-fields.php:206 msgid "Contact Info" msgstr "Kontaktni podatki" #: profile-builder-2.0/admin/manage-fields.php:207 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168 #: profile-builder-2.0/front-end/recover.php:118 #: profile-builder-2.0/modules/user-listing/userlisting.php:108 msgid "E-mail" msgstr "E-naslov" #: profile-builder-2.0/admin/manage-fields.php:208 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32 #: profile-builder-2.0/modules/user-listing/userlisting.php:111 #: profile-builder-2.0/modules/user-listing/userlisting.php:751 #: profile-builder-2.0/modules/user-listing/userlisting.php:2221 msgid "Website" msgstr "Spletna stran" #: profile-builder-2.0/admin/manage-fields.php:212 msgid "AIM" msgstr "AIM" #: profile-builder-2.0/admin/manage-fields.php:213 msgid "Yahoo IM" msgstr "Yahoo IM" #: profile-builder-2.0/admin/manage-fields.php:214 msgid "Jabber / Google Talk" msgstr "Jabber / Google Talk" #: profile-builder-2.0/admin/manage-fields.php:217 msgid "About Yourself" msgstr "O vas" #: profile-builder-2.0/admin/manage-fields.php:218 #: profile-builder-2.0/modules/user-listing/userlisting.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:754 #: profile-builder-2.0/modules/user-listing/userlisting.php:2222 msgid "Biographical Info" msgstr "Biografija" #: profile-builder-2.0/admin/manage-fields.php:218 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "Delite malo svoje biografije, da zapolnite profil. Ta del bo lahko javno dostopen." #: profile-builder-2.0/admin/manage-fields.php:219 #: profile-builder-2.0/front-end/recover.php:73 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "Geslo" #: profile-builder-2.0/admin/manage-fields.php:219 msgid "Type your password." msgstr "Vpišite geslo." #: profile-builder-2.0/admin/manage-fields.php:220 #: profile-builder-2.0/front-end/recover.php:74 msgid "Repeat Password" msgstr "Ponovite geslo" #: profile-builder-2.0/admin/manage-fields.php:220 msgid "Type your password again. " msgstr "Ponovno vpišite geslo." #: profile-builder-2.0/admin/manage-fields.php:980 #: profile-builder-2.0/admin/manage-fields.php:1137 msgid "You must select a field\n" msgstr "Izbrati morate polje\n" #: profile-builder-2.0/admin/manage-fields.php:990 msgid "Please choose a different field type as this one already exists in your form (must be unique)\n" msgstr "Prosimo izberite drugačen tip polja, ker to polje že obstaja v vašem obrazcu (mora biti unikatno)\n" #: profile-builder-2.0/admin/manage-fields.php:1001 msgid "The entered avatar size is not between 20 and 200\n" msgstr "Vnešena velikost prikazne slike ni med 20 in 200\n" #: profile-builder-2.0/admin/manage-fields.php:1004 msgid "The entered avatar size is not numerical\n" msgstr "Vnešena vrednost velikosti prikazne slike ni numerična\n" #: profile-builder-2.0/admin/manage-fields.php:1012 msgid "The entered row number is not numerical\n" msgstr "Vnešena vrednost za vrstico ni numerična\n" #: profile-builder-2.0/admin/manage-fields.php:1015 msgid "You must enter a value for the row number\n" msgstr "Vnesti morate vrednost za številko vrstice\n" #: profile-builder-2.0/admin/manage-fields.php:1036 msgid "The entered value for the Datepicker is not a valid date-format\n" msgstr "Vnešena vrednost za datumski vmesnik ni v veljavnem formatu datuma\n" #: profile-builder-2.0/admin/manage-fields.php:1039 msgid "You must enter a value for the date-format\n" msgstr "Vnesti morate vrednost za format datuma\n" #: profile-builder-2.0/admin/manage-fields.php:1067 #: profile-builder-2.0/admin/manage-fields.php:1075 #: profile-builder-2.0/admin/manage-fields.php:1086 msgid "That meta-name is already in use\n" msgstr "To meta-ime je že v uporabi\n" #: profile-builder-2.0/admin/manage-fields.php:1117 msgid "The following option(s) did not coincide with the ones in the options list: %s\n" msgstr "Sledeče možnosti niso sovpadale s tistimi iz seznama možnosti: %s\n" #: profile-builder-2.0/admin/manage-fields.php:1121 msgid "The following option did not coincide with the ones in the options list: %s\n" msgstr "Sledeča možnost ni sovpadale s tistimi iz seznama možnosti: %s\n" #: profile-builder-2.0/admin/manage-fields.php:1144 msgid "That field is already added in this form\n" msgstr "To polje je že v tem obrazcu\n" #: profile-builder-2.0/admin/manage-fields.php:1193 msgid "
            Title
            Type
            Meta Name
            Required
            " msgstr "
            Naslov
            Tip
            Meta Ime
            Zahtevano
            " #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108 #: profile-builder-2.0/features/functions.php:718 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Edit" msgstr "Uredi" #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217 #: profile-builder-2.0/features/functions.php:711 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "Delete" msgstr "Izbriši" #: profile-builder-2.0/admin/manage-fields.php:1208 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "Uporabite te kratke kode (shortcode) na straneh, kjer hočete, da se prikažejo obrazci:" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Your Version" msgstr "Registrirajte vašo različico" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Version" msgstr "Registrirajte različico" #: profile-builder-2.0/admin/register-version.php:70 msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support." msgstr "Če registrirate to različico Profile Builder, boste deležni informacij o posodobitvah, popravkih in tehnične podpore." #: profile-builder-2.0/admin/register-version.php:72 msgid " Serial Number:" msgstr "Serijska številka:" #: profile-builder-2.0/admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "Serijska številka je bila uspešno validirana!" #: profile-builder-2.0/admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "Vnešena serijska številka ni bila validirana!" #: profile-builder-2.0/admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "Serisjke številke ni bilo možno validirati, ker je potekla!" #: profile-builder-2.0/admin/register-version.php:85 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!" msgstr "Serijske številke ni bilo možno validirati, ker je proces naletel na časovno omejitev. To se lahko zgodi zaradi napake v strežniku. Prosimo poizkusite ponovno kasneje!" #: profile-builder-2.0/admin/register-version.php:87 msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/features/functions.php:725 msgid "Content" msgstr "Vsebina" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 msgid "Edit this item" msgstr "Uredi ta element" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 msgid "Delete this item" msgstr "Izbriši ta element" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705 msgid "Please enter a value for the required field " msgstr "Prosimo vnesite vrednost za zahtevano polje" #: pb-add-on-woocommerce/woo-checkout-field-support.php:262 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122 msgid "Select File" msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:252 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112 msgid "Remove" msgstr "Odstrani" #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8 msgid "You can add the information for the %s after you add a entry" msgstr "Informacije za %s lahko dodate šele ko dodate vnos" #: pb-add-on-woocommerce/woo-checkout-field-support.php:268 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128 msgid "Upload " msgstr "Naloži" #: profile-builder-2.0/features/class-list-table.php:184 msgid "No items found." msgstr "Ni najdenih elementov." #: profile-builder-2.0/features/class-list-table.php:308 msgid "Bulk Actions" msgstr "Več dejanj hkrati" #: profile-builder-2.0/features/class-list-table.php:318 msgid "Apply" msgstr "Uporabite" #: profile-builder-2.0/features/class-list-table.php:402 msgid "Show all dates" msgstr "Prikaži vse datume" #: profile-builder-2.0/features/class-list-table.php:415 msgid "%1$s %2$d" msgstr "%1$s %2$d" #: profile-builder-2.0/features/class-list-table.php:431 msgid "List View" msgstr "Pogled seznama" #: profile-builder-2.0/features/class-list-table.php:432 msgid "Excerpt View" msgstr "Pogled izvlečka" #: profile-builder-2.0/features/class-list-table.php:458 msgid "%s pending" msgstr "%s v čakanju" #: profile-builder-2.0/features/class-list-table.php:566 msgid "%1$s of %2$s" msgstr "%1$s od %2$s" #: profile-builder-2.0/features/class-list-table.php:713 msgid "Select All" msgstr "Izberi vse" #: profile-builder-2.0/features/functions.php:526 msgid "Strength indicator" msgstr "Indikator moči gesla" #: profile-builder-2.0/features/admin-approval/admin-approval.php:14 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453 msgid "Admin Approval" msgstr "Odobritev skrbnika strani" #: profile-builder-2.0/features/admin-approval/admin-approval.php:28 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "Ali hočete" #: profile-builder-2.0/features/admin-approval/admin-approval.php:51 msgid "Your session has expired! Please refresh the page and try again" msgstr "Vaša seja je potekla! Prosimo ponovno naložite stran in poizkusite ponovno" #: profile-builder-2.0/features/admin-approval/admin-approval.php:64 msgid "User successfully approved!" msgstr "Uporabnik uspešno odobren!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:74 msgid "User successfully unapproved!" msgstr "Uporabnik uspešno neodobren!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:80 msgid "User successfully deleted!" msgstr "Uporabnik uspešno izbrisan!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:85 #: profile-builder-2.0/features/admin-approval/admin-approval.php:131 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "Nimate zadosti pravic za dokončanje tega dejanja ali pa je prišlo do napake!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:96 msgid "Your session has expired! Please refresh the page and try again." msgstr "Vaša seja je potekla! Prosimo ponovno naložite stran in poizkusite ponovno" #: profile-builder-2.0/features/admin-approval/admin-approval.php:109 msgid "Users successfully approved!" msgstr "Uporabniki uspešno odobreni!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:119 msgid "Users successfully unapproved!" msgstr "Uporabniki uspešno neodobreni!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:127 msgid "Users successfully deleted!" msgstr "Uporabniki uspešno izbrisani!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:147 msgid "Your account on %1$s has been approved!" msgstr "Vaš račun na %1$s je bil odobren!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:148 #: profile-builder-2.0/features/admin-approval/admin-approval.php:151 msgid "approved" msgstr "odobren" #: profile-builder-2.0/features/admin-approval/admin-approval.php:150 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "Skrbnik strani je pravkar odobril vaš račun na %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:155 msgid "Your account on %1$s has been unapproved!" msgstr "Vaš račun na %1$s ni bil odobren!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:156 #: profile-builder-2.0/features/admin-approval/admin-approval.php:159 msgid "unapproved" msgstr "neodobren" #: profile-builder-2.0/features/admin-approval/admin-approval.php:158 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "Skrbnik strani ni odobril vašega računa na %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:177 msgid "ERROR: Your account has to be confirmed by an administrator before you can log in." msgstr "NAPAKA: Vaš račun mora biti odobren s strani skrbnika strani preden se lahko prijavite." #: profile-builder-2.0/features/admin-approval/admin-approval.php:189 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature." msgstr "Vaš uporabniški račun mora biti odobren s strani skrbnika strani preden lahko uporabite funkcijo \"Obnovitev gesla\"." #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "izbriši tega uporabnika?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "neodobri tega uporabnika?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr "Neodobri" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "odobri tega uporabnika?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "Odobri" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167 #: profile-builder-2.0/modules/user-listing/userlisting.php:278 #: profile-builder-2.0/modules/user-listing/userlisting.php:742 #: profile-builder-2.0/modules/user-listing/userlisting.php:2224 msgid "Firstname" msgstr "Ime" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168 #: profile-builder-2.0/modules/user-listing/userlisting.php:745 #: profile-builder-2.0/modules/user-listing/userlisting.php:2225 msgid "Lastname" msgstr "Priimek" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170 #: profile-builder-2.0/modules/user-listing/userlisting.php:149 #: profile-builder-2.0/modules/user-listing/userlisting.php:279 #: profile-builder-2.0/modules/user-listing/userlisting.php:772 #: profile-builder-2.0/modules/user-listing/userlisting.php:2229 msgid "Role" msgstr "Vloga" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169 msgid "Registered" msgstr "Registriran" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "Status uporabnika" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "Ali hočete odobriti vse izbrane uporabnike?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "Ali hočete neodobriti vse izbrane uporabnike?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "Ali hočete izbrisati vse izbrane uporabnike?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278 msgid "Sorry, but you don't have permission to do that!" msgstr "Oprostite, ampak nimate pravic za dokočnanje tega dejanja!" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339 msgid "Approved" msgstr "Odobren" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341 msgid "Unapproved" msgstr "Neodobren" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454 msgid "All Users" msgstr "Vsi uporabniki" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 msgid "delete this user from the _signups table?" msgstr "izbriši tega uporabnika iz _signups tabele?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 msgid "confirm this email yourself?" msgstr "želite potrditi ta e-naslov?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218 msgid "Confirm Email" msgstr "Potrdite e-naslov" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 msgid "resend the activation link?" msgstr "ponovno pošljem aktivacijsko povezavo?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219 msgid "Resend Activation Email" msgstr "Ponovno pošlji aktivacijsko e-pošto" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249 msgid "%s couldn't be deleted" msgstr "%s ni bilo mogoče izbrisati" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253 msgid "All users have been successfully deleted" msgstr "Vsi uporabniki so bili uspešno izbrisani" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263 msgid "The selected users have been activated" msgstr "Izbrani uporabniki so bili aktivirani" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274 msgid "The selected users have had their activation emails resent" msgstr "Izbranim uporabnikom so bile ponovno poslane potrditvene e-pošte" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "Uporabniki z nepotrjenimi e-naslovi" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "Prišlo je do napake pri zadnjem dejanju!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "Izbranega uporabnika ni bilo moč zbrisati" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "Obvestilo preko e-pošte je bilo preposlano uporabniku" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398 msgid "[%1$s] Activate %2$s" msgstr "[%1$s] Aktiviraj %2$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442 #: profile-builder-2.0/front-end/register.php:71 msgid "Could not create user!" msgstr "Ni bilo moč ustvariti novega uporabnika!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445 msgid "That username is already activated!" msgstr "To uporabniško ime je že aktivno!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468 msgid "There was an error while trying to activate the user" msgstr "Prišlo je do napake pri aktiviranju uporabnika" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73 msgid "A new subscriber has (been) registered!" msgstr "Nov naročnik se je registriral!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "Novi naročnik na %1$s.

            Uporabniško ime:%2$s
            E-naslov:%3$s
            " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634 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!" msgstr "\"Odobritev s strani skrbnikov\" možnost je bila aktivirana ob času registracije, tako da ne pozabite, da morate uporabnika odobriti preden se lahko prijavi!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570 msgid "[%1$s] Your new account information" msgstr "[%1$s] Vaše nove informacije v računu" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581 msgid "Welcome to %1$s!


            Your username is:%2$s and password:%3$s" msgstr "Dobrodošli na %1$s!


            Vaše uporabniško ime je:%2$s in geslo:%3$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642 #: profile-builder-2.0/front-end/register.php:125 msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email." msgstr "Preden lahko uporabljate svoj račun ga mora odobriti skrbnik strani. Obveščeni boste po e-pošti." #: profile-builder-2.0/features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "Ta prijavni gradnik vam omogoča dodajanje prijavnega obrazca v stransko vrstico." #: profile-builder-2.0/features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "Prijavni gradnik Profile Builder" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36 #: profile-builder-2.0/front-end/class-formbuilder.php:415 #: profile-builder-2.0/front-end/login.php:250 msgid "Register" msgstr "Registriraj se" #: profile-builder-2.0/features/login-widget/login-widget.php:63 msgid "Title:" msgstr "Naslov:" #: profile-builder-2.0/features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "Preusmeritvena povezava po prijavi (opcijsko):" #: profile-builder-2.0/features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "Registrirajte spletni naslov strani (izbirno):" #: profile-builder-2.0/features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "Spletni naslov strani za obnovitev gesla (izbirno):" #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91 #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "Uporabniškega imena se ne more spremeniti." #: profile-builder-2.0/front-end/class-formbuilder.php:136 msgid "Only an administrator can add new users." msgstr "Samo skrbnik strani lahko doda nove uporabnike." #: profile-builder-2.0/front-end/class-formbuilder.php:146 msgid "Users can register themselves or you can manually create users here." msgstr "Uporabniki se lahko registrirajo ali pa jih ročno ustvarite tu." #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "Users cannot currently register themselves, but you can manually create users here." msgstr "Uporabniki se trenutno ne morejo registrirati, lahko pa jih ročno dodate tu." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "Trenutno ste prijavljeni kot %1s. Ne potrebujete drugega uporabniškega računa. %2s" #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Log out of this account." msgstr "Odjavi se iz tega računa." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Logout" msgstr "Odjava" #: profile-builder-2.0/front-end/class-formbuilder.php:175 msgid "You must be logged in to edit your profile." msgstr "Za urejanje profila morate biti prijavljeni." #: profile-builder-2.0/features/functions.php:994 msgid "here" msgstr "tukaj" #: profile-builder-2.0/features/functions.php:995 msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s" msgstr "Kmalu boste samodejno preusmerjeni. Če ostanete na tej strani več kot %1$d sekund, prosimo kliknite %2$s.%3$s" #: profile-builder-2.0/front-end/class-formbuilder.php:315 #: profile-builder-2.0/front-end/class-formbuilder.php:322 msgid "The account %1s has been successfully created!" msgstr "Račun %1s je bil uspećno ustvarjen!" #: profile-builder-2.0/front-end/class-formbuilder.php:318 #: profile-builder-2.0/front-end/class-formbuilder.php:328 msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link." msgstr "Preden lahko uporabljate svoj račun %1s morate potrditi svoj e-poštni naslov. Prosimo preverite vašo mapo s prejeto e-pošto in kliknite na aktivacijsko povezavo." #: profile-builder-2.0/front-end/class-formbuilder.php:324 msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email." msgstr "Preden lahko uporabljate svoj račun %1s ga mora odobriti skrbnik strani. Obveščeni boste po e-pošti." #: profile-builder-2.0/front-end/class-formbuilder.php:347 msgid "Your profile has been successfully updated!" msgstr "Vaš profil je bil uspešno posodobljen!" #: profile-builder-2.0/front-end/class-formbuilder.php:358 msgid "There was an error in the submitted form" msgstr "Prišlo je do napake pri oddaji obrazca" #: profile-builder-2.0/front-end/class-formbuilder.php:415 msgid "Add User" msgstr "Dodaj uporabnika" #: profile-builder-2.0/admin/add-ons.php:170 #: profile-builder-2.0/front-end/class-formbuilder.php:418 msgid "Update" msgstr "Posodobi" #: profile-builder-2.0/front-end/class-formbuilder.php:481 msgid "Send these credentials via email." msgstr "Pošlji te vpisne podatke po e-pošti." #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92 #: profile-builder-2.0/front-end/login.php:137 #: profile-builder-2.0/front-end/login.php:144 #: profile-builder-2.0/front-end/login.php:158 #: profile-builder-2.0/front-end/recover.php:17 #: profile-builder-2.0/front-end/recover.php:245 msgid "ERROR" msgstr "NAPAKA" #: profile-builder-2.0/front-end/login.php:137 msgid "The password you entered is incorrect." msgstr "Vnešeno geslo je nepravilno." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Password Lost and Found." msgstr "Geslo izgubljeno in najdeno" #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Lost your password" msgstr "Izgubljeno geslo" #: profile-builder-2.0/front-end/login.php:158 msgid "Both fields are empty." msgstr "Obe polji sta prazni." #: profile-builder-2.0/front-end/login.php:296 msgid "You are currently logged in as %1$s. %2$s" msgstr "Trenutno ste prijavljeni kot %1$s. %2$s" #: profile-builder-2.0/front-end/login.php:295 #: profile-builder-2.0/front-end/logout.php:25 msgid "Log out of this account" msgstr "Izpis iz tega računa" #: profile-builder-2.0/front-end/login.php:295 msgid "Log out" msgstr "Izpis" #: profile-builder-2.0/front-end/recover.php:17 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature." msgstr "Vaš uporabniški račun mora biti odobren s strani skrbnika strani preden lahko uporabite funkcijo \"Ponastavitev gesla\"." #: profile-builder-2.0/front-end/recover.php:94 msgid "Reset Password" msgstr "Ponastavi geslo" #: profile-builder-2.0/front-end/recover.php:121 msgid "Please enter your username or email address." msgstr "Prosimo vpišite vaše uporabniško ime ali e-naslov" #: profile-builder-2.0/front-end/recover.php:125 msgid "You will receive a link to create a new password via email." msgstr "Prejeli boste povezavo, da ustvarite novo geslo preko e-naslova" #: profile-builder-2.0/front-end/recover.php:122 msgid "Username or E-mail" msgstr "Uporabniško ime ali e-naslov" #: profile-builder-2.0/front-end/recover.php:138 msgid "Get New Password" msgstr "Pridobite novo geslo" #: profile-builder-2.0/front-end/recover.php:185 msgid "The username entered wasn't found in the database!" msgstr "Vnešeno uporabniško ime ni bilo najdeno v bazi!" #: profile-builder-2.0/front-end/recover.php:185 msgid "Please check that you entered the correct username." msgstr "Prosimo preverite ali ste vnesli pravilno uporabniško ime." #: profile-builder-2.0/front-end/recover.php:200 msgid "Check your e-mail for the confirmation link." msgstr "Preverite vaš e-naslov za potrditveno povezavo." #: profile-builder-2.0/front-end/recover.php:235 msgid "Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s" msgstr "Nekdo je oddal prošnjo za ponastavitev gesla za sledeči uporabniški račun: %1$s
            Če je to bila pomota, ignorirajte to e-pošto in nič se ne bo zgodilo.
            Za ponastavitev gesla, obiščite sledečo povezavo:%2$s" #: profile-builder-2.0/front-end/recover.php:238 msgid "Password Reset from \"%1$s\"" msgstr "Ponastavitev gesla od \"%1$s\"" #: profile-builder-2.0/front-end/recover.php:245 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "Prišlo je do napake pri pošiljanju aktivacijske povezave na %1$s!" #: profile-builder-2.0/front-end/recover.php:207 msgid "The email address entered wasn't found in the database!" msgstr "Vnešeni e-naslov ni bil najden v bazi!" #: profile-builder-2.0/front-end/recover.php:207 msgid "Please check that you entered the correct email address." msgstr "Prosimo preverite, da ste vnesli pravilen e-naslov." #: profile-builder-2.0/front-end/recover.php:273 msgid "Your password has been successfully changed!" msgstr "Vaše geslo je bilo uspešno spremenjeno!" #: profile-builder-2.0/front-end/recover.php:292 msgid "You have successfully reset your password to: %1$s" msgstr "Uspešno ste spremenili geslo v: %1$s" #: profile-builder-2.0/front-end/recover.php:295 #: profile-builder-2.0/front-end/recover.php:306 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "Geslo je bilo uspešno ponastavljeno za %1$s na \"%2$s\"" #: profile-builder-2.0/front-end/recover.php:303 msgid "%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s" msgstr "%1$s je oddal prošnjo za spremembo gesla preko funkcije za ponastavitev gesla.
            Njegovo/Njeno novo geslo je:%2$s" #: profile-builder-2.0/front-end/recover.php:320 msgid "The entered passwords don't match!" msgstr "Vnešeni gesli se ne ujemata!" #: profile-builder-2.0/front-end/recover.php:375 msgid "ERROR:" msgstr "NAPAKA:" #: profile-builder-2.0/front-end/recover.php:375 msgid "Invalid key!" msgstr "Neveljaven ključ!" #: profile-builder-2.0/front-end/register.php:56 msgid "Invalid activation key!" msgstr "Neveljaven aktivacijski ključ!" #: profile-builder-2.0/front-end/register.php:60 msgid "This username is now active!" msgstr "To uporabniško ime je sedaj aktivno!" #: profile-builder-2.0/front-end/register.php:74 msgid "This username is already activated!" msgstr "To uporabniško ime je že aktivno!" #: profile-builder-2.0/front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "Vaš e-naslov je bil uspešno potrjen." #: profile-builder-2.0/front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "Prišlo je do napake pri aktivaciji uporabnika." #: pb-add-on-woocommerce/index.php:393 #: profile-builder-2.0/front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "E-naslov, ki ste ga vnesli, ni veljaven." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "Ta e-naslov je že rezerviran in bo kmalu uporabljen." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 #: profile-builder-2.0/front-end/default-fields/username/username.php:49 #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "Prosimo poskusite drugega!" #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "Ta e-naslov je že v uporabi." #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37 #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "Gesli se ne ujemata" #: profile-builder-2.0/front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "To uporabniško ime že obstaja." #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "To uporabniško ime je že rezervirano, da bo kmalu uporabljeno." #: profile-builder-2.0/modules/user-listing/userlisting.php:276 msgid "Avatar" msgstr "Prikazna slika" #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72 #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45 #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45 #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40 #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34 #: profile-builder-2.0/front-end/extra-fields/input/input.php:30 #: profile-builder-2.0/front-end/extra-fields/map/map.php:51 #: profile-builder-2.0/front-end/extra-fields/number/number.php:30 #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39 #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52 #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46 #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49 #: profile-builder-2.0/front-end/extra-fields/select/select.php:51 #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70 #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "zahtevano" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48 msgid "To use reCAPTCHA you must get an API key from" msgstr "Za uporabo reCAPTCHA morate priskrbeti API ključ" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "Zavoljo varnostnih razlogov, morate priskrbeti oddaljeni ip za reCAPTCHA!" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "Za uporabo reCAPTCHA morate pridobiti API javni ključ od:" #: profile-builder-2.0/modules/modules.php:11 #: profile-builder-2.0/modules/modules.php:58 msgid "Modules" msgstr "Moduli" #: profile-builder-2.0/modules/modules.php:59 msgid "Here you can activate / deactivate available modules for Profile Builder." msgstr "Tukaj lahko aktivirate / deaktivirate module, ki so na voljo za Profile Builder" #: profile-builder-2.0/modules/modules.php:69 msgid "Name/Description" msgstr "Ime/Opis" #: profile-builder-2.0/modules/modules.php:70 msgid "Status" msgstr "Status" #: profile-builder-2.0/modules/modules.php:77 #: profile-builder-2.0/modules/modules.php:84 #: profile-builder-2.0/modules/modules.php:91 #: profile-builder-2.0/modules/modules.php:98 #: profile-builder-2.0/modules/modules.php:105 #: profile-builder-2.0/modules/modules.php:112 #: profile-builder-2.0/modules/modules.php:119 msgid "Active" msgstr "Aktiven" #: profile-builder-2.0/modules/modules.php:78 #: profile-builder-2.0/modules/modules.php:85 #: profile-builder-2.0/modules/modules.php:92 #: profile-builder-2.0/modules/modules.php:99 #: profile-builder-2.0/modules/modules.php:106 #: profile-builder-2.0/modules/modules.php:113 #: profile-builder-2.0/modules/modules.php:120 msgid "Inactive" msgstr "Neaktiven" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:96 msgid "Admin Email Customizer" msgstr "Oblikovalec Skrbniškega E-naslova" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:103 msgid "User Email Customizer" msgstr " Oblikovalec Uporabniškega E-naslova" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253 msgid "Save" msgstr "Shrani" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "Preusmeritev" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "URL" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save." msgstr "Te nastavitve se shranijo tudi (kopirajo) v \"Oblikovalec Uporabniškega E-naslova\" stran z nastavitvami ob shranitvi." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41 msgid "From (name)" msgstr "Od (ime)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49 msgid "From (reply-to email)" msgstr "Od (odgovori-na e-naslov)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57 msgid "Common Settings" msgstr "Pogoste nastavitve" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" msgstr "" "\n" "

            Nov naročnik na {{site_name}}.

            \n" "

            Uporabniško ime:{{username}}

            \n" "

            E-naslov:{{user_email}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274 msgid "Email Subject" msgstr "Zadeva e-pošte" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84 msgid "Default Registration & Registration with Email Confirmation" msgstr "Privzeta registracija & registracija s potrditveno e-pošto" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log in!

            \n" msgstr "" "\n" "

            Nov naročnik na {{site_name}}.

            \n" "

            Uporabniško ime:{{username}}

            \n" "

            E-naslov:{{user_email}}

            \n" "

            Opcija za odobritev s strani skrbnika strani je bila aktivirana ob času registracije,\n" "zato ne pozabite, da morate uporabnika potrditi preden se lahko prijavi!

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143 msgid "Registration with Admin Approval" msgstr "Registracija z odobritvijo skrbnika strani" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "Oznake, ki so na voljo" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170 msgid "User Meta" msgstr "Meta uporabnika" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "Spletni naslov" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "Ime spletnega mesta" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25 #: profile-builder-2.0/modules/user-listing/userlisting.php:158 msgid "User Id" msgstr "Identifikacijska št. uporabnika" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33 msgid "Reply To" msgstr "Odgovori na" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40 msgid "Activation Key" msgstr "Aktivacijski ključ" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41 msgid "Activation Url" msgstr "Aktivacijski spletni naslov" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42 msgid "Activation Link" msgstr "Aktivacijska povezava" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" msgstr "" "\n" "

            Dobrodošli na {{site_name}}!

            \n" "

            Vaše uporabniško ime je:{{username}} in geslo:{{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85 msgid "Default Registration" msgstr "Privzeta registracija" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91 msgid "" "\n" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials.

            \n" msgstr "" "\n" "

            Za aktivacijo vašega uporabniškega računa, prosimo klknite sledečo povezavo:
            \n" "{{{activation_link}}}

            \n" "

            Po aktivaciji boste prejeli dodatno e-pošto s prijavnimi podatki.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103 msgid "[{{site_name}}] Activate {{username}}" msgstr "[{{site_name}}] Aktiviraj {{username}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114 msgid "Registration with Email Confirmation" msgstr "Registracija s potrditveno e-pošto" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n" msgstr "" "\n" "

            Dobrodošli na {{site_name}}!

            \n" "

            Vaše uporabniško ime je:{{username}} in geslo:{{password}}

            \n" "

            Preden lahko dostopate do svojega uporabniškega računa ga mora odobriti skrbnik strani. Obveščeni boste po e-pošti.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132 msgid "A new account has been created for you on {{site_name}}" msgstr "Na {{site_name}} je bil ustvarjen nov račun za vas" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148 msgid "" "\n" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Dobra novica!

            \n" "

            Skrbnik strani je pravkar odobril vaš račun: {{username}} na {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159 msgid "Your account on {{site_name}} has been approved!" msgstr "Vaš račun na {{site_name}} je bil odobren!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170 msgid "User Approval Notification" msgstr "Obvestilo o odobritvi uporabnika" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175 msgid "" "\n" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Pozdravljeni,

            \n" "

            Na žalost je skrbnik strani pravkar označil vaš uporabniški račun kot neodobrenega: {{username}} na strani {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187 msgid "Your account on {{site_name}} has been unapproved!" msgstr "Vaš račun na {{site_name}} ni bil odobren!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198 msgid "Unapproved User Notification" msgstr "Obvestilo o neodobritvi uporabnika" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "Obrazec za ureditev profila" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13 #: profile-builder-2.0/modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "Dodaj novo" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "Dodaj nov obrazec za ureditev profila" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "Uredi obrazec za ureditev profila" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "Nov obrazec za ureditev profila" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "Obrazci za ureditev profila" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "Ogled obrazcev za urejanje profila" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "Išči med obrazci za urejanje profila" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "Noben obrazec za urejanje profila ni bil najden" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "Noben obrazec za urejanje profila ni bil najden v smeteh" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138 #: profile-builder-2.0/modules/user-listing/userlisting.php:2115 msgid "Shortcode" msgstr "Kratka koda (shortcode)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159 #: profile-builder-2.0/modules/user-listing/userlisting.php:2136 msgid "(no title)" msgstr "(brez naslova)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178 #: profile-builder-2.0/modules/user-listing/userlisting.php:2156 msgid "The shortcode will be available after you publish this form." msgstr "Kratka koda (shortcode) bo na voljo po objavi tega obrazca." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180 #: profile-builder-2.0/modules/user-listing/userlisting.php:2158 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "Uporabite to kratko kodo (shortcode) na strani, kjer hočete, da se prikaže obrazec:" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184 #: profile-builder-2.0/modules/user-listing/userlisting.php:2162 msgid "Note: changing the form title also changes the shortcode!" msgstr "Opomba: sprememba naslova obrazca spremeni tudi kratko kodo (shortcode)!" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190 #: profile-builder-2.0/modules/user-listing/userlisting.php:2195 msgid "Form Shortcode" msgstr "Kratka koda (shortcode) obrazca" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "Ali preusmeriti uporabnika na določeno stran ali ne" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "Prikazna sporočila" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "Dovoljen čas prikaza kakršnihkoli sporočil o uspehu (v sekundah)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 msgid "Specify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.com" msgstr "Določite spletno povezavo strani, na katero bodo preusmerjeni uporabniki, ko posodobijo svoj profil preko tega obrazca
            Uporabite naslednji format: http://www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "Po posodobitvi profila..." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "Dodaj novo polje na seznam" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage Title (Type)" msgstr "
            Naslov (Tip)
            " #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "Navesti morate naslov obrazca preden ga lahko ustvarite" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "Registracijski obrazec" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "Dodaj nov registracijski obrazec" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "Uredite registracijske obrazce" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "Nov registracijski obrazec" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "Registracijski obrazci" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "Preglej registracijske obrazce" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "Išči med registracijskimi obrazci" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "Noben registracijski obrazec ni bil najden" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "Noben registracijski obrazec ni bil najden v smeteh" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "Privzeta vloga" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "Nastavi vlogo" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Choose what role the user will have after (s)he registered
            If not specified, defaults to the role set in the WordPress settings" msgstr "Izberite katere vloge bo uporabnik imel, ko se registrira
            Če vloge niso določene bodo privzete vloge v nastavitvah WordPress" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "Samodejna prijava" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Whether to automatically log in the newly registered user or not
            Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work" msgstr "Samodejna prijava novo ustvarjenih uporabnikov
            Deluje le na enojnih instalacijah brez aktiviranih funkcij \"Odobritev skrbnikov strani\" ter \"Potrditvena e-pošta\"
            OPOZORILO: Če je vključeno predpomnenje (caching) registracijskega obrazca samodejna prijava ne bo delovala" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "Specify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.com" msgstr "Določite spletno povezavo na katero bodo preusmerjeni uporabniki ko se registrirajo s tem obrazcem
            Uporabite sledeči format: http://www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "Po registraciji..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1038 #: profile-builder-2.0/modules/user-listing/userlisting.php:1485 #: profile-builder-2.0/modules/user-listing/userlisting.php:1953 #: profile-builder-2.0/modules/user-listing/userlisting.php:2426 msgid "Search Users by All Fields" msgstr "Išči uporabnike po vseh poljih" #: profile-builder-2.0/modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "Dodaj nov seznam uporabnikov" #: profile-builder-2.0/modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "Uredi seznam uporabnikov" #: profile-builder-2.0/modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "Nov seznam uporabnikov" #: profile-builder-2.0/modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "Oglej si seznam uporabnikov" #: profile-builder-2.0/modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "Išči po seznamu uporabnikov" #: profile-builder-2.0/modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "Noben seznam uporabnikov ni bil najden" #: profile-builder-2.0/modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "Noben seznam uporabnikov ni bil najden v smeteh" #: profile-builder-2.0/modules/user-listing/userlisting.php:105 msgid "Display name as" msgstr "Prikaži ime kot" #: profile-builder-2.0/modules/user-listing/userlisting.php:150 #: profile-builder-2.0/modules/user-listing/userlisting.php:2223 msgid "Registration Date" msgstr "Datum registracije" #: profile-builder-2.0/modules/user-listing/userlisting.php:151 #: profile-builder-2.0/modules/user-listing/userlisting.php:2228 msgid "Number of Posts" msgstr "Število objav" #: profile-builder-2.0/modules/user-listing/userlisting.php:155 msgid "More Info" msgstr "Več informacij" #: profile-builder-2.0/modules/user-listing/userlisting.php:156 msgid "More Info Url" msgstr "Povezava do več informacij" #: profile-builder-2.0/modules/user-listing/userlisting.php:157 msgid "Avatar or Gravatar" msgstr "Prikazna slika ali globalno prepoznavna prikazna slika (gravatar)" #: profile-builder-2.0/modules/user-listing/userlisting.php:196 #: profile-builder-2.0/modules/user-listing/userlisting.php:227 msgid "Extra Functions" msgstr "Dodatne funkcije" #: profile-builder-2.0/modules/user-listing/userlisting.php:199 msgid "Pagination" msgstr "Oštevilčenje strani" #: profile-builder-2.0/modules/user-listing/userlisting.php:200 msgid "Search all Fields" msgstr "Išči po vseh poljih" #: profile-builder-2.0/modules/user-listing/userlisting.php:229 msgid "Go Back Link" msgstr "Vrni se nazaj" #: profile-builder-2.0/modules/user-listing/userlisting.php:247 msgid "All-userlisting Template" msgstr "Predloga za seznam vseh uporabnikov" #: profile-builder-2.0/modules/user-listing/userlisting.php:250 msgid "Single-userlisting Template" msgstr "Predloga za seznam enega uporabnika" #: profile-builder-2.0/modules/user-listing/userlisting.php:733 msgid "First/Lastname" msgstr "Ime/Priimek" #: profile-builder-2.0/modules/user-listing/userlisting.php:281 #: profile-builder-2.0/modules/user-listing/userlisting.php:739 msgid "Sign-up Date" msgstr "Datum registracije" #: profile-builder-2.0/modules/user-listing/userlisting.php:748 #: profile-builder-2.0/modules/user-listing/userlisting.php:2226 msgid "Display Name" msgstr "Prikazno ime" #: profile-builder-2.0/modules/user-listing/userlisting.php:280 #: profile-builder-2.0/modules/user-listing/userlisting.php:757 msgid "Posts" msgstr "Objave" #: profile-builder-2.0/modules/user-listing/userlisting.php:760 #: profile-builder-2.0/modules/user-listing/userlisting.php:2233 msgid "Aim" msgstr "Aim" #: profile-builder-2.0/modules/user-listing/userlisting.php:763 #: profile-builder-2.0/modules/user-listing/userlisting.php:2234 msgid "Yim" msgstr "Yim" #: profile-builder-2.0/modules/user-listing/userlisting.php:766 #: profile-builder-2.0/modules/user-listing/userlisting.php:2235 msgid "Jabber" msgstr "Jabber" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "Click here to see more information about this user" msgstr "Kliknite tukaj za več informacij o uporabniku" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "More..." msgstr "Več..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1293 msgid "Click here to see more information about this user." msgstr "Kliknite tukaj za več informacij o uporabniku" #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 #: profile-builder-2.0/modules/user-listing/userlisting.php:1442 msgid "Click here to go back" msgstr "Kliknite tukaj za korak nazaj" #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 msgid "Back" msgstr "Nazaj" #: profile-builder-2.0/modules/user-listing/userlisting.php:1472 msgid "«« First" msgstr "«« Prvi" #: profile-builder-2.0/modules/user-listing/userlisting.php:1473 msgid "« Prev" msgstr "« Prejšnji" #: profile-builder-2.0/modules/user-listing/userlisting.php:1474 msgid "Next » " msgstr "Naslednji » " #: profile-builder-2.0/modules/user-listing/userlisting.php:1475 msgid "Last »»" msgstr "Zadnji »»" #: profile-builder-2.0/modules/user-listing/userlisting.php:1504 msgid "You don't have any pagination settings on this userlisting!" msgstr "Na temu seznamu uporabnikov ni nobenega oštevilčenja strani!" #: profile-builder-2.0/modules/user-listing/userlisting.php:1970 msgid "Search" msgstr "Išči" #: profile-builder-2.0/modules/user-listing/userlisting.php:1971 msgid "Clear Results" msgstr "Počisti rezultate" #: profile-builder-2.0/modules/user-listing/userlisting.php:2165 #: profile-builder-2.0/modules/user-listing/userlisting.php:2169 msgid "Extra shortcode parameters" msgstr "Dodatni parametri kratke kode (shortcode)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2172 msgid "displays users having a certain meta-value within a certain (extra) meta-field" msgstr "prikaži uporabnike z določeno meta-vrednostjo znotraj (dodatnega) meta-polja" #: profile-builder-2.0/modules/user-listing/userlisting.php:2173 msgid "Example:" msgstr "Primer:" #: profile-builder-2.0/modules/user-listing/userlisting.php:2175 msgid "Remember though, that the field-value combination must exist in the database." msgstr "Ne pozabite, da mora v bazi obstajati par polje-vrednost" #: profile-builder-2.0/modules/user-listing/userlisting.php:2250 msgid "Random (very slow on large databases > 10K user)" msgstr "Naključno (zelo počasno pri velikih bazah > 10k uporabnikov)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Roles to Display" msgstr "Vloge za prikaz" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Restrict the userlisting to these selected roles only
            If not specified, defaults to all existing roles" msgstr "Omeji seznam uporabnikov samo na izbrane vloge
            Če niso izbrane, vzami privzeto vse vloge" #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Number of Users/Page" msgstr "Število uporabnikov/strani" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Default Sorting Criteria" msgstr "Privzeti kriterij za razvrščanje" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Set the default sorting criteria
            This can temporarily be changed for each new session" msgstr "Nastavi privzeti kriterij za razvrščanje
            To je lahko začasno nastavljeno za vsako novo sejo" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Default Sorting Order" msgstr "Privzeti vrstni red" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Set the default sorting order
            This can temporarily be changed for each new session" msgstr "Nastavi privzeti vrstni red
            To je lahko začasno nastavljeno za vsako novo sejo" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Avatar Size (All-userlisting)" msgstr "Velikost prikazne slike (vsi seznami uporabnikov)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Set the avatar size on the all-userlisting only" msgstr "Nastavi velikost prikazne slike samo na vseobsegajočih seznamih uporabnikov" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Avatar Size (Single-userlisting)" msgstr "Velikost prikazne slike (enojni seznam uporabnikov)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Set the avatar size on the single-userlisting only" msgstr "Nastavi prikazno sliko samo na enojnih seznamih uporabnikov" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Visible only to logged in users?" msgstr "Vidno samo prijavljenim uporabnikom?" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "The userlisting will only be visible only to the logged in users" msgstr "Seznam uporabnikov bo viden samo prijavljenim uporabnikom" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "Visible to following Roles" msgstr "Vidno naslednjim vlogam" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "The userlisting will only be visible to the following roles" msgstr "Seznam uporabnikov bo viden samo naslednjim vlogam" #: profile-builder-2.0/modules/user-listing/userlisting.php:2275 msgid "Userlisting Settings" msgstr "Nastavitve seznama uporabnikov" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "Aktivirati morate možnost seznamov uporabnikov v zavihku \"Moduli\"" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You can find it in the Profile Builder menu." msgstr "Najdete ga lahko v Profile Builder meniju" #: profile-builder-2.0/modules/user-listing/userlisting.php:2565 msgid "No results found!" msgstr "Brez rezultatov!"translation/profile-builder-fr_FR.po000066600000661365152141651160013551 0ustar00# Translation of Profile Builder in French (France) # This file is distributed under the same license as the Profile Builder package. msgid "" msgstr "" "PO-Revision-Date: 2017-08-01 13:43:07+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: GlotPress/0.1\n" "Project-Id-Version: Profile Builder\n" #: profile-builder-2.0/admin/general-settings.php:154 msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s." msgstr "" #: profile-builder-2.0/admin/general-settings.php:146 msgid "\"Roles Editor\" Activated:" msgstr "" #: profile-builder-2.0/features/roles-editor/roles-editor.php:300 msgid "M j, Y @ G:i" msgstr "" #: profile-builder-2.0/front-end/recover.php:117 msgid "Please enter your email address." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yy" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244 msgid "Individual redirects defined in shortcodes; redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1217 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." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "" #: profile-builder-2.0/admin/register-version.php:251 msgid "

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            " msgstr "" #: profile-builder-2.0/admin/register-version.php:246 msgid "

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            " msgstr "" #: profile-builder-2.0/front-end/recover.php:159 msgid "You are already logged in. You can change your password on the edit profile form." msgstr "Vous êtes déjà connecté. Vous pouvez changer votre mot de passe dans le formulaire de modification de profile." #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "Votre site va ressembler à ceci :
            " #: profile-builder-2.0/features/functions.php:909 msgid "

            You can visit your site at " msgstr "

            Vous pouvez visiter votre site sur" #: profile-builder-2.0/features/functions.php:896 msgid "

            Also, you will be able to visit your site at " msgstr "

            Aussi, vous serez capable de visite votre site sur" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138 msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network." msgstr "Sécurité : J'aimerais que mon site apparaisse dans les moteurs de recherche, dans les listes publiques autour de ce réseau." #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "Titre du site" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "URL du site" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "Oui, j'aimerais créer un nouveau site" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36 #: profile-builder-2.0/modules/user-listing/userlisting.php:118 msgid "Blog URL" msgstr "URL du blog" #: profile-builder-2.0/admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "Details du blog - Apparaîtra uniquement sur la page d'inscription! " #: profile-builder-2.0/admin/manage-fields.php:222 msgid "Blog Details" msgstr "Details du blog" #: profile-builder-2.0/admin/pms-cross-promotion.php:239 msgid "Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "Permettre à vos utilisateurs d'avoir un compte abonnement payant avec Profile Builder. %1$sEn savoir plus>%2$s %3$sEffacer%4$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579 msgid "Welcome to %1$s!


            Your username is:%2$s" msgstr "Bienvenu sur %1$s !


            Votre identifiant est : %2$s" #: profile-builder-2.0/modules/user-listing/userlisting.php:1320 msgid "View Map" msgstr "Voir sur le plan" #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267 #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367 #: pb-add-on-woocommerce/index.php:493 msgid "Address line 2" msgstr "Adresse ligne 2" #: pb-add-on-woocommerce/index.php:256 msgid "Billing Fields" msgstr "Informations de facturation" #: pb-add-on-woocommerce/index.php:256 msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "Sélectionnez les champs de facturation WooCommerce à afficher à l'utilisateur (glisser-déplacer pour réorganiser) et lesquels sont requis" #: pb-add-on-woocommerce/index.php:257 msgid "Billing Fields Order" msgstr "Champs de facturation Commande" #: pb-add-on-woocommerce/index.php:257 msgid "Save the billing fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Billing Fields Name" msgstr "Nom des champs de facturation" #: pb-add-on-woocommerce/index.php:258 msgid "Save the billing fields names" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Shipping Fields" msgstr "Informations de livraison" #: pb-add-on-woocommerce/index.php:275 msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Shipping Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Save the shipping fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Shipping Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Save the shipping fields names" msgstr "" #: pb-add-on-woocommerce/index.php:305 msgid "Field Name" msgstr "Nom du champs" #: pb-add-on-woocommerce/index.php:369 msgid "Click to edit " msgstr "Cliquer pour modifier" #: pb-add-on-woocommerce/woo-checkout-field-support.php:368 msgid "is not a valid phone number." msgstr "n'est pas un numéro de téléphone valide." #: pb-add-on-woocommerce/woo-checkout-field-support.php:377 msgid "is not a number." msgstr "n'est pas un nombre." #: pb-add-on-woocommerce/woo-checkout-field-support.php:382 msgid "must be a multiplier of " msgstr "doit être un multiple de" #: pb-add-on-woocommerce/woo-checkout-field-support.php:387 msgid "must be a greater than or equal to " msgstr "doit être plus grand ou égal à " #: pb-add-on-woocommerce/woo-checkout-field-support.php:392 msgid "must be less than or equal to " msgstr "doit être inférieur ou égal à " #: profile-builder-2.0/admin/add-ons.php:103 msgid "Available in Hobbyist and Pro Versions" msgstr "Disponible dans la version Hobbyist ou Pro" #: profile-builder-2.0/admin/add-ons.php:105 msgid "Available in All Versions" msgstr "Disponible dans toutes les versions" #: profile-builder-2.0/admin/add-ons.php:148 msgid "Learn More" msgstr "En savoir plus" #: profile-builder-2.0/admin/basic-info.php:99 msgid "Timepicker" msgstr "Sélecteur d'heure" #: profile-builder-2.0/admin/basic-info.php:100 msgid "Colorpicker" msgstr "Sélecteur de couleur" #: profile-builder-2.0/admin/basic-info.php:103 msgid "Currency Select" msgstr "Sélecteur de devise" #: profile-builder-2.0/admin/basic-info.php:109 msgid "Number" msgstr "Nombre" #: profile-builder-2.0/admin/basic-info.php:114 msgid "Validation" msgstr "Validation" #: profile-builder-2.0/admin/basic-info.php:115 msgid "Map" msgstr "Plan" #: profile-builder-2.0/admin/basic-info.php:116 msgid "HTML" msgstr "HTML" #: profile-builder-2.0/admin/basic-info.php:162 #: profile-builder-2.0/modules/modules.php:117 msgid "Repeater Fields" msgstr "Champs répétables" #: profile-builder-2.0/admin/basic-info.php:163 msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role." msgstr "" #: profile-builder-2.0/admin/general-settings.php:59 msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Show Currency Symbol" msgstr "Affiche le symbole de la monnaie" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Whether the currency symbol should be displayed after the currency name in the select option." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Show Post Type" msgstr "Afficher le type du post" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Posts from what post type will be displayed in the select." msgstr "Type de posts dont les posts seront affichés dans la sélection." #: profile-builder-2.0/admin/manage-fields.php:145 msgid "Allowable Values" msgstr "Valeurs permises" #: profile-builder-2.0/admin/manage-fields.php:145 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." msgstr "Entrer une liste des valeurs possibles séparées par des virgules. A l'inscription, si la valeur fournie par l'utilisateur ne correspond à aucune de ces valeurs, l'utilisateur ne sera pas inscrit." #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Error Message" msgstr "Message d'erreur" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Set a custom error message that will be displayed to the user." msgstr "Définir un message d'erreur personnalisée qui sera affiché à l'utilisateur." #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Time Format" msgstr "Format du temps" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Specify the time format." msgstr "Spécifier le format du temps" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Google Maps API Key" msgstr "Clé de l'API Google Maps" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Enter your Google Maps API key (
            Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used." msgstr "Entrez la clé API de Google Maps ( Get your API key ). Si plus d'un champ carte est ajouté au formulaire, la clé API de la première map affichée sera utilisée." #: profile-builder-2.0/admin/manage-fields.php:149 msgid "Default Latitude" msgstr "Latitude par défaut" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "The latitude at which the map should be displayed when no pins are attached." msgstr "La latitude à laquelle la carte sera affichée quand il n'y a aucune punaise attachée." #: profile-builder-2.0/admin/manage-fields.php:150 msgid "Default Longitude" msgstr "Longitude par défaut" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "The longitude at which the map should be displayed when no pins are attached." msgstr "La longitude à laquelle la carte sera affichée quand il n'y a aucune punaise attachée." #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Default Zoom Level" msgstr "Niveau de zoom par défaut" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "Ajoute un nombre de 0 à 19. Plus le nombre est haut, plus le zoom le sera." #: profile-builder-2.0/admin/manage-fields.php:152 msgid "Map Height" msgstr "Hauteur de la carte" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "The height of the map." msgstr "La hauteur de la carte." #: profile-builder-2.0/admin/manage-fields.php:154 msgid "HTML Content" msgstr "Contenu HTML" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "Add your HTML (or text) content" msgstr "Ajouter votre contenu HTML (ou texte)" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Phone Format" msgstr "Format du numéro de téléphone" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Eg. (###) ###-####" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Empty field won't check for correct phone number." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Heading Tag" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Change heading field size on front-end forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min Number Value" msgstr "Valeur minimale" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "Valeur minimale permise (0 pour n'autoriser que les nombres positifs)" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Leave it empty for no min value" msgstr "Laisser vide pour ne pas avoir de valeur minimale" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max Number Value" msgstr "Valeur maximale" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "Valeur maximale permise (0 pour n'autoriser que les nombres négatifs) " #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Leave it empty for no max value" msgstr "Laisser vide pour ne pas avoir de valeur maximale" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Number Step Value" msgstr "Numéro de l'étape" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal" msgstr "Valeur d'étape 1 pour permettre uniquement les entiers, 0.1 pour autorise les entiers et les nombre à 1 décimal." #: profile-builder-2.0/admin/manage-fields.php:159 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 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)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Leave it empty for no restriction" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:564 msgid "Albania Lek" msgstr "Albania Lek" #: profile-builder-2.0/admin/manage-fields.php:565 msgid "Afghanistan Afghani" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:566 msgid "Argentina Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:567 msgid "Aruba Guilder" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:568 msgid "Australia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:569 msgid "Azerbaijan New Manat" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:570 msgid "Bahamas Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:571 msgid "Barbados Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:572 msgid "Bangladeshi taka" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:573 msgid "Belarus Ruble" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:574 msgid "Belize Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:575 msgid "Bermuda Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:576 msgid "Bolivia Boliviano" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:577 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:578 msgid "Botswana Pula" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:579 msgid "Bulgaria Lev" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:580 msgid "Brazil Real" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:581 msgid "Brunei Darussalam Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:582 msgid "Cambodia Riel" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:583 msgid "Canada Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:584 msgid "Cayman Islands Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:585 msgid "Chile Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:586 msgid "China Yuan Renminbi" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:587 msgid "Colombia Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:588 msgid "Costa Rica Colon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:589 msgid "Croatia Kuna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:590 msgid "Cuba Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:591 msgid "Czech Republic Koruna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:592 msgid "Denmark Krone" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:593 msgid "Dominican Republic Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:594 msgid "East Caribbean Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:595 msgid "Egypt Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:596 msgid "El Salvador Colon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:597 msgid "Estonia Kroon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:598 msgid "Euro" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:599 msgid "Falkland Islands (Malvinas) Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:600 msgid "Fiji Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:601 msgid "Ghana Cedis" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:602 msgid "Gibraltar Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:603 msgid "Guatemala Quetzal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:604 msgid "Guernsey Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:605 msgid "Guyana Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:606 msgid "Honduras Lempira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:607 msgid "Hong Kong Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:608 msgid "Hungary Forint" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:609 msgid "Iceland Krona" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:610 msgid "India Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:611 msgid "Indonesia Rupiah" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:612 msgid "Iran Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:613 msgid "Isle of Man Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:614 msgid "Israel Shekel" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:615 msgid "Jamaica Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:616 msgid "Japan Yen" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:617 msgid "Jersey Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:618 msgid "Kazakhstan Tenge" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:619 msgid "Korea (North) Won" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:620 msgid "Korea (South) Won" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:621 msgid "Kyrgyzstan Som" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:622 msgid "Laos Kip" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:623 msgid "Latvia Lat" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:624 msgid "Lebanon Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:625 msgid "Liberia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:626 msgid "Lithuania Litas" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:627 msgid "Macedonia Denar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:628 msgid "Malaysia Ringgit" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:629 msgid "Mauritius Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:630 msgid "Mexico Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:631 msgid "Mongolia Tughrik" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:632 msgid "Mozambique Metical" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:633 msgid "Namibia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:634 msgid "Nepal Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:635 msgid "Netherlands Antilles Guilder" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:636 msgid "New Zealand Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:637 msgid "Nicaragua Cordoba" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:638 msgid "Nigeria Naira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:639 msgid "Norway Krone" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:640 msgid "Oman Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:641 msgid "Pakistan Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:642 msgid "Panama Balboa" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:643 msgid "Paraguay Guarani" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:644 msgid "Peru Nuevo Sol" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:645 msgid "Philippines Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:646 msgid "Poland Zloty" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:647 msgid "Qatar Riyal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:648 msgid "Romania New Leu" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:649 msgid "Russia Ruble" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:650 msgid "Saint Helena Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:651 msgid "Saudi Arabia Riyal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:652 msgid "Serbia Dinar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:653 msgid "Seychelles Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:654 msgid "Singapore Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:655 msgid "Solomon Islands Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:656 msgid "Somalia Shilling" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:657 msgid "South Africa Rand" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:658 msgid "Sri Lanka Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:659 msgid "Sweden Krona" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:660 msgid "Switzerland Franc" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:661 msgid "Suriname Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:662 msgid "Syria Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:663 msgid "Taiwan New Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:664 msgid "Thailand Baht" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:665 msgid "Trinidad and Tobago Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:666 #: profile-builder-2.0/admin/manage-fields.php:667 msgid "Turkey Lira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:668 msgid "Tuvalu Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:669 msgid "Ukraine Hryvna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:670 msgid "United Kingdom Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:671 msgid "Uganda Shilling" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:672 msgid "US Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:673 msgid "Uruguay Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:674 msgid "Uzbekistan Som" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:675 msgid "Venezuela Bolivar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:676 msgid "Viet Nam Dong" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:677 msgid "Yemen Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:678 msgid "Zimbabwe Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1097 msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n" msgstr "Le nom de la méta peut seulement contenir des lettres minuscules, des nombres, _ , - et aucun espace.\n" #: profile-builder-2.0/admin/manage-fields.php:1314 msgid "Search Location" msgstr "Lieu de recherche" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754 msgid "You are not allowed to do this." msgstr "Vous n'êtes pas autorisé à faire cela." #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460 msgid "Search Users" msgstr "Utilisateurs de la recherche" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78 msgid "Conditional Logic" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79 msgid "Conditional Rules" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448 msgid "This field has conditional logic enabled." msgstr "" #: profile-builder-2.0/features/functions.php:685 msgid "Incorrect phone number" msgstr "Numéro de téléphone incorrect" #: profile-builder-2.0/front-end/class-formbuilder.php:124 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." msgstr "" #: profile-builder-2.0/front-end/extra-fields/map/map.php:46 #: profile-builder-2.0/front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "Veuillez ajouter la clé API Google Maps pour ce champ." #: profile-builder-2.0/front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "Quelque chose ne s'est pas déroulé correctement. Veuillez réessayer." #: profile-builder-2.0/front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "Veuillez entrer uniquement des nombres." #: profile-builder-2.0/front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "La valeur doit être un multiple de %1$s" #: profile-builder-2.0/front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "La valeur doit être plus grande ou égale à %1$s" #: profile-builder-2.0/front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "La valeur doit être plus petite ou égale à %1$s " #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "Numéro de téléphone requis" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bolivia, __( Plurinational State of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bonaire, __( Sint Eustatius and Saba" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brunei Darussalam" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cabo Verde" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cocos (Keeling) Islands" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo, __( the Democratic Republic of the" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cote dIvoire" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Falkland Islands (Malvinas)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Holy See (Vatican City State)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iran, __( Islamic Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Democratic Peoples Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lao Peoples Democratic Republic" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macedonia, __( the former Yugoslav Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Micronesia, __( Federated States of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Moldova, __( Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palestine, __( State of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Russian Federation" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Helena, __( Ascension and Tristan da Cunha" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Martin (French part)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sint Maarten (Dutch part)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Syrian Arab Republic" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Taiwan, __( Province of China" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tanzania, __( United Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Timor-Leste" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Venezuela, __( Bolivarian Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Viet Nam" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( British" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( U.S." msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:186 msgid "User Fields Tags" msgstr "Les étiquettes des champs utilisateurs" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479 msgid "The users selected password at signup" msgstr "Les mots de passe des utilisateurs sélectionnés à l'enregistrement" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278 msgid "[{{site_name}}] Notice of Email Change" msgstr "[{{site_name}}] Notification du changement d'email" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289 msgid "Changed Email Address Notification" msgstr "Notification de changement d'adresse email" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Limit" msgstr "Limite" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Enable limit to the number of fields to be generated by users in front end forms " msgstr "Autoriser la limite du nombre de champs générés par des utilisateurs dans les formulaires frontend." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "General Limit" msgstr "Limite générale" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "Limit reached message" msgstr "Limite atteinte du message" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The maximum number of fields has been reached." msgstr "Le nombre maximum de champs a été atteint" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The popup message to display when the limit of repeater groups is reached." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Limit per Role" msgstr "Limite par rôle" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Leave 0 for unlimited." msgstr "Laisser 0 pour illimité" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Repeated field group" msgstr "Groupe de champs répétables" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Manage field or group of fields that will be repeatable." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259 msgid "Edit field group" msgstr "Modifier le groupe du champ" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260 msgid "Repeatable fields saved!" msgstr "Champs répétables sauvés!" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277 #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326 msgid "Please enter a unique field title.\n" msgstr "Veuillez entrer un titre unique au champ.\n" #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267 msgid "Are you sure you want to delete this?" msgstr "Êtes-vous sûr de vouloir supprimer ceci?" #: profile-builder-2.0/modules/user-listing/userlisting.php:192 msgid "Sort Tags" msgstr "Trier les étiquettes" #: profile-builder-2.0/modules/user-listing/userlisting.php:201 #: profile-builder-2.0/modules/user-listing/userlisting.php:2308 msgid "Faceted Menus" msgstr "Menus facettés" #: profile-builder-2.0/modules/user-listing/userlisting.php:202 msgid "User Count" msgstr "Nombre d'utilisateurs" #: profile-builder-2.0/modules/user-listing/userlisting.php:1553 msgid "Show All" msgstr "Afficher tout" #: profile-builder-2.0/modules/user-listing/userlisting.php:1710 msgid "No options available" msgstr "Aucune option disponible" #: profile-builder-2.0/modules/user-listing/userlisting.php:1861 msgid "Remove All Filters" msgstr "Retirer tout les filtres" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Label" msgstr "Label" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Choose the facet name that appears on the frontend" msgstr "Choisir le nom de la facette qui va apparaître sur le frontend." #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Facet Type" msgstr "Type de facette" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Choose the facet menu type" msgstr "Choisir le type de menu de la facette" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Facet Meta" msgstr "Méta facette" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Choose the meta field for the facet menu" msgstr "Choisir la méta pour le menu facette" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Behaviour" msgstr "Comportement" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Narrow the results" msgstr "Restreindre les résultats" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Expand the results" msgstr "Etendre les résultats" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Choose how multiple selections affect the results" msgstr "Choisir combien de selections vont affecter le résultat" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Visible choices" msgstr "Choix visibles" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "Afficher un lien de redirection après autant de choix. Laisser blanc pour tout" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Search Fields" msgstr "Champs de recherche" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Choose the fields in which the Search Field will look in" msgstr "Choisissez les champs dans lesquels la recherche va regarder." #: profile-builder-2.0/modules/user-listing/userlisting.php:2330 msgid "Search Settings" msgstr "Paramètres de recherche" #: pb-add-on-woocommerce/billing-fields.php:8 #: pb-add-on-woocommerce/shipping-fields.php:8 msgid "Company Name" msgstr "Nom de la compagnie" #: pb-add-on-woocommerce/billing-fields.php:9 #: pb-add-on-woocommerce/shipping-fields.php:9 msgid "Address" msgstr "Adresse" #: pb-add-on-woocommerce/billing-fields.php:5 #: pb-add-on-woocommerce/shipping-fields.php:5 msgid "Country" msgstr "Pays" #: pb-add-on-woocommerce/billing-fields.php:11 #: pb-add-on-woocommerce/shipping-fields.php:11 msgid "Town / City" msgstr "Ville" #: pb-add-on-woocommerce/billing-fields.php:12 #: pb-add-on-woocommerce/shipping-fields.php:12 msgid "State / County" msgstr "Region / Pays" #: pb-add-on-woocommerce/billing-fields.php:13 #: pb-add-on-woocommerce/shipping-fields.php:13 msgid "Postcode / Zip" msgstr "Code Postal" #: pb-add-on-woocommerce/billing-fields.php:14 msgid "Email Address" msgstr "Adresse courriel" #: pb-add-on-woocommerce/billing-fields.php:15 msgid "Phone" msgstr "Téléphone" #: pb-add-on-woocommerce/billing-fields.php:278 msgid "Ship to a different address?" msgstr "Envoyé à une adresse différente" #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437 msgid "Billing Address" msgstr "Adresse de facturation" #: pb-add-on-woocommerce/index.php:169 msgid "Displays customer billing fields in front-end. " msgstr "Afficher le champ de facturation " #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438 msgid "Shipping Address" msgstr "Adresse de livraison" #: pb-add-on-woocommerce/index.php:173 msgid "Displays customer shipping fields in front-end. " msgstr "Afficher les champs pour adresse d'expédition du client sur le \"Front-End\"." #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Display on WooCommerce Checkout" msgstr "Afficher la facture sur WooCommerce" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Whether the field should be added to the WooCommerce checkout form or not" msgstr "Le champ facture doit être ajouté ou non au formulaire de WooCommerce" #: pb-add-on-woocommerce/index.php:541 msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!" msgstr "WooCommerce doit être installé et activé pour Profile Builder - Le module WooCommerce doit être synchronisé pour être opérationnel!" #: pb-add-on-woocommerce/woosync-page.php:23 #: pb-add-on-woocommerce/woosync-page.php:70 msgid "WooCommerce Sync" msgstr "Synchronisation WooCommerce" #: pb-add-on-woocommerce/woosync-page.php:76 msgid "Choose Register form to display on My Account page:" msgstr "Choisissez le formulaire d'inscription à afficher sur la page de mon compte:" #: pb-add-on-woocommerce/woosync-page.php:81 msgid "Default Register" msgstr "Enregistrement par défaut" #: pb-add-on-woocommerce/woosync-page.php:103 msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce.
            This will also add the Profile Builder Login form to MyAccount page." msgstr "Sélectionnez le formulaire d'enregistrement Profile Builder à afficher sur la page Mon compte de WooCommerce.
            Cela ajoutera également le formulaire de connexion Profile Builder à la page de Mon compte." #: pb-add-on-woocommerce/woosync-page.php:110 msgid "Choose Edit Profile form to display on My Account page:" msgstr "Choisissez la forme d'édition de profil à afficher sur la page Mon compte:" #: pb-add-on-woocommerce/woosync-page.php:115 msgid "Default Edit Profile" msgstr "Edition de profil par défaut" #: pb-add-on-woocommerce/woosync-page.php:137 msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce." msgstr "Sélectionnez quelle forme d'édition Profile Builder à afficher sur la page Mon compte de WooCommerce." #: profile-builder-2.0/admin/add-ons.php:190 msgid "Recommended Plugins" msgstr "Plugins recommandés" #: profile-builder-2.0/admin/add-ons.php:219 #: profile-builder-2.0/admin/pms-cross-promotion.php:102 msgid "Free" msgstr "Gratuit" #: profile-builder-2.0/admin/add-ons.php:221 msgid "Accept user payments, create subscription plans and restrict content on your membership site." msgstr "Accepter les paiements des utilisateurs, créer des plans de souscription et restreindre le contenu sur votre site d'adhésion." #: profile-builder-2.0/admin/add-ons.php:222 #: profile-builder-2.0/admin/pms-cross-promotion.php:105 msgid "More Details" msgstr "Plus de détails" #: profile-builder-2.0/admin/add-ons.php:240 #: profile-builder-2.0/admin/pms-cross-promotion.php:88 #: profile-builder-2.0/admin/pms-cross-promotion.php:123 #: profile-builder-2.0/admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "Plugin désactivé" #: profile-builder-2.0/admin/add-ons.php:242 #: profile-builder-2.0/admin/pms-cross-promotion.php:87 #: profile-builder-2.0/admin/pms-cross-promotion.php:125 #: profile-builder-2.0/admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "Plugin désactivé" #: profile-builder-2.0/admin/add-ons.php:256 #: profile-builder-2.0/admin/pms-cross-promotion.php:146 msgid "Could not install plugin. Retry or install manually." msgstr "Ne peut installer le plugin. Essayer à nouveau ou installer manuellement." #: profile-builder-2.0/admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "Payé ces comptes" #: profile-builder-2.0/admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "Payer les abonnements membres - un plugin WordPress gratuit" #: profile-builder-2.0/admin/pms-cross-promotion.php:37 msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." msgstr "Avec le nouveau champ abonnements dans Profile Builder, vos formulaires d'inscription permettront à vos utilisateurs de s'inscrire pour les comptes payés." #: profile-builder-2.0/admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "Abonnements payants et gratuits" #: profile-builder-2.0/admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "Restreindre le contenu" #: profile-builder-2.0/admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "Gestion des membres" #: profile-builder-2.0/admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "Modèles d'Emails" #: profile-builder-2.0/admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "Gestion des comptes" #: profile-builder-2.0/admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "Gestion des inscriptions" #: profile-builder-2.0/admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "Gestion des paiements" #: profile-builder-2.0/admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "Le plugin est activé" #: profile-builder-2.0/admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "Le plugin a été activé" #: profile-builder-2.0/admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "Le plugin a été désactivé" #: profile-builder-2.0/admin/pms-cross-promotion.php:104 msgid "Accept user payments, create subscription plans and restrict content on your website." msgstr "Accepter les paiements des utilisateurs, créer des plans de souscription et restreindre le contenu sur votre site." #: profile-builder-2.0/admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "Configuration rapide étape par étape " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401 msgid "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login." msgstr "Pour activer votre inscription, cliquez s'il vous plaît, sur le lien suivant :

            %s%s%s

            Après l'avoir activée, vous allez recevoir * un autre courriel * avec votre procédure de connexion." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45 msgid "After Login" msgstr "Après Connexion" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46 msgid "After Logout" msgstr "Après déconnexion" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47 msgid "After Registration" msgstr "Après inscription" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48 msgid "After Edit Profile" msgstr "Après Modification du profil" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Successful Email Confirmation" msgstr "Après avoir réussi la confirmation de l'Email " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Successful Password Reset" msgstr "Après avoir réussi la réinitialisation du mot de passe" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "Tableau de bord (rediriger les utilisateurs pour accéder au tableau de bord)" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55 msgid "User ID" msgstr "Identifiant utilisateur" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61 msgid "User ID or Username" msgstr "Identifiant d'utilisateur ou Nom d'utilisateur" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "User ID / Username" msgstr "Identifiant d'utilisateur / Nom d'utilisateur" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "Please select and enter the ID or username of your user." msgstr "S'il vous plaît sélectionner et entrer l'idantifiant ou le nom d'utilisateur de votre utilisateur." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131 msgid "Redirect Type" msgstr "Type de redirection" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Redirect URL" msgstr "Rediriger l'URL" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" msgstr "Peut contenir les balises dynamiques suivantes:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241 msgid "Individual User Redirects" msgstr "Redirections d'utilisateurs individuels" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84 msgid "... Choose" msgstr "Choisir" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 msgid "Select a user role." msgstr "sélectionner un rôle d'utilisateur" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242 msgid "User Role based Redirects" msgstr "Redirection basée sur le rôle de l'utilisateur" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243 msgid "Global Redirects" msgstr "Redirection globale" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133 msgid "Login ( wp_login.php )" msgstr "Identification ( wp_login.php )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134 msgid "Register ( wp-login.php?action=register )" msgstr "Enregistrement ( wp-login.php?action=register )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "Mot de passe perdu ( wp-login.php?action=lostpassword )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "Archive Auteur ( http://sitename.com/author/admin )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145 msgid "Redirect Default WordPress Forms and Pages" msgstr "Rediriger formes et Pages WordPress par défaut" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157 msgid "How does this work?" msgstr "Comment cela marche-t-il?" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "
            Identification utilisateur / Nom d'utilisateur
            Redirection
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 msgid "
            User Role
            Redirect
            URL
            " msgstr "
            Rôle de l'utilisateur
            Redirection
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "
            Redirect
            URL
            " msgstr "
            Redirection
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236 msgid "These redirects happen after a successful action, like registration or after a successful login." msgstr "Ces redirections se produisent après une action réussie, comme l'enregistrement ou après une connexion réussie." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238 msgid "Which redirect happens depends on the following priority:" msgstr "Cette redirection dépend de la priorité suivante:" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247 msgid "Redirect Default WordPress forms and pages" msgstr "Redirection par défaut des formes et pages WordPress" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248 msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder." msgstr "Avec ceux-ci, vous pouvez rediriger différentes formes et pages WordPress vers des pages créées avec profil builder." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250 msgid "Available tags for dynamic URLs" msgstr "Balises disponibles pour les URL dynamiques" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251 msgid "You use the following tags in your URLs to redirect users to various pages." msgstr "Vous utilisez les balises suivantes dans vos URL pour rediriger les utilisateurs vers différentes pages." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253 msgid "generates a url of the current website homepage." msgstr "génère une URL de la page d'accueil du site actuel." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254 msgid "in WordPress the site url can be different then the home url" msgstr "dans WordPress l'URL du site peut être différente de l'url principale" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255 msgid "the ID of the user" msgstr "l'identifiant de l'utilisateur" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256 msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." msgstr "l'URL version aseptisée du nom d'utilisateur, le véritable nom utilisateur peut être utilisé en toute sécurité dans les URL, car il ne peut pas contenir des caractères spéciaux ou des espaces." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257 msgid "the URL of the previously visited page" msgstr "l'URL de la page visitée précédemment" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352 msgid "You can't add duplicate redirects!" msgstr "Vous ne pouvez pas ajouter des redirections dupliqués!" #: profile-builder-2.0/admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "Affichage nom public comme - apparaissant uniquement sur la page de modification de profil!" #: profile-builder-2.0/admin/basic-info.php:37 msgid "Friction-less login using %s shortcode or a widget." msgstr "Connexion sans problème en utilisant %s un shortcode ou un widget." #: profile-builder-2.0/admin/basic-info.php:41 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "Beaux formulaires d'inscription entièrement personnalisables en utilisant le shortcode %s." #: profile-builder-2.0/admin/basic-info.php:45 msgid "Straight forward edit profile forms using %s shortcode." msgstr "Simple modification du profil en utilisant le shortcode %s." #: profile-builder-2.0/admin/basic-info.php:58 msgid "Allow users to recover their password in the front-end using the %s." msgstr "Permet aux utilisateurs de récupérer leur mot de passe dans le front-end en utilisant le %s." #: profile-builder-2.0/admin/basic-info.php:140 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." msgstr "Pour créer une page contenant les utilisateurs enregistrés à ce site/blog, insérer le shortcode suivant dans une page de votre choix: %s." #: profile-builder-2.0/admin/general-settings.php:115 msgid "\"Admin Approval\" on User Role:" msgstr "\"Approbation Administrateur\" sur le rôle de l'utilisateur:" #: profile-builder-2.0/admin/general-settings.php:134 msgid "Select on what user roles to activate Admin Approval." msgstr "Sélectionnez les rôles utilisateur pour activer l'approbation de l'administrateur." #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Display on PB forms" msgstr "Affichage sur les formes de PB" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Login" msgstr "Connexion PB " #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Register" msgstr "Enregistrement PB" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Recover Password" msgstr "Récupération Mot de passe PB" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "Sélectionner sur quelles formes Profil Builder, afficher reCAPTCHA" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Display on default WP forms" msgstr "Afficher les formes WP par défaut" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Login" msgstr "Connexion WP par défaut" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Register" msgstr "Enregistrement WP par défaut" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Recover Password" msgstr "Récupération mot de passe WP par défaut" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "Sélectionner sur quelles formes WP par défaut, afficher reCAPTCHA" #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default option of the field" msgstr "Option par défaut du champ" #: profile-builder-2.0/admin/manage-fields.php:282 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Afghanistan" msgstr "Afghanistan" #: profile-builder-2.0/admin/manage-fields.php:283 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aland Islands" msgstr "Aland Islands" #: profile-builder-2.0/admin/manage-fields.php:284 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Albania" msgstr "Albania" #: profile-builder-2.0/admin/manage-fields.php:285 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Algeria" msgstr "Algeria" #: profile-builder-2.0/admin/manage-fields.php:286 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "American Samoa" msgstr "American Samoa" #: profile-builder-2.0/admin/manage-fields.php:287 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Andorra" msgstr "Andorra" #: profile-builder-2.0/admin/manage-fields.php:288 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Angola" msgstr "Angola" #: profile-builder-2.0/admin/manage-fields.php:289 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Anguilla" msgstr "Anguilla" #: profile-builder-2.0/admin/manage-fields.php:290 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antarctica" msgstr "Antarctica" #: profile-builder-2.0/admin/manage-fields.php:291 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" #: profile-builder-2.0/admin/manage-fields.php:292 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Argentina" msgstr "Argentina" #: profile-builder-2.0/admin/manage-fields.php:293 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Armenia" msgstr "Armenia" #: profile-builder-2.0/admin/manage-fields.php:294 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aruba" msgstr "Aruba" #: profile-builder-2.0/admin/manage-fields.php:295 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Australia" msgstr "Australia" #: profile-builder-2.0/admin/manage-fields.php:296 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Austria" msgstr "Austria" #: profile-builder-2.0/admin/manage-fields.php:297 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Azerbaijan" msgstr "Azerbaijan" #: profile-builder-2.0/admin/manage-fields.php:298 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahamas" msgstr "Bahamas" #: profile-builder-2.0/admin/manage-fields.php:299 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahrain" msgstr "Bahrain" #: profile-builder-2.0/admin/manage-fields.php:300 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bangladesh" msgstr "Bangladesh" #: profile-builder-2.0/admin/manage-fields.php:301 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Barbados" msgstr "Barbados" #: profile-builder-2.0/admin/manage-fields.php:302 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belarus" msgstr "Belarus" #: profile-builder-2.0/admin/manage-fields.php:303 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belgium" msgstr "Belgium" #: profile-builder-2.0/admin/manage-fields.php:304 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belize" msgstr "Belize" #: profile-builder-2.0/admin/manage-fields.php:305 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Benin" msgstr "Benin" #: profile-builder-2.0/admin/manage-fields.php:306 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bermuda" msgstr "Bermuda" #: profile-builder-2.0/admin/manage-fields.php:307 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bhutan" msgstr "Bhutan" #: profile-builder-2.0/admin/manage-fields.php:308 msgid "Bolivia" msgstr "Bolivia" #: profile-builder-2.0/admin/manage-fields.php:309 msgid "Bonaire, Saint Eustatius and Saba" msgstr "Bonaire, Saint Eustatius and Saba" #: profile-builder-2.0/admin/manage-fields.php:310 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bosnia and Herzegovina" msgstr "Bosnia and Herzegovina" #: profile-builder-2.0/admin/manage-fields.php:311 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Botswana" msgstr "Botswana" #: profile-builder-2.0/admin/manage-fields.php:312 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bouvet Island" msgstr "Bouvet Island" #: profile-builder-2.0/admin/manage-fields.php:313 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brazil" msgstr "Brazil" #: profile-builder-2.0/admin/manage-fields.php:314 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: profile-builder-2.0/admin/manage-fields.php:315 msgid "British Virgin Islands" msgstr "British Virgin Islands" #: profile-builder-2.0/admin/manage-fields.php:316 msgid "Brunei" msgstr "Brunei" #: profile-builder-2.0/admin/manage-fields.php:317 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bulgaria" msgstr "Bulgaria" #: profile-builder-2.0/admin/manage-fields.php:318 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burkina Faso" msgstr "Burkina Faso" #: profile-builder-2.0/admin/manage-fields.php:319 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burundi" msgstr "Burundi" #: profile-builder-2.0/admin/manage-fields.php:320 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cambodia" msgstr "Cambodia" #: profile-builder-2.0/admin/manage-fields.php:321 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cameroon" msgstr "Cameroon" #: profile-builder-2.0/admin/manage-fields.php:322 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Canada" msgstr "Canada" #: profile-builder-2.0/admin/manage-fields.php:323 msgid "Cape Verde" msgstr "Cape Verde" #: profile-builder-2.0/admin/manage-fields.php:324 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cayman Islands" msgstr "Cayman Islands" #: profile-builder-2.0/admin/manage-fields.php:325 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Central African Republic" msgstr "Central African Republic" #: profile-builder-2.0/admin/manage-fields.php:326 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chad" msgstr "Chad" #: profile-builder-2.0/admin/manage-fields.php:327 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chile" msgstr "Chile" #: profile-builder-2.0/admin/manage-fields.php:328 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "China" msgstr "China" #: profile-builder-2.0/admin/manage-fields.php:329 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Christmas Island" msgstr "Christmas Island" #: profile-builder-2.0/admin/manage-fields.php:330 msgid "Cocos Islands" msgstr "Cocos Islands" #: profile-builder-2.0/admin/manage-fields.php:331 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Colombia" msgstr "Colombia" #: profile-builder-2.0/admin/manage-fields.php:332 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Comoros" msgstr "Comoros" #: profile-builder-2.0/admin/manage-fields.php:333 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cook Islands" msgstr "Cook Islands" #: profile-builder-2.0/admin/manage-fields.php:334 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Costa Rica" msgstr "Costa Rica" #: profile-builder-2.0/admin/manage-fields.php:335 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Croatia" msgstr "Croatia" #: profile-builder-2.0/admin/manage-fields.php:336 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cuba" msgstr "Cuba" #: profile-builder-2.0/admin/manage-fields.php:337 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Curacao" msgstr "Curacao" #: profile-builder-2.0/admin/manage-fields.php:338 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cyprus" msgstr "Cyprus" #: profile-builder-2.0/admin/manage-fields.php:339 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Czech Republic" msgstr "Czech Republic" #: profile-builder-2.0/admin/manage-fields.php:340 msgid "Democratic Republic of the Congo" msgstr "Democratic Republic of the Congo" #: profile-builder-2.0/admin/manage-fields.php:341 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Denmark" msgstr "Denmark" #: profile-builder-2.0/admin/manage-fields.php:342 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Djibouti" msgstr "Djibouti" #: profile-builder-2.0/admin/manage-fields.php:343 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominica" msgstr "Dominica" #: profile-builder-2.0/admin/manage-fields.php:344 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominican Republic" msgstr "Dominican Republic" #: profile-builder-2.0/admin/manage-fields.php:345 msgid "East Timor" msgstr "East Timor" #: profile-builder-2.0/admin/manage-fields.php:346 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ecuador" msgstr "Ecuador" #: profile-builder-2.0/admin/manage-fields.php:347 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Egypt" msgstr "Egypt" #: profile-builder-2.0/admin/manage-fields.php:348 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "El Salvador" msgstr "El Salvador" #: profile-builder-2.0/admin/manage-fields.php:349 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: profile-builder-2.0/admin/manage-fields.php:350 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Eritrea" msgstr "Eritrea" #: profile-builder-2.0/admin/manage-fields.php:351 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Estonia" msgstr "Estonia" #: profile-builder-2.0/admin/manage-fields.php:352 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ethiopia" msgstr "Ethiopia" #: profile-builder-2.0/admin/manage-fields.php:353 msgid "Falkland Islands" msgstr "Falkland Islands" #: profile-builder-2.0/admin/manage-fields.php:354 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Faroe Islands" msgstr "Faroe Islands" #: profile-builder-2.0/admin/manage-fields.php:355 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Fiji" msgstr "Fiji" #: profile-builder-2.0/admin/manage-fields.php:356 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Finland" msgstr "Finland" #: profile-builder-2.0/admin/manage-fields.php:357 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "France" msgstr "France" #: profile-builder-2.0/admin/manage-fields.php:358 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Guiana" msgstr "French Guiana" #: profile-builder-2.0/admin/manage-fields.php:359 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Polynesia" msgstr "French Polynesia" #: profile-builder-2.0/admin/manage-fields.php:360 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Southern Territories" msgstr "French Southern Territories" #: profile-builder-2.0/admin/manage-fields.php:361 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gabon" msgstr "Gabon" #: profile-builder-2.0/admin/manage-fields.php:362 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gambia" msgstr "Gambia" #: profile-builder-2.0/admin/manage-fields.php:363 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Georgia" msgstr "Georgia" #: profile-builder-2.0/admin/manage-fields.php:364 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Germany" msgstr "Germany" #: profile-builder-2.0/admin/manage-fields.php:365 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ghana" msgstr "Ghana" #: profile-builder-2.0/admin/manage-fields.php:366 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gibraltar" msgstr "Gibraltar" #: profile-builder-2.0/admin/manage-fields.php:367 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greece" msgstr "Greece" #: profile-builder-2.0/admin/manage-fields.php:368 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greenland" msgstr "Greenland" #: profile-builder-2.0/admin/manage-fields.php:369 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Grenada" msgstr "Grenada" #: profile-builder-2.0/admin/manage-fields.php:370 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guadeloupe" msgstr "Guadeloupe" #: profile-builder-2.0/admin/manage-fields.php:371 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guam" msgstr "Guam" #: profile-builder-2.0/admin/manage-fields.php:372 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guatemala" msgstr "Guatemala" #: profile-builder-2.0/admin/manage-fields.php:373 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guernsey" msgstr "Guernsey" #: profile-builder-2.0/admin/manage-fields.php:374 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea" msgstr "Guinea" #: profile-builder-2.0/admin/manage-fields.php:375 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: profile-builder-2.0/admin/manage-fields.php:376 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guyana" msgstr "Guyana" #: profile-builder-2.0/admin/manage-fields.php:377 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Haiti" msgstr "Haiti" #: profile-builder-2.0/admin/manage-fields.php:378 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Heard Island and McDonald Islands" msgstr "Heard Island and McDonald Islands" #: profile-builder-2.0/admin/manage-fields.php:379 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Honduras" msgstr "Honduras" #: profile-builder-2.0/admin/manage-fields.php:380 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hong Kong" msgstr "Hong Kong" #: profile-builder-2.0/admin/manage-fields.php:381 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hungary" msgstr "Hungary" #: profile-builder-2.0/admin/manage-fields.php:382 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iceland" msgstr "Iceland" #: profile-builder-2.0/admin/manage-fields.php:383 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "India" msgstr "India" #: profile-builder-2.0/admin/manage-fields.php:384 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Indonesia" msgstr "Indonesia" #: profile-builder-2.0/admin/manage-fields.php:385 msgid "Iran" msgstr "Iran" #: profile-builder-2.0/admin/manage-fields.php:386 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iraq" msgstr "Iraq" #: profile-builder-2.0/admin/manage-fields.php:387 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ireland" msgstr "Ireland" #: profile-builder-2.0/admin/manage-fields.php:388 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Isle of Man" msgstr "Isle of Man" #: profile-builder-2.0/admin/manage-fields.php:389 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Israel" msgstr "Israel" #: profile-builder-2.0/admin/manage-fields.php:390 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Italy" msgstr "Italy" #: profile-builder-2.0/admin/manage-fields.php:391 msgid "Ivory Coast" msgstr "Ivory Coast" #: profile-builder-2.0/admin/manage-fields.php:392 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jamaica" msgstr "Jamaica" #: profile-builder-2.0/admin/manage-fields.php:393 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Japan" msgstr "Japan" #: profile-builder-2.0/admin/manage-fields.php:394 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jersey" msgstr "Jersey" #: profile-builder-2.0/admin/manage-fields.php:395 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jordan" msgstr "Jordan" #: profile-builder-2.0/admin/manage-fields.php:396 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kazakhstan" msgstr "Kazakhstan" #: profile-builder-2.0/admin/manage-fields.php:397 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kenya" msgstr "Kenya" #: profile-builder-2.0/admin/manage-fields.php:398 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kiribati" msgstr "Kiribati" #: profile-builder-2.0/admin/manage-fields.php:399 msgid "Kosovo" msgstr "Kosovo" #: profile-builder-2.0/admin/manage-fields.php:400 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kuwait" msgstr "Kuwait" #: profile-builder-2.0/admin/manage-fields.php:401 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: profile-builder-2.0/admin/manage-fields.php:402 msgid "Laos" msgstr "Laos" #: profile-builder-2.0/admin/manage-fields.php:403 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Latvia" msgstr "Latvia" #: profile-builder-2.0/admin/manage-fields.php:404 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lebanon" msgstr "Lebanon" #: profile-builder-2.0/admin/manage-fields.php:405 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lesotho" msgstr "Lesotho" #: profile-builder-2.0/admin/manage-fields.php:406 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liberia" msgstr "Liberia" #: profile-builder-2.0/admin/manage-fields.php:407 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Libya" msgstr "Libya" #: profile-builder-2.0/admin/manage-fields.php:408 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liechtenstein" msgstr "Liechtenstein" #: profile-builder-2.0/admin/manage-fields.php:409 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lithuania" msgstr "Lithuania" #: profile-builder-2.0/admin/manage-fields.php:410 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Luxembourg" msgstr "Luxembourg" #: profile-builder-2.0/admin/manage-fields.php:411 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macao" msgstr "Macao" #: profile-builder-2.0/admin/manage-fields.php:412 msgid "Macedonia" msgstr "Macedonia" #: profile-builder-2.0/admin/manage-fields.php:413 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Madagascar" msgstr "Madagascar" #: profile-builder-2.0/admin/manage-fields.php:414 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malawi" msgstr "Malawi" #: profile-builder-2.0/admin/manage-fields.php:415 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malaysia" msgstr "Malaysia" #: profile-builder-2.0/admin/manage-fields.php:416 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Maldives" msgstr "Maldives" #: profile-builder-2.0/admin/manage-fields.php:417 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mali" msgstr "Mali" #: profile-builder-2.0/admin/manage-fields.php:418 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malta" msgstr "Malta" #: profile-builder-2.0/admin/manage-fields.php:419 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Marshall Islands" msgstr "Marshall Islands" #: profile-builder-2.0/admin/manage-fields.php:420 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Martinique" msgstr "Martinique" #: profile-builder-2.0/admin/manage-fields.php:421 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritania" msgstr "Mauritania" #: profile-builder-2.0/admin/manage-fields.php:422 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritius" msgstr "Mauritius" #: profile-builder-2.0/admin/manage-fields.php:423 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mayotte" msgstr "Mayotte" #: profile-builder-2.0/admin/manage-fields.php:424 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mexico" msgstr "Mexico" #: profile-builder-2.0/admin/manage-fields.php:425 msgid "Micronesia" msgstr "Micronesia" #: profile-builder-2.0/admin/manage-fields.php:426 msgid "Moldova" msgstr "Moldova" #: profile-builder-2.0/admin/manage-fields.php:427 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Monaco" msgstr "Monaco" #: profile-builder-2.0/admin/manage-fields.php:428 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mongolia" msgstr "Mongolia" #: profile-builder-2.0/admin/manage-fields.php:429 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montenegro" msgstr "Montenegro" #: profile-builder-2.0/admin/manage-fields.php:430 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montserrat" msgstr "Montserrat" #: profile-builder-2.0/admin/manage-fields.php:431 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Morocco" msgstr "Morocco" #: profile-builder-2.0/admin/manage-fields.php:432 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mozambique" msgstr "Mozambique" #: profile-builder-2.0/admin/manage-fields.php:433 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Myanmar" msgstr "Myanmar" #: profile-builder-2.0/admin/manage-fields.php:434 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Namibia" msgstr "Namibia" #: profile-builder-2.0/admin/manage-fields.php:435 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nauru" msgstr "Nauru" #: profile-builder-2.0/admin/manage-fields.php:436 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nepal" msgstr "Nepal" #: profile-builder-2.0/admin/manage-fields.php:437 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Netherlands" msgstr "Netherlands" #: profile-builder-2.0/admin/manage-fields.php:438 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Caledonia" msgstr "New Caledonia" #: profile-builder-2.0/admin/manage-fields.php:439 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Zealand" msgstr "New Zealand" #: profile-builder-2.0/admin/manage-fields.php:440 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nicaragua" msgstr "Nicaragua" #: profile-builder-2.0/admin/manage-fields.php:441 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niger" msgstr "Niger" #: profile-builder-2.0/admin/manage-fields.php:442 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nigeria" msgstr "Nigeria" #: profile-builder-2.0/admin/manage-fields.php:443 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niue" msgstr "Niue" #: profile-builder-2.0/admin/manage-fields.php:444 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norfolk Island" msgstr "Norfolk Island" #: profile-builder-2.0/admin/manage-fields.php:445 msgid "North Korea" msgstr "North Korea" #: profile-builder-2.0/admin/manage-fields.php:446 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: profile-builder-2.0/admin/manage-fields.php:447 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norway" msgstr "Norway" #: profile-builder-2.0/admin/manage-fields.php:448 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Oman" msgstr "Oman" #: profile-builder-2.0/admin/manage-fields.php:449 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pakistan" msgstr "Pakistan" #: profile-builder-2.0/admin/manage-fields.php:450 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palau" msgstr "Palau" #: profile-builder-2.0/admin/manage-fields.php:451 msgid "Palestinian Territory" msgstr "Palestinian Territory" #: profile-builder-2.0/admin/manage-fields.php:452 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Panama" msgstr "Panama" #: profile-builder-2.0/admin/manage-fields.php:453 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: profile-builder-2.0/admin/manage-fields.php:454 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Paraguay" msgstr "Paraguay" #: profile-builder-2.0/admin/manage-fields.php:455 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Peru" msgstr "Peru" #: profile-builder-2.0/admin/manage-fields.php:456 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Philippines" msgstr "Philippines" #: profile-builder-2.0/admin/manage-fields.php:457 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pitcairn" msgstr "Pitcairn" #: profile-builder-2.0/admin/manage-fields.php:458 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Poland" msgstr "Poland" #: profile-builder-2.0/admin/manage-fields.php:459 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Portugal" msgstr "Portugal" #: profile-builder-2.0/admin/manage-fields.php:460 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Puerto Rico" msgstr "Puerto Rico" #: profile-builder-2.0/admin/manage-fields.php:461 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Qatar" msgstr "Qatar" #: profile-builder-2.0/admin/manage-fields.php:462 msgid "Republic of the Congo" msgstr "Republic of the Congo" #: profile-builder-2.0/admin/manage-fields.php:463 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Reunion" msgstr "Reunion" #: profile-builder-2.0/admin/manage-fields.php:464 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Romania" msgstr "Romania" #: profile-builder-2.0/admin/manage-fields.php:465 msgid "Russia" msgstr "Russia" #: profile-builder-2.0/admin/manage-fields.php:466 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Rwanda" msgstr "Rwanda" #: profile-builder-2.0/admin/manage-fields.php:467 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: profile-builder-2.0/admin/manage-fields.php:468 msgid "Saint Helena" msgstr "Saint Helena" #: profile-builder-2.0/admin/manage-fields.php:469 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts and Nevis" #: profile-builder-2.0/admin/manage-fields.php:470 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Lucia" msgstr "Saint Lucia" #: profile-builder-2.0/admin/manage-fields.php:471 msgid "Saint Martin" msgstr "Saint Martin" #: profile-builder-2.0/admin/manage-fields.php:472 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre and Miquelon" #: profile-builder-2.0/admin/manage-fields.php:473 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent and the Grenadines" #: profile-builder-2.0/admin/manage-fields.php:474 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Samoa" msgstr "Samoa" #: profile-builder-2.0/admin/manage-fields.php:475 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "San Marino" msgstr "San Marino" #: profile-builder-2.0/admin/manage-fields.php:476 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sao Tome and Principe" msgstr "Sao Tome and Principe" #: profile-builder-2.0/admin/manage-fields.php:477 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: profile-builder-2.0/admin/manage-fields.php:478 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Senegal" msgstr "Senegal" #: profile-builder-2.0/admin/manage-fields.php:479 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Serbia" msgstr "Serbia" #: profile-builder-2.0/admin/manage-fields.php:480 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Seychelles" msgstr "Seychelles" #: profile-builder-2.0/admin/manage-fields.php:481 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sierra Leone" msgstr "Sierra Leone" #: profile-builder-2.0/admin/manage-fields.php:482 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Singapore" msgstr "Singapore" #: profile-builder-2.0/admin/manage-fields.php:483 msgid "Sint Maarten" msgstr "Sint Maarten" #: profile-builder-2.0/admin/manage-fields.php:484 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovakia" msgstr "Slovakia" #: profile-builder-2.0/admin/manage-fields.php:485 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovenia" msgstr "Slovenia" #: profile-builder-2.0/admin/manage-fields.php:486 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Solomon Islands" msgstr "Solomon Islands" #: profile-builder-2.0/admin/manage-fields.php:487 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Somalia" msgstr "Somalia" #: profile-builder-2.0/admin/manage-fields.php:488 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Africa" msgstr "South Africa" #: profile-builder-2.0/admin/manage-fields.php:489 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Georgia and the South Sandwich Islands" msgstr "South Georgia and the South Sandwich Islands" #: profile-builder-2.0/admin/manage-fields.php:490 msgid "South Korea" msgstr "South Korea" #: profile-builder-2.0/admin/manage-fields.php:491 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Sudan" msgstr "South Sudan" #: profile-builder-2.0/admin/manage-fields.php:492 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Spain" msgstr "Spain" #: profile-builder-2.0/admin/manage-fields.php:493 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sri Lanka" msgstr "Sri Lanka" #: profile-builder-2.0/admin/manage-fields.php:494 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sudan" msgstr "Sudan" #: profile-builder-2.0/admin/manage-fields.php:495 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Suriname" msgstr "Suriname" #: profile-builder-2.0/admin/manage-fields.php:496 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Svalbard and Jan Mayen" msgstr "Svalbard and Jan Mayen" #: profile-builder-2.0/admin/manage-fields.php:497 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Swaziland" msgstr "Swaziland" #: profile-builder-2.0/admin/manage-fields.php:498 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sweden" msgstr "Sweden" #: profile-builder-2.0/admin/manage-fields.php:499 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Switzerland" msgstr "Switzerland" #: profile-builder-2.0/admin/manage-fields.php:500 msgid "Syria" msgstr "Syria" #: profile-builder-2.0/admin/manage-fields.php:501 msgid "Taiwan" msgstr "Taiwan" #: profile-builder-2.0/admin/manage-fields.php:502 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tajikistan" msgstr "Tajikistan" #: profile-builder-2.0/admin/manage-fields.php:503 msgid "Tanzania" msgstr "Tanzania" #: profile-builder-2.0/admin/manage-fields.php:504 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Thailand" msgstr "Thailand" #: profile-builder-2.0/admin/manage-fields.php:505 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Togo" msgstr "Togo" #: profile-builder-2.0/admin/manage-fields.php:506 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tokelau" msgstr "Tokelau" #: profile-builder-2.0/admin/manage-fields.php:507 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tonga" msgstr "Tonga" #: profile-builder-2.0/admin/manage-fields.php:508 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Trinidad and Tobago" msgstr "Trinidad and Tobago" #: profile-builder-2.0/admin/manage-fields.php:509 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tunisia" msgstr "Tunisia" #: profile-builder-2.0/admin/manage-fields.php:510 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkey" msgstr "Turkey" #: profile-builder-2.0/admin/manage-fields.php:511 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkmenistan" msgstr "Turkmenistan" #: profile-builder-2.0/admin/manage-fields.php:512 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Islands" #: profile-builder-2.0/admin/manage-fields.php:513 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tuvalu" msgstr "Tuvalu" #: profile-builder-2.0/admin/manage-fields.php:514 msgid "U.S. Virgin Islands" msgstr "U.S. Virgin Islands" #: profile-builder-2.0/admin/manage-fields.php:515 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uganda" msgstr "Uganda" #: profile-builder-2.0/admin/manage-fields.php:516 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ukraine" msgstr "Ukraine" #: profile-builder-2.0/admin/manage-fields.php:517 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Arab Emirates" msgstr "United Arab Emirates" #: profile-builder-2.0/admin/manage-fields.php:518 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Kingdom" msgstr "United Kingdom" #: profile-builder-2.0/admin/manage-fields.php:519 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States" msgstr "United States" #: profile-builder-2.0/admin/manage-fields.php:520 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: profile-builder-2.0/admin/manage-fields.php:521 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uruguay" msgstr "Uruguay" #: profile-builder-2.0/admin/manage-fields.php:522 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uzbekistan" msgstr "Uzbekistan" #: profile-builder-2.0/admin/manage-fields.php:523 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Vanuatu" msgstr "Vanuatu" #: profile-builder-2.0/admin/manage-fields.php:524 msgid "Vatican" msgstr "Vatican" #: profile-builder-2.0/admin/manage-fields.php:525 msgid "Venezuela" msgstr "Venezuela" #: profile-builder-2.0/admin/manage-fields.php:526 msgid "Vietnam" msgstr "Vietnam" #: profile-builder-2.0/admin/manage-fields.php:527 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Wallis and Futuna" msgstr "Wallis and Futuna" #: profile-builder-2.0/admin/manage-fields.php:528 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Western Sahara" msgstr "Western Sahara" #: profile-builder-2.0/admin/manage-fields.php:529 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Yemen" msgstr "Yemen" #: profile-builder-2.0/admin/manage-fields.php:530 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zambia" msgstr "Zambia" #: profile-builder-2.0/admin/manage-fields.php:531 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zimbabwe" msgstr "Zimbabwe" #: profile-builder-2.0/admin/manage-fields.php:1219 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." msgstr "Avec Profile Builder Pro v2, vous pouvez afficher différents champs dans les formulaires d'inscription et modifier les profils, en utilisant l'enregistrement multiple et Modifier le module Profil Forms." #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237 msgid "Your account has to be confirmed by an administrator before you can log in." msgstr "Votre compte doit être confirmé par un administrateur avant de pouvoir vous connecter." #: profile-builder-2.0/features/admin-approval/admin-approval.php:216 msgid "Your account has been successfully created!" msgstr "Votre compte à été créé avec succès!" #: profile-builder-2.0/features/functions.php:678 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458 msgid "Please enter a (valid) reCAPTCHA value" msgstr "S'il vous plaît entrer une valeur reCAPTCHA (valide)" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 msgid "Click the BACK button on your browser, and try again." msgstr "Cliquez sur le bouton BACK de votre navigateur, et essayez à nouveau." #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78 #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87 msgid "Sorry, you cannot upload this file type for this field." msgstr "Désolé, vous ne pouvez pas télécharger ce type de fichier pour ce champ." #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94 msgid "An error occurred, please try again later." msgstr "Une erreur est survenue, s'il vous plaît réessayer plus tard." #: profile-builder-2.0/modules/user-listing/userlisting.php:282 msgid "More" msgstr "Plus" #: profile-builder-2.0/modules/user-listing/userlisting.php:376 msgid "You do not have permission to view this user list." msgstr "Vous n'êtes pas autorisé à voir cette liste d'utilisateurs." #: profile-builder-2.0/modules/user-listing/userlisting.php:389 msgid "You do not have the required user role to view this user list." msgstr "Vous n'êtes pas autorisé à voir cette liste d'utilisateurs." #: profile-builder-2.0/modules/user-listing/userlisting.php:2253 msgid "Ascending" msgstr "Ascendant" #: profile-builder-2.0/modules/user-listing/userlisting.php:2254 msgid "Descending" msgstr "Descendant" #: profile-builder-2.0/admin/add-ons.php:148 #: profile-builder-2.0/admin/add-ons.php:248 #: profile-builder-2.0/admin/pms-cross-promotion.php:134 #: profile-builder-2.0/admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "Téléchargez maintenant" #: profile-builder-2.0/admin/admin-functions.php:200 msgid "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. " msgstr "Si vous aimez utiliser %1$s veuillez nous évaluer sur WordPress.org. Plus d'utilisateurs heureux résulte en plus de fonctionnalités, moins de bogues et un meilleur support pour tous." #: profile-builder-2.0/admin/manage-fields.php:82 msgid "Choose one of the supported field types" msgstr "Choisir un des champs supporté" #: profile-builder-2.0/admin/manage-fields.php:84 msgid ". Extra Field Types are available in Hobbyist or PRO versions." msgstr "Des champs additionnels sont disponibles dans les versions Hobbyist et PRO ." #: profile-builder-2.0/admin/manage-fields.php:131 msgid "Site Key" msgstr "Clé pour site" #: profile-builder-2.0/admin/manage-fields.php:131 msgid "The site key from Google, www.google.com/recaptcha" msgstr "La clé du site donné par Google est www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "Secret Key" msgstr "Clé secrète" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "The secret key from Google, www.google.com/recaptcha" msgstr "La clé secrète de Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:1023 msgid "You must enter the site key\n" msgstr "Vous devez saisir la clé du site.\n" #: profile-builder-2.0/admin/manage-fields.php:1025 msgid "You must enter the secret key\n" msgstr "Vous devez entrer la clé secrète\n" #: profile-builder-2.0/admin/add-ons.php:10 #: profile-builder-2.0/admin/add-ons.php:32 msgid "Add-Ons" msgstr "Add-ons" #: profile-builder-2.0/admin/add-ons.php:34 #: profile-builder-2.0/admin/add-ons.php:129 #: profile-builder-2.0/admin/add-ons.php:231 #: profile-builder-2.0/admin/pms-cross-promotion.php:78 #: profile-builder-2.0/admin/pms-cross-promotion.php:114 #: profile-builder-2.0/admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "Activer" #: profile-builder-2.0/admin/add-ons.php:36 #: profile-builder-2.0/admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "Téléchargement et Installation en cours…" #: profile-builder-2.0/admin/add-ons.php:37 #: profile-builder-2.0/admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "Installation terminée" #: profile-builder-2.0/admin/add-ons.php:39 msgid "Add-On is Active" msgstr "Add-On est active." #: profile-builder-2.0/admin/add-ons.php:40 msgid "Add-On has been activated" msgstr "Add-On a été activé." #: profile-builder-2.0/admin/add-ons.php:41 #: profile-builder-2.0/admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "Ré-essayer l'installation" #: profile-builder-2.0/admin/add-ons.php:43 #: profile-builder-2.0/admin/add-ons.php:140 msgid "Add-On is active" msgstr "Add-On est active. " #: profile-builder-2.0/admin/add-ons.php:44 #: profile-builder-2.0/admin/add-ons.php:138 msgid "Add-On is inactive" msgstr "Add-On est inactive" #: profile-builder-2.0/admin/add-ons.php:46 #: profile-builder-2.0/admin/add-ons.php:133 #: profile-builder-2.0/admin/add-ons.php:235 #: profile-builder-2.0/admin/pms-cross-promotion.php:90 #: profile-builder-2.0/admin/pms-cross-promotion.php:118 #: profile-builder-2.0/admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "Désactiver" #: profile-builder-2.0/admin/add-ons.php:47 msgid "Add-On has been deactivated." msgstr "Les Add-On ont été désactivés" #: profile-builder-2.0/admin/add-ons.php:59 msgid "Something went wrong, we could not connect to the server. Please try again later." msgstr "Problème de connection au serveur. Merci de réessayer plus tard." #: profile-builder-2.0/admin/pms-cross-promotion.php:137 #: profile-builder-2.0/admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "Installer maintenant" #: profile-builder-2.0/admin/add-ons.php:153 #: profile-builder-2.0/admin/add-ons.php:251 #: profile-builder-2.0/admin/pms-cross-promotion.php:141 #: profile-builder-2.0/admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "Compatible avec votre version de Profile Builder" #: profile-builder-2.0/admin/add-ons.php:162 msgid "Upgrade Profile Builder" msgstr "Mettre à jour Profile Builder" #: profile-builder-2.0/admin/add-ons.php:163 msgid "Not compatible with Profile Builder" msgstr "Non compatible avec Profile Builder." #: profile-builder-2.0/admin/add-ons.php:171 msgid "Not compatible with your version of Profile Builder." msgstr "Incompatible avec votre version de Profile Builder" #: profile-builder-2.0/admin/add-ons.php:172 msgid "Minimum required Profile Builder version:" msgstr "Version minimum de Profil Builder requise :" #: profile-builder-2.0/admin/add-ons.php:177 msgid "Could not install add-on. Retry or install manually." msgstr "Impossible d'installer l'add-on. Réessayer ouinstaller le manuellement." #: profile-builder-2.0/front-end/default-fields/email/email.php:51 msgid "You must enter a valid email address." msgstr "Vous devez entrer une adresse mail valide." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "Ce nom d'utilisateur est invalide parce qu'elle utilise des caractères illégaux." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "Merci d'entrer un nom d'utilisateur valide." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72 #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85 msgid "Only administrators can see this field on edit profile forms." msgstr "Seuls les administrateurs peuvent voir ce domaine sur les formes modifier de profil." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81 msgid "As an administrator you cannot change your role." msgstr "Comme administrateur, vous ne pouvez pas changer votre rôle." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117 msgid "" "\n" "

            {{username}} has requested a password change via the password reset feature.

            \n" "

            His/her new password is: {{password}}

            \n" msgstr "" "

            {{username}} demandé un changement de mot de passe via la fonction de réinitialisation de mot de passe.

            \n" "

            Son nouveau mot de passe est: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141 msgid "Admin Notification for User Password Reset" msgstr "Autorisation Administrateur pour faire une réinitialisation du mot de passe utilisateur" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46 msgid "Reset Key" msgstr "Touche de réinitialisation" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47 msgid "Reset Url" msgstr "Réinitialisation Url" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48 msgid "Reset Link" msgstr "Lien de réinitialisation " #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204 msgid "" "\n" "

            Someone requested that the password be reset for the following account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            \n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" msgstr "" "

            Quelqu'un a demandé que le mot de passe soit réinitialisé pour le compte suivant: {{site_name}}
            \n" "Nom utilisateur: {{username}}

            \n" "

            Si c'est une erreur, ignorez cet Email et rien ne se produira.

            \n" "

            Pour réinitialiser votre mot de passe visitez l'adresse suivante:
            \n" "{{{reset_link}}}

            \n" "\n" "\n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218 msgid "[{{site_name}}] Password Reset" msgstr "[{{site_name}}] Réinitialisation Mot de passe" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229 msgid "Password Reset Email" msgstr "Email de Réinitialisation Mot de passe" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235 msgid "" "\n" "

            You have successfully reset your password to: {{password}}

            \n" msgstr "" "\n" "

            Votre mot de passe à été réinitialisé avec succès pour: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset Successfully" msgstr "[{{site_name}}] Mot de passe réinitialisé avec succès" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256 msgid "Password Reset Success Email" msgstr "Email de Mot de passe réinitialisé avec succès" #: profile-builder-2.0/modules/user-listing/userlisting.php:159 msgid "User Nicename" msgstr "Pseudo utilisateur" #: pb-add-on-woocommerce/woosync-page.php:80 #: pb-add-on-woocommerce/woosync-page.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:499 msgid "None" msgstr "Aucun" #: profile-builder-2.0/admin/admin-functions.php:132 msgid "ERROR: The password must have the minimum length of %s characters" msgstr "ERREUR: Le mot de passe doit avoir au minimum %s caractères" #: profile-builder-2.0/admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr "ERREUR: Le mot de passe doit avoir une force minimum de %s" #: profile-builder-2.0/admin/general-settings.php:179 msgid "Username and Email" msgstr "Nom utilisateur et Email" #: profile-builder-2.0/admin/general-settings.php:184 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "«Nom d'utilisateur et E-mail\" - les utilisateurs peuvent s'identifier à la fois avec le Nom d'utilisateur et l'E-mail." #: profile-builder-2.0/admin/general-settings.php:185 msgid "\"Username\" - users can Log In only with Username." msgstr "\"Nom utilisateur\" - les utilisateurs peuvent se connecter uniquement avec leur Nom d'utilisateur." #: profile-builder-2.0/admin/general-settings.php:186 msgid "\"Email\" - users can Log In only with Email." msgstr "\"E-mail\" - les utilisateurs peuvent se connecter uniquement avec leur E-mail." #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "Spécifiez l'extension(s) que vous souhaitez limiter en téléchargement
            Example: .ext1,.ext2,.ext3
            Si non spécifié, par défaut les extensions suivantes: .jpg,.jpeg,.gif,.png (.*)" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)" msgstr "Spécifiez l'extension(s) que vous souhaitez limiter au téléchargement
            Exemple: .ext1, .ext2, .ext3
            Si non spécifié, toutes les extensions de fichiers WordPress sont autorisées par défaut(.*)" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "User Roles" msgstr "Rôles de l'utilisateur" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "Sélectionnez quels rôles utilisateur à montrer à l'utilisateur (glisser-déposer pour réorganiser)" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "User Roles Order" msgstr "Ordre des Rôles utilisateur " #: profile-builder-2.0/admin/manage-fields.php:136 msgid "Save the user role order from the user roles checkboxes" msgstr "Enregistrer l'ordre des rôles d'utilisateurs à partir des cases à cocher" #: profile-builder-2.0/admin/manage-fields.php:1128 msgid "Please select at least one user role\n" msgstr "S'il vous plaît sélectionner au moins un rôle utilisateur \n" #: profile-builder-2.0/admin/register-version.php:22 msgid "Profile Builder Register" msgstr "Inscription Profil Builder" #: profile-builder-2.0/admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "Le numéro de série est bientôt sur le point d'expirer!" #: profile-builder-2.0/admin/register-version.php:81 msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr "Votre numéro de série est sur le point d'expirer, s'il vous plaît %1$s Renouvelez votre licence %2$s." #: profile-builder-2.0/admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr "Votre numéro de série est expiré, s'il vous plaît %1$s Renouvelez votre licence %2$s." #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 msgid "Add Entry" msgstr "Ajouter une entrée" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 msgid "show" msgstr "Montrer" #: profile-builder-2.0/features/functions.php:736 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" msgstr "Pour permettre aux utilisateurs de s'enregistrer sur votre site via Profile Builder, vous devez d'abord activer l'enregistrement des utilisateurs. Aller à %1$s Paramètres Network %2$s, et sous Paramètres d'enregistrement assurez-vous de vérifier \"Les comptes utilisateur peuvent être enregistrés». %3$s Renvoyer %4$s" #: profile-builder-2.0/front-end/class-formbuilder.php:659 msgid "User to edit:" msgstr "Utilisateur à modifier :" #: profile-builder-2.0/front-end/default-fields/password/password.php:46 #: profile-builder-2.0/front-end/recover.php:262 msgid "The password must have the minimum length of %s characters" msgstr "Le mot de passe doit avoir une longueur minimale de %s caractères" #: profile-builder-2.0/front-end/default-fields/password/password.php:50 #: profile-builder-2.0/front-end/recover.php:266 msgid "The password must have a minimum strength of %s" msgstr "Le mot de passe doit avoir une résistance minimale de %s" #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118 msgid "You cannot register this user role" msgstr "Vous ne pouvez pas enregistrer ce rôle d'utilisateur" #: profile-builder-2.0/front-end/login.php:153 msgid "username or email" msgstr "Pseudo ou Email" #: profile-builder-2.0/front-end/login.php:222 msgid "Username or Email" msgstr "Pseudo ou Email" #: profile-builder-2.0/front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "Vous êtes actuellement connecté en tant que %s." #: profile-builder-2.0/front-end/logout.php:15 msgid "Log out »" msgstr "Déconnexion »" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "Rôle utilisateur" #: profile-builder-2.0/modules/user-listing/userlisting.php:2167 msgid "View all extra shortcode parameters" msgstr "Voir tous les paramètres des shortcodes supplémentaires" #: profile-builder-2.0/modules/user-listing/userlisting.php:2181 msgid "displays only the users that you specified the user_id for" msgstr "affiche uniquement les utilisateurs dont vous avez spécifié l'ID utilisateur" #: profile-builder-2.0/modules/user-listing/userlisting.php:2187 msgid "displays all users except the ones you specified the user_id for" msgstr "affiche tous les utilisateurs, sauf ceux dont vous avez spécifié l'ID" #: profile-builder-2.0/features/functions.php:566 msgid "Minimum length of %d characters" msgstr "Longueur minimale de %d caractères" #: profile-builder-2.0/front-end/class-formbuilder.php:146 #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "This message is only visible by administrators" msgstr "Ce message n'est visible que par les administrateurs." #: profile-builder-2.0/modules/user-listing/userlisting.php:413 msgid "User not found" msgstr "Utilisateur introuvable." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "Tags valides {{reply_to}} et {{site_name}}" #: profile-builder-2.0/admin/admin-bar.php:48 msgid "Choose which user roles view the admin bar in the front-end of the website." msgstr "Choisir quels rôles-utilisateurs peuvent voir la barre administration sur l'interface client du site web." #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes" msgstr "Entrez une liste de valeurs séparées par une virgule.
            Cela peut être n'importe quoi, puisque c'est masqué pour l'utilisateur, mais ça ne devrait pas contenir de caractères spéciaux ni d'apostrophes." #: profile-builder-2.0/admin/manage-fields.php:1055 msgid "The meta-name cannot be empty\n" msgstr "Le méta-nom ne peut pas être vide\n" #: profile-builder-2.0/admin/register-version.php:69 msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received" msgstr "Maintenant que vous possédez une copie de %s, vous devriez prendre le temps de l'enregistrer avec le numéro de série que vous avez reçu." #: profile-builder-2.0/admin/register-version.php:243 msgid "

            Your Profile Builder serial number is invalid or missing.
            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

            " msgstr "

            Votre numéro de série de Profile Builder est invalide ou manquant.
            Merci d' %1$s enregistrer votre copie%2$s pour recevoir automatiquement mises à jour et supports. Besoin d'une licence ? %3$sAchetez la maintenant%4$s

            " #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17 #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60 msgid "...Choose" msgstr "...Choisir" #: profile-builder-2.0/features/class-list-table.php:526 #: profile-builder-2.0/features/class-list-table.php:942 msgid "1 item" msgstr "1 élément" #: profile-builder-2.0/features/functions.php:552 msgid "Very Weak" msgstr "Très faible" #: profile-builder-2.0/features/functions.php:640 msgid "This field is required" msgstr "Ce champ est obligatoire" #: profile-builder-2.0/features/functions.php:704 msgid "Cancel" msgstr "Annuler" #: profile-builder-2.0/features/functions.php:740 msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s" msgstr "Pour autoriser les utilisateurs de s'inscrire sur le site via Profile Builder, vous devez permettre l'enregistrement des utilisateurs. Allez à %1$sSettings -> General%2$s et cocher la case \" Tout le monde peut s'enregistrer\". %3$sEffacer%4$s" #: profile-builder-2.0/front-end/login.php:144 msgid "Invalid username." msgstr "Nom d'utilisateur non-valide." #: profile-builder-2.0/front-end/login.php:149 #: profile-builder-2.0/front-end/login.php:153 msgid "username" msgstr "nom d'utilisateur" #: profile-builder-2.0/front-end/login.php:149 msgid "email" msgstr "email" #: profile-builder-2.0/front-end/login.php:256 msgid "Lost your password?" msgstr "Mot de passe perdu?" #: profile-builder-2.0/index.php:34 msgid " is also activated. You need to deactivate it before activating this version of the plugin." msgstr "est aussi activé. Vous devez le désactiver avec d'activer cette version de l'extension." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54 msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email" msgstr "Ce doit être une adresse Mail valide ou bien le tag {{reply_to}} par défaut de l'adresse Mail de l'administrateur." #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508 msgid "Your selected password at signup" msgstr "Votre mot de passe sélectionné lors de l'inscription" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save." msgstr "Ces réglages sont également sauvegardés dans la page des réglages de \"Customisation du Mail de l'Administrateur\"." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "Ce formulaire est vide." #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "Supprimer tous les éléments" #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all" msgstr "Tout supprimer" #: profile-builder-2.0/modules/user-listing/userlisting.php:1621 msgid "Choose..." msgstr "Choisir..." #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Set the number of users to be displayed on every paginated part of the all-userlisting" msgstr "Préciser le nombre d'utilisateurs à afficher sur chaque page de la liste des utilisateurs." #: profile-builder-2.0/admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "Afficher/masquer la barre Administration sur l'interface client" #: profile-builder-2.0/admin/admin-bar.php:10 #: profile-builder-2.0/admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "Paramètres de la barre Administration" #: profile-builder-2.0/admin/admin-bar.php:57 msgid "User-Role" msgstr "Rôle-Utilisateur" #: profile-builder-2.0/admin/admin-bar.php:58 msgid "Visibility" msgstr "Visibilité" #: profile-builder-2.0/admin/admin-bar.php:73 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "Par défaut" #: profile-builder-2.0/admin/admin-bar.php:74 msgid "Show" msgstr "Afficher" #: profile-builder-2.0/admin/admin-bar.php:75 #: profile-builder-2.0/modules/user-listing/userlisting.php:1554 msgid "Hide" msgstr "Masquer" #: pb-add-on-woocommerce/woosync-page.php:147 #: profile-builder-2.0/admin/admin-bar.php:86 #: profile-builder-2.0/admin/general-settings.php:224 #: profile-builder-2.0/admin/register-version.php:95 #: profile-builder-2.0/features/functions.php:697 #: profile-builder-2.0/modules/modules.php:127 msgid "Save Changes" msgstr "Enregistrer les modifications" #: profile-builder-2.0/admin/admin-functions.php:37 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 )" msgstr "La connexion se fera avec votre adresse de messagerie. Ce champ n'apparaîtra PAS sur l'interface client ! ( vous pouvez changer ces paramètres dans l'onglet \"%s\" )" #: profile-builder-2.0/admin/admin-functions.php:37 #: profile-builder-2.0/admin/general-settings.php:10 #: profile-builder-2.0/admin/general-settings.php:35 msgid "General Settings" msgstr "Paramètres Généraux" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:210 msgid "Very weak" msgstr "Très faible" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:211 #: profile-builder-2.0/features/functions.php:552 msgid "Weak" msgstr "Faible" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:212 #: profile-builder-2.0/features/functions.php:552 msgid "Medium" msgstr "Moyen" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:213 #: profile-builder-2.0/features/functions.php:552 msgid "Strong" msgstr "Fort" #: profile-builder-2.0/admin/admin-functions.php:187 msgid "Add Field" msgstr "Ajouter un Champ" #: profile-builder-2.0/admin/admin-functions.php:189 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390 msgid "Save Settings" msgstr "Enregistrer les Paramètres" #: profile-builder-2.0/admin/basic-info.php:10 msgid "Basic Information" msgstr "Informations de base" #: profile-builder-2.0/admin/basic-info.php:29 msgid "Version %s" msgstr "Version %s" #: profile-builder-2.0/admin/basic-info.php:30 msgid "Profile Builder " msgstr "Profile Builder " #: profile-builder-2.0/admin/basic-info.php:31 msgid "The best way to add front-end registration, edit profile and login forms." msgstr "Le meilleur moyen d'ajouter une inscription via l'interface client, de modifier un profil et des formulaires de connexion." #: profile-builder-2.0/admin/basic-info.php:33 msgid "For Modern User Interaction" msgstr "Pour une Interaction Utilisateur Moderne" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25 #: profile-builder-2.0/admin/basic-info.php:36 #: profile-builder-2.0/features/login-widget/login-widget.php:59 msgid "Login" msgstr "Identification" #: profile-builder-2.0/admin/basic-info.php:40 msgid "Registration" msgstr "Inscription" #: profile-builder-2.0/admin/basic-info.php:44 msgid "Edit Profile" msgstr "Modifier le Profil" #: profile-builder-2.0/admin/basic-info.php:51 msgid "Extra Features" msgstr "Fonctionnalités supplémentaires" #: profile-builder-2.0/admin/basic-info.php:52 msgid "Features that give you more control over your users, increased security and help you fight user registration spam." msgstr "Des fonctionnalités qui vous donnent plus de contrôle sur vos utilisateurs, une sécurité renforcée et qui vous aident à lutter contre le spam d'inscription d'utilisateurs." #: profile-builder-2.0/admin/basic-info.php:53 msgid "Enable extra features" msgstr "Activer les fonctionnalités supplémentaires" #: profile-builder-2.0/admin/basic-info.php:57 msgid "Recover Password" msgstr "Récupérer le Mot De Passe" #: profile-builder-2.0/admin/basic-info.php:61 msgid "Admin Approval (*)" msgstr "Approbation par l'Administrateur" #: profile-builder-2.0/admin/basic-info.php:62 msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI." msgstr "Vous décidez qui est un utilisateur sur votre site. Soyez informé par e-mail ou approuvez plusieurs utilisateurs d'un coup à partir de l'IU WordPress." #: profile-builder-2.0/admin/basic-info.php:65 msgid "Email Confirmation" msgstr "Confirmation de l'adresse de messagerie" #: profile-builder-2.0/admin/basic-info.php:66 msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address." msgstr "S'assurer que les utilisateurs s'incrivent avec des adresses de messagerie authentiques. Lors de l'inscription, un e-mail sera envoyé aux utilisateurs afin de confirmer leur adresse de messagerie." #: profile-builder-2.0/admin/basic-info.php:69 msgid "Minimum Password Length and Strength Meter" msgstr "Longueur Minimale du Mot De Masse et Métrique de Sûreté" #: profile-builder-2.0/admin/basic-info.php:70 msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength." msgstr "Eliminer les mots de passe trop faibles en imposant une longueur minimale et un niveau de sûreté minimum." #: profile-builder-2.0/admin/basic-info.php:73 msgid "Login with Email or Username" msgstr "Se connecter avec une adresse de messagerie ou avec le nom d'utilisateur" #: profile-builder-2.0/admin/basic-info.php:74 msgid "Allow users to log in with their email or username when accessing your site." msgstr "Autoriser les utilisateurs à se connecter avec leur adresse de messagerie ou leur nom d'utilisateur lorsqu'ils accèdent à votre site." #: profile-builder-2.0/admin/basic-info.php:87 msgid "Customize Your Forms The Way You Want (*)" msgstr "Personnaliser Vos Formulaires Comme Vous Le Souhaitez (*)" #: profile-builder-2.0/admin/basic-info.php:88 msgid "With Extra Profile Fields you can create the exact registration form your project needs." msgstr "Avec les champs supplémentaires de profil vous pouvez créer le formulaire exact d'inscription dont votre projet a besoin." #: profile-builder-2.0/admin/basic-info.php:90 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "Les champs supplémentaires de profil sont disponibles dans les version Hobbyist ou PRO." #: profile-builder-2.0/admin/basic-info.php:92 msgid "Get started with extra fields" msgstr "Bien commencer avec les champs supplémentaires" #: profile-builder-2.0/admin/basic-info.php:95 msgid "Avatar Upload" msgstr "Téléchargement d'avatar" #: profile-builder-2.0/admin/basic-info.php:96 msgid "Generic Uploads" msgstr "Téléchargements Génériques" #: profile-builder-2.0/admin/basic-info.php:97 msgid "Agree To Terms Checkbox" msgstr "Accepter les conditions par une case à cocher" #: profile-builder-2.0/admin/basic-info.php:98 msgid "Datepicker" msgstr "Outil de sélection de date" #: profile-builder-2.0/admin/basic-info.php:101 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: profile-builder-2.0/admin/basic-info.php:102 msgid "Country Select" msgstr "Sélection du Pays" #: profile-builder-2.0/admin/basic-info.php:104 msgid "Timezone Select" msgstr "Sélection du Fuseau Horaire" #: profile-builder-2.0/admin/basic-info.php:108 msgid "Input / Hidden Input" msgstr "Entrée visible / Entrée cachée" #: profile-builder-2.0/admin/basic-info.php:110 msgid "Checkbox" msgstr "Case à cocher" #: profile-builder-2.0/admin/basic-info.php:111 msgid "Select" msgstr "Liste déroulante" #: profile-builder-2.0/admin/basic-info.php:112 msgid "Radio Buttons" msgstr "Boutons Radio" #: profile-builder-2.0/admin/basic-info.php:113 msgid "Textarea" msgstr "Zone de Texte" #: profile-builder-2.0/admin/basic-info.php:125 msgid "Powerful Modules (**)" msgstr "Des Modules Puissants (**)" #: profile-builder-2.0/admin/basic-info.php:126 msgid "Everything you will need to manage your users is probably already available using the Pro Modules." msgstr "Tout ce dont vous aurez besoin pour gérer vos utilisateurs est probablement déjà disponible dans les Modules Pro." #: profile-builder-2.0/admin/basic-info.php:128 msgid "Enable your modules" msgstr "Activer vos modules" #: profile-builder-2.0/admin/basic-info.php:131 msgid "Find out more about PRO Modules" msgstr "Découvrez les Modules PRO" #: profile-builder-2.0/admin/basic-info.php:136 #: profile-builder-2.0/modules/modules.php:89 #: profile-builder-2.0/modules/user-listing/userlisting.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:12 #: profile-builder-2.0/modules/user-listing/userlisting.php:17 #: profile-builder-2.0/modules/user-listing/userlisting.php:23 msgid "User Listing" msgstr "Listing d'utilisateurs" #: profile-builder-2.0/admin/basic-info.php:138 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." msgstr "Facile pour modifier les modèles permettant de lister les utilisateurs de votre site web tout comme créer des formulaires pour un seul utilisateur. Basé sur des shortcodes, offrant de nombreuses options pour personnaliser vos listings." #: profile-builder-2.0/admin/basic-info.php:144 msgid "Email Customizer" msgstr "Outil de personnalisation d'e-mails" #: profile-builder-2.0/admin/basic-info.php:145 msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval." msgstr "Personnalisez tous les e-mails envoyés à vos utilisateurs ou administrateurs. Au moment de l'inscription, de la confirmation de l'adresse de messagerie, de l'approbation / rejet par les administrateurs." #: profile-builder-2.0/admin/basic-info.php:148 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33 #: profile-builder-2.0/modules/modules.php:110 msgid "Custom Redirects" msgstr "Redirections personnalisées" #: profile-builder-2.0/admin/basic-info.php:149 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." msgstr "Laissez vos utilisateurs hors du tableau de bord WordPress, redirigez-les sur la page d'accueil après qu'ils se sont identifiés ou inscrits, tout en quelques quelques clics." #: profile-builder-2.0/admin/basic-info.php:154 #: profile-builder-2.0/modules/modules.php:75 msgid "Multiple Registration Forms" msgstr "Formulaires Multiples d'Inscription" #: profile-builder-2.0/admin/basic-info.php:155 msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users." msgstr "Mettez en place des formulaires multiples d'inscription avec différents champs suivant les rôles utilisateur. Capturez des informations variées à partir de divers types d'utilisateurs." #: profile-builder-2.0/admin/basic-info.php:158 #: profile-builder-2.0/modules/modules.php:82 msgid "Multiple Edit-profile Forms" msgstr "Formulaires Multiples de Modification de Profil" #: profile-builder-2.0/admin/basic-info.php:159 msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles." msgstr "Autorisez différents rôles-utilisateur à modifier les informations qui leur sont spécifiques. Mettez en place des formulaires multiples de modification de profil avec des champs différents suivant les rôles utilisateurs." #: profile-builder-2.0/admin/basic-info.php:187 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr "* disponible uniquement dans les versions %1$sHobbyist et Pro %2$s." #: profile-builder-2.0/admin/basic-info.php:188 msgid "** only available in the %1$sPro version%2$s." msgstr "** disponible uniquement dans la version %1$sPro %2$s." #: profile-builder-2.0/admin/general-settings.php:39 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "Charge le fichier CSS de Profile Builder sur l'interface cliente:" #: profile-builder-2.0/admin/general-settings.php:42 #: profile-builder-2.0/admin/general-settings.php:55 #: profile-builder-2.0/admin/general-settings.php:104 #: profile-builder-2.0/admin/general-settings.php:151 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Yes" msgstr "Oui" #: profile-builder-2.0/admin/general-settings.php:44 msgid "You can find the default file here: %1$s" msgstr "Vous pouvez trouver le fichier par défaut ici: %1$s" #: profile-builder-2.0/admin/general-settings.php:51 msgid "\"Email Confirmation\" Activated:" msgstr "\"Confirmation par e-mail\" Activée:" #: profile-builder-2.0/admin/general-settings.php:56 #: profile-builder-2.0/admin/general-settings.php:105 #: profile-builder-2.0/admin/general-settings.php:150 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "No" msgstr "Non" #: profile-builder-2.0/admin/general-settings.php:61 msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s." msgstr "Vous pouvez trouver une liste d'adresses de messagerie non-confirmées sous %1$sUtilisateurs > Tous les Utilisateurs > Confirmation de l'adresse de messagerie %2$s." #: profile-builder-2.0/admin/general-settings.php:69 msgid "\"Email Confirmation\" Landing Page:" msgstr "Page d'arrivée après \"Confirmation de l'adresse de messagerie\":" #: profile-builder-2.0/admin/general-settings.php:74 msgid "Existing Pages" msgstr "Pages existantes" #: profile-builder-2.0/admin/general-settings.php:89 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." msgstr "Spécifie la page vers laquelle les utilisateurs seront redirigés après avoir confirmé leur adresse de messagerie. Cette page peut être différente suivant la ou les page(s) d'inscription et peut être changée à n'importe quel moment. Si aucune n'est sélectionnée, une page de confirmation simple sera affichée à l'utilisateur." #: profile-builder-2.0/admin/general-settings.php:100 msgid "\"Admin Approval\" Activated:" msgstr "\"Approbation par l'Admin\" Activée:" #: profile-builder-2.0/admin/general-settings.php:108 msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "Vous pouvez trouver une liste d'utilisateurs à %1$sUtilisateurs > Tous les Utilisateurs > Approbation par l'Admin %2$s." #: profile-builder-2.0/admin/general-settings.php:165 msgid "\"Admin Approval\" Feature:" msgstr "Fonctionnalité \"Approbation par l'Admin\":" #: profile-builder-2.0/admin/general-settings.php:168 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." msgstr "Vous décidez qui est utilisateur sur votre site. Soyez informé par e-mail ou approuvez plusieurs utilisateurs d'un coup à partir de l'IU WordPress. Activer l'approbation Admin en évoluant vers les versions %1$sHobbyist ou PRO %2$s." #: profile-builder-2.0/admin/general-settings.php:175 msgid "Allow Users to Log in With:" msgstr "Permet aux utilisateurs à se connecter avec :" #: profile-builder-2.0/admin/general-settings.php:180 #: profile-builder-2.0/admin/manage-fields.php:201 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167 #: profile-builder-2.0/front-end/login.php:85 #: profile-builder-2.0/front-end/login.php:99 #: profile-builder-2.0/front-end/login.php:218 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28 #: profile-builder-2.0/modules/user-listing/userlisting.php:102 #: profile-builder-2.0/modules/user-listing/userlisting.php:277 #: profile-builder-2.0/modules/user-listing/userlisting.php:730 #: profile-builder-2.0/modules/user-listing/userlisting.php:2219 msgid "Username" msgstr "Nom d'utilisateur" #: profile-builder-2.0/admin/general-settings.php:181 #: profile-builder-2.0/front-end/login.php:215 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29 #: profile-builder-2.0/modules/user-listing/userlisting.php:736 #: profile-builder-2.0/modules/user-listing/userlisting.php:2220 msgid "Email" msgstr "Adresse de messagerie" #: profile-builder-2.0/admin/general-settings.php:193 msgid "Minimum Password Length:" msgstr "Longueur minimale du Mot de Passe :" #: profile-builder-2.0/admin/general-settings.php:198 msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit" msgstr "Entrez le nombre minimum de caractères que le mot de passe doit avoir. Laissez ce champ vide si vous ne voulez aucune limite minimale" #: profile-builder-2.0/admin/general-settings.php:205 msgid "Minimum Password Strength:" msgstr "Sûreté minimale du Mot de Passe:" #: profile-builder-2.0/admin/general-settings.php:209 msgid "Disabled" msgstr "Désactivé" #: profile-builder-2.0/admin/manage-fields.php:12 msgid "Manage Fields" msgstr "Gérez les Champs" #: profile-builder-2.0/admin/manage-fields.php:13 msgid "Manage Default and Extra Fields" msgstr "Gérez les Champs par défaut et les Champs supplémentaires" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Field Title" msgstr "Titre du champ" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Title of the field" msgstr "Titre du champ" #: profile-builder-2.0/admin/manage-fields.php:119 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "Champ" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Meta-name" msgstr "Meta-nom" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "ID" msgstr "ID" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be edited" msgstr "Un identifiant unique, généré automatiquement, pour ce champ particulier
            Vous pouvez utiliser ceci en lien avec les filtres pour cibler cet élément si besoin
            Ne peut être modifié" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Description" msgstr "Description" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Enter a (detailed) description of the option for end users to read
            Optional" msgstr "Entrez une description (détaillée) de l'option que les utilisateurs finaux pourront lire
            Optionnel" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Row Count" msgstr "Nombre de Lignes" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5" msgstr "Spécifiez les nombre de lignes pour un champ 'Zone de Texte'
            Si vous ne spécifiez pas de champ, la valeur par défaut sera de 5" #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Allowed Image Extensions" msgstr "Extensions Autorisées des Images" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Allowed Upload Extensions" msgstr "Extensions Autorisées au Téléchargement" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Avatar Size" msgstr "Taille de l'Avatar" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100" msgstr "Entrez une valeur (entre 20 et 200) pour la taille de l'Avatar
            Si aucune valeur n'est spécifiée, la valeur par défaut sera de 100" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Date-format" msgstr "Format de la date" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Terms of Agreement" msgstr "Conditions Générales" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Enter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>" msgstr "Entrez une description détaillée des conditions générales que l'utilisateur pourra lire.
            Vous pouvez utiliser des liens via la syntaxe standard HTML: <a href=\"url_personnalisee\">texte_personnalise</a>" #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Options" msgstr "Options" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Labels" msgstr "Labels" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "Entrez une liste de labels séparés par une virgule
            Visible par l'utilisateur" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default Value" msgstr "Valeur Par Défaut" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default value of the field" msgstr "Valeur par défaut du champ" #: profile-builder-2.0/admin/manage-fields.php:138 #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default Option" msgstr "Option Par Défaut" #: profile-builder-2.0/admin/manage-fields.php:138 msgid "Specify the option which should be selected by default" msgstr "Spécifiez l'option qui devrait être sélectionnée par défaut" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Default Option(s)" msgstr "Option(s) Par Défaut" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)" msgstr "Spécifiez l'option qui devrait être cochée par défaut
            S'il y a plusieurs valeurs, séparez-les par une ',' (virgule)" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default Content" msgstr "Contenu Par Défaut" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default value of the textarea" msgstr "Valeur par défaut de la zone de texte" #: pb-add-on-woocommerce/index.php:306 #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Required" msgstr "Obligatoire" #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Whether the field is required or not" msgstr "Si le champ est obligatoire ou pas" #: profile-builder-2.0/admin/manage-fields.php:161 msgid "Overwrite Existing" msgstr "Ecraser l'existant" #: profile-builder-2.0/admin/manage-fields.php:161 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
            Use this at your own risk" msgstr "Sélectionner 'Oui' ajoutera le champ à la liste, mais écrasera n'importe quel autre champ dans la base de données qui aurait le même méta-nom
            A utiliser à vos risques et périls" #: profile-builder-2.0/admin/manage-fields.php:167 msgid "Field Properties" msgstr "Propriétés du Champ" #: profile-builder-2.0/admin/manage-fields.php:181 msgid "Registration & Edit Profile" msgstr "Inscription & Modification de Profil" #: profile-builder-2.0/admin/manage-fields.php:200 msgid "Name" msgstr "Nom" #: profile-builder-2.0/admin/manage-fields.php:201 msgid "Usernames cannot be changed." msgstr "Les noms d'utillisateur ne peuvent pas être modifiés." #: pb-add-on-woocommerce/billing-fields.php:6 #: pb-add-on-woocommerce/shipping-fields.php:6 #: profile-builder-2.0/admin/manage-fields.php:202 msgid "First Name" msgstr "Prénom" #: pb-add-on-woocommerce/billing-fields.php:7 #: pb-add-on-woocommerce/shipping-fields.php:7 #: profile-builder-2.0/admin/manage-fields.php:203 msgid "Last Name" msgstr "Nom de famille" #: profile-builder-2.0/admin/manage-fields.php:204 #: profile-builder-2.0/modules/user-listing/userlisting.php:769 #: profile-builder-2.0/modules/user-listing/userlisting.php:2227 msgid "Nickname" msgstr "Pseudonyme" #: profile-builder-2.0/admin/manage-fields.php:205 msgid "Display name publicly as" msgstr "Nom publique" #: profile-builder-2.0/admin/manage-fields.php:206 msgid "Contact Info" msgstr "Informations de contact" #: profile-builder-2.0/admin/manage-fields.php:207 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168 #: profile-builder-2.0/front-end/recover.php:118 #: profile-builder-2.0/modules/user-listing/userlisting.php:108 msgid "E-mail" msgstr "Adresse de messagerie" #: profile-builder-2.0/admin/manage-fields.php:208 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32 #: profile-builder-2.0/modules/user-listing/userlisting.php:111 #: profile-builder-2.0/modules/user-listing/userlisting.php:751 #: profile-builder-2.0/modules/user-listing/userlisting.php:2221 msgid "Website" msgstr "Site web" #: profile-builder-2.0/admin/manage-fields.php:212 msgid "AIM" msgstr "AIM" #: profile-builder-2.0/admin/manage-fields.php:213 msgid "Yahoo IM" msgstr "Yahoo IM" #: profile-builder-2.0/admin/manage-fields.php:214 msgid "Jabber / Google Talk" msgstr "Jabber / Google Talk" #: profile-builder-2.0/admin/manage-fields.php:217 msgid "About Yourself" msgstr "A propos de vous" #: profile-builder-2.0/admin/manage-fields.php:218 #: profile-builder-2.0/modules/user-listing/userlisting.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:754 #: profile-builder-2.0/modules/user-listing/userlisting.php:2222 msgid "Biographical Info" msgstr "Informations biographiques" #: profile-builder-2.0/admin/manage-fields.php:218 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "Partagez quelques informations biographiques pour compléter votre profil. Ceci peut être affiché publiquement." #: profile-builder-2.0/admin/manage-fields.php:219 #: profile-builder-2.0/front-end/recover.php:73 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "Mot de passe" #: profile-builder-2.0/admin/manage-fields.php:219 msgid "Type your password." msgstr "Tapez votre mot de passe." #: profile-builder-2.0/admin/manage-fields.php:220 #: profile-builder-2.0/front-end/recover.php:74 msgid "Repeat Password" msgstr "Répétez votre mot de passe" #: profile-builder-2.0/admin/manage-fields.php:220 msgid "Type your password again. " msgstr "Re-tapez votre mot de passe." #: profile-builder-2.0/admin/manage-fields.php:980 #: profile-builder-2.0/admin/manage-fields.php:1137 msgid "You must select a field\n" msgstr "Vous devez sélectionner un champ\n" #: profile-builder-2.0/admin/manage-fields.php:990 msgid "Please choose a different field type as this one already exists in your form (must be unique)\n" msgstr "Merci de choisir un champ différent, car celui-ci existe déjà dans votre formulaire (et il doit être unique)\n" #: profile-builder-2.0/admin/manage-fields.php:1001 msgid "The entered avatar size is not between 20 and 200\n" msgstr "La taille de l'avatar n'est pas comprise entre 20 et 200\n" #: profile-builder-2.0/admin/manage-fields.php:1004 msgid "The entered avatar size is not numerical\n" msgstr "La taille de l'avatar n'est pas une valeur numérique\n" #: profile-builder-2.0/admin/manage-fields.php:1012 msgid "The entered row number is not numerical\n" msgstr "Le numéro entré pour la ligne n'est pas numérique\n" #: profile-builder-2.0/admin/manage-fields.php:1015 msgid "You must enter a value for the row number\n" msgstr "Vous devez entrer une valeur pour le numéro de la ligne\n" #: profile-builder-2.0/admin/manage-fields.php:1036 msgid "The entered value for the Datepicker is not a valid date-format\n" msgstr "La valeur entrée pour l'outil de sélection de date ne respecte pas le format de date\n" #: profile-builder-2.0/admin/manage-fields.php:1039 msgid "You must enter a value for the date-format\n" msgstr "Vous devez entrer une valeur de formattage de date\n" #: profile-builder-2.0/admin/manage-fields.php:1067 #: profile-builder-2.0/admin/manage-fields.php:1075 #: profile-builder-2.0/admin/manage-fields.php:1086 msgid "That meta-name is already in use\n" msgstr "Le meta-nom est déjà utilisé\n" #: profile-builder-2.0/admin/manage-fields.php:1117 msgid "The following option(s) did not coincide with the ones in the options list: %s\n" msgstr "Le(s) options(s) suivante(s) n'a(ont) pas coïncidé pas avec celles de la liste d'options : %s\n" #: profile-builder-2.0/admin/manage-fields.php:1121 msgid "The following option did not coincide with the ones in the options list: %s\n" msgstr "L'option suivante n'a pas coïncidé avec celles de la liste d'options: %s\n" #: profile-builder-2.0/admin/manage-fields.php:1144 msgid "That field is already added in this form\n" msgstr "Ce champ a déjà été ajouté à ce formulaire\n" #: profile-builder-2.0/admin/manage-fields.php:1193 msgid "
            Title
            Type
            Meta Name
            Required
            " msgstr "
            Titre
            Type
            Meta-nom
            Obligatoire
            " #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108 #: profile-builder-2.0/features/functions.php:718 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Edit" msgstr "Editer" #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217 #: profile-builder-2.0/features/functions.php:711 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "Delete" msgstr "Supprimer" #: profile-builder-2.0/admin/manage-fields.php:1208 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "Utilisez ces shortcodes sur les pages où vous voulez que les formulaires s'affichent :" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Your Version" msgstr "Enregistrez Votre Version" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Version" msgstr "Enregistrez la Version" #: profile-builder-2.0/admin/register-version.php:70 msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support." msgstr "Si vous enregistrez cette version de Profile Builder, vous recevrez des informations concernant les mises à jours, les correctifs et le support technique." #: profile-builder-2.0/admin/register-version.php:72 msgid " Serial Number:" msgstr "Numéro de Série :" #: profile-builder-2.0/admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "Le numéro de série a bien été validé !" #: profile-builder-2.0/admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "Le numéro de série entré n'a pas pu être validé !" #: profile-builder-2.0/admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "Le numéro de série n'a pas pu être validé car il a expiré !" #: profile-builder-2.0/admin/register-version.php:85 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!" msgstr "Le numéro de série n'a pas pu être validé car le processus a dépassé le délai. Ceci peut être dû à une panne du serveur. Merci de ré-essayer plus tard !" #: profile-builder-2.0/admin/register-version.php:87 msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "(ex. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/features/functions.php:725 msgid "Content" msgstr "Contenu" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 msgid "Edit this item" msgstr "Modifier cet élément" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 msgid "Delete this item" msgstr "Supprimer cet élément" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705 msgid "Please enter a value for the required field " msgstr "Merci d'entrer une valeur pour le champ obligatoire" #: pb-add-on-woocommerce/woo-checkout-field-support.php:262 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122 msgid "Select File" msgstr "Sélectionner un fichier" #: pb-add-on-woocommerce/woo-checkout-field-support.php:252 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112 msgid "Remove" msgstr "Supprimer" #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8 msgid "You can add the information for the %s after you add a entry" msgstr "Vous pouvez ajouter l'information pour le %s après avoir ajouté une entrée" #: pb-add-on-woocommerce/woo-checkout-field-support.php:268 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128 msgid "Upload " msgstr "Télécharger" #: profile-builder-2.0/features/class-list-table.php:184 msgid "No items found." msgstr "Aucun élément trouvé." #: profile-builder-2.0/features/class-list-table.php:308 msgid "Bulk Actions" msgstr "Actions Groupées" #: profile-builder-2.0/features/class-list-table.php:318 msgid "Apply" msgstr "Appliquer" #: profile-builder-2.0/features/class-list-table.php:402 msgid "Show all dates" msgstr "Afficher toutes les dates" #: profile-builder-2.0/features/class-list-table.php:415 msgid "%1$s %2$d" msgstr "%1$s %2$d" #: profile-builder-2.0/features/class-list-table.php:431 msgid "List View" msgstr "Vue par liste" #: profile-builder-2.0/features/class-list-table.php:432 msgid "Excerpt View" msgstr "Vue par extrait" #: profile-builder-2.0/features/class-list-table.php:458 msgid "%s pending" msgstr "%s en attente" #: profile-builder-2.0/features/class-list-table.php:566 msgid "%1$s of %2$s" msgstr "%1$s de %2$s" #: profile-builder-2.0/features/class-list-table.php:713 msgid "Select All" msgstr "Tout Sélectionner" #: profile-builder-2.0/features/functions.php:526 msgid "Strength indicator" msgstr "Indicateur de sûreté" #: profile-builder-2.0/features/admin-approval/admin-approval.php:14 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453 msgid "Admin Approval" msgstr "Approbation par l'Admin" #: profile-builder-2.0/features/admin-approval/admin-approval.php:28 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "Voulez-vous" #: profile-builder-2.0/features/admin-approval/admin-approval.php:51 msgid "Your session has expired! Please refresh the page and try again" msgstr "Votre session a expiré ! Merci de rafraîchir la page et de ré-essayer" #: profile-builder-2.0/features/admin-approval/admin-approval.php:64 msgid "User successfully approved!" msgstr "L'utilisateur a bien été approuvé !" #: profile-builder-2.0/features/admin-approval/admin-approval.php:74 msgid "User successfully unapproved!" msgstr "L'utilisateur a bien été refusé !" #: profile-builder-2.0/features/admin-approval/admin-approval.php:80 msgid "User successfully deleted!" msgstr "L'utilisateur a bien été supprimé !" #: profile-builder-2.0/features/admin-approval/admin-approval.php:85 #: profile-builder-2.0/features/admin-approval/admin-approval.php:131 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "Soit vous n'avez pas la permission de réaliser cette action soit il y a eu une erreur !" #: profile-builder-2.0/features/admin-approval/admin-approval.php:96 msgid "Your session has expired! Please refresh the page and try again." msgstr "Votre session a expiré ! Merci de rafraîchir la page et de ré-essayer." #: profile-builder-2.0/features/admin-approval/admin-approval.php:109 msgid "Users successfully approved!" msgstr "Les utilisateurs ont bien été approuvés !" #: profile-builder-2.0/features/admin-approval/admin-approval.php:119 msgid "Users successfully unapproved!" msgstr "Les utilisateurs ont bien été refusés !" #: profile-builder-2.0/features/admin-approval/admin-approval.php:127 msgid "Users successfully deleted!" msgstr "Les utilisateurs ont bien été supprimés !" #: profile-builder-2.0/features/admin-approval/admin-approval.php:147 msgid "Your account on %1$s has been approved!" msgstr "Votre compte sur %1$s a été approuvé !" #: profile-builder-2.0/features/admin-approval/admin-approval.php:148 #: profile-builder-2.0/features/admin-approval/admin-approval.php:151 msgid "approved" msgstr "approuvé" #: profile-builder-2.0/features/admin-approval/admin-approval.php:150 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "Un administrateur vient d'approuver votre compte sur %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:155 msgid "Your account on %1$s has been unapproved!" msgstr "Votre compte sur %1$s a été refusé !" #: profile-builder-2.0/features/admin-approval/admin-approval.php:156 #: profile-builder-2.0/features/admin-approval/admin-approval.php:159 msgid "unapproved" msgstr "refusé" #: profile-builder-2.0/features/admin-approval/admin-approval.php:158 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "Un administrateur vient de refuser votre compte sur %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:177 msgid "ERROR: Your account has to be confirmed by an administrator before you can log in." msgstr "ERREUR : Votre compte doit être confirmé par un administrateur avant que vous ne puissiez vous connecter." #: profile-builder-2.0/features/admin-approval/admin-approval.php:189 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature." msgstr "Un administrateur doit approuver votre compte avant que vous ne puissiez utiliser la fonctionnalité \"Mot de passe perdu\"." #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "supprimer cet utilisateur ?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "refuser cet utilisateur ?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr "Refuser" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "approuver cet utilisateur ?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "Approuver" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167 #: profile-builder-2.0/modules/user-listing/userlisting.php:278 #: profile-builder-2.0/modules/user-listing/userlisting.php:742 #: profile-builder-2.0/modules/user-listing/userlisting.php:2224 msgid "Firstname" msgstr "Prénom" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168 #: profile-builder-2.0/modules/user-listing/userlisting.php:745 #: profile-builder-2.0/modules/user-listing/userlisting.php:2225 msgid "Lastname" msgstr "Nom de famille" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170 #: profile-builder-2.0/modules/user-listing/userlisting.php:149 #: profile-builder-2.0/modules/user-listing/userlisting.php:279 #: profile-builder-2.0/modules/user-listing/userlisting.php:772 #: profile-builder-2.0/modules/user-listing/userlisting.php:2229 msgid "Role" msgstr "Rôle" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169 msgid "Registered" msgstr "Inscrit" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "Statut de l'utilisateur" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "Voulez-vous approuver tous les utilisateurs sélectionnés ?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "Voulez-vous refuser tous les utilisateurs sélectionnés ?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "Voulez-vous supprimer tous les utilisateurs sélectionnés ?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278 msgid "Sorry, but you don't have permission to do that!" msgstr "Désolé, mais vous n'avez pas la permission de faire cela !" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339 msgid "Approved" msgstr "Approuvé" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341 msgid "Unapproved" msgstr "Refusé" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454 msgid "All Users" msgstr "Tous les Utilisateurs" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 msgid "delete this user from the _signups table?" msgstr "supprimer cet utilisateur de la table _signups ?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 msgid "confirm this email yourself?" msgstr "confirmer cette adresse de messagerie vous-même ?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218 msgid "Confirm Email" msgstr "Confirmer l'adresse de messagerie" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 msgid "resend the activation link?" msgstr "ré-envoyer le lien d'activation ?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219 msgid "Resend Activation Email" msgstr "Ré-envoyer l'e-mail d'activation" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249 msgid "%s couldn't be deleted" msgstr "%s n'a pas pu être supprimé" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253 msgid "All users have been successfully deleted" msgstr "Tous les utilisateurs ont bien été supprimés" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263 msgid "The selected users have been activated" msgstr "L'utilisateur sélectionné a bien été activé" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274 msgid "The selected users have had their activation emails resent" msgstr "Les e-mails d'activation ont été ré-envoyés aux utilisateurs sélectionnés" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "Utilisateurs avec une adresse de messagerie non-confirmée" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "Il y a eu une erreur lors de la réalisation de cette action !" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "L'utilisateur sélectionné n'a pas pu être supprimé" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "L'e-mail de notification a été ré-envoyé à l'utilisateur" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398 msgid "[%1$s] Activate %2$s" msgstr "[%1$s] Activer %2$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442 #: profile-builder-2.0/front-end/register.php:71 msgid "Could not create user!" msgstr "L'utilisateur n'a pas pu être créé !" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445 msgid "That username is already activated!" msgstr "Ce nom d'utilisateur est déjà activé !" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468 msgid "There was an error while trying to activate the user" msgstr "Il y a eu une erreur lors de l'activation de l'utilisateur" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73 msgid "A new subscriber has (been) registered!" msgstr "Un nouvel adhérent a (été) enregistré !" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "Nouvel adhérent sur %1$s.

            Nom d'utilisateur :%2$s
            E-mail :%3$s
            " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634 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!" msgstr "La fonctionnalité \"Approbation Admin\" était activée au moment de l'inscription, donc merci de vous souvenir que vous devez approuver cet utilisateur avant qu'il/elle puisse se connecter !" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570 msgid "[%1$s] Your new account information" msgstr "[%1$s] Nouvelles informations à propos de votre compte" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581 msgid "Welcome to %1$s!


            Your username is:%2$s and password:%3$s" msgstr "Bienvenue sur %1$s!


            Votre nom d'utilisateur est :%2$s

            Votre mot de passe est celui que vous avez choisi lors de votre inscription.\n" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642 #: profile-builder-2.0/front-end/register.php:125 msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email." msgstr "Votre compte doit d'abord être approuvé par un administrateur avant que ne ne puissiez y accéder. Un E-mail vous sera envoyé." #: profile-builder-2.0/features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "Cette widget d'identification vous permet d'ajouter un formulaire d'identification sur la barre latérale." #: profile-builder-2.0/features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "Profile Builder Login Widget" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36 #: profile-builder-2.0/front-end/class-formbuilder.php:415 #: profile-builder-2.0/front-end/login.php:250 msgid "Register" msgstr "S'inscrire" #: profile-builder-2.0/features/login-widget/login-widget.php:63 msgid "Title:" msgstr "Titre :" #: profile-builder-2.0/features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "URL de redirection après connexion (optionnel) :" #: profile-builder-2.0/features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "URL de la page d'inscription (optionnel) :" #: profile-builder-2.0/features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "URL de la page de ré-initialisation du mot de passe (optionnel) :" #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91 #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "Les noms d'utilisateur ne peuvent pas être changés." #: profile-builder-2.0/front-end/class-formbuilder.php:136 msgid "Only an administrator can add new users." msgstr "Seul un administrateur peut ajouter de nouveaux utilisateurs." #: profile-builder-2.0/front-end/class-formbuilder.php:146 msgid "Users can register themselves or you can manually create users here." msgstr "Merci de ne pas re-créer de compte si vous en avez déjà un." #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "Users cannot currently register themselves, but you can manually create users here." msgstr "Les utilisateurs ne peuvent pas s'inscrire eux-mêmes, mais vous pouvez les créer manuellement ici." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "Vous êtes actuellement connecté comme %1s.Vous n'avez pas besoin d'un autre compte. %2s" #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Log out of this account." msgstr "Se déconnecter de ce compte." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Logout" msgstr "Déconnexion" #: profile-builder-2.0/front-end/class-formbuilder.php:175 msgid "You must be logged in to edit your profile." msgstr "Vous devez être connecté pour modifier votre profil." #: profile-builder-2.0/features/functions.php:994 msgid "here" msgstr "ici" #: profile-builder-2.0/features/functions.php:995 msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s" msgstr "Vous serez bientôt redirigé automatiquement. Si vous voyez cette page pendant plus de %1$d secondes, merci de cliquer sur %2$s.%3$s" #: profile-builder-2.0/front-end/class-formbuilder.php:315 #: profile-builder-2.0/front-end/class-formbuilder.php:322 msgid "The account %1s has been successfully created!" msgstr "Votre compte %1s a bien été créé !" #: profile-builder-2.0/front-end/class-formbuilder.php:318 #: profile-builder-2.0/front-end/class-formbuilder.php:328 msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link." msgstr "Avant que vous ne puissiez accéder à votre compte %1s, vous devez confirmer votre adresse de messagerie. Merci de consulter votre boite de réception et de cliquer sur le lien d'activation." #: profile-builder-2.0/front-end/class-formbuilder.php:324 msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email." msgstr "Votre compte %1s doit d'abord être approuvé par un administrateur avant que ne ne puissiez y accéder. Un E-mail vous sera envoyé." #: profile-builder-2.0/front-end/class-formbuilder.php:347 msgid "Your profile has been successfully updated!" msgstr "Votre profil a bien été mis à jour !" #: profile-builder-2.0/front-end/class-formbuilder.php:358 msgid "There was an error in the submitted form" msgstr "Il y avait une erreur dans le formulaire soumis" #: profile-builder-2.0/front-end/class-formbuilder.php:415 msgid "Add User" msgstr "Ajouter un Utilisateur" #: profile-builder-2.0/admin/add-ons.php:170 #: profile-builder-2.0/front-end/class-formbuilder.php:418 msgid "Update" msgstr "Mettre à jour" #: profile-builder-2.0/front-end/class-formbuilder.php:481 msgid "Send these credentials via email." msgstr "Envoyer ces identifiants par E-mail." #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92 #: profile-builder-2.0/front-end/login.php:137 #: profile-builder-2.0/front-end/login.php:144 #: profile-builder-2.0/front-end/login.php:158 #: profile-builder-2.0/front-end/recover.php:17 #: profile-builder-2.0/front-end/recover.php:245 msgid "ERROR" msgstr "ERREUR" #: profile-builder-2.0/front-end/login.php:137 msgid "The password you entered is incorrect." msgstr "Le mot de passe que vous avez entré n'est pas correct." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Password Lost and Found." msgstr "Mot de passe perdu et retrouvé." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Lost your password" msgstr "Mot de passe perdu" #: profile-builder-2.0/front-end/login.php:158 msgid "Both fields are empty." msgstr "Les deux champs sont vides." #: profile-builder-2.0/front-end/login.php:296 msgid "You are currently logged in as %1$s. %2$s" msgstr "Vous êtes actuellement connecté en tant que %1$s. %2$s" #: profile-builder-2.0/front-end/login.php:295 #: profile-builder-2.0/front-end/logout.php:25 msgid "Log out of this account" msgstr "Se déconnecter de ce compte" #: profile-builder-2.0/front-end/login.php:295 msgid "Log out" msgstr "Déconnexion" #: profile-builder-2.0/front-end/recover.php:17 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature." msgstr "Votre compte doit être confirmé par un administrateur avant que vous ne puissiez utiliser la fonctionnalité \"Ré-initialisation du mot de passe\"." #: profile-builder-2.0/front-end/recover.php:94 msgid "Reset Password" msgstr "Ré-initialiser le mot de passe" #: profile-builder-2.0/front-end/recover.php:121 msgid "Please enter your username or email address." msgstr "Merci d'entrer votre nom d'utilisateur ou votre adresse de messagerie." #: profile-builder-2.0/front-end/recover.php:125 msgid "You will receive a link to create a new password via email." msgstr "Vous recevrez un lien par E-mail pour créer un nouveau mot de passe." #: profile-builder-2.0/front-end/recover.php:122 msgid "Username or E-mail" msgstr "Nom d'utilisateur ou adresse de messagerie." #: profile-builder-2.0/front-end/recover.php:138 msgid "Get New Password" msgstr "Ré-initialiser votre mot de passe" #: profile-builder-2.0/front-end/recover.php:185 msgid "The username entered wasn't found in the database!" msgstr "Le nom d'utilisateur que vous avez entré n'a pas été trouvé dans la base de données !" #: profile-builder-2.0/front-end/recover.php:185 msgid "Please check that you entered the correct username." msgstr "Merci de vérifier que vous avez entré un nom d'utilisateur correct." #: profile-builder-2.0/front-end/recover.php:200 msgid "Check your e-mail for the confirmation link." msgstr "Merci de consulter votre boite de réception pour le lien d'activation." #: profile-builder-2.0/front-end/recover.php:235 msgid "Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s" msgstr "Quelqu'un a demandé que le mot de passe soit ré-initialisé sur le compte suivant: %1$s
            Si c'est une erreur, ignorez simplement cet e-mail et il ne se passera rien.
            Pour ré-initialiser votre mot de passe, cliquez sur le lien suivant:%2$s" #: profile-builder-2.0/front-end/recover.php:238 msgid "Password Reset from \"%1$s\"" msgstr "Mot de passe ré-initialisé de \"%1$s\"" #: profile-builder-2.0/front-end/recover.php:245 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "Il y a eu une erreur lors de l'envoi du lien d'activation à %1$s !" #: profile-builder-2.0/front-end/recover.php:207 msgid "The email address entered wasn't found in the database!" msgstr "L'adresse de messagerie saisie n'a pas été trouvée dans la base de données !" #: profile-builder-2.0/front-end/recover.php:207 msgid "Please check that you entered the correct email address." msgstr "Merci de vérifier que vous avez entré une adresse de messagerie correcte." #: profile-builder-2.0/front-end/recover.php:273 msgid "Your password has been successfully changed!" msgstr "Votre mot de passe a bien été changé !" #: profile-builder-2.0/front-end/recover.php:292 msgid "You have successfully reset your password to: %1$s" msgstr "Vous avec bien ré-initialisé votre mot de passe pour: %1$s" #: profile-builder-2.0/front-end/recover.php:295 #: profile-builder-2.0/front-end/recover.php:306 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "Mot de passe bien ré-initialisé pour %1$s sur \"%2$s\"" #: profile-builder-2.0/front-end/recover.php:303 msgid "%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s" msgstr "%1$s a demandé un changement de mot de passe via la fonctionnalité de ré-initialisation du mot de passe.
            Son nouveau mot de passe est :%2$s" #: profile-builder-2.0/front-end/recover.php:320 msgid "The entered passwords don't match!" msgstr "Les mots de passe entrés sont différents !" #: profile-builder-2.0/front-end/recover.php:375 msgid "ERROR:" msgstr "ERREUR :" #: profile-builder-2.0/front-end/recover.php:375 msgid "Invalid key!" msgstr "Clé incorrecte !" #: profile-builder-2.0/front-end/register.php:56 msgid "Invalid activation key!" msgstr "Clé d'activation incorrecte !" #: profile-builder-2.0/front-end/register.php:60 msgid "This username is now active!" msgstr "Ce nom d'utilisateur est désormais actif !" #: profile-builder-2.0/front-end/register.php:74 msgid "This username is already activated!" msgstr "Ce nom d'utilisateur est déjà activé !" #: profile-builder-2.0/front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "Votre adresse de messagerie a bien été confirmée." #: profile-builder-2.0/front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "Il y a eu une erreur lors de l'activation de cet utilisateur." #: pb-add-on-woocommerce/index.php:393 #: profile-builder-2.0/front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "L'adresse de messagerie que vous avez entrée n'est pas une adresse de messagerie valide." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "Cette adresse de messagerie est déjà réservée et sera bientôt utilisée." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 #: profile-builder-2.0/front-end/default-fields/username/username.php:49 #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "Merci d'en essayer un(e) autre !" #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "Cette adresse de messagerie est déjà utilisée." #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37 #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "Les mots de passe sont différents" #: profile-builder-2.0/front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "Ce nom d'utilisateur existe déjà." #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "Ce nom d'utilisateur est déjà réservé et va bientôt être utilisé." #: profile-builder-2.0/modules/user-listing/userlisting.php:276 msgid "Avatar" msgstr "Avatar" #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72 #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45 #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45 #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40 #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34 #: profile-builder-2.0/front-end/extra-fields/input/input.php:30 #: profile-builder-2.0/front-end/extra-fields/map/map.php:51 #: profile-builder-2.0/front-end/extra-fields/number/number.php:30 #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39 #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52 #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46 #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49 #: profile-builder-2.0/front-end/extra-fields/select/select.php:51 #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70 #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "obligatoire" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48 msgid "To use reCAPTCHA you must get an API key from" msgstr "Pour utiliser reCAPTCHA vous devez avoir une clé d'API de" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "Pour des raisons de sécurité, vous devez donner l'adresse ip distante au reCAPTCHA!" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "Pour utiliser reCAPTCHA vous devez avoir une clé publique d'API de :" #: profile-builder-2.0/modules/modules.php:11 #: profile-builder-2.0/modules/modules.php:58 msgid "Modules" msgstr "Modules" #: profile-builder-2.0/modules/modules.php:59 msgid "Here you can activate / deactivate available modules for Profile Builder." msgstr "Ici vous pouvez activer / désactiver les modules disponibles pour Profile Builder." #: profile-builder-2.0/modules/modules.php:69 msgid "Name/Description" msgstr "Nom/Description" #: profile-builder-2.0/modules/modules.php:70 msgid "Status" msgstr "Statut" #: profile-builder-2.0/modules/modules.php:77 #: profile-builder-2.0/modules/modules.php:84 #: profile-builder-2.0/modules/modules.php:91 #: profile-builder-2.0/modules/modules.php:98 #: profile-builder-2.0/modules/modules.php:105 #: profile-builder-2.0/modules/modules.php:112 #: profile-builder-2.0/modules/modules.php:119 msgid "Active" msgstr "Active" #: profile-builder-2.0/modules/modules.php:78 #: profile-builder-2.0/modules/modules.php:85 #: profile-builder-2.0/modules/modules.php:92 #: profile-builder-2.0/modules/modules.php:99 #: profile-builder-2.0/modules/modules.php:106 #: profile-builder-2.0/modules/modules.php:113 #: profile-builder-2.0/modules/modules.php:120 msgid "Inactive" msgstr "Inactive" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:96 msgid "Admin Email Customizer" msgstr "E-mails personnalisés à l'Admin" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:103 msgid "User Email Customizer" msgstr "E-mails personnalisés à l'utilisateur" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253 msgid "Save" msgstr "Enregistrer" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "Redirections" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "URL" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save." msgstr "Ces paramètres sont aussi répliqués dans la page de paramètres des \"E-mails personnalisés aux utilisateurs\" lors de la sauvegarde." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41 msgid "From (name)" msgstr "De (nom)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49 msgid "From (reply-to email)" msgstr "De (réponse à)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57 msgid "Common Settings" msgstr "Paramètres communs" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" msgstr "" "\n" "

            Nouvel adhérent sur {{site_name}}.

            \n" "

            Nom d'utilisateu r:{{username}}

            \n" "

            Adresse de messagerie :{{user_email}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274 msgid "Email Subject" msgstr "Sujet de l'E-mail" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84 msgid "Default Registration & Registration with Email Confirmation" msgstr "Inscription par défaut & inscription avec confirmation de l'adresse de messagerie" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log in!

            \n" msgstr "" "\n" "

            Nouvel adhérent sur {{site_name}}.

            \n" "

            Nom d'utilisateur:{{username}}

            \n" "

            Adresse de messagerie:{{user_email}}

            \n" "

            La fonctionnalité Approbation Admin était activée au moment de l'inscription,\n" "donc merci de vous souvenir qu'il faut que vous approuviez cet utilisateur avant qu'il/elle ne puisse se connecter!

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143 msgid "Registration with Admin Approval" msgstr "Inscription avec Approbation Admin" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "Tags disponibles" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170 msgid "User Meta" msgstr "Méta-information de l'utilisateur" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "URL du site web" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "Nom du site web" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25 #: profile-builder-2.0/modules/user-listing/userlisting.php:158 msgid "User Id" msgstr "ID de l'utilisateur" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33 msgid "Reply To" msgstr "Réponse à" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40 msgid "Activation Key" msgstr "Clé d'activation" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41 msgid "Activation Url" msgstr "URL d'activation" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42 msgid "Activation Link" msgstr "Lien d'activation" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" msgstr "" "\n" "

            Bienvenu(e) sur {{site_name}} !

            \n" "

            Votre nom d'utilisateur est :{{username}} et votre mot de passe :{{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85 msgid "Default Registration" msgstr "Inscription par défaut" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91 msgid "" "\n" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials.

            \n" msgstr "" "\n" "

            Pour activer votre compte, merci de cliquer sur le lien suivant :
            \n" "{{{activation_link}}}

            \n" "

            Une fois l'activation réalisée, vous recevrez une autre E-mail avec vos identifiants

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103 msgid "[{{site_name}}] Activate {{username}}" msgstr "[{{site_name}}] Activer {{username}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114 msgid "Registration with Email Confirmation" msgstr "Inscription avec confirmation de l'adresse de messagerie" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n" msgstr "" "

            Bienvenu(e) sur {{site_name}}!

            \n" "

            Votre nom d'utilisateur est :{{username}} et votre mot de passe :{{password}}

            \n" "

            Avant que vous ne puissiez accéder à votre compte, un administrateur doit d'abord l'approuver. Vous serez informé par E-mail.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132 msgid "A new account has been created for you on {{site_name}}" msgstr "Un nouveau compte a été créé pour vous sur {{site_name}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148 msgid "" "\n" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Bonne nouvelle !

            \n" "

            Un administrateur vient juste d'approuver votre compte {{username}} sur {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159 msgid "Your account on {{site_name}} has been approved!" msgstr "Votre compte sur {{site_name}} a été approuvé !" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170 msgid "User Approval Notification" msgstr "Notification lors de l'approbation d'un utilisateur" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175 msgid "" "\n" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Bonjour,

            \n" "

            Un administrateur vient malheureusement de refuser votre compte : {{username}} sur {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187 msgid "Your account on {{site_name}} has been unapproved!" msgstr "Votre compte sur {{site_name}} a été refusé !" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198 msgid "Unapproved User Notification" msgstr "Notification lors du refus d'un utilisateur" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "Formulaire de modification de profil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13 #: profile-builder-2.0/modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "Ajouter un nouveau" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "Ajouter un nouveau formulaire de modification de profil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "Modifier les formulaires de modification de profil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "Nouveau formulaire de modification de profil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "Formulaires de modification de profil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "Voir le formulaire de modification de profil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "Rechercher dans les formulaires de modification de profil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "Aucun formulaire de modification de profil trouvé" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "Aucun formulaire de modification de profil trouvé dans la corbeille" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138 #: profile-builder-2.0/modules/user-listing/userlisting.php:2115 msgid "Shortcode" msgstr "Shortcode" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159 #: profile-builder-2.0/modules/user-listing/userlisting.php:2136 msgid "(no title)" msgstr "(aucun titre)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178 #: profile-builder-2.0/modules/user-listing/userlisting.php:2156 msgid "The shortcode will be available after you publish this form." msgstr "Le shortcode sera disponible après la publication de ce formulaire." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180 #: profile-builder-2.0/modules/user-listing/userlisting.php:2158 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "Utilisez ce shortcode sur la page où vous voulez que le formulaire soit affiché :" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184 #: profile-builder-2.0/modules/user-listing/userlisting.php:2162 msgid "Note: changing the form title also changes the shortcode!" msgstr "Note : modifier le titre du formulaire change aussi le shortcode !" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190 #: profile-builder-2.0/modules/user-listing/userlisting.php:2195 msgid "Form Shortcode" msgstr "Shortcode du formulaire" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "Si l'utilisateur doit être redirigé vers une page spécifique ou pas" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "Afficher les messages" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "Temps autorisé pour afficher tout message de succès (en secondes)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 msgid "Specify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.com" msgstr "Spécifiez l'URL de la page où les utilisateurs seront redirigés lorsqu'ils mettent à jour leur profil en utilisant ce formulaire
            Utilisez le format suivant : http://www.monsite.com" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "Après une mise à jour de profil..." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "Ajouter un nouveau champ à la liste" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage Title (Type)" msgstr "
            Titre (Type)
            " #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "Vous devez spécifier le titre du formulaire avant de le créer" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "Formulaire d'inscription" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "Ajouter un nouveau formulaire d'inscription" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "Modifier les formulaires d'inscription" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "Nouveau formulaire d'inscription" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "Formulaires d'inscription" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "Voir le formulaire d'inscription" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "Rechercher dans les formulaires d'inscription" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "Aucun formulaire d'inscription trouvé" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "Aucun formulaire d'inscription trouvé dans la corbeille" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "Rôle par défaut" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "Fixer le rôle" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Choose what role the user will have after (s)he registered
            If not specified, defaults to the role set in the WordPress settings" msgstr "Choisissez quel rôle aura un utilisateur après qu'il/elle se soit inscrit
            Si aucune valeur n'est spécifiée, la valeur par défaut sera celle du rôle défini dans les paramètres de WordPress" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "Se connecter automatiquement" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Whether to automatically log in the newly registered user or not
            Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work" msgstr "Si un utilisateur nouvellement inscrit sera connecté automatiquement ou pas
            Ne fonctionne que sur les sites ayant un nom de domaine unique et ayant désactivé les paramètres \"Approbation Admin\" et \"Confirmation de l'adresse de messagerie\"
            ATTENTION: La mise en cache du formulaire d'inscription empêchera la connexion automatique de fonctionner" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "Specify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.com" msgstr "Spécifiez l'URL de la page vers laquelle les utilisateurs seront redirigés une fois inscrits via ce formulaire
            Utilisez le format suivant : http://www.monsite.com" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "Après inscription..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1038 #: profile-builder-2.0/modules/user-listing/userlisting.php:1485 #: profile-builder-2.0/modules/user-listing/userlisting.php:1953 #: profile-builder-2.0/modules/user-listing/userlisting.php:2426 msgid "Search Users by All Fields" msgstr "Rechercher des utilisateurs par tous les champs" #: profile-builder-2.0/modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "Ajouter un nouveau listing d'utilisateurs" #: profile-builder-2.0/modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "Modifier le listing d'utilisateurs" #: profile-builder-2.0/modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "Nouveau listing d'utilisateurs" #: profile-builder-2.0/modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "Voir le listing d'utilisateurs" #: profile-builder-2.0/modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "Rechercher des listings d'utilisateurs" #: profile-builder-2.0/modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "Aucun listing d'utilisateurs trouvé" #: profile-builder-2.0/modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "Aucun listing d'utilisateur trouvé dans la corbeille" #: profile-builder-2.0/modules/user-listing/userlisting.php:105 msgid "Display name as" msgstr "Afficher le nom comme" #: profile-builder-2.0/modules/user-listing/userlisting.php:150 #: profile-builder-2.0/modules/user-listing/userlisting.php:2223 msgid "Registration Date" msgstr "Date d'inscription" #: profile-builder-2.0/modules/user-listing/userlisting.php:151 #: profile-builder-2.0/modules/user-listing/userlisting.php:2228 msgid "Number of Posts" msgstr "Nombre de messages postés" #: profile-builder-2.0/modules/user-listing/userlisting.php:155 msgid "More Info" msgstr "Plus d'infos" #: profile-builder-2.0/modules/user-listing/userlisting.php:156 msgid "More Info Url" msgstr "URL vers plus d'infos" #: profile-builder-2.0/modules/user-listing/userlisting.php:157 msgid "Avatar or Gravatar" msgstr "Avatar ou Gravatar" #: profile-builder-2.0/modules/user-listing/userlisting.php:196 #: profile-builder-2.0/modules/user-listing/userlisting.php:227 msgid "Extra Functions" msgstr "Fonctions supplémentaires" #: profile-builder-2.0/modules/user-listing/userlisting.php:199 msgid "Pagination" msgstr "Pagination" #: profile-builder-2.0/modules/user-listing/userlisting.php:200 msgid "Search all Fields" msgstr "Rechercher parmi tous les champs" #: profile-builder-2.0/modules/user-listing/userlisting.php:229 msgid "Go Back Link" msgstr "Lien vers la page précédente" #: profile-builder-2.0/modules/user-listing/userlisting.php:247 msgid "All-userlisting Template" msgstr "Modèle de tous les listing d'utilisateurs" #: profile-builder-2.0/modules/user-listing/userlisting.php:250 msgid "Single-userlisting Template" msgstr "Modèle d'un seul listing d'utilisateurs" #: profile-builder-2.0/modules/user-listing/userlisting.php:733 msgid "First/Lastname" msgstr "Prénom/Nom de famille" #: profile-builder-2.0/modules/user-listing/userlisting.php:281 #: profile-builder-2.0/modules/user-listing/userlisting.php:739 msgid "Sign-up Date" msgstr "Date d'inscription" #: profile-builder-2.0/modules/user-listing/userlisting.php:748 #: profile-builder-2.0/modules/user-listing/userlisting.php:2226 msgid "Display Name" msgstr "Afficher le nom" #: profile-builder-2.0/modules/user-listing/userlisting.php:280 #: profile-builder-2.0/modules/user-listing/userlisting.php:757 msgid "Posts" msgstr "Messages postés" #: profile-builder-2.0/modules/user-listing/userlisting.php:760 #: profile-builder-2.0/modules/user-listing/userlisting.php:2233 msgid "Aim" msgstr "Aim" #: profile-builder-2.0/modules/user-listing/userlisting.php:763 #: profile-builder-2.0/modules/user-listing/userlisting.php:2234 msgid "Yim" msgstr "Yim" #: profile-builder-2.0/modules/user-listing/userlisting.php:766 #: profile-builder-2.0/modules/user-listing/userlisting.php:2235 msgid "Jabber" msgstr "Jabber" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "Click here to see more information about this user" msgstr "Cliquez ici pour voir plus d'informations sur cet utilisateur." #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "More..." msgstr "Plus..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1293 msgid "Click here to see more information about this user." msgstr "Cliquez ici pour voir plus d'informations sur cet utilisateur." #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 #: profile-builder-2.0/modules/user-listing/userlisting.php:1442 msgid "Click here to go back" msgstr "Cliquez ici pour revenir en arrière" #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 msgid "Back" msgstr "Précédent" #: profile-builder-2.0/modules/user-listing/userlisting.php:1472 msgid "«« First" msgstr "«« Premier" #: profile-builder-2.0/modules/user-listing/userlisting.php:1473 msgid "« Prev" msgstr "« Précédent" #: profile-builder-2.0/modules/user-listing/userlisting.php:1474 msgid "Next » " msgstr "Suivant » " #: profile-builder-2.0/modules/user-listing/userlisting.php:1475 msgid "Last »»" msgstr "Dernier »»" #: profile-builder-2.0/modules/user-listing/userlisting.php:1504 msgid "You don't have any pagination settings on this userlisting!" msgstr "Vous n'avez pas de paramètres de pagination sur ce listing d'utilisateurs !" #: profile-builder-2.0/modules/user-listing/userlisting.php:1970 msgid "Search" msgstr "Rechercher" #: profile-builder-2.0/modules/user-listing/userlisting.php:1971 msgid "Clear Results" msgstr "Effacer les résultats" #: profile-builder-2.0/modules/user-listing/userlisting.php:2165 #: profile-builder-2.0/modules/user-listing/userlisting.php:2169 msgid "Extra shortcode parameters" msgstr "Paramètres supplémentaires du shortcode" #: profile-builder-2.0/modules/user-listing/userlisting.php:2172 msgid "displays users having a certain meta-value within a certain (extra) meta-field" msgstr "affiche les utilisateurs ayant une certaine méta-valeur dans un certain méta-champ" #: profile-builder-2.0/modules/user-listing/userlisting.php:2173 msgid "Example:" msgstr "Exemple : " #: profile-builder-2.0/modules/user-listing/userlisting.php:2175 msgid "Remember though, that the field-value combination must exist in the database." msgstr "Rappelez-vous cependant que la combinaison champ-valeur doit exister dans la base de données." #: profile-builder-2.0/modules/user-listing/userlisting.php:2250 msgid "Random (very slow on large databases > 10K user)" msgstr "Aléatoire (très lent sur les énormes bases de données > 10K utilisateurs)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Roles to Display" msgstr "Groupes à afficher" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Restrict the userlisting to these selected roles only
            If not specified, defaults to all existing roles" msgstr "Restreint le listing d'utilisateurs aux groupes sélectionnés uniquement
            Si aucune valeur n'est spécifiée, la valeur par défaut sera pour tous les groupes d'utilisateurs" #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Number of Users/Page" msgstr "Nombre d'utilisateurs/page" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Default Sorting Criteria" msgstr "Critère de tri par défaut" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Set the default sorting criteria
            This can temporarily be changed for each new session" msgstr "Fixer le critère de tri par défaut.
            Ceci peut être temporairement modifié à chaque nouvelle session" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Default Sorting Order" msgstr "Ordre de tri par défaut" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Set the default sorting order
            This can temporarily be changed for each new session" msgstr "Fixez l'ordre de tri par défaut.
            Ceci peut être temporairement modifié à chaque nouvelle session" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Avatar Size (All-userlisting)" msgstr "Taille d'avatar (listing de tous les utilisateurs)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Set the avatar size on the all-userlisting only" msgstr "Fixer la taille de l'avatar uniquement sur le listing de tous les utilisateurs." #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Avatar Size (Single-userlisting)" msgstr "Taille d'avatar (listing d'un seul utilisateur)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Set the avatar size on the single-userlisting only" msgstr "Fixer la taille de l'avatar du listing d'un seul utilisateur uniquement" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Visible only to logged in users?" msgstr "Visible uniquement aux utilisateurs connectés ?" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "The userlisting will only be visible only to the logged in users" msgstr "Le listing d'utilisateurs sera visible uniquement par les utilisateurs connectés" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "Visible to following Roles" msgstr "Visible pour les rôles suivants" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "The userlisting will only be visible to the following roles" msgstr "Le listing d'utilisateurs sera visible uniquement par les rôles suivants" #: profile-builder-2.0/modules/user-listing/userlisting.php:2275 msgid "Userlisting Settings" msgstr "Paramètres du listing d'utilisateurs" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "Vous devez activer le listing d'utilisateurs à partir de l'onglet \"Modules\" !" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You can find it in the Profile Builder menu." msgstr "Vous pouvez le trouver dans le menu Profile Builder." #: profile-builder-2.0/modules/user-listing/userlisting.php:2565 msgid "No results found!" msgstr "Aucun résultat trouvé !"translation/profile-builder-pl_PL.po000066600000626251152141651160013554 0ustar00# Translation of Profile Builder in Polish # This file is distributed under the same license as the Profile Builder package. msgid "" msgstr "" "PO-Revision-Date: 2016-11-28 13:11:48+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: GlotPress/0.1\n" "Project-Id-Version: Profile Builder\n" #: profile-builder-2.0/admin/general-settings.php:154 msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s." msgstr "" #: profile-builder-2.0/admin/general-settings.php:146 msgid "\"Roles Editor\" Activated:" msgstr "" #: profile-builder-2.0/features/roles-editor/roles-editor.php:300 msgid "M j, Y @ G:i" msgstr "" #: profile-builder-2.0/front-end/recover.php:117 msgid "Please enter your email address." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yy" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244 msgid "Individual redirects defined in shortcodes; redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1217 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." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "" #: profile-builder-2.0/admin/register-version.php:251 msgid "

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            " msgstr "" #: profile-builder-2.0/admin/register-version.php:246 msgid "

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            " msgstr "" #: profile-builder-2.0/front-end/recover.php:159 msgid "You are already logged in. You can change your password on the edit profile form." msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "" #: profile-builder-2.0/features/functions.php:909 msgid "

            You can visit your site at " msgstr "" #: profile-builder-2.0/features/functions.php:896 msgid "

            Also, you will be able to visit your site at " msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138 msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network." msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36 #: profile-builder-2.0/modules/user-listing/userlisting.php:118 msgid "Blog URL" msgstr "" #: profile-builder-2.0/admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:222 msgid "Blog Details" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:239 msgid "Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579 msgid "Welcome to %1$s!


            Your username is:%2$s" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1320 msgid "View Map" msgstr "" #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267 #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367 #: pb-add-on-woocommerce/index.php:493 msgid "Address line 2" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "Billing Fields" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Billing Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Save the billing fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Billing Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Save the billing fields names" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Shipping Fields" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Shipping Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Save the shipping fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Shipping Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Save the shipping fields names" msgstr "" #: pb-add-on-woocommerce/index.php:305 msgid "Field Name" msgstr "" #: pb-add-on-woocommerce/index.php:369 msgid "Click to edit " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:368 msgid "is not a valid phone number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:377 msgid "is not a number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:382 msgid "must be a multiplier of " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:387 msgid "must be a greater than or equal to " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:392 msgid "must be less than or equal to " msgstr "" #: profile-builder-2.0/admin/add-ons.php:103 msgid "Available in Hobbyist and Pro Versions" msgstr "" #: profile-builder-2.0/admin/add-ons.php:105 msgid "Available in All Versions" msgstr "" #: profile-builder-2.0/admin/add-ons.php:148 msgid "Learn More" msgstr "" #: profile-builder-2.0/admin/basic-info.php:99 msgid "Timepicker" msgstr "" #: profile-builder-2.0/admin/basic-info.php:100 msgid "Colorpicker" msgstr "" #: profile-builder-2.0/admin/basic-info.php:103 msgid "Currency Select" msgstr "" #: profile-builder-2.0/admin/basic-info.php:109 msgid "Number" msgstr "" #: profile-builder-2.0/admin/basic-info.php:114 msgid "Validation" msgstr "" #: profile-builder-2.0/admin/basic-info.php:115 msgid "Map" msgstr "" #: profile-builder-2.0/admin/basic-info.php:116 msgid "HTML" msgstr "" #: profile-builder-2.0/admin/basic-info.php:162 #: profile-builder-2.0/modules/modules.php:117 msgid "Repeater Fields" msgstr "" #: profile-builder-2.0/admin/basic-info.php:163 msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role." msgstr "" #: profile-builder-2.0/admin/general-settings.php:59 msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Show Currency Symbol" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Whether the currency symbol should be displayed after the currency name in the select option." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Show Post Type" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Posts from what post type will be displayed in the select." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:145 msgid "Allowable Values" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:145 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." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Error Message" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Set a custom error message that will be displayed to the user." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Time Format" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Specify the time format." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Google Maps API Key" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Enter your Google Maps API key (
            Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "Default Latitude" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "The latitude at which the map should be displayed when no pins are attached." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "Default Longitude" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "The longitude at which the map should be displayed when no pins are attached." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Default Zoom Level" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "Map Height" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "The height of the map." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "HTML Content" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "Add your HTML (or text) content" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Phone Format" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Eg. (###) ###-####" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Empty field won't check for correct phone number." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Heading Tag" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Change heading field size on front-end forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min Number Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Leave it empty for no min value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max Number Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Leave it empty for no max value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Number Step Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 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)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Leave it empty for no restriction" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:564 msgid "Albania Lek" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:565 msgid "Afghanistan Afghani" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:566 msgid "Argentina Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:567 msgid "Aruba Guilder" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:568 msgid "Australia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:569 msgid "Azerbaijan New Manat" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:570 msgid "Bahamas Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:571 msgid "Barbados Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:572 msgid "Bangladeshi taka" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:573 msgid "Belarus Ruble" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:574 msgid "Belize Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:575 msgid "Bermuda Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:576 msgid "Bolivia Boliviano" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:577 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:578 msgid "Botswana Pula" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:579 msgid "Bulgaria Lev" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:580 msgid "Brazil Real" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:581 msgid "Brunei Darussalam Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:582 msgid "Cambodia Riel" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:583 msgid "Canada Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:584 msgid "Cayman Islands Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:585 msgid "Chile Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:586 msgid "China Yuan Renminbi" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:587 msgid "Colombia Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:588 msgid "Costa Rica Colon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:589 msgid "Croatia Kuna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:590 msgid "Cuba Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:591 msgid "Czech Republic Koruna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:592 msgid "Denmark Krone" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:593 msgid "Dominican Republic Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:594 msgid "East Caribbean Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:595 msgid "Egypt Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:596 msgid "El Salvador Colon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:597 msgid "Estonia Kroon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:598 msgid "Euro" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:599 msgid "Falkland Islands (Malvinas) Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:600 msgid "Fiji Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:601 msgid "Ghana Cedis" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:602 msgid "Gibraltar Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:603 msgid "Guatemala Quetzal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:604 msgid "Guernsey Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:605 msgid "Guyana Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:606 msgid "Honduras Lempira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:607 msgid "Hong Kong Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:608 msgid "Hungary Forint" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:609 msgid "Iceland Krona" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:610 msgid "India Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:611 msgid "Indonesia Rupiah" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:612 msgid "Iran Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:613 msgid "Isle of Man Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:614 msgid "Israel Shekel" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:615 msgid "Jamaica Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:616 msgid "Japan Yen" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:617 msgid "Jersey Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:618 msgid "Kazakhstan Tenge" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:619 msgid "Korea (North) Won" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:620 msgid "Korea (South) Won" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:621 msgid "Kyrgyzstan Som" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:622 msgid "Laos Kip" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:623 msgid "Latvia Lat" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:624 msgid "Lebanon Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:625 msgid "Liberia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:626 msgid "Lithuania Litas" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:627 msgid "Macedonia Denar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:628 msgid "Malaysia Ringgit" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:629 msgid "Mauritius Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:630 msgid "Mexico Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:631 msgid "Mongolia Tughrik" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:632 msgid "Mozambique Metical" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:633 msgid "Namibia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:634 msgid "Nepal Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:635 msgid "Netherlands Antilles Guilder" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:636 msgid "New Zealand Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:637 msgid "Nicaragua Cordoba" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:638 msgid "Nigeria Naira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:639 msgid "Norway Krone" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:640 msgid "Oman Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:641 msgid "Pakistan Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:642 msgid "Panama Balboa" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:643 msgid "Paraguay Guarani" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:644 msgid "Peru Nuevo Sol" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:645 msgid "Philippines Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:646 msgid "Poland Zloty" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:647 msgid "Qatar Riyal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:648 msgid "Romania New Leu" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:649 msgid "Russia Ruble" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:650 msgid "Saint Helena Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:651 msgid "Saudi Arabia Riyal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:652 msgid "Serbia Dinar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:653 msgid "Seychelles Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:654 msgid "Singapore Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:655 msgid "Solomon Islands Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:656 msgid "Somalia Shilling" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:657 msgid "South Africa Rand" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:658 msgid "Sri Lanka Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:659 msgid "Sweden Krona" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:660 msgid "Switzerland Franc" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:661 msgid "Suriname Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:662 msgid "Syria Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:663 msgid "Taiwan New Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:664 msgid "Thailand Baht" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:665 msgid "Trinidad and Tobago Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:666 #: profile-builder-2.0/admin/manage-fields.php:667 msgid "Turkey Lira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:668 msgid "Tuvalu Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:669 msgid "Ukraine Hryvna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:670 msgid "United Kingdom Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:671 msgid "Uganda Shilling" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:672 msgid "US Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:673 msgid "Uruguay Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:674 msgid "Uzbekistan Som" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:675 msgid "Venezuela Bolivar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:676 msgid "Viet Nam Dong" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:677 msgid "Yemen Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:678 msgid "Zimbabwe Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1097 msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1314 msgid "Search Location" msgstr "" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754 msgid "You are not allowed to do this." msgstr "" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460 msgid "Search Users" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78 msgid "Conditional Logic" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79 msgid "Conditional Rules" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448 msgid "This field has conditional logic enabled." msgstr "" #: profile-builder-2.0/features/functions.php:685 msgid "Incorrect phone number" msgstr "" #: profile-builder-2.0/front-end/class-formbuilder.php:124 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." msgstr "" #: profile-builder-2.0/front-end/extra-fields/map/map.php:46 #: profile-builder-2.0/front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "" #: profile-builder-2.0/front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bolivia, __( Plurinational State of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bonaire, __( Sint Eustatius and Saba" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brunei Darussalam" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cabo Verde" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cocos (Keeling) Islands" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo, __( the Democratic Republic of the" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cote dIvoire" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Falkland Islands (Malvinas)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Holy See (Vatican City State)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iran, __( Islamic Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Democratic Peoples Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lao Peoples Democratic Republic" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macedonia, __( the former Yugoslav Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Micronesia, __( Federated States of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Moldova, __( Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palestine, __( State of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Russian Federation" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Helena, __( Ascension and Tristan da Cunha" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Martin (French part)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sint Maarten (Dutch part)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Syrian Arab Republic" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Taiwan, __( Province of China" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tanzania, __( United Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Timor-Leste" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Venezuela, __( Bolivarian Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Viet Nam" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( British" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( U.S." msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:186 msgid "User Fields Tags" msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479 msgid "The users selected password at signup" msgstr "" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278 msgid "[{{site_name}}] Notice of Email Change" msgstr "" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289 msgid "Changed Email Address Notification" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Limit" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Enable limit to the number of fields to be generated by users in front end forms " msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "General Limit" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "Limit reached message" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The maximum number of fields has been reached." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The popup message to display when the limit of repeater groups is reached." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Limit per Role" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Leave 0 for unlimited." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Repeated field group" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Manage field or group of fields that will be repeatable." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259 msgid "Edit field group" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260 msgid "Repeatable fields saved!" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277 #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326 msgid "Please enter a unique field title.\n" msgstr "" #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267 msgid "Are you sure you want to delete this?" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:192 msgid "Sort Tags" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:201 #: profile-builder-2.0/modules/user-listing/userlisting.php:2308 msgid "Faceted Menus" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:202 msgid "User Count" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1553 msgid "Show All" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1710 msgid "No options available" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1861 msgid "Remove All Filters" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Label" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Choose the facet name that appears on the frontend" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Facet Type" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Choose the facet menu type" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Facet Meta" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Choose the meta field for the facet menu" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Behaviour" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Narrow the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Expand the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Choose how multiple selections affect the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Visible choices" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Search Fields" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Choose the fields in which the Search Field will look in" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2330 msgid "Search Settings" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:8 #: pb-add-on-woocommerce/shipping-fields.php:8 msgid "Company Name" msgstr "Nazwa firmy" #: pb-add-on-woocommerce/billing-fields.php:9 #: pb-add-on-woocommerce/shipping-fields.php:9 msgid "Address" msgstr "Adres" #: pb-add-on-woocommerce/billing-fields.php:5 #: pb-add-on-woocommerce/shipping-fields.php:5 msgid "Country" msgstr "Kraj" #: pb-add-on-woocommerce/billing-fields.php:11 #: pb-add-on-woocommerce/shipping-fields.php:11 msgid "Town / City" msgstr "Miasto" #: pb-add-on-woocommerce/billing-fields.php:12 #: pb-add-on-woocommerce/shipping-fields.php:12 msgid "State / County" msgstr "Województwo" #: pb-add-on-woocommerce/billing-fields.php:13 #: pb-add-on-woocommerce/shipping-fields.php:13 msgid "Postcode / Zip" msgstr "Kod pocztowy" #: pb-add-on-woocommerce/billing-fields.php:14 msgid "Email Address" msgstr "Adres email" #: pb-add-on-woocommerce/billing-fields.php:15 msgid "Phone" msgstr "Telefon" #: pb-add-on-woocommerce/billing-fields.php:278 msgid "Ship to a different address?" msgstr "Dostawa na inny adres?" #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437 msgid "Billing Address" msgstr "Adres do faktury" #: pb-add-on-woocommerce/index.php:169 msgid "Displays customer billing fields in front-end. " msgstr "" #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438 msgid "Shipping Address" msgstr "Adres dostawy" #: pb-add-on-woocommerce/index.php:173 msgid "Displays customer shipping fields in front-end. " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Display on WooCommerce Checkout" msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Whether the field should be added to the WooCommerce checkout form or not" msgstr "" #: pb-add-on-woocommerce/index.php:541 msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:23 #: pb-add-on-woocommerce/woosync-page.php:70 msgid "WooCommerce Sync" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:76 msgid "Choose Register form to display on My Account page:" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:81 msgid "Default Register" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:103 msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce.
            This will also add the Profile Builder Login form to MyAccount page." msgstr "" #: pb-add-on-woocommerce/woosync-page.php:110 msgid "Choose Edit Profile form to display on My Account page:" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:115 msgid "Default Edit Profile" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:137 msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce." msgstr "" #: profile-builder-2.0/admin/add-ons.php:190 msgid "Recommended Plugins" msgstr "" #: profile-builder-2.0/admin/add-ons.php:219 #: profile-builder-2.0/admin/pms-cross-promotion.php:102 msgid "Free" msgstr "" #: profile-builder-2.0/admin/add-ons.php:221 msgid "Accept user payments, create subscription plans and restrict content on your membership site." msgstr "" #: profile-builder-2.0/admin/add-ons.php:222 #: profile-builder-2.0/admin/pms-cross-promotion.php:105 msgid "More Details" msgstr "Więcej szczegółów" #: profile-builder-2.0/admin/add-ons.php:240 #: profile-builder-2.0/admin/pms-cross-promotion.php:88 #: profile-builder-2.0/admin/pms-cross-promotion.php:123 #: profile-builder-2.0/admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "" #: profile-builder-2.0/admin/add-ons.php:242 #: profile-builder-2.0/admin/pms-cross-promotion.php:87 #: profile-builder-2.0/admin/pms-cross-promotion.php:125 #: profile-builder-2.0/admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "" #: profile-builder-2.0/admin/add-ons.php:256 #: profile-builder-2.0/admin/pms-cross-promotion.php:146 msgid "Could not install plugin. Retry or install manually." msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:37 msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "Wtyczka została aktywowana" #: profile-builder-2.0/admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "Wtyczka została wyłączona." #: profile-builder-2.0/admin/pms-cross-promotion.php:104 msgid "Accept user payments, create subscription plans and restrict content on your website." msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401 msgid "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45 msgid "After Login" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46 msgid "After Logout" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47 msgid "After Registration" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48 msgid "After Edit Profile" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Successful Email Confirmation" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Successful Password Reset" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55 msgid "User ID" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61 msgid "User ID or Username" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "User ID / Username" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "Please select and enter the ID or username of your user." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131 msgid "Redirect Type" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Redirect URL" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241 msgid "Individual User Redirects" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84 msgid "... Choose" msgstr "... Wybierz" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 msgid "Select a user role." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242 msgid "User Role based Redirects" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243 msgid "Global Redirects" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133 msgid "Login ( wp_login.php )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134 msgid "Register ( wp-login.php?action=register )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145 msgid "Redirect Default WordPress Forms and Pages" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157 msgid "How does this work?" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 msgid "
            User Role
            Redirect
            URL
            " msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "
            Redirect
            URL
            " msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236 msgid "These redirects happen after a successful action, like registration or after a successful login." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238 msgid "Which redirect happens depends on the following priority:" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247 msgid "Redirect Default WordPress forms and pages" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248 msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250 msgid "Available tags for dynamic URLs" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251 msgid "You use the following tags in your URLs to redirect users to various pages." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253 msgid "generates a url of the current website homepage." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254 msgid "in WordPress the site url can be different then the home url" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255 msgid "the ID of the user" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256 msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257 msgid "the URL of the previously visited page" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352 msgid "You can't add duplicate redirects!" msgstr "" #: profile-builder-2.0/admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "" #: profile-builder-2.0/admin/basic-info.php:37 msgid "Friction-less login using %s shortcode or a widget." msgstr "" #: profile-builder-2.0/admin/basic-info.php:41 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "" #: profile-builder-2.0/admin/basic-info.php:45 msgid "Straight forward edit profile forms using %s shortcode." msgstr "" #: profile-builder-2.0/admin/basic-info.php:58 msgid "Allow users to recover their password in the front-end using the %s." msgstr "" #: profile-builder-2.0/admin/basic-info.php:140 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." msgstr "" #: profile-builder-2.0/admin/general-settings.php:115 msgid "\"Admin Approval\" on User Role:" msgstr "" #: profile-builder-2.0/admin/general-settings.php:134 msgid "Select on what user roles to activate Admin Approval." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Display on PB forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Login" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Register" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Recover Password" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Display on default WP forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Login" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Register" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Recover Password" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default option of the field" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:282 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Afghanistan" msgstr "Afghanistan" #: profile-builder-2.0/admin/manage-fields.php:283 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aland Islands" msgstr "Aland Islands" #: profile-builder-2.0/admin/manage-fields.php:284 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Albania" msgstr "Albania" #: profile-builder-2.0/admin/manage-fields.php:285 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Algeria" msgstr "Algeria" #: profile-builder-2.0/admin/manage-fields.php:286 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "American Samoa" msgstr "American Samoa" #: profile-builder-2.0/admin/manage-fields.php:287 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Andorra" msgstr "Andorra" #: profile-builder-2.0/admin/manage-fields.php:288 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Angola" msgstr "Angola" #: profile-builder-2.0/admin/manage-fields.php:289 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Anguilla" msgstr "Anguilla" #: profile-builder-2.0/admin/manage-fields.php:290 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antarctica" msgstr "Antarctica" #: profile-builder-2.0/admin/manage-fields.php:291 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" #: profile-builder-2.0/admin/manage-fields.php:292 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Argentina" msgstr "Argentina" #: profile-builder-2.0/admin/manage-fields.php:293 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Armenia" msgstr "Armenia" #: profile-builder-2.0/admin/manage-fields.php:294 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aruba" msgstr "Aruba" #: profile-builder-2.0/admin/manage-fields.php:295 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Australia" msgstr "Australia" #: profile-builder-2.0/admin/manage-fields.php:296 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Austria" msgstr "Austria" #: profile-builder-2.0/admin/manage-fields.php:297 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Azerbaijan" msgstr "Azerbaijan" #: profile-builder-2.0/admin/manage-fields.php:298 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahamas" msgstr "Bahamas" #: profile-builder-2.0/admin/manage-fields.php:299 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahrain" msgstr "Bahrain" #: profile-builder-2.0/admin/manage-fields.php:300 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bangladesh" msgstr "Bangladesh" #: profile-builder-2.0/admin/manage-fields.php:301 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Barbados" msgstr "Barbados" #: profile-builder-2.0/admin/manage-fields.php:302 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belarus" msgstr "Belarus" #: profile-builder-2.0/admin/manage-fields.php:303 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belgium" msgstr "Belgium" #: profile-builder-2.0/admin/manage-fields.php:304 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belize" msgstr "Belize" #: profile-builder-2.0/admin/manage-fields.php:305 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Benin" msgstr "Benin" #: profile-builder-2.0/admin/manage-fields.php:306 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bermuda" msgstr "Bermuda" #: profile-builder-2.0/admin/manage-fields.php:307 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bhutan" msgstr "Bhutan" #: profile-builder-2.0/admin/manage-fields.php:308 msgid "Bolivia" msgstr "Bolivia" #: profile-builder-2.0/admin/manage-fields.php:309 msgid "Bonaire, Saint Eustatius and Saba" msgstr "Bonaire, Saint Eustatius and Saba" #: profile-builder-2.0/admin/manage-fields.php:310 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bosnia and Herzegovina" msgstr "Bosnia and Herzegovina" #: profile-builder-2.0/admin/manage-fields.php:311 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Botswana" msgstr "Botswana" #: profile-builder-2.0/admin/manage-fields.php:312 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bouvet Island" msgstr "Bouvet Island" #: profile-builder-2.0/admin/manage-fields.php:313 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brazil" msgstr "Brazil" #: profile-builder-2.0/admin/manage-fields.php:314 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: profile-builder-2.0/admin/manage-fields.php:315 msgid "British Virgin Islands" msgstr "British Virgin Islands" #: profile-builder-2.0/admin/manage-fields.php:316 msgid "Brunei" msgstr "Brunei" #: profile-builder-2.0/admin/manage-fields.php:317 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bulgaria" msgstr "Bulgaria" #: profile-builder-2.0/admin/manage-fields.php:318 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burkina Faso" msgstr "Burkina Faso" #: profile-builder-2.0/admin/manage-fields.php:319 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burundi" msgstr "Burundi" #: profile-builder-2.0/admin/manage-fields.php:320 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cambodia" msgstr "Cambodia" #: profile-builder-2.0/admin/manage-fields.php:321 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cameroon" msgstr "Cameroon" #: profile-builder-2.0/admin/manage-fields.php:322 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Canada" msgstr "Canada" #: profile-builder-2.0/admin/manage-fields.php:323 msgid "Cape Verde" msgstr "Cape Verde" #: profile-builder-2.0/admin/manage-fields.php:324 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cayman Islands" msgstr "Cayman Islands" #: profile-builder-2.0/admin/manage-fields.php:325 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Central African Republic" msgstr "Central African Republic" #: profile-builder-2.0/admin/manage-fields.php:326 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chad" msgstr "Chad" #: profile-builder-2.0/admin/manage-fields.php:327 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chile" msgstr "Chile" #: profile-builder-2.0/admin/manage-fields.php:328 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "China" msgstr "China" #: profile-builder-2.0/admin/manage-fields.php:329 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Christmas Island" msgstr "Christmas Island" #: profile-builder-2.0/admin/manage-fields.php:330 msgid "Cocos Islands" msgstr "Cocos Islands" #: profile-builder-2.0/admin/manage-fields.php:331 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Colombia" msgstr "Colombia" #: profile-builder-2.0/admin/manage-fields.php:332 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Comoros" msgstr "Comoros" #: profile-builder-2.0/admin/manage-fields.php:333 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cook Islands" msgstr "Cook Islands" #: profile-builder-2.0/admin/manage-fields.php:334 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Costa Rica" msgstr "Costa Rica" #: profile-builder-2.0/admin/manage-fields.php:335 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Croatia" msgstr "Croatia" #: profile-builder-2.0/admin/manage-fields.php:336 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cuba" msgstr "Cuba" #: profile-builder-2.0/admin/manage-fields.php:337 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Curacao" msgstr "Curacao" #: profile-builder-2.0/admin/manage-fields.php:338 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cyprus" msgstr "Cyprus" #: profile-builder-2.0/admin/manage-fields.php:339 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Czech Republic" msgstr "Czech Republic" #: profile-builder-2.0/admin/manage-fields.php:340 msgid "Democratic Republic of the Congo" msgstr "Democratic Republic of the Congo" #: profile-builder-2.0/admin/manage-fields.php:341 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Denmark" msgstr "Denmark" #: profile-builder-2.0/admin/manage-fields.php:342 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Djibouti" msgstr "Djibouti" #: profile-builder-2.0/admin/manage-fields.php:343 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominica" msgstr "Dominica" #: profile-builder-2.0/admin/manage-fields.php:344 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominican Republic" msgstr "Dominican Republic" #: profile-builder-2.0/admin/manage-fields.php:345 msgid "East Timor" msgstr "East Timor" #: profile-builder-2.0/admin/manage-fields.php:346 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ecuador" msgstr "Ecuador" #: profile-builder-2.0/admin/manage-fields.php:347 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Egypt" msgstr "Egypt" #: profile-builder-2.0/admin/manage-fields.php:348 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "El Salvador" msgstr "El Salvador" #: profile-builder-2.0/admin/manage-fields.php:349 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: profile-builder-2.0/admin/manage-fields.php:350 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Eritrea" msgstr "Eritrea" #: profile-builder-2.0/admin/manage-fields.php:351 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Estonia" msgstr "Estonia" #: profile-builder-2.0/admin/manage-fields.php:352 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ethiopia" msgstr "Ethiopia" #: profile-builder-2.0/admin/manage-fields.php:353 msgid "Falkland Islands" msgstr "Falkland Islands" #: profile-builder-2.0/admin/manage-fields.php:354 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Faroe Islands" msgstr "Faroe Islands" #: profile-builder-2.0/admin/manage-fields.php:355 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Fiji" msgstr "Fiji" #: profile-builder-2.0/admin/manage-fields.php:356 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Finland" msgstr "Finland" #: profile-builder-2.0/admin/manage-fields.php:357 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "France" msgstr "France" #: profile-builder-2.0/admin/manage-fields.php:358 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Guiana" msgstr "French Guiana" #: profile-builder-2.0/admin/manage-fields.php:359 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Polynesia" msgstr "French Polynesia" #: profile-builder-2.0/admin/manage-fields.php:360 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Southern Territories" msgstr "French Southern Territories" #: profile-builder-2.0/admin/manage-fields.php:361 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gabon" msgstr "Gabon" #: profile-builder-2.0/admin/manage-fields.php:362 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gambia" msgstr "Gambia" #: profile-builder-2.0/admin/manage-fields.php:363 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Georgia" msgstr "Georgia" #: profile-builder-2.0/admin/manage-fields.php:364 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Germany" msgstr "Germany" #: profile-builder-2.0/admin/manage-fields.php:365 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ghana" msgstr "Ghana" #: profile-builder-2.0/admin/manage-fields.php:366 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gibraltar" msgstr "Gibraltar" #: profile-builder-2.0/admin/manage-fields.php:367 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greece" msgstr "Greece" #: profile-builder-2.0/admin/manage-fields.php:368 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greenland" msgstr "Greenland" #: profile-builder-2.0/admin/manage-fields.php:369 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Grenada" msgstr "Grenada" #: profile-builder-2.0/admin/manage-fields.php:370 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guadeloupe" msgstr "Guadeloupe" #: profile-builder-2.0/admin/manage-fields.php:371 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guam" msgstr "Guam" #: profile-builder-2.0/admin/manage-fields.php:372 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guatemala" msgstr "Guatemala" #: profile-builder-2.0/admin/manage-fields.php:373 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guernsey" msgstr "Guernsey" #: profile-builder-2.0/admin/manage-fields.php:374 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea" msgstr "Guinea" #: profile-builder-2.0/admin/manage-fields.php:375 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: profile-builder-2.0/admin/manage-fields.php:376 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guyana" msgstr "Guyana" #: profile-builder-2.0/admin/manage-fields.php:377 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Haiti" msgstr "Haiti" #: profile-builder-2.0/admin/manage-fields.php:378 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Heard Island and McDonald Islands" msgstr "Heard Island and McDonald Islands" #: profile-builder-2.0/admin/manage-fields.php:379 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Honduras" msgstr "Honduras" #: profile-builder-2.0/admin/manage-fields.php:380 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hong Kong" msgstr "Hong Kong" #: profile-builder-2.0/admin/manage-fields.php:381 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hungary" msgstr "Hungary" #: profile-builder-2.0/admin/manage-fields.php:382 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iceland" msgstr "Iceland" #: profile-builder-2.0/admin/manage-fields.php:383 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "India" msgstr "India" #: profile-builder-2.0/admin/manage-fields.php:384 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Indonesia" msgstr "Indonesia" #: profile-builder-2.0/admin/manage-fields.php:385 msgid "Iran" msgstr "Iran" #: profile-builder-2.0/admin/manage-fields.php:386 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iraq" msgstr "Iraq" #: profile-builder-2.0/admin/manage-fields.php:387 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ireland" msgstr "Ireland" #: profile-builder-2.0/admin/manage-fields.php:388 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Isle of Man" msgstr "Isle of Man" #: profile-builder-2.0/admin/manage-fields.php:389 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Israel" msgstr "Israel" #: profile-builder-2.0/admin/manage-fields.php:390 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Italy" msgstr "Italy" #: profile-builder-2.0/admin/manage-fields.php:391 msgid "Ivory Coast" msgstr "Ivory Coast" #: profile-builder-2.0/admin/manage-fields.php:392 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jamaica" msgstr "Jamaica" #: profile-builder-2.0/admin/manage-fields.php:393 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Japan" msgstr "Japan" #: profile-builder-2.0/admin/manage-fields.php:394 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jersey" msgstr "Jersey" #: profile-builder-2.0/admin/manage-fields.php:395 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jordan" msgstr "Jordan" #: profile-builder-2.0/admin/manage-fields.php:396 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kazakhstan" msgstr "Kazakhstan" #: profile-builder-2.0/admin/manage-fields.php:397 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kenya" msgstr "Kenya" #: profile-builder-2.0/admin/manage-fields.php:398 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kiribati" msgstr "Kiribati" #: profile-builder-2.0/admin/manage-fields.php:399 msgid "Kosovo" msgstr "Kosovo" #: profile-builder-2.0/admin/manage-fields.php:400 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kuwait" msgstr "Kuwait" #: profile-builder-2.0/admin/manage-fields.php:401 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: profile-builder-2.0/admin/manage-fields.php:402 msgid "Laos" msgstr "Laos" #: profile-builder-2.0/admin/manage-fields.php:403 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Latvia" msgstr "Latvia" #: profile-builder-2.0/admin/manage-fields.php:404 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lebanon" msgstr "Lebanon" #: profile-builder-2.0/admin/manage-fields.php:405 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lesotho" msgstr "Lesotho" #: profile-builder-2.0/admin/manage-fields.php:406 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liberia" msgstr "Liberia" #: profile-builder-2.0/admin/manage-fields.php:407 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Libya" msgstr "Libya" #: profile-builder-2.0/admin/manage-fields.php:408 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liechtenstein" msgstr "Liechtenstein" #: profile-builder-2.0/admin/manage-fields.php:409 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lithuania" msgstr "Lithuania" #: profile-builder-2.0/admin/manage-fields.php:410 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Luxembourg" msgstr "Luxembourg" #: profile-builder-2.0/admin/manage-fields.php:411 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macao" msgstr "Macao" #: profile-builder-2.0/admin/manage-fields.php:412 msgid "Macedonia" msgstr "Macedonia" #: profile-builder-2.0/admin/manage-fields.php:413 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Madagascar" msgstr "Madagascar" #: profile-builder-2.0/admin/manage-fields.php:414 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malawi" msgstr "Malawi" #: profile-builder-2.0/admin/manage-fields.php:415 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malaysia" msgstr "Malaysia" #: profile-builder-2.0/admin/manage-fields.php:416 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Maldives" msgstr "Maldives" #: profile-builder-2.0/admin/manage-fields.php:417 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mali" msgstr "Mali" #: profile-builder-2.0/admin/manage-fields.php:418 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malta" msgstr "Malta" #: profile-builder-2.0/admin/manage-fields.php:419 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Marshall Islands" msgstr "Marshall Islands" #: profile-builder-2.0/admin/manage-fields.php:420 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Martinique" msgstr "Martinique" #: profile-builder-2.0/admin/manage-fields.php:421 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritania" msgstr "Mauritania" #: profile-builder-2.0/admin/manage-fields.php:422 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritius" msgstr "Mauritius" #: profile-builder-2.0/admin/manage-fields.php:423 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mayotte" msgstr "Mayotte" #: profile-builder-2.0/admin/manage-fields.php:424 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mexico" msgstr "Mexico" #: profile-builder-2.0/admin/manage-fields.php:425 msgid "Micronesia" msgstr "Micronesia" #: profile-builder-2.0/admin/manage-fields.php:426 msgid "Moldova" msgstr "Moldova" #: profile-builder-2.0/admin/manage-fields.php:427 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Monaco" msgstr "Monaco" #: profile-builder-2.0/admin/manage-fields.php:428 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mongolia" msgstr "Mongolia" #: profile-builder-2.0/admin/manage-fields.php:429 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montenegro" msgstr "Montenegro" #: profile-builder-2.0/admin/manage-fields.php:430 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montserrat" msgstr "Montserrat" #: profile-builder-2.0/admin/manage-fields.php:431 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Morocco" msgstr "Morocco" #: profile-builder-2.0/admin/manage-fields.php:432 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mozambique" msgstr "Mozambique" #: profile-builder-2.0/admin/manage-fields.php:433 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Myanmar" msgstr "Myanmar" #: profile-builder-2.0/admin/manage-fields.php:434 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Namibia" msgstr "Namibia" #: profile-builder-2.0/admin/manage-fields.php:435 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nauru" msgstr "Nauru" #: profile-builder-2.0/admin/manage-fields.php:436 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nepal" msgstr "Nepal" #: profile-builder-2.0/admin/manage-fields.php:437 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Netherlands" msgstr "Netherlands" #: profile-builder-2.0/admin/manage-fields.php:438 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Caledonia" msgstr "New Caledonia" #: profile-builder-2.0/admin/manage-fields.php:439 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Zealand" msgstr "New Zealand" #: profile-builder-2.0/admin/manage-fields.php:440 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nicaragua" msgstr "Nicaragua" #: profile-builder-2.0/admin/manage-fields.php:441 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niger" msgstr "Niger" #: profile-builder-2.0/admin/manage-fields.php:442 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nigeria" msgstr "Nigeria" #: profile-builder-2.0/admin/manage-fields.php:443 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niue" msgstr "Niue" #: profile-builder-2.0/admin/manage-fields.php:444 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norfolk Island" msgstr "Norfolk Island" #: profile-builder-2.0/admin/manage-fields.php:445 msgid "North Korea" msgstr "North Korea" #: profile-builder-2.0/admin/manage-fields.php:446 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: profile-builder-2.0/admin/manage-fields.php:447 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norway" msgstr "Norway" #: profile-builder-2.0/admin/manage-fields.php:448 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Oman" msgstr "Oman" #: profile-builder-2.0/admin/manage-fields.php:449 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pakistan" msgstr "Pakistan" #: profile-builder-2.0/admin/manage-fields.php:450 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palau" msgstr "Palau" #: profile-builder-2.0/admin/manage-fields.php:451 msgid "Palestinian Territory" msgstr "Palestinian Territory" #: profile-builder-2.0/admin/manage-fields.php:452 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Panama" msgstr "Panama" #: profile-builder-2.0/admin/manage-fields.php:453 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: profile-builder-2.0/admin/manage-fields.php:454 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Paraguay" msgstr "Paraguay" #: profile-builder-2.0/admin/manage-fields.php:455 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Peru" msgstr "Peru" #: profile-builder-2.0/admin/manage-fields.php:456 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Philippines" msgstr "Philippines" #: profile-builder-2.0/admin/manage-fields.php:457 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pitcairn" msgstr "Pitcairn" #: profile-builder-2.0/admin/manage-fields.php:458 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Poland" msgstr "Poland" #: profile-builder-2.0/admin/manage-fields.php:459 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Portugal" msgstr "Portugal" #: profile-builder-2.0/admin/manage-fields.php:460 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Puerto Rico" msgstr "Puerto Rico" #: profile-builder-2.0/admin/manage-fields.php:461 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Qatar" msgstr "Qatar" #: profile-builder-2.0/admin/manage-fields.php:462 msgid "Republic of the Congo" msgstr "Republic of the Congo" #: profile-builder-2.0/admin/manage-fields.php:463 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Reunion" msgstr "Reunion" #: profile-builder-2.0/admin/manage-fields.php:464 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Romania" msgstr "Romania" #: profile-builder-2.0/admin/manage-fields.php:465 msgid "Russia" msgstr "Russia" #: profile-builder-2.0/admin/manage-fields.php:466 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Rwanda" msgstr "Rwanda" #: profile-builder-2.0/admin/manage-fields.php:467 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: profile-builder-2.0/admin/manage-fields.php:468 msgid "Saint Helena" msgstr "Saint Helena" #: profile-builder-2.0/admin/manage-fields.php:469 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts and Nevis" #: profile-builder-2.0/admin/manage-fields.php:470 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Lucia" msgstr "Saint Lucia" #: profile-builder-2.0/admin/manage-fields.php:471 msgid "Saint Martin" msgstr "Saint Martin" #: profile-builder-2.0/admin/manage-fields.php:472 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre and Miquelon" #: profile-builder-2.0/admin/manage-fields.php:473 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent and the Grenadines" #: profile-builder-2.0/admin/manage-fields.php:474 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Samoa" msgstr "Samoa" #: profile-builder-2.0/admin/manage-fields.php:475 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "San Marino" msgstr "San Marino" #: profile-builder-2.0/admin/manage-fields.php:476 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sao Tome and Principe" msgstr "Sao Tome and Principe" #: profile-builder-2.0/admin/manage-fields.php:477 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: profile-builder-2.0/admin/manage-fields.php:478 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Senegal" msgstr "Senegal" #: profile-builder-2.0/admin/manage-fields.php:479 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Serbia" msgstr "Serbia" #: profile-builder-2.0/admin/manage-fields.php:480 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Seychelles" msgstr "Seychelles" #: profile-builder-2.0/admin/manage-fields.php:481 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sierra Leone" msgstr "Sierra Leone" #: profile-builder-2.0/admin/manage-fields.php:482 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Singapore" msgstr "Singapore" #: profile-builder-2.0/admin/manage-fields.php:483 msgid "Sint Maarten" msgstr "Sint Maarten" #: profile-builder-2.0/admin/manage-fields.php:484 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovakia" msgstr "Slovakia" #: profile-builder-2.0/admin/manage-fields.php:485 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovenia" msgstr "Slovenia" #: profile-builder-2.0/admin/manage-fields.php:486 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Solomon Islands" msgstr "Solomon Islands" #: profile-builder-2.0/admin/manage-fields.php:487 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Somalia" msgstr "Somalia" #: profile-builder-2.0/admin/manage-fields.php:488 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Africa" msgstr "South Africa" #: profile-builder-2.0/admin/manage-fields.php:489 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Georgia and the South Sandwich Islands" msgstr "South Georgia and the South Sandwich Islands" #: profile-builder-2.0/admin/manage-fields.php:490 msgid "South Korea" msgstr "South Korea" #: profile-builder-2.0/admin/manage-fields.php:491 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Sudan" msgstr "South Sudan" #: profile-builder-2.0/admin/manage-fields.php:492 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Spain" msgstr "Spain" #: profile-builder-2.0/admin/manage-fields.php:493 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sri Lanka" msgstr "Sri Lanka" #: profile-builder-2.0/admin/manage-fields.php:494 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sudan" msgstr "Sudan" #: profile-builder-2.0/admin/manage-fields.php:495 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Suriname" msgstr "Suriname" #: profile-builder-2.0/admin/manage-fields.php:496 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Svalbard and Jan Mayen" msgstr "Svalbard and Jan Mayen" #: profile-builder-2.0/admin/manage-fields.php:497 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Swaziland" msgstr "Swaziland" #: profile-builder-2.0/admin/manage-fields.php:498 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sweden" msgstr "Sweden" #: profile-builder-2.0/admin/manage-fields.php:499 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Switzerland" msgstr "Switzerland" #: profile-builder-2.0/admin/manage-fields.php:500 msgid "Syria" msgstr "Syria" #: profile-builder-2.0/admin/manage-fields.php:501 msgid "Taiwan" msgstr "Taiwan" #: profile-builder-2.0/admin/manage-fields.php:502 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tajikistan" msgstr "Tajikistan" #: profile-builder-2.0/admin/manage-fields.php:503 msgid "Tanzania" msgstr "Tanzania" #: profile-builder-2.0/admin/manage-fields.php:504 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Thailand" msgstr "Thailand" #: profile-builder-2.0/admin/manage-fields.php:505 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Togo" msgstr "Togo" #: profile-builder-2.0/admin/manage-fields.php:506 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tokelau" msgstr "Tokelau" #: profile-builder-2.0/admin/manage-fields.php:507 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tonga" msgstr "Tonga" #: profile-builder-2.0/admin/manage-fields.php:508 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Trinidad and Tobago" msgstr "Trinidad and Tobago" #: profile-builder-2.0/admin/manage-fields.php:509 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tunisia" msgstr "Tunisia" #: profile-builder-2.0/admin/manage-fields.php:510 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkey" msgstr "Turkey" #: profile-builder-2.0/admin/manage-fields.php:511 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkmenistan" msgstr "Turkmenistan" #: profile-builder-2.0/admin/manage-fields.php:512 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Islands" #: profile-builder-2.0/admin/manage-fields.php:513 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tuvalu" msgstr "Tuvalu" #: profile-builder-2.0/admin/manage-fields.php:514 msgid "U.S. Virgin Islands" msgstr "U.S. Virgin Islands" #: profile-builder-2.0/admin/manage-fields.php:515 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uganda" msgstr "Uganda" #: profile-builder-2.0/admin/manage-fields.php:516 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ukraine" msgstr "Ukraine" #: profile-builder-2.0/admin/manage-fields.php:517 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Arab Emirates" msgstr "United Arab Emirates" #: profile-builder-2.0/admin/manage-fields.php:518 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Kingdom" msgstr "United Kingdom" #: profile-builder-2.0/admin/manage-fields.php:519 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States" msgstr "United States" #: profile-builder-2.0/admin/manage-fields.php:520 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: profile-builder-2.0/admin/manage-fields.php:521 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uruguay" msgstr "Uruguay" #: profile-builder-2.0/admin/manage-fields.php:522 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uzbekistan" msgstr "Uzbekistan" #: profile-builder-2.0/admin/manage-fields.php:523 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Vanuatu" msgstr "Vanuatu" #: profile-builder-2.0/admin/manage-fields.php:524 msgid "Vatican" msgstr "Vatican" #: profile-builder-2.0/admin/manage-fields.php:525 msgid "Venezuela" msgstr "Venezuela" #: profile-builder-2.0/admin/manage-fields.php:526 msgid "Vietnam" msgstr "Vietnam" #: profile-builder-2.0/admin/manage-fields.php:527 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Wallis and Futuna" msgstr "Wallis and Futuna" #: profile-builder-2.0/admin/manage-fields.php:528 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Western Sahara" msgstr "Western Sahara" #: profile-builder-2.0/admin/manage-fields.php:529 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Yemen" msgstr "Yemen" #: profile-builder-2.0/admin/manage-fields.php:530 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zambia" msgstr "Zambia" #: profile-builder-2.0/admin/manage-fields.php:531 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zimbabwe" msgstr "Zimbabwe" #: profile-builder-2.0/admin/manage-fields.php:1219 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." msgstr "" #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237 msgid "Your account has to be confirmed by an administrator before you can log in." msgstr "" #: profile-builder-2.0/features/admin-approval/admin-approval.php:216 msgid "Your account has been successfully created!" msgstr "" #: profile-builder-2.0/features/functions.php:678 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458 msgid "Please enter a (valid) reCAPTCHA value" msgstr "" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 msgid "Click the BACK button on your browser, and try again." msgstr "" #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78 #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87 msgid "Sorry, you cannot upload this file type for this field." msgstr "" #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94 msgid "An error occurred, please try again later." msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:282 msgid "More" msgstr "Więcej" #: profile-builder-2.0/modules/user-listing/userlisting.php:376 msgid "You do not have permission to view this user list." msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:389 msgid "You do not have the required user role to view this user list." msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2253 msgid "Ascending" msgstr "Rosnąco" #: profile-builder-2.0/modules/user-listing/userlisting.php:2254 msgid "Descending" msgstr "Malejąco" #: profile-builder-2.0/admin/add-ons.php:148 #: profile-builder-2.0/admin/add-ons.php:248 #: profile-builder-2.0/admin/pms-cross-promotion.php:134 #: profile-builder-2.0/admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "Pobierz" #: profile-builder-2.0/admin/admin-functions.php:200 msgid "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. " msgstr "Jeśli jesteś zadowolony z korzystania z %1$s oceń nas proszę na WordPress.org. Więcej zadowolonych użytkowników oznacza więcej funkcjonalności, mniej błędów oraz lepsze wsparcie dla wszystkich." #: profile-builder-2.0/admin/manage-fields.php:82 msgid "Choose one of the supported field types" msgstr "Wybierz jeden ze wspieranych typów plików" #: profile-builder-2.0/admin/manage-fields.php:84 msgid ". Extra Field Types are available in Hobbyist or PRO versions." msgstr ". Dodatkowe pola są dostępne w wersjach Hobbyist i PRO." #: profile-builder-2.0/admin/manage-fields.php:131 msgid "Site Key" msgstr "Klucz strony" #: profile-builder-2.0/admin/manage-fields.php:131 msgid "The site key from Google, www.google.com/recaptcha" msgstr "The site key from Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "Secret Key" msgstr "Tajny klucz" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "The secret key from Google, www.google.com/recaptcha" msgstr "Tajny klucz od Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:1023 msgid "You must enter the site key\n" msgstr "Musisz podać klucz strony\n" #: profile-builder-2.0/admin/manage-fields.php:1025 msgid "You must enter the secret key\n" msgstr "Musisz podać tajny klucz\n" #: profile-builder-2.0/admin/add-ons.php:10 #: profile-builder-2.0/admin/add-ons.php:32 msgid "Add-Ons" msgstr "Wtyczki" #: profile-builder-2.0/admin/add-ons.php:34 #: profile-builder-2.0/admin/add-ons.php:129 #: profile-builder-2.0/admin/add-ons.php:231 #: profile-builder-2.0/admin/pms-cross-promotion.php:78 #: profile-builder-2.0/admin/pms-cross-promotion.php:114 #: profile-builder-2.0/admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "Aktwyuj" #: profile-builder-2.0/admin/add-ons.php:36 #: profile-builder-2.0/admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "Pobieranie i instalowanie" #: profile-builder-2.0/admin/add-ons.php:37 #: profile-builder-2.0/admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "Instalacja zakończona" #: profile-builder-2.0/admin/add-ons.php:39 msgid "Add-On is Active" msgstr "Wtyczka aktywna." #: profile-builder-2.0/admin/add-ons.php:40 msgid "Add-On has been activated" msgstr "Wtyczka została aktywowana." #: profile-builder-2.0/admin/add-ons.php:41 #: profile-builder-2.0/admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "Ponów instalację" #: profile-builder-2.0/admin/add-ons.php:43 #: profile-builder-2.0/admin/add-ons.php:140 msgid "Add-On is active" msgstr "Wtyczka jest aktywna" #: profile-builder-2.0/admin/add-ons.php:44 #: profile-builder-2.0/admin/add-ons.php:138 msgid "Add-On is inactive" msgstr "Wtyczka jest nieaktywna" #: profile-builder-2.0/admin/add-ons.php:46 #: profile-builder-2.0/admin/add-ons.php:133 #: profile-builder-2.0/admin/add-ons.php:235 #: profile-builder-2.0/admin/pms-cross-promotion.php:90 #: profile-builder-2.0/admin/pms-cross-promotion.php:118 #: profile-builder-2.0/admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "Dezakwytuj" #: profile-builder-2.0/admin/add-ons.php:47 msgid "Add-On has been deactivated." msgstr "Wtyczka została zdezaktywowana" #: profile-builder-2.0/admin/add-ons.php:59 msgid "Something went wrong, we could not connect to the server. Please try again later." msgstr "Coś poszło nie tak. Nie możemy połączyć się z serwerem. Spróbuj ponownie później." #: profile-builder-2.0/admin/pms-cross-promotion.php:137 #: profile-builder-2.0/admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "Instaluj teraz" #: profile-builder-2.0/admin/add-ons.php:153 #: profile-builder-2.0/admin/add-ons.php:251 #: profile-builder-2.0/admin/pms-cross-promotion.php:141 #: profile-builder-2.0/admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "Kompatybilność z twoją wersją Profile Builder." #: profile-builder-2.0/admin/add-ons.php:162 msgid "Upgrade Profile Builder" msgstr "Zaktualizuj Profile Builder" #: profile-builder-2.0/admin/add-ons.php:163 msgid "Not compatible with Profile Builder" msgstr "Niekompatybilne z Profile Builder" #: profile-builder-2.0/admin/add-ons.php:171 msgid "Not compatible with your version of Profile Builder." msgstr "Niekompatybilne z twoją wersją Profile Buildera" #: profile-builder-2.0/admin/add-ons.php:172 msgid "Minimum required Profile Builder version:" msgstr "Minimalna wymagana wersja Profile Buidler:" #: profile-builder-2.0/admin/add-ons.php:177 msgid "Could not install add-on. Retry or install manually." msgstr "Nie udało się zainstalować dodatku. Spróbuj ponownie lub zainstaluj ręcznie." #: profile-builder-2.0/front-end/default-fields/email/email.php:51 msgid "You must enter a valid email address." msgstr "Wprowadź poprawny adres email." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "Proponowany login zawiera niedozwolone znaki." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "Wprowadź poprawny login." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72 #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85 msgid "Only administrators can see this field on edit profile forms." msgstr "Tylko administratorzy widzą te pole w formularzy edycji profilu." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81 msgid "As an administrator you cannot change your role." msgstr "Jako administrator nie możesz zmienić swojej roli." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117 msgid "" "\n" "

            {{username}} has requested a password change via the password reset feature.

            \n" "

            His/her new password is: {{password}}

            \n" msgstr "" "\n" "

            {{username}} poprosił(a) o zmianę hasła poprzez narzędzie resetu hasła.

            \n" "

            Jej/jego nowe hasło to: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141 msgid "Admin Notification for User Password Reset" msgstr "Powiadomienia administratora o resecie hasła użytkownika." #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46 msgid "Reset Key" msgstr "Klucz restartu" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47 msgid "Reset Url" msgstr "URL restartu" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48 msgid "Reset Link" msgstr "Link restartu" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204 msgid "" "\n" "

            Someone requested that the password be reset for the following account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            \n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" msgstr "" "\n" "

            Poproszono o reset hasła dla następującego konta: {{site_name}}
            \n" "Nazwa użytkownika: {{username}}

            \n" "

            Jeśli jest to pomyłka, proszę zingoruj ten email, a nic się nie stanie.

            \n" "

            Aby zresetować hasło przejdź pod następujący adres:
            \n" "{{{reset_link}}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218 msgid "[{{site_name}}] Password Reset" msgstr "[{{site_name}}] Reset hasła" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229 msgid "Password Reset Email" msgstr "Email do zresetowania hasła" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235 msgid "" "\n" "

            You have successfully reset your password to: {{password}}

            \n" msgstr "" "\n" "

            Udało Ci się poprawnie zresetować hasło. Twoje nowe hasło to: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset Successfully" msgstr "[{{site_name}}] Hasło zostało zresetowanie." #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256 msgid "Password Reset Success Email" msgstr "Reset hasła Sukces Email" #: profile-builder-2.0/modules/user-listing/userlisting.php:159 msgid "User Nicename" msgstr "Przezwisko (Nick)" #: pb-add-on-woocommerce/woosync-page.php:80 #: pb-add-on-woocommerce/woosync-page.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:499 msgid "None" msgstr "Brak" #: profile-builder-2.0/admin/admin-functions.php:132 msgid "ERROR: The password must have the minimum length of %s characters" msgstr "BŁĄD: Hasło musi mieć minimum %s znaków." #: profile-builder-2.0/admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr "BŁĄD: Minimalna siłahasła to: %s" #: profile-builder-2.0/admin/general-settings.php:179 msgid "Username and Email" msgstr "Nazwa użytkownika lub email" #: profile-builder-2.0/admin/general-settings.php:184 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "\"Nazwa użytkownika lub email\" - użytkownicy mogą zalogować się korzystając z nazwy użytkownika lub adresu email." #: profile-builder-2.0/admin/general-settings.php:185 msgid "\"Username\" - users can Log In only with Username." msgstr "\"Nazwa użytkownika\" - użytkownicy mogą zalogować się tylko przez podanie nazwy użytkownika." #: profile-builder-2.0/admin/general-settings.php:186 msgid "\"Email\" - users can Log In only with Email." msgstr "\"Email\" - użytkownicy mogą zalogować się tylko przez podanie adresu email." #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "Wybierz rozszerzenie/rozszedzenia, które użytkownicy mogą przesyłać.
            Przykład: .ext1,.ext2,.ext3
            Jeśli nic nie wybrano, domyślne to: .jpg,.jpeg,.gif,.png (.*)" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)" msgstr "Wybierz rozszerzenie/rozszerzenia, do których chcesz ograniczyć przesyłanie.
            Przykład: .ext1,.ext2,.ext3
            Jeśli nie dokonano wyboru, wszystkie wspierane przez Wordpress rozszerzenia będą dozwolone (.*)" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "User Roles" msgstr "Profile użytkownika" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "Wybierz profile użytkowników, które mają być widoczne dla użytkownika ( przeciągnij, aby posortować )" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "User Roles Order" msgstr "Kolejność profili użytkownika" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "Save the user role order from the user roles checkboxes" msgstr "Zapisz kolejność profili użytkownika z pól wyboru" #: profile-builder-2.0/admin/manage-fields.php:1128 msgid "Please select at least one user role\n" msgstr "Wybierz proszę, co najmniej jeden profil użytkownika\n" #: profile-builder-2.0/admin/register-version.php:22 msgid "Profile Builder Register" msgstr "Rejestracja Profile Builder" #: profile-builder-2.0/admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "Numer seryjny wkrótce wygaśnie!" #: profile-builder-2.0/admin/register-version.php:81 msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr "Twój numer seryjny wkrótce wygaśnie, proszę %1$s Odnów Swoją Licencję%2$s." #: profile-builder-2.0/admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr " Twój numer seryjny wygasł, proszę %1$s Odnów Swoją Licencję%2$s." #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 msgid "Add Entry" msgstr "Dodaj wpis" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 msgid "show" msgstr "pokaż" #: profile-builder-2.0/features/functions.php:736 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" msgstr "Aby zezwolić użytkownikom na logowanie na Twojej stronie poprzez Profile Builder, musisz najpierw zezwolić na rejestrację użytkowników. Idź do %1$sUstawień Sieciowych%2$s, oraz upewnij się, że pole \"Możliwość rejestracji kont użytowników\" jest zaznaczone. %3$sAnuluj%4$s" #: profile-builder-2.0/front-end/class-formbuilder.php:659 msgid "User to edit:" msgstr "Użytkownik do edycji:" #: profile-builder-2.0/front-end/default-fields/password/password.php:46 #: profile-builder-2.0/front-end/recover.php:262 msgid "The password must have the minimum length of %s characters" msgstr "Hasło musi składać się z minimum %s znaku." #: profile-builder-2.0/front-end/default-fields/password/password.php:50 #: profile-builder-2.0/front-end/recover.php:266 msgid "The password must have a minimum strength of %s" msgstr "Hasło musi posiadać następujący minimalny poziom skomplikowania: %s" #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118 msgid "You cannot register this user role" msgstr "Nie możesz zarejestrować tego profilu użytkownika." #: profile-builder-2.0/front-end/login.php:153 msgid "username or email" msgstr "nazwa użytkownika lub email" #: profile-builder-2.0/front-end/login.php:222 msgid "Username or Email" msgstr "Nazwa użytkownika lub Email" #: profile-builder-2.0/front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "Jesteś obecnie zalogowany jako %s. " #: profile-builder-2.0/front-end/logout.php:15 msgid "Log out »" msgstr "Wyloguj się »" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "Rola użytkownika" #: profile-builder-2.0/modules/user-listing/userlisting.php:2167 msgid "View all extra shortcode parameters" msgstr "Pokaż wszystkie dodatkowe parametry krótkich kodów." #: profile-builder-2.0/modules/user-listing/userlisting.php:2181 msgid "displays only the users that you specified the user_id for" msgstr "wyświetla tylko tych użytkowników, dla których wyspecyfikowany został parametr user_id " #: profile-builder-2.0/modules/user-listing/userlisting.php:2187 msgid "displays all users except the ones you specified the user_id for" msgstr "wyświetla wszystkich użytkowników poza tymi, dla których wyspecyfikowany został parametr uder_id" #: profile-builder-2.0/features/functions.php:566 msgid "Minimum length of %d characters" msgstr "Minimalna długość %d znaków" #: profile-builder-2.0/front-end/class-formbuilder.php:146 #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "This message is only visible by administrators" msgstr "Ta wiadomość jest widoczna tylko dla administratorów" #: profile-builder-2.0/modules/user-listing/userlisting.php:413 msgid "User not found" msgstr "Użytkownik nie znaleziony" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "Poprawne tagi {{reply_to}} oraz {{site_name}}" #: profile-builder-2.0/admin/admin-bar.php:48 msgid "Choose which user roles view the admin bar in the front-end of the website." msgstr "Wybierz, które profile użytkownika powinny mieć dostęp do listwy administracyjnej Wordpress na Twojej stronie." #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes" msgstr "Wprowadź listę elementów oddzielając poszczególne elementy przecinkami
            Może to być cokolwiek, ponieważ jest to niewidoczne dla użytkownika, ale nie powinno zawierać żadnych znaków specjalnych lub apostrofów." #: profile-builder-2.0/admin/manage-fields.php:1055 msgid "The meta-name cannot be empty\n" msgstr "Parametr meta-name nie może być pusty\n" #: profile-builder-2.0/admin/register-version.php:69 msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received" msgstr "W związku z nabyciem kopii %s, powinieneś zarejestrować ją wykorzystaniem numeru seryjnego, który otrzymałeś." #: profile-builder-2.0/admin/register-version.php:243 msgid "

            Your Profile Builder serial number is invalid or missing.
            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

            " msgstr "

            Twój numer seryjny Profile Builder jest niepoprawny lub niepełny.
            Proszę %1$szarejestruj swoją kopię%2$s, aby otrzymać dostęp do automatycznych aktualizacji oraz wsparcia. Potrzebujesz klucza licencyjnego? %3$sKup go teraz%4$s

            " #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17 #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60 msgid "...Choose" msgstr "...Wybierz" #: profile-builder-2.0/features/class-list-table.php:526 #: profile-builder-2.0/features/class-list-table.php:942 msgid "1 item" msgstr "1 element" #: profile-builder-2.0/features/functions.php:552 msgid "Very Weak" msgstr "Bardzo łatwe" #: profile-builder-2.0/features/functions.php:640 msgid "This field is required" msgstr "To pole jest wymagane" #: profile-builder-2.0/features/functions.php:704 msgid "Cancel" msgstr "Anuluj" #: profile-builder-2.0/features/functions.php:740 msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s" msgstr "Aby zezwolić użytkownikom na rejestrację na Twojej stronie poprzez Profile Builder, musisz najpierw umożliwić rejestrację użytkowników. Idź do zakładki %1$sUstawienia -> Ogólne%2$s oraz upewnij się, że w sekcji Członkowstwo pole “Każdy może się zarejestrować” jest zaznaczone. %3$sOdrzuć%4$s" #: profile-builder-2.0/front-end/login.php:144 msgid "Invalid username." msgstr "Nieprawidłowa nazwa użytkownika" #: profile-builder-2.0/front-end/login.php:149 #: profile-builder-2.0/front-end/login.php:153 msgid "username" msgstr "username" #: profile-builder-2.0/front-end/login.php:149 msgid "email" msgstr "email" #: profile-builder-2.0/front-end/login.php:256 msgid "Lost your password?" msgstr "Zapomniałeś hasła?" #: profile-builder-2.0/index.php:34 msgid " is also activated. You need to deactivate it before activating this version of the plugin." msgstr "jest także aktywny. Musisz dezaktywować go przed aktywacją tej wersji wtyczki." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54 msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email" msgstr "Musi być poprawnym adresem email lub tagiem {{reply_to}}, który wskazuje na adres email administratora" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508 msgid "Your selected password at signup" msgstr "Hasło, które podałeś podczas rejestracji" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save." msgstr "Te ustawienia są także powielane w narzędziu \"Dostosowywania adresu Email Administratora\" podczas zapisywania." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "Ten formularz jest pusty." #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "Usuń wszystkie elementy" #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all" msgstr "Usuń wszystko" #: profile-builder-2.0/modules/user-listing/userlisting.php:1621 msgid "Choose..." msgstr "Wybierz..." #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Set the number of users to be displayed on every paginated part of the all-userlisting" msgstr "Wybierz liczbę użytkowników do wyświetlenia na jednej stronie zestawienia z kontami użytkowników." #: profile-builder-2.0/admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "Pokaż/Ukryj pasek narzędziowy podczas przeglądania witryny" #: profile-builder-2.0/admin/admin-bar.php:10 #: profile-builder-2.0/admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "Ustawienia paska narzędziowego" #: profile-builder-2.0/admin/admin-bar.php:57 msgid "User-Role" msgstr "Rola użytkownika" #: profile-builder-2.0/admin/admin-bar.php:58 msgid "Visibility" msgstr "Widoczność" #: profile-builder-2.0/admin/admin-bar.php:73 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "Domyślne" #: profile-builder-2.0/admin/admin-bar.php:74 msgid "Show" msgstr "Pokaż" #: profile-builder-2.0/admin/admin-bar.php:75 #: profile-builder-2.0/modules/user-listing/userlisting.php:1554 msgid "Hide" msgstr "Ukryj" #: pb-add-on-woocommerce/woosync-page.php:147 #: profile-builder-2.0/admin/admin-bar.php:86 #: profile-builder-2.0/admin/general-settings.php:224 #: profile-builder-2.0/admin/register-version.php:95 #: profile-builder-2.0/features/functions.php:697 #: profile-builder-2.0/modules/modules.php:127 msgid "Save Changes" msgstr "Zapisz zmiany" #: profile-builder-2.0/admin/admin-functions.php:37 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 )" msgstr "Ustawione zostało logowanie z wykorzystaniem adresu e-mail. To pole NIE pojawi się na Twojej stronie! ( możesz zmienić to ustawienie w zakładce \"%s\" )" #: profile-builder-2.0/admin/admin-functions.php:37 #: profile-builder-2.0/admin/general-settings.php:10 #: profile-builder-2.0/admin/general-settings.php:35 msgid "General Settings" msgstr "Ustawienia ogólne" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:210 msgid "Very weak" msgstr "Bardzo słabe" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:211 #: profile-builder-2.0/features/functions.php:552 msgid "Weak" msgstr "słabe" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:212 #: profile-builder-2.0/features/functions.php:552 msgid "Medium" msgstr "Średnie" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:213 #: profile-builder-2.0/features/functions.php:552 msgid "Strong" msgstr "Trudne" #: profile-builder-2.0/admin/admin-functions.php:187 msgid "Add Field" msgstr "Dodaj pole" #: profile-builder-2.0/admin/admin-functions.php:189 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390 msgid "Save Settings" msgstr "Zapisz ustawienia" #: profile-builder-2.0/admin/basic-info.php:10 msgid "Basic Information" msgstr "Informacje podstawowe" #: profile-builder-2.0/admin/basic-info.php:29 msgid "Version %s" msgstr "Wersja %s" #: profile-builder-2.0/admin/basic-info.php:30 msgid "Profile Builder " msgstr "Profile Builder " #: profile-builder-2.0/admin/basic-info.php:31 msgid "The best way to add front-end registration, edit profile and login forms." msgstr "Najlepszy sposób, aby dodać możliwość rejestracji użytkowników, edycję ich profili oraz formularze do logowania." #: profile-builder-2.0/admin/basic-info.php:33 msgid "For Modern User Interaction" msgstr "Dla Nowoczesnej Interakcji Użytkowników" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25 #: profile-builder-2.0/admin/basic-info.php:36 #: profile-builder-2.0/features/login-widget/login-widget.php:59 msgid "Login" msgstr "Login" #: profile-builder-2.0/admin/basic-info.php:40 msgid "Registration" msgstr "Rejestracja" #: profile-builder-2.0/admin/basic-info.php:44 msgid "Edit Profile" msgstr "Edytuj profil" #: profile-builder-2.0/admin/basic-info.php:51 msgid "Extra Features" msgstr "Dodatkowe Funkcjonalności" #: profile-builder-2.0/admin/basic-info.php:52 msgid "Features that give you more control over your users, increased security and help you fight user registration spam." msgstr "Funkcjonalności, które dają Ci więcej kontroli nad Twoimi użytkownikami, zwiększone bezpieczeństwo oraz wsparcie w walce ze spamem." #: profile-builder-2.0/admin/basic-info.php:53 msgid "Enable extra features" msgstr "Aktywuj dodatkowe funkcjonalności" #: profile-builder-2.0/admin/basic-info.php:57 msgid "Recover Password" msgstr "Odzyskaj hasło" #: profile-builder-2.0/admin/basic-info.php:61 msgid "Admin Approval (*)" msgstr "Zatwierdzanie przez administratora (*)" #: profile-builder-2.0/admin/basic-info.php:62 msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI." msgstr "Ty decydujesz, kto jest użytkownikiem na Twojej stronie. Otrzymuj powiadomienia na email oraz zezwalaj na logowanie do Twojej strony wielu użytkownikom w tym samym czasie." #: profile-builder-2.0/admin/basic-info.php:65 msgid "Email Confirmation" msgstr "Potwierdzenie e-mail" #: profile-builder-2.0/admin/basic-info.php:66 msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address." msgstr "Upewnij się, że użytkownicy rejestrują się z poprawnymi adresami email. W trakcie rejestracji użytkownicy otrzymają powiadomienie na email w celu potwierdzenia swojej rejestracji." #: profile-builder-2.0/admin/basic-info.php:69 msgid "Minimum Password Length and Strength Meter" msgstr "Minimalna długość hasła oraz wskaźnik skomplikowania hasła" #: profile-builder-2.0/admin/basic-info.php:70 msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength." msgstr "Wyeliminuj słabe hasła poprzez ustawienie minimalnej długości hasła oraz wymuszenie określonego poziomu skomplikowania hasła" #: profile-builder-2.0/admin/basic-info.php:73 msgid "Login with Email or Username" msgstr "Adres e-mail lub nazwa użytkownika" #: profile-builder-2.0/admin/basic-info.php:74 msgid "Allow users to log in with their email or username when accessing your site." msgstr "Wszyscy użytkownicy mogą logować się swoim adresem email lub nazwą użytkownika." #: profile-builder-2.0/admin/basic-info.php:87 msgid "Customize Your Forms The Way You Want (*)" msgstr "Konfiguruj Twoje formularze w dowolny sposób (*)" #: profile-builder-2.0/admin/basic-info.php:88 msgid "With Extra Profile Fields you can create the exact registration form your project needs." msgstr "Z wykorzystanie dodatkowych pól w profilu możesz stworzyć formularz rejestracji, którego potrzebuje Twój projekt." #: profile-builder-2.0/admin/basic-info.php:90 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "Dodatkowe Pola w profilu są dostępne w wersjach Hobbyist oraz PRO" #: profile-builder-2.0/admin/basic-info.php:92 msgid "Get started with extra fields" msgstr "Zacznij korzystać z dodatkowych pól" #: profile-builder-2.0/admin/basic-info.php:95 msgid "Avatar Upload" msgstr "Dodaj awatar" #: profile-builder-2.0/admin/basic-info.php:96 msgid "Generic Uploads" msgstr "Ogólne ustawienia przesyłania plików" #: profile-builder-2.0/admin/basic-info.php:97 msgid "Agree To Terms Checkbox" msgstr "Pole zgody na warunki użytkowania strony" #: profile-builder-2.0/admin/basic-info.php:98 msgid "Datepicker" msgstr "Wybór daty" #: profile-builder-2.0/admin/basic-info.php:101 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: profile-builder-2.0/admin/basic-info.php:102 msgid "Country Select" msgstr "Wybór kraju" #: profile-builder-2.0/admin/basic-info.php:104 msgid "Timezone Select" msgstr "Wybór strefy czasowej" #: profile-builder-2.0/admin/basic-info.php:108 msgid "Input / Hidden Input" msgstr "Pole tekstowe / Ukryte pole testowe" #: profile-builder-2.0/admin/basic-info.php:110 msgid "Checkbox" msgstr "Pole wyboru" #: profile-builder-2.0/admin/basic-info.php:111 msgid "Select" msgstr "Wybierz" #: profile-builder-2.0/admin/basic-info.php:112 msgid "Radio Buttons" msgstr "Przyciski opcji" #: profile-builder-2.0/admin/basic-info.php:113 msgid "Textarea" msgstr "Pole tekstowe" #: profile-builder-2.0/admin/basic-info.php:125 msgid "Powerful Modules (**)" msgstr "Moduły Powerful (**)" #: profile-builder-2.0/admin/basic-info.php:126 msgid "Everything you will need to manage your users is probably already available using the Pro Modules." msgstr "Wszystko, czego potrzebujesz, aby zarządzać swoimi użytkownikami, jest jest najprawdopodobniej dostępne w wersji PRO. " #: profile-builder-2.0/admin/basic-info.php:128 msgid "Enable your modules" msgstr "Przejdź do wersji PRO" #: profile-builder-2.0/admin/basic-info.php:131 msgid "Find out more about PRO Modules" msgstr "Dowiedz się więcej o wersji PRO" #: profile-builder-2.0/admin/basic-info.php:136 #: profile-builder-2.0/modules/modules.php:89 #: profile-builder-2.0/modules/user-listing/userlisting.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:12 #: profile-builder-2.0/modules/user-listing/userlisting.php:17 #: profile-builder-2.0/modules/user-listing/userlisting.php:23 msgid "User Listing" msgstr "Lista użytkowników" #: profile-builder-2.0/admin/basic-info.php:138 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." msgstr "Łatwe do edycji szablony list użytkowników oraz tworzenie stron dla każdego z użytkowników. Oparte na krótkich kodach, które oferują wiele możliwości konfiguracji." #: profile-builder-2.0/admin/basic-info.php:144 msgid "Email Customizer" msgstr "Konfiguracja Email" #: profile-builder-2.0/admin/basic-info.php:145 msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval." msgstr "Personalizuj wszystkie wiadomości email wysyłane do użytkowników lub administratorów. Podczas rejstracji, potwierdzenia adresu email, potwierdzenia dodania nowego konta dla administratora." #: profile-builder-2.0/admin/basic-info.php:148 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33 #: profile-builder-2.0/modules/modules.php:110 msgid "Custom Redirects" msgstr "Własne przekierowania" #: profile-builder-2.0/admin/basic-info.php:149 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." msgstr "Zablokuj swoim użytkownikom dostępu do panelu Wordpress dashboard, przekieruj ich do strony głównej po zalogowaniu lub rejestracji, z wykorzystaniem zaledwie kilku kliknięć." #: profile-builder-2.0/admin/basic-info.php:154 #: profile-builder-2.0/modules/modules.php:75 msgid "Multiple Registration Forms" msgstr "Różnorodne Formularze Rejestracji" #: profile-builder-2.0/admin/basic-info.php:155 msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users." msgstr "Zdefiniuj różne formularze rejestracji z odmiennymi polami dla użytkowników o określonych profilach. Zbieraj inne informacje od wielu różnych typów użytkowników." #: profile-builder-2.0/admin/basic-info.php:158 #: profile-builder-2.0/modules/modules.php:82 msgid "Multiple Edit-profile Forms" msgstr "Różnorodne Formularze Edycji Profilu" #: profile-builder-2.0/admin/basic-info.php:159 msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles." msgstr "Zezwól użytkownikom o różnych profilach na edycję tylko określonych składników profilu. Zdefiniuj odmienne formularze edycji profilu w zależności od profilu użytkownika" #: profile-builder-2.0/admin/basic-info.php:187 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr " * dostępne tylko %1$sw wersjach Hobbyist oraz Pro%2$s." #: profile-builder-2.0/admin/basic-info.php:188 msgid "** only available in the %1$sPro version%2$s." msgstr "** dostępne tylko w %1$s wersji Pro%2$s." #: profile-builder-2.0/admin/general-settings.php:39 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "Załaduj wewnętrzne pliki CSS (szablony styli) od Profile Builder" #: profile-builder-2.0/admin/general-settings.php:42 #: profile-builder-2.0/admin/general-settings.php:55 #: profile-builder-2.0/admin/general-settings.php:104 #: profile-builder-2.0/admin/general-settings.php:151 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Yes" msgstr "Tak" #: profile-builder-2.0/admin/general-settings.php:44 msgid "You can find the default file here: %1$s" msgstr "Domyślny plik znajdziesz tutaj: %1$s" #: profile-builder-2.0/admin/general-settings.php:51 msgid "\"Email Confirmation\" Activated:" msgstr "\"Potwierdzenie Email\" Aktywne:" #: profile-builder-2.0/admin/general-settings.php:56 #: profile-builder-2.0/admin/general-settings.php:105 #: profile-builder-2.0/admin/general-settings.php:150 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "No" msgstr "Nie" #: profile-builder-2.0/admin/general-settings.php:61 msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s." msgstr "Listę niepotwierdzonych adresów email mozesz znaleźć w %1$sUżytkownicy > Wszyscy Użytkownicy > Potwierdzenie Email%2$s." #: profile-builder-2.0/admin/general-settings.php:69 msgid "\"Email Confirmation\" Landing Page:" msgstr "Strona otwierana podczas Potwierdzenia adresu Email:" #: profile-builder-2.0/admin/general-settings.php:74 msgid "Existing Pages" msgstr "Istniejące strony" #: profile-builder-2.0/admin/general-settings.php:89 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." msgstr "Zdefiniuj stronę, na którą będą przekierowywani użytkownicy potwierdzający rejestrację swojego konta. Ta strona może być różna od strony rejestracji oraz może być zmieniona w dowolnym momencie. Jeśli żadna nie zostanie wybrana, proste potwierdzenie rejestracji zostanie wyświetlone użytkownikowi." #: profile-builder-2.0/admin/general-settings.php:100 msgid "\"Admin Approval\" Activated:" msgstr "\"Potwierdzenie Administratora\" aktywowane:" #: profile-builder-2.0/admin/general-settings.php:108 msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "Możesz znaleźć listę użytkowników przechodząć do %1$sUżytkownicy > Wszyscy Użytkownicy > Potwierdzenie Administratora%2$s." #: profile-builder-2.0/admin/general-settings.php:165 msgid "\"Admin Approval\" Feature:" msgstr "Funkcjonalność \"Potwierdzenia administratora\":" #: profile-builder-2.0/admin/general-settings.php:168 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." msgstr "Ty decydujesz, kto jest użytkownikiem na Twojej stronie. Otrzymuj potwierdzenia poprzez email lub akceptuj wielu użytkowników na raz poprzez panel Wordpress. Odblokuj \"Potwierdzenie Administratora\" poprzez aktualizację do %1$s wersji Hobbyist lub PRO %2$s." #: profile-builder-2.0/admin/general-settings.php:175 msgid "Allow Users to Log in With:" msgstr "Zezwalaj użytkownikom na logowanie za pomocą:" #: profile-builder-2.0/admin/general-settings.php:180 #: profile-builder-2.0/admin/manage-fields.php:201 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167 #: profile-builder-2.0/front-end/login.php:85 #: profile-builder-2.0/front-end/login.php:99 #: profile-builder-2.0/front-end/login.php:218 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28 #: profile-builder-2.0/modules/user-listing/userlisting.php:102 #: profile-builder-2.0/modules/user-listing/userlisting.php:277 #: profile-builder-2.0/modules/user-listing/userlisting.php:730 #: profile-builder-2.0/modules/user-listing/userlisting.php:2219 msgid "Username" msgstr "Username" #: profile-builder-2.0/admin/general-settings.php:181 #: profile-builder-2.0/front-end/login.php:215 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29 #: profile-builder-2.0/modules/user-listing/userlisting.php:736 #: profile-builder-2.0/modules/user-listing/userlisting.php:2220 msgid "Email" msgstr "Email" #: profile-builder-2.0/admin/general-settings.php:193 msgid "Minimum Password Length:" msgstr "Minimalna długość hasła" #: profile-builder-2.0/admin/general-settings.php:198 msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit" msgstr "Wprowadź minimalną liczbę znaków jakie powinno posiadać hasło. Zostaw pole puste żeby nie ustalać limitów." #: profile-builder-2.0/admin/general-settings.php:205 msgid "Minimum Password Strength:" msgstr "Minimalna siła hasła:" #: profile-builder-2.0/admin/general-settings.php:209 msgid "Disabled" msgstr "Wyłączone" #: profile-builder-2.0/admin/manage-fields.php:12 msgid "Manage Fields" msgstr "Zarządzaj polami" #: profile-builder-2.0/admin/manage-fields.php:13 msgid "Manage Default and Extra Fields" msgstr "Zarządzaj polami domyślnymi oraz dodatkowymi" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Field Title" msgstr "Nazwa pola" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Title of the field" msgstr "Nazwa pola" #: profile-builder-2.0/admin/manage-fields.php:119 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "Pole" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Meta-name" msgstr "Meta-name" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "ID" msgstr "ID" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be edited" msgstr "Unikatowe, generowane automatycznie ID dla tego pola
            Możesz je wykorzystać w połączeniu z filtrem w celu wyboru określonego elementu
            Nie może być edytowane" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Description" msgstr "Opis" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Enter a (detailed) description of the option for end users to read
            Optional" msgstr "Wprowadź (szczegółowy) opis opcji dla użytkowniów końcowych
            Opcjonalne" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Row Count" msgstr "Liczba wierszy" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5" msgstr "Określ liczbę wierszy dla pola typu 'Textarea'
            W przypadku braku zdefiniowania, domyślna wartość to 5" #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Allowed Image Extensions" msgstr "Dozwolone rozszerzenia obrazków" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Allowed Upload Extensions" msgstr "Dozwolone rozszerzenia do przesłania na stronę" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Avatar Size" msgstr "Rozmiar avatara" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100" msgstr "Określ rozmiar Awatara (pomiędzy 20 a 200)
            Jeśli nie zostanie zdefiniowany, domyślna wartość to 100" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Date-format" msgstr "Format daty" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Terms of Agreement" msgstr "Warunki umowy" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Enter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>" msgstr "Wprowadź szczegółowy opis warunków umowy do zatwierdzenia dla użytkownika.
            Linki mogą być dodane z wykorzystaniem strandardowego kodu HTML. Składnia: <a href=\"custom_url\">custom_text</a>" #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Options" msgstr "Opcje" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Labels" msgstr "Etykiety" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "Wprowadź listę etykiet oddzielonych przecinkami
            Widoczne dla użytkownika" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default Value" msgstr "Domyślna wartość" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default value of the field" msgstr "Domyślna wartość" #: profile-builder-2.0/admin/manage-fields.php:138 #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default Option" msgstr "Domyślna opcja" #: profile-builder-2.0/admin/manage-fields.php:138 msgid "Specify the option which should be selected by default" msgstr "Wybierz wartość, która powinna być wybrana domyślnie" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Default Option(s)" msgstr "Domyślne Opcje" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)" msgstr "Wybierz wartość, która powinna być wybrana domyślnie
            Jeśli chcesz wybrać wiele wartości oddziel je znakiem \",\" (przecinek)" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default Content" msgstr "Domyślna zawartość" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default value of the textarea" msgstr "Domyślna wartość pola typu \"textarea\"" #: pb-add-on-woocommerce/index.php:306 #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Required" msgstr "Wymagane" #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Whether the field is required or not" msgstr "Czy pole jest wymagane?" #: profile-builder-2.0/admin/manage-fields.php:161 msgid "Overwrite Existing" msgstr "Zastąp istniejące" #: profile-builder-2.0/admin/manage-fields.php:161 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
            Use this at your own risk" msgstr "Wybór \"Tak\" spowoduje dodanie tego pola do listy, ale nadpisze każde inne pole w bazie danych, które ma taką samą nazwę \"meta-name\"
            Wybierasz tę opcję na własne ryzyko" #: profile-builder-2.0/admin/manage-fields.php:167 msgid "Field Properties" msgstr "Właściwości pola" #: profile-builder-2.0/admin/manage-fields.php:181 msgid "Registration & Edit Profile" msgstr "Rejestracja i edycja profilu" #: profile-builder-2.0/admin/manage-fields.php:200 msgid "Name" msgstr "Podpis" #: profile-builder-2.0/admin/manage-fields.php:201 msgid "Usernames cannot be changed." msgstr "Nazwy użytkowników nie mogą być zmieniane." #: pb-add-on-woocommerce/billing-fields.php:6 #: pb-add-on-woocommerce/shipping-fields.php:6 #: profile-builder-2.0/admin/manage-fields.php:202 msgid "First Name" msgstr "Imię" #: pb-add-on-woocommerce/billing-fields.php:7 #: pb-add-on-woocommerce/shipping-fields.php:7 #: profile-builder-2.0/admin/manage-fields.php:203 msgid "Last Name" msgstr "Nazwisko" #: profile-builder-2.0/admin/manage-fields.php:204 #: profile-builder-2.0/modules/user-listing/userlisting.php:769 #: profile-builder-2.0/modules/user-listing/userlisting.php:2227 msgid "Nickname" msgstr "Pseudonim" #: profile-builder-2.0/admin/manage-fields.php:205 msgid "Display name publicly as" msgstr "Przedstawiaj mnie jako" #: profile-builder-2.0/admin/manage-fields.php:206 msgid "Contact Info" msgstr "Informacje kontaktowe" #: profile-builder-2.0/admin/manage-fields.php:207 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168 #: profile-builder-2.0/front-end/recover.php:118 #: profile-builder-2.0/modules/user-listing/userlisting.php:108 msgid "E-mail" msgstr "E-mail" #: profile-builder-2.0/admin/manage-fields.php:208 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32 #: profile-builder-2.0/modules/user-listing/userlisting.php:111 #: profile-builder-2.0/modules/user-listing/userlisting.php:751 #: profile-builder-2.0/modules/user-listing/userlisting.php:2221 msgid "Website" msgstr "Witryna internetowa" #: profile-builder-2.0/admin/manage-fields.php:212 msgid "AIM" msgstr "AIM" #: profile-builder-2.0/admin/manage-fields.php:213 msgid "Yahoo IM" msgstr "Yahoo IM" #: profile-builder-2.0/admin/manage-fields.php:214 msgid "Jabber / Google Talk" msgstr "Jabber / Google Talk" #: profile-builder-2.0/admin/manage-fields.php:217 msgid "About Yourself" msgstr "O Tobie" #: profile-builder-2.0/admin/manage-fields.php:218 #: profile-builder-2.0/modules/user-listing/userlisting.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:754 #: profile-builder-2.0/modules/user-listing/userlisting.php:2222 msgid "Biographical Info" msgstr "Biografia" #: profile-builder-2.0/admin/manage-fields.php:218 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "Podziel się ze światem szczyptą informacji o sobie. Mogą one zostać upublicznione." #: profile-builder-2.0/admin/manage-fields.php:219 #: profile-builder-2.0/front-end/recover.php:73 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "Hasło" #: profile-builder-2.0/admin/manage-fields.php:219 msgid "Type your password." msgstr "Wprowadź swoje hasło" #: profile-builder-2.0/admin/manage-fields.php:220 #: profile-builder-2.0/front-end/recover.php:74 msgid "Repeat Password" msgstr "Powtórz hasło" #: profile-builder-2.0/admin/manage-fields.php:220 msgid "Type your password again. " msgstr "Wpisz swoje hasło ponownie" #: profile-builder-2.0/admin/manage-fields.php:980 #: profile-builder-2.0/admin/manage-fields.php:1137 msgid "You must select a field\n" msgstr "Musisz wybrać pole\n" #: profile-builder-2.0/admin/manage-fields.php:990 msgid "Please choose a different field type as this one already exists in your form (must be unique)\n" msgstr "Proszę wybierz inny typ pola, ponieważ ten już istnieje w Twoim formularzu (musi być unikatowy)\n" #: profile-builder-2.0/admin/manage-fields.php:1001 msgid "The entered avatar size is not between 20 and 200\n" msgstr "Wprowadzony rozmiar awatara nie mieści się w przedziale 20 - 200\n" #: profile-builder-2.0/admin/manage-fields.php:1004 msgid "The entered avatar size is not numerical\n" msgstr "Wprowadzony rozmiar awatara nie jest wartością liczbową\n" #: profile-builder-2.0/admin/manage-fields.php:1012 msgid "The entered row number is not numerical\n" msgstr "Wprowadzony numer wiersza nie jest wartością liczbową\n" #: profile-builder-2.0/admin/manage-fields.php:1015 msgid "You must enter a value for the row number\n" msgstr "Wprowadź numer wiersza\n" #: profile-builder-2.0/admin/manage-fields.php:1036 msgid "The entered value for the Datepicker is not a valid date-format\n" msgstr "Wprowadzony format daty nie jest poprawny\n" #: profile-builder-2.0/admin/manage-fields.php:1039 msgid "You must enter a value for the date-format\n" msgstr "Musisz wprowadzić format daty\n" #: profile-builder-2.0/admin/manage-fields.php:1067 #: profile-builder-2.0/admin/manage-fields.php:1075 #: profile-builder-2.0/admin/manage-fields.php:1086 msgid "That meta-name is already in use\n" msgstr "Parametr meta-name jest już wykorzystywany\n" #: profile-builder-2.0/admin/manage-fields.php:1117 msgid "The following option(s) did not coincide with the ones in the options list: %s\n" msgstr "Następujące opcje nie są zgodne z ustawieniami z listy: %s\n" #: profile-builder-2.0/admin/manage-fields.php:1121 msgid "The following option did not coincide with the ones in the options list: %s\n" msgstr "Następująca opcja nie jest zgodna z ustawieniami z listy: %s \n" #: profile-builder-2.0/admin/manage-fields.php:1144 msgid "That field is already added in this form\n" msgstr "To pole zostało już dodane do formularza\n" #: profile-builder-2.0/admin/manage-fields.php:1193 msgid "
            Title
            Type
            Meta Name
            Required
            " msgstr "
            Nazwa
            Typ
            Parametr Meta Name
            Wymagane
            " #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108 #: profile-builder-2.0/features/functions.php:718 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Edit" msgstr "Edytuj" #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217 #: profile-builder-2.0/features/functions.php:711 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "Delete" msgstr "Usuń" #: profile-builder-2.0/admin/manage-fields.php:1208 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "Umieść następujące krótkie kody na stronach na których chcesz wyświetlić formularze:" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Your Version" msgstr "Zarejestruj swoją kopię" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Version" msgstr "Zarejestruj kopię" #: profile-builder-2.0/admin/register-version.php:70 msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support." msgstr "Jeśli zarejestrujesz swoją kopię Profile Builder, będziesz otrzymywał infromację o aktualizacjach, poprawkach oraz wsparcie techniczne." #: profile-builder-2.0/admin/register-version.php:72 msgid " Serial Number:" msgstr "Numer Seryjny:" #: profile-builder-2.0/admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "Numer seryjny został zweryfikowany poprawnie!" #: profile-builder-2.0/admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "Numer seryjny nie mógł zostać zweryfikowany!" #: profile-builder-2.0/admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "Numer seryjny został zweryfikowany, ponieważ wygasł! " #: profile-builder-2.0/admin/register-version.php:85 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!" msgstr "Numer seryjny został zweryfikowany, nie otrzymano odpowiedzi z serwera! Najprawdopodobniej serwer jest niedostępny. Proszę spróbować później!" #: profile-builder-2.0/admin/register-version.php:87 msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/features/functions.php:725 msgid "Content" msgstr "Treść" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 msgid "Edit this item" msgstr "Edytuj ten element" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 msgid "Delete this item" msgstr "Usuń ten element" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705 msgid "Please enter a value for the required field " msgstr "To pole jest wymagane" #: pb-add-on-woocommerce/woo-checkout-field-support.php:262 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122 msgid "Select File" msgstr "Wybierz plik" #: pb-add-on-woocommerce/woo-checkout-field-support.php:252 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112 msgid "Remove" msgstr "Usuń" #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8 msgid "You can add the information for the %s after you add a entry" msgstr "Możesz dodać informację do %s po dodaniu wpisu" #: pb-add-on-woocommerce/woo-checkout-field-support.php:268 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128 msgid "Upload " msgstr "Prześlij" #: profile-builder-2.0/features/class-list-table.php:184 msgid "No items found." msgstr "Nie znaleziono elementów." #: profile-builder-2.0/features/class-list-table.php:308 msgid "Bulk Actions" msgstr "Akcje masowe" #: profile-builder-2.0/features/class-list-table.php:318 msgid "Apply" msgstr "Zatwierdź" #: profile-builder-2.0/features/class-list-table.php:402 msgid "Show all dates" msgstr "Pokaż wszystkie daty" #: profile-builder-2.0/features/class-list-table.php:415 msgid "%1$s %2$d" msgstr "%1$s %2$d" #: profile-builder-2.0/features/class-list-table.php:431 msgid "List View" msgstr "Widok listy" #: profile-builder-2.0/features/class-list-table.php:432 msgid "Excerpt View" msgstr "Widok Skrócony" #: profile-builder-2.0/features/class-list-table.php:458 msgid "%s pending" msgstr "%s oczekuje" #: profile-builder-2.0/features/class-list-table.php:566 msgid "%1$s of %2$s" msgstr "%1$s z %2$s" #: profile-builder-2.0/features/class-list-table.php:713 msgid "Select All" msgstr "Zaznacz wszystko" #: profile-builder-2.0/features/functions.php:526 msgid "Strength indicator" msgstr "Siłomierz" #: profile-builder-2.0/features/admin-approval/admin-approval.php:14 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453 msgid "Admin Approval" msgstr "Potwierdzenie Administratora" #: profile-builder-2.0/features/admin-approval/admin-approval.php:28 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "Czy chcesz" #: profile-builder-2.0/features/admin-approval/admin-approval.php:51 msgid "Your session has expired! Please refresh the page and try again" msgstr "Twoja sesja wygasła! Proszę odśwież stronę oraz spróbuj ponownie" #: profile-builder-2.0/features/admin-approval/admin-approval.php:64 msgid "User successfully approved!" msgstr "Konto użytkownika potwierdzone!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:74 msgid "User successfully unapproved!" msgstr "Konto użytkownika niepotwierdzone!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:80 msgid "User successfully deleted!" msgstr "Konto użytkownika usunięte!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:85 #: profile-builder-2.0/features/admin-approval/admin-approval.php:131 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "Nie masz uprawnień do wykonania tej akcji lub wystąpił błąd!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:96 msgid "Your session has expired! Please refresh the page and try again." msgstr "Twoja sesja wygasła! Proszę odśwież stronę oraz spróbuj ponownie." #: profile-builder-2.0/features/admin-approval/admin-approval.php:109 msgid "Users successfully approved!" msgstr "Konto użytkownika potwierdzone!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:119 msgid "Users successfully unapproved!" msgstr "Konto użytkownika niepotwierdzone!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:127 msgid "Users successfully deleted!" msgstr "Użytkownik usunięty!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:147 msgid "Your account on %1$s has been approved!" msgstr "Twoje konto na %1$s zostało poprawnie zweryfikowane!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:148 #: profile-builder-2.0/features/admin-approval/admin-approval.php:151 msgid "approved" msgstr "zatwierdzone" #: profile-builder-2.0/features/admin-approval/admin-approval.php:150 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "Administrator przed chwilą zatwierdził Twoje konto na %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:155 msgid "Your account on %1$s has been unapproved!" msgstr "Twoje konto na %1$s zostało zawieszone!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:156 #: profile-builder-2.0/features/admin-approval/admin-approval.php:159 msgid "unapproved" msgstr "niezatwierdzone" #: profile-builder-2.0/features/admin-approval/admin-approval.php:158 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "Administrator przed chwilą zawiesił Twoje konto na %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:177 msgid "ERROR: Your account has to be confirmed by an administrator before you can log in." msgstr "BŁĄD: Twoje konto musi zostać zatwierdzone przez administratora, zanim będziesz mógł się zalogować." #: profile-builder-2.0/features/admin-approval/admin-approval.php:189 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature." msgstr "Twoje konto musi zostać zatwierdzone przez administratora, zanim będziesz odzyskać swoje hasło." #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "skasować tego użytkownika?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "odrzucić tego użytkownika?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr "Odrzuć" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "zatwierdzić tego użytkownika?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "Zatwierdź" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167 #: profile-builder-2.0/modules/user-listing/userlisting.php:278 #: profile-builder-2.0/modules/user-listing/userlisting.php:742 #: profile-builder-2.0/modules/user-listing/userlisting.php:2224 msgid "Firstname" msgstr "Imię" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168 #: profile-builder-2.0/modules/user-listing/userlisting.php:745 #: profile-builder-2.0/modules/user-listing/userlisting.php:2225 msgid "Lastname" msgstr "Nazwisko" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170 #: profile-builder-2.0/modules/user-listing/userlisting.php:149 #: profile-builder-2.0/modules/user-listing/userlisting.php:279 #: profile-builder-2.0/modules/user-listing/userlisting.php:772 #: profile-builder-2.0/modules/user-listing/userlisting.php:2229 msgid "Role" msgstr "Rola" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169 msgid "Registered" msgstr "Zarejestrowany" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "Status użytkownika" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "Czy chcesz zatwierdzić konta dla wybranych użytkowników?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "Czy chcesz zawiesić konta dla wybranych użytkowników? " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "Czy chcesz usunąć konta wybranych użytkowników? " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278 msgid "Sorry, but you don't have permission to do that!" msgstr "Przepraszam, ale nie masz uprawnień do wykonania tej operacji!" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339 msgid "Approved" msgstr "Zatwierdzone" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341 msgid "Unapproved" msgstr "Odrzucone" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454 msgid "All Users" msgstr "Wszyscy użytkownicy" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 msgid "delete this user from the _signups table?" msgstr "Usunąć użytkowników z tabeli _signups?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 msgid "confirm this email yourself?" msgstr "Czy sam chcesz potwierdzić ten adres email?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218 msgid "Confirm Email" msgstr "Potwierdź email" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 msgid "resend the activation link?" msgstr "wysłać ponownie link aktywacyjny?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219 msgid "Resend Activation Email" msgstr "Prześlij Ponownie Aktywacyjną Wiadomość Email" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249 msgid "%s couldn't be deleted" msgstr "%s nie mógł być usunięty" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253 msgid "All users have been successfully deleted" msgstr "Usunięto wszystkich użytkowników" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263 msgid "The selected users have been activated" msgstr "Wybrani użytkownicy zostali aktywowani" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274 msgid "The selected users have had their activation emails resent" msgstr "Ponownie wysłano aktywacyjne wiadomości email do wybranych użytkowników" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "Użytkownicy z niepotwierdzonymi adresami Email" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "Wystąpił błąd podczas wykonywania tej akcji!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "Wybrany użytkownik nie mógł być usunięty!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "Powiadomienie email przesłane ponownie do użytkownika" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398 msgid "[%1$s] Activate %2$s" msgstr "[%1$s] Aktywuj %2$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442 #: profile-builder-2.0/front-end/register.php:71 msgid "Could not create user!" msgstr "Nie udało się stworzyć użytkownika!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445 msgid "That username is already activated!" msgstr "Kont tego użytkownika jest już aktywne!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468 msgid "There was an error while trying to activate the user" msgstr "Wystąpił błąd podczas aktywowania konta dla tego użytkownika" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73 msgid "A new subscriber has (been) registered!" msgstr "Nowy użytkownik został zarejestrowany!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "Nowy subskrybent na %1$s.

            Nazwa Użytkownika:%2$s
            E-mail:%3$s
            " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634 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!" msgstr "Funkcjonalność Zatwierdzenia Administratora była aktywna w czasie rejestacji, więc pamiętaj, że musisz zatwierdzić tego użytkownika, zanim będzie on mógł się zalogować!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570 msgid "[%1$s] Your new account information" msgstr "[%1$s] Informacje o Twoim nowym koncie" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581 msgid "Welcome to %1$s!


            Your username is:%2$s and password:%3$s" msgstr "Witaj na %1$s!


            Twoja nazwa użytkownika to:%2$s oraz hasło:%3$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642 #: profile-builder-2.0/front-end/register.php:125 msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email." msgstr "Zanim będziesz mógł zalogować się na swoje konto, administrator musi je zatwierdzić. Zostaniesz o tym powiadomiony przez email." #: profile-builder-2.0/features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "Ten widżet logowania pozwala Tobie na dodanie formularza logowania w belce bocznej," #: profile-builder-2.0/features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "Widżet Logowania Profile Bulder" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36 #: profile-builder-2.0/front-end/class-formbuilder.php:415 #: profile-builder-2.0/front-end/login.php:250 msgid "Register" msgstr "Zarejestruj się" #: profile-builder-2.0/features/login-widget/login-widget.php:63 msgid "Title:" msgstr "Nazwa:" #: profile-builder-2.0/features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "Przekieruj pod następujący adres URL po zalogowaniu (opcjonalne):" #: profile-builder-2.0/features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "Adres URL Rejestracji (opcjonalne):" #: profile-builder-2.0/features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "Adres URL Odzyskiwania Hasła (opcjonalny):" #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91 #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "Nazwa użytkownika nie może być zmieniona." #: profile-builder-2.0/front-end/class-formbuilder.php:136 msgid "Only an administrator can add new users." msgstr "Tylko administrator może dodać nowego użytkownika." #: profile-builder-2.0/front-end/class-formbuilder.php:146 msgid "Users can register themselves or you can manually create users here." msgstr "Tutaj użytkownicy mogą się rejestrować. Możesz też stworzyć ręcznie użytkownika." #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "Users cannot currently register themselves, but you can manually create users here." msgstr "Obecnie Użytkownicy nie mogą się rejestrować, ale tutaj możesz stworzyć dla nich konta ręcznie." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "Jesteś zalogowany jako %1s. Nie potrzebujesz kolejnego konta. %2s" #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Log out of this account." msgstr "Wyloguj się z konta." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Logout" msgstr "Wyloguj się" #: profile-builder-2.0/front-end/class-formbuilder.php:175 msgid "You must be logged in to edit your profile." msgstr "Musisz być zalogowany, aby zmodyfikować swój profil" #: profile-builder-2.0/features/functions.php:994 msgid "here" msgstr "tutaj" #: profile-builder-2.0/features/functions.php:995 msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s" msgstr "Niedługo zostaniesz przekierowany. Jeśli oglądasz tę stronę przez więcej niż %1$d sekund, proszę kliknij %2$s.%3$s" #: profile-builder-2.0/front-end/class-formbuilder.php:315 #: profile-builder-2.0/front-end/class-formbuilder.php:322 msgid "The account %1s has been successfully created!" msgstr "Konto %1s zostało pomyślnie założone!" #: profile-builder-2.0/front-end/class-formbuilder.php:318 #: profile-builder-2.0/front-end/class-formbuilder.php:328 msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link." msgstr "Zanim będziesz mógł się zalogować na swoje kontu %1s, musisz potwierdzić swój adres email. Proszę sprawdź swoją skrzynkę oraz kliknij link aktywacyjny. " #: profile-builder-2.0/front-end/class-formbuilder.php:324 msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email." msgstr "Zanim będziesz mógł się zalogować na swoje kontu %1s, administrator musi zatwierdzić Twoje konto. Otrzymasz powiadomienie na Twój adres email." #: profile-builder-2.0/front-end/class-formbuilder.php:347 msgid "Your profile has been successfully updated!" msgstr "Twój profil został zaktualizowany!" #: profile-builder-2.0/front-end/class-formbuilder.php:358 msgid "There was an error in the submitted form" msgstr "Pojawiły się błędy w przesłanym formularzu" #: profile-builder-2.0/front-end/class-formbuilder.php:415 msgid "Add User" msgstr "Dodaj użytkownika" #: profile-builder-2.0/admin/add-ons.php:170 #: profile-builder-2.0/front-end/class-formbuilder.php:418 msgid "Update" msgstr "Aktualizuj" #: profile-builder-2.0/front-end/class-formbuilder.php:481 msgid "Send these credentials via email." msgstr "Wyślij te dane na adres e-mail." #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92 #: profile-builder-2.0/front-end/login.php:137 #: profile-builder-2.0/front-end/login.php:144 #: profile-builder-2.0/front-end/login.php:158 #: profile-builder-2.0/front-end/recover.php:17 #: profile-builder-2.0/front-end/recover.php:245 msgid "ERROR" msgstr "BŁĄD" #: profile-builder-2.0/front-end/login.php:137 msgid "The password you entered is incorrect." msgstr "Hasło jest nieprawidłowe." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Password Lost and Found." msgstr "Hasło Zgubione oraz Znalezione." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Lost your password" msgstr "Zgubiłeś swoje hasło" #: profile-builder-2.0/front-end/login.php:158 msgid "Both fields are empty." msgstr "Obydwa pola są puste." #: profile-builder-2.0/front-end/login.php:296 msgid "You are currently logged in as %1$s. %2$s" msgstr "Jesteś zalogowany jako %1s. %2s" #: profile-builder-2.0/front-end/login.php:295 #: profile-builder-2.0/front-end/logout.php:25 msgid "Log out of this account" msgstr "Wyloguj się z tego konta" #: profile-builder-2.0/front-end/login.php:295 msgid "Log out" msgstr "Wyloguj" #: profile-builder-2.0/front-end/recover.php:17 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature." msgstr "Twoje konto musi zostać zatwierdzone przez administratora zanim będziesz mógł odzyskać swoje hasło." #: profile-builder-2.0/front-end/recover.php:94 msgid "Reset Password" msgstr "Zresetuj Hasło" #: profile-builder-2.0/front-end/recover.php:121 msgid "Please enter your username or email address." msgstr "Wpisz nazwę użytkownika lub adres email." #: profile-builder-2.0/front-end/recover.php:125 msgid "You will receive a link to create a new password via email." msgstr "Drogą mailową otrzymasz link do utworzenia nowego hasła." #: profile-builder-2.0/front-end/recover.php:122 msgid "Username or E-mail" msgstr "Nazwa użytkownika lub adres email" #: profile-builder-2.0/front-end/recover.php:138 msgid "Get New Password" msgstr "Zdobądź nowe hasło" #: profile-builder-2.0/front-end/recover.php:185 msgid "The username entered wasn't found in the database!" msgstr "Wprowadzona nazwa użytkownika nie istnieje w bazie!" #: profile-builder-2.0/front-end/recover.php:185 msgid "Please check that you entered the correct username." msgstr "Sprawdź czy wprowadziłeś prawidłową nazwę użytkownika." #: profile-builder-2.0/front-end/recover.php:200 msgid "Check your e-mail for the confirmation link." msgstr "Sprawdź swoją pocztę e-mail oraz kliknij w link potwierdzający." #: profile-builder-2.0/front-end/recover.php:235 msgid "Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s" msgstr "Poproszono o reset hasła dla następującego konta użytkownika: %1$s
            Jeśli to pomyłka, proszę zignoruj ten email, a nic się nie stanie.
            W celu resetu hasła, kliknij w następujący link:%2$s" #: profile-builder-2.0/front-end/recover.php:238 msgid "Password Reset from \"%1$s\"" msgstr "Reset Hasła z \"%1$s\"" #: profile-builder-2.0/front-end/recover.php:245 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "Przesłanie linku aktywacyjnego do %1$s nie powiodło się!" #: profile-builder-2.0/front-end/recover.php:207 msgid "The email address entered wasn't found in the database!" msgstr "Wprowadzony adres email nie został odnaleziony w bazie danych!" #: profile-builder-2.0/front-end/recover.php:207 msgid "Please check that you entered the correct email address." msgstr "Sprawdź proszę, czy wprowadziłeś poprawny adres email." #: profile-builder-2.0/front-end/recover.php:273 msgid "Your password has been successfully changed!" msgstr "Twoje hasło zostało zmienione!" #: profile-builder-2.0/front-end/recover.php:292 msgid "You have successfully reset your password to: %1$s" msgstr "Udało Ci się zresetować hasło. Twoje nowe hasło to: %1$s" #: profile-builder-2.0/front-end/recover.php:295 #: profile-builder-2.0/front-end/recover.php:306 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "Reset Hasła dla %1$s na \"%2$s\"" #: profile-builder-2.0/front-end/recover.php:303 msgid "%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s" msgstr "%1$s poprosił(a) o reset hasła.
            Jej/jego nowe hasło to:%2$s" #: profile-builder-2.0/front-end/recover.php:320 msgid "The entered passwords don't match!" msgstr "Wprowadzone hasła nie są zgodne!" #: profile-builder-2.0/front-end/recover.php:375 msgid "ERROR:" msgstr "BŁĄD:" #: profile-builder-2.0/front-end/recover.php:375 msgid "Invalid key!" msgstr "Nieprawidłowy klucz!" #: profile-builder-2.0/front-end/register.php:56 msgid "Invalid activation key!" msgstr "Nieprawidłowy klucz aktywacyjny!" #: profile-builder-2.0/front-end/register.php:60 msgid "This username is now active!" msgstr "Konto tego użytkownika jest aktywne!" #: profile-builder-2.0/front-end/register.php:74 msgid "This username is already activated!" msgstr "Konto tego użytkownika jest już aktywne!" #: profile-builder-2.0/front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "Twój adres email został zweryfikowany poprawnie." #: profile-builder-2.0/front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "Wystąpił błąd podczas aktywacji konta użytkownika" #: pb-add-on-woocommerce/index.php:393 #: profile-builder-2.0/front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "Format adresu email nie jest poprawny." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "Ten adres email jest już zarezerwowany" #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 #: profile-builder-2.0/front-end/default-fields/username/username.php:49 #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "Proszę spróbuj inną wartość!" #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "Ten adres email jest już zarezerwowany." #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37 #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "Hasło się nie zgadza" #: profile-builder-2.0/front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "Nazwa Użytkownika jest już zarezerwowana." #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "Nazwa Użytkownika jest już zarezerwowana." #: profile-builder-2.0/modules/user-listing/userlisting.php:276 msgid "Avatar" msgstr "Avatar" #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72 #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45 #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45 #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40 #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34 #: profile-builder-2.0/front-end/extra-fields/input/input.php:30 #: profile-builder-2.0/front-end/extra-fields/map/map.php:51 #: profile-builder-2.0/front-end/extra-fields/number/number.php:30 #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39 #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52 #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46 #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49 #: profile-builder-2.0/front-end/extra-fields/select/select.php:51 #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70 #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "wymagane" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48 msgid "To use reCAPTCHA you must get an API key from" msgstr "Aby użyć reCAPTCHA musisz pobrać klucz API z" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "W celach bezpieczeństwa musisz przekazać zdalny adres IP do reCAPTCHA!" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "Aby korzystać z reCAPTCHA musisz pobrać klucz publiczny API z:" #: profile-builder-2.0/modules/modules.php:11 #: profile-builder-2.0/modules/modules.php:58 msgid "Modules" msgstr "Moduły" #: profile-builder-2.0/modules/modules.php:59 msgid "Here you can activate / deactivate available modules for Profile Builder." msgstr "Tutaj może aktywować / dezaktywować dostępne moduły dodatku Profile Builder." #: profile-builder-2.0/modules/modules.php:69 msgid "Name/Description" msgstr "Nazwa/Opis" #: profile-builder-2.0/modules/modules.php:70 msgid "Status" msgstr "Status" #: profile-builder-2.0/modules/modules.php:77 #: profile-builder-2.0/modules/modules.php:84 #: profile-builder-2.0/modules/modules.php:91 #: profile-builder-2.0/modules/modules.php:98 #: profile-builder-2.0/modules/modules.php:105 #: profile-builder-2.0/modules/modules.php:112 #: profile-builder-2.0/modules/modules.php:119 msgid "Active" msgstr "Aktywny" #: profile-builder-2.0/modules/modules.php:78 #: profile-builder-2.0/modules/modules.php:85 #: profile-builder-2.0/modules/modules.php:92 #: profile-builder-2.0/modules/modules.php:99 #: profile-builder-2.0/modules/modules.php:106 #: profile-builder-2.0/modules/modules.php:113 #: profile-builder-2.0/modules/modules.php:120 msgid "Inactive" msgstr "Nieaktywny" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:96 msgid "Admin Email Customizer" msgstr "Dostosowanie Wiadomości Email Administratora" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:103 msgid "User Email Customizer" msgstr "Dostosowanie Wiadomości Email Użytkownika" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253 msgid "Save" msgstr "Zapisz" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "Przekieruj" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "URL" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save." msgstr "Te ustawienia są także powielone na stronie \"Dostosowania Wiadomości Email\" po zapisaniu." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41 msgid "From (name)" msgstr "Od (nazwa)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49 msgid "From (reply-to email)" msgstr "Od (adres email do odpowiedzi)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57 msgid "Common Settings" msgstr "Ustawienia Ogólne" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" msgstr "" "\n" "

            Nowy subskrybent na {{site_name}}.

            \n" "

            Nazwa Użytkownika:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "\n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274 msgid "Email Subject" msgstr "Tytuł Wiadomości Email" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84 msgid "Default Registration & Registration with Email Confirmation" msgstr "Domyślna Rejestracja oraz Rejestracja z Potwierdzeniem Adresu Email" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log in!

            \n" msgstr "" "\n" "

            Nowy sybskrybent na {{site_name}}.

            \n" "

            Nazwa Użytkownika:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            Funkcjonalność Zatwierdzania Administrtora była aktywna w trakcie rejestracji,\n" "więc pamiętaj proszę, że musisz zatwierdzić to konto, zanim użytkownik będzie mógł się zalogować!

            \n" "\n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143 msgid "Registration with Admin Approval" msgstr "Rejestracja z Potwierdzeniem Administratora" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "Dostępne Tagi" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170 msgid "User Meta" msgstr "Meta dane Użytkownika" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "Adres URL strony" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "Nazwa Strony" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25 #: profile-builder-2.0/modules/user-listing/userlisting.php:158 msgid "User Id" msgstr "ID Użytkownika" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33 msgid "Reply To" msgstr "Odpowiedz Do" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40 msgid "Activation Key" msgstr "Klucz Aktywacyjny" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41 msgid "Activation Url" msgstr "Link aktywacyjny" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42 msgid "Activation Link" msgstr "Link aktywacyjny" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" msgstr "" "\n" "

            Witaj na {{site_name}}!

            \n" "

            Twój login to:{{username}} oraz hasło:{{password}}

            \n" "\n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85 msgid "Default Registration" msgstr "Domyślna Rejestracja" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91 msgid "" "\n" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials.

            \n" msgstr "" "\n" "

            W celu aktywacji konta kliknij na następujący link:
            \n" "{{{activation_link}}}

            \n" "

            Po aktywacji otrzymasz kolejną wiadomość zawierającą Twój login oraz hasło

            \n" "\n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103 msgid "[{{site_name}}] Activate {{username}}" msgstr "[{{site_name}}] Aktywuj {{username}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114 msgid "Registration with Email Confirmation" msgstr "Rejestracja z Potwierdzeniem Adresu Email" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n" msgstr "" "\n" "

            Witaj na {{site_name}}!

            \n" "

            Twoja nazwa użytkownika to:{{username}} oraz hasło:{{password}}

            \n" "

            Zanim będziesz mógł zalogować się na swoje konto, administrator musi potwierdzić Twoją rejestrację. Otrzymasz powiadomienie na Twoją skrzynkę email.

            \n" "\n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132 msgid "A new account has been created for you on {{site_name}}" msgstr "Stworzono dla Ciebie konto na {{site_name}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148 msgid "" "\n" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Dobre Wieści!

            \n" "

            Administrator właśnie potwierdził Twoje konto: {{username}} na {{site_name}}.

            \n" "\n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159 msgid "Your account on {{site_name}} has been approved!" msgstr "Twoje konto na {{site_name}} zostało zatwierdzone!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170 msgid "User Approval Notification" msgstr "Powiadomienie o Zatwierdzeniu Użytkownika" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175 msgid "" "\n" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Witaj,

            \n" "

            Niestety administrator właśnie zawiesił Twoje konto: {{username}} na {{site_name}}.

            \n" "\n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187 msgid "Your account on {{site_name}} has been unapproved!" msgstr "Twoje konto na {{site_name}} nie zostało zatwierdzone!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198 msgid "Unapproved User Notification" msgstr "Powiadomienie o Niezatwierdzeniu Użytkownika" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "Formularz edycji profilu" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13 #: profile-builder-2.0/modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "Dodaj Nowy" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "Dodaj nowy Formularz Edycji Profilu" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "Edytuj Formularz Edycji Profilu" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "Nowy Formularz Edycji Profilu" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "Formularze Edycji Profilu" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "Wyświetl Formularz Edycji Profilu" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "Wyszukaj Formularz Edycji Profilu" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "Nie znaleziono Formularza Edycji Profilu" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "Nie znaleziono Formularza Edycji Profilu w koszu" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138 #: profile-builder-2.0/modules/user-listing/userlisting.php:2115 msgid "Shortcode" msgstr "Shortcode" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159 #: profile-builder-2.0/modules/user-listing/userlisting.php:2136 msgid "(no title)" msgstr "(bez nazwy)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178 #: profile-builder-2.0/modules/user-listing/userlisting.php:2156 msgid "The shortcode will be available after you publish this form." msgstr "Krótki kod będzie dostępny po opublikowaniu formularza." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180 #: profile-builder-2.0/modules/user-listing/userlisting.php:2158 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "Użyj tego krótkiego kodu na stronie, na której chcesz wyświetlić formularz:" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184 #: profile-builder-2.0/modules/user-listing/userlisting.php:2162 msgid "Note: changing the form title also changes the shortcode!" msgstr "Uwaga: zmiana nazwy formularza wpłynie na zmianę krótkiego kodu!" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190 #: profile-builder-2.0/modules/user-listing/userlisting.php:2195 msgid "Form Shortcode" msgstr "Krótki kod Formularza" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "Czy przekierować użytkownika na zdefiniowaną stronę" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "Wyświetl Wiadomości" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "Czas wyświetlenia dowolnej pomyślnej wiadomości (w sekundach)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 msgid "Specify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.com" msgstr "Określ adres URL strony, na którą użytkownicy zostaną przekierowani po aktualizacji profilu poprzez ten formularz
            Użyj następującego formatu: http://www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "Po aktualizacji profilu..." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "Dodaj Nowe Pole do Listy" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage Title (Type)" msgstr "
            Nazwa (Typ)
            " #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "Musisz określić nazwę formularza przez jego stworzeniem" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "Formularz Rejestracji" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "Dodaj nowy formularz rejestracji" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "Edytuj formularz rejestracji" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "Nowy formularz rejestracji" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "Formularze rejestracji" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "Zobacz formularz rejestracji" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "Wyszukaj Formularz Rejestracji" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "Nie znaleziono Formularza Rejestracji" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "Nie znaleziono Formularza Rejestracji w koszu" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "Domyślny Profil" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "Ustaw Profil" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Choose what role the user will have after (s)he registered
            If not specified, defaults to the role set in the WordPress settings" msgstr "Wybierz profil użytkownika, który zostanie przypisany użytkownikowi po zarejestrowaniu
            Jeśli nic nie zostanie wybrane, domyślny profil będzie zgodny z ustawieniami WordPress" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "Automatyczne logowanie" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Whether to automatically log in the newly registered user or not
            Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work" msgstr "Zalogować automatycznie nowo-zarejestrowanego użytkownika czy nie
            Działa tylko na pojedynczych stronach bez aktywnych \"Zatwierdzenia Administratora\" oraz \"Potwierdzenia Email\"
            UWAGA: Buforowanie (ang. caching) formularza rejestracji może skutkować brakiem możliwości automatycznego logowania" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "Specify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.com" msgstr "Określ adres URL, na który użytkownicy będą przekierowani po zarejestrowaniu z wykorzystaniem tego formularza
            Użyj następującego formatu: http://www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "Po zarejestrowaniu..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1038 #: profile-builder-2.0/modules/user-listing/userlisting.php:1485 #: profile-builder-2.0/modules/user-listing/userlisting.php:1953 #: profile-builder-2.0/modules/user-listing/userlisting.php:2426 msgid "Search Users by All Fields" msgstr "Szukaj Użytkowników po Wszystkich Polach" #: profile-builder-2.0/modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "Dodaj nową Listę Użytkowników" #: profile-builder-2.0/modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "Edytuj Listę Użytkowników" #: profile-builder-2.0/modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "Nowa Lista Użytkowników" #: profile-builder-2.0/modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "Zobacz Listę Użytkowników" #: profile-builder-2.0/modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "Wyszukaj Listę Użytkowników" #: profile-builder-2.0/modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "Nie znaleziono Listy Użytkowników" #: profile-builder-2.0/modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "Nie znaleziono Listy Użytkowników w koszu" #: profile-builder-2.0/modules/user-listing/userlisting.php:105 msgid "Display name as" msgstr "Wyświetlaj nazwę jako" #: profile-builder-2.0/modules/user-listing/userlisting.php:150 #: profile-builder-2.0/modules/user-listing/userlisting.php:2223 msgid "Registration Date" msgstr "Data Rejestracji" #: profile-builder-2.0/modules/user-listing/userlisting.php:151 #: profile-builder-2.0/modules/user-listing/userlisting.php:2228 msgid "Number of Posts" msgstr "Liczba postów" #: profile-builder-2.0/modules/user-listing/userlisting.php:155 msgid "More Info" msgstr "Więcej Informacji" #: profile-builder-2.0/modules/user-listing/userlisting.php:156 msgid "More Info Url" msgstr "Link \"Więcej Informacji\"" #: profile-builder-2.0/modules/user-listing/userlisting.php:157 msgid "Avatar or Gravatar" msgstr "Awatar lub Grawatar" #: profile-builder-2.0/modules/user-listing/userlisting.php:196 #: profile-builder-2.0/modules/user-listing/userlisting.php:227 msgid "Extra Functions" msgstr "Dodatkowe Funkcje" #: profile-builder-2.0/modules/user-listing/userlisting.php:199 msgid "Pagination" msgstr "Paginacja" #: profile-builder-2.0/modules/user-listing/userlisting.php:200 msgid "Search all Fields" msgstr "Przeszukaj wszystkie Pola" #: profile-builder-2.0/modules/user-listing/userlisting.php:229 msgid "Go Back Link" msgstr "Link \"Powrót\"" #: profile-builder-2.0/modules/user-listing/userlisting.php:247 msgid "All-userlisting Template" msgstr "Szablon wyświetlania wszystkich użytkowników" #: profile-builder-2.0/modules/user-listing/userlisting.php:250 msgid "Single-userlisting Template" msgstr "Szablon wyświetlania pojedynczego użytkownika" #: profile-builder-2.0/modules/user-listing/userlisting.php:733 msgid "First/Lastname" msgstr "Imię/Nazwisko" #: profile-builder-2.0/modules/user-listing/userlisting.php:281 #: profile-builder-2.0/modules/user-listing/userlisting.php:739 msgid "Sign-up Date" msgstr "Data Podpisania" #: profile-builder-2.0/modules/user-listing/userlisting.php:748 #: profile-builder-2.0/modules/user-listing/userlisting.php:2226 msgid "Display Name" msgstr "Nazwa Wyświetlana" #: profile-builder-2.0/modules/user-listing/userlisting.php:280 #: profile-builder-2.0/modules/user-listing/userlisting.php:757 msgid "Posts" msgstr "Posty" #: profile-builder-2.0/modules/user-listing/userlisting.php:760 #: profile-builder-2.0/modules/user-listing/userlisting.php:2233 msgid "Aim" msgstr "Aim" #: profile-builder-2.0/modules/user-listing/userlisting.php:763 #: profile-builder-2.0/modules/user-listing/userlisting.php:2234 msgid "Yim" msgstr "Yim" #: profile-builder-2.0/modules/user-listing/userlisting.php:766 #: profile-builder-2.0/modules/user-listing/userlisting.php:2235 msgid "Jabber" msgstr "Jabber" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "Click here to see more information about this user" msgstr "Kliknij tutaj, aby zobaczyć więcej informacji o użytkowniku" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "More..." msgstr "Więcej..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1293 msgid "Click here to see more information about this user." msgstr "Kliknij tutaj, aby zobaczyć więcej informacji o użytkowniku." #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 #: profile-builder-2.0/modules/user-listing/userlisting.php:1442 msgid "Click here to go back" msgstr "Kliknij tutaj, aby wrócić na poprzednią stronę" #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 msgid "Back" msgstr "Powrót" #: profile-builder-2.0/modules/user-listing/userlisting.php:1472 msgid "«« First" msgstr "«« Pierwsza" #: profile-builder-2.0/modules/user-listing/userlisting.php:1473 msgid "« Prev" msgstr "« Poprz." #: profile-builder-2.0/modules/user-listing/userlisting.php:1474 msgid "Next » " msgstr "Nast. »" #: profile-builder-2.0/modules/user-listing/userlisting.php:1475 msgid "Last »»" msgstr "Ostatnia »»" #: profile-builder-2.0/modules/user-listing/userlisting.php:1504 msgid "You don't have any pagination settings on this userlisting!" msgstr "Nie masz ustawień stron dla tej listy użytkowników!" #: profile-builder-2.0/modules/user-listing/userlisting.php:1970 msgid "Search" msgstr "Szukaj" #: profile-builder-2.0/modules/user-listing/userlisting.php:1971 msgid "Clear Results" msgstr "Wyczyść wyniki" #: profile-builder-2.0/modules/user-listing/userlisting.php:2165 #: profile-builder-2.0/modules/user-listing/userlisting.php:2169 msgid "Extra shortcode parameters" msgstr "Dodatkowe parametry krótkich kodów" #: profile-builder-2.0/modules/user-listing/userlisting.php:2172 msgid "displays users having a certain meta-value within a certain (extra) meta-field" msgstr "wyświetla użytkowników posiadających określone wartości w ramach określonych parametrów meta-field" #: profile-builder-2.0/modules/user-listing/userlisting.php:2173 msgid "Example:" msgstr "Przykład:" #: profile-builder-2.0/modules/user-listing/userlisting.php:2175 msgid "Remember though, that the field-value combination must exist in the database." msgstr "Pamiętaj, że określona kombinacja pole-wartość musi istnieć w bazie danych." #: profile-builder-2.0/modules/user-listing/userlisting.php:2250 msgid "Random (very slow on large databases > 10K user)" msgstr "Losowo (bardzo wolne dla dużych baz danych >10k użytkowników)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Roles to Display" msgstr "Profile do wyświetlenia" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Restrict the userlisting to these selected roles only
            If not specified, defaults to all existing roles" msgstr "Ogranicz wyświetlanie użytkowników do zdefiniowanych profili
            Jeśli nic nie zostanie zdefiniowane, domyślne ustawienie to wszystkie profile." #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Number of Users/Page" msgstr "Liczba użytkowników na stronę" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Default Sorting Criteria" msgstr "Domyślne kryteria sortowania" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Set the default sorting criteria
            This can temporarily be changed for each new session" msgstr "Ustaw domyślne kryteria sortowania
            Ustawienie może być zmienione dla każdej nowej sesji" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Default Sorting Order" msgstr "Domyślny Porządek Sortowania" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Set the default sorting order
            This can temporarily be changed for each new session" msgstr "Ustaw domyślny porządek sortowania
            Ustawienie może być zmienione dla każdej nowej sesji" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Avatar Size (All-userlisting)" msgstr "Rozmiar Awatara (podczas wyświetlania listy użytkowników)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Set the avatar size on the all-userlisting only" msgstr "Ustaw rozmiar awatara podczas wyświetlania listy użytkowników" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Avatar Size (Single-userlisting)" msgstr "Rozmiar Awatara (podczas wyświetlania pojedynczego użytkownika)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Set the avatar size on the single-userlisting only" msgstr "Ustaw rozmiar awatara podczas wyświetlania pojedynczego użytkownika" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Visible only to logged in users?" msgstr "Widoczne jedynie dla zarejestrowanych użytkowników?" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "The userlisting will only be visible only to the logged in users" msgstr "Wyświetlanie listy użytkowników widoczne jedynie dla zarejestrowanych użytkowników" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "Visible to following Roles" msgstr "Widoczne dla następujących profili" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "The userlisting will only be visible to the following roles" msgstr "Wyświetlanie listy użytkowników widoczne jedynie dla użytkowników o następujących profilach" #: profile-builder-2.0/modules/user-listing/userlisting.php:2275 msgid "Userlisting Settings" msgstr "Ustawienia wyświetlania użytkowników" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "Musisz aktywować funkcjonalność wyświetlania użytkowników w zakładce \"Moduły\"!" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You can find it in the Profile Builder menu." msgstr "Możesz to znaleźć w menu Profile Biulder" #: profile-builder-2.0/modules/user-listing/userlisting.php:2565 msgid "No results found!" msgstr "Nie znaleziono żadnych wyników!"translation/profile-builder-ar.mo000066600000377003152141651160013143 0ustar00<%\J\Jl]JyJcDKKc}LLMNCOO;qPPKPC Q[MQQQQQ"R+AREmR1R ReR USbS yS SS2S S-SOT bT mTwT5~T#TTUV!WWdW>DX5XYXGYR[YcY!Z74Z'lZZ/[3[]B[U[[ \\!\1\@\ G\ Q\[\c\}\E\\\]]5]O]!l]#]]]]]]^*^ B^N^b^ u^ ^^^^#^^$_8_P_ T_b_ j_v_ ~_(____Lv`D`ta}aaa9aa? bAJb*bbbb bbbbb%c +c5cDcLc Rc0`c c ccc3ccdd&0dWdwd ~dd d dd dd eee&e .e9eJeSeceGueke)fif g$g ,g:gBg IgWg]gegtg{g g5gggg#g!h$9h^h(uhhh h hh hh i#i*i~P~ k~ v~ ~~~!~ ~r~_e v   ?;JQ Vdu3 ŀр #+3Db h t~  ǁс ف  $2 9G LY _!kIׂ܂ /CKZ] es4W`w } t~ Ɔ ކ  */ 7CU \j p|  ƇӇ ڇ) %+2RW` t~ ۉ! %3;CR Xfl{ 54:Q݋24G [f lv. ~?FO`int 8ۍ ߍ  +;<x  #;*2]v)ۏ  % 0; @ M Wem u>ː_ jrw ʑ֑ - >JC] ˒Ԓڒ $8$Sxғ  $#14Up$9 >=H(ʕӕ  3&Zcrx ̖Ֆ&/Da.|w6; JV gt2}83^&|#Ǚ,,-8Z%՚! #.Rc jw:fכ>[ t 0ќ*** U cp)yʝ .@ S$tM*?OXnw ß ҟܟj Xfns  ͠Ԡ 06 L Xe  ̡   7"Z ao ɢ ( / :F5Z:5ˣIK!  &>//n2YѥV+V~٦X ] `jox?ܨ(  ! .8I er ʩөQ'>0f7 ϫ ٫, % 1=C̬eUx߯6X Uӱ7)at{ ɲӲ ڲ  ,3E cn w )˳!#;.ӴI7L32)"(8@aLO?LVM.P q/:&"J=r %&:ͺ;D0λ*-*<Xp@;G2 %׽(*&4Q5D`[bZ/7)g;.'#E2i<  Fl-5Cy~  ,@T Xbiy  $ .5MU ]EjA $5=Pd l y   5 C MYnwDSe$ ) &"1+T( %   #19#Bf  #>PU4]F]$Fk6^9X(dO "Q)KGu#<{>bK,i(N""1yT2>;G>2+%+ *7bK<K@;r+;Kghe')02&8,_+ ?@&Z#%&'+Fr)@:(Nc0 &| B}xN?aIE ]~g u+*-@X=Fxo <%b9s/AORB4a{|R3K'q0Uvv|&@/5p}}B )AQl![N942'#$</a6");<e`(.D#s#1C&7jH,!8Lg{96R ^X   %_ , ) Z "7 PZ L H A S e 1w "    ;<&T{A$C?U+ 03JG 'CJ'j&/  $#H\"r s] '  + DRd  R&E&YF8<"=<`' -<J+00';Vs #/@ p\~G_#)]=]S.\@{9 !"!!,!k!kh"Z"/#F#]#s##$##K#5$$T$1y$"$;$ %+%;%N%"g%%*%{%{J&&&& ' '7'K':h'I' ' '5(vR((())&-)'T)"|)$)7)&)i#*"*1*-*&+57+Bm+,+1+o,/,1,<, -*-#?-c-;---- .. .;.R.)p.j. /5&/\/n/_/Y/j@00(0301/71&g1 1 1'1151$383'H3)p3C3)3+4#446X4844 44 5(!5J5&6186/j61616]6`\7'77088a89 9:;<@==$????@@ 1@?@@@"A&AEAbAeA/AB.BIBfB-B6BBB CCD -D;D0TDDD'DD/D~%EEEE E(F1*Ft\FF=F&G:GLG$eGGGG-G0G /H=HVHkH<H%H'HI(IGIYI mI{I$IIIIIJ J ;JEJZJjJ4JzJ9K>IKK"KK!KKL*LEL\LpL6LMNO(OOOMPtOPQ"Q/Q/RHR/gR R,RRR5SFSXS$lS-S"S+ST"T ;TGTaTuTTTTTTU U;U6VFV)ZV)VJVVW*WwEtq0%<؂/Eb"w32ރ)';%cDŽ Ʌ.Յ!:Sc z Ά#R #`4%2N^'w3ӈ k6 Ή%) K7@,.>]m$TJP^}(-UVЎY^^m+w/\l !1#Jns%Y("͕0!6:qĖ(#AeyX4zBeXq%M #@TKRk&YMơz# ɣ41qR k$wĥ' #5Rd5ަ-/Nf9zѧO?k:1ԩr6fK>\@cܬs@!DufuܮJRD$ViZE*a2:]PZWK?>W~ֶwZbҷy58]3F?zFGZI=ջ2pl;!L$nvI <T:X̾k%/-'BW7pX1 "/  <JZs#=-)Lv$  #7D3|"7G*r ~bv8 /'>8];$!5WYt$/'#?K-B.+H/gACC:8~CD1FNd>1p;IIRfz"A 4Fa sG9%'<1d0$P-O} d!"t7<t[\zS   03<pyH&noB!!PCpOBN1N>R'XWldbMG3>{<21*/\|D(mp |+!oMT94%BZG@H&6oHoD5G[z2,N@EK6 >JZ%rJ>&J5 \x4J7A? C

            Good News!

            An administrator has just approved your account: {{username}} on {{site_name}}.

            Hello,

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            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!

            Someone requested that the password be reset for the following account: {{site_name}}
            Username: {{username}}

            If this was a mistake, just ignore this email and nothing will happen.

            To reset your password, visit the following address:
            {{{reset_link}}}

            To activate your user, please click the following link:
            {{{activation_link}}}

            After you activate, you will receive another email with your credentials.

            You have successfully reset your password to: {{password}}

            {{username}} has requested a password change via the password reset feature.

            His/her new password is: {{password}}

            * only available in the %1$sHobbyist and Pro versions%2$s. Serial Number: Your serial number is about to expire, please %1$s Renew Your License%2$s. Your serial number is expired, please %1$s Renew Your License%2$s. is also activated. You need to deactivate it before activating this version of the plugin."Admin Approval" Activated:"Admin Approval" Feature:"Admin Approval" on User Role:"Email Confirmation" Activated:"Email Confirmation" Landing Page:"Email" - users can Log In only with Email."Username and Email" - users can Log In with both Username and Email."Username" - users can Log In only with Username.%1$s %2$d%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s%1$s of %2$s%s couldn't be deleted%s pending« Prev«« First(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(no title)** only available in the %1$sPro version%2$s.. Extra Field Types are available in
            Hobbyist or PRO versions.... Choose...Choose1 item

            Also, you will be able to visit your site at

            You can visit your site at

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            Your Profile Builder serial number is invalid or missing.
            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

            Redirect
            URL
            Title (Type)
            Title
            Type
            Meta Name
            Required
            User ID / Username
            Redirect
            URL
            User Role
            Redirect
            URL
            Note: changing the form title also changes the shortcode!ERROR: The password must have a minimum strength of %sERROR: The password must have the minimum length of %s charactersERROR: Your account has to be confirmed by an administrator before you can log in.Profile Builder A new account has been created for you on {{site_name}}A new subscriber has (been) registered!A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be editedAIMAbout YourselfAccept user payments, create subscription plans and restrict content on your membership site.Accept user payments, create subscription plans and restrict content on your website.Account ManagementActivateActivation KeyActivation LinkActivation UrlActiveAdd EntryAdd FieldAdd NewAdd New Field to the ListAdd UserAdd a number from 0 to 19. The higher the number the higher the zoom.Add new Edit-profile FormAdd new Registration FormAdd new User ListingAdd your HTML (or text) contentAdd-On has been activatedAdd-On has been deactivated.Add-On is activeAdd-On is inactiveAdd-On is ActiveAdd-OnsAdmin ApprovalAdmin Approval (*)Admin Bar SettingsAdmin Email CustomizerAdmin Notification for User Password ResetAfghanistanAfghanistan AfghaniAfter Edit ProfileAfter LoginAfter LogoutAfter Profile Update...After RegistrationAfter Registration...After Successful Email ConfirmationAfter Successful Password ResetAfter login redirect URL (optional):Agree To Terms CheckboxAimAland IslandsAlbaniaAlbania LekAlgeriaAll UsersAll users have been successfully deletedAll-userlisting TemplateAllow Users to Log in With:Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.Allow users to log in with their email or username when accessing your site.Allow users to recover their password in the front-end using the %s.Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$sAllowable ValuesAllowed Image ExtensionsAllowed Upload ExtensionsAllowed time to display any success messages (in seconds)American SamoaAn administrator has just approved your account on %1$s (%2$s).An administrator has just unapproved your account on %1$s (%2$s).An error occurred, please try again later.AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApplyApproveApprovedAre you sure you want to delete this?ArgentinaArgentina PesoArmeniaArubaAruba GuilderAs an administrator you cannot change your role.AscendingAustraliaAustralia DollarAustriaAuthor Archive ( http://sitename.com/author/admin )Automatically Log InAvailable TagsAvailable in All VersionsAvailable in Hobbyist and Pro VersionsAvailable tags for dynamic URLsAvatarAvatar SizeAvatar Size (All-userlisting)Avatar Size (Single-userlisting)Avatar UploadAvatar or GravatarAzerbaijanAzerbaijan New ManatBackBahamasBahamas DollarBahrainBangladeshBangladeshi takaBarbadosBarbados DollarBasic InformationBeautiful registration forms fully customizable using the %s shortcode.Before you can access your account %1s, an administrator has to approve it. You will be notified via email.Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.Before you can access your account, an administrator needs to approve it. You will be notified via email.BehaviourBelarusBelarus RubleBelgiumBelizeBelize DollarBeninBermudaBermuda DollarBhutanBiographical InfoBlog DetailsBlog Details - only appears on the Registration page!Blog URLBoliviaBolivia BolivianoBolivia, __( Plurinational State ofBonaire, Saint Eustatius and SabaBonaire, __( Sint Eustatius and SabaBosnia and HerzegovinaBosnia and Herzegovina Convertible MarkaBoth fields are empty.BotswanaBotswana PulaBouvet IslandBrazilBrazil RealBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBrunei DarussalamBrunei Darussalam DollarBulgariaBulgaria LevBulk ActionsBurkina FasoBurundiCabo VerdeCambodiaCambodia RielCameroonCan contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}CanadaCanada DollarCancelCape VerdeCayman IslandsCayman Islands DollarCentral African RepublicChadChange heading field size on front-end formsChanged Email Address NotificationCheck your e-mail for the confirmation link.CheckboxChileChile PesoChinaChina Yuan RenminbiChoose how multiple selections affect the resultsChoose one of the supported field typesChoose one of the supported fields you manage install manually.Could not install plugin. Retry or install manually.Country SelectCroatiaCroatia KunaCubaCuba PesoCuracaoCurrency SelectCustom RedirectsCustomize Your Forms The Way You Want (*)CyprusCzech RepublicCzech Republic KorunaDashboard (redirect users from accessing the dashboard)Date-formatDatepickerDeactivateDefaultDefault ContentDefault LatitudeDefault LongitudeDefault OptionDefault Option(s)Default RegistrationDefault Registration & Registration with Email ConfirmationDefault RoleDefault Sorting CriteriaDefault Sorting OrderDefault ValueDefault WP LoginDefault WP Recover PasswordDefault WP RegisterDefault Zoom LevelDefault limit for this repeater group.
            Leave 0 for unlimited.Default option of the fieldDefault value of the fieldDefault value of the textareaDeleteDelete allDelete all itemsDelete this itemDemocratic Republic of the CongoDenmarkDenmark KroneDescendingDescriptionDisabledDisplay MessagesDisplay NameDisplay name asDisplay name publicly asDisplay name publicly as - only appears on the Edit Profile page!Display on PB formsDisplay on default WP formsDjiboutiDo you want toDo you want to bulk approve the selected users?Do you want to bulk delete the selected users?Do you want to bulk unapprove the selected users?DominicaDominican RepublicDominican Republic PesoDownload NowDownloading and installing...E-mailERRORERROR:East Caribbean DollarEast TimorEasy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings.EcuadorEditEdit ProfileEdit field groupEdit the Edit-profile FormsEdit the Registration FormsEdit the User ListingEdit this itemEdit-profile FormEdit-profile FormsEg. (###) ###-####EgyptEgypt PoundEl SalvadorEl Salvador ColonEliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.EmailEmail ConfirmationEmail CustomizerEmail SubjectEmail TemplatesEmail notification resent to userEmpty field won't check for correct phone number.Enable extra featuresEnable limit to the number of fields to be generated by users in front end forms Enable your modulesEnter a (detailed) description of the option for end users to read
            OptionalEnter a comma separated list of labels
            Visible for the userEnter 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.Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophesEnter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100Enter the minimum characters the password should have. Leave empty for no minimum limitEnter your Google Maps API key ( Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used.Equatorial GuineaEritreaError MessageEstoniaEstonia KroonEthiopiaEuroEverything you will need to manage your users is probably already available using the Pro Modules.Example:Excerpt ViewExisting PagesExpand the resultsExtra FeaturesExtra FunctionsExtra Profile Fields are available in Hobbyist or PRO versionsExtra shortcode parametersFacet MetaFacet TypeFaceted MenusFalkland IslandsFalkland Islands (Malvinas)Falkland Islands (Malvinas) PoundFaroe IslandsFeatures that give you more control over your users, increased security and help you fight user registration spam.FieldField PropertiesField TitleFijiFiji DollarFind out more about PRO ModulesFinlandFirst NameFirst/LastnameFirstnameFor Modern User InteractionFor security reasons, you must pass the remote ip to reCAPTCHA!Form ShortcodeFranceFreeFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriction-less login using %s shortcode or a widget.From (name)From (reply-to email)GabonGambiaGeneral LimitGeneral SettingsGeneric UploadsGeorgiaGermanyGet New PasswordGet started with extra fieldsGhanaGhana CedisGibraltarGibraltar PoundGlobal RedirectsGo Back LinkGoogle Maps API KeyGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuatemala QuetzalGuernseyGuernsey PoundGuineaGuinea-BissauGuyanaGuyana DollarHTMLHTML ContentHaitiHeading TagHeard Island and McDonald IslandsHere you can activate / deactivate available modules for Profile Builder.HideHoly See (Vatican City State)HondurasHonduras LempiraHong KongHong Kong DollarHow does this work?HungaryHungary ForintIDIcelandIceland KronaIf you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules.InactiveIncorrect phone numberIndiaIndia RupeeIndividual User RedirectsIndividual redirects defined in shortcodes; redirect_priority="top" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects.IndonesiaIndonesia RupiahInput / Hidden InputInstall NowInstallation completeInvalid activation key!Invalid key!Invalid username.IranIran RialIran, __( Islamic Republic ofIraqIrelandIsle of ManIsle of Man PoundIsraelIsrael ShekelItalyIvory CoastJabberJabber / Google TalkJamaicaJamaica DollarJapanJapan YenJerseyJersey PoundJordanKazakhstanKazakhstan TengeKeep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.KenyaKiribatiKorea (North) WonKorea (South) WonKorea, __( Democratic Peoples Republic ofKorea, __( Republic ofKosovoKuwaitKyrgyzstanKyrgyzstan SomLabelLabelsLao Peoples Democratic RepublicLaosLaos KipLast »»Last NameLastnameLatviaLatvia LatLearn MoreLeave 0 for unlimited.Leave it empty for no max valueLeave it empty for no min valueLeave it empty for no restrictionLebanonLebanon PoundLesothoLiberiaLiberia DollarLibyaLiechtensteinLimitLimit per RoleLimit reached messageList ViewLithuaniaLithuania LitasLoad Profile Builder's own CSS file in the front-end:Log outLog out »Log out of this accountLog out of this account.LoginLogin ( wp_login.php )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 )Login with Email or UsernameLogoutLost Password ( wp-login.php?action=lostpassword )Lost your passwordLost your password?LuxembourgMacaoMacedoniaMacedonia DenarMacedonia, __( the former Yugoslav Republic ofMadagascarMake sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.MalawiMalaysiaMalaysia RinggitMaldivesMaliMaltaManage Default and Extra FieldsManage FieldsManage field or group of fields that will be repeatable.MapMap HeightMarshall IslandsMartiniqueMauritaniaMauritiusMauritius RupeeMax Number ValueMax allowed number value (0 to allow only negative numbers)MayotteMediumMember ManagementMeta-nameMexicoMexico PesoMicronesiaMicronesia, __( Federated States ofMin Number ValueMin allowed number value (0 to allow only positive numbers)Minimum Password Length and Strength MeterMinimum Password Length:Minimum Password Strength:Minimum length of %d charactersMinimum required Profile Builder version:ModulesMoldovaMoldova, __( Republic ofMonacoMongoliaMongolia TughrikMontenegroMontserratMoreMore DetailsMore InfoMore Info UrlMore...MoroccoMozambiqueMozambique MeticalMultiple Edit-profile FormsMultiple Registration FormsMultiple Registration and Edit Profile form settings RedirectsMust be a valid email address or the tag {{reply_to}} which defaults to the administrator emailMyanmarNameName/DescriptionNamibiaNamibia DollarNarrow the resultsNauruNepalNepal RupeeNetherlandsNetherlands Antilles GuilderNew CaledoniaNew Edit-profile FormNew Registration FormNew User ListingNew ZealandNew Zealand DollarNew subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            Next » NicaraguaNicaragua CordobaNicknameNigerNigeriaNigeria NairaNiueNoNo Edit-profile Form foundNo Edit-profile Forms found in trashNo Registration Form foundNo Registration Forms found in trashNo User Listing foundNo User Listing found in trashNo items found.No options availableNo results found!NoneNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNorway KroneNot compatible with Profile BuilderNot compatible with your version of Profile Builder.Now that you acquired a copy of %s, you should take the time and register it with the serial number you receivedNumberNumber Step ValueNumber of PostsNumber of Users/PageOmanOman RialOnly administrators can see this field on edit profile forms.Only an administrator can add new users.OptionsOverwrite ExistingPB LoginPB Recover PasswordPB RegisterPaginationPaid & Free SubscriptionsPaid AccountsPaid Member Subscriptions - a free WordPress pluginPakistanPakistan RupeePalauPalestine, __( State ofPalestinian TerritoryPanamaPanama BalboaPapua New GuineaParaguayParaguay GuaraniPasswordPassword Lost and Found.Password Recovery page URL (optional):Password Reset EmailPassword Reset Success EmailPassword Reset from "%1$s"Password Successfully Reset for %1$s on "%2$s"Payment ManagementPersonalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.PeruPeru Nuevo SolPhilippinesPhilippines PesoPhone FormatPitcairnPlease add the Google Maps API key for this field.Please check that you entered the correct email address.Please check that you entered the correct username.Please choose a different field type as this one already exists in your form (must be unique) Please enter a (valid) reCAPTCHA valuePlease enter a unique field title. Please enter a valid username.Please enter a value for the required field Please enter numbers onlyPlease enter your username or email address.Please select and enter the ID or username of your user.Please select at least one user role Please try a different one!Plugin has been activatedPlugin has been deactivated.Plugin is activePlugin is inactivePlugin is ActivePolandPoland ZlotyPortugalPostsPosts from what post type will be displayed in the select.Powerful Modules (**)Privacy: I would like my site to appear in search engines, and in public listings around this network.Profile Builder Login WidgetProfile Builder RegisterPuerto RicoQatarQatar RiyalRadio ButtonsRandom (very slow on large databases > 10K user)Recommended PluginsRecover PasswordRedirectRedirect Default WordPress Forms and PagesRedirect Default WordPress forms and pagesRedirect TypeRedirect URLRegisterRegister ( wp-login.php?action=register )Register VersionRegister Your VersionRegister page URL (optional):RegisteredRegistrationRegistration & Edit ProfileRegistration DateRegistration FormRegistration FormsRegistration with Admin ApprovalRegistration with Email ConfirmationRemember though, that the field-value combination must exist in the database.RemoveRemove All FiltersRepeat PasswordRepeatable fields saved!Repeated field groupRepeater FieldsReply ToRepublic of the CongoRequiredRequired phone number format: Resend Activation EmailReset KeyReset LinkReset PasswordReset UrlRestrict ContentRestrict the userlisting to these selected roles only
            If not specified, defaults to all existing rolesRetry InstallReunionRoleRoles to DisplayRomaniaRomania New LeuRow CountRussiaRussia RubleRussian FederationRwandaSaint BarthelemySaint HelenaSaint Helena PoundSaint Helena, __( Ascension and Tristan da CunhaSaint Kitts and NevisSaint LuciaSaint MartinSaint Martin (French part)Saint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaudi Arabia RiyalSaveSave ChangesSave SettingsSave the user role order from the user roles checkboxesSearchSearch FieldsSearch LocationSearch SettingsSearch UsersSearch Users by All FieldsSearch all FieldsSearch the Edit-profile FormsSearch the Registration FormsSearch the User ListingSecret KeySelectSelect AllSelect FileSelect a user role.Select on what user roles to activate Admin Approval.Select on which Profile Builder forms to display reCAPTCHASelect on which default WP forms to display reCAPTCHASelect which user roles to show to the user ( drag and drop to re-order )Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name
            Use this at your own riskSend these credentials via email.SenegalSerbiaSerbia DinarSet RoleSet a custom error message that will be displayed to the user.Set the avatar size on the all-userlisting onlySet the avatar size on the single-userlisting onlySet the default sorting criteria
            This can temporarily be changed for each new sessionSet the default sorting order
            This can temporarily be changed for each new sessionSet the number of users to be displayed on every paginated part of the all-userlistingSet up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role.Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.SeychellesSeychelles RupeeShare a little biographical information to fill out your profile. This may be shown publicly.ShortcodeShowShow AllShow Currency SymbolShow Post TypeShow a toggle link after this many choices. Leave blank for allShow all datesShow/Hide the Admin Bar on the Front-EndSierra LeoneSign-up DateSingaporeSingapore DollarSingle-userlisting TemplateSint MaartenSint Maarten (Dutch part)Site KeySite NameSite TitleSite URL slugSite UrlSlovakiaSloveniaSolomon IslandsSolomon Islands DollarSomaliaSomalia ShillingSomeone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$sSomething went wrong, we could not connect to the server. Please try again later.Something went wrong. Please try again.Sorry, but you don't have permission to do that!Sorry, you cannot upload this file type for this field.Sort TagsSouth AfricaSouth Africa RandSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.comSpecify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.comSpecify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yySpecify the number of rows for a 'Textarea' field
            If not specified, defaults to 5Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)Specify the option which should be selected by defaultSpecify 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.Specify the time format.Sri LankaSri Lanka RupeeStatusStep by Step Quick SetupStep value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimalStraight forward edit profile forms using %s shortcode.Strength indicatorStrongSubscription ManagementSudanSurinameSuriname DollarSvalbard and Jan MayenSwazilandSwedenSweden KronaSwitzerlandSwitzerland FrancSyriaSyria PoundSyrian Arab RepublicTaiwanTaiwan New DollarTaiwan, __( Province of ChinaTajikistanTanzaniaTanzania, __( United Republic ofTerms of AgreementTextareaThailandThailand BahtThat field is already added in this form That meta-name is already in use That username is already activated!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!The account %1s has been successfully created!The best way to add front-end registration, edit profile and login forms.The email address entered wasn't found in the database!The email you entered is not a valid email address.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical The entered passwords don't match!The entered row number is not numerical The entered value for the Datepicker is not a valid date-format The following option did not coincide with the ones in the options list: %s The following option(s) did not coincide with the ones in the options list: %s The height of the map.The latitude at which the map should be displayed when no pins are attached.The longitude at which the map should be displayed when no pins are attached.The maximum number of fields has been reached.The meta-name can only contain lowercase letters, numbers, _ , - and no spaces. The meta-name cannot be empty The password must have a minimum strength of %sThe password must have the minimum length of %s charactersThe password you entered is incorrect.The passwords do not matchThe popup message to display when the limit of repeater groups is reached.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.The secret key from Google, www.google.com/recaptchaThe selected user couldn't be deletedThe selected users have been activatedThe selected users have had their activation emails resentThe serial number couldn't be validated because it expired!The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!The serial number entered couldn't be validated!The serial number is about to expire soon!The serial number was successfully validated!The shortcode will be available after you publish this form.The site key from Google, www.google.com/recaptchaThe userlisting will only be visible only to the logged in usersThe userlisting will only be visible to the following rolesThe username entered wasn't found in the database!The usernames cannot be changed.The users selected password at signupThere was an error in the submitted formThere was an error performing that action!There was an error while trying to activate the userThere was an error while trying to activate the user.There was an error while trying to send the activation link to %1$s!These redirects happen after a successful action, like registration or after a successful login.These settings are also replicated in the "Admin Email Customizer" settings-page upon save.These settings are also replicated in the "User Email Customizer" settings-page upon save.This email is already in use.This email is already reserved to be used soon.This field has conditional logic enabled.This field is requiredThis form is empty.This login widget lets you add a login form in the sidebar.This message is only visible by administratorsThis username already exists.This username is already activated!This username is already reserved to be used soon.This username is invalid because it uses illegal characters.This username is now active!This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using "Custom Redirects" module.Time FormatTimepickerTimezone SelectTimor-LesteTitle of the fieldTitle:To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login.To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so onTo 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$sTo allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$sTo create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s.To use reCAPTCHA you must get an API key fromTo use reCAPTCHA you must get an API public key from:TogoTokelauTongaTrinidad and TobagoTrinidad and Tobago DollarTunisiaTurkeyTurkey LiraTurkmenistanTurks and Caicos IslandsTuvaluTuvalu DollarType your password again. Type your password.U.S. Virgin IslandsURLUS DollarUgandaUganda ShillingUkraineUkraine HryvnaUnapproveUnapprovedUnapproved User NotificationUnited Arab EmiratesUnited KingdomUnited Kingdom PoundUnited StatesUnited States Minor Outlying IslandsUpdateUpgrade Profile BuilderUpload UruguayUruguay PesoUse these shortcodes on the pages you want the forms to be displayed:Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-countUse this shortcode on the page you want the form to be displayed:User Approval NotificationUser CountUser Email CustomizerUser Fields TagsUser IDUser ID / UsernameUser ID or UsernameUser IdUser ListingUser MetaUser NicenameUser RoleUser Role based RedirectsUser RolesUser Roles OrderUser not foundUser successfully approved!User successfully deleted!User successfully unapproved!User to edit:User-RoleUser-statusUserlisting SettingsUsernameUsername and EmailUsername or E-mailUsername or EmailUsernames cannot be changed.Users can register themselves or you can manually create users here.Users cannot currently register themselves, but you can manually create users here.Users successfully approved!Users successfully deleted!Users successfully unapproved!Users with Unconfirmed Email AddressUzbekistanUzbekistan SomValid tags {{reply_to}} and {{site_name}}ValidationValue must be a multiplier of %1$sValue must be greater than or equal to %1$sValue must be less than or equal to %1$sVanuatuVaticanVenezuelaVenezuela BolivarVenezuela, __( Bolivarian Republic ofVersion %sVery WeakVery weakViet NamViet Nam DongVietnamView MapView all extra shortcode parametersView the Edit-profile FormView the Registration FormView the User ListingVirgin Islands, __( BritishVirgin Islands, __( U.S.VisibilityVisible choicesVisible only to logged in users?Visible to following RolesWallis and FutunaWeakWebsiteWelcome to %1$s!


            Your username is:%2$sWelcome to %1$s!


            Your username is:%2$s and password:%3$sWestern SaharaWhether the currency symbol should be displayed after the currency name in the select option.Whether the field is required or notWhether to automatically log in the newly registered user or not
            Only works on single-sites without "Admin Approval" and "Email Confirmation" features activated
            WARNING: Caching the registration form will make automatic login not workWhether to redirect the user to a specific page or notWhich redirect happens depends on the following priority:With Extra Profile Fields you can create the exact registration form your project needs.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.With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts.With these you can redirect various WordPress forms and pages to pages created with profile builder.Yahoo IMYemenYemen RialYesYes, I'd like to create a new siteYimYou are already logged in. You can change your password on the edit profile form.You are currently logged in as %1$s. %2$sYou are currently logged in as %1s. You don't need another account. %2sYou are currently logged in as %s. You are not allowed to do this.You can add the information for the %s after you add a entryYou 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)You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.You can find it in the Profile Builder menu.You can find the default file here: %1$sYou can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces.You can't add duplicate redirects!You cannot register this user roleYou decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.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.You do not have permission to view this user list.You do not have the required user role to view this user list.You don't have any pagination settings on this userlisting!You either don't have permission for that action or there was an error!You have successfully reset your password to: %1$sYou must be logged in to edit your profile.You must enter a valid email address.You must enter a value for the date-format You must enter a value for the row number You must enter the secret key You must enter the site key You must select a field You need to activate the Userlisting feature from within the "Modules" tab!You need to specify the title of the form before creating itYou use the following tags in your URLs to redirect users to various pages.You will receive a link to create a new password via email.You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$sYour account has been successfully created!Your account has to be confirmed by an administrator before you can log in.Your account has to be confirmed by an administrator before you can use the "Password Recovery" feature.Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.Your account on %1$s has been approved!Your account on %1$s has been unapproved!Your account on {{site_name}} has been approved!Your account on {{site_name}} has been unapproved!Your email was successfully confirmed.Your password has been successfully changed!Your profile has been successfully updated!Your selected password at signupYour session has expired! Please refresh the page and try againYour session has expired! Please refresh the page and try again.Your site url will look like this:
            ZambiaZimbabweZimbabwe Dollar[%1$s] Activate %2$s[%1$s] Your new account information[{{site_name}}] Activate {{username}}[{{site_name}}] Notice of Email Change[{{site_name}}] Password Reset[{{site_name}}] Password Reset Successfullyapprove this user?approvedconfirm this email yourself?delete this user from the _signups table?delete this user?displays all users except the ones you specified the user_id fordisplays only the users that you specified the user_id fordisplays users having a certain meta-value within a certain (extra) meta-fieldemailgenerates a url of the current website homepage.herein WordPress the site url can be different then the home urlreCAPTCHArequiredresend the activation link?showthe ID of the userthe URL of the previously visited pagethe URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces.unapprove this user?unapprovedusernameusername or emailPO-Revision-Date: 2017-08-01 13:42:23+0000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5; X-Generator: GlotPress/0.1 Project-Id-Version: Profile Builder

            أخبار جيدة!

            وافق المشرف على حسابك: {{username}} على {{site_name}}.

            مرحبا،

            للأسف، لم قام المشرف بعدم الموافقة على حسابك: {{username}} على {{site_name}}.

            مرحبا بك في {{site_name}}!

            اسم المستخدم هو: {{username}} وكلمة المرور: {{password}}

            مرحبا بك في {{site_name}}!

            اسم المستخدم هو: {{username}} وكلمة المرور: {{password}}

            قبل أن تتمكن من الدخول إلى حسابك، يجب على المشرف الموافقة عليه. سيتم إعلامك عبر البريد الإلكتروني.

            مشترك جديد في {{site_name}}.

            اسم المستخدم: {{username}}

            البريد الالكتروني: {{user_email}}

            مشترك جديد في {{site_name}}.

            اسم المستخدم: {{username}}

            البريد الالكتروني: {{user_email}}

            تم تنشيط ميزة الموافقة على المشرف في وقت التسجيل، لذا يرجى تذكر أنك تحتاج إلى الموافقة على هذا المستخدم قبل أن يتمكن من تسجيل الدخول!

            طلب شخص ما إعادة تعيين كلمة المرور للحساب التالي: {{site_name}}
            اسم المستخدم: {{username}}

            إذا كان هذا خطأ، فتجاهل هذا البريد الإلكتروني ولن يحدث أي شيء.

            لإعادة تعيين كلمة المرور، انتقل إلى العنوان التالي:
            {{{reset_link}}}

            لتنشيط المستخدم، يرجى النقر على الرابط التالي:
            {{{activation_link}}}

            بعد التنشيط، ستتلقى رسالة بريد إلكتروني أخرى تتضمن بيانات اعتمادك.

            لقد أعدت تعيين كلمة المرور بنجاح إلى: {{password}}

            {{username}} قام بطلب تغيير كلمة المرور عبر ميزة إعادة تعيين كلمة المرور.

            كلمة المرور الجديدة هي: {{password}} * متوفر فقط في إصدارات %1$sHobbyist و Pro%2$s.الرقم التسلسليالرقم التسلسلي الخاص بك على وشك الانتهاء، يرجى %1$s تجديد الترخيص الخاص بك%2$s.انتهت صلاحية الرقم التسلسلي، يرجى %1$s تجديد الترخيص%2$s.يتم التفعيل أيضا. تحتاج إلى إلغاء تفعيله قبل تفعيل هذا الإصدار من الإضافة."موافقة المشرف" مفعلةميزة "موافقة المشرف":"موافقة المشرف" على دور المستخدم:"تأكيد البريد الإلكتروني" مفعل:صفحة هبوط "تأكيد البريد الإلكتروني":"البريد الإلكتروني" - يمكن للمستخدمين تسجيل الدخول بالبريد الإلكتروني فقط."اسم المستخدم والبريد الإلكتروني" - يمكن للمستخدمين تسجيل الدخول بكل من اسم المستخدم والبريد الإلكتروني."اسم المستخدم" - يمكن للمستخدمين تسجيل الدخول باسم المستخدم فقط.%1$s %2$d%1$s قام بطلب تغيير كلمة المرور عبر ميزة إعادة تعيين كلمة المرور.
            كلمة المرور الجديدة هي:%2$s%1$s من %2$s%s لا يمكن حذفها%s معلقة« السابق«« الأول(مثال. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(لايوجد عنوان)* متوفر فقط في %1$sإصدارات Pro%2$s.. تتوفر أنواع الحقول الإضافية في إصدارات Hobbyist أو PRO.... اختر...اخترعنصر %sعنصر واحد%s عنصر%s عناصر%s عنصر%s عنصر

            كما ستتمكن من زيارة موقعك على

            يمكنك زيارة موقعك على

            إن ترخيص Profile Builder قد انتهى.
            الرجاء %1$s تجديد الترخيص %2$s لمتابعة تلقي إمكانية الوصول |إلى تحميل المنتجات والتحديثات التلقائية والدعم. %3$s جدد الآن واحصل على خصم 40% %4$s %6$s تجاهل %7$s

            إن ترخيص Profile Builder على وشك الانتهاء في %5$s.
            الرجاء %1$s تجديد الترخيص %2$s لمتابعة تلقي إمكانية الوصول |إلى تحميل المنتجات والتحديثات التلقائية والدعم. %3$s جدد الآن واحصل على خصم 40% %4$s %6$s تجاهل %7$s

            الرقم التسلسلي Profile Builder غير صالح أو مفقود.
            يرجى%1$s تسجيل نسختك%2$s لتلقي إمكانية الوصول إلى التحديثات التلقائية والدعم. هل تحتاج إلى مفتاح ترخيص؟ %3$sاشتري واحد الآن%4$s

            إعادة توجيه
            URL
            العنوان (نوع)
            العنوان
            النوع
            الاسم الوصفي
            مطلوب
            معرف المستخدم / اسم المستخدم
            إعادة توجيه
            URL
            دور المستخدم
            إعادة توجيه
            URL
            ملاحظة: يؤدي تغيير عنوان النموذج أيضا إلى تغيير الرمز القصير!! خطأ : يجب أن يكون الحد الأدنى من القوة لكلمة المرور %s خطأ : يجب أن يكون الحد الأدنى لعدد أحرف كلمة المرور %s خطأ : يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من تسجيل الدخول.Profile Builder تم إنشاء حساب جديد لك على {{site_name}}قد تم تسجيل مشترك جديد (تم)!معرف فريد يتم إنشاؤه تلقائيا لهذا الحقل بالذات
            يمكنك استخدام هذا الخيار مع فلاتر لاستهداف هذا العنصر إذا لزم الأمر
            لا يمكن تعديلهAIMعن الكاتبقبول دفعات المستخدم، إنشاء خطط الاشتراك وتقييد المحتوى على موقعك.قبول دفعات المستخدم، إنشاء خطط الاشتراك وتقييد المحتوى على موقعك.إدارة الحسابتفعيلمفتاح التفعيلرابط التفعيلUrl التفعيلمفعّلإضافة إدخالإضافة حقلإضافة جديدAdd New Field to the Listأضف مستخدم جديدإضافة رقم من 0 إلى 19. كل ما زاد الرقم زاد التكبير.إضافة استمارة جديدة لتعديل الملف الشخصيإضافة استمارة تسجيل جديدهإضافة قائمة مستخدم جديدةأضف محتوى HTML (أو نص)تم تفعيل الإضافةتم تعطيل الإضافة.الإضافة مفعلةالإضافة غير مفعلةالإضافة مفعلةإضافاتموافقة المشرفموافقة المشرف (*)إعدادات شريط المشرفمخصص البريد الإلكتروني للمشرفإعلام المشرف للمستخدم عند إعادة تعيين كلمة المرورأفغانستانأفغانستان الأفغانيبعد تعديل الملف الشخصيبعد تسجيل الدخولبعد تسجيل الخروجبعد تعديل الملف الشخصي...بعد التسجيلبعد التسجيل...بعد تأكيد البريد الإلكتروني بنجاحبعد إعادة كلمة المرور بنجاحURL إعادة توجيه تسجيل الدخول (اختياري):موافق على مربع الشروطAimجزر آلاندألبانياليك ألبانياالجزائركل المستخدمينتم حذف جميع المستخدمين بنجاحقالب قائمة جميع المستخدمينالسماح للمستخدمين بتسجيل الدخول باستخدام:السماح لأدوار المستخدمين المختلفة بتعديل معلوماتهم الخاصة. إعداد نماذج تعديل الملف الشخصي متعددة مع حقول مختلفة لبعض أدوار المستخدم.السماح للمستخدمين بتسجيل الدخول باستخدام البريد الإلكتروني أو اسم المستخدم عند الدخول إلى موقعك.السماح للمستخدمين باستعادة كلمة المرور في الواجهة الأمامية باستخدام %s.السماح للمستخدمين بالحصول على حسابات مدفوعة باستخدام أداةProfile Builder. %1$sمعرفة المزيد >%2$s %3$sتجاهل%4$sالقيم المسموح بهاصيغ الصور المسموح بهاالصيغ المسموح رفعهاالوقت المسموح به لعرض أية رسائل نجاح (بالثواني)ساموا الأمريكيةلقد وافق المشرف على حسابك للتو على %1$s (%2$s).لم يوافق المشرف سوى على حسابك في %1$s (%2$s).لقد حدث خطأ، رجاء أعد المحاولة لاحقا.أندوراأنغولاأنغيلاالقارة القطبية الجنوبيةأنتيغوا وبربوداتطبيقموافقةموافقةهل أنت متأكد أنك تريد حذف هذا؟الأرجنتينالبيزو الأرجنتينيأرمينياأروباأروبا غيلدربصفتك مشرفا، لا يمكنك تغيير دورك.تصاعديأستراليادولار استراليالنمساأرشيف المؤلف (http://sitename.com/author/admin)تسجيل الدخول تلقائياالوسوم المتاحةمتوفر في جميع الإصداراتمتوفر في اصدارات Hobbyist و Proالوسوم المتاحة لعناوين URL الديناميكيةالصورة الرمزيةحجم الصورة الرمزيةحجم الصورة الرمزية (كل المستخدمين)حجم الصورة الرمزية (قائمة مستخدم واحد)رفع الصورة الرمزيةصورة رمزية أو Gravatarأزربيجانأذربيجان الجديدة ماناترجوعالبهاماسالدولار الباهاماالبحرينبنغلاديشتاكا بنغلاديشيةبربادوسدولار بربادوسمعلومات اساسيةأشكال تسجيل جميلة للتخصيص بشكل كامل باستخدام %s الرمز القصير.قبل أن تتمكن من الدخول إلى حسابك %1s، يحتاج المشرف إلى الموافقة عليه. سيتم إعلامك عبر البريد الإلكتروني.قبل أن تتمكن من الدخول إلى حسابك %1s، يجب تأكيد عنوان بريدك الإلكتروني. يرجى التحقق من البريد الوارد والنقر على رابط التفعيل.قبل أن تتمكن من الدخول إلى حسابك، يحتاج المشرف إلى الموافقة عليه. سيتم إعلامك عبر البريد الإلكتروني.سلوكبيلاروسروبل روسيا البيضاءالبلجيكبليزدولار بليزبنينبرمودادولار برمودابوتانالسيرة الذاتيةتفاصيل المدونةتفاصيل المدونة - يظهر فقط على صفحة التسجيل!عنوان المدونةبوليفيابوليفيا بوليفيانوبوليفيا، __ (دولة - المتعددة القومياتبونير، سينت أوستاتيوس وسابابونير، __ (سينت أوستاتيوس وساباالبوسنة والهرسكماركا للتحويل البوسنة والهرسككلا الحقلين فارغينبوتسوانابوتسوانا، بولاجزيرة بوفيتالبرازيلريال برازيليإقليم المحيط البريطاني الهنديجزر فيرجن البريطانيةبرونايدولار بروناى دار السلامدولار بروناى دار السلامبلغاريابلغاريا ليفإجراءات جملةبوركينا فاسوبورونديالرأس الأخضركمبودياريال كمبوديالكاميرونيمكن أن يحتوي على الوسوم الديناميكية التالية:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}كندادولار كنديإلغاءالرأس الأخضرجزر الكايماندولار جزر كايمانجمهورية افريقيا الوسطىتشادتغيير حجم حقل العنوان في نماذج الواجهة الأماميةإشعار تغيير عنوان البريد الإلكترونيتحقق من بريدك الإلكتروني للحصول على رابط التأكيد.مربع اختيارتشيليشيلي بيزوالصينالصين يوان رينمينبياختر كيفية تأثير التحديدات المتعددة على النتائجاختر أحد أنواع الحقول المدعومةاختر أحد الحقول المدعومة التي تديرها ثبت يدويا .تعذر تثبيت الإضافة. أعد المحاولة أو ثبت يدويا .تحديد البلدكرواتياكونا كرواتيةكوباكوبا بيزوكوراكاوتحديد العملةعمليات إعادة التوجيه المخصصةتخصيص النماذج بالطريقة التي تريدها (*)قبرصجمهورية التشيكالجمهورية التشيكية كورونالوحة التحكم (إعادة توجيه المستخدمين من الدخول إلى لوحة التحكم)صيغة التاريخمنتقي التاريختعطيلالإفتراضيالمحتوى الافتراضيخط العرض الافتراضيالطول الافتراضيالخيار الافتراضيالخيار الافتراضي (الخيارات)التسجيل الافتراضيالتسجيل الافتراضي والتسجيل مع تأكيد البريد الإلكترونيالدور الافتراضيمعايير الفرز الإفتراضيةترتيب الفرز الإفتراضيالقيمة الافتراضيةتسجيل الدخول الإفتراضي ل WPإستعادة كلمة المرور الإفتراضي ل WPالتسجيل الإفتراضي ل WPمستوى التكبير الافتراضيالحد الافتراضي لهذه المجموعة المكرره.
            اترك 0 بدون تحديد.الخيار الافتراضي للحقلالقيمة الافتراضية للحقلالقيمة الافتراضية لمساحة النصحذفحذف الكلحذف جميع العناصرحذف هذا العنصرجمهورية الكونغو الديموقراطيةالدنمارككرون دنماركيتنازليوصفتعطيلعرض الرسائلاسم العرضإظهار الاسم كعرض الاسم بشكل عام كعرض الاسم بشكل عام - يظهر فقط في صفحة تعديل الملف الشخصي!عرض على نماذج PBعرض على نماذج WP الإفتراضيةجيبوتيهل تريد أنهل تريد الموافقة على مجموعة المستخدمين المحددين؟هل تريد الحذف على مجموعة المستخدمين المحددين؟هل تريد إلغاء الموافقة على مجموعة المستخدمين المحددين؟دومينيكاجمهورية الدومنيكانبيزو جمهورية الدومينيكانتحميل الآنجار التحميل والتثبيت ...البريد الإلكترونيخطأخطأ:دولار شرق الكاريبيتيمور الشرقيةمن السهل تعديل النماذج لإدراج مستخدمي موقعك على الويب بالإضافة إلى إنشاء صفحات مستخدم واحد. يعتمد على الرمز القصير، ويقدم العديد من الخيارات لتخصيص القوائم الخاصة بك.إكوادورتعديلتعديل الملف الشخصيتعديل مجموعة الحقولتعديل استمارات تعديل الملف الشخصيتعديل نماذج التسجيلتعديل قائمة المستخدمتعديل هذا العنصراستمارة تعديل الملف الشخصياستمارات تعديل الملف الشخصيمثال. (###) ###-####مصرجنيه مصريالسلفادورالسلفادور، الكولونالقضاء على كلمات المرور الضعيفة تماما عن طريق وضع الحد الأدنى لطول كلمة المرور وإنفاذ قوة كلمة مرور معينة.البريد الإلكترونيتأكيد البريد الإلكترونيمخصص البريد الإلكترونيموضوع البريد الإلكترونيقوالب البريد الإلكترونيتم إعادة إرسال إشعار البريد الإلكتروني للمستخدملن يقوم الحقل الفارغ بالتحقق من رقم الهاتف الصحيح.تمكين ميزات إضافيةتمكين الحد لعدد الحقول التي سيتم إنشاؤها بواسطة المستخدمين في نماذج الواجهة الأماميةتمكين الوحدات الخاصة بكأدخل وصفا (مفصلا) للخيار لكي يقرأه المستخدمين النهائيين
            اختياريأدخل قائمة تسميات مفصولة بفواصل
            مرئية للمستخدمأدخل قائمة مفصولة بفواصل للقيم المحتملة. عند التسجيل إذا كانت القيمة المقدمة من قبل المستخدم لا تتطابق مع إحدى هذه القيم، لن يتم تسجيل المستخدم.أدخل قائمة قيم مفصولة بفاصلات
            يمكن أن يكون أي شيء، لأنه مخفي عن المستخدم، ولكن يجب ألا يحتوي على أحرف خاصة أو الفواصل العلياأدخل وصفا تفصيليا لشروط الاتفاق ليتمكن المستخدم من قراءته.
            يمكن إدراج الروابط باستخدام بنية HTML القياسية: <a href="custom_url">custom_text</a>أدخل قيمة (بين 20 و 200) لحجم "الصورة الرمزية"
            إذا لم يتم تحديدها، فسيكون الإعداد الافتراضي هو 100أدخل الحد الأدنى من الحروف التي يجب أن تحتوي عليها كلمة المرور. اتركه فارغا لعدم تحديد الحد الأدنىأدخل مفتاح واجهة برمجة تطبيقات خرائط Google ( احصل على مفتاح واجهة برمجة التطبيقات ). إذا تم إضافة أكثر من حقل خريطة إلى نموذج سيتم استخدام مفتاح API من الخريطة الأولى المعروضة.غينيا الإستوائيةإريتريارسالة خطأإستونياإستونيا كرونإثيوبيايوروكل ما تحتاجه لإدارة المستخدمين الخاص بك هو على الأرجح متاح بالفعل باستخدام وحدات Pro.مثال:عرض مقتطفالصفحات الحاليةتوسيع النتائجميزات اضافيةوظائف إضافيةحقول الملف الشخصي إضافية متوفرة في إصدارات Hobbyist أو PROمعلمات اختصارات إضافيةواجهة ميتانوع الواجههقوائم الأوجهجزر فوكلاندجزر فوكلاند (مالفيناس)جزر فوكلاند (مالفيناس) جنيهجزر صناعيةالميزات التي تمنحك مزيدا من التحكم في المستخدمين ,زيادة الأمان وتساعدك على محاربة الرسائل غير المرغوب فيها لتسجيل المستخدمين.حقلخصائص الحقلعنوان الحقلفيجيدولار فيجىمعرفة المزيد عن وحدات PROفنلنداالاسم الأولالاسم الأول/الأخيرالاسم الأوللتفاعل المستخدم الحديثلأسباب أمنية، يجب تمرير عنوان بروتوكول الإنترنت عن بعد ل ريكابتشا!شكل رمز قصيرفرنسامجانيغيانا الفرنسيةبولينيزيا الفرنسيةالمناطق الجنوبية لفرنساالاحتكاك أقل في تسجيل الدخول باستخدام %s الرمز القصير أو ودجت.من (الاسم)من (الرد إلى البريد الإلكتروني)الغابونغامبياالحد العامالإعدادات العامةرفع ملفات عامةجورجياألمانيااحصل على كلمة سر جديدةبدء استخدام حقول إضافيةغاناغانا سيديسجبل طارقجنيه جبل طارقعمليات إعادة التوجيه العالميةرابط الرجوع للخلفمفتاح API لخرائط Googleاليونانالأرض الخضراءغرناطةجوادلوبغوامغواتيمالاغواتيمالا كيتزالغيرنسيجنيه غيرنسيغينياغينيا بيساوغيانادولار غياناHTMLمحتوى HTMLهايتيعنوان العلامةجزيرة هيرد وجزر ماكدونالدهنا يمكنك تفعيل / إلغاء تفعيل الوحدات النمطية المتاحة ل Profile Builder.إخفاءالكرسي الرسولي (دولة الفاتيكان)هندوراسهندوراس ليمبيراهونج كونجدولار هونج كونجكيف يعمل هذا؟هنغاريافورينت مجريمعرف فريدآيسلنداكرونا آيسلنديإذا كنت تستمتع باستخدام %1$s فالرجاء تقييمنا على WordPress.org . المزيد من المستخدمين السعداء يعني المزيد من الميزات، مشاكل أقل ودعم أفضل للجميع.إذا قمت بتسجيل هذا الإصدار من Profile Builder، فستتلقى معلومات بشأن عمليات الترقية والتصحيحات والدعم الفني.إذا كنت مهتما بعرض حقول مختلفة في نماذج تسجيل الملف الشخصي وتعديلها، يرجى استخدام وحدات النماذج المتعددة للتسجيل والتعديل الشخصي للملفات الشخصية.غير مفعّلرقم الهاتف غير صحيحالهندروبية هنديةعمليات إعادة توجيه المستخدمين الفرديينعمليات إعادة التوجيه الفردية المعرفة في الرموز القصيرة; redirect_priority="top" يمكن إضافة المعاملات في أي رمز قصير، فستكون أولوية إعادة توجيه الرمز القصير هذه على جميع عمليات إعادة التوجيه الأخرى.إندونيسياروبية إندونيسيةالإدخال / الإدخال الخفيتثبيت الآناكتمل التثبيتمفتاح التنشيط غير صالح!مفتاح غير صالح!اسم المستخدم غير صحيحإيرانريال إيرانيإيران (جمهورية - الإسلامية)العراقإيرلنداجزيرة آيل أوف مانجنيه جزيرة آيل أوف مانالكيان الصهيونيشيكل الكيان الصهيونيإيطالياساحل العاجJabberJabber / Google Talkجامايكادولار جامايكياليابانالين اليابانيجيرسيجنيه جيرزيالأردنكازاخستانكازاخستان تنغيحافظ على المستخدمين خارج لوحة معلومات وردبريس, إعادة توجيههم إلى الصفحة الأولى بعد تسجيل الدخول أو التسجيل, كل شيء على بعد نقرات قليلة.كينياكيريباسكوريا (الشمالية) وونكوريا (الجنوبية) وونكوريا، الجمهورية الشعبية الديمقراطيةجمهورية كورياكوسوفوالكويتكرغيزستانقيرغيزستان سومملصقتسمياتجمهورية لاو الديمقراطية الشعبيةلاوسلاوس كيبآخر »»الاسم الأخيرالاسم الأخيرلاتفيالاتفيا لاتتعلم المزيداترك 0 لغير محدود.اتركه فارغا لعدم تحديد الحد الأعلىاتركه فارغا لعدم تحديد الحد الأدنىاتركه فارغا بدون قيودلبنانجنيه لبنانيليسوتوليبيريادولار الليبيريليبياليختنشتاينحديوجد حد لكل دوررسالة الوصول للحد الأقصىعرض القائمةليتوانياليتوانيا الليتاستحميل ملف CSS ل Profile Builder الخاص بك في الواجهة الأمامية:تسجيل الخروجتسجيل الخروج »تسجيل الخروج من هذا الحسابتسجيل الخروج من هذا الحسابتسجيل الدخولتسجيل الدخول ( wp_login.php )يتم تعيين تسجيل باستخدام البريد الإلكتروني. لن يظهر هذا الحقل في الواجهة الأمامية! (يمكنك تغيير هذه الإعدادات ضمن علامة التبويب "%s")تسجيل الدخول عن طريق اسم المستخدم أو البريد الإلكترونيتسجيل الخروجفقدت كلمة المرور ( wp-login.php?action=lostpassword )نسيت كلمة المرورنسيت كلمة المرور؟لوكسمبورغماكاومقدونيادينار مقدونيمقدونيا، __ (جمهورية يوغوسلافيا السابقةمدغشقرتأكد من تسجيل المستخدمين من خلال عناوين بريد إلكتروني حقيقية. عند التسجيل سوف يتلقى المستخدمين إخطارا لتأكيد عنوان بريدهم الإلكتروني.ملاويماليزيارينغيت ماليزياالمالديفماليمالطاإدارة الحقول الافتراضية والإضافيةإدارة الحقولإدارة الحقل أو مجموعة الحقول التي سيتم تكرارها.خريطةارتفاع الخريطةجزر مارشالمارتينيكموريتانياموريشيوسروبي موريشيوسالحد الأعلى لقيمة الرقمالحد الأعلى المسموح به لقيمة الرقم (0 للسماح للأرقام الإيجابية فقط)مايوتمتوسطإدارة الأعضاءاسم ميتاالمكسيكبيزو مكسيكيميكرونيزياميكرونيزيا، __ (ولايات - الموحدةالحد الأدنى لقيمة الرقمالحد الأدنى المسموح به لقيمة الرقم (0 للسماح للأرقام الإيجابية فقط)الحد الأدنى لطول كلمة المرور وقوتهاالحد الأدنى لطول كلمة المرور:الحد الأدنى لقوة كلمة المرور:الحد الأدنى هو %d أحرفإصدار Profile Builder الأدنى المطلوب:وحداتمولدوفامولدوفا، __ (جمهوريةموناكومنغوليامنغوليا توغريكمونتنيغرومونتسيراتالمزيدمعلومات أكثرمعلومات أكثرمزيد من المعلومات Urlالمزيد...المغربموزمبيقموزمبيق ميتيكالنماذج تحرير الملف الشخصي المتعددةنماذج التسجيل المتعددةإعدادات متعددة لإعادة التوجيه لنموذج تسجيل وتحرير الملف الشخصييجب أن يكون عنوان بريد إلكتروني صالحا أو الوسم {{reply_to}} التي تكون افتراضية إلى البريد الإلكتروني للمشرفميانمارالاسماسم / الوصفناميبيادولار ناميبيتضييق النتائجناورونيبالروبية نيبالهولنداهولندا أنتيليان غيلدركاليدونيا الجديدةاستمارة تعديل الملف الشخصي جديدةاستمارة تسجيل جديدهقائمة مستخدم جديدةنيوزيلندادولار نيوزيلنديمشترك جديد في %1$s.

            اسم المستخدم:%2$s
            البريد الإلكتروني:%3$s
            التالي » نيكاراغوانيكاراغوا قرطبةالكنيةالنيجرنيجيريانيرة نيجيريةنيويلالم يتم العثور على نموذج تعديل الملف الشخصيلم يتم العثور على نماذج تعديل الملف الشخصي في المهملاتلم يتم العثور على نموذج تسجيللم يتم العثور على نماذج تسجيل في المهملاتلم يتم العثور على قائمة مستخدمينلم يتم العثور على قائمة مستخدمين في المهملاتلاتوجد نتائج.لاتوجد خياراتلاتوجد نتائج!لا شيءجزيرة نورفولككوريا الشماليةجزر مريانا الشماليةالنرويجكرون نرويجيغير متوافق مع Profile Builderمتوافق مع الإصدار الخاص بك من Profile Builder.الآن بعد أن حصلت على نسخة من %s، يجب أن تأخذ قليلاً من الوقت وتسجيله مع الرقم التسلسلي الذي تلقيتهرقمقيمة خطوة الرقمعدد المقالاتعدد المستخدمين / الصفحةعمانريال عمانييمكن للمشرفين فقط مشاهدة هذا الحقل في نماذج الملف الشخصي للتعديل.يمكن للمشرف فقط إضافة مستخدمين جدد.خياراتاستبدال الحاليتسجيل الدخول PBإستعادة كلمة المرور PBتسجيل PBترقيم الصفحاتالاشتراكات المدفوعة والمجانيةالحسابات المدفوعةالعضوية مدفوعة الاشتراك - إضافة ووردبريس مجانيةباكستانروبية باكستانيةبالاوفلسطينفلسطينبنمابنما بالبوابابوا غينيا الجديدةباراغوايجواراني باراجوايكلمة المرورتم فقدان كلمة المرور واسترجاعهاURL استعادة كلمة المرور (اختياري):بريد إعادة كلمة المروربريد نجاح إعادة تعيين كلمة المرورإعادة تعيين كلمة المرور من "%1$s"تم بنجاح إعادة تعيين كلمة المرور ل %1$s على "%2$s"إدارة الدفعتخصيص جميع الرسائل الإلكترونية المرسلة إلى المستخدمين أو المشرفين. على التسجيل، تأكيد البريد الإلكتروني، موافقة المشرف / أو إلغاء الموافقة.بيروبيرو نويفو سولالفلبينبيسو فلبينيتنسيق الهاتفبيتكيرنالرجاء إضافة مفتاح واجهة برمجة التطبيقات لخرائط غوغل لهذا الحقل.يرجى التحقق من إدخال البريد الإلكتروني الصحيح.يرجى التحقق من إدخال اسم المستخدم الصحيح.يرجى اختيار نوع حقل مختلف لأن هذا الحقل موجود بالفعل في النموذج (يجب أن يكون فريدا) الرجاء إدخال قيمة ريكابتشا (صالحة)الرجاء إدخال عنوان حقل فريد. الرجاءادخال اسم مستخدم صحيح.الرجاء إدخال قيمة للحقل المطلوببرجاء إدخال أرقام فقطالرجاء إدخال اسم المستخدم أو عنوان البريد الإلكتروني.يرجى تحديد وإدخال الرقم التعريفي للمستخدم أو اسم المستخدم الخاص به.يرجى تحديد دور مستخدم واحد على الأقل الرجاء محاولة واحدة مختلفة!تم تفعيل الإضافةتم تعطيل الإضافة.الإضافة مفعلةالإضافة غير مفعلةالإضافة مفعلةبولندابولندا زلوتيالبرتغالالمقالاتسيتم عرض المقالات من نوع المقال في التحديد.وحدات قوية (**)الخصوصية: أرغب في ظهور موقعي في محركات البحث، وفي القوائم العامة حول هذه الشبكة.ودجت تسجيل الدخول Profile Builderتسجيل Profile Builderبورتوريكوقطرريال قطريأزرار الراديوعشوائي (بطيء جدا على قواعد البيانات الكبيرة> 10 آلاف مستخدم)الإضافات الموصى بهاإستعادة كلمة المرورإعادة توجيهإعادة توجيه نماذج ووردبريس الافتراضية والصفحاتإعادة توجيه نماذج ووردبريس الافتراضية والصفحاتنوع إعادة التوجيهURL إعادة التوجيهتسجيل عضو جديدالتسجيل ( wp-login.php?action=register )تسجيل الإصدارتسجيل الإصدار الخاص بكURL التسجيل (اختياري):مسجلالتسجيلتسجيل وتحرير الملف الشخصيتاريخ التسجيلاستمارة تسجيلنماذج التسجيلالتسجيل باستخدام موافقة المشرفالتسجيل مع تأكيد البريد الإلكترونيتذكر, أن مزيج قيمة الحقل يجب أن تكون موجودة في قاعدة البيانات.إزالةإزالة جميع معايير البحثإعادة كلمة المرورتم حفظ الحقول القابلة للتكرار!مجموعة الحقول المتكررةحقول التكرارالرد علىجمهورية الكونغومطلوبتنسيق رقم الهاتف المطلوب:إعادة إرسال بريد التفعيلمفتاح إعادة التعيينرابط إعادة التعيينإعادة كلمة المرورإعادة تعيين Urlتقييد المحتوىقصر قائمة المستخدمين على هذه الأدوار المحددة فقط
            إذا لم يتم تحديدها، فسيكون افتراضيا لجميع الأدوار الحاليةإعادة التثبيتجمع شملدورالأدوار التي يتم عرضهارومانياليو روماني جديدعدد الصفوفروسياروبل روسيالاتحاد الروسيروانداسانت بارتيليميسانت هيلانةجنيه سانت هيلاناسانت هيلينا، __ (أسينسيون وتريستان دا كونهاسانت كيتس ونيفيسالقديسة لوسياالقديس مارتنسانت مارتن (الجزء الفرنسي)سانت بيير وميكلونسانت فنسنت وجزر غرينادينسامواسان مارينوساو تومي وبرينسيبيالمملكة العربية السعوديةريال سعوديحفظحفظ التغييراتحفظ الإعداداتاحفظ ترتيب دور المستخدم من مربعات اختيار أدوار المستخدمبحثابحث في الحقولموقع البحثابحث في الإعداداتالبحث عن المستخدمينالبحث عن المستخدمين من قبل جميع الحقولبحث كل الحقولابحث في نماذج تعديل الملف الشخصيابحث في نماذج التسجيلابحث في قائمة المستخدمالمفتاح السريتحديدتحديد الكلحدد ملفحدد دور المستخدم.حدد ما أدوار المستخدم لتنشيط موافقة المشرف.حدد على أي نموذج Profile Builder يتم عرض reCAPTCHAحدد على أي نموذج WP الإفتراضي يتم عرض reCAPTCHAحدد أدوار المستخدم المراد عرضها للمستخدم (السحب والإفلات للترتيب)سيؤدي تحديد "نعم" إلى إضافة الحقل إلى القائمة، ولكن سيتم استبدال أي حقل آخر في قاعدة البيانات التي تحتوي على الاسم الوصفي نفسه
            استخدم هذا على مسؤوليتك الخاصةإرسال كلمة المرور عن طريق البريد الإلكترونيالسنغالصربيادينار صربيتعيين الدورقم بتعيين رسالة خطأ مخصصة ليتم عرضها للمستخدم.تعيين حجم الصورة الرمزية على جميع-المستخدمين فقطاضبط حجم الصورة الرمزية على قائمة المستخدمين الفردية فقطتعيين معايير الفرز الافتراضية
            يمكن تغيير هذا مؤقتا لكل جلسة جديدةتعيين ترتيب الفرز الافتراضي
            يمكن تغيير هذا مؤقتا لكل جلسة جديدةتعيين عدد المستخدمين ليتم عرضهم على كل جزء مرقم لكل المستخدمينإعداد مجموعة متكررة من الحقول على نماذج التسجيل وتعديل الملف الشخصي. قم بتحديد عدد المجموعات المتكررة لكل دور مستخدم.إعداد نماذج تسجيل متعددة مع حقول مختلفة لأدوار معينة للمستخدم. التقاط معلومات مختلفة من أنواع مختلفة من المستخدمين.سيشيلروبية سيشيليةمشاركة معلومات عن السيرة الذاتية لملء ملفك الشخصي. قد تظهر ذلك علنا.رمز قصيرإظهارإظهار الكلإظهار رمز العملةعرض نوع المقالعرض رابط تبديل بعد هذه الخيارات المتعددة. اتركه فارغا للجميعإظهار كل التواريخإظهار / إخفاء شريط المشرف على الواجهة الأماميةسيراليونتاريخ التسجيلسنغافورةدولار سينغافورينموذج قائمة مستخدم واحدسانت مارتنسانت مارتن (الجزء الهولندي)مفتاح الموقعاسم الموقععنوان الموقععنوان الموقعرابط الموقعسلوفاكياسلوفينياجزر سليماندولار جزر سليمانالصومالشلن صوماليطلب أحد الأشخاص إعادة تعيين كلمة المرور للحساب التالي: %1$s
            إذا كان هذا خطأ، فتجاهل هذه الرسالة الإلكترونية ولن يحدث أي شيء.
            لإعادة تعيين كلمة المرور ، انتقل إلى الرابط التالي:%2$sحدث خطأ ما، لم نتمكن من الاتصال بالخادم. الرجاء معاودة المحاولة في وقت لاحق.هناك خطأ ما. حاول مرة اخرى.نأسف, ليس لديك الصلاحيات لفعل ذلك.عذرا، لا يمكنك تحميل هذا النوع من الملفات لهذا الحقل.فرز الوسومجنوب أفريقياراند جنوب أفريقياجورجيا الجنوبية وجزر ساندويتش الجنوبيةكوريا الجنوبيةجنوب السودانإسبانياحدد عنوان Url للصفحة التي سيتم إعادة توجيه المستخدمين إليها بمجرد تسجيلهم باستخدام هذا النموذج
            استخدم التنسيق التالي: http://www.mysite.comحدد عنوان URL للصفحة التي سيتم إعادة توجيه المستخدمين إليها بعد تحديث ملفهم الشخصي باستخدام هذا النموذج
            استخدم التنسيق التالي: http://www.mysite.comحدد الإضافة (الإضافات) التي تريد تقييدها
            مثال: .ext1، .ext2، .ext3
            إذا لم يتم تحديدها، الإعدادات الافتراضية ستكون كل الامتدادات المسموحة في ووردبريس (. *)حدد الإضافة (الإضافات) التي تريد تقييدها
            مثال: .ext1، .ext2، .ext3
            إذا لم يتم تحديد، الإعدادات الافتراضية تكون: .jpg، .jpeg، .gif، .png (. *)حدد تنسيق التاريخ عند استخدام منسق التاريخ
            الخيارات الصحيحة: 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, @
            If إذا لم يتم تحديد mm/dd/yyحدد عدد الصفوف لحقل 'مساحة النص'
            إذا لم يتم تحديدها، فسيكون الإعداد الافتراضي هو 5حدد الخيار الذي يجب تحديده افتراضيا
            إذا كانت هناك قيم متعددة، فقم بفصلها مع '،' (فاصلة)حدد الخيار الذي يجب تحديده بشكل افتراضيحدد الصفحة التي سيتم توجيه المستخدمين إليها عند تأكيد حساب البريد الإلكتروني. قد تختلف هذه الصفحة عن صفحة (صفحات) التسجيل ويمكن تغييرها في أي وقت. إذا لم يتم تحديد أي شيء، سيتم عرض صفحة تأكيد بسيطة للمستخدم.تحديد صيغة الوقتسريلانكاروبية سريلانكاالحالةالإعداد السريع خطوة بخطوةقيمة الخطوة 1 للسماح الأعداد الصحيحة فقط، 0.1 للسماح الأعداد الصحيحة والأرقام مع رقم عشري واحدتحرير نماذج الملف الشخصي بشكل بسيط باستخدام %s الرمز القصير.مؤشر القوةقويإدارة الاشتراكاتالسودانسورينامدولار سورينامسفالبارد وجان ماينسوازيلاندالسويدكرونا سويديةسويسرافرنك سويسريسورياليرة سوريةالجمهورية العربية السوريةتايوانتايوان الدولار الجديدتايوان، __ (مقاطعة الصينطاجاكستانتنزانياتنزانيا، __ (جمهورية - المتحدةشروط الاتفاقمساحة النصتايلندباهت تايلانديتمت إضافة هذا الحقل مسبقا في هذا النموذج هذا الاسم الوصفي قيد الاستخدام تم تفعيل هذا المستخدم مسبقاً!تم تفعيل ميزة "موافقة المشرف" في وقت التسجيل، لذا يرجى تذكر أنك بحاجة إلى الموافقة على هذا المستخدم قبل أن يتمكن من تسجيل الدخول.تم إنشاء الحساب %1s بنجاح!أفضل طريقة لإضافة تسجيل الواجهة الأمامية, تعديل الملف الشخصي واستمارات تسجيل الدخول.لم يتم العثور على عنوان البريد الإلكتروني الذي تم إدخاله في قاعدة البيانات!البريد الإلكتروني الذي أدخلته ليس عنوان بريد إلكتروني صالح.حجم الصورة الرمزية الذي تم إدخاله لا يتراوح بين 20 و 200 حجم الصورة الرمزية المدخلة ليست رقمية لا تتطابق كلمات المرور المدخلة!رقم الصف الذي تم إدخاله غير رقمي القيمة المدخلة لمنسق التاريخ ليست تنسيق تاريخ صالح لم يتطابق الخيار التالي مع تلك الموجودة في قائمة الخيارات: %s لم يتطابق الخيار (الخيارات) التالي مع الخيارات الموجودة في قائمة الخيارات:%s ارتفاع الخريطة.خط العرض الذي يجب أن يتم عرضه في الخريطة عند عدم ربط أي دبابيس.خط الطول الذي يجب أن يتم عرضه في الخريطة عند عدم ربط أي دبابيس.تم الوصول إلى الحد الأقصى لعدد الحقول.يمكن أن يحتوي الاسم الوصفي فقط على أحرف صغيرة وأرقام و _ و - وليس مسافات. لا يمكن أن يكون الاسم الوصفي فارغا يجب أن يكون لكلمة المرور الحد الأدنى من قوة %sيجب أن يكون الحد الأدنى لعدد أحرف كلمة المرور %sكلمة المرور التي أدخلتها غير صحيحة.كلمات السر لا تتطابقالرسالة المنبثقة تعرض عندما يتم الوصول إلى الحد الأقصى من المجموعات المكررة.تم تعيين دور المستخدم الذي تم إنشاؤه إلى الدور الافتراضي. لا يمكن تسجيل مستخدم له الدور المعين لهذا النموذج إلا من قبل المشرف.المفتاح السري من Google، www.google.com/recaptcha تعذر حذف المستخدم المحددتم تنشيط المستخدمين المحددينتمت إعادة توجيه رسائل البريد الإلكتروني للتفعيلتعذر التحقق من الرقم التسلسلي لأنه منتهي!تعذر التحقق من الرقم التسلسلي بسبب انتهاء مهلة العملية. من ممكن أن يكون بسبب مشكلة في الخادم. الرجاء معاودة المحاولة في وقت لاحق!تعذر التحقق من الرقم التسلسلي الذي تم إدخاله!الرقم التسلسلي على وشك الانتهاء قريبا!تم التحقق من صحة الرقم التسلسلي!سيكون الرمز القصير متاحا بعد نشر هذا النموذج.مفتاح الموقع من Google، www.google.com/recaptcha لن تكون قائمة المستخدمين مرئية إلا للمستخدمين المسجلين دخولهملن تكون قائمة المستخدمين مرئية إلا للأدوار التاليةلم يتم العثور على اسم المستخدم الذي تم إدخاله في قاعدة البيانات!اسم المستخدم لا يمكن تغييره.قام المستخدمين باختيار كلمة المرور عند الاشتراكحدث خطأ في النموذج المقدمحدث خطأ أثناء تنفيذ هذا الإجراء!حدث خطأ أثناء محاولة تفعيل المستخدمحدث خطأ أثناء محاولة تفعيل المستخدم.حدث خطأ أثناء محاولة إرسال رابط التفعيل إلى %1$s!تحدث عمليات إعادة التوجيه هذه بعد إجراء ناجح، مثل التسجيل أو بعد تسجيل دخول ناجح.يتم نسخ هذه الإعدادات أيضا في إعدادات "مخصص البريد الإلكترونيللمسؤول" عند الحفظ.يتم نسخ هذه الإعدادات أيضا في إعدادات "مخصص البريد الإلكتروني للمستخدم" عند الحفظ.هذا البريد استخدم من قبل.هذه الرسالة الإلكترونية محفوظة بالفعل لاستخدامها قريبا.هذا الحقل لديه منطق شرطي مفعل.هذا الحقل مطلوبهذا النموذج فارغ.هذه الودجت تتيح لك إضافة نموذج تسجيل الدخول في الشريط الجانبي.هذه الرسالة مرئية فقط من قبل المشرفيناسم المستخدم هذا موجود بالفعل.تم تفعيل هذا المستخدم مسبقاً!اسم المستخدم هذا محفوظ مسبقا لاستخدامه قريبا.اسم المستخدم هذا غير صالح لأنه يستخدم أحرفا غير قانونية.اسم المستخدم مفعل الآن!يعمل مع نماذج الواجهة الأمامية فقط. يوصى بإعادة توجيه تسجيل الافتراضي ل WP إلى نموذج Profile Builder يستخدم وحدة "إعادة توجيه مخصص".صيغة الوقتمنتقي الوقتتحديد المنطقة الزمنيةتيمور الشرقيةعنوان الحقلالعنوان:لتفعيل المستخدم، يرجى النقر على الرابط التالي:

            %s%s%s

            بعد التفعيل، ستتلقى رسالة إلكترونية أخرى * مع تسجيل الدخول.للسماح للعديد من الكسور العشرية المستخدمة على سبيل المثال. 0.01 (ل 2 عشري) وما إلى ذلكللسماح للمستخدمين بالتسجيل في موقع الويب الخاص بك عن طريق Profile Builder، يجب أولا تمكين تسجيل المستخدم. انتقل إلى %1$sاعدادات الشبكة%2$s, وتحت إعدادات التسجيل تأكد من التحقق من "حسابات المستخدم قد تكون مسجلة”. %3$sتجاهل%4$sللسماح للمستخدمين بالتسجيل في موقع الويب الخاص بك عن طريق Profile Builder، يجب أولا تمكين تسجيل المستخدم. انتقل إلى %1$sاعدادات -> علامة التبويب عام%2$s, وتحت العضوية تأكد من تحقق "يمكن لأي شخص التسجيل. %3$sتجاهل%4$sلإنشاء صفحة تحتوي على المستخدمين المسجلين في هذا الموقع / المدونة الحالية، أدخل الرمز القصير التالي في صفحة من اختيارك: %s.لاستخدام ريكابتشا يجب أن تحصل على مفتاح عام لواجهة برمجة التطبيقات منلاستخدام ريكابتشا يجب أن تحصل على مفتاح عام لواجهة برمجة التطبيقات من:توغوتوكيلاوتونغاترينداد وتوباغودولار ترينيداد وتوباغوتونستركياليرا تركيةتركمانستانجزر تركس وكايكوستوفالودولار توفالوأعد كتابة كلمة المرور مرة أخرى.قم بكتابة كلمة المرور.جزر فيرجن الأمريكيةURLدولار أمريكيأوغنداشلن أوغنديأوكرانياأوكرانيا هريفنياإلغاء الموافقةإلغاء الموافقةإشعار مستخدم غير موافق عليهالإمارات العربية المتحدةالمملكة المتحدةجنيه استرلينيالولايات المتحدة الأمريكيةجزر الولايات المتحدة البعيدة الصغرىتحديثترقية Profile Builderرفعأوروغوايبيسو أوروغواياستخدم هذه الرموز القصيرة على الصفحات التي تريد عرض النماذج عليها:استخدم هذا مع وظائف ووردبريس لعرض القيمة في الصفحة التي تختارها
            الإكمال التلقائي ولكن في بعض الحالات قابل للتعديل (وفي هذه الحالة يجب أن تكون فريدة من نوعها)
            قد يستغرق تغيير هذا الأمر وقتا طويلا في حالة وجود عدد كبير من المستخدميناستخدم هذا الرمز القصير في الصفحة التي تريد عرض النموذج عليها:إشعار الموافقة على المستخدمعدد المستخدمينمخصص البريد الإلكترونيوسوم حقول المستخدممعرف المستخدممعرف المستخدم / اسم المستخدممعرف المستخدم أو اسم المستخدممعرف المستخدمقائمة المستخدمينميتا المستخدماسم مستخدم لطيفدور المستخدمعمليات إعادة التوجيه استنادا إلى دور المستخدمأدوار المستخدمينترتيب أدوار المستخدمينالمستخدم غير موجودتمت الموافقة على المستخدم بنجاحتم حذف المستخدم بنجاح!تم إلغاء الموافقة للمستخدم بنجاح!تعديل بيانات المستخدم:دور المستخدمخالة المستخدمإعدادات قائمة المستخدماسم المستخدماسم المستخدم و البريد الإلكترونيأسم المستخدم او البريد الإلكترونياسم المستخدم أو البريد الإلكترونياسم المستخدم لا يمكن تغييره.بإمكان المستخدمين تسجيل عضويتهم أو بإمكانك إضافة أعضاء جدد في هذه الشاشة.لا يمكن للمستخدمين تسجيل أنفسهم حاليا، ولكن يمكنك إنشاء المستخدمين يدويا هنا.تمت الموافقة على المستخدمين بنجاح!تم حذف المستخدمين بنجاح!تم إلغاء الموافقة للمستخدمين بنجاح!المستخدمون الذين لديهم عنوان بريد إلكتروني غير مؤكدأوزبكستانأوزبكستان سومالوسوم الصالحة {{reply_to}} و {{site_name}}التحققيجب أن تكون القيمة مضاعفا ل %1$sيجب أن تكون القيمة أكبر من أو تساوي %1$sيجب أن تكون القيمة أكبر من أو تساوي %1$sفانواتوفاتيكانفنزويلابوليفار فنزويلافنزويلا، __ (جمهورية - البوليفاريةالاصدار %sضعيف جداضعيف جدافيتنامفيتنام دونغفيتناممعاينة الخريطةعرض جميع معلمات الاختصارات الإضافيةعرض نموذج تعديل الملف الشخصيعرض نموذج التسجيلعرض قائمة المستخدمجزر فيرجن، __ (البريطانيةجزر فيرجن، __ (الأمريكية.الوضوحالخيارات المرئيةمرئية فقط للمستخدمين الذين سجلوا دخولهم؟مرئية للأدوار التاليةواليس وفوتوناضعيفالموقعمرحبا بك في %1$s!


            اسم المستخدم الخاص بك هو: %2$sمرحبا بك في %1$s!


            اسم المستخدم الخاص بك هو: %2$s وكلمة المرور: %3$sالصحراء الغربيةما إذا كان يجب عرض رمز العملة بعد اسم العملة في الخيار المحدد.ما إذا كان الحقل مطلوب أم لاما إذا كان سيتم تسجيل الدخول تلقائيا إلى المستخدم المسجل حديثا أم لا
            يعمل فقط على مواقع فردية بدون تفعيل ميزة "موافقة المشرف" و "تأكيد البريد الإلكتروني"
            تحذير: يؤدي التخزين المؤقت لنموذج التسجيل إلى عدم تسجيل الدخول التلقائيسواء لإعادة توجيه المستخدم إلى صفحة معينة أم لاتعتمد عملية إعادة التوجيه على الأولوية التالية:مع حقول الملف الشخصي الإضافية يمكنك إنشاء نموذج التسجيل الدقيق الذي يحتاجه المشروع الخاص بك.مع Profile Builder Pro v2 يمكنك عرض حقول مختلفة في تسجيل وتعديل نماذج الملف الشخصي، وذلك باستخدام نماذج الوحدة النمطية المتعددة تسجيل وتحرير ملف .باستخدام حقل الاشتراكات الجديد في Profile Builder، ستسمح استمارات التسجيل لمستخدميك بالاشتراك في الحسابات المدفوعة.مع هذه يمكنك إعادة توجيه نماذج وورد مختلفة وصفحات إلى صفحات تم إنشاؤها باستخدام profile builder.Yahoo IMاليمنريال يمنينعمنعم، أريد إنشاء موقع جديدYimلقد قمت بالفعل بتسجيل الدخول. يمكنك تغيير كلمة المرور الخاصة بك في نموذج تحرير الملف الشخصي.أنت الآن مسجل الدخول بالمستخدم %1$s. %2$sأنت الآن مسجل الدخول بالمستخدم %1s. لا تحتاج إلى حساب آخر. %2sأنت الآن مسجل الدخول بالمستخدم %s. لا يسمح لك بذلك.يمكنك إضافة المعلومات ل %s بعد إضافة إدخاليمكنك أيضا استخدام قيمة الخطوة لتحديد فترات الرقم القانوني (على سبيل المثال الخطوة 2 سوف تسمح فقط -4، -2، 0، 2 وما إلى ذلك)يمكنك العثور على قائمة بعناوين البريد الإلكتروني غير المؤكدة %1$sالمستخدمين > كل المستخدمين > تأكيد البريد الإلكتروني%2$s.يمكنك العثور على قائمة المستخدمين في %1$sالمستخدمين > كل المستخدمين > موافقة المشرف%2$s.بإمكانك إيجادها في قائمة Profile Builderيمكنك العثور على الملف الافتراضي هنا: %1$sيمكنك استخدام: # للأرقام، الأقواس ()، - علامة، + علامة، نقطة. والمساحات.لا يمكنك إضافة عمليات إعادة توجيه مكررة!لا يمكنك تسجيل دور المستخدم هذاعليك أن تقرر من هو المستخدم على موقع الويب الخاص بك. الحصول على إخطار عبر البريد الإلكتروني أو الموافقة على عدة مستخدمين في وقت واحد من واجهة المستخدم ووردبريس.يمكنك أن تقرر من هو المستخدم على موقع الويب الخاص بك. الحصول على إخطار عبر البريد الإلكتروني أو الموافقة على عدة مستخدمين في وقت واحد من واجهة المستخدم ووردبريس. تمكين موافقة المشرف من خلال الترقية إلى %1$sاصدارات Hobbyist أو PRO %2$s.ليس لديك الصلاحيات لعرض قائمة المستخدمين هذه.ليس لديك دور المستخدم المطلوب لعرض قائمة المستخدمين هذه.ليس لديك أي إعدادات ترقيم صفحات في قائمة المستخدمين!إما لم يكن لديك صلاحية لهذا الإجراء أو كان هناك خطأ!لقد أعدت تعيين كلمة المرور بنجاح إلى: %1$sيجب تسجيل الدخول لتعديل ملفك الشخصي.ينبغي إدخال بريد الكتروني صالح.يجب إدخال قيمة لتنسيق التاريخ يجب إدخال قيمة لرقم الصف يجب إدخال المفتاح السري يجب إدخال مفتاح الموقع يجب تحديد حقل تحتاج إلى تفعيل ميزة عرض المستخدمين من داخل "وحدات" علامة التبويب!يجب تحديد عنوان النموذج قبل إنشائهيمكنك استخدام الوسوم التالية في عناوين URL لإعادة توجيه المستخدمين إلى صفحات مختلفة.ستتلقى رابطا لإنشاء كلمة مرور جديدة عبر البريد الإلكتروني.سيتم قريبا إعادة توجيهك تلقائيا. إذا رأيت هذه الصفحة لأكثر من %1$d ثانية، يرجى النقر %2$s.%3$sتم إنشاء حسابك بنجاح!يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من تسجيل الدخول.يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من استخدام ميزة "استعادة كلمة المرور".يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من استخدام ميزة "استعادة كلمة المرور".تمت الموافقة على حسابك في%1$s !لم يتم اعتماد حسابك على %1$sتمت الموافقة على حسابك في {{site_name}}!لم تتم الموافقة على حسابك في {{site_name}}!تم تأكيد بريدك الإلكتروني بنجاح.كلمة السر الخاصة بك تم تغييرها بنجاح!تم تحديث ملفك الشخصي بنجاح!قمت باختيار كلمة المرور عند الاشتراكانتهت صلاحية جلسة العمل الخاصة بك! يرجى تحديث الصفحة وحاول مرة أخرىانتهت صلاحية جلسة العمل الخاصة بك! يرجى تحديث الصفحة وحاول مرة أخرى.سيبدو عنوان موقعك على هذا النحو:
            زامبيازمبابويدولار زمبابوي[%1$s] تفعيل %2$s[%1$s] معلومات حسابك الجديد[{{site_name}}] تفعيل {{username}}[{{site_name}}] إشعار بتغيير البريد الإلكتروني[{{site_name}}] إعادة تعيين كلمة المرور[{{site_name}}] إعادة تعيين كلمة المرور بنجاحالموافقة على هذا المستخدم؟موافقةتأكيد البريد الإلكتروني بنفسك؟هل تريد حذف هذا المستخدم من جدول _signups؟حذف هذا المستخدم؟عرض جميع المستخدمين باستثناء المستخدمين الذين حددتهم user_id لعرض المستخدمين الذين حددتهم user_id فقط ليعرض المستخدمين الذين لديهم قيمة وصفية معينة ضمن حقل ميتا (إضافي) معينالبريد الإلكترونييولد عنوان url للصفحة الرئيسية الحالية.هنافي ووردبريس يمكن أن يكون عنوان الموقع مختلفا عن عنوان url الرئيسياختبار reCAPTCHAمطلوبإعادة إرسال رابط التفعيل؟إظهارمعرف المستخدمعنوان URL للصفحة التي تمت زيارتها سابقاالنسخة المعقمة لعنوان URL لاسم المستخدم، يمكن استخدام اسم المستخدم اللطيف بأمان في عناوين URL نظرا لأنه لا يمكن أن يحتوي على أحرف خاصة أو مسافات.إلغاء الموافقة على هذا المستخدم؟إلغاء الموافقةاسم المستخدماسم المستخدم أو البريد الإلكترونيtranslation/profile-builder-ru_RU.po000066600000725210152141651160013575 0ustar00# Translation of Profile Builder in Russian # This file is distributed under the same license as the Profile Builder package. msgid "" msgstr "" "PO-Revision-Date: 2016-04-18 14:37:34+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: GlotPress/0.1\n" "Project-Id-Version: Profile Builder\n" #: profile-builder-2.0/admin/general-settings.php:154 msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s." msgstr "" #: profile-builder-2.0/admin/general-settings.php:146 msgid "\"Roles Editor\" Activated:" msgstr "" #: profile-builder-2.0/features/roles-editor/roles-editor.php:300 msgid "M j, Y @ G:i" msgstr "" #: profile-builder-2.0/front-end/recover.php:117 msgid "Please enter your email address." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yy" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244 msgid "Individual redirects defined in shortcodes; redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1217 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." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "" #: profile-builder-2.0/admin/register-version.php:251 msgid "

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            " msgstr "" #: profile-builder-2.0/admin/register-version.php:246 msgid "

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            " msgstr "" #: profile-builder-2.0/front-end/recover.php:159 msgid "You are already logged in. You can change your password on the edit profile form." msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "" #: profile-builder-2.0/features/functions.php:909 msgid "

            You can visit your site at " msgstr "" #: profile-builder-2.0/features/functions.php:896 msgid "

            Also, you will be able to visit your site at " msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138 msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network." msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36 #: profile-builder-2.0/modules/user-listing/userlisting.php:118 msgid "Blog URL" msgstr "" #: profile-builder-2.0/admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:222 msgid "Blog Details" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:239 msgid "Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579 msgid "Welcome to %1$s!


            Your username is:%2$s" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1320 msgid "View Map" msgstr "" #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267 #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367 #: pb-add-on-woocommerce/index.php:493 msgid "Address line 2" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "Billing Fields" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Billing Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Save the billing fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Billing Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Save the billing fields names" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Shipping Fields" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Shipping Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Save the shipping fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Shipping Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Save the shipping fields names" msgstr "" #: pb-add-on-woocommerce/index.php:305 msgid "Field Name" msgstr "" #: pb-add-on-woocommerce/index.php:369 msgid "Click to edit " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:368 msgid "is not a valid phone number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:377 msgid "is not a number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:382 msgid "must be a multiplier of " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:387 msgid "must be a greater than or equal to " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:392 msgid "must be less than or equal to " msgstr "" #: profile-builder-2.0/admin/add-ons.php:103 msgid "Available in Hobbyist and Pro Versions" msgstr "" #: profile-builder-2.0/admin/add-ons.php:105 msgid "Available in All Versions" msgstr "" #: profile-builder-2.0/admin/add-ons.php:148 msgid "Learn More" msgstr "" #: profile-builder-2.0/admin/basic-info.php:99 msgid "Timepicker" msgstr "" #: profile-builder-2.0/admin/basic-info.php:100 msgid "Colorpicker" msgstr "" #: profile-builder-2.0/admin/basic-info.php:103 msgid "Currency Select" msgstr "" #: profile-builder-2.0/admin/basic-info.php:109 msgid "Number" msgstr "" #: profile-builder-2.0/admin/basic-info.php:114 msgid "Validation" msgstr "" #: profile-builder-2.0/admin/basic-info.php:115 msgid "Map" msgstr "" #: profile-builder-2.0/admin/basic-info.php:116 msgid "HTML" msgstr "" #: profile-builder-2.0/admin/basic-info.php:162 #: profile-builder-2.0/modules/modules.php:117 msgid "Repeater Fields" msgstr "" #: profile-builder-2.0/admin/basic-info.php:163 msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role." msgstr "" #: profile-builder-2.0/admin/general-settings.php:59 msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Show Currency Symbol" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Whether the currency symbol should be displayed after the currency name in the select option." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Show Post Type" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Posts from what post type will be displayed in the select." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:145 msgid "Allowable Values" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:145 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." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Error Message" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Set a custom error message that will be displayed to the user." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Time Format" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Specify the time format." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Google Maps API Key" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Enter your Google Maps API key ( Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "Default Latitude" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "The latitude at which the map should be displayed when no pins are attached." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "Default Longitude" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "The longitude at which the map should be displayed when no pins are attached." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Default Zoom Level" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "Map Height" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "The height of the map." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "HTML Content" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "Add your HTML (or text) content" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Phone Format" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Eg. (###) ###-####" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Empty field won't check for correct phone number." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Heading Tag" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Change heading field size on front-end forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min Number Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Leave it empty for no min value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max Number Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Leave it empty for no max value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Number Step Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 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)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Leave it empty for no restriction" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:564 msgid "Albania Lek" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:565 msgid "Afghanistan Afghani" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:566 msgid "Argentina Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:567 msgid "Aruba Guilder" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:568 msgid "Australia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:569 msgid "Azerbaijan New Manat" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:570 msgid "Bahamas Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:571 msgid "Barbados Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:572 msgid "Bangladeshi taka" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:573 msgid "Belarus Ruble" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:574 msgid "Belize Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:575 msgid "Bermuda Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:576 msgid "Bolivia Boliviano" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:577 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:578 msgid "Botswana Pula" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:579 msgid "Bulgaria Lev" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:580 msgid "Brazil Real" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:581 msgid "Brunei Darussalam Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:582 msgid "Cambodia Riel" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:583 msgid "Canada Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:584 msgid "Cayman Islands Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:585 msgid "Chile Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:586 msgid "China Yuan Renminbi" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:587 msgid "Colombia Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:588 msgid "Costa Rica Colon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:589 msgid "Croatia Kuna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:590 msgid "Cuba Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:591 msgid "Czech Republic Koruna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:592 msgid "Denmark Krone" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:593 msgid "Dominican Republic Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:594 msgid "East Caribbean Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:595 msgid "Egypt Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:596 msgid "El Salvador Colon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:597 msgid "Estonia Kroon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:598 msgid "Euro" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:599 msgid "Falkland Islands (Malvinas) Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:600 msgid "Fiji Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:601 msgid "Ghana Cedis" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:602 msgid "Gibraltar Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:603 msgid "Guatemala Quetzal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:604 msgid "Guernsey Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:605 msgid "Guyana Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:606 msgid "Honduras Lempira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:607 msgid "Hong Kong Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:608 msgid "Hungary Forint" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:609 msgid "Iceland Krona" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:610 msgid "India Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:611 msgid "Indonesia Rupiah" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:612 msgid "Iran Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:613 msgid "Isle of Man Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:614 msgid "Israel Shekel" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:615 msgid "Jamaica Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:616 msgid "Japan Yen" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:617 msgid "Jersey Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:618 msgid "Kazakhstan Tenge" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:619 msgid "Korea (North) Won" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:620 msgid "Korea (South) Won" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:621 msgid "Kyrgyzstan Som" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:622 msgid "Laos Kip" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:623 msgid "Latvia Lat" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:624 msgid "Lebanon Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:625 msgid "Liberia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:626 msgid "Lithuania Litas" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:627 msgid "Macedonia Denar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:628 msgid "Malaysia Ringgit" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:629 msgid "Mauritius Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:630 msgid "Mexico Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:631 msgid "Mongolia Tughrik" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:632 msgid "Mozambique Metical" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:633 msgid "Namibia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:634 msgid "Nepal Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:635 msgid "Netherlands Antilles Guilder" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:636 msgid "New Zealand Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:637 msgid "Nicaragua Cordoba" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:638 msgid "Nigeria Naira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:639 msgid "Norway Krone" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:640 msgid "Oman Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:641 msgid "Pakistan Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:642 msgid "Panama Balboa" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:643 msgid "Paraguay Guarani" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:644 msgid "Peru Nuevo Sol" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:645 msgid "Philippines Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:646 msgid "Poland Zloty" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:647 msgid "Qatar Riyal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:648 msgid "Romania New Leu" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:649 msgid "Russia Ruble" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:650 msgid "Saint Helena Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:651 msgid "Saudi Arabia Riyal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:652 msgid "Serbia Dinar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:653 msgid "Seychelles Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:654 msgid "Singapore Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:655 msgid "Solomon Islands Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:656 msgid "Somalia Shilling" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:657 msgid "South Africa Rand" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:658 msgid "Sri Lanka Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:659 msgid "Sweden Krona" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:660 msgid "Switzerland Franc" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:661 msgid "Suriname Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:662 msgid "Syria Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:663 msgid "Taiwan New Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:664 msgid "Thailand Baht" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:665 msgid "Trinidad and Tobago Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:666 #: profile-builder-2.0/admin/manage-fields.php:667 msgid "Turkey Lira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:668 msgid "Tuvalu Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:669 msgid "Ukraine Hryvna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:670 msgid "United Kingdom Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:671 msgid "Uganda Shilling" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:672 msgid "US Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:673 msgid "Uruguay Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:674 msgid "Uzbekistan Som" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:675 msgid "Venezuela Bolivar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:676 msgid "Viet Nam Dong" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:677 msgid "Yemen Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:678 msgid "Zimbabwe Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1097 msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1314 msgid "Search Location" msgstr "" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754 msgid "You are not allowed to do this." msgstr "" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460 msgid "Search Users" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78 msgid "Conditional Logic" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79 msgid "Conditional Rules" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448 msgid "This field has conditional logic enabled." msgstr "" #: profile-builder-2.0/features/functions.php:685 msgid "Incorrect phone number" msgstr "" #: profile-builder-2.0/front-end/class-formbuilder.php:124 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." msgstr "" #: profile-builder-2.0/front-end/extra-fields/map/map.php:46 #: profile-builder-2.0/front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "" #: profile-builder-2.0/front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bolivia, __( Plurinational State of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bonaire, __( Sint Eustatius and Saba" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brunei Darussalam" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cabo Verde" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cocos (Keeling) Islands" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo, __( the Democratic Republic of the" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cote dIvoire" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Falkland Islands (Malvinas)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Holy See (Vatican City State)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iran, __( Islamic Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Democratic Peoples Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lao Peoples Democratic Republic" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macedonia, __( the former Yugoslav Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Micronesia, __( Federated States of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Moldova, __( Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palestine, __( State of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Russian Federation" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Helena, __( Ascension and Tristan da Cunha" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Martin (French part)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sint Maarten (Dutch part)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Syrian Arab Republic" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Taiwan, __( Province of China" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tanzania, __( United Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Timor-Leste" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Venezuela, __( Bolivarian Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Viet Nam" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( British" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( U.S." msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:186 msgid "User Fields Tags" msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479 msgid "The users selected password at signup" msgstr "" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278 msgid "[{{site_name}}] Notice of Email Change" msgstr "" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289 msgid "Changed Email Address Notification" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Limit" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Enable limit to the number of fields to be generated by users in front end forms " msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "General Limit" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "Limit reached message" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The maximum number of fields has been reached." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The popup message to display when the limit of repeater groups is reached." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Limit per Role" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Leave 0 for unlimited." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Repeated field group" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Manage field or group of fields that will be repeatable." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259 msgid "Edit field group" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260 msgid "Repeatable fields saved!" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277 #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326 msgid "Please enter a unique field title.\n" msgstr "" #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267 msgid "Are you sure you want to delete this?" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:192 msgid "Sort Tags" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:201 #: profile-builder-2.0/modules/user-listing/userlisting.php:2308 msgid "Faceted Menus" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:202 msgid "User Count" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1553 msgid "Show All" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1710 msgid "No options available" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1861 msgid "Remove All Filters" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Label" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Choose the facet name that appears on the frontend" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Facet Type" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Choose the facet menu type" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Facet Meta" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Choose the meta field for the facet menu" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Behaviour" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Narrow the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Expand the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Choose how multiple selections affect the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Visible choices" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Search Fields" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Choose the fields in which the Search Field will look in" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2330 msgid "Search Settings" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:8 #: pb-add-on-woocommerce/shipping-fields.php:8 msgid "Company Name" msgstr "Название компании" #: pb-add-on-woocommerce/billing-fields.php:9 #: pb-add-on-woocommerce/shipping-fields.php:9 msgid "Address" msgstr "Адрес" #: pb-add-on-woocommerce/billing-fields.php:5 #: pb-add-on-woocommerce/shipping-fields.php:5 msgid "Country" msgstr "Страна" #: pb-add-on-woocommerce/billing-fields.php:11 #: pb-add-on-woocommerce/shipping-fields.php:11 msgid "Town / City" msgstr "Город" #: pb-add-on-woocommerce/billing-fields.php:12 #: pb-add-on-woocommerce/shipping-fields.php:12 msgid "State / County" msgstr "Регион" #: pb-add-on-woocommerce/billing-fields.php:13 #: pb-add-on-woocommerce/shipping-fields.php:13 msgid "Postcode / Zip" msgstr "Индекс" #: pb-add-on-woocommerce/billing-fields.php:14 msgid "Email Address" msgstr "e-mail" #: pb-add-on-woocommerce/billing-fields.php:15 msgid "Phone" msgstr "Телефон" #: pb-add-on-woocommerce/billing-fields.php:278 msgid "Ship to a different address?" msgstr "Доставить на другой адрес?" #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437 msgid "Billing Address" msgstr "Платёжный адрес" #: pb-add-on-woocommerce/index.php:169 msgid "Displays customer billing fields in front-end. " msgstr "Отображать платёжные поля покупателю" #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438 msgid "Shipping Address" msgstr "Адрес доставки" #: pb-add-on-woocommerce/index.php:173 msgid "Displays customer shipping fields in front-end. " msgstr "Отображать поля доставки покупателю" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Display on WooCommerce Checkout" msgstr "Отображать на странице оплаты WooCommerce" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Whether the field should be added to the WooCommerce checkout form or not" msgstr "Должно ли поле быть добавлено в форме оформления заказа WooCommerce или нет" #: pb-add-on-woocommerce/index.php:541 msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!" msgstr "WooCommerce должен быть установлен и активирован для работы Profile Builder - WooCommerce Sync Add-on" #: pb-add-on-woocommerce/woosync-page.php:23 #: pb-add-on-woocommerce/woosync-page.php:70 msgid "WooCommerce Sync" msgstr "WooCommerce Sync" #: pb-add-on-woocommerce/woosync-page.php:76 msgid "Choose Register form to display on My Account page:" msgstr "Выберите форму регистрации для отображении на странице \"Мой аккаунт\":" #: pb-add-on-woocommerce/woosync-page.php:81 msgid "Default Register" msgstr "Регистрация по умолчанию" #: pb-add-on-woocommerce/woosync-page.php:103 msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce.
            This will also add the Profile Builder Login form to MyAccount page." msgstr "Выберите, какая регистрационная форма Profile Builder будет отображаться на странице \"Мой аккаунт\" WooCommerce.
            Это также добавит форму входа Profile Builder на страницу \"Мой аккаунт\"." #: pb-add-on-woocommerce/woosync-page.php:110 msgid "Choose Edit Profile form to display on My Account page:" msgstr "Выберите форму редактирования профиля для отображения на странице \"Мой аккаунт\":" #: pb-add-on-woocommerce/woosync-page.php:115 msgid "Default Edit Profile" msgstr "Редактирование профиля по умолчанию" #: pb-add-on-woocommerce/woosync-page.php:137 msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce." msgstr "Выберите, какая форма редактирования профиля Profile Builder будет отображаться на странице \"Мой аккаунт\" WooCommerce" #: profile-builder-2.0/admin/add-ons.php:190 msgid "Recommended Plugins" msgstr "Рекомендованные плагины" #: profile-builder-2.0/admin/add-ons.php:219 #: profile-builder-2.0/admin/pms-cross-promotion.php:102 msgid "Free" msgstr "Бесплатно" #: profile-builder-2.0/admin/add-ons.php:221 msgid "Accept user payments, create subscription plans and restrict content on your membership site." msgstr "Принимайте платежи пользователей, создавайте планы подписок и ограничивайте контент на вашем сайте." #: profile-builder-2.0/admin/add-ons.php:222 #: profile-builder-2.0/admin/pms-cross-promotion.php:105 msgid "More Details" msgstr "Больше деталей" #: profile-builder-2.0/admin/add-ons.php:240 #: profile-builder-2.0/admin/pms-cross-promotion.php:88 #: profile-builder-2.0/admin/pms-cross-promotion.php:123 #: profile-builder-2.0/admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "Плагин неактивен" #: profile-builder-2.0/admin/add-ons.php:242 #: profile-builder-2.0/admin/pms-cross-promotion.php:87 #: profile-builder-2.0/admin/pms-cross-promotion.php:125 #: profile-builder-2.0/admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "Плагинактивен" #: profile-builder-2.0/admin/add-ons.php:256 #: profile-builder-2.0/admin/pms-cross-promotion.php:146 msgid "Could not install plugin. Retry or install manually." msgstr "Невозможно установить плагин. Попробуйте еще раз или установите вручную." #: profile-builder-2.0/admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "Платные аккаунты" #: profile-builder-2.0/admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "Paid Member Subscriptions - бесплатный плагин WordPress" #: profile-builder-2.0/admin/pms-cross-promotion.php:37 msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." msgstr "С новыми полями подписки в Profile Builder ваши регистрационные формы позволят пользователям подписываться на платные аккаунты." #: profile-builder-2.0/admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "Платные и бесплатные подписки" #: profile-builder-2.0/admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "Ограничить контент" #: profile-builder-2.0/admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "Управление членами" #: profile-builder-2.0/admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "Шаблоны e-mail" #: profile-builder-2.0/admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "Управление аккаунтами" #: profile-builder-2.0/admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "Управление подписками" #: profile-builder-2.0/admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "Управление платежами" #: profile-builder-2.0/admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "Плагин активен" #: profile-builder-2.0/admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "Плагин активирован" #: profile-builder-2.0/admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "Плагин деактивирован" #: profile-builder-2.0/admin/pms-cross-promotion.php:104 msgid "Accept user payments, create subscription plans and restrict content on your website." msgstr "Принимайте платежи пользователей, создавайте планы подписок и ограничивайте содержимое на вашем сайте." #: profile-builder-2.0/admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "Быстрая пошаговая настройка" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401 msgid "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login." msgstr "Чтобы активировать вашего пользователя, нажмите на ссылку:

            %s%s%s

            После активации вы получите еще ​​*другой email* с вашим логином ." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45 msgid "After Login" msgstr "После входа" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46 msgid "After Logout" msgstr "После выхода" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47 msgid "After Registration" msgstr "После регистрации" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48 msgid "After Edit Profile" msgstr "После редактирования профиля" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Successful Email Confirmation" msgstr "После успешного подтверждения Email" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Successful Password Reset" msgstr "После успешного сброса пароля" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "Консоль (перенаправление пользователей от доступа к консоли)" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55 msgid "User ID" msgstr "ID пользователя" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61 msgid "User ID or Username" msgstr "ID или имя пользователя" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "User ID / Username" msgstr "ID пользователя / Имя полтзователя" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "Please select and enter the ID or username of your user." msgstr "Пожалуйста, выберите и введите ID или имя вашего пользователя" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131 msgid "Redirect Type" msgstr "Тип редиректа" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Redirect URL" msgstr "URL редиректа" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" msgstr "Может содержать следующие динамические тэги:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241 msgid "Individual User Redirects" msgstr "Индивидуальные редиректы пользователя" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84 msgid "... Choose" msgstr "... Выбрать" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 msgid "Select a user role." msgstr "Выбрать роль пользователя" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242 msgid "User Role based Redirects" msgstr "Редиректы, основанные на роли пользователя" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243 msgid "Global Redirects" msgstr "Глобальные редиректы" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133 msgid "Login ( wp_login.php )" msgstr "Логин ( wp_login.php )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134 msgid "Register ( wp-login.php?action=register )" msgstr "Зарегистрироваться ( wp-login.php?action=register )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "Забыли пароль ( wp-login.php?action=lostpassword )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "Архив автора ( http://sitename.com/author/admin )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145 msgid "Redirect Default WordPress Forms and Pages" msgstr "Перенаправление со стандартных форм и страниц Wordpress" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157 msgid "How does this work?" msgstr "Как это работает?" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "
            ID / имя пользователя
            Перенаправление
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 msgid "
            User Role
            Redirect
            URL
            " msgstr "
            Роль пользователя
            Перенаправление
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "
            Redirect
            URL
            " msgstr "
            Перенаправление
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236 msgid "These redirects happen after a successful action, like registration or after a successful login." msgstr "Эти перенаправления происходят после успешного действия вроде регистрации или успешного входа" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238 msgid "Which redirect happens depends on the following priority:" msgstr "Какое перенаправление происходит, зависит от следующего приоритета:" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247 msgid "Redirect Default WordPress forms and pages" msgstr "Перенаправление стандартных форм и страниц WordPress" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248 msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder." msgstr "С этим вы сможете перенаправлять различные формы и страницы WordPress на страницы, созданные в Profile Builder." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250 msgid "Available tags for dynamic URLs" msgstr "Доступные тэги для динамических адресов" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251 msgid "You use the following tags in your URLs to redirect users to various pages." msgstr "Вы используете следующие тэги в ваших адресах для перенаправления пользователей на различные страницы. " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253 msgid "generates a url of the current website homepage." msgstr "генерирует URL текущей главной страницы сайта." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254 msgid "in WordPress the site url can be different then the home url" msgstr "в WordPress URL сайта может отличаться от URL главной страницы" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255 msgid "the ID of the user" msgstr "ID пользоваткля" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256 msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." msgstr "обработанная для URL версия имени пользователя, никнейм может быть безопасно использован в URL-адресах, поскольку он не может содержать специальные символы или пробелы." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257 msgid "the URL of the previously visited page" msgstr "URL предыдущей посещенной страницы" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352 msgid "You can't add duplicate redirects!" msgstr "Вы не можете добавлять дублирующиеся редиректы!" #: profile-builder-2.0/admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "Ваше имя отображается только на странице Изменить профиль!" #: profile-builder-2.0/admin/basic-info.php:37 msgid "Friction-less login using %s shortcode or a widget." msgstr "Форма входа в один клик, использующая шорткод %s или виджет." #: profile-builder-2.0/admin/basic-info.php:41 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "Красивые регистрационные формы, полностью настраиваемые с помощью шорткода %s." #: profile-builder-2.0/admin/basic-info.php:45 msgid "Straight forward edit profile forms using %s shortcode." msgstr "Прямые формы редактирования профиля с помощью шорткода %s." #: profile-builder-2.0/admin/basic-info.php:58 msgid "Allow users to recover their password in the front-end using the %s." msgstr "Разрешить пользователям восстанавливать пароль во внешнем интерфейсе, используя %s." #: profile-builder-2.0/admin/basic-info.php:140 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." msgstr "Для создания страницы, содержащей пользователей, зарегистрированных на текущем сайте/блоге, вставьте следующий шорткод на странице по вашему выбору: %s." #: profile-builder-2.0/admin/general-settings.php:115 msgid "\"Admin Approval\" on User Role:" msgstr "\"Одобрение администратором\" в ролях пользователей:" #: profile-builder-2.0/admin/general-settings.php:134 msgid "Select on what user roles to activate Admin Approval." msgstr "Выберите, для каких ролей активировать одобрение администратором." #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Display on PB forms" msgstr "Отображать на формах PB" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Login" msgstr "Форма входа PB" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Register" msgstr "Форма регистрации PB" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Recover Password" msgstr "Форма восстановления пароля PB" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "Выберите, на каких формах Profile Builder отображать reCAPTCHA" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Display on default WP forms" msgstr "Отображать на стандартных формах WP" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Login" msgstr "Стандартная форма входа WP" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Register" msgstr "Стандартная форма регистрации WP" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Recover Password" msgstr "Стандартная форма восстановления пароля WP" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "Выберите, на каких стандартных формах WP отображать reCAPTCHA" #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default option of the field" msgstr "Значение поля по умолчанию" #: profile-builder-2.0/admin/manage-fields.php:282 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Afghanistan" msgstr "Афганистан" #: profile-builder-2.0/admin/manage-fields.php:283 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aland Islands" msgstr "Аландские острова" #: profile-builder-2.0/admin/manage-fields.php:284 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Albania" msgstr "Албания" #: profile-builder-2.0/admin/manage-fields.php:285 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Algeria" msgstr "Алжир" #: profile-builder-2.0/admin/manage-fields.php:286 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "American Samoa" msgstr "Американское Самоа" #: profile-builder-2.0/admin/manage-fields.php:287 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Andorra" msgstr "Андорра" #: profile-builder-2.0/admin/manage-fields.php:288 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Angola" msgstr "Ангола" #: profile-builder-2.0/admin/manage-fields.php:289 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Anguilla" msgstr "Ангилья" #: profile-builder-2.0/admin/manage-fields.php:290 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antarctica" msgstr "Антарктида" #: profile-builder-2.0/admin/manage-fields.php:291 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antigua and Barbuda" msgstr "Антигуа и Барбуда" #: profile-builder-2.0/admin/manage-fields.php:292 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Argentina" msgstr "Аргентина" #: profile-builder-2.0/admin/manage-fields.php:293 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Armenia" msgstr "Армения" #: profile-builder-2.0/admin/manage-fields.php:294 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aruba" msgstr "Аруба" #: profile-builder-2.0/admin/manage-fields.php:295 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Australia" msgstr "Австралия" #: profile-builder-2.0/admin/manage-fields.php:296 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Austria" msgstr "Австрия" #: profile-builder-2.0/admin/manage-fields.php:297 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Azerbaijan" msgstr "Азербайджан" #: profile-builder-2.0/admin/manage-fields.php:298 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahamas" msgstr "Багамские острова" #: profile-builder-2.0/admin/manage-fields.php:299 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahrain" msgstr "Бахрейн" #: profile-builder-2.0/admin/manage-fields.php:300 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bangladesh" msgstr "Бангладеш" #: profile-builder-2.0/admin/manage-fields.php:301 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Barbados" msgstr "Барбадос" #: profile-builder-2.0/admin/manage-fields.php:302 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belarus" msgstr "Белоруссия" #: profile-builder-2.0/admin/manage-fields.php:303 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belgium" msgstr "Бельгия" #: profile-builder-2.0/admin/manage-fields.php:304 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belize" msgstr "Белиз" #: profile-builder-2.0/admin/manage-fields.php:305 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Benin" msgstr "Бенин" #: profile-builder-2.0/admin/manage-fields.php:306 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bermuda" msgstr "Бермудские острова" #: profile-builder-2.0/admin/manage-fields.php:307 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bhutan" msgstr "Бутан" #: profile-builder-2.0/admin/manage-fields.php:308 msgid "Bolivia" msgstr "Боливия" #: profile-builder-2.0/admin/manage-fields.php:309 msgid "Bonaire, Saint Eustatius and Saba" msgstr "Бонэйр, Синт-Эстатиус и Саба" #: profile-builder-2.0/admin/manage-fields.php:310 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bosnia and Herzegovina" msgstr "Босния и Герцеговина" #: profile-builder-2.0/admin/manage-fields.php:311 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Botswana" msgstr "Ботсвана" #: profile-builder-2.0/admin/manage-fields.php:312 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bouvet Island" msgstr "Остров Буве" #: profile-builder-2.0/admin/manage-fields.php:313 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brazil" msgstr "Бразилия" #: profile-builder-2.0/admin/manage-fields.php:314 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "British Indian Ocean Territory" msgstr "Британская Территория в Индийском Океане" #: profile-builder-2.0/admin/manage-fields.php:315 msgid "British Virgin Islands" msgstr "Британские Виргинские Острова" #: profile-builder-2.0/admin/manage-fields.php:316 msgid "Brunei" msgstr "Бруней" #: profile-builder-2.0/admin/manage-fields.php:317 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bulgaria" msgstr "Болгария" #: profile-builder-2.0/admin/manage-fields.php:318 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burkina Faso" msgstr "Буркина-Фасо" #: profile-builder-2.0/admin/manage-fields.php:319 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burundi" msgstr "Бурунди" #: profile-builder-2.0/admin/manage-fields.php:320 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cambodia" msgstr "Камбоджа" #: profile-builder-2.0/admin/manage-fields.php:321 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cameroon" msgstr "Камерун" #: profile-builder-2.0/admin/manage-fields.php:322 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Canada" msgstr "Канада" #: profile-builder-2.0/admin/manage-fields.php:323 msgid "Cape Verde" msgstr "Кабо-Верде" #: profile-builder-2.0/admin/manage-fields.php:324 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cayman Islands" msgstr "Острова Кайман" #: profile-builder-2.0/admin/manage-fields.php:325 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Central African Republic" msgstr "Центральноафриканская Республика" #: profile-builder-2.0/admin/manage-fields.php:326 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chad" msgstr "Чад" #: profile-builder-2.0/admin/manage-fields.php:327 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chile" msgstr "Чили" #: profile-builder-2.0/admin/manage-fields.php:328 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "China" msgstr "Китай" #: profile-builder-2.0/admin/manage-fields.php:329 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Christmas Island" msgstr "Остров Рождества" #: profile-builder-2.0/admin/manage-fields.php:330 msgid "Cocos Islands" msgstr "Кокос" #: profile-builder-2.0/admin/manage-fields.php:331 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Colombia" msgstr "Колумбия" #: profile-builder-2.0/admin/manage-fields.php:332 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Comoros" msgstr "Коморы" #: profile-builder-2.0/admin/manage-fields.php:333 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cook Islands" msgstr "Острова Кука" #: profile-builder-2.0/admin/manage-fields.php:334 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Costa Rica" msgstr "Коста-Рика" #: profile-builder-2.0/admin/manage-fields.php:335 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Croatia" msgstr "Хорватия" #: profile-builder-2.0/admin/manage-fields.php:336 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cuba" msgstr "Куба" #: profile-builder-2.0/admin/manage-fields.php:337 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Curacao" msgstr "Кюрасао" #: profile-builder-2.0/admin/manage-fields.php:338 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cyprus" msgstr "Кипр" #: profile-builder-2.0/admin/manage-fields.php:339 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Czech Republic" msgstr "Чехия" #: profile-builder-2.0/admin/manage-fields.php:340 msgid "Democratic Republic of the Congo" msgstr "Демократическая Республика Конго" #: profile-builder-2.0/admin/manage-fields.php:341 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Denmark" msgstr "Дания" #: profile-builder-2.0/admin/manage-fields.php:342 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Djibouti" msgstr "Джибути" #: profile-builder-2.0/admin/manage-fields.php:343 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominica" msgstr "Доминика" #: profile-builder-2.0/admin/manage-fields.php:344 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominican Republic" msgstr "Доминиканская республика" #: profile-builder-2.0/admin/manage-fields.php:345 msgid "East Timor" msgstr "Восточный Тимор" #: profile-builder-2.0/admin/manage-fields.php:346 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ecuador" msgstr "Эквадор" #: profile-builder-2.0/admin/manage-fields.php:347 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Egypt" msgstr "Египет" #: profile-builder-2.0/admin/manage-fields.php:348 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "El Salvador" msgstr "Сальвадор" #: profile-builder-2.0/admin/manage-fields.php:349 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Equatorial Guinea" msgstr "Экваториальная Гвинея" #: profile-builder-2.0/admin/manage-fields.php:350 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Eritrea" msgstr "Эритрея" #: profile-builder-2.0/admin/manage-fields.php:351 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Estonia" msgstr "Эстония" #: profile-builder-2.0/admin/manage-fields.php:352 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ethiopia" msgstr "Эфиопия" #: profile-builder-2.0/admin/manage-fields.php:353 msgid "Falkland Islands" msgstr "Фолклендские Острова" #: profile-builder-2.0/admin/manage-fields.php:354 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Faroe Islands" msgstr "Фарерские острова" #: profile-builder-2.0/admin/manage-fields.php:355 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Fiji" msgstr "Филжи" #: profile-builder-2.0/admin/manage-fields.php:356 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Finland" msgstr "Финляндия" #: profile-builder-2.0/admin/manage-fields.php:357 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "France" msgstr "Франция" #: profile-builder-2.0/admin/manage-fields.php:358 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Guiana" msgstr "Гвиана" #: profile-builder-2.0/admin/manage-fields.php:359 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Polynesia" msgstr "Французская Полинезия" #: profile-builder-2.0/admin/manage-fields.php:360 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Southern Territories" msgstr "Французские Южные и Антарктические территории" #: profile-builder-2.0/admin/manage-fields.php:361 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gabon" msgstr "Габон" #: profile-builder-2.0/admin/manage-fields.php:362 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gambia" msgstr "Гамбия" #: profile-builder-2.0/admin/manage-fields.php:363 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Georgia" msgstr "Грузия" #: profile-builder-2.0/admin/manage-fields.php:364 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Germany" msgstr "Германия" #: profile-builder-2.0/admin/manage-fields.php:365 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ghana" msgstr "Гана" #: profile-builder-2.0/admin/manage-fields.php:366 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gibraltar" msgstr "Гибралтар" #: profile-builder-2.0/admin/manage-fields.php:367 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greece" msgstr "Греция" #: profile-builder-2.0/admin/manage-fields.php:368 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greenland" msgstr "Гренландия" #: profile-builder-2.0/admin/manage-fields.php:369 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Grenada" msgstr "Гренада" #: profile-builder-2.0/admin/manage-fields.php:370 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guadeloupe" msgstr "Гваделупа" #: profile-builder-2.0/admin/manage-fields.php:371 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guam" msgstr "Гуам" #: profile-builder-2.0/admin/manage-fields.php:372 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guatemala" msgstr "Гватемала" #: profile-builder-2.0/admin/manage-fields.php:373 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guernsey" msgstr "Гернси" #: profile-builder-2.0/admin/manage-fields.php:374 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea" msgstr "Гвинея" #: profile-builder-2.0/admin/manage-fields.php:375 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea-Bissau" msgstr "Гвинея-Бисау" #: profile-builder-2.0/admin/manage-fields.php:376 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guyana" msgstr "Гайана" #: profile-builder-2.0/admin/manage-fields.php:377 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Haiti" msgstr "Гаити" #: profile-builder-2.0/admin/manage-fields.php:378 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Heard Island and McDonald Islands" msgstr "Остров Херд и острова Макдональд" #: profile-builder-2.0/admin/manage-fields.php:379 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Honduras" msgstr "Гондурас" #: profile-builder-2.0/admin/manage-fields.php:380 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hong Kong" msgstr "Гонконг" #: profile-builder-2.0/admin/manage-fields.php:381 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hungary" msgstr "Венгрия" #: profile-builder-2.0/admin/manage-fields.php:382 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iceland" msgstr "Исландия" #: profile-builder-2.0/admin/manage-fields.php:383 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "India" msgstr "Индия" #: profile-builder-2.0/admin/manage-fields.php:384 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Indonesia" msgstr "Индонезия" #: profile-builder-2.0/admin/manage-fields.php:385 msgid "Iran" msgstr "Иран" #: profile-builder-2.0/admin/manage-fields.php:386 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iraq" msgstr "Ирак" #: profile-builder-2.0/admin/manage-fields.php:387 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ireland" msgstr "Ирландия" #: profile-builder-2.0/admin/manage-fields.php:388 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Isle of Man" msgstr "Остров Мэн" #: profile-builder-2.0/admin/manage-fields.php:389 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Israel" msgstr "Израиль" #: profile-builder-2.0/admin/manage-fields.php:390 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Italy" msgstr "Италия" #: profile-builder-2.0/admin/manage-fields.php:391 msgid "Ivory Coast" msgstr "Кот-д’Ивуар" #: profile-builder-2.0/admin/manage-fields.php:392 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jamaica" msgstr "Ямайка" #: profile-builder-2.0/admin/manage-fields.php:393 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Japan" msgstr "Япония" #: profile-builder-2.0/admin/manage-fields.php:394 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jersey" msgstr "Джерси" #: profile-builder-2.0/admin/manage-fields.php:395 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jordan" msgstr "Иордания" #: profile-builder-2.0/admin/manage-fields.php:396 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kazakhstan" msgstr "Казахстан" #: profile-builder-2.0/admin/manage-fields.php:397 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kenya" msgstr "Кения" #: profile-builder-2.0/admin/manage-fields.php:398 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kiribati" msgstr "Кирибати" #: profile-builder-2.0/admin/manage-fields.php:399 msgid "Kosovo" msgstr "Косово" #: profile-builder-2.0/admin/manage-fields.php:400 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kuwait" msgstr "Кувейт" #: profile-builder-2.0/admin/manage-fields.php:401 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kyrgyzstan" msgstr "Кыргызстан" #: profile-builder-2.0/admin/manage-fields.php:402 msgid "Laos" msgstr "Лаос" #: profile-builder-2.0/admin/manage-fields.php:403 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Latvia" msgstr "Латвия" #: profile-builder-2.0/admin/manage-fields.php:404 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lebanon" msgstr "Ливан" #: profile-builder-2.0/admin/manage-fields.php:405 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lesotho" msgstr "Лесото" #: profile-builder-2.0/admin/manage-fields.php:406 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liberia" msgstr "Либерия" #: profile-builder-2.0/admin/manage-fields.php:407 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Libya" msgstr "Ливия" #: profile-builder-2.0/admin/manage-fields.php:408 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liechtenstein" msgstr "Лихтенштейн" #: profile-builder-2.0/admin/manage-fields.php:409 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lithuania" msgstr "Литва" #: profile-builder-2.0/admin/manage-fields.php:410 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Luxembourg" msgstr "Люксембург" #: profile-builder-2.0/admin/manage-fields.php:411 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macao" msgstr "Макао" #: profile-builder-2.0/admin/manage-fields.php:412 msgid "Macedonia" msgstr "Македония" #: profile-builder-2.0/admin/manage-fields.php:413 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Madagascar" msgstr "Мадагаскар" #: profile-builder-2.0/admin/manage-fields.php:414 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malawi" msgstr "Малави" #: profile-builder-2.0/admin/manage-fields.php:415 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malaysia" msgstr "Малайзия" #: profile-builder-2.0/admin/manage-fields.php:416 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Maldives" msgstr "Мальдивы" #: profile-builder-2.0/admin/manage-fields.php:417 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mali" msgstr "Мали" #: profile-builder-2.0/admin/manage-fields.php:418 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malta" msgstr "Мальта" #: profile-builder-2.0/admin/manage-fields.php:419 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Marshall Islands" msgstr "Маршалловы острова" #: profile-builder-2.0/admin/manage-fields.php:420 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Martinique" msgstr "Мартиника" #: profile-builder-2.0/admin/manage-fields.php:421 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritania" msgstr "Мавритания" #: profile-builder-2.0/admin/manage-fields.php:422 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritius" msgstr "Маврикий" #: profile-builder-2.0/admin/manage-fields.php:423 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mayotte" msgstr "Маойтта" #: profile-builder-2.0/admin/manage-fields.php:424 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mexico" msgstr "Мексика" #: profile-builder-2.0/admin/manage-fields.php:425 msgid "Micronesia" msgstr "Микронезия" #: profile-builder-2.0/admin/manage-fields.php:426 msgid "Moldova" msgstr "Молдавия" #: profile-builder-2.0/admin/manage-fields.php:427 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Monaco" msgstr "Монако" #: profile-builder-2.0/admin/manage-fields.php:428 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mongolia" msgstr "Монголия" #: profile-builder-2.0/admin/manage-fields.php:429 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montenegro" msgstr "Черногория" #: profile-builder-2.0/admin/manage-fields.php:430 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montserrat" msgstr "Монтсеррат" #: profile-builder-2.0/admin/manage-fields.php:431 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Morocco" msgstr "Марокко" #: profile-builder-2.0/admin/manage-fields.php:432 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mozambique" msgstr "Мозамбик" #: profile-builder-2.0/admin/manage-fields.php:433 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Myanmar" msgstr "Мьянма" #: profile-builder-2.0/admin/manage-fields.php:434 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Namibia" msgstr "Намибия" #: profile-builder-2.0/admin/manage-fields.php:435 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nauru" msgstr "Науру" #: profile-builder-2.0/admin/manage-fields.php:436 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nepal" msgstr "Непал" #: profile-builder-2.0/admin/manage-fields.php:437 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Netherlands" msgstr "Нидерланды" #: profile-builder-2.0/admin/manage-fields.php:438 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Caledonia" msgstr "Новая Каледония" #: profile-builder-2.0/admin/manage-fields.php:439 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Zealand" msgstr "Новая Зеландия" #: profile-builder-2.0/admin/manage-fields.php:440 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nicaragua" msgstr "Никарагуа" #: profile-builder-2.0/admin/manage-fields.php:441 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niger" msgstr "Нигер" #: profile-builder-2.0/admin/manage-fields.php:442 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nigeria" msgstr "Нигерия" #: profile-builder-2.0/admin/manage-fields.php:443 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niue" msgstr "Ниуэ" #: profile-builder-2.0/admin/manage-fields.php:444 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norfolk Island" msgstr "Норфолк" #: profile-builder-2.0/admin/manage-fields.php:445 msgid "North Korea" msgstr "Северная Корея" #: profile-builder-2.0/admin/manage-fields.php:446 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Northern Mariana Islands" msgstr "Северные Марианские Острова" #: profile-builder-2.0/admin/manage-fields.php:447 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norway" msgstr "Норвегия" #: profile-builder-2.0/admin/manage-fields.php:448 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Oman" msgstr "Оман" #: profile-builder-2.0/admin/manage-fields.php:449 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pakistan" msgstr "Пакистан" #: profile-builder-2.0/admin/manage-fields.php:450 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palau" msgstr "Палау" #: profile-builder-2.0/admin/manage-fields.php:451 msgid "Palestinian Territory" msgstr "Палестина" #: profile-builder-2.0/admin/manage-fields.php:452 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Panama" msgstr "Панама" #: profile-builder-2.0/admin/manage-fields.php:453 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Papua New Guinea" msgstr "Папуа-Новая Гвинея" #: profile-builder-2.0/admin/manage-fields.php:454 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Paraguay" msgstr "Парагвай" #: profile-builder-2.0/admin/manage-fields.php:455 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Peru" msgstr "Перу" #: profile-builder-2.0/admin/manage-fields.php:456 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Philippines" msgstr "Филиппины" #: profile-builder-2.0/admin/manage-fields.php:457 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pitcairn" msgstr "Острова Питкэрн" #: profile-builder-2.0/admin/manage-fields.php:458 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Poland" msgstr "Польша" #: profile-builder-2.0/admin/manage-fields.php:459 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Portugal" msgstr "Португалия" #: profile-builder-2.0/admin/manage-fields.php:460 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Puerto Rico" msgstr "Пуэрто-Рико" #: profile-builder-2.0/admin/manage-fields.php:461 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Qatar" msgstr "Катар" #: profile-builder-2.0/admin/manage-fields.php:462 msgid "Republic of the Congo" msgstr "Республика Конго" #: profile-builder-2.0/admin/manage-fields.php:463 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Reunion" msgstr "Реюньон" #: profile-builder-2.0/admin/manage-fields.php:464 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Romania" msgstr "Румыния" #: profile-builder-2.0/admin/manage-fields.php:465 msgid "Russia" msgstr "Россия" #: profile-builder-2.0/admin/manage-fields.php:466 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Rwanda" msgstr "Руанда" #: profile-builder-2.0/admin/manage-fields.php:467 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Barthelemy" msgstr "Сен-Бартелеми" #: profile-builder-2.0/admin/manage-fields.php:468 msgid "Saint Helena" msgstr "Остров Св. Елены" #: profile-builder-2.0/admin/manage-fields.php:469 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Kitts and Nevis" msgstr "Сент-Китс и Невис" #: profile-builder-2.0/admin/manage-fields.php:470 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Lucia" msgstr "Сент-Люсия" #: profile-builder-2.0/admin/manage-fields.php:471 msgid "Saint Martin" msgstr "Сен-Мартен" #: profile-builder-2.0/admin/manage-fields.php:472 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Pierre and Miquelon" msgstr "Сен-Пьер и Микелон" #: profile-builder-2.0/admin/manage-fields.php:473 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Vincent and the Grenadines" msgstr "Сент-Винсент и Гренадины" #: profile-builder-2.0/admin/manage-fields.php:474 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Samoa" msgstr "Самоа" #: profile-builder-2.0/admin/manage-fields.php:475 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "San Marino" msgstr "Сан-Марино" #: profile-builder-2.0/admin/manage-fields.php:476 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sao Tome and Principe" msgstr "Сан-Томе и Принсипи" #: profile-builder-2.0/admin/manage-fields.php:477 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saudi Arabia" msgstr "Саудовская Аравия" #: profile-builder-2.0/admin/manage-fields.php:478 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Senegal" msgstr "Сенегал" #: profile-builder-2.0/admin/manage-fields.php:479 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Serbia" msgstr "Сербия" #: profile-builder-2.0/admin/manage-fields.php:480 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Seychelles" msgstr "Сейшельские Острова" #: profile-builder-2.0/admin/manage-fields.php:481 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sierra Leone" msgstr "Сьерра-Леоне" #: profile-builder-2.0/admin/manage-fields.php:482 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Singapore" msgstr "Сингапур" #: profile-builder-2.0/admin/manage-fields.php:483 msgid "Sint Maarten" msgstr "Сен-Мартен" #: profile-builder-2.0/admin/manage-fields.php:484 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovakia" msgstr "Словакия" #: profile-builder-2.0/admin/manage-fields.php:485 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovenia" msgstr "Словения" #: profile-builder-2.0/admin/manage-fields.php:486 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Solomon Islands" msgstr "Соломоновы острова" #: profile-builder-2.0/admin/manage-fields.php:487 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Somalia" msgstr "Сомали" #: profile-builder-2.0/admin/manage-fields.php:488 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Africa" msgstr "ЮАР" #: profile-builder-2.0/admin/manage-fields.php:489 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Georgia and the South Sandwich Islands" msgstr "Южная Георгия и Южные Сандвичевы Острова" #: profile-builder-2.0/admin/manage-fields.php:490 msgid "South Korea" msgstr "Южная Корея" #: profile-builder-2.0/admin/manage-fields.php:491 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Sudan" msgstr "Южный Судан" #: profile-builder-2.0/admin/manage-fields.php:492 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Spain" msgstr "Испания" #: profile-builder-2.0/admin/manage-fields.php:493 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sri Lanka" msgstr "Шри-Ланка" #: profile-builder-2.0/admin/manage-fields.php:494 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sudan" msgstr "Судан" #: profile-builder-2.0/admin/manage-fields.php:495 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Suriname" msgstr "Суринам" #: profile-builder-2.0/admin/manage-fields.php:496 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Svalbard and Jan Mayen" msgstr "Шпицберген и Ян-Майен " #: profile-builder-2.0/admin/manage-fields.php:497 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Swaziland" msgstr "Свазиленд" #: profile-builder-2.0/admin/manage-fields.php:498 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sweden" msgstr "Швеция" #: profile-builder-2.0/admin/manage-fields.php:499 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Switzerland" msgstr "Швейцария" #: profile-builder-2.0/admin/manage-fields.php:500 msgid "Syria" msgstr "Сирия" #: profile-builder-2.0/admin/manage-fields.php:501 msgid "Taiwan" msgstr "Тайвань" #: profile-builder-2.0/admin/manage-fields.php:502 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tajikistan" msgstr "Таджикистан" #: profile-builder-2.0/admin/manage-fields.php:503 msgid "Tanzania" msgstr "Танзания" #: profile-builder-2.0/admin/manage-fields.php:504 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Thailand" msgstr "Тайланд" #: profile-builder-2.0/admin/manage-fields.php:505 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Togo" msgstr "Того" #: profile-builder-2.0/admin/manage-fields.php:506 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tokelau" msgstr "Токелау" #: profile-builder-2.0/admin/manage-fields.php:507 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tonga" msgstr "Тонга" #: profile-builder-2.0/admin/manage-fields.php:508 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Trinidad and Tobago" msgstr "Тринидад и Тобаго" #: profile-builder-2.0/admin/manage-fields.php:509 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tunisia" msgstr "Тунис" #: profile-builder-2.0/admin/manage-fields.php:510 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkey" msgstr "Турция" #: profile-builder-2.0/admin/manage-fields.php:511 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkmenistan" msgstr "Туркменистан" #: profile-builder-2.0/admin/manage-fields.php:512 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turks and Caicos Islands" msgstr "Теркс и Кайкос" #: profile-builder-2.0/admin/manage-fields.php:513 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tuvalu" msgstr "Тувалу" #: profile-builder-2.0/admin/manage-fields.php:514 msgid "U.S. Virgin Islands" msgstr "Виргинские Острова" #: profile-builder-2.0/admin/manage-fields.php:515 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uganda" msgstr "Уганда" #: profile-builder-2.0/admin/manage-fields.php:516 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ukraine" msgstr "Украина" #: profile-builder-2.0/admin/manage-fields.php:517 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Arab Emirates" msgstr "Объединенные Арабские Эмираты" #: profile-builder-2.0/admin/manage-fields.php:518 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Kingdom" msgstr "Великобритания" #: profile-builder-2.0/admin/manage-fields.php:519 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States" msgstr "США" #: profile-builder-2.0/admin/manage-fields.php:520 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States Minor Outlying Islands" msgstr "Внешние малые острова США" #: profile-builder-2.0/admin/manage-fields.php:521 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uruguay" msgstr "Уругвай" #: profile-builder-2.0/admin/manage-fields.php:522 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uzbekistan" msgstr "Узбекистан" #: profile-builder-2.0/admin/manage-fields.php:523 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Vanuatu" msgstr "Вануату" #: profile-builder-2.0/admin/manage-fields.php:524 msgid "Vatican" msgstr "Ватикан" #: profile-builder-2.0/admin/manage-fields.php:525 msgid "Venezuela" msgstr "Венесуэла" #: profile-builder-2.0/admin/manage-fields.php:526 msgid "Vietnam" msgstr "Вьетнам" #: profile-builder-2.0/admin/manage-fields.php:527 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Wallis and Futuna" msgstr "Уоллис и Футуна" #: profile-builder-2.0/admin/manage-fields.php:528 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Western Sahara" msgstr "Западная Сахара" #: profile-builder-2.0/admin/manage-fields.php:529 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Yemen" msgstr "Йемен" #: profile-builder-2.0/admin/manage-fields.php:530 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zambia" msgstr "Замбия" #: profile-builder-2.0/admin/manage-fields.php:531 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zimbabwe" msgstr "Зимбабве" #: profile-builder-2.0/admin/manage-fields.php:1219 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." msgstr "С Profile Builder Pro v2 вы можете отображать различные поля в формах регистрации и редактирования профиля, используя модуль \"Формы множественной регистрации и редактирования профиля\"." #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237 msgid "Your account has to be confirmed by an administrator before you can log in." msgstr "Ваш аккаунт должен быть подтверждён администратором, прожде чем вы сможете войти." #: profile-builder-2.0/features/admin-approval/admin-approval.php:216 msgid "Your account has been successfully created!" msgstr "Ваш аккаунт был успешно создан!" #: profile-builder-2.0/features/functions.php:678 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458 msgid "Please enter a (valid) reCAPTCHA value" msgstr "Пожалуйста, введите (действительное) значение reCAPTCHA" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 msgid "Click the BACK button on your browser, and try again." msgstr "Нажмите кнопку \"Назад\" в вашем браузере, и попробуйте ещё раз." #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78 #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87 msgid "Sorry, you cannot upload this file type for this field." msgstr "Извините, вы не можете загружать файлы этого типа в этом поле." #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94 msgid "An error occurred, please try again later." msgstr "Произошла ошибка, попробуйте позднее." #: profile-builder-2.0/modules/user-listing/userlisting.php:282 msgid "More" msgstr "Больше" #: profile-builder-2.0/modules/user-listing/userlisting.php:376 msgid "You do not have permission to view this user list." msgstr "У вас нет полномочий для просмотра этого списка пользователей." #: profile-builder-2.0/modules/user-listing/userlisting.php:389 msgid "You do not have the required user role to view this user list." msgstr "У вас нет требуемой роли пользователя для просмотра этого списка пользователей." #: profile-builder-2.0/modules/user-listing/userlisting.php:2253 msgid "Ascending" msgstr "Повышение" #: profile-builder-2.0/modules/user-listing/userlisting.php:2254 msgid "Descending" msgstr "Понижение" #: profile-builder-2.0/admin/add-ons.php:148 #: profile-builder-2.0/admin/add-ons.php:248 #: profile-builder-2.0/admin/pms-cross-promotion.php:134 #: profile-builder-2.0/admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "Загрузить сейчас" #: profile-builder-2.0/admin/admin-functions.php:200 msgid "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. " msgstr "Если вам нравится использование, %1$s пожалуйста, rпоставьте нам оценку на WordPress.org. Больше счастливых пользователей - значит, больше фишек, меньше багов и лучшая поддержка для всех." #: profile-builder-2.0/admin/manage-fields.php:82 msgid "Choose one of the supported field types" msgstr "Выберите один их поддерживаемых типов полей" #: profile-builder-2.0/admin/manage-fields.php:84 msgid ". Extra Field Types are available in Hobbyist or PRO versions." msgstr ". Дополнительные типы полей доступны в Hobbyist или PRO версиях." #: profile-builder-2.0/admin/manage-fields.php:131 msgid "Site Key" msgstr "Ключ сайта" #: profile-builder-2.0/admin/manage-fields.php:131 msgid "The site key from Google, www.google.com/recaptcha" msgstr "Ключ сайта от Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "Secret Key" msgstr "Секретный ключ" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "The secret key from Google, www.google.com/recaptcha" msgstr "Секретный ключ от Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:1023 msgid "You must enter the site key\n" msgstr "Вы должны ввести ключ сайта\n" #: profile-builder-2.0/admin/manage-fields.php:1025 msgid "You must enter the secret key\n" msgstr "Вы должны ввести секретный ключ\n" #: profile-builder-2.0/admin/add-ons.php:10 #: profile-builder-2.0/admin/add-ons.php:32 msgid "Add-Ons" msgstr "Расширения" #: profile-builder-2.0/admin/add-ons.php:34 #: profile-builder-2.0/admin/add-ons.php:129 #: profile-builder-2.0/admin/add-ons.php:231 #: profile-builder-2.0/admin/pms-cross-promotion.php:78 #: profile-builder-2.0/admin/pms-cross-promotion.php:114 #: profile-builder-2.0/admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "Активировать" #: profile-builder-2.0/admin/add-ons.php:36 #: profile-builder-2.0/admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "Загружаем и устанавливаем..." #: profile-builder-2.0/admin/add-ons.php:37 #: profile-builder-2.0/admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "Установка завершена" #: profile-builder-2.0/admin/add-ons.php:39 msgid "Add-On is Active" msgstr "Расширение активно" #: profile-builder-2.0/admin/add-ons.php:40 msgid "Add-On has been activated" msgstr "Расширение активировано" #: profile-builder-2.0/admin/add-ons.php:41 #: profile-builder-2.0/admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "Повторите установку" #: profile-builder-2.0/admin/add-ons.php:43 #: profile-builder-2.0/admin/add-ons.php:140 msgid "Add-On is active" msgstr "Расширение активно" #: profile-builder-2.0/admin/add-ons.php:44 #: profile-builder-2.0/admin/add-ons.php:138 msgid "Add-On is inactive" msgstr "Расширение не активно" #: profile-builder-2.0/admin/add-ons.php:46 #: profile-builder-2.0/admin/add-ons.php:133 #: profile-builder-2.0/admin/add-ons.php:235 #: profile-builder-2.0/admin/pms-cross-promotion.php:90 #: profile-builder-2.0/admin/pms-cross-promotion.php:118 #: profile-builder-2.0/admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "Отключить" #: profile-builder-2.0/admin/add-ons.php:47 msgid "Add-On has been deactivated." msgstr "Расширение деактивировано" #: profile-builder-2.0/admin/add-ons.php:59 msgid "Something went wrong, we could not connect to the server. Please try again later." msgstr "Произошла ошибка, невозможно соединиться с сервером. Пожалуйста, повторите попытку чуть позже." #: profile-builder-2.0/admin/pms-cross-promotion.php:137 #: profile-builder-2.0/admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "Установить" #: profile-builder-2.0/admin/add-ons.php:153 #: profile-builder-2.0/admin/add-ons.php:251 #: profile-builder-2.0/admin/pms-cross-promotion.php:141 #: profile-builder-2.0/admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "Совместим с вашей версией Profile Builder" #: profile-builder-2.0/admin/add-ons.php:162 msgid "Upgrade Profile Builder" msgstr "Обновить Profile Builder" #: profile-builder-2.0/admin/add-ons.php:163 msgid "Not compatible with Profile Builder" msgstr "Не совместимо с Profile Builder" #: profile-builder-2.0/admin/add-ons.php:171 msgid "Not compatible with your version of Profile Builder." msgstr "Не совместимо с вашей версией Profile Builder " #: profile-builder-2.0/admin/add-ons.php:172 msgid "Minimum required Profile Builder version:" msgstr "Минимальная необходимая версия Profile Builder:" #: profile-builder-2.0/admin/add-ons.php:177 msgid "Could not install add-on. Retry or install manually." msgstr "Установка не удалась. Перейдите по ссылке и попробуйте установить вручную." #: profile-builder-2.0/front-end/default-fields/email/email.php:51 msgid "You must enter a valid email address." msgstr "Введите действующий email-адрес." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "Имя пользователя некорректно, поскольку содержит неправильные символы." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "Пожалуйста, введите действующее имя пользователя." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72 #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85 msgid "Only administrators can see this field on edit profile forms." msgstr "Только администраторы могут видеть это поле в форме редактирования профиля." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81 msgid "As an administrator you cannot change your role." msgstr "Вы не можете поменять свою роль: вы являетесь администратором" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117 msgid "" "\n" "

            {{username}} has requested a password change via the password reset feature.

            \n" "

            His/her new password is: {{password}}

            \n" msgstr "" "\n" "

            {{username}} запросил смену пароля.

            \n" "

            Его.её новый пароль: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141 msgid "Admin Notification for User Password Reset" msgstr "Подтверждение администратором сброса пароля пользователя" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46 msgid "Reset Key" msgstr "Ключ для сброса" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47 msgid "Reset Url" msgstr "URL для сброса аккаунта" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48 msgid "Reset Link" msgstr "Ссылка для сброса" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204 msgid "" "\n" "

            Someone requested that the password be reset for the following account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            \n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" msgstr "" "\n" "

            Кто-то запросил пароль для сброса аккаунта: {{site_name}}
            \n" "Имя пользователя: {{username}}

            \n" "

            Если это была ошибка, не отвечайте на это письмо.

            \n" "

            Чтобы сбросить пароль, перейдите по ссылке:
            \n" "{{{reset_link}}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218 msgid "[{{site_name}}] Password Reset" msgstr "[{{site_name}}] Сброс пароля" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229 msgid "Password Reset Email" msgstr "E-mail для сброса пароля" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235 msgid "" "\n" "

            You have successfully reset your password to: {{password}}

            \n" msgstr "" "\n" "

            Вы успешно сменили пароль на: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset Successfully" msgstr "[{{site_name}}] Пароль успешно сброшен" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256 msgid "Password Reset Success Email" msgstr "Правильный e-mail для сброса пароля" #: profile-builder-2.0/modules/user-listing/userlisting.php:159 msgid "User Nicename" msgstr "Имя пользователя" #: pb-add-on-woocommerce/woosync-page.php:80 #: pb-add-on-woocommerce/woosync-page.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:499 msgid "None" msgstr "Отсутствует" #: profile-builder-2.0/admin/admin-functions.php:132 msgid "ERROR: The password must have the minimum length of %s characters" msgstr "ОШИБКА: пароль должен иметь минимальную длину %s символов" #: profile-builder-2.0/admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr "ОШИБКА: пароль должен быть не легче чем %s" #: profile-builder-2.0/admin/general-settings.php:179 msgid "Username and Email" msgstr "Логин и Email" #: profile-builder-2.0/admin/general-settings.php:184 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "\"Логин и Email\" - пользователи могут войти и с именем пользователя, и с Email." #: profile-builder-2.0/admin/general-settings.php:185 msgid "\"Username\" - users can Log In only with Username." msgstr "\"Логин\" - пользователи могут Войти только по логину." #: profile-builder-2.0/admin/general-settings.php:186 msgid "\"Email\" - users can Log In only with Email." msgstr "\"Email\" - пользователи могут Войти только по Email." #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "Укажите допущенные к загрузке расширения файлов
            Пример: .ext1, .ext2, .ext3
            Если не указано, по умолчанию: .jpg, .jpeg, .gif, .png (. *)" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)" msgstr "Укажите расширения которые вы хотите ограничить, чтобы загрузить
            Пример: (. *) .ext1, .ext2, .ext3
            Если не указано, по умолчанию все расширения файлов доступны" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "User Roles" msgstr "Роли пользователей" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "Выберите, пользователя, чтобы показать роль (перетаскиванием измените порядок)" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "User Roles Order" msgstr "Выбрать роли пользователей" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "Save the user role order from the user roles checkboxes" msgstr "Сохраните выбранные ролей пользователей" #: profile-builder-2.0/admin/manage-fields.php:1128 msgid "Please select at least one user role\n" msgstr "Пожалуйста, выберите хотя бы одну роль пользователя\n" #: profile-builder-2.0/admin/register-version.php:22 msgid "Profile Builder Register" msgstr "Регистрация Profile Builder" #: profile-builder-2.0/admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "Серийный номер истекает в ближайшее время!" #: profile-builder-2.0/admin/register-version.php:81 msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr "Ваш серийный номер подходит к концу, пожалуйста,%1$s продлить лицензию%2$s." #: profile-builder-2.0/admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr "Серийный номер истек, пожалуйста,%1$s продлить лицензию%2$s." #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 msgid "Add Entry" msgstr "Добавить запись" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 msgid "show" msgstr "показать" #: profile-builder-2.0/features/functions.php:736 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" msgstr "Чтобы разрешить пользователям регистрироваться на вашем сайте с помощью профиля Builder, сначала необходимо включить регистрацию пользователя. Перейти на %1$sНастройки сетиs%2$s, и под регистрационным Настройки удостоверьтесь, чтобы проверить \"Учетные записи пользователей могут быть зарегистрированы\". %3$sубрать%4$s" #: profile-builder-2.0/front-end/class-formbuilder.php:659 msgid "User to edit:" msgstr "Редактировать пользователя:" #: profile-builder-2.0/front-end/default-fields/password/password.php:46 #: profile-builder-2.0/front-end/recover.php:262 msgid "The password must have the minimum length of %s characters" msgstr "Пароль должен быть не менее %s знаков" #: profile-builder-2.0/front-end/default-fields/password/password.php:50 #: profile-builder-2.0/front-end/recover.php:266 msgid "The password must have a minimum strength of %s" msgstr "Пароль должен быть не менее %s" #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118 msgid "You cannot register this user role" msgstr "Вы не можете зарегистрировать роли пользователя" #: profile-builder-2.0/front-end/login.php:153 msgid "username or email" msgstr "логин или Email" #: profile-builder-2.0/front-end/login.php:222 msgid "Username or Email" msgstr "Логин или Email" #: profile-builder-2.0/front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "Вы в настоящее время вошли в систему как %s. " #: profile-builder-2.0/front-end/logout.php:15 msgid "Log out »" msgstr "Выйти »" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "Роль пользователя" #: profile-builder-2.0/modules/user-listing/userlisting.php:2167 msgid "View all extra shortcode parameters" msgstr "Смотреть все дополнительные параметры" #: profile-builder-2.0/modules/user-listing/userlisting.php:2181 msgid "displays only the users that you specified the user_id for" msgstr "отображаются только те пользователи, которые Вы указали user_id" #: profile-builder-2.0/modules/user-listing/userlisting.php:2187 msgid "displays all users except the ones you specified the user_id for" msgstr "отображает всех пользователей, кроме тех, которые вы указали user_id" #: profile-builder-2.0/features/functions.php:566 msgid "Minimum length of %d characters" msgstr "Минимальная длинна %d символов" #: profile-builder-2.0/front-end/class-formbuilder.php:146 #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "This message is only visible by administrators" msgstr "Это сообщение видно только администраторам" #: profile-builder-2.0/modules/user-listing/userlisting.php:413 msgid "User not found" msgstr "Пользователь не найден" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "Существующие тэги {{reply_to}} и {{site_name}}" #: profile-builder-2.0/admin/admin-bar.php:48 msgid "Choose which user roles view the admin bar in the front-end of the website." msgstr "Выберите уровень пользователей, которым будет видна панель администратора на внешней части сайта. " #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes" msgstr "Введите разделенный запятыми список значений
            Это может быть что угодно, так как он скрыт от пользователя, но не должен содержать специальные символы или апострофы" #: profile-builder-2.0/admin/manage-fields.php:1055 msgid "The meta-name cannot be empty\n" msgstr "Мета-имя не может быть пустым\n" #: profile-builder-2.0/admin/register-version.php:69 msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received" msgstr "Зарегистрируйте приобретённую копию %s с помощью полученного вами серийного номера" #: profile-builder-2.0/admin/register-version.php:243 msgid "

            Your Profile Builder serial number is invalid or missing.
            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

            " msgstr "

            Ваш Profile Builder серийный номер недействительный или отсутствует.
            Пожалуйста %1$s зарегистрируйте вашу копию %2$s чтобы иметь возможность автоматического обновления и получения технической поддержки. Нужен лицензионный ключ? %3$s Купите прямо сейчас %4$s

            " #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17 #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60 msgid "...Choose" msgstr "...Выберите" #: profile-builder-2.0/features/class-list-table.php:526 #: profile-builder-2.0/features/class-list-table.php:942 msgid "1 item" msgstr "1 пункт" #: profile-builder-2.0/features/functions.php:552 msgid "Very Weak" msgstr "Очень слабый" #: profile-builder-2.0/features/functions.php:640 msgid "This field is required" msgstr "Это поле должно быть заполнено" #: profile-builder-2.0/features/functions.php:704 msgid "Cancel" msgstr "Отмена" #: profile-builder-2.0/features/functions.php:740 msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s" msgstr "Чтобы у посетителей появилась возможность регистрироваться на сайте через Profile Builder, вы должны включить регистрацию. Пройдите %1$s Настройки -> Общие %2$s, и в пункте Членство поставьте галочку “Любой может зарегистрироваться”. %3$sDismiss%4$s" #: profile-builder-2.0/front-end/login.php:144 msgid "Invalid username." msgstr "Неправильное имя пользователя" #: profile-builder-2.0/front-end/login.php:149 #: profile-builder-2.0/front-end/login.php:153 msgid "username" msgstr "имя пользователя" #: profile-builder-2.0/front-end/login.php:149 msgid "email" msgstr "электронный адрес" #: profile-builder-2.0/front-end/login.php:256 msgid "Lost your password?" msgstr "Забыли свой пароль?" #: profile-builder-2.0/index.php:34 msgid " is also activated. You need to deactivate it before activating this version of the plugin." msgstr "активирован. Вы должны деактивировать его, прежде чем активировать эту версию плагина." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54 msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email" msgstr "Должен быть существующий адрес электронной почты или тэг {{reply_to}} ведущий по-умолчанию на адрес электронной почты администратора" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508 msgid "Your selected password at signup" msgstr "Пароль выбранный для регистрации" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save." msgstr "Эти настройки также будут воспроизведены на странице настроек в «Настройщике электронной почты администратора\" после сохранения." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "Это форма пустая." #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "Удалить все элементы" #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all" msgstr "Удалить всё" #: profile-builder-2.0/modules/user-listing/userlisting.php:1621 msgid "Choose..." msgstr "Выберите..." #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Set the number of users to be displayed on every paginated part of the all-userlisting" msgstr "Установите число пользователей, которые будут отображены на каждой странице таблицы пользователей" #: profile-builder-2.0/admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "Показать/скрыть панель администратора на внешней части сайта" #: profile-builder-2.0/admin/admin-bar.php:10 #: profile-builder-2.0/admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "Настройки панели администратора" #: profile-builder-2.0/admin/admin-bar.php:57 msgid "User-Role" msgstr "Статус пользователя" #: profile-builder-2.0/admin/admin-bar.php:58 msgid "Visibility" msgstr "Видимость" #: profile-builder-2.0/admin/admin-bar.php:73 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "По умолчанию" #: profile-builder-2.0/admin/admin-bar.php:74 msgid "Show" msgstr "Показать" #: profile-builder-2.0/admin/admin-bar.php:75 #: profile-builder-2.0/modules/user-listing/userlisting.php:1554 msgid "Hide" msgstr "Скрыть" #: pb-add-on-woocommerce/woosync-page.php:147 #: profile-builder-2.0/admin/admin-bar.php:86 #: profile-builder-2.0/admin/general-settings.php:224 #: profile-builder-2.0/admin/register-version.php:95 #: profile-builder-2.0/features/functions.php:697 #: profile-builder-2.0/modules/modules.php:127 msgid "Save Changes" msgstr "Сохранить изменения" #: profile-builder-2.0/admin/admin-functions.php:37 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 )" msgstr "Установлен вход с использованием электронной почты. Это поле НЕ отображается на внешней части сайта (вы можете изменить эти настройки на вкладке \"%s\")" #: profile-builder-2.0/admin/admin-functions.php:37 #: profile-builder-2.0/admin/general-settings.php:10 #: profile-builder-2.0/admin/general-settings.php:35 msgid "General Settings" msgstr "Основные настройки" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:210 msgid "Very weak" msgstr "Очень слабый" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:211 #: profile-builder-2.0/features/functions.php:552 msgid "Weak" msgstr "Слабый" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:212 #: profile-builder-2.0/features/functions.php:552 msgid "Medium" msgstr "Средний" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:213 #: profile-builder-2.0/features/functions.php:552 msgid "Strong" msgstr "Сильный" #: profile-builder-2.0/admin/admin-functions.php:187 msgid "Add Field" msgstr "Добавить поле" #: profile-builder-2.0/admin/admin-functions.php:189 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390 msgid "Save Settings" msgstr "Сохранить настройки" #: profile-builder-2.0/admin/basic-info.php:10 msgid "Basic Information" msgstr "Базовая информация" #: profile-builder-2.0/admin/basic-info.php:29 msgid "Version %s" msgstr "Версия %s" #: profile-builder-2.0/admin/basic-info.php:30 msgid "Profile Builder " msgstr "Profile Builder " #: profile-builder-2.0/admin/basic-info.php:31 msgid "The best way to add front-end registration, edit profile and login forms." msgstr "Лучший способ, чтобы добавить регистрацию на внешней части сайта, формы изменения профиля и пароля." #: profile-builder-2.0/admin/basic-info.php:33 msgid "For Modern User Interaction" msgstr "Для современного взаимодействия с пользователем" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25 #: profile-builder-2.0/admin/basic-info.php:36 #: profile-builder-2.0/features/login-widget/login-widget.php:59 msgid "Login" msgstr "Войти" #: profile-builder-2.0/admin/basic-info.php:40 msgid "Registration" msgstr "Регистрация" #: profile-builder-2.0/admin/basic-info.php:44 msgid "Edit Profile" msgstr "Изменить профиль" #: profile-builder-2.0/admin/basic-info.php:51 msgid "Extra Features" msgstr "Дополнительные возможности" #: profile-builder-2.0/admin/basic-info.php:52 msgid "Features that give you more control over your users, increased security and help you fight user registration spam." msgstr "Возможности, которые дают вам больше контроля над пользователями, повышенную безопасность и поможет вам бороться со спам-регистрациями пользователей." #: profile-builder-2.0/admin/basic-info.php:53 msgid "Enable extra features" msgstr "Включить дополнительные возможности" #: profile-builder-2.0/admin/basic-info.php:57 msgid "Recover Password" msgstr "Восстановление пароля" #: profile-builder-2.0/admin/basic-info.php:61 msgid "Admin Approval (*)" msgstr "Одобряется администратором (*)" #: profile-builder-2.0/admin/basic-info.php:62 msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI." msgstr "Вы сами решаете, кто пользователь на вашем сайте. Получать уведомление по электронной почте или одобрять несколько пользователей одновременно с WordPress UI." #: profile-builder-2.0/admin/basic-info.php:65 msgid "Email Confirmation" msgstr "Подтверждение по электронной почте" #: profile-builder-2.0/admin/basic-info.php:66 msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address." msgstr "Убедитесь, что пользователи используют реальные электронные адреса. При регистрации пользователи получают уведомление для подтверждения адреса электронной почты." #: profile-builder-2.0/admin/basic-info.php:69 msgid "Minimum Password Length and Strength Meter" msgstr "Минимальная длина пароля и измеритель его силы" #: profile-builder-2.0/admin/basic-info.php:70 msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength." msgstr "Исключите слабые пароли вообще, установив минимальную длину пароля и соблюдение определенной силы пароля." #: profile-builder-2.0/admin/basic-info.php:73 msgid "Login with Email or Username" msgstr "Вход по адресу электронной почты или имени пользователя" #: profile-builder-2.0/admin/basic-info.php:74 msgid "Allow users to log in with their email or username when accessing your site." msgstr "Разрешите пользователям входить на сайт используя адрес электронной почты или имя пользователя." #: profile-builder-2.0/admin/basic-info.php:87 msgid "Customize Your Forms The Way You Want (*)" msgstr "Настройки ваших форм как вам хочется (*)" #: profile-builder-2.0/admin/basic-info.php:88 msgid "With Extra Profile Fields you can create the exact registration form your project needs." msgstr "С дополнительными полями в профиле вы можете создать регистрационную форму в точном соответствии с потребностями вашего проекта." #: profile-builder-2.0/admin/basic-info.php:90 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "Дополнительные поля в профиле доступны в Hobbyist или PRO версиях" #: profile-builder-2.0/admin/basic-info.php:92 msgid "Get started with extra fields" msgstr "Начните работу с дополнительными полями" #: profile-builder-2.0/admin/basic-info.php:95 msgid "Avatar Upload" msgstr "Загрузка аватара" #: profile-builder-2.0/admin/basic-info.php:96 msgid "Generic Uploads" msgstr "Общие загрузки" #: profile-builder-2.0/admin/basic-info.php:97 msgid "Agree To Terms Checkbox" msgstr "Флажок согласия с условиями" #: profile-builder-2.0/admin/basic-info.php:98 msgid "Datepicker" msgstr "Выбор даты" #: profile-builder-2.0/admin/basic-info.php:101 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: profile-builder-2.0/admin/basic-info.php:102 msgid "Country Select" msgstr "Выбор страны" #: profile-builder-2.0/admin/basic-info.php:104 msgid "Timezone Select" msgstr "Выбор часового пояса" #: profile-builder-2.0/admin/basic-info.php:108 msgid "Input / Hidden Input" msgstr "Ввод / Скрыть ввод" #: profile-builder-2.0/admin/basic-info.php:110 msgid "Checkbox" msgstr "Флажок" #: profile-builder-2.0/admin/basic-info.php:111 msgid "Select" msgstr "Выбрать" #: profile-builder-2.0/admin/basic-info.php:112 msgid "Radio Buttons" msgstr "Переключатели" #: profile-builder-2.0/admin/basic-info.php:113 msgid "Textarea" msgstr "Текстовое поле" #: profile-builder-2.0/admin/basic-info.php:125 msgid "Powerful Modules (**)" msgstr "Мощные модули" #: profile-builder-2.0/admin/basic-info.php:126 msgid "Everything you will need to manage your users is probably already available using the Pro Modules." msgstr "Всё что вам надо для управления вашими пользователями возможно уже доступно с помощью Проф модулей." #: profile-builder-2.0/admin/basic-info.php:128 msgid "Enable your modules" msgstr "Включить ваши модули" #: profile-builder-2.0/admin/basic-info.php:131 msgid "Find out more about PRO Modules" msgstr "Узнайте больше о Проф модулях" #: profile-builder-2.0/admin/basic-info.php:136 #: profile-builder-2.0/modules/modules.php:89 #: profile-builder-2.0/modules/user-listing/userlisting.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:12 #: profile-builder-2.0/modules/user-listing/userlisting.php:17 #: profile-builder-2.0/modules/user-listing/userlisting.php:23 msgid "User Listing" msgstr "Список пользователей" #: profile-builder-2.0/admin/basic-info.php:138 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." msgstr "Легко редактировать шаблоны для списка пользователей вашего сайта, а также создавать отдельные страницы пользователей. Основано на шорткодах и предлагает множество опций для настройки ваших записей." #: profile-builder-2.0/admin/basic-info.php:144 msgid "Email Customizer" msgstr "Настройщик электронной почты" #: profile-builder-2.0/admin/basic-info.php:145 msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval." msgstr "Персонализируйте все электронные письма, отправляемые вашим пользователям или администраторам. По регистрации, подтверждению электронной почты, одобрению или неодобрению администратором." #: profile-builder-2.0/admin/basic-info.php:148 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33 #: profile-builder-2.0/modules/modules.php:110 msgid "Custom Redirects" msgstr "Перенаправления пользователей" #: profile-builder-2.0/admin/basic-info.php:149 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." msgstr "Держать пользователей подальше от панели управления WordPress, перенаправив их на заданную страницу после входа или регистрации, легко - в несколько кликов мышкой." #: profile-builder-2.0/admin/basic-info.php:154 #: profile-builder-2.0/modules/modules.php:75 msgid "Multiple Registration Forms" msgstr "Несколько регистрационных форм" #: profile-builder-2.0/admin/basic-info.php:155 msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users." msgstr "Настройка нескольких регистрационных форм с различными полями для определенных ролей пользователей. Получение различной информации от разных типов пользователей." #: profile-builder-2.0/admin/basic-info.php:158 #: profile-builder-2.0/modules/modules.php:82 msgid "Multiple Edit-profile Forms" msgstr "Редактор профиля нескольких форм" #: profile-builder-2.0/admin/basic-info.php:159 msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles." msgstr "Позволяет пользователям с различными ролями редактировать свою специфическую информацию. Настройка редактора профиля нескольких форм с различными полями для разных ролей пользователей." #: profile-builder-2.0/admin/basic-info.php:187 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr " * доступно только в %1$sHobbyist и Pro версиях%2$s." #: profile-builder-2.0/admin/basic-info.php:188 msgid "** only available in the %1$sPro version%2$s." msgstr "** доступно только в %1$sPro версии%2$s." #: profile-builder-2.0/admin/general-settings.php:39 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "Загрузите собственный Profile Builder's CSS файл с внешней части сайта:" #: profile-builder-2.0/admin/general-settings.php:42 #: profile-builder-2.0/admin/general-settings.php:55 #: profile-builder-2.0/admin/general-settings.php:104 #: profile-builder-2.0/admin/general-settings.php:151 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Yes" msgstr "Да" #: profile-builder-2.0/admin/general-settings.php:44 msgid "You can find the default file here: %1$s" msgstr "Вы можете найти файл по умолчанию здесь: %1$s" #: profile-builder-2.0/admin/general-settings.php:51 msgid "\"Email Confirmation\" Activated:" msgstr "\"Подтверждение по электронной почте\" активировано:" #: profile-builder-2.0/admin/general-settings.php:56 #: profile-builder-2.0/admin/general-settings.php:105 #: profile-builder-2.0/admin/general-settings.php:150 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "No" msgstr "Нет" #: profile-builder-2.0/admin/general-settings.php:61 msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s." msgstr "Вы можете найти список неподтверждённых адресов %1$sПользователи > Все пользователи > Подтверждение по электронной почте%2$s." #: profile-builder-2.0/admin/general-settings.php:69 msgid "\"Email Confirmation\" Landing Page:" msgstr "Целевая страница \"подтверждения по электронной почте\":" #: profile-builder-2.0/admin/general-settings.php:74 msgid "Existing Pages" msgstr "Существующие страницы" #: profile-builder-2.0/admin/general-settings.php:89 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." msgstr "Укажите страницу, куда пользователи будут перенаправлены при подтверждении учетной записи электронной почты. Эта страница может отличаться от страницы (страниц) регистрации и может быть изменена в любое время. Если ничего не выбрано, отображаться будет просто страница подтверждения." #: profile-builder-2.0/admin/general-settings.php:100 msgid "\"Admin Approval\" Activated:" msgstr "\"Одобрение администратором\" активировано:" #: profile-builder-2.0/admin/general-settings.php:108 msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "Вы можете найти список пользователей в %1$sПользователи > Все пользователи > Одобреные администратором%2$s." #: profile-builder-2.0/admin/general-settings.php:165 msgid "\"Admin Approval\" Feature:" msgstr "\"Одобрение администратором\" особенность:" #: profile-builder-2.0/admin/general-settings.php:168 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." msgstr "Вы сами решаете, кого допустить на свой сайт. Получать уведомления по электронной почте или одобрять несколько пользователей одновременно с WordPress UI. Включить одобрения администратором через обновление до %1$s Hobbyist или PRO версий %2$s." #: profile-builder-2.0/admin/general-settings.php:175 msgid "Allow Users to Log in With:" msgstr "Разрешить пользователям входить в систему с:" #: profile-builder-2.0/admin/general-settings.php:180 #: profile-builder-2.0/admin/manage-fields.php:201 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167 #: profile-builder-2.0/front-end/login.php:85 #: profile-builder-2.0/front-end/login.php:99 #: profile-builder-2.0/front-end/login.php:218 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28 #: profile-builder-2.0/modules/user-listing/userlisting.php:102 #: profile-builder-2.0/modules/user-listing/userlisting.php:277 #: profile-builder-2.0/modules/user-listing/userlisting.php:730 #: profile-builder-2.0/modules/user-listing/userlisting.php:2219 msgid "Username" msgstr "Имя пользователя" #: profile-builder-2.0/admin/general-settings.php:181 #: profile-builder-2.0/front-end/login.php:215 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29 #: profile-builder-2.0/modules/user-listing/userlisting.php:736 #: profile-builder-2.0/modules/user-listing/userlisting.php:2220 msgid "Email" msgstr "Электронная почта" #: profile-builder-2.0/admin/general-settings.php:193 msgid "Minimum Password Length:" msgstr "Минимальная длинна пароля:" #: profile-builder-2.0/admin/general-settings.php:198 msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit" msgstr "Обозначьте минимальное количество знаков, которое должен иметь пароль. Оставьте пустым чтобы не ограничивать минимальный предел." #: profile-builder-2.0/admin/general-settings.php:205 msgid "Minimum Password Strength:" msgstr "Минимальная сила пароля:" #: profile-builder-2.0/admin/general-settings.php:209 msgid "Disabled" msgstr "Отключено" #: profile-builder-2.0/admin/manage-fields.php:12 msgid "Manage Fields" msgstr "Управление полями" #: profile-builder-2.0/admin/manage-fields.php:13 msgid "Manage Default and Extra Fields" msgstr "Управление полями по умолчанию и дополнительными полями" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Field Title" msgstr "Название поля" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Title of the field" msgstr "Название для поля" #: profile-builder-2.0/admin/manage-fields.php:119 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "Поле" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Meta-name" msgstr "Мета-имя" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "ID" msgstr "ID" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be edited" msgstr "Уникальный, автоматически сгенерированный ID для этой конкретной области
            Вы можете использовать это в связке с фильтрами как целевой элемент, если это необходимо
            Не может быть отредактирован" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Description" msgstr "Описание" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Enter a (detailed) description of the option for end users to read
            Optional" msgstr "Введите (подробнее) описание опции для ознакомления пользователям
            Дополнительно" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Row Count" msgstr "Количество строк" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5" msgstr "Укажите количество строк для поля 'Текстовая область'
            Если не указано, по умолчанию 5" #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Allowed Image Extensions" msgstr "Допустимые расширения изображений" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Allowed Upload Extensions" msgstr "Допустимые расширения загружаемых файлов" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Avatar Size" msgstr "Размер аватара" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100" msgstr "Укажите значение (между 20 и 200) для размера 'Аватара'
            Если не указано, по умолчанию 100" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Date-format" msgstr "Формат даты" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Terms of Agreement" msgstr "Условия соглашения" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Enter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>" msgstr "Создайте подробное описание условий соглашения для пользователей. .
            Ссылки могут быть вставлены с помощью стандартного синтаксиса HTML: <a href=\"custom_url\">custom_text</a>" #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Options" msgstr "Параметры" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Labels" msgstr "Метки" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "Введите разделенный запятыми список меток
            видимый для пользователя" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default Value" msgstr "Значение по умолчанию" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default value of the field" msgstr "Значение по умолчанию для поля" #: profile-builder-2.0/admin/manage-fields.php:138 #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default Option" msgstr "Параметр по умолчанию" #: profile-builder-2.0/admin/manage-fields.php:138 msgid "Specify the option which should be selected by default" msgstr "Укажите вариант, который должен быть выбран по умолчанию" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Default Option(s)" msgstr "Параметры по умолчанию" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)" msgstr "Укажите вариант, который должен быть помечен по умолчанию
            Если есть несколько значений, разделите их ',' (запятой)" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default Content" msgstr "Содержимое по умолчанию" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default value of the textarea" msgstr "Значение текстового поля по умолчанию" #: pb-add-on-woocommerce/index.php:306 #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Required" msgstr "Обязательный" #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Whether the field is required or not" msgstr "Является ли поле обязательным или нет" #: profile-builder-2.0/admin/manage-fields.php:161 msgid "Overwrite Existing" msgstr "Перезаписать существующее" #: profile-builder-2.0/admin/manage-fields.php:161 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
            Use this at your own risk" msgstr "Выбор 'Да' будет добавлять поле в список, но будет перезаписывать любое другое поле в базе данных, которое имеет такое же мета-имя
            Используйте это на свой страх и риск" #: profile-builder-2.0/admin/manage-fields.php:167 msgid "Field Properties" msgstr "Свойства поля" #: profile-builder-2.0/admin/manage-fields.php:181 msgid "Registration & Edit Profile" msgstr "Регистрация и редактирование профиля" #: profile-builder-2.0/admin/manage-fields.php:200 msgid "Name" msgstr "Имя пользователя" #: profile-builder-2.0/admin/manage-fields.php:201 msgid "Usernames cannot be changed." msgstr "Имя пользователя не может быть изменено." #: pb-add-on-woocommerce/billing-fields.php:6 #: pb-add-on-woocommerce/shipping-fields.php:6 #: profile-builder-2.0/admin/manage-fields.php:202 msgid "First Name" msgstr "Имя" #: pb-add-on-woocommerce/billing-fields.php:7 #: pb-add-on-woocommerce/shipping-fields.php:7 #: profile-builder-2.0/admin/manage-fields.php:203 msgid "Last Name" msgstr "Фамилия" #: profile-builder-2.0/admin/manage-fields.php:204 #: profile-builder-2.0/modules/user-listing/userlisting.php:769 #: profile-builder-2.0/modules/user-listing/userlisting.php:2227 msgid "Nickname" msgstr "Псевдоним" #: profile-builder-2.0/admin/manage-fields.php:205 msgid "Display name publicly as" msgstr "Показывать имя как" #: profile-builder-2.0/admin/manage-fields.php:206 msgid "Contact Info" msgstr "Контактная информация" #: profile-builder-2.0/admin/manage-fields.php:207 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168 #: profile-builder-2.0/front-end/recover.php:118 #: profile-builder-2.0/modules/user-listing/userlisting.php:108 msgid "E-mail" msgstr "Электронная почта" #: profile-builder-2.0/admin/manage-fields.php:208 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32 #: profile-builder-2.0/modules/user-listing/userlisting.php:111 #: profile-builder-2.0/modules/user-listing/userlisting.php:751 #: profile-builder-2.0/modules/user-listing/userlisting.php:2221 msgid "Website" msgstr "Сайт" #: profile-builder-2.0/admin/manage-fields.php:212 msgid "AIM" msgstr "AIM" #: profile-builder-2.0/admin/manage-fields.php:213 msgid "Yahoo IM" msgstr "Yahoo IM" #: profile-builder-2.0/admin/manage-fields.php:214 msgid "Jabber / Google Talk" msgstr "Jabber / Google Talk" #: profile-builder-2.0/admin/manage-fields.php:217 msgid "About Yourself" msgstr "О себе" #: profile-builder-2.0/admin/manage-fields.php:218 #: profile-builder-2.0/modules/user-listing/userlisting.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:754 #: profile-builder-2.0/modules/user-listing/userlisting.php:2222 msgid "Biographical Info" msgstr "Биография" #: profile-builder-2.0/admin/manage-fields.php:218 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "Расскажите немного о себе, чтобы заполнить свой профиль. Эта информация может быть видна другим." #: profile-builder-2.0/admin/manage-fields.php:219 #: profile-builder-2.0/front-end/recover.php:73 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "Пароль" #: profile-builder-2.0/admin/manage-fields.php:219 msgid "Type your password." msgstr "Введите свой пароль." #: profile-builder-2.0/admin/manage-fields.php:220 #: profile-builder-2.0/front-end/recover.php:74 msgid "Repeat Password" msgstr "Повторить пароль" #: profile-builder-2.0/admin/manage-fields.php:220 msgid "Type your password again. " msgstr "Введите свой пароль ещё раз." #: profile-builder-2.0/admin/manage-fields.php:980 #: profile-builder-2.0/admin/manage-fields.php:1137 msgid "You must select a field\n" msgstr "Вы должны выбрать поле\n" #: profile-builder-2.0/admin/manage-fields.php:990 msgid "Please choose a different field type as this one already exists in your form (must be unique)\n" msgstr "Пожалуйста выберите другой тип поля, так как этот уже существует в вашей форме (должен быть уникальным)\n" #: profile-builder-2.0/admin/manage-fields.php:1001 msgid "The entered avatar size is not between 20 and 200\n" msgstr "Введённый размер аватара меньше 20 или больше 200\n" #: profile-builder-2.0/admin/manage-fields.php:1004 msgid "The entered avatar size is not numerical\n" msgstr "Введённый размер аватара не число \n" #: profile-builder-2.0/admin/manage-fields.php:1012 msgid "The entered row number is not numerical\n" msgstr "Введённый номер строки не число \n" #: profile-builder-2.0/admin/manage-fields.php:1015 msgid "You must enter a value for the row number\n" msgstr "Вы должны задать значение количества строк \n" #: profile-builder-2.0/admin/manage-fields.php:1036 msgid "The entered value for the Datepicker is not a valid date-format\n" msgstr "Введённое значение в выборе даты имеет некорректный формат \n" #: profile-builder-2.0/admin/manage-fields.php:1039 msgid "You must enter a value for the date-format\n" msgstr "Вам необходимо ввести значение для формата даты \n" #: profile-builder-2.0/admin/manage-fields.php:1067 #: profile-builder-2.0/admin/manage-fields.php:1075 #: profile-builder-2.0/admin/manage-fields.php:1086 msgid "That meta-name is already in use\n" msgstr "Такое мета-имя уже используется \n" #: profile-builder-2.0/admin/manage-fields.php:1117 msgid "The following option(s) did not coincide with the ones in the options list: %s\n" msgstr "Следующая опция(и) не совпадает ни с одной из списка опций: %s\n" #: profile-builder-2.0/admin/manage-fields.php:1121 msgid "The following option did not coincide with the ones in the options list: %s\n" msgstr "Следующая опция не совпадает ни с одной из списка опций: %s \n" #: profile-builder-2.0/admin/manage-fields.php:1144 msgid "That field is already added in this form\n" msgstr "Такое поле уже добавлено в эту форму\n" #: profile-builder-2.0/admin/manage-fields.php:1193 msgid "
            Title
            Type
            Meta Name
            Required
            " msgstr "
            Название
            Тип
            Мета имя
            Обязательное
            " #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108 #: profile-builder-2.0/features/functions.php:718 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Edit" msgstr "Редактировать" #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217 #: profile-builder-2.0/features/functions.php:711 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "Delete" msgstr "Удалить" #: profile-builder-2.0/admin/manage-fields.php:1208 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "Используйте эти шорткоды на страницах, где бы вы хотели, чтобы формы отображались:" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Your Version" msgstr "Регистрация вашей версии" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Version" msgstr "Регистрация версии" #: profile-builder-2.0/admin/register-version.php:70 msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support." msgstr "Если вы зарегистрируете эту версию Profile Builder, вы будете получать информацию, касающуюся обновлений, исправлений и техническую поддержку." #: profile-builder-2.0/admin/register-version.php:72 msgid " Serial Number:" msgstr "Серийный номер:" #: profile-builder-2.0/admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "Серийный номер успешно проверен!" #: profile-builder-2.0/admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "Введённый серийный номер подтвердить не удалось!" #: profile-builder-2.0/admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "Серийный номер не может быть подтверждён, так как он просрочен!" #: profile-builder-2.0/admin/register-version.php:85 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!" msgstr "Серийный номер не может быть подтверждён, так как истекло время проверки. Это возможно из-за проблем на сервере. Пожалуйста, повторите попытку позже!" #: profile-builder-2.0/admin/register-version.php:87 msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/features/functions.php:725 msgid "Content" msgstr "Содержимое" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 msgid "Edit this item" msgstr "Редактировать этот пункт" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 msgid "Delete this item" msgstr "Удалить этот пункт" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705 msgid "Please enter a value for the required field " msgstr "Пожалуйста, введите значение для обязательного поля" #: pb-add-on-woocommerce/woo-checkout-field-support.php:262 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122 msgid "Select File" msgstr "Выбрать файл" #: pb-add-on-woocommerce/woo-checkout-field-support.php:252 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112 msgid "Remove" msgstr "Удалить" #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8 msgid "You can add the information for the %s after you add a entry" msgstr "Вы можете добавить информацию для %s после добавления записи" #: pb-add-on-woocommerce/woo-checkout-field-support.php:268 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128 msgid "Upload " msgstr "Загрузить" #: profile-builder-2.0/features/class-list-table.php:184 msgid "No items found." msgstr "Никаких элементов не найдено." #: profile-builder-2.0/features/class-list-table.php:308 msgid "Bulk Actions" msgstr "Массовые действия" #: profile-builder-2.0/features/class-list-table.php:318 msgid "Apply" msgstr "Применить" #: profile-builder-2.0/features/class-list-table.php:402 msgid "Show all dates" msgstr "Показать все даты" #: profile-builder-2.0/features/class-list-table.php:415 msgid "%1$s %2$d" msgstr "%1$s %2$d" #: profile-builder-2.0/features/class-list-table.php:431 msgid "List View" msgstr "Просмотр списка" #: profile-builder-2.0/features/class-list-table.php:432 msgid "Excerpt View" msgstr "Просмотр отрывка" #: profile-builder-2.0/features/class-list-table.php:458 msgid "%s pending" msgstr "%s в ожидании" #: profile-builder-2.0/features/class-list-table.php:566 msgid "%1$s of %2$s" msgstr "%1$s of %2$s" #: profile-builder-2.0/features/class-list-table.php:713 msgid "Select All" msgstr "Выбрать всё" #: profile-builder-2.0/features/functions.php:526 msgid "Strength indicator" msgstr "Индикатор силы" #: profile-builder-2.0/features/admin-approval/admin-approval.php:14 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453 msgid "Admin Approval" msgstr "Одобрение администратором" #: profile-builder-2.0/features/admin-approval/admin-approval.php:28 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "Вы хотите, чтобы" #: profile-builder-2.0/features/admin-approval/admin-approval.php:51 msgid "Your session has expired! Please refresh the page and try again" msgstr "Время сеанса истекло! Пожалуйста, обновите страницу и попробуйте еще раз" #: profile-builder-2.0/features/admin-approval/admin-approval.php:64 msgid "User successfully approved!" msgstr "Пользователь успешно одобрен!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:74 msgid "User successfully unapproved!" msgstr "Пользователь успешно не подтверждён!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:80 msgid "User successfully deleted!" msgstr "Пользователь успешно удалён!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:85 #: profile-builder-2.0/features/admin-approval/admin-approval.php:131 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "Либо у вас недостаточно прав на это действие, либо произошла ошибка!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:96 msgid "Your session has expired! Please refresh the page and try again." msgstr "Время сеанса истекло! Пожалуйста, обновите страницу и попробуйте еще раз." #: profile-builder-2.0/features/admin-approval/admin-approval.php:109 msgid "Users successfully approved!" msgstr "Пользователь успешно одобрен!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:119 msgid "Users successfully unapproved!" msgstr "Пользователь успешно не подтверждён!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:127 msgid "Users successfully deleted!" msgstr "Пользователь успешно удалён!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:147 msgid "Your account on %1$s has been approved!" msgstr "Ваша учётная запись %1$s была одобрена!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:148 #: profile-builder-2.0/features/admin-approval/admin-approval.php:151 msgid "approved" msgstr "одобрено" #: profile-builder-2.0/features/admin-approval/admin-approval.php:150 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "Администратор одобрил вашу учётную запись %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:155 msgid "Your account on %1$s has been unapproved!" msgstr "Ваша учётная запись %1$s не была утверждена!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:156 #: profile-builder-2.0/features/admin-approval/admin-approval.php:159 msgid "unapproved" msgstr "не утверждено" #: profile-builder-2.0/features/admin-approval/admin-approval.php:158 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "Администратор не утвердил вашу учётную запись %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:177 msgid "ERROR: Your account has to be confirmed by an administrator before you can log in." msgstr "ОШИБКА: Ваша учётная запись должна быть подтверждена администратором, прежде чем вы сможете войти." #: profile-builder-2.0/features/admin-approval/admin-approval.php:189 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature." msgstr "Ваша учётная запись должна быть подтверждена администратором, прежде чем вы сможете воспользоваться функцией \"Восстановление пароля\"" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "удалить этого пользователя?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "не утверждать этого пользователя?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr " Не утверждено" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "одобрить этого пользователя?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "Одобрено" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167 #: profile-builder-2.0/modules/user-listing/userlisting.php:278 #: profile-builder-2.0/modules/user-listing/userlisting.php:742 #: profile-builder-2.0/modules/user-listing/userlisting.php:2224 msgid "Firstname" msgstr "Имя" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168 #: profile-builder-2.0/modules/user-listing/userlisting.php:745 #: profile-builder-2.0/modules/user-listing/userlisting.php:2225 msgid "Lastname" msgstr "Фамилия" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170 #: profile-builder-2.0/modules/user-listing/userlisting.php:149 #: profile-builder-2.0/modules/user-listing/userlisting.php:279 #: profile-builder-2.0/modules/user-listing/userlisting.php:772 #: profile-builder-2.0/modules/user-listing/userlisting.php:2229 msgid "Role" msgstr "Ранг" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169 msgid "Registered" msgstr "Зарегистрированный" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "Статус пользователя" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "Вы хотите массово утвердить выбранных пользователей?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "Вы хотите массово не утвердить выбранных пользователей?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "Вы хотите массово удалить выбранных пользователей?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278 msgid "Sorry, but you don't have permission to do that!" msgstr "Извините, но у вас недостаточно прав на это действие!" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339 msgid "Approved" msgstr "Утверждено" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341 msgid "Unapproved" msgstr "Не утверждено" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454 msgid "All Users" msgstr "Все пользователи" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 msgid "delete this user from the _signups table?" msgstr "удалить этого пользователя из _signups table?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 msgid "confirm this email yourself?" msgstr "подтвердить этот адрес электронной почты как ваш?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218 msgid "Confirm Email" msgstr "Подтверждение адреса электронной почты" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 msgid "resend the activation link?" msgstr "повторно отправить ссылку активации?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219 msgid "Resend Activation Email" msgstr "Повторное отправление письма для активации" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249 msgid "%s couldn't be deleted" msgstr "%s не может быть удалён" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253 msgid "All users have been successfully deleted" msgstr "Все пользователи успешно удалены" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263 msgid "The selected users have been activated" msgstr "Выбранные пользователи активированы" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274 msgid "The selected users have had their activation emails resent" msgstr "Выбранным пользователям отправлены письма для активации" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "Пользователи с неподтверждёнными адресами электронной почты" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "При выполнении этого действия произошла ошибка!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "Выбранный пользователь не может быть удалён" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "Пользователю отправлено повторное уведомление по электронной почте" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398 msgid "[%1$s] Activate %2$s" msgstr "[%1$s] Активировать %2$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442 #: profile-builder-2.0/front-end/register.php:71 msgid "Could not create user!" msgstr "Невозможно создать пользователя!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445 msgid "That username is already activated!" msgstr "Такое имя пользователя уже активировалось!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468 msgid "There was an error while trying to activate the user" msgstr "При попытке активировать пользователя произошла ошибка" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73 msgid "A new subscriber has (been) registered!" msgstr "Новый абонент (был) зарегистрирован!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "Новый абонент %1$s.

            Имя пользователя:%2$s
            Электронная почта:%3$s
            " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634 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!" msgstr "Функция \"Одобрение администратором\" была активирована во время регистрации, поэтому, пожалуйста, помните, что вы должны утвердить этого пользователя, прежде чем он/она сможет войти!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570 msgid "[%1$s] Your new account information" msgstr "[%1$s] Информация о вашей новой учётной записи" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581 msgid "Welcome to %1$s!


            Your username is:%2$s and password:%3$s" msgstr "Добро пожаловать %1$s!


            Ваше имя пользователя:%2$s и пароль:%3$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642 #: profile-builder-2.0/front-end/register.php:125 msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email." msgstr "Прежде чем вы сможете войти в свой аккаунт, администратор должен его одобрить. Вы будете уведомлены по электронной почте." #: profile-builder-2.0/features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "Этот виджет авторизации позволит вам добавить форму входа в боковую панель." #: profile-builder-2.0/features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "Profile Builder Login Widget" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36 #: profile-builder-2.0/front-end/class-formbuilder.php:415 #: profile-builder-2.0/front-end/login.php:250 msgid "Register" msgstr "Регистрация" #: profile-builder-2.0/features/login-widget/login-widget.php:63 msgid "Title:" msgstr "Название:" #: profile-builder-2.0/features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "После входа перенаправить на адрес (опционно):" #: profile-builder-2.0/features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "Адрес страницы регистрации (опционно):" #: profile-builder-2.0/features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "Адрес страницы восстановления пароля (опционно):" #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91 #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "Имя пользователя не может быть изменено." #: profile-builder-2.0/front-end/class-formbuilder.php:136 msgid "Only an administrator can add new users." msgstr "Только администратор может добавлять новых пользователей." #: profile-builder-2.0/front-end/class-formbuilder.php:146 msgid "Users can register themselves or you can manually create users here." msgstr "Пользователи могут регистрироваться самостоятельно или вы можете вручную создавать пользователей здесь." #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "Users cannot currently register themselves, but you can manually create users here." msgstr "В настоящее время пользователи не могут регистрироваться самостоятельно, но вы можете вручную создавать пользователей здесь." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "В настоящее время вы вошли как %1s. Вам не нужна другая учётная запись. %2s" #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Log out of this account." msgstr "Выйти из этой учётной записи." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Logout" msgstr "Выход" #: profile-builder-2.0/front-end/class-formbuilder.php:175 msgid "You must be logged in to edit your profile." msgstr "Вы должны войти, чтобы отредактировать свой профиль." #: profile-builder-2.0/features/functions.php:994 msgid "here" msgstr "здесь" #: profile-builder-2.0/features/functions.php:995 msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s" msgstr "Вскоре вы будете перенаправлены автоматически. Если вы видите эту страницу более чем %1$d секунд, пожалуйста нажмите %2$s.%3$s" #: profile-builder-2.0/front-end/class-formbuilder.php:315 #: profile-builder-2.0/front-end/class-formbuilder.php:322 msgid "The account %1s has been successfully created!" msgstr "Учётная запись %1s была успешно создана!" #: profile-builder-2.0/front-end/class-formbuilder.php:318 #: profile-builder-2.0/front-end/class-formbuilder.php:328 msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link." msgstr "Прежде чем вы сможете получить доступ к вашей учетной записи %1s, необходимо подтвердить свой адрес электронной почты. Пожалуйста, проверьте свой почтовый ящик и нажмите на ссылку активации." #: profile-builder-2.0/front-end/class-formbuilder.php:324 msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email." msgstr "Прежде чем вы сможете получить доступ к вашей учетной записи %1s, администратор должен утвердить его. Вы будете уведомлены по электронной почте." #: profile-builder-2.0/front-end/class-formbuilder.php:347 msgid "Your profile has been successfully updated!" msgstr "Ваш профиль был успешно обновлён!" #: profile-builder-2.0/front-end/class-formbuilder.php:358 msgid "There was an error in the submitted form" msgstr "Произошла ошибка в представленной форме" #: profile-builder-2.0/front-end/class-formbuilder.php:415 msgid "Add User" msgstr "Добавить пользователя" #: profile-builder-2.0/admin/add-ons.php:170 #: profile-builder-2.0/front-end/class-formbuilder.php:418 msgid "Update" msgstr "Обновить" #: profile-builder-2.0/front-end/class-formbuilder.php:481 msgid "Send these credentials via email." msgstr "Отправить эти учётные данные по электронной почте." #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92 #: profile-builder-2.0/front-end/login.php:137 #: profile-builder-2.0/front-end/login.php:144 #: profile-builder-2.0/front-end/login.php:158 #: profile-builder-2.0/front-end/recover.php:17 #: profile-builder-2.0/front-end/recover.php:245 msgid "ERROR" msgstr "ОШИБКА" #: profile-builder-2.0/front-end/login.php:137 msgid "The password you entered is incorrect." msgstr "Введенный вами пароль неверен." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Password Lost and Found." msgstr "Восстановление утерянного пароля." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Lost your password" msgstr "Забыли свой пароль" #: profile-builder-2.0/front-end/login.php:158 msgid "Both fields are empty." msgstr "Оба поля пусты." #: profile-builder-2.0/front-end/login.php:296 msgid "You are currently logged in as %1$s. %2$s" msgstr "В настоящий момент вы вошли как %1$s. %2$s" #: profile-builder-2.0/front-end/login.php:295 #: profile-builder-2.0/front-end/logout.php:25 msgid "Log out of this account" msgstr "Выйти из этой учётной записи" #: profile-builder-2.0/front-end/login.php:295 msgid "Log out" msgstr "Выйти" #: profile-builder-2.0/front-end/recover.php:17 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature." msgstr "Ваша учетная запись должна быть подтверждена администратором прежде чем вы сможете воспользоваться функцией \"Восстановление пароля\"." #: profile-builder-2.0/front-end/recover.php:94 msgid "Reset Password" msgstr "Восстановление пароля" #: profile-builder-2.0/front-end/recover.php:121 msgid "Please enter your username or email address." msgstr "Пожалуйста введите ваше имя пользователя или адрес электронной почты." #: profile-builder-2.0/front-end/recover.php:125 msgid "You will receive a link to create a new password via email." msgstr "Вы получите ссылку, чтобы создать новый пароль по электронной почте." #: profile-builder-2.0/front-end/recover.php:122 msgid "Username or E-mail" msgstr "Имя пользователя или адрес электронной почты" #: profile-builder-2.0/front-end/recover.php:138 msgid "Get New Password" msgstr "Получить новый пароль" #: profile-builder-2.0/front-end/recover.php:185 msgid "The username entered wasn't found in the database!" msgstr "Введённое имя пользователя не найдено в базе данных!" #: profile-builder-2.0/front-end/recover.php:185 msgid "Please check that you entered the correct username." msgstr "Пожалуйста проверьте, что вы ввели правильное имя пользователя." #: profile-builder-2.0/front-end/recover.php:200 msgid "Check your e-mail for the confirmation link." msgstr "Проверьте вашу электронную почту на предмет письма с подтверждающей ссылкой." #: profile-builder-2.0/front-end/recover.php:235 msgid "Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s" msgstr "Кто-то запросил сброс пароля для следующей учётной записи: %1$s
            Если запрос послан не вами - просто проигнорируйте это сообщение и ничего не произойдёт.
            Для сброса пароля проследуйте по следующей ссылке:%2$s" #: profile-builder-2.0/front-end/recover.php:238 msgid "Password Reset from \"%1$s\"" msgstr "Сброс пароля для \"%1$s\"" #: profile-builder-2.0/front-end/recover.php:245 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "Произошла ошибка при попытке отправить ссылку активации для %1$s!" #: profile-builder-2.0/front-end/recover.php:207 msgid "The email address entered wasn't found in the database!" msgstr "Введённый адрес электронной почты не найден в базе данных!" #: profile-builder-2.0/front-end/recover.php:207 msgid "Please check that you entered the correct email address." msgstr "Пожалуйста проверьте, что вы ввели правильный адрес электронной почты." #: profile-builder-2.0/front-end/recover.php:273 msgid "Your password has been successfully changed!" msgstr "Ваш пароль был успешно изменён!" #: profile-builder-2.0/front-end/recover.php:292 msgid "You have successfully reset your password to: %1$s" msgstr "Вы успешно восстановили свой пароль для: %1$s" #: profile-builder-2.0/front-end/recover.php:295 #: profile-builder-2.0/front-end/recover.php:306 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "Пароль успешно восстановлен для %1$s на \"%2$s\"" #: profile-builder-2.0/front-end/recover.php:303 msgid "%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s" msgstr "%1$s запросил изменение пароля через функцию восстановления пароля.
            Его/её новый пароль: %2$s" #: profile-builder-2.0/front-end/recover.php:320 msgid "The entered passwords don't match!" msgstr "Введенные пароли не совпадают!" #: profile-builder-2.0/front-end/recover.php:375 msgid "ERROR:" msgstr "ОШИБКА:" #: profile-builder-2.0/front-end/recover.php:375 msgid "Invalid key!" msgstr "Неверный ключ!" #: profile-builder-2.0/front-end/register.php:56 msgid "Invalid activation key!" msgstr "Неверный ключ активации!" #: profile-builder-2.0/front-end/register.php:60 msgid "This username is now active!" msgstr "Это имя пользователя теперь активно!" #: profile-builder-2.0/front-end/register.php:74 msgid "This username is already activated!" msgstr "Это имя пользователя уже активировано!" #: profile-builder-2.0/front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "Ваш адрес электронной почты был успешно подтверждён." #: profile-builder-2.0/front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "При попытке активировать пользователя произошла ошибка." #: pb-add-on-woocommerce/index.php:393 #: profile-builder-2.0/front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "Введённый вами адрес электронной почты не существует." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "Этот адрес электронной почты уже зарезервирован для использования в ближайшее время." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 #: profile-builder-2.0/front-end/default-fields/username/username.php:49 #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "Пожалуйста, попробуйте другой!" #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "Этот адрес электронной почты уже используется." #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37 #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "Пароли не совпадают" #: profile-builder-2.0/front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "Такое имя пользователя уже существует." #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "Такое имя пользователя уже зарезервировано для использования в ближайшее время." #: profile-builder-2.0/modules/user-listing/userlisting.php:276 msgid "Avatar" msgstr "Аватар" #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72 #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45 #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45 #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40 #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34 #: profile-builder-2.0/front-end/extra-fields/input/input.php:30 #: profile-builder-2.0/front-end/extra-fields/map/map.php:51 #: profile-builder-2.0/front-end/extra-fields/number/number.php:30 #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39 #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52 #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46 #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49 #: profile-builder-2.0/front-end/extra-fields/select/select.php:51 #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70 #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "обязательный" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48 msgid "To use reCAPTCHA you must get an API key from" msgstr "Для использования reCAPTCHA вы должны получить API ключ от" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "В целях безопасности вы должны проверить удалённый ip в reCAPTCHA!" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "Для использования reCAPTCHA вы должны получить API публичный ключ от:" #: profile-builder-2.0/modules/modules.php:11 #: profile-builder-2.0/modules/modules.php:58 msgid "Modules" msgstr "Модули" #: profile-builder-2.0/modules/modules.php:59 msgid "Here you can activate / deactivate available modules for Profile Builder." msgstr "Здесь вы можете активировать / деактивировать доступные модули Profile Builder." #: profile-builder-2.0/modules/modules.php:69 msgid "Name/Description" msgstr "Название / Описание" #: profile-builder-2.0/modules/modules.php:70 msgid "Status" msgstr "Статус" #: profile-builder-2.0/modules/modules.php:77 #: profile-builder-2.0/modules/modules.php:84 #: profile-builder-2.0/modules/modules.php:91 #: profile-builder-2.0/modules/modules.php:98 #: profile-builder-2.0/modules/modules.php:105 #: profile-builder-2.0/modules/modules.php:112 #: profile-builder-2.0/modules/modules.php:119 msgid "Active" msgstr "Активный" #: profile-builder-2.0/modules/modules.php:78 #: profile-builder-2.0/modules/modules.php:85 #: profile-builder-2.0/modules/modules.php:92 #: profile-builder-2.0/modules/modules.php:99 #: profile-builder-2.0/modules/modules.php:106 #: profile-builder-2.0/modules/modules.php:113 #: profile-builder-2.0/modules/modules.php:120 msgid "Inactive" msgstr "Не активный" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:96 msgid "Admin Email Customizer" msgstr "Настройщик электронной почты администратора" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:103 msgid "User Email Customizer" msgstr "Настройщик электронной почты пользователя" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253 msgid "Save" msgstr "Сохранить" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "Перенаправление" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "URL" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save." msgstr "Эти настройки также переносятся на страницу настроек \"Настройщика электронной почты пользователя\" после сохранения." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41 msgid "From (name)" msgstr "От (имя)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49 msgid "From (reply-to email)" msgstr "От (ответ на электронную почту)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57 msgid "Common Settings" msgstr "Общие настройки" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" msgstr "" "\n" "

            Новый подписчик от {{site_name}}.

            \n" "\n" "

            Имя пользователя:{{username}}

            \n" "\n" "

            Электронная почта:{{user_email}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274 msgid "Email Subject" msgstr "Тема электронного письма" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84 msgid "Default Registration & Registration with Email Confirmation" msgstr "Регистрация по умолчанию и Регистрация с подтверждением по электронной почте" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log in!

            \n" msgstr "" "\n" "

            Новый подписчик от {{site_name}}.

            \n" "\n" "

            Имя пользователя:{{username}}

            \n" "\n" "

            Электронная почта:{{user_email}}

            \n" "\n" "

            Функция одобрения администратором был активирована на момент регистрации,\n" "\n" "поэтому, пожалуйста, помните, что вы должны утвердить этого пользователя, прежде чем он/она может войти!

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143 msgid "Registration with Admin Approval" msgstr "Регистрация с одобрением администратором" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "Доступные теги" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170 msgid "User Meta" msgstr "Мета пользователя" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "Url сайта" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "Название сайта" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25 #: profile-builder-2.0/modules/user-listing/userlisting.php:158 msgid "User Id" msgstr "Id пользователя" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33 msgid "Reply To" msgstr "Ответить кому" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40 msgid "Activation Key" msgstr "Ключ активации" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41 msgid "Activation Url" msgstr "Url активации" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42 msgid "Activation Link" msgstr "Ссылка активации" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" msgstr "" "\n" "

            Добро пожаловать на {{site_name}}!

            \n" "\n" "

            Ваше имя пользователя:{{username}} и пароль:{{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85 msgid "Default Registration" msgstr "Регистрация по умолчанию" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91 msgid "" "\n" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials.

            \n" msgstr "" "\n" "

            Для активации вашего пользователя, пожалуйста нажмите на следующую ссылку:
            \n" "\n" "{{{activation_link}}}

            \n" "\n" "

            После активации, вы получите еще одно письмо с учетными данными.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103 msgid "[{{site_name}}] Activate {{username}}" msgstr "[{{site_name}}] Активировать {{username}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114 msgid "Registration with Email Confirmation" msgstr "Регистрация с подтверждением по электронной почте" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n" msgstr "" "\n" "

            Добро пожаловать на {{site_name}}!

            \n" "\n" "

            Ваше имя пользователя:{{username}} и пароль:{{password}}

            \n" "\n" "

            Прежде чем вы сможете войти в свой аккаунт, администратор должен его одобрить. Вы будете уведомлены по электронной почте.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132 msgid "A new account has been created for you on {{site_name}}" msgstr "Новая учетная запись была создана для вас на {{site_name}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148 msgid "" "\n" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Поздравляем!

            \n" "\n" "

            Администратор только что утвердил вашу учётную запись: {{username}} на {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159 msgid "Your account on {{site_name}} has been approved!" msgstr "Ваша учётная запись на {{site_name}} была одобрена!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170 msgid "User Approval Notification" msgstr "Уведомление утверждённого пользователя" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175 msgid "" "\n" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Здравствуйте,

            \n" "\n" "

            К сожалению администратор не утвердил вашу учётную запись: {{username}} на {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187 msgid "Your account on {{site_name}} has been unapproved!" msgstr "Ваша учётная запись на {{site_name}} не была одобрена!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198 msgid "Unapproved User Notification" msgstr "Уведомление не утверждённого пользователя" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "Форма редактирования профиля" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13 #: profile-builder-2.0/modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "Добавить новый" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "Форма редактирования профиля добавить новый" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "Редактировать формы редактирования профиля" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "Новая форма редактирования профиля" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "Формы редактирования профиля" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "Просмотр формы редактирования профиля" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "Поиск форм редактирования профиля" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "Не найдено формы редактирования профиля" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "Не найдено формы редактирования профиля в корзине" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138 #: profile-builder-2.0/modules/user-listing/userlisting.php:2115 msgid "Shortcode" msgstr "Шорткод" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159 #: profile-builder-2.0/modules/user-listing/userlisting.php:2136 msgid "(no title)" msgstr "(без названия)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178 #: profile-builder-2.0/modules/user-listing/userlisting.php:2156 msgid "The shortcode will be available after you publish this form." msgstr "Шорткод будет доступен после публикации этой формы." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180 #: profile-builder-2.0/modules/user-listing/userlisting.php:2158 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "Используйте этот шорткод на тех страницах, где бы вы хотели чтобы форма отображалась:" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184 #: profile-builder-2.0/modules/user-listing/userlisting.php:2162 msgid "Note: changing the form title also changes the shortcode!" msgstr "Примечание: изменение названия формы также меняет шорткод!" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190 #: profile-builder-2.0/modules/user-listing/userlisting.php:2195 msgid "Form Shortcode" msgstr "Шорткод формы" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "Перенаправить ли пользователя на определенную страницу или нет" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "Показать сообщения" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "Допустимое время для отображения успешных сообщений (в секундах)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 msgid "Specify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.com" msgstr "Укажите URL страницы, куда пользователи будут перенаправлены после обновления своего профиля, используя эту форму
            Используйте следующий формат: http://www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "После обновления профиля..." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "Добавить новое поле в список" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage Title (Type)" msgstr "
            Название (тип)
            " #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "Вы должны указать название формы, прежде чем создавать её" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "Регистрационная форма" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "Добавить новую регистрационную форму" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "Редактирование регистрационных форм" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "Новая регистрационная форма" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "Регистрационные формы" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "Просмотр регистрационной формы" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "Поиск регистрационных форм" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "Не найдено регистрационной формы" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "Не найдено регистрационной формы в корзине" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "Ранг по умолчанию" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "Установка ранга" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Choose what role the user will have after (s)he registered
            If not specified, defaults to the role set in the WordPress settings" msgstr "Укажите ранг пользователя после его (её) регистрации
            если не определено, то по умолчанию используются настройки WordPress" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "Автоматический вход" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Whether to automatically log in the newly registered user or not
            Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work" msgstr "Определяет будет ли автоматически входить вновь зарегистрированный пользователь или нет
            Работает только на одиночных сайтах с неактивными функциями \"Одобрение администратором\" и \"Подтверждение по электронной почте\"
            ПРЕДУПРЕЖДЕНИЕ: Кэширование регистрационной формы делает автоматический вход нерабочим" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "Specify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.com" msgstr "Укажите URL страницы, куда пользователи будут перенаправлены после регистрации с использованием этой формы
            Используйте следующий формат: http://www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "После регистрации..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1038 #: profile-builder-2.0/modules/user-listing/userlisting.php:1485 #: profile-builder-2.0/modules/user-listing/userlisting.php:1953 #: profile-builder-2.0/modules/user-listing/userlisting.php:2426 msgid "Search Users by All Fields" msgstr "Поиск пользователей по всем полям" #: profile-builder-2.0/modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "Добавить новый список пользователей" #: profile-builder-2.0/modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "Редактировать список пользователей" #: profile-builder-2.0/modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "Новый список пользователей" #: profile-builder-2.0/modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "Просмотр списка пользователей" #: profile-builder-2.0/modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "Поиск списка пользователей" #: profile-builder-2.0/modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "Не найдено списка пользователей" #: profile-builder-2.0/modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "Не найдено списка пользователей в корзине" #: profile-builder-2.0/modules/user-listing/userlisting.php:105 msgid "Display name as" msgstr "Показывать имя как" #: profile-builder-2.0/modules/user-listing/userlisting.php:150 #: profile-builder-2.0/modules/user-listing/userlisting.php:2223 msgid "Registration Date" msgstr "Дата регистрации" #: profile-builder-2.0/modules/user-listing/userlisting.php:151 #: profile-builder-2.0/modules/user-listing/userlisting.php:2228 msgid "Number of Posts" msgstr "Количество сообщений" #: profile-builder-2.0/modules/user-listing/userlisting.php:155 msgid "More Info" msgstr "Подробнее" #: profile-builder-2.0/modules/user-listing/userlisting.php:156 msgid "More Info Url" msgstr "Подробнее Url" #: profile-builder-2.0/modules/user-listing/userlisting.php:157 msgid "Avatar or Gravatar" msgstr "Avatar или Gravatar" #: profile-builder-2.0/modules/user-listing/userlisting.php:196 #: profile-builder-2.0/modules/user-listing/userlisting.php:227 msgid "Extra Functions" msgstr "Дополнительные функции" #: profile-builder-2.0/modules/user-listing/userlisting.php:199 msgid "Pagination" msgstr "Нумерация страниц" #: profile-builder-2.0/modules/user-listing/userlisting.php:200 msgid "Search all Fields" msgstr "Поиск по всем полям" #: profile-builder-2.0/modules/user-listing/userlisting.php:229 msgid "Go Back Link" msgstr "Перейти обратно по ссылке" #: profile-builder-2.0/modules/user-listing/userlisting.php:247 msgid "All-userlisting Template" msgstr "Шаблон всех списков пользователей" #: profile-builder-2.0/modules/user-listing/userlisting.php:250 msgid "Single-userlisting Template" msgstr "Шаблон одного списка пользователей" #: profile-builder-2.0/modules/user-listing/userlisting.php:733 msgid "First/Lastname" msgstr "Имя/Фамилия" #: profile-builder-2.0/modules/user-listing/userlisting.php:281 #: profile-builder-2.0/modules/user-listing/userlisting.php:739 msgid "Sign-up Date" msgstr "Дата регистрации" #: profile-builder-2.0/modules/user-listing/userlisting.php:748 #: profile-builder-2.0/modules/user-listing/userlisting.php:2226 msgid "Display Name" msgstr "Отображаемое имя" #: profile-builder-2.0/modules/user-listing/userlisting.php:280 #: profile-builder-2.0/modules/user-listing/userlisting.php:757 msgid "Posts" msgstr "Сообщений" #: profile-builder-2.0/modules/user-listing/userlisting.php:760 #: profile-builder-2.0/modules/user-listing/userlisting.php:2233 msgid "Aim" msgstr "Aim" #: profile-builder-2.0/modules/user-listing/userlisting.php:763 #: profile-builder-2.0/modules/user-listing/userlisting.php:2234 msgid "Yim" msgstr "Yim" #: profile-builder-2.0/modules/user-listing/userlisting.php:766 #: profile-builder-2.0/modules/user-listing/userlisting.php:2235 msgid "Jabber" msgstr "Jabber" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "Click here to see more information about this user" msgstr "Нажмите здесь, чтобы посмотреть более подробную информацию об этом пользователе" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "More..." msgstr "Больше..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1293 msgid "Click here to see more information about this user." msgstr "Нажмите здесь, чтобы посмотреть более подробную информацию об этом пользователе." #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 #: profile-builder-2.0/modules/user-listing/userlisting.php:1442 msgid "Click here to go back" msgstr "Нажмите здесь, чтобы вернуться" #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 msgid "Back" msgstr "Назад" #: profile-builder-2.0/modules/user-listing/userlisting.php:1472 msgid "«« First" msgstr "«« Первый" #: profile-builder-2.0/modules/user-listing/userlisting.php:1473 msgid "« Prev" msgstr "« Предыдущий" #: profile-builder-2.0/modules/user-listing/userlisting.php:1474 msgid "Next » " msgstr "Следующий » " #: profile-builder-2.0/modules/user-listing/userlisting.php:1475 msgid "Last »»" msgstr "Последний »»" #: profile-builder-2.0/modules/user-listing/userlisting.php:1504 msgid "You don't have any pagination settings on this userlisting!" msgstr "У вас нет никаких настроек разбивки в этом листе пользователей!" #: profile-builder-2.0/modules/user-listing/userlisting.php:1970 msgid "Search" msgstr "Поиск" #: profile-builder-2.0/modules/user-listing/userlisting.php:1971 msgid "Clear Results" msgstr "Очистить результаты" #: profile-builder-2.0/modules/user-listing/userlisting.php:2165 #: profile-builder-2.0/modules/user-listing/userlisting.php:2169 msgid "Extra shortcode parameters" msgstr "Дополнительные параметры шорткодов" #: profile-builder-2.0/modules/user-listing/userlisting.php:2172 msgid "displays users having a certain meta-value within a certain (extra) meta-field" msgstr "показывает пользователей, имеющих определённое мета-значение в пределах определённого (дополнительного) мета-поля" #: profile-builder-2.0/modules/user-listing/userlisting.php:2173 msgid "Example:" msgstr "Пример:" #: profile-builder-2.0/modules/user-listing/userlisting.php:2175 msgid "Remember though, that the field-value combination must exist in the database." msgstr "Помните, однако, что комбинаций значений поля должны существовать в базе данных." #: profile-builder-2.0/modules/user-listing/userlisting.php:2250 msgid "Random (very slow on large databases > 10K user)" msgstr "Произвольный (очень медленно на больших базах данных > 10K пользователей)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Roles to Display" msgstr "Отображение рангов" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Restrict the userlisting to these selected roles only
            If not specified, defaults to all existing roles" msgstr "Ограничить список пользователей только этими определёнными рангами
            Если не определено, по умолчанию для всех существующих рангов" #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Number of Users/Page" msgstr "Количество пользователей на странице" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Default Sorting Criteria" msgstr "Критерий сортировки по умолчанию" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Set the default sorting criteria
            This can temporarily be changed for each new session" msgstr "Установка критерия сортировки по умолчанию
            Может быть временно изменено для каждой новой сессии" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Default Sorting Order" msgstr "Порядок сортировки по умолчанию" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Set the default sorting order
            This can temporarily be changed for each new session" msgstr "Установка порядка сортировки по умолчанию
            Может быть временно изменено для каждой новой сессии" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Avatar Size (All-userlisting)" msgstr "Размер аватара (Всех списков пользователей)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Set the avatar size on the all-userlisting only" msgstr "Установка размера аватара только для всех списков пользователей" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Avatar Size (Single-userlisting)" msgstr "Размер аватара (Одного списка пользователей)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Set the avatar size on the single-userlisting only" msgstr "Установка размера аватара только для одного списка пользователей" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Visible only to logged in users?" msgstr "Отображать только для зарегистрированных пользователей?" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "The userlisting will only be visible only to the logged in users" msgstr "Список пользователей будет виден только зарегистрированным пользователям" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "Visible to following Roles" msgstr "Видимый для следующих рангов" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "The userlisting will only be visible to the following roles" msgstr "Список пользователей будет виден только следующим рангам" #: profile-builder-2.0/modules/user-listing/userlisting.php:2275 msgid "Userlisting Settings" msgstr "Установки списка пользователей" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "Вы должны активировать функцию Список пользователей (userlisting) с вкладки \"Модули\"!" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You can find it in the Profile Builder menu." msgstr "Вы можете найти его в меню Profile Builder." #: profile-builder-2.0/modules/user-listing/userlisting.php:2565 msgid "No results found!" msgstr "Ничего не найдено!"translation/profile-builder-es_ES.po000066600000634614152141651160013546 0ustar00msgid "" msgstr "" "PO-Revision-Date: 2017-08-11 10:55+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1\n" "X-Generator: Loco - https://localise.biz/\n" "Project-Id-Version: Profile Builder\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-08-11 10:54+0000\n" "Last-Translator: bubico aa \n" "Language-Team: Spanish (Spain)\n" "Language: es-ES" #: profile-builder-2.0/admin/general-settings.php:154 msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s." msgstr "" #: profile-builder-2.0/admin/general-settings.php:146 msgid "\"Roles Editor\" Activated:" msgstr "" #: profile-builder-2.0/features/roles-editor/roles-editor.php:300 msgid "M j, Y @ G:i" msgstr "" #: profile-builder-2.0/front-end/recover.php:117 msgid "Please enter your email address." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "" "Specify the format of the date when using Datepicker
            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, @
            If not specified, " "defaults to mm/dd/yy" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244 msgid "" "Individual redirects defined in shortcodes; " "redirect_priority=\"top\" parameter can be added in any " "shortcode, then that shortcode redirect will have priority over all other " "redirects." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1217 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." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "" #: profile-builder-2.0/admin/register-version.php:251 msgid "" "

            Your Profile Builder license is about to expire on %5$s. " "
            Please %1$sRenew Your Licence%2$s to continue receiving access to " "product downloads, automatic updates and support. %3$sRenew now and get " "40% off %4$s %6$sDismiss%7$s

            " msgstr "" #: profile-builder-2.0/admin/register-version.php:246 msgid "" "

            Your Profile Builder license has expired.
            Please " "%1$sRenew Your Licence%2$s to continue receiving access to product downloads," " automatic updates and support. %3$sRenew now and get 40% off %4$s " "%5$sDismiss%6$s

            " msgstr "" #: profile-builder-2.0/front-end/recover.php:159 msgid "" "You are already logged in. You can change your password on the edit profile " "form." msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "" #: profile-builder-2.0/features/functions.php:896 msgid "

            Also, you will be able to visit your site at " msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138 msgid "" "Privacy: I would like my site to appear in search engines, and in public " "listings around this network." msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36 #: profile-builder-2.0/modules/user-listing/userlisting.php:118 msgid "Blog URL" msgstr "" #: profile-builder-2.0/admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:222 msgid "Blog Details" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:239 msgid "" "Allow your users to have paid accounts with Profile Builder." " %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "" #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267 #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367 #: pb-add-on-woocommerce/index.php:493 msgid "Address line 2" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "Billing Fields" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "" "Select which WooCommerce Billing fields to display to the user ( drag and " "drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Billing Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Save the billing fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Billing Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Save the billing fields names" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Shipping Fields" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "" "Select which WooCommerce Shipping fields to display to the user ( drag and " "drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Shipping Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Save the shipping fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Shipping Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Save the shipping fields names" msgstr "" #: pb-add-on-woocommerce/index.php:305 msgid "Field Name" msgstr "" #: pb-add-on-woocommerce/index.php:369 msgid "Click to edit " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:368 msgid "is not a valid phone number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:377 msgid "is not a number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:382 msgid "must be a multiplier of " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:387 msgid "must be a greater than or equal to " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:392 msgid "must be less than or equal to " msgstr "" #: profile-builder-2.0/admin/add-ons.php:103 msgid "Available in Hobbyist and Pro Versions" msgstr "" #: profile-builder-2.0/admin/basic-info.php:99 msgid "Timepicker" msgstr "" #: profile-builder-2.0/admin/basic-info.php:100 msgid "Colorpicker" msgstr "" #: profile-builder-2.0/admin/basic-info.php:103 msgid "Currency Select" msgstr "" #: profile-builder-2.0/admin/basic-info.php:163 msgid "" "Set up a repeating group of fields on register and edit profile forms. Limit " "the number of repeated groups for each user role." msgstr "" #: profile-builder-2.0/admin/general-settings.php:59 msgid "" "This works with front-end forms only. Recommended to redirect WP default " "registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "" "Use this in conjunction with WordPress functions to display the value in the " "page of your choosing
            Auto-completed but in some cases editable (in " "which case it must be unique)
            Changing this might take long in case of a " "very big user-count" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Show Currency Symbol" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "" "Whether the currency symbol should be displayed after the currency name in " "the select option." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Show Post Type" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Posts from what post type will be displayed in the select." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:145 msgid "Allowable Values" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:145 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." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Error Message" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Set a custom error message that will be displayed to the user." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Time Format" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Specify the time format." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "" "Enter your Google Maps API key (
            Get your API " "key ). If more than one map fields are added to a form the API key from " "the first map displayed will be used." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "Default Latitude" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "" "The latitude at which the map should be displayed when no pins are attached." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "Default Longitude" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "" "The longitude at which the map should be displayed when no pins are attached." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Default Zoom Level" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "Map Height" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "The height of the map." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "Add your HTML (or text) content" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Phone Format" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "" "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and " "spaces." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Eg. (###) ###-####" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Empty field won't check for correct phone number." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Heading Tag" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Change heading field size on front-end forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Number Step Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "" "Step value 1 to allow only integers, 0.1 to allow integers and numbers with " "1 decimal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 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)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:564 msgid "Albania Lek" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:565 msgid "Afghanistan Afghani" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:566 msgid "Argentina Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:567 msgid "Aruba Guilder" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:568 msgid "Australia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:569 msgid "Azerbaijan New Manat" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:570 msgid "Bahamas Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:571 msgid "Barbados Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:572 msgid "Bangladeshi taka" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:573 msgid "Belarus Ruble" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:574 msgid "Belize Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:575 msgid "Bermuda Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:576 msgid "Bolivia Boliviano" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:577 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:578 msgid "Botswana Pula" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:579 msgid "Bulgaria Lev" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:580 msgid "Brazil Real" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:581 msgid "Brunei Darussalam Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:582 msgid "Cambodia Riel" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:583 msgid "Canada Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:584 msgid "Cayman Islands Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:585 msgid "Chile Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:586 msgid "China Yuan Renminbi" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:587 msgid "Colombia Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:588 msgid "Costa Rica Colon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:589 msgid "Croatia Kuna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:590 msgid "Cuba Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:591 msgid "Czech Republic Koruna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:592 msgid "Denmark Krone" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:593 msgid "Dominican Republic Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:594 msgid "East Caribbean Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:595 msgid "Egypt Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:596 msgid "El Salvador Colon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:597 msgid "Estonia Kroon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:598 msgid "Euro" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:599 msgid "Falkland Islands (Malvinas) Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:600 msgid "Fiji Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:601 msgid "Ghana Cedis" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:602 msgid "Gibraltar Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:603 msgid "Guatemala Quetzal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:604 msgid "Guernsey Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:605 msgid "Guyana Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:606 msgid "Honduras Lempira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:607 msgid "Hong Kong Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:608 msgid "Hungary Forint" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:609 msgid "Iceland Krona" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:610 msgid "India Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:611 msgid "Indonesia Rupiah" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:612 msgid "Iran Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:613 msgid "Isle of Man Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:614 msgid "Israel Shekel" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:615 msgid "Jamaica Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:616 msgid "Japan Yen" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:617 msgid "Jersey Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:618 msgid "Kazakhstan Tenge" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:619 msgid "Korea (North) Won" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:620 msgid "Korea (South) Won" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:621 msgid "Kyrgyzstan Som" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:622 msgid "Laos Kip" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:623 msgid "Latvia Lat" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:624 msgid "Lebanon Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:625 msgid "Liberia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:626 msgid "Lithuania Litas" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:627 msgid "Macedonia Denar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:628 msgid "Malaysia Ringgit" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:629 msgid "Mauritius Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:631 msgid "Mongolia Tughrik" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:632 msgid "Mozambique Metical" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:633 msgid "Namibia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:634 msgid "Nepal Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:635 msgid "Netherlands Antilles Guilder" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:636 msgid "New Zealand Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:637 msgid "Nicaragua Cordoba" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:638 msgid "Nigeria Naira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:639 msgid "Norway Krone" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:640 msgid "Oman Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:641 msgid "Pakistan Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:642 msgid "Panama Balboa" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:643 msgid "Paraguay Guarani" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:644 msgid "Peru Nuevo Sol" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:645 msgid "Philippines Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:646 msgid "Poland Zloty" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:647 msgid "Qatar Riyal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:648 msgid "Romania New Leu" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:649 msgid "Russia Ruble" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:650 msgid "Saint Helena Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:651 msgid "Saudi Arabia Riyal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:652 msgid "Serbia Dinar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:653 msgid "Seychelles Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:654 msgid "Singapore Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:655 msgid "Solomon Islands Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:656 msgid "Somalia Shilling" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:657 msgid "South Africa Rand" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:658 msgid "Sri Lanka Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:659 msgid "Sweden Krona" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:660 msgid "Switzerland Franc" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:661 msgid "Suriname Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:662 msgid "Syria Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:663 msgid "Taiwan New Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:664 msgid "Thailand Baht" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:665 msgid "Trinidad and Tobago Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:666 #: profile-builder-2.0/admin/manage-fields.php:667 msgid "Turkey Lira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:668 msgid "Tuvalu Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:669 msgid "Ukraine Hryvna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:670 msgid "United Kingdom Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:671 msgid "Uganda Shilling" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:672 msgid "US Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:673 msgid "Uruguay Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:674 msgid "Uzbekistan Som" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:675 msgid "Venezuela Bolivar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:676 msgid "Viet Nam Dong" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:677 msgid "Yemen Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:678 msgid "Zimbabwe Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1097 msgid "" "The meta-name can only contain lowercase letters, numbers, _ , - and no " "spaces.\n" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1314 msgid "Search Location" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78 msgid "Conditional Logic" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79 msgid "Conditional Rules" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448 msgid "This field has conditional logic enabled." msgstr "" #: profile-builder-2.0/front-end/class-formbuilder.php:124 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." msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bolivia, __( Plurinational State of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bonaire, __( Sint Eustatius and Saba" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brunei Darussalam" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cabo Verde" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cocos (Keeling) Islands" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo, __( the Democratic Republic of the" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cote dIvoire" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Falkland Islands (Malvinas)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Holy See (Vatican City State)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iran, __( Islamic Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Democratic Peoples Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lao Peoples Democratic Republic" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macedonia, __( the former Yugoslav Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Micronesia, __( Federated States of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Moldova, __( Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palestine, __( State of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Russian Federation" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Helena, __( Ascension and Tristan da Cunha" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Martin (French part)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sint Maarten (Dutch part)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Syrian Arab Republic" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Taiwan, __( Province of China" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tanzania, __( United Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Timor-Leste" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Venezuela, __( Bolivarian Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Viet Nam" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( British" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( U.S." msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:186 msgid "User Fields Tags" msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479 msgid "The users selected password at signup" msgstr "" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278 msgid "[{{site_name}}] Notice of Email Change" msgstr "" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289 msgid "Changed Email Address Notification" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Limit" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "" "Enable limit to the number of fields to be generated by users in front end " "forms " msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "General Limit" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "Limit reached message" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The maximum number of fields has been reached." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "" "The popup message to display when the limit of repeater groups is reached." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Limit per Role" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Leave 0 for unlimited." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Repeated field group" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Manage field or group of fields that will be repeatable." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259 msgid "Edit field group" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260 msgid "Repeatable fields saved!" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277 #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326 msgid "" "Please enter a unique field title.\n" msgstr "" #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267 msgid "Are you sure you want to delete this?" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:192 msgid "Sort Tags" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:201 #: profile-builder-2.0/modules/user-listing/userlisting.php:2308 msgid "Faceted Menus" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:202 msgid "User Count" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Choose the facet name that appears on the frontend" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Facet Type" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Choose the facet menu type" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Facet Meta" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Choose the meta field for the facet menu" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Narrow the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Expand the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Choose how multiple selections affect the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Visible choices" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Search Fields" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Choose the fields in which the Search Field will look in" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2330 msgid "Search Settings" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48 msgid "After Edit Profile" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Successful Email Confirmation" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Successful Password Reset" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "User ID / Username" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131 msgid "Redirect Type" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Redirect URL" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "" "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}," " {{user_nicename}}, {{http_referer}}" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241 msgid "Individual User Redirects" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84 msgid "... Choose" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242 msgid "User Role based Redirects" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243 msgid "Global Redirects" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145 msgid "Redirect Default WordPress Forms and Pages" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157 msgid "How does this work?" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 msgid "
            User Role
            Redirect
            URL
            " msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "
            Redirect
            URL
            " msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236 msgid "" "These redirects happen after a successful action, like registration or after " "a successful login." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238 msgid "Which redirect happens depends on the following priority:" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247 msgid "Redirect Default WordPress forms and pages" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248 msgid "" "With these you can redirect various WordPress forms and pages to pages " "created with profile builder." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250 msgid "Available tags for dynamic URLs" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251 msgid "" "You use the following tags in your URLs to redirect users to various pages." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253 msgid "generates a url of the current website homepage." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254 msgid "" "in WordPress the site url can be different then the home " "url" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255 msgid "the ID of the user" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256 msgid "" "the URL sanitized version of the username, the user nicename can be safely " "used in URLs since it can't contain special characters or spaces." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257 msgid "the URL of the previously visited page" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352 msgid "You can't add duplicate redirects!" msgstr "" #: profile-builder-2.0/admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "" #: profile-builder-2.0/admin/basic-info.php:37 msgid "Friction-less login using %s shortcode or a widget." msgstr "" #: profile-builder-2.0/admin/basic-info.php:41 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "" #: profile-builder-2.0/admin/basic-info.php:45 msgid "Straight forward edit profile forms using %s shortcode." msgstr "" #: profile-builder-2.0/admin/basic-info.php:58 msgid "Allow users to recover their password in the front-end using the %s." msgstr "" #: profile-builder-2.0/admin/basic-info.php:140 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." msgstr "" #: profile-builder-2.0/admin/general-settings.php:115 msgid "\"Admin Approval\" on User Role:" msgstr "" #: profile-builder-2.0/admin/general-settings.php:134 msgid "Select on what user roles to activate Admin Approval." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Display on PB forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Login" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Register" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Recover Password" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Display on default WP forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Login" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Register" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Recover Password" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default option of the field" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1219 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." msgstr "" #: profile-builder-2.0/features/functions.php:678 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458 msgid "Please enter a (valid) reCAPTCHA value" msgstr "" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 msgid "Click the BACK button on your browser, and try again." msgstr "" #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78 #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87 msgid "Sorry, you cannot upload this file type for this field." msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:376 msgid "You do not have permission to view this user list." msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:389 msgid "You do not have the required user role to view this user list." msgstr "" #: profile-builder-2.0/admin/admin-functions.php:200 msgid "" "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more " "features, less bugs and better support for everyone. " msgstr "" #: profile-builder-2.0/admin/manage-fields.php:84 msgid "" ". Extra Field Types are available in Hobbyist or PRO " "versions." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:131 msgid "" "The site key from Google, www.google.com/recaptcha" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "" "The secret key from Google, www.google.com/recaptcha" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1025 msgid "" "You must enter the secret key\n" msgstr "" #: profile-builder-2.0/admin/add-ons.php:43 #: profile-builder-2.0/admin/add-ons.php:140 msgid "Add-On is active" msgstr "" #: profile-builder-2.0/admin/add-ons.php:44 #: profile-builder-2.0/admin/add-ons.php:138 msgid "Add-On is inactive" msgstr "" #: profile-builder-2.0/admin/add-ons.php:47 msgid "Add-On has been deactivated." msgstr "" #: profile-builder-2.0/admin/add-ons.php:153 #: profile-builder-2.0/admin/add-ons.php:251 #: profile-builder-2.0/admin/pms-cross-promotion.php:141 #: profile-builder-2.0/admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "" #: profile-builder-2.0/admin/add-ons.php:162 msgid "Upgrade Profile Builder" msgstr "" #: profile-builder-2.0/admin/add-ons.php:163 msgid "Not compatible with Profile Builder" msgstr "" #: profile-builder-2.0/admin/add-ons.php:171 msgid "Not compatible with your version of Profile Builder." msgstr "" #: profile-builder-2.0/admin/add-ons.php:172 msgid "Minimum required Profile Builder version:" msgstr "" #: profile-builder-2.0/admin/add-ons.php:177 msgid "" "Could not install add-on. Retry or install " "manually." msgstr "" #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117 msgid "" "\n" "

            {{username}} has requested a password change via the password reset " "feature.

            \n" "

            His/her new password is: {{password}}

            \n" msgstr "" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141 msgid "Admin Notification for User Password Reset" msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46 msgid "Reset Key" msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47 msgid "Reset Url" msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48 msgid "Reset Link" msgstr "" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204 msgid "" "\n" "

            Someone requested that the password be reset for the following account: " "{{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            " "\n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" msgstr "" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset Successfully" msgstr "" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256 msgid "Password Reset Success Email" msgstr "" #: profile-builder-2.0/features/functions.php:909 msgid "

            You can visit your site at " msgstr "

            Puedes visitar tu sitio en" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "Título del sitio" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "Si, me gustaría crear un sitio nuevo" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579 msgid "Welcome to %1$s!


            Your username is:%2$s" msgstr "¡Bienvenido a %1$s!


            Tu nombre de usuarui es:%2$s" #: profile-builder-2.0/modules/user-listing/userlisting.php:1320 msgid "View Map" msgstr "Ver mapa" #: profile-builder-2.0/admin/add-ons.php:105 msgid "Available in All Versions" msgstr "Disponible en todas las versiones" #: profile-builder-2.0/admin/add-ons.php:148 msgid "Learn More" msgstr "Aprende más" #: profile-builder-2.0/admin/basic-info.php:109 msgid "Number" msgstr "Número" #: profile-builder-2.0/admin/basic-info.php:114 msgid "Validation" msgstr "Validación" #: profile-builder-2.0/admin/basic-info.php:115 msgid "Map" msgstr "Mapa" #: profile-builder-2.0/admin/basic-info.php:116 msgid "HTML" msgstr "HTML" #: profile-builder-2.0/admin/basic-info.php:162 #: profile-builder-2.0/modules/modules.php:117 msgid "Repeater Fields" msgstr "Campos repetitivos" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Google Maps API Key" msgstr "Clave de la API de Google Maps" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "HTML Content" msgstr "Contenido HTML" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min Number Value" msgstr "Valor mínimo" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Leave it empty for no min value" msgstr "Dejar vacío para ningún valor mínimo" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max Number Value" msgstr "Valor máximo" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "Valor máximo permitido (0 para permitir sólo números negativos)" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Leave it empty for no max value" msgstr "Dejar vacío para ningún valor máximo" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Leave it empty for no restriction" msgstr "Déjalo vacío para ninguna restricción" #: profile-builder-2.0/admin/manage-fields.php:630 msgid "Mexico Peso" msgstr "Peso mexicano" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754 msgid "You are not allowed to do this." msgstr "No se te permite hacer esto." #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460 msgid "Search Users" msgstr "Buscar usuarios" #: profile-builder-2.0/features/functions.php:685 msgid "Incorrect phone number" msgstr "Número de teléfono incorrecto" #: profile-builder-2.0/front-end/extra-fields/map/map.php:46 #: profile-builder-2.0/front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "Añade la clave de la API de Google Maps para este campo." #: profile-builder-2.0/front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "Algo salió mal. Por favor inténtalo de nuevo." #: profile-builder-2.0/front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "Por favor ingresa números solamente" #: profile-builder-2.0/modules/user-listing/userlisting.php:1553 msgid "Show All" msgstr "Mostrar todos" #: profile-builder-2.0/modules/user-listing/userlisting.php:1710 msgid "No options available" msgstr "No hay opciones disponibles" #: profile-builder-2.0/modules/user-listing/userlisting.php:1861 msgid "Remove All Filters" msgstr "Quitar todos los filtros" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Label" msgstr "Etiqueta" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Behaviour" msgstr "Comportamiento" #: pb-add-on-woocommerce/billing-fields.php:8 #: pb-add-on-woocommerce/shipping-fields.php:8 msgid "Company Name" msgstr "Nombre de la empresa" #: pb-add-on-woocommerce/billing-fields.php:9 #: pb-add-on-woocommerce/shipping-fields.php:9 msgid "Address" msgstr "Dirección" #: pb-add-on-woocommerce/billing-fields.php:5 #: pb-add-on-woocommerce/shipping-fields.php:5 msgid "Country" msgstr "País" #: pb-add-on-woocommerce/billing-fields.php:11 #: pb-add-on-woocommerce/shipping-fields.php:11 msgid "Town / City" msgstr "Ciudad" #: pb-add-on-woocommerce/billing-fields.php:12 #: pb-add-on-woocommerce/shipping-fields.php:12 msgid "State / County" msgstr "Estado / Región" #: pb-add-on-woocommerce/billing-fields.php:13 #: pb-add-on-woocommerce/shipping-fields.php:13 msgid "Postcode / Zip" msgstr "Código Postal" #: pb-add-on-woocommerce/billing-fields.php:14 msgid "Email Address" msgstr "Correo electrónico" #: pb-add-on-woocommerce/billing-fields.php:15 msgid "Phone" msgstr "Teléfono" #: pb-add-on-woocommerce/billing-fields.php:278 msgid "Ship to a different address?" msgstr "¿Enviar a una dirección diferente?" #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437 msgid "Billing Address" msgstr "Dirección de Facturación" #: pb-add-on-woocommerce/index.php:169 msgid "Displays customer billing fields in front-end. " msgstr "Mostrar campos de facturación del cliente en el front-end" #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438 msgid "Shipping Address" msgstr "Dirección de envío" #: pb-add-on-woocommerce/index.php:173 msgid "Displays customer shipping fields in front-end. " msgstr "Mostrar campos de envío del cliente en el front-end" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Display on WooCommerce Checkout" msgstr "Mostrar en el Checkout de Woocommerce" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "" "Whether the field should be added to the WooCommerce checkout form or not" msgstr "" "Ya sea que el campo debe ser añadido a la forma de pago WooCommerce o no" #: pb-add-on-woocommerce/index.php:541 msgid "" "WooCommerce needs to be installed and activated for Profile Builder - " "WooCommerce Sync Add-on to work!" msgstr "" "WooCommerce necesita estar instalado y activado para que Profile Builder - " "WooCommerce Sync Add-on trabaje correctamente!" #: pb-add-on-woocommerce/woosync-page.php:23 #: pb-add-on-woocommerce/woosync-page.php:70 msgid "WooCommerce Sync" msgstr "WooCommerce Sync" #: pb-add-on-woocommerce/woosync-page.php:76 msgid "Choose Register form to display on My Account page:" msgstr "" "Seleccione el formulario de Registro a mostrar en la página \"Mi cuenta\"" #: pb-add-on-woocommerce/woosync-page.php:81 msgid "Default Register" msgstr "Registro por defecto" #: pb-add-on-woocommerce/woosync-page.php:103 msgid "" "Select which Profile Builder Register form to display on My Account page " "from WooCommerce.
            This will also add the Profile Builder Login form to " "MyAccount page." msgstr "" "Selecciona el formulario de Profile Builder para mostrar en la página \"Mi " "cuenta\" de WooCommerce.
            \n" "Esto también añadirá el formulario de Profile Builder Login a la página \"Mi " "cuenta\"." #: pb-add-on-woocommerce/woosync-page.php:110 msgid "Choose Edit Profile form to display on My Account page:" msgstr "" "Elige el formulario Editar Perfil para que aparezca en la pagina de Mi " "Cuenta:" #: pb-add-on-woocommerce/woosync-page.php:115 msgid "Default Edit Profile" msgstr "Perfil de Editar Predeterminado" #: pb-add-on-woocommerce/woosync-page.php:137 msgid "" "Select which Profile Builder Edit-profile form to display on My Account page " "from WooCommerce." msgstr "" "Selecciona que formulario de Editar-perfil de Profile Builder para mostrar " "en la pagina Mi cuenta de WooComerce" #: profile-builder-2.0/admin/add-ons.php:190 msgid "Recommended Plugins" msgstr "Plugins recomendados" #: profile-builder-2.0/admin/add-ons.php:219 #: profile-builder-2.0/admin/pms-cross-promotion.php:102 msgid "Free" msgstr "Gratis" #: profile-builder-2.0/admin/add-ons.php:221 msgid "" "Accept user payments, create subscription plans and restrict content on your " "membership site." msgstr "" "Aceptar pagos de usuarios, crear planes de suscripciones y restringir el " "contenido en tu sitio de afiliación" #: profile-builder-2.0/admin/add-ons.php:222 #: profile-builder-2.0/admin/pms-cross-promotion.php:105 msgid "More Details" msgstr "Mas detalles" #: profile-builder-2.0/admin/add-ons.php:240 #: profile-builder-2.0/admin/pms-cross-promotion.php:88 #: profile-builder-2.0/admin/pms-cross-promotion.php:123 #: profile-builder-2.0/admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "Plugin desactivado" #: profile-builder-2.0/admin/add-ons.php:242 #: profile-builder-2.0/admin/pms-cross-promotion.php:87 #: profile-builder-2.0/admin/pms-cross-promotion.php:125 #: profile-builder-2.0/admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "Plugin activado" #: profile-builder-2.0/admin/add-ons.php:256 #: profile-builder-2.0/admin/pms-cross-promotion.php:146 msgid "" "Could not install plugin. Retry or install " "manually." msgstr "" "No se pudo instalar el plugin. Reintente o " "instale manualmente." #: profile-builder-2.0/admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "Cuentas de Pago" #: profile-builder-2.0/admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "Paid Member Subscription - un plugin gratuito de WordPress" #: profile-builder-2.0/admin/pms-cross-promotion.php:37 msgid "" "With the new Subscriptions Field in Profile Builder, your registration forms " "will allow your users to sign up for paid accounts." msgstr "" "Con el nuevo Campo de Suscripciones en Profile Builder, tus formularios de " "registro le permitirán a tus usuario registrarse en cuentas de paga." #: profile-builder-2.0/admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "Suscripciones Gratuitas y de Pago." #: profile-builder-2.0/admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "Contenido restringido" #: profile-builder-2.0/admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "Gestion de Miembros" #: profile-builder-2.0/admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "Plantillas de Correo Electronico" #: profile-builder-2.0/admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "Administrar cuenta" #: profile-builder-2.0/admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "Administrar suscripción" #: profile-builder-2.0/admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "Administrar pago" #: profile-builder-2.0/admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "El plugin está activado" #: profile-builder-2.0/admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "El plugin ha sido activado" #: profile-builder-2.0/admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "El plugin ha sido desactivado" #: profile-builder-2.0/admin/pms-cross-promotion.php:104 msgid "" "Accept user payments, create subscription plans and restrict content on your " "website." msgstr "" "Aceptar pagos de los usuarios , crear planes de suscripción y restringir el " "contenido de su página web." #: profile-builder-2.0/admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "Configuración Rapida Paso a Paso" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401 msgid "" "To activate your user, please click the following link:

            %s%s%s

            " "After you activate it you will receive yet *another email* with your login." msgstr "" "Para activar tu usuario, por favor haz click en el siguiente link: :

            " "%s%s%s

            Después de activarlo, recibirás *otro e-mail* con tu login." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45 msgid "After Login" msgstr "Después de Iniciar sesión" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46 msgid "After Logout" msgstr "Después de Terminar sesión" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47 msgid "After Registration" msgstr "Después de Registrarse" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55 msgid "User ID" msgstr "Identidicación del usuario" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61 msgid "User ID or Username" msgstr "ID o Nombre de Usuario" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "Please select and enter the ID or username of your user." msgstr "Por favor elije e ingrese el ID o el nombre de usuario de su cuenta." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 msgid "Select a user role." msgstr "Selecciona un rol de usuario." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133 msgid "Login ( wp_login.php )" msgstr "Iniciar sesión ( wp_login.php )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134 msgid "Register ( wp-login.php?action=register )" msgstr "Registrarse ( wp-login.php?action=register )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "Perdí mi contraseña ( wp-login.php?action=lostpassword )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "Archivos del autor ( http://sitename.com/author/admin )" #: profile-builder-2.0/admin/manage-fields.php:282 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Afghanistan" msgstr "Afghanistan" #: profile-builder-2.0/admin/manage-fields.php:283 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aland Islands" msgstr "Aland Islands" #: profile-builder-2.0/admin/manage-fields.php:284 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Albania" msgstr "Albania" #: profile-builder-2.0/admin/manage-fields.php:285 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Algeria" msgstr "Algeria" #: profile-builder-2.0/admin/manage-fields.php:286 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "American Samoa" msgstr "American Samoa" #: profile-builder-2.0/admin/manage-fields.php:287 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Andorra" msgstr "Andorra" #: profile-builder-2.0/admin/manage-fields.php:288 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Angola" msgstr "Angola" #: profile-builder-2.0/admin/manage-fields.php:289 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Anguilla" msgstr "Anguilla" #: profile-builder-2.0/admin/manage-fields.php:290 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antarctica" msgstr "Antarctica" #: profile-builder-2.0/admin/manage-fields.php:291 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" #: profile-builder-2.0/admin/manage-fields.php:292 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Argentina" msgstr "Argentina" #: profile-builder-2.0/admin/manage-fields.php:293 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Armenia" msgstr "Armenia" #: profile-builder-2.0/admin/manage-fields.php:294 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aruba" msgstr "Aruba" #: profile-builder-2.0/admin/manage-fields.php:295 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Australia" msgstr "Australia" #: profile-builder-2.0/admin/manage-fields.php:296 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Austria" msgstr "Austria" #: profile-builder-2.0/admin/manage-fields.php:297 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Azerbaijan" msgstr "Azerbaijan" #: profile-builder-2.0/admin/manage-fields.php:298 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahamas" msgstr "Bahamas" #: profile-builder-2.0/admin/manage-fields.php:299 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahrain" msgstr "Bahrain" #: profile-builder-2.0/admin/manage-fields.php:300 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bangladesh" msgstr "Bangladesh" #: profile-builder-2.0/admin/manage-fields.php:301 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Barbados" msgstr "Barbados" #: profile-builder-2.0/admin/manage-fields.php:302 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belarus" msgstr "Belarus" #: profile-builder-2.0/admin/manage-fields.php:303 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belgium" msgstr "Belgium" #: profile-builder-2.0/admin/manage-fields.php:304 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belize" msgstr "Belize" #: profile-builder-2.0/admin/manage-fields.php:305 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Benin" msgstr "Benin" #: profile-builder-2.0/admin/manage-fields.php:306 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bermuda" msgstr "Bermuda" #: profile-builder-2.0/admin/manage-fields.php:307 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bhutan" msgstr "Bhutan" #: profile-builder-2.0/admin/manage-fields.php:308 msgid "Bolivia" msgstr "Bolivia" #: profile-builder-2.0/admin/manage-fields.php:309 msgid "Bonaire, Saint Eustatius and Saba" msgstr "Bonaire, Saint Eustatius and Saba" #: profile-builder-2.0/admin/manage-fields.php:310 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bosnia and Herzegovina" msgstr "Bosnia and Herzegovina" #: profile-builder-2.0/admin/manage-fields.php:311 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Botswana" msgstr "Botswana" #: profile-builder-2.0/admin/manage-fields.php:312 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bouvet Island" msgstr "Bouvet Island" #: profile-builder-2.0/admin/manage-fields.php:313 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brazil" msgstr "Brazil" #: profile-builder-2.0/admin/manage-fields.php:314 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: profile-builder-2.0/admin/manage-fields.php:315 msgid "British Virgin Islands" msgstr "British Virgin Islands" #: profile-builder-2.0/admin/manage-fields.php:316 msgid "Brunei" msgstr "Brunei" #: profile-builder-2.0/admin/manage-fields.php:317 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bulgaria" msgstr "Bulgaria" #: profile-builder-2.0/admin/manage-fields.php:318 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burkina Faso" msgstr "Burkina Faso" #: profile-builder-2.0/admin/manage-fields.php:319 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burundi" msgstr "Burundi" #: profile-builder-2.0/admin/manage-fields.php:320 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cambodia" msgstr "Cambodia" #: profile-builder-2.0/admin/manage-fields.php:321 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cameroon" msgstr "Cameroon" #: profile-builder-2.0/admin/manage-fields.php:322 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Canada" msgstr "Canada" #: profile-builder-2.0/admin/manage-fields.php:323 msgid "Cape Verde" msgstr "Cape Verde" #: profile-builder-2.0/admin/manage-fields.php:324 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cayman Islands" msgstr "Cayman Islands" #: profile-builder-2.0/admin/manage-fields.php:325 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Central African Republic" msgstr "Central African Republic" #: profile-builder-2.0/admin/manage-fields.php:326 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chad" msgstr "Chad" #: profile-builder-2.0/admin/manage-fields.php:327 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chile" msgstr "Chile" #: profile-builder-2.0/admin/manage-fields.php:328 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "China" msgstr "China" #: profile-builder-2.0/admin/manage-fields.php:329 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Christmas Island" msgstr "Christmas Island" #: profile-builder-2.0/admin/manage-fields.php:330 msgid "Cocos Islands" msgstr "Cocos Islands" #: profile-builder-2.0/admin/manage-fields.php:331 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Colombia" msgstr "Colombia" #: profile-builder-2.0/admin/manage-fields.php:332 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Comoros" msgstr "Comoros" #: profile-builder-2.0/admin/manage-fields.php:333 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cook Islands" msgstr "Cook Islands" #: profile-builder-2.0/admin/manage-fields.php:334 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Costa Rica" msgstr "Costa Rica" #: profile-builder-2.0/admin/manage-fields.php:335 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Croatia" msgstr "Croatia" #: profile-builder-2.0/admin/manage-fields.php:336 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cuba" msgstr "Cuba" #: profile-builder-2.0/admin/manage-fields.php:337 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Curacao" msgstr "Curacao" #: profile-builder-2.0/admin/manage-fields.php:338 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cyprus" msgstr "Cyprus" #: profile-builder-2.0/admin/manage-fields.php:339 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Czech Republic" msgstr "Czech Republic" #: profile-builder-2.0/admin/manage-fields.php:340 msgid "Democratic Republic of the Congo" msgstr "Democratic Republic of the Congo" #: profile-builder-2.0/admin/manage-fields.php:341 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Denmark" msgstr "Denmark" #: profile-builder-2.0/admin/manage-fields.php:342 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Djibouti" msgstr "Djibouti" #: profile-builder-2.0/admin/manage-fields.php:343 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominica" msgstr "Dominica" #: profile-builder-2.0/admin/manage-fields.php:344 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominican Republic" msgstr "Dominican Republic" #: profile-builder-2.0/admin/manage-fields.php:345 msgid "East Timor" msgstr "East Timor" #: profile-builder-2.0/admin/manage-fields.php:346 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ecuador" msgstr "Ecuador" #: profile-builder-2.0/admin/manage-fields.php:347 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Egypt" msgstr "Egypt" #: profile-builder-2.0/admin/manage-fields.php:348 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "El Salvador" msgstr "El Salvador" #: profile-builder-2.0/admin/manage-fields.php:349 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: profile-builder-2.0/admin/manage-fields.php:350 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Eritrea" msgstr "Eritrea" #: profile-builder-2.0/admin/manage-fields.php:351 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Estonia" msgstr "Estonia" #: profile-builder-2.0/admin/manage-fields.php:352 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ethiopia" msgstr "Ethiopia" #: profile-builder-2.0/admin/manage-fields.php:353 msgid "Falkland Islands" msgstr "Falkland Islands" #: profile-builder-2.0/admin/manage-fields.php:354 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Faroe Islands" msgstr "Faroe Islands" #: profile-builder-2.0/admin/manage-fields.php:355 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Fiji" msgstr "Fiji" #: profile-builder-2.0/admin/manage-fields.php:356 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Finland" msgstr "Finland" #: profile-builder-2.0/admin/manage-fields.php:357 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "France" msgstr "France" #: profile-builder-2.0/admin/manage-fields.php:358 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Guiana" msgstr "French Guiana" #: profile-builder-2.0/admin/manage-fields.php:359 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Polynesia" msgstr "French Polynesia" #: profile-builder-2.0/admin/manage-fields.php:360 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Southern Territories" msgstr "French Southern Territories" #: profile-builder-2.0/admin/manage-fields.php:361 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gabon" msgstr "Gabon" #: profile-builder-2.0/admin/manage-fields.php:362 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gambia" msgstr "Gambia" #: profile-builder-2.0/admin/manage-fields.php:363 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Georgia" msgstr "Georgia" #: profile-builder-2.0/admin/manage-fields.php:364 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Germany" msgstr "Germany" #: profile-builder-2.0/admin/manage-fields.php:365 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ghana" msgstr "Ghana" #: profile-builder-2.0/admin/manage-fields.php:366 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gibraltar" msgstr "Gibraltar" #: profile-builder-2.0/admin/manage-fields.php:367 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greece" msgstr "Greece" #: profile-builder-2.0/admin/manage-fields.php:368 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greenland" msgstr "Greenland" #: profile-builder-2.0/admin/manage-fields.php:369 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Grenada" msgstr "Grenada" #: profile-builder-2.0/admin/manage-fields.php:370 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guadeloupe" msgstr "Guadeloupe" #: profile-builder-2.0/admin/manage-fields.php:371 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guam" msgstr "Guam" #: profile-builder-2.0/admin/manage-fields.php:372 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guatemala" msgstr "Guatemala" #: profile-builder-2.0/admin/manage-fields.php:373 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guernsey" msgstr "Guernsey" #: profile-builder-2.0/admin/manage-fields.php:374 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea" msgstr "Guinea" #: profile-builder-2.0/admin/manage-fields.php:375 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: profile-builder-2.0/admin/manage-fields.php:376 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guyana" msgstr "Guyana" #: profile-builder-2.0/admin/manage-fields.php:377 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Haiti" msgstr "Haiti" #: profile-builder-2.0/admin/manage-fields.php:378 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Heard Island and McDonald Islands" msgstr "Heard Island and McDonald Islands" #: profile-builder-2.0/admin/manage-fields.php:379 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Honduras" msgstr "Honduras" #: profile-builder-2.0/admin/manage-fields.php:380 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hong Kong" msgstr "Hong Kong" #: profile-builder-2.0/admin/manage-fields.php:381 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hungary" msgstr "Hungary" #: profile-builder-2.0/admin/manage-fields.php:382 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iceland" msgstr "Iceland" #: profile-builder-2.0/admin/manage-fields.php:383 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "India" msgstr "India" #: profile-builder-2.0/admin/manage-fields.php:384 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Indonesia" msgstr "Indonesia" #: profile-builder-2.0/admin/manage-fields.php:385 msgid "Iran" msgstr "Iran" #: profile-builder-2.0/admin/manage-fields.php:386 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iraq" msgstr "Iraq" #: profile-builder-2.0/admin/manage-fields.php:387 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ireland" msgstr "Ireland" #: profile-builder-2.0/admin/manage-fields.php:388 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Isle of Man" msgstr "Isle of Man" #: profile-builder-2.0/admin/manage-fields.php:389 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Israel" msgstr "Israel" #: profile-builder-2.0/admin/manage-fields.php:390 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Italy" msgstr "Italy" #: profile-builder-2.0/admin/manage-fields.php:391 msgid "Ivory Coast" msgstr "Ivory Coast" #: profile-builder-2.0/admin/manage-fields.php:392 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jamaica" msgstr "Jamaica" #: profile-builder-2.0/admin/manage-fields.php:393 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Japan" msgstr "Japan" #: profile-builder-2.0/admin/manage-fields.php:394 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jersey" msgstr "Jersey" #: profile-builder-2.0/admin/manage-fields.php:395 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jordan" msgstr "Jordan" #: profile-builder-2.0/admin/manage-fields.php:396 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kazakhstan" msgstr "Kazakhstan" #: profile-builder-2.0/admin/manage-fields.php:397 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kenya" msgstr "Kenya" #: profile-builder-2.0/admin/manage-fields.php:398 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kiribati" msgstr "Kiribati" #: profile-builder-2.0/admin/manage-fields.php:399 msgid "Kosovo" msgstr "Kosovo" #: profile-builder-2.0/admin/manage-fields.php:400 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kuwait" msgstr "Kuwait" #: profile-builder-2.0/admin/manage-fields.php:401 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: profile-builder-2.0/admin/manage-fields.php:402 msgid "Laos" msgstr "Laos" #: profile-builder-2.0/admin/manage-fields.php:403 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Latvia" msgstr "Latvia" #: profile-builder-2.0/admin/manage-fields.php:404 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lebanon" msgstr "Lebanon" #: profile-builder-2.0/admin/manage-fields.php:405 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lesotho" msgstr "Lesotho" #: profile-builder-2.0/admin/manage-fields.php:406 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liberia" msgstr "Liberia" #: profile-builder-2.0/admin/manage-fields.php:407 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Libya" msgstr "Libya" #: profile-builder-2.0/admin/manage-fields.php:408 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liechtenstein" msgstr "Liechtenstein" #: profile-builder-2.0/admin/manage-fields.php:409 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lithuania" msgstr "Lithuania" #: profile-builder-2.0/admin/manage-fields.php:410 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Luxembourg" msgstr "Luxembourg" #: profile-builder-2.0/admin/manage-fields.php:411 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macao" msgstr "Macao" #: profile-builder-2.0/admin/manage-fields.php:412 msgid "Macedonia" msgstr "Macedonia" #: profile-builder-2.0/admin/manage-fields.php:413 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Madagascar" msgstr "Madagascar" #: profile-builder-2.0/admin/manage-fields.php:414 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malawi" msgstr "Malawi" #: profile-builder-2.0/admin/manage-fields.php:415 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malaysia" msgstr "Malaysia" #: profile-builder-2.0/admin/manage-fields.php:416 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Maldives" msgstr "Maldives" #: profile-builder-2.0/admin/manage-fields.php:417 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mali" msgstr "Mali" #: profile-builder-2.0/admin/manage-fields.php:418 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malta" msgstr "Malta" #: profile-builder-2.0/admin/manage-fields.php:419 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Marshall Islands" msgstr "Marshall Islands" #: profile-builder-2.0/admin/manage-fields.php:420 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Martinique" msgstr "Martinique" #: profile-builder-2.0/admin/manage-fields.php:421 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritania" msgstr "Mauritania" #: profile-builder-2.0/admin/manage-fields.php:422 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritius" msgstr "Mauritius" #: profile-builder-2.0/admin/manage-fields.php:423 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mayotte" msgstr "Mayotte" #: profile-builder-2.0/admin/manage-fields.php:424 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mexico" msgstr "Mexico" #: profile-builder-2.0/admin/manage-fields.php:425 msgid "Micronesia" msgstr "Micronesia" #: profile-builder-2.0/admin/manage-fields.php:426 msgid "Moldova" msgstr "Moldova" #: profile-builder-2.0/admin/manage-fields.php:427 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Monaco" msgstr "Monaco" #: profile-builder-2.0/admin/manage-fields.php:428 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mongolia" msgstr "Mongolia" #: profile-builder-2.0/admin/manage-fields.php:429 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montenegro" msgstr "Montenegro" #: profile-builder-2.0/admin/manage-fields.php:430 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montserrat" msgstr "Montserrat" #: profile-builder-2.0/admin/manage-fields.php:431 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Morocco" msgstr "Morocco" #: profile-builder-2.0/admin/manage-fields.php:432 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mozambique" msgstr "Mozambique" #: profile-builder-2.0/admin/manage-fields.php:433 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Myanmar" msgstr "Myanmar" #: profile-builder-2.0/admin/manage-fields.php:434 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Namibia" msgstr "Namibia" #: profile-builder-2.0/admin/manage-fields.php:435 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nauru" msgstr "Nauru" #: profile-builder-2.0/admin/manage-fields.php:436 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nepal" msgstr "Nepal" #: profile-builder-2.0/admin/manage-fields.php:437 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Netherlands" msgstr "Netherlands" #: profile-builder-2.0/admin/manage-fields.php:438 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Caledonia" msgstr "New Caledonia" #: profile-builder-2.0/admin/manage-fields.php:439 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Zealand" msgstr "New Zealand" #: profile-builder-2.0/admin/manage-fields.php:440 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nicaragua" msgstr "Nicaragua" #: profile-builder-2.0/admin/manage-fields.php:441 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niger" msgstr "Niger" #: profile-builder-2.0/admin/manage-fields.php:442 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nigeria" msgstr "Nigeria" #: profile-builder-2.0/admin/manage-fields.php:443 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niue" msgstr "Niue" #: profile-builder-2.0/admin/manage-fields.php:444 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norfolk Island" msgstr "Norfolk Island" #: profile-builder-2.0/admin/manage-fields.php:445 msgid "North Korea" msgstr "North Korea" #: profile-builder-2.0/admin/manage-fields.php:446 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: profile-builder-2.0/admin/manage-fields.php:447 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norway" msgstr "Norway" #: profile-builder-2.0/admin/manage-fields.php:448 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Oman" msgstr "Oman" #: profile-builder-2.0/admin/manage-fields.php:449 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pakistan" msgstr "Pakistan" #: profile-builder-2.0/admin/manage-fields.php:450 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palau" msgstr "Palau" #: profile-builder-2.0/admin/manage-fields.php:451 msgid "Palestinian Territory" msgstr "Palestinian Territory" #: profile-builder-2.0/admin/manage-fields.php:452 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Panama" msgstr "Panama" #: profile-builder-2.0/admin/manage-fields.php:453 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: profile-builder-2.0/admin/manage-fields.php:454 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Paraguay" msgstr "Paraguay" #: profile-builder-2.0/admin/manage-fields.php:455 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Peru" msgstr "Peru" #: profile-builder-2.0/admin/manage-fields.php:456 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Philippines" msgstr "Philippines" #: profile-builder-2.0/admin/manage-fields.php:457 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pitcairn" msgstr "Pitcairn" #: profile-builder-2.0/admin/manage-fields.php:458 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Poland" msgstr "Poland" #: profile-builder-2.0/admin/manage-fields.php:459 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Portugal" msgstr "Portugal" #: profile-builder-2.0/admin/manage-fields.php:460 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Puerto Rico" msgstr "Puerto Rico" #: profile-builder-2.0/admin/manage-fields.php:461 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Qatar" msgstr "Qatar" #: profile-builder-2.0/admin/manage-fields.php:462 msgid "Republic of the Congo" msgstr "Republic of the Congo" #: profile-builder-2.0/admin/manage-fields.php:463 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Reunion" msgstr "Reunion" #: profile-builder-2.0/admin/manage-fields.php:464 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Romania" msgstr "Romania" #: profile-builder-2.0/admin/manage-fields.php:465 msgid "Russia" msgstr "Russia" #: profile-builder-2.0/admin/manage-fields.php:466 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Rwanda" msgstr "Rwanda" #: profile-builder-2.0/admin/manage-fields.php:467 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: profile-builder-2.0/admin/manage-fields.php:468 msgid "Saint Helena" msgstr "Saint Helena" #: profile-builder-2.0/admin/manage-fields.php:469 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts and Nevis" #: profile-builder-2.0/admin/manage-fields.php:470 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Lucia" msgstr "Saint Lucia" #: profile-builder-2.0/admin/manage-fields.php:471 msgid "Saint Martin" msgstr "Saint Martin" #: profile-builder-2.0/admin/manage-fields.php:472 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre and Miquelon" #: profile-builder-2.0/admin/manage-fields.php:473 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent and the Grenadines" #: profile-builder-2.0/admin/manage-fields.php:474 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Samoa" msgstr "Samoa" #: profile-builder-2.0/admin/manage-fields.php:475 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "San Marino" msgstr "San Marino" #: profile-builder-2.0/admin/manage-fields.php:476 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sao Tome and Principe" msgstr "Sao Tome and Principe" #: profile-builder-2.0/admin/manage-fields.php:477 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: profile-builder-2.0/admin/manage-fields.php:478 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Senegal" msgstr "Senegal" #: profile-builder-2.0/admin/manage-fields.php:479 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Serbia" msgstr "Serbia" #: profile-builder-2.0/admin/manage-fields.php:480 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Seychelles" msgstr "Seychelles" #: profile-builder-2.0/admin/manage-fields.php:481 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sierra Leone" msgstr "Sierra Leone" #: profile-builder-2.0/admin/manage-fields.php:482 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Singapore" msgstr "Singapore" #: profile-builder-2.0/admin/manage-fields.php:483 msgid "Sint Maarten" msgstr "Sint Maarten" #: profile-builder-2.0/admin/manage-fields.php:484 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovakia" msgstr "Slovakia" #: profile-builder-2.0/admin/manage-fields.php:485 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovenia" msgstr "Slovenia" #: profile-builder-2.0/admin/manage-fields.php:486 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Solomon Islands" msgstr "Solomon Islands" #: profile-builder-2.0/admin/manage-fields.php:487 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Somalia" msgstr "Somalia" #: profile-builder-2.0/admin/manage-fields.php:488 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Africa" msgstr "South Africa" #: profile-builder-2.0/admin/manage-fields.php:489 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Georgia and the South Sandwich Islands" msgstr "South Georgia and the South Sandwich Islands" #: profile-builder-2.0/admin/manage-fields.php:490 msgid "South Korea" msgstr "South Korea" #: profile-builder-2.0/admin/manage-fields.php:491 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Sudan" msgstr "South Sudan" #: profile-builder-2.0/admin/manage-fields.php:492 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Spain" msgstr "Spain" #: profile-builder-2.0/admin/manage-fields.php:493 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sri Lanka" msgstr "Sri Lanka" #: profile-builder-2.0/admin/manage-fields.php:494 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sudan" msgstr "Sudan" #: profile-builder-2.0/admin/manage-fields.php:495 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Suriname" msgstr "Suriname" #: profile-builder-2.0/admin/manage-fields.php:496 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Svalbard and Jan Mayen" msgstr "Svalbard and Jan Mayen" #: profile-builder-2.0/admin/manage-fields.php:497 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Swaziland" msgstr "Swaziland" #: profile-builder-2.0/admin/manage-fields.php:498 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sweden" msgstr "Sweden" #: profile-builder-2.0/admin/manage-fields.php:499 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Switzerland" msgstr "Switzerland" #: profile-builder-2.0/admin/manage-fields.php:500 msgid "Syria" msgstr "Syria" #: profile-builder-2.0/admin/manage-fields.php:501 msgid "Taiwan" msgstr "Taiwan" #: profile-builder-2.0/admin/manage-fields.php:502 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tajikistan" msgstr "Tajikistan" #: profile-builder-2.0/admin/manage-fields.php:503 msgid "Tanzania" msgstr "Tanzania" #: profile-builder-2.0/admin/manage-fields.php:504 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Thailand" msgstr "Thailand" #: profile-builder-2.0/admin/manage-fields.php:505 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Togo" msgstr "Togo" #: profile-builder-2.0/admin/manage-fields.php:506 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tokelau" msgstr "Tokelau" #: profile-builder-2.0/admin/manage-fields.php:507 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tonga" msgstr "Tonga" #: profile-builder-2.0/admin/manage-fields.php:508 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Trinidad and Tobago" msgstr "Trinidad and Tobago" #: profile-builder-2.0/admin/manage-fields.php:509 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tunisia" msgstr "Tunisia" #: profile-builder-2.0/admin/manage-fields.php:510 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkey" msgstr "Turkey" #: profile-builder-2.0/admin/manage-fields.php:511 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkmenistan" msgstr "Turkmenistan" #: profile-builder-2.0/admin/manage-fields.php:512 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Islands" #: profile-builder-2.0/admin/manage-fields.php:513 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tuvalu" msgstr "Tuvalu" #: profile-builder-2.0/admin/manage-fields.php:514 msgid "U.S. Virgin Islands" msgstr "U.S. Virgin Islands" #: profile-builder-2.0/admin/manage-fields.php:515 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uganda" msgstr "Uganda" #: profile-builder-2.0/admin/manage-fields.php:516 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ukraine" msgstr "Ukraine" #: profile-builder-2.0/admin/manage-fields.php:517 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Arab Emirates" msgstr "United Arab Emirates" #: profile-builder-2.0/admin/manage-fields.php:518 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Kingdom" msgstr "United Kingdom" #: profile-builder-2.0/admin/manage-fields.php:519 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States" msgstr "United States" #: profile-builder-2.0/admin/manage-fields.php:520 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: profile-builder-2.0/admin/manage-fields.php:521 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uruguay" msgstr "Uruguay" #: profile-builder-2.0/admin/manage-fields.php:522 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uzbekistan" msgstr "Uzbekistan" #: profile-builder-2.0/admin/manage-fields.php:523 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Vanuatu" msgstr "Vanuatu" #: profile-builder-2.0/admin/manage-fields.php:524 msgid "Vatican" msgstr "Vatican" #: profile-builder-2.0/admin/manage-fields.php:525 msgid "Venezuela" msgstr "Venezuela" #: profile-builder-2.0/admin/manage-fields.php:526 msgid "Vietnam" msgstr "Vietnam" #: profile-builder-2.0/admin/manage-fields.php:527 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Wallis and Futuna" msgstr "Wallis and Futuna" #: profile-builder-2.0/admin/manage-fields.php:528 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Western Sahara" msgstr "Western Sahara" #: profile-builder-2.0/admin/manage-fields.php:529 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Yemen" msgstr "Yemen" #: profile-builder-2.0/admin/manage-fields.php:530 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zambia" msgstr "Zambia" #: profile-builder-2.0/admin/manage-fields.php:531 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zimbabwe" msgstr "Zimbabwe" #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237 msgid "" "Your account has to be confirmed by an administrator before you can log in." msgstr "" "Tu cuenta debe ser confirmada por un administrador antes de que puedas " "loggearte." #: profile-builder-2.0/features/admin-approval/admin-approval.php:216 msgid "Your account has been successfully created!" msgstr "¡Tu cuenta ha sido creada exitosamente!" #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94 msgid "An error occurred, please try again later." msgstr "Ha ocurrido un error, por favor inténtalo de nuevo más tarde." #: profile-builder-2.0/modules/user-listing/userlisting.php:282 msgid "More" msgstr "Más" #: profile-builder-2.0/modules/user-listing/userlisting.php:2253 msgid "Ascending" msgstr "Ascendente" #: profile-builder-2.0/modules/user-listing/userlisting.php:2254 msgid "Descending" msgstr "Descendente" #: profile-builder-2.0/admin/add-ons.php:148 #: profile-builder-2.0/admin/add-ons.php:248 #: profile-builder-2.0/admin/pms-cross-promotion.php:134 #: profile-builder-2.0/admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "Descargar" #: profile-builder-2.0/admin/manage-fields.php:82 msgid "Choose one of the supported field types" msgstr "Escoja uno de los campos disponibles" #: profile-builder-2.0/admin/manage-fields.php:131 msgid "Site Key" msgstr "Sitio clave" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "Secret Key" msgstr "Clave secreta" #: profile-builder-2.0/admin/manage-fields.php:1023 msgid "" "You must enter the site key\n" msgstr "" "Debes ingresar la clave del sitio\n" #: profile-builder-2.0/admin/add-ons.php:10 #: profile-builder-2.0/admin/add-ons.php:32 msgid "Add-Ons" msgstr "Add-Ons" #: profile-builder-2.0/admin/add-ons.php:34 #: profile-builder-2.0/admin/add-ons.php:129 #: profile-builder-2.0/admin/add-ons.php:231 #: profile-builder-2.0/admin/pms-cross-promotion.php:78 #: profile-builder-2.0/admin/pms-cross-promotion.php:114 #: profile-builder-2.0/admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "Activar" #: profile-builder-2.0/admin/add-ons.php:36 #: profile-builder-2.0/admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "Bajando e instalando..." #: profile-builder-2.0/admin/add-ons.php:37 #: profile-builder-2.0/admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "Instalación completada" #: profile-builder-2.0/admin/add-ons.php:39 msgid "Add-On is Active" msgstr "El Add-Ons está activado" #: profile-builder-2.0/admin/add-ons.php:40 msgid "Add-On has been activated" msgstr "El Add-On ha sido activado" #: profile-builder-2.0/admin/add-ons.php:41 #: profile-builder-2.0/admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "Reintentar Instalación" #: profile-builder-2.0/admin/add-ons.php:46 #: profile-builder-2.0/admin/add-ons.php:133 #: profile-builder-2.0/admin/add-ons.php:235 #: profile-builder-2.0/admin/pms-cross-promotion.php:90 #: profile-builder-2.0/admin/pms-cross-promotion.php:118 #: profile-builder-2.0/admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "Desactivar" #: profile-builder-2.0/admin/add-ons.php:59 msgid "" "Something went wrong, we could not connect to the server. Please try again " "later." msgstr "" "Algo salió mal, no pudimos conectarnos al servidor. Por favor inténtalo de " "nuevo." #: profile-builder-2.0/admin/pms-cross-promotion.php:137 #: profile-builder-2.0/admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "Instalar ahora" #: profile-builder-2.0/front-end/default-fields/email/email.php:51 msgid "You must enter a valid email address." msgstr "Debe ingresar una dirección válida de email" #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "Por favor ingrese un nombre de usuario válido" #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72 #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85 msgid "Only administrators can see this field on edit profile forms." msgstr "" "Sólo administradores pueden ver este campo en el editor de formularios de " "perfiles" #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81 msgid "As an administrator you cannot change your role." msgstr "Como administrador, no puedes cambiar tu Rol" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218 msgid "[{{site_name}}] Password Reset" msgstr "[{{site_name}}] Restaurar Contraseña" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229 msgid "Password Reset Email" msgstr "Restaurar Contraseña vía E-mail" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235 msgid "" "\n" "

            You have successfully reset your password to: {{password}}

            \n" msgstr "" "\n" "

            Tu contraseña ha sido exitosamente restaurada a: {{password}}

            \n" #: profile-builder-2.0/modules/user-listing/userlisting.php:159 msgid "User Nicename" msgstr "Nicename del Usuario" #: pb-add-on-woocommerce/woosync-page.php:80 #: pb-add-on-woocommerce/woosync-page.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:499 msgid "None" msgstr "Ninguno" #: profile-builder-2.0/admin/admin-functions.php:132 msgid "" "ERROR: The password must have the minimum length of %s " "characters" msgstr "" "ERROR: La contraseña tiene que tener un tamaño mínimo de %s " "caracteres" #: profile-builder-2.0/admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr "" "ERROR: La contraseña tiene que tener una fortaleza mínima " "de %s" #: profile-builder-2.0/admin/general-settings.php:179 msgid "Username and Email" msgstr "Usuario o Email" #: profile-builder-2.0/admin/general-settings.php:184 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "" "\"Nombre de Usuario y Email\" - los usuarios pueden Autenticarse tanto con " "el Nombre de Usuario como con el Email." #: profile-builder-2.0/admin/general-settings.php:185 msgid "\"Username\" - users can Log In only with Username." msgstr "" "\"Nombre de Usuario\" - los usuarios pueden Autenticarse con el Nombre de " "Usuario." #: profile-builder-2.0/admin/general-settings.php:186 msgid "\"Email\" - users can Log In only with Email." msgstr "\"Email\" - los usuarios pueden Autenticarse con el Email." #: profile-builder-2.0/admin/manage-fields.php:124 msgid "" "Specify the extension(s) you want to limit to upload
            Example: .ext1,." "ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "" "Especificar la(s) extensión(es) que desea limitar para subir
            Ejemplo:." "ext1,.ext2,.ext3
            Si no se especifica, deja por defecto:.jpg,.jpeg,.gif,." "png (.*)" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "" "Specify the extension(s) you want to limit to upload
            Example: .ext1,." "ext2,.ext3
            If not specified, defaults to all WordPress allowed file " "extensions (.*)" msgstr "" "Especificar la(s) extensión(es) que desea limitar para subir
            Ejemplo:." "ext1,.ext2,.ext3
            Si no se especifica, deja por defecto todas las " "extensiones de archivos permitidas por WordPress (.*)" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "User Roles" msgstr "Roles de Usuario" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "" "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "" "Seleccionar cuáles roles de usuario mostrar al usuario (arrastre y suelte " "para reorganizar)" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "User Roles Order" msgstr "Orden de Roles de Usuario" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "Save the user role order from the user roles checkboxes" msgstr "" "Salvar el orden de roles de usuario de las casillas de roles de usuario" #: profile-builder-2.0/admin/manage-fields.php:1128 msgid "" "Please select at least one user role\n" msgstr "" "Por favor seleccione al menos un rol de usuario\n" #: profile-builder-2.0/admin/register-version.php:22 msgid "Profile Builder Register" msgstr "Registro de Profile Builder" #: profile-builder-2.0/admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "¡El número de serie está a punto de expirar!" #: profile-builder-2.0/admin/register-version.php:81 msgid "" " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr "" "Su número de serie está a punto de expirar, por favor %1$s Renueve Su " "Licencia%2$s." #: profile-builder-2.0/admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr "Su número de serie expiró, por favor %1$s Renueve Su Licencia%2$s." #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 msgid "Add Entry" msgstr "Adicionar Entrada" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 msgid "show" msgstr "mostrar" #: profile-builder-2.0/features/functions.php:736 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" msgstr "" "Para permitir a los usuarios registrarse en su sitio web via Profile Builder," " usted tiene primero que habilitar el registro de usuario. Vaya a " "%1$sAjustes de Red%2$s, y en Ajustes de Registros esté seguro de seleccionar " "“Las cuentas de usuario pueden ser registradas”. %3$sDescartar%4$s" #: profile-builder-2.0/front-end/class-formbuilder.php:659 msgid "User to edit:" msgstr "Usuarios a editar:" #: profile-builder-2.0/front-end/default-fields/password/password.php:46 #: profile-builder-2.0/front-end/recover.php:262 msgid "The password must have the minimum length of %s characters" msgstr "La contraseña tiene que tener un tamaño mínimo de %s caracteres" #: profile-builder-2.0/front-end/default-fields/password/password.php:50 #: profile-builder-2.0/front-end/recover.php:266 msgid "The password must have a minimum strength of %s" msgstr "La contraseña tiene que tener una fortaleza mínima de %s" #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118 msgid "You cannot register this user role" msgstr "Usted no puede registrar este rol de usuario" #: profile-builder-2.0/front-end/login.php:153 msgid "username or email" msgstr "nombre de usuario o email" #: profile-builder-2.0/front-end/login.php:222 msgid "Username or Email" msgstr "Usuario o Email" #: profile-builder-2.0/front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "Usted está autenticado actualmente como %s" #: profile-builder-2.0/front-end/logout.php:15 msgid "Log out »" msgstr "Salir »" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "Role del Usuario" #: profile-builder-2.0/modules/user-listing/userlisting.php:2167 msgid "View all extra shortcode parameters" msgstr "Ver todos los parámetros de código corto adicionales" #: profile-builder-2.0/modules/user-listing/userlisting.php:2181 msgid "displays only the users that you specified the user_id for" msgstr "" "muestra solamente los usuarios para los que usted ha especificado el user_id" #: profile-builder-2.0/modules/user-listing/userlisting.php:2187 msgid "displays all users except the ones you specified the user_id for" msgstr "" "muestra todos los usuarios excepto aquellos para los que usted ha " "especificado el user_id" #: profile-builder-2.0/features/functions.php:566 msgid "Minimum length of %d characters" msgstr "Mínimo de %d caracteres. " #: profile-builder-2.0/front-end/class-formbuilder.php:146 #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "This message is only visible by administrators" msgstr "Este mensaje está visible solamente por administradores" #: profile-builder-2.0/modules/user-listing/userlisting.php:413 msgid "User not found" msgstr "Usuario no encontrado" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "Etiquetas válidas {{reply_to}} y {{site_name}}" #: profile-builder-2.0/admin/admin-bar.php:48 msgid "" "Choose which user roles view the admin bar in the front-end of the website." msgstr "" "Escoger qué roles de usuario ve el admin bar en la vista pública del sitio " "web." #: profile-builder-2.0/admin/manage-fields.php:129 msgid "" "Enter a comma separated list of values
            This can be anything, as it is " "hidden from the user, but should not contain special characters or " "apostrophes" msgstr "" "Entrar una lista de valores separada por coma
            Esto puede ser cualquier " "cosa, como está oculto al usuario, pero no debería contener caracteres " "especiales o apóstrofes" #: profile-builder-2.0/admin/manage-fields.php:1055 msgid "" "The meta-name cannot be empty\n" msgstr "" "El meta-nombre no puede ser vacío\n" #: profile-builder-2.0/admin/register-version.php:69 msgid "" "Now that you acquired a copy of %s, you should take the time and register it " "with the serial number you received" msgstr "" "Ahora que ha adquirido una copia de %s, usted debería tomarse un tiempo y " "registrarlo con el número de serie que recibió" #: profile-builder-2.0/admin/register-version.php:243 msgid "" "

            Your Profile Builder serial number is invalid or missing." "
            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

            " msgstr "" "

            Su número de serie de Profile Builder es inválido o no " "se encuentra.
            Por favor %1$sregistre su copia%2$s para recibir acceso a " "actualizaciones automáticas y soporte. ¿Necesita una llave de licencia? " "%3$sCompre una ahora%4$s

            " #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17 #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60 msgid "...Choose" msgstr "...Escoger" #: profile-builder-2.0/features/class-list-table.php:526 #: profile-builder-2.0/features/class-list-table.php:942 msgid "1 item" msgstr "1 elemento" #: profile-builder-2.0/features/functions.php:552 msgid "Very Weak" msgstr "Muy Débil" #: profile-builder-2.0/features/functions.php:640 msgid "This field is required" msgstr "Campo requerido" #: profile-builder-2.0/features/functions.php:704 msgid "Cancel" msgstr "Cancelar" #: profile-builder-2.0/features/functions.php:740 msgid "" "To allow users to register for your website via Profile Builder, you first " "must enable user registration. Go to %1$sSettings -> General%2$s tab, and " "under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s" msgstr "" "Para permitir a los usuarios registrarse para su sitio web via Profile " "Builder, usted tiene primero que habilitar el registro de usuario. Vaya a la " "pestaña %1$sAjustes -> General%2$s, y en Membresía esté seguro de " "seleccionar “Cualquiera puede registrarse”. %3$sDescartar%4$s" #: profile-builder-2.0/front-end/login.php:144 msgid "Invalid username." msgstr "Nombre de usuario inválido." #: profile-builder-2.0/front-end/login.php:149 #: profile-builder-2.0/front-end/login.php:153 msgid "username" msgstr "nombre de usuario" #: profile-builder-2.0/front-end/login.php:149 msgid "email" msgstr "email" #: profile-builder-2.0/front-end/login.php:256 msgid "Lost your password?" msgstr "¿Perdió su contraseña?" #: profile-builder-2.0/index.php:34 msgid "" " is also activated. You need to deactivate it before activating this version " "of the plugin." msgstr "" "está también activado. Necesita desactivarlo antes de activar está versión " "del plugin." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54 msgid "" "Must be a valid email address or the tag {{reply_to}} which defaults to the " "administrator email" msgstr "" "Tiene que ser una dirección de email válida o la etiqueta {{reply_to}} que " "tiene por defecto el email del administrador" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508 msgid "Your selected password at signup" msgstr "Su contraseña seleccionada al inscribirse" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "" "These settings are also replicated in the \"Admin Email Customizer\" " "settings-page upon save." msgstr "" "Estos ajustes también se replican en la página de ajustes de " "\"Personalizador de Email de Admin\" al salvar." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "Esta forma está vacía." #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "Borrar todos los elementos" #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all" msgstr "Borrar todo" #: profile-builder-2.0/modules/user-listing/userlisting.php:1621 msgid "Choose..." msgstr "Escoger..." #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "" "Set the number of users to be displayed on every paginated part of the all-" "userlisting" msgstr "" "Establecer el número de usuarios a mostrarse en cada parte paginada del all-" "userlisting" #: profile-builder-2.0/admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "Mostrar/Ocultar el Admin Bar en la Vista Pública" #: profile-builder-2.0/admin/admin-bar.php:10 #: profile-builder-2.0/admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "Ajustes de Admin Bar" #: profile-builder-2.0/admin/admin-bar.php:57 msgid "User-Role" msgstr "Usuario-Rol" #: profile-builder-2.0/admin/admin-bar.php:58 msgid "Visibility" msgstr "Visibilidad" #: profile-builder-2.0/admin/admin-bar.php:73 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "Valor Por Defecto" #: profile-builder-2.0/admin/admin-bar.php:74 msgid "Show" msgstr "Mostrar" #: profile-builder-2.0/admin/admin-bar.php:75 #: profile-builder-2.0/modules/user-listing/userlisting.php:1554 msgid "Hide" msgstr "Ocultar" #: pb-add-on-woocommerce/woosync-page.php:147 #: profile-builder-2.0/admin/admin-bar.php:86 #: profile-builder-2.0/admin/general-settings.php:224 #: profile-builder-2.0/admin/register-version.php:95 #: profile-builder-2.0/features/functions.php:697 #: profile-builder-2.0/modules/modules.php:127 msgid "Save Changes" msgstr "Salvar Cambios" #: profile-builder-2.0/admin/admin-functions.php:37 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 )" msgstr "" "La Autenticación está establecida para realizarse usando el E-mail. ¡Este " "campo NO aparecerá en la parte pública! (usted puede cambiar estos ajustes " "en la pestaña \"%s\") " #: profile-builder-2.0/admin/admin-functions.php:37 #: profile-builder-2.0/admin/general-settings.php:10 #: profile-builder-2.0/admin/general-settings.php:35 msgid "General Settings" msgstr "Ajustes Generales" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:210 msgid "Very weak" msgstr "Muy débil" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:211 #: profile-builder-2.0/features/functions.php:552 msgid "Weak" msgstr "Débil" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:212 #: profile-builder-2.0/features/functions.php:552 msgid "Medium" msgstr "Media" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:213 #: profile-builder-2.0/features/functions.php:552 msgid "Strong" msgstr "Fuerte" #: profile-builder-2.0/admin/admin-functions.php:187 msgid "Add Field" msgstr "Adicionar Campo" #: profile-builder-2.0/admin/admin-functions.php:189 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390 msgid "Save Settings" msgstr "Salvar Ajustes" #: profile-builder-2.0/admin/basic-info.php:10 msgid "Basic Information" msgstr "Información Básica" #: profile-builder-2.0/admin/basic-info.php:29 msgid "Version %s" msgstr "Versión %s" #: profile-builder-2.0/admin/basic-info.php:30 msgid "Profile Builder " msgstr "Profile Builder " #: profile-builder-2.0/admin/basic-info.php:31 msgid "" "The best way to add front-end registration, edit profile and login forms." msgstr "" "La mejor forma de adicionar el registro en la vista pública, editar el " "perfil y las formas de autenticación." #: profile-builder-2.0/admin/basic-info.php:33 msgid "For Modern User Interaction" msgstr "Para la Interacción del Usuario Moderno" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25 #: profile-builder-2.0/admin/basic-info.php:36 #: profile-builder-2.0/features/login-widget/login-widget.php:59 msgid "Login" msgstr "Autenticación" #: profile-builder-2.0/admin/basic-info.php:40 msgid "Registration" msgstr "Registro" #: profile-builder-2.0/admin/basic-info.php:44 msgid "Edit Profile" msgstr "Editar Perfil" #: profile-builder-2.0/admin/basic-info.php:51 msgid "Extra Features" msgstr "Características extras." #: profile-builder-2.0/admin/basic-info.php:52 msgid "" "Features that give you more control over your users, increased security and " "help you fight user registration spam." msgstr "" "Características que le dan más control sobre sus usuarios, incrementando la " "seguridad y ayudándolo a evitar los registros spams de usuarios." #: profile-builder-2.0/admin/basic-info.php:53 msgid "Enable extra features" msgstr "Habilitar características extras" #: profile-builder-2.0/admin/basic-info.php:57 msgid "Recover Password" msgstr "Recuperar contraseña" #: profile-builder-2.0/admin/basic-info.php:61 msgid "Admin Approval (*)" msgstr "Aprobación del Admin (*)" #: profile-builder-2.0/admin/basic-info.php:62 msgid "" "You decide who is a user on your website. Get notified via email or approve " "multiple users at once from the WordPress UI." msgstr "" "Usted decide quién es un usuario en su sitio web. Obtenga notificación via " "email o apruebe usuarios múltiples a la vez desde la Interfaz de Usuario de " "WordPress." #: profile-builder-2.0/admin/basic-info.php:65 msgid "Email Confirmation" msgstr "Confirmación de Email" #: profile-builder-2.0/admin/basic-info.php:66 msgid "" "Make sure users sign up with genuine emails. On registration users will " "receive a notification to confirm their email address." msgstr "" "Esté seguro que los usuarios se autentican con emails genuinos. En el " "registro los usuarios recibirán una notificación para confirmar sus " "direcciones de email." #: profile-builder-2.0/admin/basic-info.php:69 msgid "Minimum Password Length and Strength Meter" msgstr "Tamaño Mínimo de Contraseña y Medidor de Fortaleza" #: profile-builder-2.0/admin/basic-info.php:70 msgid "" "Eliminate weak passwords altogether by setting a minimum password length and " "enforcing a certain password strength." msgstr "" "Elimine contraseñas débiles estableciendo un tamaño mínimo de contraseña y " "forzando una cierta fortaleza de contraseña." #: profile-builder-2.0/admin/basic-info.php:73 msgid "Login with Email or Username" msgstr "Autenticación con Email o Nombre de Usuario" #: profile-builder-2.0/admin/basic-info.php:74 msgid "" "Allow users to log in with their email or username when accessing your site." msgstr "" "Permite a usuarios autenticarse con su correo o nombre de usuario cuando se " "accede al sitio." #: profile-builder-2.0/admin/basic-info.php:87 msgid "Customize Your Forms The Way You Want (*)" msgstr "Personalice Sus Formas De La Manera Que Quiera (*)" #: profile-builder-2.0/admin/basic-info.php:88 msgid "" "With Extra Profile Fields you can create the exact registration form your " "project needs." msgstr "" "Con Campos Extras del Perfil usted puede crear la forma exacta de registro " "de sus necesidades del proyecto." #: profile-builder-2.0/admin/basic-info.php:90 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "" "Los Campos Extras del Perfil están disponibles en versiones de Hobbyist o PRO" #: profile-builder-2.0/admin/basic-info.php:92 msgid "Get started with extra fields" msgstr "Comience con los campos extras" #: profile-builder-2.0/admin/basic-info.php:95 msgid "Avatar Upload" msgstr "Subida de Avatar" #: profile-builder-2.0/admin/basic-info.php:96 msgid "Generic Uploads" msgstr "Subidas Genéricas" #: profile-builder-2.0/admin/basic-info.php:97 msgid "Agree To Terms Checkbox" msgstr "Casilla de Aceptar los Términos" #: profile-builder-2.0/admin/basic-info.php:98 msgid "Datepicker" msgstr "Selector de Fecha" #: profile-builder-2.0/admin/basic-info.php:101 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: profile-builder-2.0/admin/basic-info.php:102 msgid "Country Select" msgstr "Selector de País" #: profile-builder-2.0/admin/basic-info.php:104 msgid "Timezone Select" msgstr "Selector de Zona Horaria" #: profile-builder-2.0/admin/basic-info.php:108 msgid "Input / Hidden Input" msgstr "Input / Input Oculto" #: profile-builder-2.0/admin/basic-info.php:110 msgid "Checkbox" msgstr "Casilla" #: profile-builder-2.0/admin/basic-info.php:111 msgid "Select" msgstr "Selector" #: profile-builder-2.0/admin/basic-info.php:112 msgid "Radio Buttons" msgstr "Botones Redondos" #: profile-builder-2.0/admin/basic-info.php:113 msgid "Textarea" msgstr "Área de Texto" #: profile-builder-2.0/admin/basic-info.php:125 msgid "Powerful Modules (**)" msgstr "Módulos Potentes (**)" #: profile-builder-2.0/admin/basic-info.php:126 msgid "" "Everything you will need to manage your users is probably already available " "using the Pro Modules." msgstr "" "Todo lo que necesite para gestionar sus usuarios está probablemente " "disponible utilizando el Pro Modules. " #: profile-builder-2.0/admin/basic-info.php:128 msgid "Enable your modules" msgstr "Habilitar sus módulos" #: profile-builder-2.0/admin/basic-info.php:131 msgid "Find out more about PRO Modules" msgstr "Descubra más acerca de PRO Modules" #: profile-builder-2.0/admin/basic-info.php:136 #: profile-builder-2.0/modules/modules.php:89 #: profile-builder-2.0/modules/user-listing/userlisting.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:12 #: profile-builder-2.0/modules/user-listing/userlisting.php:17 #: profile-builder-2.0/modules/user-listing/userlisting.php:23 msgid "User Listing" msgstr "Listado de Usuario" #: profile-builder-2.0/admin/basic-info.php:138 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." msgstr "" "Plantillas fácil de editar para listar sus usuarios del sitio web así como " "crear páginas de un usuario simple. Basado en código corto, ofrece muchas " "opciones para personalizar sus listados." #: profile-builder-2.0/admin/basic-info.php:144 msgid "Email Customizer" msgstr "Personalizador de Email" #: profile-builder-2.0/admin/basic-info.php:145 msgid "" "Personalize all emails sent to your users or admins. On registration, email " "confirmation, admin approval / un-approval." msgstr "" "Personalice todos los emails enviados a sus usuarios o administradores. En " "el registro, la confirmación de email y la aprobación/desaprobación de admin." #: profile-builder-2.0/admin/basic-info.php:148 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33 #: profile-builder-2.0/modules/modules.php:110 msgid "Custom Redirects" msgstr "Redirecciones Personalizadas" #: profile-builder-2.0/admin/basic-info.php:149 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." msgstr "" "Mantenga sus usuarios fuera del panel de control de WordPRess, " "redirecciónelos a la vista pública luego de la autenticación o registro, " "todo está a unos clics." #: profile-builder-2.0/admin/basic-info.php:154 #: profile-builder-2.0/modules/modules.php:75 msgid "Multiple Registration Forms" msgstr "Formas de Registro Múltiple" #: profile-builder-2.0/admin/basic-info.php:155 msgid "" "Set up multiple registration forms with different fields for certain user " "roles. Capture different information from different types of users." msgstr "" "Establecer formas de registro múltiples con diferentes campos para ciertos " "roles de usuario. Capturar diferentes informaciones de diferentes tipos de " "usuarios." #: profile-builder-2.0/admin/basic-info.php:158 #: profile-builder-2.0/modules/modules.php:82 msgid "Multiple Edit-profile Forms" msgstr "Formas de Edición de Múltiples Perfiles" #: profile-builder-2.0/admin/basic-info.php:159 msgid "" "Allow different user roles to edit their specific information. Set up " "multiple edit-profile forms with different fields for certain user roles." msgstr "" "Permite a diferentes roles de usuario editar sus informaciones específicas. " "Establezca las formas de edición de múltiples perfiles con diferentes campos " "para ciertos roles de usuario." #: profile-builder-2.0/admin/basic-info.php:187 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr "* solamente disponible en las %1$sversiones Hobbyist y Pro%2$s." #: profile-builder-2.0/admin/basic-info.php:188 msgid "** only available in the %1$sPro version%2$s." msgstr "* solamente disponible en la %1$sversión Pro%2$s." #: profile-builder-2.0/admin/general-settings.php:39 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "El propio CSS de Load Profile Builder en la vista pública:" #: profile-builder-2.0/admin/general-settings.php:42 #: profile-builder-2.0/admin/general-settings.php:55 #: profile-builder-2.0/admin/general-settings.php:104 #: profile-builder-2.0/admin/general-settings.php:151 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Yes" msgstr "Si" #: profile-builder-2.0/admin/general-settings.php:44 msgid "You can find the default file here: %1$s" msgstr "Usted puede encontrar el archivo por defecto aquí: %1$s" #: profile-builder-2.0/admin/general-settings.php:51 msgid "\"Email Confirmation\" Activated:" msgstr "\"Confirmación de Email\" Activada:" #: profile-builder-2.0/admin/general-settings.php:56 #: profile-builder-2.0/admin/general-settings.php:105 #: profile-builder-2.0/admin/general-settings.php:150 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "No" msgstr "No" #: profile-builder-2.0/admin/general-settings.php:61 msgid "" "You can find a list of unconfirmed email addresses %1$sUsers > All Users > " "Email Confirmation%2$s." msgstr "" "Usted puede encontrar una lista de direcciones de email no confirmadas " "%1$sUsers > All Users > Email Confirmation%2$s." #: profile-builder-2.0/admin/general-settings.php:69 msgid "\"Email Confirmation\" Landing Page:" msgstr "Página de llegada de \"Confirmación de Email\":" #: profile-builder-2.0/admin/general-settings.php:74 msgid "Existing Pages" msgstr "Páginas Existentes" #: profile-builder-2.0/admin/general-settings.php:89 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." msgstr "" "Especificar la página donde los usuarios serán redirigidos cuando se " "confirma la cuenta de email. Esta página puede ser diferente a la(s) " "página(s) de registro y puede ser cambiada en cualquier momento." #: profile-builder-2.0/admin/general-settings.php:100 msgid "\"Admin Approval\" Activated:" msgstr "\"Aprobación del Admin\" Activada:" #: profile-builder-2.0/admin/general-settings.php:108 msgid "" "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "" "Usted puede encontrar una lista de usuario en %1$sUsers > All Users > Admin " "Approval%2$s." #: profile-builder-2.0/admin/general-settings.php:165 msgid "\"Admin Approval\" Feature:" msgstr "Característica \"Aprobación del Admin\":" #: profile-builder-2.0/admin/general-settings.php:168 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." msgstr "" "Usted decide quien es un usuario en su sitio web. Obtenga notificaciones a " "través de email o apruebe múltiples usuarios a la vez desde la Interfaz de " "Usuario de WordPRess. Habilite Aprobación del Amin actualizando a las " "%1$sversiones Hobbyist o Pro%2$s." #: profile-builder-2.0/admin/general-settings.php:175 msgid "Allow Users to Log in With:" msgstr "Permitir a los Usuaios Autenticarse Con:" #: profile-builder-2.0/admin/general-settings.php:180 #: profile-builder-2.0/admin/manage-fields.php:201 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167 #: profile-builder-2.0/front-end/login.php:85 #: profile-builder-2.0/front-end/login.php:99 #: profile-builder-2.0/front-end/login.php:218 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28 #: profile-builder-2.0/modules/user-listing/userlisting.php:102 #: profile-builder-2.0/modules/user-listing/userlisting.php:277 #: profile-builder-2.0/modules/user-listing/userlisting.php:730 #: profile-builder-2.0/modules/user-listing/userlisting.php:2219 msgid "Username" msgstr "Nombre de Usuario" #: profile-builder-2.0/admin/general-settings.php:181 #: profile-builder-2.0/front-end/login.php:215 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29 #: profile-builder-2.0/modules/user-listing/userlisting.php:736 #: profile-builder-2.0/modules/user-listing/userlisting.php:2220 msgid "Email" msgstr "Email" #: profile-builder-2.0/admin/general-settings.php:193 msgid "Minimum Password Length:" msgstr "Tamaño Mínimo de Contraseña:" #: profile-builder-2.0/admin/general-settings.php:198 msgid "" "Enter the minimum characters the password should have. Leave empty for no " "minimum limit" msgstr "" "Entre los caracteres mínimos que la contraseña debe tener. Deje en blanco " "para no límite mínimo." #: profile-builder-2.0/admin/general-settings.php:205 msgid "Minimum Password Strength:" msgstr "Fortaleza Mínima de Contraseña:" #: profile-builder-2.0/admin/general-settings.php:209 msgid "Disabled" msgstr "Deshabilitado" #: profile-builder-2.0/admin/manage-fields.php:12 msgid "Manage Fields" msgstr "Gestionar Campos" #: profile-builder-2.0/admin/manage-fields.php:13 msgid "Manage Default and Extra Fields" msgstr "Gestionar Campos Por Defecto y Adicionales" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Field Title" msgstr "Título del Campo" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Title of the field" msgstr "Título del Campo" #: profile-builder-2.0/admin/manage-fields.php:119 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "Campo" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Meta-name" msgstr "Meta-nombre" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "ID" msgstr "ID" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "" "A unique, auto-generated ID for this particular field
            You can use this " "in conjuction with filters to target this element if needed
            Can't be " "edited" msgstr "" "Un ID único y auto-generado para este campo particular
            Usted puede usar " "esto en conjunción con filtros para apuntar a este elemento si se " "necesita
            No puede ser editado" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Description" msgstr "Descripción" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "" "Enter a (detailed) description of the option for end users to read
            " "Optional" msgstr "" "Entre una descripción (detallada) de la opción para que los usuarios finales " "lean
            Opcional" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Row Count" msgstr "Cantidad de Filas" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "" "Specify the number of rows for a 'Textarea' field
            If not specified, " "defaults to 5" msgstr "Especificar el número de filas para un campo 'Textarea'
            " #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Allowed Image Extensions" msgstr "Extensiones de Imagen Permitidas" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Allowed Upload Extensions" msgstr "Extensiones de Subida Permitidas" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Avatar Size" msgstr "Tamaño del Avatar" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "" "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not " "specified, defaults to 100" msgstr "" "Entrar un valor (entre 20 y 200) para el tamaño del 'Avatar'
            Si no se " "especifica, deja por defecto 100" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Date-format" msgstr "Formato de fecha" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Terms of Agreement" msgstr "Términos del Acuerdo" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "" "Enter a detailed description of the temrs of agreement for the user to read." "
            Links can be inserted by using standard HTML syntax: <a " "href=\"custom_url\">custom_text</a>" msgstr "" "Entrar una descripción detallada de los términos del acuerdo para que el " "usuario lea.
            Los enlaces pueden ser insertados usando sintaxis HTML " "estándar:<a href=\"custom_url\">custom_text</a>" #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Options" msgstr "Opciones" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Labels" msgstr "Etiquetas" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "" "Entrar una lista separada por coma de etiquetas
            Visible para los usuarios" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default Value" msgstr "Valor Por Defecto" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default value of the field" msgstr "Valor por defecto del campo" #: profile-builder-2.0/admin/manage-fields.php:138 #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default Option" msgstr "Opción Por Defecto" #: profile-builder-2.0/admin/manage-fields.php:138 msgid "Specify the option which should be selected by default" msgstr "Especificar la opción que debería ser seleccionada por defecto" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Default Option(s)" msgstr "Opción(es) Por Defecto" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "" "Specify the option which should be checked by default
            If there are " "multiple values, separate them with a ',' (comma)" msgstr "" "Especificar la opción que debería ser seleccionada por defecto
            Si hay " "valores múltiples, separarlos con una ',' (coma)" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default Content" msgstr "Contenido Por Defecto" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default value of the textarea" msgstr "Valor por defecto del textarea" #: pb-add-on-woocommerce/index.php:306 #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Required" msgstr "Requerido" #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Whether the field is required or not" msgstr "Si el campo es requerido o no" #: profile-builder-2.0/admin/manage-fields.php:161 msgid "Overwrite Existing" msgstr "Sobrescribir Existente" #: profile-builder-2.0/admin/manage-fields.php:161 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
            Use this at your own " "risk" msgstr "" "Seleccionar 'Sí' adicionará el campo a la lista, pero sobrescribirá " "cualquier otro campo en la base de datos que tiene el mismo meta-nombre
            " "Usar esto bajo su propio riesgo " #: profile-builder-2.0/admin/manage-fields.php:167 msgid "Field Properties" msgstr "Propiedades del campo" #: profile-builder-2.0/admin/manage-fields.php:181 msgid "Registration & Edit Profile" msgstr "Registro y Edición del Perfil" #: profile-builder-2.0/admin/manage-fields.php:200 msgid "Name" msgstr "Nombre" #: profile-builder-2.0/admin/manage-fields.php:201 msgid "Usernames cannot be changed." msgstr "Los nombres de usuario no pueden ser cambiados." #: pb-add-on-woocommerce/billing-fields.php:6 #: pb-add-on-woocommerce/shipping-fields.php:6 #: profile-builder-2.0/admin/manage-fields.php:202 msgid "First Name" msgstr "Primer Nombre" #: pb-add-on-woocommerce/billing-fields.php:7 #: pb-add-on-woocommerce/shipping-fields.php:7 #: profile-builder-2.0/admin/manage-fields.php:203 msgid "Last Name" msgstr "Apellidos" #: profile-builder-2.0/admin/manage-fields.php:204 #: profile-builder-2.0/modules/user-listing/userlisting.php:769 #: profile-builder-2.0/modules/user-listing/userlisting.php:2227 msgid "Nickname" msgstr "Apodo" #: profile-builder-2.0/admin/manage-fields.php:205 msgid "Display name publicly as" msgstr "Mostrar el nombre públicamente como" #: profile-builder-2.0/admin/manage-fields.php:206 msgid "Contact Info" msgstr "Información de Contacto" #: profile-builder-2.0/admin/manage-fields.php:207 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168 #: profile-builder-2.0/front-end/recover.php:118 #: profile-builder-2.0/modules/user-listing/userlisting.php:108 msgid "E-mail" msgstr "E-mail" #: profile-builder-2.0/admin/manage-fields.php:208 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32 #: profile-builder-2.0/modules/user-listing/userlisting.php:111 #: profile-builder-2.0/modules/user-listing/userlisting.php:751 #: profile-builder-2.0/modules/user-listing/userlisting.php:2221 msgid "Website" msgstr "Sitio Web" #: profile-builder-2.0/admin/manage-fields.php:212 msgid "AIM" msgstr "AIM" #: profile-builder-2.0/admin/manage-fields.php:213 msgid "Yahoo IM" msgstr "Yahoo IM" #: profile-builder-2.0/admin/manage-fields.php:214 msgid "Jabber / Google Talk" msgstr "Jabber / Google Talk" #: profile-builder-2.0/admin/manage-fields.php:217 msgid "About Yourself" msgstr "Acerca de Usted" #: profile-builder-2.0/admin/manage-fields.php:218 #: profile-builder-2.0/modules/user-listing/userlisting.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:754 #: profile-builder-2.0/modules/user-listing/userlisting.php:2222 msgid "Biographical Info" msgstr "Información Biográfica" #: profile-builder-2.0/admin/manage-fields.php:218 msgid "" "Share a little biographical information to fill out your profile. This may " "be shown publicly." msgstr "" "Compartir una pequeña información biográfica para llenar su perfil. Esto " "puede mostrarse públicamente. " #: profile-builder-2.0/admin/manage-fields.php:219 #: profile-builder-2.0/front-end/recover.php:73 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "Contraseña" #: profile-builder-2.0/admin/manage-fields.php:219 msgid "Type your password." msgstr "Escriba su contraseña." #: profile-builder-2.0/admin/manage-fields.php:220 #: profile-builder-2.0/front-end/recover.php:74 msgid "Repeat Password" msgstr "Repetir contraseña" #: profile-builder-2.0/admin/manage-fields.php:220 msgid "Type your password again. " msgstr "Escriba su contraseña nuevamente." #: profile-builder-2.0/admin/manage-fields.php:980 #: profile-builder-2.0/admin/manage-fields.php:1137 msgid "" "You must select a field\n" msgstr "" "Tiene que seleccionar un campo\n" #: profile-builder-2.0/admin/manage-fields.php:990 msgid "" "Please choose a different field type as this one already exists in your form " "(must be unique)\n" msgstr "" "Por favor escoja un tipo de campo diferente dado que este solo existe en su " "forma (debe ser único)\n" #: profile-builder-2.0/admin/manage-fields.php:1001 msgid "" "The entered avatar size is not between 20 and 200\n" msgstr "" "El tamaño del avatar entrado no está entre 20 y 200\n" #: profile-builder-2.0/admin/manage-fields.php:1004 msgid "" "The entered avatar size is not numerical\n" msgstr "" "El tamaño del avatar entrado no es numérico\n" #: profile-builder-2.0/admin/manage-fields.php:1012 msgid "" "The entered row number is not numerical\n" msgstr "" "El número de la fila entrado no es numérico\n" #: profile-builder-2.0/admin/manage-fields.php:1015 msgid "" "You must enter a value for the row number\n" msgstr "" "Usted tiene que entrar un valor para el número de la fila\n" #: profile-builder-2.0/admin/manage-fields.php:1036 msgid "" "The entered value for the Datepicker is not a valid date-format\n" msgstr "" "El valor entrado para el Datepicker no es un formato de fecha válido\n" #: profile-builder-2.0/admin/manage-fields.php:1039 msgid "" "You must enter a value for the date-format\n" msgstr "" "Usted tiene que entrar un valor para el formato de fecha\n" #: profile-builder-2.0/admin/manage-fields.php:1067 #: profile-builder-2.0/admin/manage-fields.php:1075 #: profile-builder-2.0/admin/manage-fields.php:1086 msgid "" "That meta-name is already in use\n" msgstr "" "Ese meta nombre ya está en uso\n" #: profile-builder-2.0/admin/manage-fields.php:1117 msgid "" "The following option(s) did not coincide with the ones in the options list: " "%s\n" msgstr "" "La(s) siguiente(s) opción(es) no coincide(n) con aquellas en la lista de " "opciones:%s\n" #: profile-builder-2.0/admin/manage-fields.php:1121 msgid "" "The following option did not coincide with the ones in the options list: %s\n" msgstr "" "La siguiente opción no coincidió con aquellas de la lista de opciones: %s\n" #: profile-builder-2.0/admin/manage-fields.php:1144 msgid "" "That field is already added in this form\n" msgstr "" "Ese campo ya está añadido en esta forma\n" #: profile-builder-2.0/admin/manage-fields.php:1193 msgid "" "
            Title
            Type
            Meta Name
            Required
            " msgstr "" "
            Título
            Tipo
            Meta Nombre
            Requerido
            " #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108 #: profile-builder-2.0/features/functions.php:718 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Edit" msgstr "Editar" #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217 #: profile-builder-2.0/features/functions.php:711 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "Delete" msgstr "Editar" #: profile-builder-2.0/admin/manage-fields.php:1208 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "" "Usar estos códigos cortos en las páginas en las que quiere que las formas se " "muestren:" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Your Version" msgstr "" "Si está interesado en mostrar diferentes campos en las formas de edición del " "perfil y el registro, por favor use El Addon Multiple Registration & Edit " "Profile Forms." #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Version" msgstr "Registre la Versión" #: profile-builder-2.0/admin/register-version.php:70 msgid "" "If you register this version of Profile Builder, you'll receive information " "regarding upgrades, patches, and technical support." msgstr "" "Si usted registra esta versión de Profile Builder, recibirá información " "referente a actualizaciones, parches, y soporte técnico." #: profile-builder-2.0/admin/register-version.php:72 msgid " Serial Number:" msgstr "Número de Serie:" #: profile-builder-2.0/admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "¡El número de serie fue validado satisfactoriamente!" #: profile-builder-2.0/admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "¡El número de serie está a punto de expirar!" #: profile-builder-2.0/admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "¡El número de serie no ha podido ser validado porque expiró!" #: profile-builder-2.0/admin/register-version.php:85 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!" msgstr "" "El número de serie no ha podido ser validado porque el proceso sobrepasó el " "tiempo de espera. Esto es posible debido a que el server está caido.¡ Por " "favor intente luego! " #: profile-builder-2.0/admin/register-version.php:87 msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/features/functions.php:725 msgid "Content" msgstr "Contenido" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 msgid "Edit this item" msgstr "Editar este elemento" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 msgid "Delete this item" msgstr "Borrar este elemento" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705 msgid "Please enter a value for the required field " msgstr "Por favor entre un valor para el campo requerido" #: pb-add-on-woocommerce/woo-checkout-field-support.php:262 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122 msgid "Select File" msgstr "Seleccionar archivo" #: pb-add-on-woocommerce/woo-checkout-field-support.php:252 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112 msgid "Remove" msgstr "Eliminar" #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8 msgid "You can add the information for the %s after you add a entry" msgstr "" "Usted puede adicionar la información para el %s luego de que adicione una " "entrada" #: pb-add-on-woocommerce/woo-checkout-field-support.php:268 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128 msgid "Upload " msgstr "Subir" #: profile-builder-2.0/features/class-list-table.php:184 msgid "No items found." msgstr "No se encontraron elementos." #: profile-builder-2.0/features/class-list-table.php:308 msgid "Bulk Actions" msgstr "Acciones en Bloque" #: profile-builder-2.0/features/class-list-table.php:318 msgid "Apply" msgstr "Aplicar" #: profile-builder-2.0/features/class-list-table.php:402 msgid "Show all dates" msgstr "Mostrar todas las fechas" #: profile-builder-2.0/features/class-list-table.php:415 msgid "%1$s %2$d" msgstr "%1$s %2$d" #: profile-builder-2.0/features/class-list-table.php:431 msgid "List View" msgstr "Vista de Lista" #: profile-builder-2.0/features/class-list-table.php:432 msgid "Excerpt View" msgstr "Vista de Extracto" #: profile-builder-2.0/features/class-list-table.php:458 msgid "%s pending" msgstr "%s pendiente" #: profile-builder-2.0/features/class-list-table.php:566 msgid "%1$s of %2$s" msgstr "%1$s de %2$s" #: profile-builder-2.0/features/class-list-table.php:713 msgid "Select All" msgstr "Seleccionar Todo" #: profile-builder-2.0/features/functions.php:526 msgid "Strength indicator" msgstr "Indicador de Fortaleza" #: profile-builder-2.0/features/admin-approval/admin-approval.php:14 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453 msgid "Admin Approval" msgstr "Aprobación del Admin" #: profile-builder-2.0/features/admin-approval/admin-approval.php:28 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "¿Usted desea" #: profile-builder-2.0/features/admin-approval/admin-approval.php:51 msgid "Your session has expired! Please refresh the page and try again" msgstr "" "¡Su sesión ha expirado! Por favor refresque la página y trate nuevamente" #: profile-builder-2.0/features/admin-approval/admin-approval.php:64 msgid "User successfully approved!" msgstr "¡Usuario aprobado satisfactoriamente!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:74 msgid "User successfully unapproved!" msgstr "¡Usuario desaprobado satisfactoriamente!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:80 msgid "User successfully deleted!" msgstr "¡Usuario eliminado satisfactoriamente!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:85 #: profile-builder-2.0/features/admin-approval/admin-approval.php:131 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "¡Usted o no tiene permiso para esa acción o hubo un error" #: profile-builder-2.0/features/admin-approval/admin-approval.php:96 msgid "Your session has expired! Please refresh the page and try again." msgstr "" "¡Su sesión ha expirado! Por favor refresque la página e intente nuevamente." #: profile-builder-2.0/features/admin-approval/admin-approval.php:109 msgid "Users successfully approved!" msgstr "¡Usuario aprobado satisfactoriamente!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:119 msgid "Users successfully unapproved!" msgstr "¡Usuario desaprobado satisfactoriamente!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:127 msgid "Users successfully deleted!" msgstr "¡Usuario eliminado satisfactoriamente!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:147 msgid "Your account on %1$s has been approved!" msgstr "¡Su cuenta el %1$s ha sido aprobada!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:148 #: profile-builder-2.0/features/admin-approval/admin-approval.php:151 msgid "approved" msgstr "aprobada" #: profile-builder-2.0/features/admin-approval/admin-approval.php:150 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "Un administrador ha aprobado su cuenta el %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:155 msgid "Your account on %1$s has been unapproved!" msgstr "¡Su cuenta ha sido desaprobada el %1$s!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:156 #: profile-builder-2.0/features/admin-approval/admin-approval.php:159 msgid "unapproved" msgstr "desaprobado" #: profile-builder-2.0/features/admin-approval/admin-approval.php:158 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "Un administrador ha desaprobado su cuenta el %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:177 msgid "" "ERROR: Your account has to be confirmed by an administrator " "before you can log in." msgstr "" "ERROR: Su cuenta tiene que ser confirmada por un " "administrador antes de que pueda autenticarse." #: profile-builder-2.0/features/admin-approval/admin-approval.php:189 msgid "" "Your account has to be confirmed by an administrator before you can use the " "\"Password Recovery\" feature." msgstr "" "Su cuenta tiene que ser confirmada por un administrador antes de que pueda " "usar la característica \"Recuperar Contraseña\"" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "¿eliminar este usuario?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "¿desaprobar este usuario?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr "Desaprobar" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "¿Aprobar este usuario?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "Aprobar" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167 #: profile-builder-2.0/modules/user-listing/userlisting.php:278 #: profile-builder-2.0/modules/user-listing/userlisting.php:742 #: profile-builder-2.0/modules/user-listing/userlisting.php:2224 msgid "Firstname" msgstr "Primer Nombre" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168 #: profile-builder-2.0/modules/user-listing/userlisting.php:745 #: profile-builder-2.0/modules/user-listing/userlisting.php:2225 msgid "Lastname" msgstr "Apellidos" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170 #: profile-builder-2.0/modules/user-listing/userlisting.php:149 #: profile-builder-2.0/modules/user-listing/userlisting.php:279 #: profile-builder-2.0/modules/user-listing/userlisting.php:772 #: profile-builder-2.0/modules/user-listing/userlisting.php:2229 msgid "Role" msgstr "Rol" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169 msgid "Registered" msgstr "Registrado" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "Estado del usuario" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "¿Desea aprobar en bloque los usuarios seleccionados?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "¿Desea desaprobar en bloque los usuarios seleccionados?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "¿Desea eliminar en bloque los usuarios seleccionados?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278 msgid "Sorry, but you don't have permission to do that!" msgstr "Disculpe, ¡pero no tiene permisos para hacer eso!" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339 msgid "Approved" msgstr "Aprobado" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341 msgid "Unapproved" msgstr "Desaprobado" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454 msgid "All Users" msgstr "Todos los Usuarios" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 msgid "delete this user from the _signups table?" msgstr "¿eliminar este usuario de la tabla _signups?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 msgid "confirm this email yourself?" msgstr "¿confirmar este email usted mismo?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218 msgid "Confirm Email" msgstr "Confirmar Email" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 msgid "resend the activation link?" msgstr "¿reenviar el enlace de activación?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219 msgid "Resend Activation Email" msgstr "Reenviar Email de Activación" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249 msgid "%s couldn't be deleted" msgstr "%s no pudo ser eliminado" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253 msgid "All users have been successfully deleted" msgstr "Todos los usuarios han sido eliminados satisfactoriamenet" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263 msgid "The selected users have been activated" msgstr "Los usuarios seleccionados han sido activados" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274 msgid "The selected users have had their activation emails resent" msgstr "" "Los usuarios seleccionados han tenido sus email de activación reenviados" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "Usuarios con Direcciones de Email Sin Confirmar" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "¡Hubo un error ejecutando esa acción!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "El usuario seleccionado no pudo ser eliminado" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "Notificación de Email reenviada al usuario" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398 msgid "[%1$s] Activate %2$s" msgstr "[%1$s] Activar %2$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442 #: profile-builder-2.0/front-end/register.php:71 msgid "Could not create user!" msgstr "¡No se pudo crear el usuario!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445 msgid "That username is already activated!" msgstr "¡Ese nombre de usuario ya está activado!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468 msgid "There was an error while trying to activate the user" msgstr "Hubo un error intentando activar el usuario" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73 msgid "A new subscriber has (been) registered!" msgstr "¡Un nuevo suscriptor ha sido registrado!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "" "Nuevo suscriptor el %1$s.

            Nombre de Usuario:%2$s
            E-mail:" "%3$s
            " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634 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!" msgstr "" "La característica \"Aprobación del Admin\" fue activada en el tiempo de " "registro, ¡por favor recuerde que necesita aprobar a este usuario antes de " "que él/ella pueda autenticarse!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570 msgid "[%1$s] Your new account information" msgstr "[%1$s] La información de su nueva cuenta" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581 msgid "Welcome to %1$s!


            Your username is:%2$s and password:%3$s" msgstr "" "¡Bienvenido a %1$s!


            Su nombre de usuario es:%2$s y contraseña:" "%3$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642 #: profile-builder-2.0/front-end/register.php:125 msgid "" "Before you can access your account, an administrator needs to approve it. " "You will be notified via email." msgstr "" "Antes de que pueda acceder su cuenta, un administrador necesita aprobarla. " "Usted será notificado via email." #: profile-builder-2.0/features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "" "El widget de autenticación le permite añadir una forma de autenticación en " "la barra lateral." #: profile-builder-2.0/features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "Widget de Autenticación de Profile Builder" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36 #: profile-builder-2.0/front-end/class-formbuilder.php:415 #: profile-builder-2.0/front-end/login.php:250 msgid "Register" msgstr "Registrar" #: profile-builder-2.0/features/login-widget/login-widget.php:63 msgid "Title:" msgstr "Título:" #: profile-builder-2.0/features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "URL de redirección luego de autenticarse (opcional):" #: profile-builder-2.0/features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "URL de página de registro (opcional):" #: profile-builder-2.0/features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "URL de página de Recuperar Contraseña (opcional):" #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91 #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "Los nombres de usuario no pueden ser cambiados." #: profile-builder-2.0/front-end/class-formbuilder.php:136 msgid "Only an administrator can add new users." msgstr "Solamente un administrador puede adicionar nuevos usuarios." #: profile-builder-2.0/front-end/class-formbuilder.php:146 msgid "Users can register themselves or you can manually create users here." msgstr "" "Los usuarios pueden registrarse ellos mismos o usted puede manualmente crear " "usuarios aquí." #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "" "Users cannot currently register themselves, but you can manually create " "users here." msgstr "" "Los usuarios no pueden registrarse ellos mismos actualmente, pero usted " "puede crear usuarios manualmente aquí." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "" "Usted está autenticado actualmente como %1s. Usted no necesita otra cuenta. " "%2s" #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Log out of this account." msgstr "Salir de esta cuenta." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Logout" msgstr "Salir" #: profile-builder-2.0/front-end/class-formbuilder.php:175 msgid "You must be logged in to edit your profile." msgstr "Usted tiene que estar autenticado para editar su perfil." #: profile-builder-2.0/features/functions.php:994 msgid "here" msgstr "aquí" #: profile-builder-2.0/features/functions.php:995 msgid "" "You will soon be redirected automatically. If you see this page for more " "than %1$d seconds, please click %2$s.%3$s" msgstr "" "Usted pronto será redirigido automáticamente. Si ve esta página por más de " "%1$d segundos, por favor haga clic en %2$s.%3$s" #: profile-builder-2.0/front-end/class-formbuilder.php:315 #: profile-builder-2.0/front-end/class-formbuilder.php:322 msgid "The account %1s has been successfully created!" msgstr "¡La cuenta %1s ha sido creada satisfactoriamente!" #: profile-builder-2.0/front-end/class-formbuilder.php:318 #: profile-builder-2.0/front-end/class-formbuilder.php:328 msgid "" "Before you can access your account %1s, you need to confirm your email " "address. Please check your inbox and click the activation link." msgstr "" "Antes de que pueda acceder a su cuenta %1s, necesita confirmar su dirección " "de email. Por favor chequee su bandeja de entrada y haga clic en el enlace " "de activación." #: profile-builder-2.0/front-end/class-formbuilder.php:324 msgid "" "Before you can access your account %1s, an administrator has to approve it. " "You will be notified via email." msgstr "" "Antes de que pueda acceder a su cuenta %1s, un administrador tiene que " "aprobarla. Usted será notificado via email." #: profile-builder-2.0/front-end/class-formbuilder.php:347 msgid "Your profile has been successfully updated!" msgstr "¡Su perfil ha sido actualizado satisfactoriamente!" #: profile-builder-2.0/front-end/class-formbuilder.php:358 msgid "There was an error in the submitted form" msgstr "Hubo un error en la forma enviada" #: profile-builder-2.0/front-end/class-formbuilder.php:415 msgid "Add User" msgstr "Adicionar Usuario" #: profile-builder-2.0/admin/add-ons.php:170 #: profile-builder-2.0/front-end/class-formbuilder.php:418 msgid "Update" msgstr "Actualizar" #: profile-builder-2.0/front-end/class-formbuilder.php:481 msgid "Send these credentials via email." msgstr "Enviar estas credenciales via email." #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92 #: profile-builder-2.0/front-end/login.php:137 #: profile-builder-2.0/front-end/login.php:144 #: profile-builder-2.0/front-end/login.php:158 #: profile-builder-2.0/front-end/recover.php:17 #: profile-builder-2.0/front-end/recover.php:245 msgid "ERROR" msgstr "ERROR" #: profile-builder-2.0/front-end/login.php:137 msgid "The password you entered is incorrect." msgstr "La contraseña que entró es incorrecta." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Password Lost and Found." msgstr "Perdido y Encontrado de Contraseña." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Lost your password" msgstr "Perdió su contraseña" #: profile-builder-2.0/front-end/login.php:158 msgid "Both fields are empty." msgstr "Ambos campos están vacíos." #: profile-builder-2.0/front-end/login.php:296 msgid "You are currently logged in as %1$s. %2$s" msgstr "Usted está autenticado actualmente como %1$s. %2$s" #: profile-builder-2.0/front-end/login.php:295 #: profile-builder-2.0/front-end/logout.php:25 msgid "Log out of this account" msgstr "Salir de esta cuenta" #: profile-builder-2.0/front-end/login.php:295 msgid "Log out" msgstr "Salir" #: profile-builder-2.0/front-end/recover.php:17 msgid "" "Your account has to be confirmed by an administrator before you can use the " "\"Password Reset\" feature." msgstr "" "Su cuenta tiene que ser confirmada por un administrador antes de que pueda " "usar la característica \"Resetear Contraseña\"." #: profile-builder-2.0/front-end/recover.php:94 msgid "Reset Password" msgstr "Resetear Contraseña" #: profile-builder-2.0/front-end/recover.php:121 msgid "Please enter your username or email address." msgstr "Por favor entre su nombre de usuario o dirección de email." #: profile-builder-2.0/front-end/recover.php:125 msgid "You will receive a link to create a new password via email." msgstr "Usted recibirá un enlace para crear una nueva contraseña via email." #: profile-builder-2.0/front-end/recover.php:122 msgid "Username or E-mail" msgstr " Nombre de Usuario o E-mail" #: profile-builder-2.0/front-end/recover.php:138 msgid "Get New Password" msgstr "Obtener Nueva Contraseña" #: profile-builder-2.0/front-end/recover.php:185 msgid "The username entered wasn't found in the database!" msgstr "¡El nombre de usuario entrado no se encontró en la base de datos!" #: profile-builder-2.0/front-end/recover.php:185 msgid "Please check that you entered the correct username." msgstr "Por favor chequee que entró el nombre de usuario correcto." #: profile-builder-2.0/front-end/recover.php:200 msgid "Check your e-mail for the confirmation link." msgstr "Chequee su e-mail para el enlace de confirmación." #: profile-builder-2.0/front-end/recover.php:235 msgid "" "Someone requested that the password be reset for the following account: " "%1$s
            If this was a mistake, just ignore this email and nothing will " "happen.
            To reset your password, visit the following link:%2$s" msgstr "" "Alguien pidió que la contraseña sea reseteada para la siguiente cuenta:" "%1$s
            Si esto fue un error, solamente ignore este email y nada " "ocurrirá.
            Para resetear su contraseña, visite el siguiente enlace:%2$s" #: profile-builder-2.0/front-end/recover.php:238 msgid "Password Reset from \"%1$s\"" msgstr "Reseteo de Contraseña desde \"%1$s\"" #: profile-builder-2.0/front-end/recover.php:245 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "" "¡Hubo un error mientras se intentaba enviar el enlace de activación a %1$s!" #: profile-builder-2.0/front-end/recover.php:207 msgid "The email address entered wasn't found in the database!" msgstr "¡La dirección de email entrada no se encontró en la base de datos!" #: profile-builder-2.0/front-end/recover.php:207 msgid "Please check that you entered the correct email address." msgstr "Por favor chequee que entró la dirección de email correcta." #: profile-builder-2.0/front-end/recover.php:273 msgid "Your password has been successfully changed!" msgstr "¡Su contraseña ha sido cambiada satisfactoriamente!" #: profile-builder-2.0/front-end/recover.php:292 msgid "You have successfully reset your password to: %1$s" msgstr "Usted ha reseteado satisfactoriamente su contraseña a: %1$s" #: profile-builder-2.0/front-end/recover.php:295 #: profile-builder-2.0/front-end/recover.php:306 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "Contraseña Reseteada Satisfactoriamente para %1$s el \"%2$s\"" #: profile-builder-2.0/front-end/recover.php:303 msgid "" "%1$s has requested a password change via the password reset feature.
            " "His/her new password is:%2$s" msgstr "" "%1$s ha pedido un cambio de contraseña via la característica de reseteo de " "contraseña.
            Su nueva contraseña es:%2$s" #: profile-builder-2.0/front-end/recover.php:320 msgid "The entered passwords don't match!" msgstr "¡Las contraseñas entradas no coinciden!" #: profile-builder-2.0/front-end/recover.php:375 msgid "ERROR:" msgstr "ERROR:" #: profile-builder-2.0/front-end/recover.php:375 msgid "Invalid key!" msgstr "¡Llave inválida!" #: profile-builder-2.0/front-end/register.php:56 msgid "Invalid activation key!" msgstr "¡Llave de activación inválida!" #: profile-builder-2.0/front-end/register.php:60 msgid "This username is now active!" msgstr "¡Este nombre de usuario está ahora activo!" #: profile-builder-2.0/front-end/register.php:74 msgid "This username is already activated!" msgstr "¡Este nombre de usuario está ya activado!" #: profile-builder-2.0/front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "Su email fue confirmado satisfactoriamente." #: profile-builder-2.0/front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "Hubo un error mientras se trataba de activar el usuario. ##" #: pb-add-on-woocommerce/index.php:393 #: profile-builder-2.0/front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "El email que ha entrado no es una dirección de email válida." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "Este email ya está reservado para ser usado pronto." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 #: profile-builder-2.0/front-end/default-fields/username/username.php:49 #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "¡Por favor trate con uno diferente!" #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "Este email ya está en uso." #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37 #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "Las contraseñas no coinciden" #: profile-builder-2.0/front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "El nombre de usuario ya existe." #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "El nombre de usuario ya está reservado para ser usado pronto." #: profile-builder-2.0/modules/user-listing/userlisting.php:276 msgid "Avatar" msgstr "Avatar" #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72 #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45 #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45 #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40 #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34 #: profile-builder-2.0/front-end/extra-fields/input/input.php:30 #: profile-builder-2.0/front-end/extra-fields/map/map.php:51 #: profile-builder-2.0/front-end/extra-fields/number/number.php:30 #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39 #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52 #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46 #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49 #: profile-builder-2.0/front-end/extra-fields/select/select.php:51 #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70 #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "requerido" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48 msgid "To use reCAPTCHA you must get an API key from" msgstr "Para utilizar reCAPTCHA usted tiene que obtener la llave de API desde" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "" "¡Por razones de seguridad, usted tiene que para el ip remoto a reCAPTCHA!" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "" "Para utilizar reCAPTCHA usted tiene que obtener una llave pública API desde:" #: profile-builder-2.0/modules/modules.php:11 #: profile-builder-2.0/modules/modules.php:58 msgid "Modules" msgstr "Módulos" #: profile-builder-2.0/modules/modules.php:59 msgid "" "Here you can activate / deactivate available modules for Profile Builder." msgstr "" "Aquí usted puede activar/desactivar los módulos disponibles para Profile " "Builder." #: profile-builder-2.0/modules/modules.php:69 msgid "Name/Description" msgstr "Nombre/Descripción" #: profile-builder-2.0/modules/modules.php:70 msgid "Status" msgstr "Estado" #: profile-builder-2.0/modules/modules.php:77 #: profile-builder-2.0/modules/modules.php:84 #: profile-builder-2.0/modules/modules.php:91 #: profile-builder-2.0/modules/modules.php:98 #: profile-builder-2.0/modules/modules.php:105 #: profile-builder-2.0/modules/modules.php:112 #: profile-builder-2.0/modules/modules.php:119 msgid "Active" msgstr "Activo" #: profile-builder-2.0/modules/modules.php:78 #: profile-builder-2.0/modules/modules.php:85 #: profile-builder-2.0/modules/modules.php:92 #: profile-builder-2.0/modules/modules.php:99 #: profile-builder-2.0/modules/modules.php:106 #: profile-builder-2.0/modules/modules.php:113 #: profile-builder-2.0/modules/modules.php:120 msgid "Inactive" msgstr "Inactivo" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:96 msgid "Admin Email Customizer" msgstr "Personalizador de Email de Admin" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:103 msgid "User Email Customizer" msgstr "Personalizador de Email de Usuario" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253 msgid "Save" msgstr "Salvar" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "Redireccionar" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "URL" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 msgid "" "These settings are also replicated in the \"User Email Customizer\" settings-" "page upon save." msgstr "" "Estos ajustes están también replicados en la página de ajustes de " "\"Personalizador de Email de Usuario\" al salvar." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41 msgid "From (name)" msgstr "De (nombre)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49 msgid "From (reply-to email)" msgstr "De (email de responder-a)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57 msgid "Common Settings" msgstr "Ajustes Comunes" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" msgstr "" "\n" "

            Nuevo suscriptor en {{site_name}}.

            \n" "

            Nombre de Usuario:{{username}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274 msgid "Email Subject" msgstr "Asunto del Email" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84 msgid "Default Registration & Registration with Email Confirmation" msgstr "Registro Por Defecto y Registro con Confirmación de Email" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log " "in!

            \n" msgstr "" "\n" "

            Nuevo suscriptor en {{site_name}}.

            \n" "

            Nombre de Usuario:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            La característica de Aprobación del Admin fue activada en el tiempo de " "registro,\n" "así que por favor recuerde que ¡necesita aprobar a este usuario antes de que " "pueda autenticarse!

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143 msgid "Registration with Admin Approval" msgstr "Registro con Aprobación de Admin" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "Etiquetas Disponibles" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170 msgid "User Meta" msgstr "Meta del Usuario" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "Url del Sitio" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "Nombre del Sitio" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25 #: profile-builder-2.0/modules/user-listing/userlisting.php:158 msgid "User Id" msgstr "Id del Usuario" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33 msgid "Reply To" msgstr "Responder a" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40 msgid "Activation Key" msgstr "Llave de Activación" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41 msgid "Activation Url" msgstr "URL de Activación" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42 msgid "Activation Link" msgstr "Enlace de Activación" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" msgstr "" "\n" "

            ¡Bienvenido a {{site_name}}!

            \n" "

            Su nombre de usuario es:{{username}} y su contraseña:{{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85 msgid "Default Registration" msgstr "Registro Por Defecto" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91 msgid "" "\n" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials." "

            \n" msgstr "" "\n" "

            Para activar su usuario, por favor haga clic en el enlace siguiente:
            " "\n" "{{{activation_link}}}

            \n" "

            Luego de activar, recibirá otro email con sus credenciales.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103 msgid "[{{site_name}}] Activate {{username}}" msgstr "[{{site_name}}] Activar {{username}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114 msgid "Registration with Email Confirmation" msgstr "Registro con Confirmación de Email" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. " "You will be notified via email.

            \n" msgstr "" "\n" "

            ¡Bienvenido a {{site_name}}!

            \n" "

            Su nombre de usuario es:{{username}} y su contraseña:{{password}}

            \n" "

            Antes de que pueda acceder a su cuenta, un administrador necesita " "aprobarla. Usted será notificado via email..

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132 msgid "A new account has been created for you on {{site_name}}" msgstr "Una nueva cuenta ha sido creada para usted en {{site_name}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148 msgid "" "\n" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on " "{{site_name}}.

            \n" msgstr "" "\n" "

            ¡Buenas Noticias!

            \n" "

            Un administrador ha aprobado su cuenta: {{username}} en {{site_name}}.

            " "\n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159 msgid "Your account on {{site_name}} has been approved!" msgstr "¡Su cuenta en {{site_name}} ha sido aprobada!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170 msgid "User Approval Notification" msgstr "Notificación de Aprobación de Usuario" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175 msgid "" "\n" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: " "{{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Hola,

            \n" "

            Desafortunadamente un administrador ha desaprobado su cuenta: {{username}}" " en {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187 msgid "Your account on {{site_name}} has been unapproved!" msgstr "¡Su cuenta en {{site_name}} ha sido desaprobada!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198 msgid "Unapproved User Notification" msgstr "Notificación de Usuario Desaprobado" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "Forma de Editar Perfil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13 #: profile-builder-2.0/modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "Adicionar Nuevo" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "Adicionar nueva Forma de Editar Perfil " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "Editar las Formas de Editar Perfil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "Nueva Forma de Editar Perfil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "Formas de Editar Perfil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "Ver la Forma de Editar Perfil " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "Buscar las Formas de Editar Perfil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "No se encontró Forma de Editar Perfil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "No se encontró Forma de Editar Perfil en la papelera" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138 #: profile-builder-2.0/modules/user-listing/userlisting.php:2115 msgid "Shortcode" msgstr "Código corto" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159 #: profile-builder-2.0/modules/user-listing/userlisting.php:2136 msgid "(no title)" msgstr "(sin título)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178 #: profile-builder-2.0/modules/user-listing/userlisting.php:2156 msgid "The shortcode will be available after you publish this form." msgstr "El código corto estará disponible luego de que publique esta forma." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180 #: profile-builder-2.0/modules/user-listing/userlisting.php:2158 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "" "Utilice este código corto en la página en la que desea que la forma se " "muestre:" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184 #: profile-builder-2.0/modules/user-listing/userlisting.php:2162 msgid "" "Note: changing the form title also changes " "the shortcode!" msgstr "" "Nota: ¡cambiar el título de la forma " "también cambia el código corto!" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190 #: profile-builder-2.0/modules/user-listing/userlisting.php:2195 msgid "Form Shortcode" msgstr "Código Corto de la Forma" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "Cuando redireccionar al usuario a una página específica o no" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "Mostrar Mensajes" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "" "Tiempo permitido para mostrar cualquier mensajes satisfactorios (en segundos)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 msgid "" "Specify the URL of the page users will be redirected once they updated their " "profile using this form
            Use the following format: http://www.mysite.com" msgstr "" "Especificar la URL de la página a la que los usuarios serán redireccionados " "una vez que actualizaron su perfil usando esta forma
            Utilizar el " "siguiente formato: http://www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "Luego de la Actualización del Perfil..." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "Adicionar Nuevo Campo a la Lista" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage Title (Type)" msgstr "
            Título (Tipo)
            " #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "Usted necesita especificar el título de la forma antes de crearla" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "Forma de Registro" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "Adicionar nueva Forma de Registro" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "Editar las Formas de Registro" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "Nueva Forma de Registro" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "Formas de Registro" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "Ver la Forma de Registro" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "Buscar las Formas de Registro" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "No se encontró Forma de Registro" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "No se encontraron Formas de Registro en la papelera" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "Rol Por Defecto" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "Establecer Rol" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "" "Choose what role the user will have after (s)he registered
            If not " "specified, defaults to the role set in the WordPress settings" msgstr "" "Escoger qué rol el usuario va a tener luego de que se registra
            Si no se " "especifica, se le asigna por defecto el rol establecido en los ajustes de " "WordPress" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "Autenticarse Automáticamente" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "" "Whether to automatically log in the newly registered user or not
            Only " "works on single-sites without \"Admin Approval\" and \"Email Confirmation\" " "features activated
            WARNING: Caching the registration form will make " "automatic login not work" msgstr "" "Cuando autenticarse automáticamente en el nuevo usuario registrado o no
            " "Solamente funciona en sitios simples sin las características \"Aprobación de " "Admin\" y \"Confirmación por Email\" activadas
            ADVERTENCIA: Hacer caché " "en la forma de registro va a hacer que la autenticación automática no " "funcione" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "" "Specify the URL of the page users will be redirected once registered using " "this form
            Use the following format: http://www.mysite.com" msgstr "" "Especificar la URL de la página a la que los usuarios serán redirigidos una " "vez registrados usando esta forma
            Utilice el siguiente formato: http:" "//www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "Luego del Registro..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1038 #: profile-builder-2.0/modules/user-listing/userlisting.php:1485 #: profile-builder-2.0/modules/user-listing/userlisting.php:1953 #: profile-builder-2.0/modules/user-listing/userlisting.php:2426 msgid "Search Users by All Fields" msgstr "Buscar Usuarios por Todos los Campos" #: profile-builder-2.0/modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "Adicionar Nuevo Listado de Usuario" #: profile-builder-2.0/modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "Editar el Listado de Usuario" #: profile-builder-2.0/modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "Nuevo Listado de Usuario" #: profile-builder-2.0/modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "Ver el Listado de Usuario" #: profile-builder-2.0/modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "Buscar el Listado de Usuario" #: profile-builder-2.0/modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "No se encontró Listado de Usuario" #: profile-builder-2.0/modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "No se encontró Listado de Usuario en la papelera" #: profile-builder-2.0/modules/user-listing/userlisting.php:105 msgid "Display name as" msgstr "Mostrar nombre como" #: profile-builder-2.0/modules/user-listing/userlisting.php:150 #: profile-builder-2.0/modules/user-listing/userlisting.php:2223 msgid "Registration Date" msgstr "Fecha de Registro" #: profile-builder-2.0/modules/user-listing/userlisting.php:151 #: profile-builder-2.0/modules/user-listing/userlisting.php:2228 msgid "Number of Posts" msgstr "Número de Posts" #: profile-builder-2.0/modules/user-listing/userlisting.php:155 msgid "More Info" msgstr "Más Info" #: profile-builder-2.0/modules/user-listing/userlisting.php:156 msgid "More Info Url" msgstr "Url de Más Info" #: profile-builder-2.0/modules/user-listing/userlisting.php:157 msgid "Avatar or Gravatar" msgstr "Avatar o Gravatar" #: profile-builder-2.0/modules/user-listing/userlisting.php:196 #: profile-builder-2.0/modules/user-listing/userlisting.php:227 msgid "Extra Functions" msgstr "Funciones Adicionales" #: profile-builder-2.0/modules/user-listing/userlisting.php:199 msgid "Pagination" msgstr "Paginación" #: profile-builder-2.0/modules/user-listing/userlisting.php:200 msgid "Search all Fields" msgstr "Buscar todos los Campos" #: profile-builder-2.0/modules/user-listing/userlisting.php:229 msgid "Go Back Link" msgstr "Enlace de Volver" #: profile-builder-2.0/modules/user-listing/userlisting.php:247 msgid "All-userlisting Template" msgstr "Plantilla All-userlisting" #: profile-builder-2.0/modules/user-listing/userlisting.php:250 msgid "Single-userlisting Template" msgstr "Plantilla Single-userlisting" #: profile-builder-2.0/modules/user-listing/userlisting.php:733 msgid "First/Lastname" msgstr "Nombre/Apellidos" #: profile-builder-2.0/modules/user-listing/userlisting.php:281 #: profile-builder-2.0/modules/user-listing/userlisting.php:739 msgid "Sign-up Date" msgstr "Fecha de Registro" #: profile-builder-2.0/modules/user-listing/userlisting.php:748 #: profile-builder-2.0/modules/user-listing/userlisting.php:2226 msgid "Display Name" msgstr "Nombre a Mostrar" #: profile-builder-2.0/modules/user-listing/userlisting.php:280 #: profile-builder-2.0/modules/user-listing/userlisting.php:757 msgid "Posts" msgstr "Posts" #: profile-builder-2.0/modules/user-listing/userlisting.php:760 #: profile-builder-2.0/modules/user-listing/userlisting.php:2233 msgid "Aim" msgstr "Aim" #: profile-builder-2.0/modules/user-listing/userlisting.php:763 #: profile-builder-2.0/modules/user-listing/userlisting.php:2234 msgid "Yim" msgstr "Yim" #: profile-builder-2.0/modules/user-listing/userlisting.php:766 #: profile-builder-2.0/modules/user-listing/userlisting.php:2235 msgid "Jabber" msgstr "Jabber" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "Click here to see more information about this user" msgstr "Haga clic aquí para ver más información acerca de este usuario" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "More..." msgstr "Más..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1293 msgid "Click here to see more information about this user." msgstr "Haga clic aquí para ver más información acerca de este usuario." #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 #: profile-builder-2.0/modules/user-listing/userlisting.php:1442 msgid "Click here to go back" msgstr "Haga clic aquí para volver" #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 msgid "Back" msgstr "Atrás" #: profile-builder-2.0/modules/user-listing/userlisting.php:1472 msgid "«« First" msgstr "«« Primero" #: profile-builder-2.0/modules/user-listing/userlisting.php:1473 msgid "« Prev" msgstr "« Ant" #: profile-builder-2.0/modules/user-listing/userlisting.php:1474 msgid "Next » " msgstr "Sigu »" #: profile-builder-2.0/modules/user-listing/userlisting.php:1475 msgid "Last »»" msgstr "Último »»" #: profile-builder-2.0/modules/user-listing/userlisting.php:1504 msgid "You don't have any pagination settings on this userlisting!" msgstr "¡Usted no tiene ningún ajuste de paginación en esta lista de usuario!" #: profile-builder-2.0/modules/user-listing/userlisting.php:1970 msgid "Search" msgstr "Buscar" #: profile-builder-2.0/modules/user-listing/userlisting.php:1971 msgid "Clear Results" msgstr "Limpiar Resultados" #: profile-builder-2.0/modules/user-listing/userlisting.php:2165 #: profile-builder-2.0/modules/user-listing/userlisting.php:2169 msgid "Extra shortcode parameters" msgstr "Parámetros de código corto adicionales" #: profile-builder-2.0/modules/user-listing/userlisting.php:2172 msgid "" "displays users having a certain meta-value within a certain (extra) meta-" "field" msgstr "" "muestra usuarios que tienen cierto meta valor en un cierto meta campo " "(adicional)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2173 msgid "Example:" msgstr "Ejemplo:" #: profile-builder-2.0/modules/user-listing/userlisting.php:2175 msgid "" "Remember though, that the field-value combination must exist in the database." msgstr "" "Recuerde sin embargo, que la combinación campo-valor tiene que existir en la " "base de datos." #: profile-builder-2.0/modules/user-listing/userlisting.php:2250 msgid "Random (very slow on large databases > 10K user)" msgstr "Aleatorio (muy lento en bases de datos grandes > 10k usuarios)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Roles to Display" msgstr "Roles a Mostrar" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "" "Restrict the userlisting to these selected roles only
            If not specified, " "defaults to all existing roles" msgstr "" "Restringir la lista de usuario solamente a los roles seleccionados
            Si no " "se especifica, se amplía a todos los roles existentes" #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Number of Users/Page" msgstr "Número de Usuarios/Página" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Default Sorting Criteria" msgstr "Criterio de Ordenamiento Por Defecto" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "" "Set the default sorting criteria
            This can temporarily be changed for " "each new session" msgstr "" "Establecer el criterio de ordenamiento por defecto
            Esto puede " "temporalmente ser cambiado para cada nueva sesión" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Default Sorting Order" msgstr "Orden de Ordenamiento Por Defecto" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "" "Set the default sorting order
            This can temporarily be changed for each " "new session" msgstr "" "Establecer el orden de ordenamiento por defecto
            Esto puede temporalmente " "ser cambiado para cada nueva sesión" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Avatar Size (All-userlisting)" msgstr "Tamaño del Avatar (All-userlisting) " #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Set the avatar size on the all-userlisting only" msgstr "Establecer el tamaño del avatar solamente en el all-userlisting" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Avatar Size (Single-userlisting)" msgstr "Tamaño del Avatar (Single-userlisting) " #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Set the avatar size on the single-userlisting only" msgstr "Establecer el tamaño del avatar solamente en el single-userlisting" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Visible only to logged in users?" msgstr "¿Visible solamente a los usuario autenticados?" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "The userlisting will only be visible only to the logged in users" msgstr "La lista de usuario solamente será visible a los usuarios autenticados" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "Visible to following Roles" msgstr "Visible a los Roles siguientes" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "The userlisting will only be visible to the following roles" msgstr "La lista de usuario solamente será visible a los roles siguientes" #: profile-builder-2.0/modules/user-listing/userlisting.php:2275 msgid "Userlisting Settings" msgstr "Ajustes de Userlisting " #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "" "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "" "¡Usted necesita activar la característica de Userlisting en la pestaña " "\"Módulos\"!" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You can find it in the Profile Builder menu." msgstr "Usted puede encontrarla en el menú de Profile Builder" #: profile-builder-2.0/modules/user-listing/userlisting.php:2565 msgid "No results found!" msgstr "¡No se encontraron resultados!" translation/profile-builder-zh_HK.mo000066600000143120152141651160013533 0ustar00l,,l,y*-c-.c.A/B0;0+1;1W1q1"1 1e1 $212 H2 S2`22u2 2-22d2Y^3c3!47>4'v4495=5L5[5k5z5 555555556!646 K6W6o6$666 666 6(6707L7L7)8B89\88?8A8'9/969 ?9J9^9d9l9 u999 99999 99 9 :#: 6:A:F:N: V:a:j:k|::io;;;;;;;<<!<A<X<o< x<<<<<< < <<<<= ==(=A=,F=s=|==7==D> U>c>2y>3> >>>? ? ?*? 2? ??J?a?p?x?}??)??? ? ???@@&@;;@ w@@@ @@@@A A3A ;AGAPA aAnA~AAA/A.A1B@BIB\BcBiB pB{BC#C (C5CQCmCCCCC CsC=DCDVD gD!uDDDOD?EQEeFWnFFFFFbFTG ]GjGyGG>GGG HrHHH HHHH HH HH?ITIcI jIxII IIIIIIIIJJ4J :J DJQJ XJbJ jJuJ zJJJ JJJ!JIJK K )K3K;K>KFKKK KKK LLL#L +L7L>L DLPLWLlLtLzLL LL&M,M5MIPX `k tPnҋWA ŌҌ!ڌ  )7>]t{  ʍٍ' )/+5Ua ȎՎ*- AO Xem   Ϗ׏܏+#* 9FV ] jw ! Ð֐   0QY` g t !!֑!# 6C J T_! .ATdw K  !(J]Ap7Vx6ϕ (E1 w H "l0 *×  3+ _l sژ  !: @ JW ^h p{  !9י !+3:hB š֚ $ *6=RZ`g nzy #(>ELS[ck q  /Ɯ͜z$x  ȝ ҝ{ݝY`irw}  ž ͞מߞ  4JQY` i t   ۟    +9Rb u? Ԡޠ-I$b$šء  &0A'Fn uƢ Ϣ٢! ##jG ã3̣*^+$0 + KW ]=j  ƥӥ  , 9 FSl<¦ɦ٦ \z ǧԧ  > DO er y ̨  ,'ɩ * '8M`Dr f6q(ɫ  , 9 FS\eu}* G,T [yEub=   .8 ?KQ Xc l yİyZKu'B+,"X{7),Cbr0$س`^t'''ڴ*-F_'x*'˵B6$R?w!ж!! 6C S/]9Ƿ̷Էڷ  #*FVjqx  θ$ܸ9#N] ҹ ߹  " 8 ERelKE.DZp  Żͻ 2EW[Gbϼ$] #8Az^I2?-rs'0+#0O("8*"?MaDI4$~!0*!!@b-{-#; Q[0z:  0 F

            Good News!

            An administrator has just approved your account: {{username}} on {{site_name}}.

            Hello,

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            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!

            To activate your user, please click the following link:
            {{{activation_link}}}

            After you activate, you will receive another email with your credentials.

            * only available in the %1$sHobbyist and Pro versions%2$s. Serial Number:"Admin Approval" Activated:"Admin Approval" Feature:"Email Confirmation" Activated:"Email Confirmation" Landing Page:%1$s %2$d%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s%1$s of %2$s%s couldn't be deleted%s pending« Prev«« First(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(no title)** only available in the %1$sPro version%2$s.
            Title (Type)
            Title
            Type
            Meta Name
            Required
            Note: changing the form title also changes the shortcode!ERROR: Your account has to be confirmed by an administrator before you can log in.Profile Builder A new account has been created for you on {{site_name}}A new subscriber has (been) registered!A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be editedAIMAbout YourselfActivation KeyActivation LinkActivation UrlActiveAdd FieldAdd NewAdd New Field to the ListAdd UserAdd new Edit-profile FormAdd new Registration FormAdd new User ListingAdmin ApprovalAdmin Approval (*)Admin Bar SettingsAdmin Email CustomizerAfghanistanAfter Profile Update...After Registration...After login redirect URL (optional):Agree To Terms CheckboxAimAland IslandsAlbaniaAlgeriaAll UsersAll users have been successfully deletedAll-userlisting TemplateAllow Users to Log in With:Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.Allow users to log in with their email or username when accessing your site.Allowed Image ExtensionsAllowed Upload ExtensionsAllowed time to display any success messages (in seconds)American SamoaAn administrator has just approved your account on %1$s (%2$s).An administrator has just unapproved your account on %1$s (%2$s).AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApplyApproveApprovedArgentinaArmeniaArubaAustraliaAustriaAutomatically Log InAvailable TagsAvatarAvatar SizeAvatar Size (All-userlisting)Avatar Size (Single-userlisting)Avatar UploadAvatar or GravatarAzerbaijanBackBahamasBahrainBangladeshBarbadosBasic InformationBefore you can access your account %1s, an administrator has to approve it. You will be notified via email.Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.Before you can access your account, an administrator needs to approve it. You will be notified via email.BelarusBelgiumBelizeBeninBermudaBhutanBiographical InfoBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBoth fields are empty.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaBulk ActionsBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadCheck your e-mail for the confirmation link.CheckboxChileChinaChoose one of the supported fields you manage
            If not specified, defaults to 100Enter the minimum characters the password should have. Leave empty for no minimum limitEquatorial GuineaEritreaEstoniaEthiopiaEverything you will need to manage your users is probably already available using the Pro Modules.Example:Excerpt ViewExisting PagesExtra FeaturesExtra FunctionsExtra Profile Fields are available in Hobbyist or PRO versionsExtra shortcode parametersFalkland IslandsFaroe IslandsFeatures that give you more control over your users, increased security and help you fight user registration spam.FieldField PropertiesField TitleFijiFind out more about PRO ModulesFinlandFirst NameFirst/LastnameFirstnameFor Modern User InteractionFor security reasons, you must pass the remote ip to reCAPTCHA!Form ShortcodeFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesFrom (name)From (reply-to email)GabonGambiaGeneral SettingsGeneric UploadsGeorgiaGermanyGet New PasswordGet started with extra fieldsGhanaGibraltarGo Back LinkGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald IslandsHere you can activate / deactivate available modules for Profile Builder.HideHondurasHong KongHungaryIDIcelandIf you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.InactiveIndiaIndonesiaInput / Hidden InputInvalid activation key!Invalid key!IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanKeep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.KenyaKiribatiKosovoKuwaitKyrgyzstanLabelsLaosLast »»Last NameLastnameLatviaLebanonLesothoLiberiaLibyaLiechtensteinList ViewLithuaniaLoad Profile Builder's own CSS file in the front-end:Log outLog out of this accountLog out of this account.LoginLogin 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 )Login with Email or UsernameLogoutLost your passwordLuxembourgMacaoMacedoniaMadagascarMake sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.MalawiMalaysiaMaldivesMaliMaltaManage Default and Extra FieldsManage FieldsMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMediumMeta-nameMexicoMicronesiaMinimum Password Length and Strength MeterMinimum Password Length:Minimum Password Strength:ModulesMoldovaMonacoMongoliaMontenegroMontserratMore InfoMore Info UrlMore...MoroccoMozambiqueMultiple Edit-profile FormsMultiple Registration FormsMyanmarNameName/DescriptionNamibiaNauruNepalNetherlandsNew CaledoniaNew Edit-profile FormNew Registration FormNew User ListingNew ZealandNew subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            Next » NicaraguaNicknameNigerNigeriaNiueNoNo Edit-profile Form foundNo Edit-profile Forms found in trashNo Registration Form foundNo Registration Forms found in trashNo User Listing foundNo User Listing found in trashNo items found.No results found!Norfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNumber of PostsNumber of Users/PageOmanOnly an administrator can add new users.OptionsOverwrite ExistingPaginationPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayPasswordPassword Lost and Found.Password Recovery page URL (optional):Password Reset from "%1$s"Password Successfully Reset for %1$s on "%2$s"Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.PeruPhilippinesPitcairnPlease check that you entered the correct email address.Please check that you entered the correct username.Please choose a different field type as this one already exists in your form (must be unique) Please enter a value for the required field Please enter your username or email address.Please try a different one!PolandPortugalPostsPowerful Modules (**)Profile Builder Login WidgetPuerto RicoQatarRadio ButtonsRandom (very slow on large databases > 10K user)Recover PasswordRedirectRegisterRegister VersionRegister Your VersionRegister page URL (optional):RegisteredRegistrationRegistration & Edit ProfileRegistration DateRegistration FormRegistration FormsRegistration with Admin ApprovalRegistration with Email ConfirmationRemember though, that the field-value combination must exist in the database.RemoveRepeat PasswordReply ToRepublic of the CongoRequiredResend Activation EmailReset PasswordRestrict the userlisting to these selected roles only
            If not specified, defaults to all existing rolesReunionRoleRoles to DisplayRomaniaRow CountRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaveSave ChangesSave SettingsSearchSearch Users by All FieldsSearch all FieldsSearch the Edit-profile FormsSearch the Registration FormsSearch the User ListingSelectSelect AllSelect FileSelecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name
            Use this at your own riskSend these credentials via email.SenegalSerbiaSet RoleSet the avatar size on the all-userlisting onlySet the avatar size on the single-userlisting onlySet the default sorting criteria
            This can temporarily be changed for each new sessionSet the default sorting order
            This can temporarily be changed for each new sessionSet up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.SeychellesShare a little biographical information to fill out your profile. This may be shown publicly.ShortcodeShowShow all datesShow/Hide the Admin Bar on the Front-EndSierra LeoneSign-up DateSingaporeSingle-userlisting TemplateSint MaartenSite NameSite UrlSlovakiaSloveniaSolomon IslandsSomaliaSomeone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$sSorry, but you don't have permission to do that!South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.comSpecify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.comSpecify the number of rows for a 'Textarea' field
            If not specified, defaults to 5Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)Specify the option which should be selected by defaultSpecify 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.Sri LankaStatusStrength indicatorStrongSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaTerms of AgreementTextareaThailandThat field is already added in this form That meta-name is already in use That username is already activated!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!The account %1s has been successfully created!The best way to add front-end registration, edit profile and login forms.The email address entered wasn't found in the database!The email you entered is not a valid email address.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical The entered passwords don't match!The entered row number is not numerical The entered value for the Datepicker is not a valid date-format The following option did not coincide with the ones in the options list: %s The following option(s) did not coincide with the ones in the options list: %s The password you entered is incorrect.The passwords do not matchThe selected user couldn't be deletedThe selected users have been activatedThe selected users have had their activation emails resentThe serial number couldn't be validated because it expired!The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!The serial number entered couldn't be validated!The serial number was successfully validated!The shortcode will be available after you publish this form.The userlisting will only be visible only to the logged in usersThe userlisting will only be visible to the following rolesThe username entered wasn't found in the database!The usernames cannot be changed.There was an error in the submitted formThere was an error performing that action!There was an error while trying to activate the userThere was an error while trying to activate the user.There was an error while trying to send the activation link to %1$s!These settings are also replicated in the "User Email Customizer" settings-page upon save.This email is already in use.This email is already reserved to be used soon.This login widget lets you add a login form in the sidebar.This username already exists.This username is already activated!This username is already reserved to be used soon.This username is now active!Timezone SelectTitle of the fieldTitle:To use reCAPTCHA you must get an API key fromTo use reCAPTCHA you must get an API public key from:TogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluType your password again. Type your password.U.S. Virgin IslandsURLUgandaUkraineUnapproveUnapprovedUnapproved User NotificationUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUpdateUpload UruguayUse these shortcodes on the pages you want the forms to be displayed:Use this shortcode on the page you want the form to be displayed:User Approval NotificationUser Email CustomizerUser IdUser ListingUser MetaUser successfully approved!User successfully deleted!User successfully unapproved!User-RoleUser-statusUserlisting SettingsUsernameUsername or E-mailUsernames cannot be changed.Users can register themselves or you can manually create users here.Users cannot currently register themselves, but you can manually create users here.Users successfully approved!Users successfully deleted!Users successfully unapproved!Users with Unconfirmed Email AddressUzbekistanVanuatuVaticanVenezuelaVersion %sVery weakVietnamView the Edit-profile FormView the Registration FormView the User ListingVisibilityVisible only to logged in users?Visible to following RolesWallis and FutunaWeakWebsiteWelcome to %1$s!


            Your username is:%2$s and password:%3$sWestern SaharaWhether the field is required or notWhether to automatically log in the newly registered user or not
            Only works on single-sites without "Admin Approval" and "Email Confirmation" features activated
            WARNING: Caching the registration form will make automatic login not workWhether to redirect the user to a specific page or notWith Extra Profile Fields you can create the exact registration form your project needs.Yahoo IMYemenYesYimYou are currently logged in as %1$s. %2$sYou are currently logged in as %1s. You don't need another account. %2sYou can add the information for the %s after you add a entryYou can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.You can find it in the Profile Builder menu.You can find the default file here: %1$sYou decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.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.You don't have any pagination settings on this userlisting!You either don't have permission for that action or there was an error!You have successfully reset your password to: %1$sYou must be logged in to edit your profile.You must enter a value for the date-format You must enter a value for the row number You must select a field You need to activate the Userlisting feature from within the "Modules" tab!You need to specify the title of the form before creating itYou will receive a link to create a new password via email.You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$sYour account has to be confirmed by an administrator before you can use the "Password Recovery" feature.Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.Your account on %1$s has been approved!Your account on %1$s has been unapproved!Your account on {{site_name}} has been approved!Your account on {{site_name}} has been unapproved!Your email was successfully confirmed.Your password has been successfully changed!Your profile has been successfully updated!Your session has expired! Please refresh the page and try againYour session has expired! Please refresh the page and try again.ZambiaZimbabwe[%1$s] Activate %2$s[%1$s] Your new account information[{{site_name}}] Activate {{username}}approve this user?approvedconfirm this email yourself?delete this user from the _signups table?delete this user?displays users having a certain meta-value within a certain (extra) meta-fieldherereCAPTCHArequiredresend the activation link?unapprove this user?unapprovedPO-Revision-Date: 2015-09-29 11:54:55+0000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; X-Generator: GlotPress/0.1 Project-Id-Version: Profile Builder

            好消息 !

            管理員已經批準您的帳號: {{username}} 在 {{site_name}}.

            您好,

            抱歉,管理員未批準您的帳號: {{username}} 在 {{site_name}}.

            歡迎來到 {{site_name}}!

            您的用戶名是:{{username}} 密碼是:{{password}}

            歡迎來到 {{site_name}}!

            您的用戶名:{{username}} 密碼:{{password}}

            在您訪問您的帳號前,需要管理審批。您將會收郵件通知。

            新用戶在 {{site_name}}.

            用戶名:{{username}}

            郵箱:{{user_email}}

            新用戶在 {{site_name}}.

            用戶名:{{username}}

            郵箱:{{user_email}}

            管理審核功能已被激活, 請記住,您需要批準這個用戶,他才能登陸!

            激活您的帳戶,請點擊下面連接:
            {{{activation_link}}}

            在您激活完成後,將會收到另外壹封憑據郵件。

            * 僅獲得在 %1$sHobbyist 與專業版本 %2$s.序號:"管理員審批" 激活:"管理員審批" 功能 :"郵件確認" 激活:"郵件確認" 登陸頁面:%1$s %2$d%1$s 請求通過密碼重置功能修改密碼。
            他的密碼是:%2$s%1$s 的 %2$s%s 不能刪除%s 等待中« 上壹頁«« 首頁(例如: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(沒有標題)** 僅激活在 %1$s專業版本 %2$s.
            標題 (類型)
            標題
            類型
            Meta Name
            必須
            註意: 改變表單標題也將改變簡碼!錯誤: 您的帳號需要管理員批準後才能登陸使用。Profile Builder 壹個新的帳號在您的 {{site_name}} 上建立壹個新的用戶已經(被)註冊!壹個獨特的、為特定的字段自動生成ID
            如果需要可以使用過濾器調用這個目標
            不能編輯AIM關於您自己激活密鑰激活鏈接激活URL激活添加字段新增加添加新字段到列表所有用戶添加新的編輯資料表單增加新的註冊表單增加新的用戶列表管理員審批管理員審批 (*)管理員工具欄設置管理員郵件定制Afghanistan檔案更新後…註冊後…登錄後的重定向URL(可選):同意使用條款AimAland IslandsAlbaniaAlgeria所有用戶所有的用戶已成功刪除所有用戶列表模板允許用戶使用什麽登陸:允許不同的用戶角色去編輯他們的具體信息。設置多個編輯表單壹不同的作用字段。當用戶訪問您的網站時,允許用戶登錄他們的用戶名和電子郵件。允許的圖像擴展允許的上傳擴展允許用時間去顯示成功信息提示(秒)American Samoa管理員已經批準您在 %1$s (%2$s) 的帳號。管理員已拒絕您在 %1$s (%2$s) 的帳號。AndorraAngolaAnguillaAntarcticaAntigua and Barbuda應用允許已允許ArgentinaArmeniaArubaAustraliaAustria自動登錄可用標簽頭像頭像大小頭像大小(所有用戶列表)頭像大小(單用戶列表)頭像上傳頭像或 GravatarAzerbaijan返回BahamasBahrainBangladeshBarbados基本信息訪問您的帳號 %1s 前,需要管理員審批通過。您將收到郵件。訪問您的帳號 %1s 前,您需要確認您的郵箱地址。請檢查您的郵箱並點擊激活連接。需要管理員審核通過才能訪問您的帳戶。您將收到壹封電子郵件。BelarusBelgiumBelizeBeninBermudaBhutan個人說明BoliviaBonaire, Saint Eustatius and SabaBosnia and Herzegovina字段均空BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgaria批量動作Burkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChad檢查妳的郵件中的確認鏈接。復選框ChileChina選擇壹個支持字段去管理
            如果沒指定,默認是100輸入密碼必須最少字符。留空為沒有限制Equatorial GuineaEritreaEstoniaEthiopia使用壹切妳需要的工具,用於管理妳的用戶的模塊。例子:摘錄查看現有頁面額外字段額外功能額外個人資料字段需要激活 Hobbyist 或者 PRO 版本才可用額外簡碼參數Falkland IslandsFaroe Islands特性,讓您對您的用戶更多的控制,增強安全性,幫助用戶註冊與限制垃圾郵件。字段字段屬性字段標題Fiji了解關於專業版模塊的更多內容Finland名字名字/姓氏名子新穎的用戶交互。安全原因,您必須通過遠程IP到reCAPTCHA!表單簡碼FranceFrench GuianaFrench PolynesiaFrench Southern Territories來自(名子)來自(回復郵件)GabonGambia常規設置常規上傳GeorgiaGermany獲取新密碼開始使用額外字段GhanaGibraltar返回鏈接GreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald Islands在這裏妳可以激活/停用 Profile Builder 模塊。隱藏HondurasHong KongHungary編號Iceland如果您註冊這個版本的 Profile Builder ,您將收到有關升級,補丁,和技術支持。關閉IndiaIndonesia輸入/隱藏輸入無效的激活密鑰!無效密鑰!IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstan讓妳的用戶離開 WordPress 儀表盤,重定向到他們的前端頁面,登錄註冊壹切都只需幾個點擊。KenyaKiribatiKosovoKuwaitKyrgyzstan標簽Laos最後 »»姓氏姓氏LatviaLebanonLesothoLiberiaLibyaLiechtenstein列表查看Lithuania在前端載入 Profile Builder 的CSS文件:退出退出這個帳戶退出這個帳號。登陸登錄允許使用電子郵件。這字段不會顯示在前端! ( 妳可以改變這些設置,在 "%s" 選項卡中 )通過電子郵件或用戶名登錄退出忘記您的密碼LuxembourgMacaoMacedoniaMadagascar確保用戶註冊是使用真實的電子郵件。註冊用戶將收到壹個通知,確認他們的電子郵件地址。MalawiMalaysiaMaldivesMaliMalta管理默認與額外字段管理字段Marshall IslandsMartiniqueMauritaniaMauritiusMayotte中Meta-nameMexicoMicronesia最小密碼長度和強度表最小密碼長度:最小密碼強度:模塊MoldovaMonacoMongoliaMontenegroMontserrat更多信息更多信息網址更多...MoroccoMozambique多個編輯個人資料形式多個註冊形式Myanmar姓名名稱/描述NamibiaNauruNepalNetherlandsNew Caledonia新的編輯資料表單新註冊表單新的用戶列表New Zealand新用戶在 %1$s.

            用戶名:%2$s
            郵箱:%3$s
            下壹頁 » Nicaragua昵稱NigerNigeriaNiue不沒有編輯個人資料表單在回收站中沒有編輯個人資料表單沒有找到註冊表單在回收站沒有找到註冊表單沒有找到用戶列表沒有在回收站找到用戶列表找不到項目。無任何結果!Norfolk IslandNorth KoreaNorthern Mariana IslandsNorway帖子數用戶/頁面數Oman只有管理員可以添加新用戶。選項覆蓋現有分頁PakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguay新密碼密碼遺失。密碼恢復頁URL(可選):從 "%1$s" 密碼重置密碼成功重置 %1$s 在 "%2$s"個性化郵件發送到妳的用戶或管理員。註冊,電子郵件確認,管理員批準/拒絕。PeruPhilippinesPitcairn請檢查您輸入(正確)電子郵件地址。請檢查您已輸入正確的用戶名。請選擇壹個不同的字段類型,這個已經存在妳的表格(必須是唯壹的) 請為這個字段輸入所需的值請輸入您的用戶名或電子郵件地址。請嘗試壹個不同的!PolandPortugal帖子強大的模塊(**)Profile Builder 登陸小工具Puerto RicoQatar單選按鈕隨機 (在大於 10K 的用戶數據庫中將會很慢 )恢復密碼重定向註冊註冊版本註冊您的版本註冊頁面URL(可選):已註冊註冊註冊與編輯資料註冊日期註冊表單註冊表單註冊需管理員審批電子郵件確認註冊記住,該字段值的組合必須存在於數據庫中。移除重復新密碼回復Republic of the Congo必須發送激活郵件重置密碼限制用戶列表中的特定角色
            如果沒有指定,默認為全部現有的角色Reunion角色角色顯示:Romania行數RussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi Arabia保存保存更改保存設置搜索在所有字段中搜索用戶搜索所有字段搜索編輯資料表單搜索註冊表單搜索用戶列表選擇選擇所有選擇文件選擇“是”將增加字段到列表中,但將覆蓋在數據庫中具有相同名稱的任何其他領域的 meta-name
            使用需自己承擔風險通過電子郵件發送這些憑據。SenegalSerbia設置角色設置在所有用戶列表的頭像大小設置在單用戶列表的頭像大小設置默認的排序標準
            這可以暫時被每壹個新的會話更改設置默認排列順序
            這可以在每個新會話時被改變設置多個註冊表單為某些用戶角色不同的字段。獲取來自不同類型的用戶不同的信息。Seychelles分享關於您的壹些信息。可能會被公開。簡碼顯示顯示所有日期顯示/隱藏管理員工具欄在前端Sierra Leone註冊日期Singapore單用戶列表模板Sint Maarten網站名稱網站地址SlovakiaSloveniaSolomon IslandsSomalia有人要求以下帳號密碼進行重置: %1$s
            如果不是您自己的操作,請忽略。
            需要重置您的密碼的話,請點擊 :%2$s抱歉,您沒有相應的操作權限!South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpain指定用戶註冊頁面地址將被重定向
            使用下列格式: http://www.mysite.com指定頁面用於用戶壹旦更新他們的資料使用這個表單轉向
            使用這種格式: http://www.mysite.com指定 'Textarea' 字段的行數
            如果沒有指定,缺省為5指定選項默認是否勾選
            如果有多個值的選項,使用“,”分開(逗號)指定選項的默認選擇值指定供用戶確認郵件的轉向頁面。此頁面可不同於註冊頁面(s)並且可隨時改變。如果沒有指定,將顯示給用戶壹個簡單確認頁。Sri Lanka狀態強度指標強SudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzania協議條款文本框Thailand這個字段已經加入這個 meta-name 已在使用 用戶名已經被激活!管理員審批”的功能是註冊時激活,所以請記住,妳必須批準該用戶,他/她才能進行登錄!帳號 %1s 創建成功!最好的前端註冊、編輯個人資料與登陸表單的實現方式。郵箱地址無法在數據庫中找到您輸入的電子郵件不是壹個有效的電子郵件地址。輸入的頭像大小不是20與200之間 輸入的頭像大小不是數值 輸入的密碼不匹配!輸入的行數不是數值 日期選擇器輸入的值不是有效的日期格式 下列選項不符合的選項清單: %s 下列選項(s)不符合的選項清單: %s 妳輸入的密碼不正確。密碼不匹配所選用戶不能刪除所選的用戶已被激活所選用戶已經重新發送激活電子郵件序號無法驗證,因已過期!序號無法驗證,因為連接超時。這可能是由於服務器維護。請稍後再試!序號無法驗證!序號成功驗證!簡碼將在您發布表單後可用。用戶列表只有登錄用戶可見的用戶列表只允許以下角色可見輸入的用戶名不存在數據庫中!用戶名不可更改。在遞交表單時出錯執行操作時出錯!試圖激活用戶時出現壹個錯誤嘗試激活用戶時出現壹個錯誤。發送激活鏈接時出現錯誤 %1$s!這些設置也復制在"用戶郵件定制" 設置頁中保存。電子郵件已被使用。此郵箱地址已被保留使用。該登錄控件是允許您添加在側邊欄的登錄表單。用戶名已經存在。這個用戶名已經被激活!這個用戶名已經被保留。這個用戶名現在被激活!時區選擇字段的標題標題:使用 reCAPTCHA 妳必須獲得壹個API密鑰使用reCAPTCHA,妳必須得到壹個API公開密鑰:TogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvalu再輸入壹遍新密碼。重復新密碼U.S. Virgin Islands網址UgandaUkraine拒絕已拒絕被拒絕的用戶通知United Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying Islands更新個人資料上傳Uruguay使用這些簡碼在頁面中妳想要的形式顯示:使用這個簡碼在頁面上,將會獲得您想要的表單顯示效果:用戶批準通知用戶郵件定制用戶名稱用戶列表User Meta用戶成功批準!用戶成功刪除!用戶成功拒絕!用戶角色用戶狀態用戶列表設置姓名用戶或郵箱地址 用戶名不可更改。用戶可以註冊自己註冊,或您可以在這裏手動創建用戶。用戶無法自己註冊,但妳可以在這裏手動創建用戶。用戶成功批準!用戶成功刪除!用戶成功拒絕!沒經確認郵箱的用戶UzbekistanVanuatuVaticanVenezuela版本 %s非常弱Vietnam查看編輯資料表單查看註冊表單查看用戶列表可見只有登錄用戶可見的?以下角色可見Wallis and Futuna弱站點歡迎來到 %1$s!


            您的用戶名是:%2$s 密碼是:%3$sWestern Sahara該字段是否必須是否記錄用戶新註冊
            只使用於單網站,並且沒有開啟 "管理員審批" 與 "郵箱確認" 功能
            警告:緩存註冊表單會讓自動登錄不正常是否將用戶重定向到特定頁額外個人資料字段,根據您的項目需求妳可以創建精確的登註冊表單。雅虎通訊Yemen是Yim您當前登錄為 %1$s. %2$s您當前登陸為 %1s。您不需要其它帳號。 %2s您可以添加信息到 %s您可以找到還沒確認郵箱地址的列表 %1$s用戶 > 所有用戶 > 郵箱確認%2$s.您可以找到用戶在 %1$s用戶 > 所有用戶 > 管理員審批%2$s.妳可以在 Profile Builder 菜單中找到它。妳可以在這裏找到默認的文件: %1$s妳決定在妳的網站用戶是誰。從WordPress 界面通過電子郵件或批準的多個用戶獲得通知。您控制您的用戶在網站上的角色。獲得遊戲通知或者壹次性批量審批多用戶。啟用管理審批功能需要升級到 %1$sHobbyist 或者 專業版本%2$s。您不需在用戶列表中設置分頁妳沒有權限操作,或出現壹個錯誤!您已經成功地將密碼更改成:%1$s您必須在登陸狀態下編輯個人資料。您必須輸入壹個日期格式的值 您必須輸入壹個值的行數 妳必須選擇壹個字段 您需要激活用戶列表功能在 "模塊" 選項卡!妳需要在創建前指定表單的標題妳將收到壹封創建壹個新密碼連接的電子郵件。您很快將會自動重定向。如果妳看到這個頁面超過 %1$d 秒,請點擊 %2$s.%3$s您的帳號在管理員確認前可以使用 "密碼找回" 功能.您的帳戶需被管理員審批後才可使用 "密碼重置" 功能。您在 %1$s 的帳號成功通過!您在 %1$s 的帳號被拒絕!您在 {{site_name}} 的帳號已經被通過!您在 {{site_name}} 的帳號被拒絕!您的電子郵件已確認。您已經成功地更改密碼!個人資料已更新!您的會話已過期!請刷新頁面重試您的會話已過期!請刷新頁面重試ZambiaZimbabwe[%1$s] 激活 %2$s[%1$s] 您的新帳戶信息[{{site_name}}] 激活 {{username}}允許這個用戶?已批準確認自己的電子郵件?在 the _signups 表單中 刪除這個用戶?刪除這個用戶?顯示用戶在某壹(額外)元字段(meta-field)這裏reCAPTCHA必須重新發送激活鏈接?拒絕這個用戶?已拒絕translation/profile-builder-nb_NO.mo000066600000200132152141651160013520 0ustar002<3<3l=3y3c$44c]5567C88;Q99K9C9[-::::":+;E.;1t; ;e; <#< :< E<R<2g< <-<O< #=-=dE=Y=G>RL>c>!?7%?']?? @$@3@<@K@[@j@ q@ {@@@@@@@@A!0A#RAvAAAAAA*A BB*B$@BeB}B BBB B(BBBCLCCC9DQD?`DADDDD DEEE'E 0E:EBE0HE yEEEEE EE E FF "F-F2F:F BFMFVFkhFFi[GGGGGGGGH! H-HDH[H dHrHyHHHH H HHHHHH I II4I,9IfIoIuI'{I7IIK_J JJ JJ2J3K QK_KhKxK0K K KK K KKULYLhLpLuL}L)LLL L L LLLMM)M;>M zMMM MMMM NN N 1NRN ZNfNoN NNNNN/N.N1-O_OhO {OOOOO OOePmP rPPPPPPPQ QsQQQQ Q!Q1QR)RO=R?RReSWSBTTT \TjTrTb{TT TTUU>"UaU|U UrUVV %V1V6VVV ^ViV xVV?VVV VWW /W;WQWWW^WoWWWWWW W WW WW WW XXX X,X3X!9XI[XXX XXXXXYZZ1Z 7ZAZ VZbZxZ ZZZZZ ZZZ ZZZ[ [[[ [)[[[[[ [[[[ \\\\&\.\6\ <\ J\ T\5^\\\\\\\o]]]] ]] ] ]~]_^f^o^x^}^^ ^^ ^ ^ ^^^ ^^ _ _;_*Z____)_` ``` #` .` 9` C`Q`Y` a`l``_`a aa"a*a0a 6a BaPafa|a aCa a aaab bbb$/bTb$obbbbbbb b c$c#+c4Occcc=c(cdd 0d;dDdJd`dgdxddd&dddd.ewFee ee8e3f^Eff,f,f%gCg_gfgoguggg gg g0gh#h,h5hFh\h zh hhhhh h$iM+iyiiiiii i ii iji ijwjjjj jjjj jj j jk k=k CkNk dkqk vk k7kkkkkl9l Ql\l clInll!Umwmmm/m2mYmVLnn 1o]ة   % /:C2J }ª&ת('8 O[dm v ol'/6?GZ"c ϭ׭ ! 2@ I S]e my*Ԯ.5T˯ );A0_7Ȱ װ/3 BO X frd )2\d t ̲==Lj%ٳ !0 9 FRbr !ٴ # 7Edlr y4=F"V yӶ j +ŷ2$?_P?~Q&x  q &19M`Hsػvpv Ƽټ?ARZi{ Ľ̽"A HSe mx  Ǿ"ξOA H R]fjsn 4Cb~    ,   #+4=FM \ j4u %  " ( / ; GR[ cn vD(0-Lz  ! b) $ 5?B #,#18j+  %$-3RC1'6 N Zdk (", @3a) / <6F/}O*$(*M'x  &:5p $ #6K*c$E  1;[k~ g&-C LZbj | !  #18J9_ ". 4M?%AJ R"^)PWT ^ HRWh }   Q 8[ - "[v'4    $18 @ LV i t*~"#~Z87.3f*)A MMP"*/:j'37V*"$CAn?94+n(4;>TJc#B5fL2 $S#x9B!;J]f1l8 !;Ca}   % BL gq4z? % 0 = JXg  )>WoLJ&<M%c - $6Tn # =K.z!<i gqx|U :3%PEvZP(h'Q+ 7AD153g&,+;Y<p8?v&kh !r).%E1b5  ';+[ -80GLx  ' 6B

            Good News!

            An administrator has just approved your account: {{username}} on {{site_name}}.

            Hello,

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            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!

            Someone requested that the password be reset for the following account: {{site_name}}
            Username: {{username}}

            If this was a mistake, just ignore this email and nothing will happen.

            To reset your password, visit the following address:
            {{{reset_link}}}

            To activate your user, please click the following link:
            {{{activation_link}}}

            After you activate, you will receive another email with your credentials.

            You have successfully reset your password to: {{password}}

            {{username}} has requested a password change via the password reset feature.

            His/her new password is: {{password}}

            * only available in the %1$sHobbyist and Pro versions%2$s. Serial Number: Your serial number is about to expire, please %1$s Renew Your License%2$s. Your serial number is expired, please %1$s Renew Your License%2$s. is also activated. You need to deactivate it before activating this version of the plugin."Admin Approval" Activated:"Admin Approval" Feature:"Email Confirmation" Activated:"Email Confirmation" Landing Page:"Email" - users can Log In only with Email."Username and Email" - users can Log In with both Username and Email."Username" - users can Log In only with Username.%1$s %2$d%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s%1$s of %2$s%s couldn't be deleted%s pending« Prev«« First(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(no title)** only available in the %1$sPro version%2$s.. Extra Field Types are available in
            Hobbyist or PRO versions....Choose
            Title (Type)
            Title
            Type
            Meta Name
            Required
            Note: changing the form title also changes the shortcode!ERROR: The password must have a minimum strength of %sERROR: The password must have the minimum length of %s charactersERROR: Your account has to be confirmed by an administrator before you can log in.Profile Builder A new account has been created for you on {{site_name}}A new subscriber has (been) registered!A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be editedAIMAbout YourselfActivateActivation KeyActivation LinkActivation UrlActiveAdd EntryAdd FieldAdd NewAdd New Field to the ListAdd UserAdd new Edit-profile FormAdd new Registration FormAdd new User ListingAdd-On has been activatedAdd-On has been deactivated.Add-On is activeAdd-On is inactiveAdd-On is ActiveAdd-OnsAdmin ApprovalAdmin Approval (*)Admin Bar SettingsAdmin Email CustomizerAdmin Notification for User Password ResetAfghanistanAfter Profile Update...After Registration...After login redirect URL (optional):Agree To Terms CheckboxAimAland IslandsAlbaniaAlgeriaAll UsersAll users have been successfully deletedAll-userlisting TemplateAllow Users to Log in With:Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.Allow users to log in with their email or username when accessing your site.Allowed Image ExtensionsAllowed Upload ExtensionsAllowed time to display any success messages (in seconds)American SamoaAn administrator has just approved your account on %1$s (%2$s).An administrator has just unapproved your account on %1$s (%2$s).AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApplyApproveApprovedArgentinaArmeniaArubaAs an administrator you cannot change your role.AustraliaAustriaAutomatically Log InAvailable TagsAvatarAvatar SizeAvatar Size (All-userlisting)Avatar Size (Single-userlisting)Avatar UploadAvatar or GravatarAzerbaijanBackBahamasBahrainBangladeshBarbadosBasic InformationBefore you can access your account %1s, an administrator has to approve it. You will be notified via email.Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.Before you can access your account, an administrator needs to approve it. You will be notified via email.BelarusBelgiumBelizeBeninBermudaBhutanBiographical InfoBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBoth fields are empty.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaBulk ActionsBurkina FasoBurundiCambodiaCameroonCanadaCancelCape VerdeCayman IslandsCentral African RepublicChadCheck your e-mail for the confirmation link.CheckboxChileChinaChoose one of the supported field typesChoose one of the supported fields you manage install manually.Country SelectCroatiaCubaCuracaoCustom RedirectsCustomize Your Forms The Way You Want (*)CyprusCzech RepublicDate-formatDatepickerDeactivateDefaultDefault ContentDefault OptionDefault Option(s)Default RegistrationDefault Registration & Registration with Email ConfirmationDefault RoleDefault Sorting CriteriaDefault Sorting OrderDefault ValueDefault value of the fieldDefault value of the textareaDeleteDelete allDelete all itemsDelete this itemDemocratic Republic of the CongoDenmarkDescriptionDisabledDisplay MessagesDisplay NameDisplay name asDisplay name publicly asDjiboutiDo you want toDo you want to bulk approve the selected users?Do you want to bulk delete the selected users?Do you want to bulk unapprove the selected users?DominicaDominican RepublicDownload NowDownloading and installing...E-mailERRORERROR:East TimorEasy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings.EcuadorEditEdit ProfileEdit the Edit-profile FormsEdit the Registration FormsEdit the User ListingEdit this itemEdit-profile FormEdit-profile FormsEgyptEl SalvadorEliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.EmailEmail ConfirmationEmail CustomizerEmail SubjectEmail notification resent to userEmpty field won't check for correct phone number.Enable extra featuresEnable your modulesEnter a (detailed) description of the option for end users to read
            OptionalEnter a comma separated list of labels
            Visible for the userEnter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100Enter the minimum characters the password should have. Leave empty for no minimum limitEquatorial GuineaEritreaError MessageEstoniaEthiopiaEverything you will need to manage your users is probably already available using the Pro Modules.Example:Excerpt ViewExisting PagesExtra FeaturesExtra FunctionsExtra Profile Fields are available in Hobbyist or PRO versionsExtra shortcode parametersFalkland IslandsFaroe IslandsFeatures that give you more control over your users, increased security and help you fight user registration spam.FieldField PropertiesField TitleFijiFind out more about PRO ModulesFinlandFirst NameFirst/LastnameFirstnameFor Modern User InteractionFor security reasons, you must pass the remote ip to reCAPTCHA!Form ShortcodeFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesFrom (name)From (reply-to email)GabonGambiaGeneral SettingsGeneric UploadsGeorgiaGermanyGet New PasswordGet started with extra fieldsGhanaGibraltarGo Back LinkGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald IslandsHere you can activate / deactivate available modules for Profile Builder.HideHondurasHong KongHungaryIDIcelandIf you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.InactiveIncorrect phone numberIndiaIndonesiaInput / Hidden InputInstall NowInstallation completeInvalid activation key!Invalid key!Invalid username.IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanKeep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.KenyaKiribatiKosovoKuwaitKyrgyzstanLabelsLaosLast »»Last NameLastnameLatviaLebanonLesothoLiberiaLibyaLiechtensteinList ViewLithuaniaLoad Profile Builder's own CSS file in the front-end:Log outLog out »Log out of this accountLog out of this account.LoginLogin 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 )Login with Email or UsernameLogoutLost your passwordLost your password?LuxembourgMacaoMacedoniaMadagascarMake sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.MalawiMalaysiaMaldivesMaliMaltaManage Default and Extra FieldsManage FieldsMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMediumMeta-nameMexicoMicronesiaMin Number ValueMin allowed number value (0 to allow only positive numbers)Minimum Password Length and Strength MeterMinimum Password Length:Minimum Password Strength:Minimum length of %d charactersMinimum required Profile Builder version:ModulesMoldovaMonacoMongoliaMontenegroMontserratMore InfoMore Info UrlMore...MoroccoMozambiqueMultiple Edit-profile FormsMultiple Registration FormsMust be a valid email address or the tag {{reply_to}} which defaults to the administrator emailMyanmarNameName/DescriptionNamibiaNauruNepalNetherlandsNew CaledoniaNew Edit-profile FormNew Registration FormNew User ListingNew ZealandNew subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            Next » NicaraguaNicknameNigerNigeriaNiueNoNo Edit-profile Form foundNo Edit-profile Forms found in trashNo Registration Form foundNo Registration Forms found in trashNo User Listing foundNo User Listing found in trashNo items found.No results found!NoneNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNot compatible with Profile BuilderNot compatible with your version of Profile Builder.Number of PostsNumber of Users/PageOmanOnly administrators can see this field on edit profile forms.Only an administrator can add new users.OptionsOverwrite ExistingPaginationPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayPasswordPassword Lost and Found.Password Recovery page URL (optional):Password Reset EmailPassword Reset Success EmailPassword Reset from "%1$s"Password Successfully Reset for %1$s on "%2$s"Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.PeruPhilippinesPitcairnPlease check that you entered the correct email address.Please check that you entered the correct username.Please choose a different field type as this one already exists in your form (must be unique) Please enter a valid username.Please enter a value for the required field Please enter your username or email address.Please select at least one user role Please try a different one!PolandPortugalPostsPowerful Modules (**)Profile Builder Login WidgetProfile Builder RegisterPuerto RicoQatarRadio ButtonsRandom (very slow on large databases > 10K user)Recover PasswordRedirectRegisterRegister VersionRegister Your VersionRegister page URL (optional):RegisteredRegistrationRegistration & Edit ProfileRegistration DateRegistration FormRegistration FormsRegistration with Admin ApprovalRegistration with Email ConfirmationRemember though, that the field-value combination must exist in the database.RemoveRepeat PasswordReply ToRepublic of the CongoRequiredResend Activation EmailReset KeyReset LinkReset PasswordReset UrlRestrict the userlisting to these selected roles only
            If not specified, defaults to all existing rolesRetry InstallReunionRoleRoles to DisplayRomaniaRow CountRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaveSave ChangesSave SettingsSave the user role order from the user roles checkboxesSearchSearch Users by All FieldsSearch all FieldsSearch the Edit-profile FormsSearch the Registration FormsSearch the User ListingSecret KeySelectSelect AllSelect which user roles to show to the user ( drag and drop to re-order )Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name
            Use this at your own riskSend these credentials via email.SenegalSerbiaSet RoleSet the avatar size on the all-userlisting onlySet the avatar size on the single-userlisting onlySet the default sorting criteria
            This can temporarily be changed for each new sessionSet the default sorting order
            This can temporarily be changed for each new sessionSet up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.SeychellesShare a little biographical information to fill out your profile. This may be shown publicly.ShortcodeShowShow all datesShow/Hide the Admin Bar on the Front-EndSierra LeoneSign-up DateSingaporeSingle-userlisting TemplateSint MaartenSite KeySite NameSite UrlSlovakiaSloveniaSolomon IslandsSomaliaSomeone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$sSomething went wrong, we could not connect to the server. Please try again later.Sorry, but you don't have permission to do that!South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.comSpecify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.comSpecify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)Specify the option which should be selected by defaultSpecify 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.Sri LankaStatusStrength indicatorStrongSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaTerms of AgreementTextareaThailandThat field is already added in this form That meta-name is already in use That username is already activated!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!The account %1s has been successfully created!The best way to add front-end registration, edit profile and login forms.The email address entered wasn't found in the database!The email you entered is not a valid email address.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical The entered passwords don't match!The entered row number is not numerical The entered value for the Datepicker is not a valid date-format The following option did not coincide with the ones in the options list: %s The following option(s) did not coincide with the ones in the options list: %s The meta-name cannot be empty The password must have a minimum strength of %sThe password must have the minimum length of %s charactersThe password you entered is incorrect.The passwords do not matchThe selected user couldn't be deletedThe selected users have been activatedThe selected users have had their activation emails resentThe serial number couldn't be validated because it expired!The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!The serial number entered couldn't be validated!The serial number is about to expire soon!The serial number was successfully validated!The shortcode will be available after you publish this form.The site key from Google, www.google.com/recaptchaThe userlisting will only be visible only to the logged in usersThe userlisting will only be visible to the following rolesThe username entered wasn't found in the database!The usernames cannot be changed.There was an error in the submitted formThere was an error performing that action!There was an error while trying to activate the userThere was an error while trying to activate the user.There was an error while trying to send the activation link to %1$s!These settings are also replicated in the "User Email Customizer" settings-page upon save.This email is already in use.This email is already reserved to be used soon.This field is requiredThis form is empty.This login widget lets you add a login form in the sidebar.This message is only visible by administratorsThis username already exists.This username is already activated!This username is already reserved to be used soon.This username is invalid because it uses illegal characters.This username is now active!Timezone SelectTitle of the fieldTitle: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$sTo use reCAPTCHA you must get an API key fromTo use reCAPTCHA you must get an API public key from:TogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluType your password again. Type your password.U.S. Virgin IslandsURLUgandaUkraineUnapproveUnapprovedUnapproved User NotificationUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUpdateUpgrade Profile BuilderUpload UruguayUse these shortcodes on the pages you want the forms to be displayed:Use this shortcode on the page you want the form to be displayed:User Approval NotificationUser Email CustomizerUser IdUser ListingUser MetaUser RoleUser RolesUser Roles OrderUser not foundUser successfully approved!User successfully deleted!User successfully unapproved!User to edit:User-RoleUser-statusUserlisting SettingsUsernameUsername and EmailUsername or E-mailUsername or EmailUsernames cannot be changed.Users can register themselves or you can manually create users here.Users cannot currently register themselves, but you can manually create users here.Users successfully approved!Users successfully deleted!Users successfully unapproved!Users with Unconfirmed Email AddressUzbekistanValid tags {{reply_to}} and {{site_name}}VanuatuVaticanVenezuelaVersion %sVery WeakVery weakVietnamView all extra shortcode parametersView the Edit-profile FormView the Registration FormView the User ListingVisibilityVisible only to logged in users?Visible to following RolesWallis and FutunaWeakWebsiteWelcome to %1$s!


            Your username is:%2$sWelcome to %1$s!


            Your username is:%2$s and password:%3$sWestern SaharaWhether the field is required or notWhether to automatically log in the newly registered user or not
            Only works on single-sites without "Admin Approval" and "Email Confirmation" features activated
            WARNING: Caching the registration form will make automatic login not workWhether to redirect the user to a specific page or notWith Extra Profile Fields you can create the exact registration form your project needs.Yahoo IMYemenYesYimYou are already logged in. You can change your password on the edit profile form.You are currently logged in as %1$s. %2$sYou are currently logged in as %1s. You don't need another account. %2sYou are currently logged in as %s. You are not allowed to do this.You can add the information for the %s after you add a entryYou can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.You can find it in the Profile Builder menu.You can find the default file here: %1$sYou can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces.You cannot register this user roleYou decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.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.You don't have any pagination settings on this userlisting!You either don't have permission for that action or there was an error!You have successfully reset your password to: %1$sYou must be logged in to edit your profile.You must enter a valid email address.You must enter a value for the date-format You must enter a value for the row number You must enter the secret key You must enter the site key You must select a field You need to activate the Userlisting feature from within the "Modules" tab!You need to specify the title of the form before creating itYou will receive a link to create a new password via email.You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$sYour account has to be confirmed by an administrator before you can use the "Password Recovery" feature.Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.Your account on %1$s has been approved!Your account on %1$s has been unapproved!Your account on {{site_name}} has been approved!Your account on {{site_name}} has been unapproved!Your email was successfully confirmed.Your password has been successfully changed!Your profile has been successfully updated!Your session has expired! Please refresh the page and try againYour session has expired! Please refresh the page and try again.ZambiaZimbabwe[%1$s] Activate %2$s[%1$s] Your new account information[{{site_name}}] Activate {{username}}[{{site_name}}] Password Reset[{{site_name}}] Password Reset Successfullyapprove this user?approvedconfirm this email yourself?delete this user from the _signups table?delete this user?displays all users except the ones you specified the user_id fordisplays only the users that you specified the user_id fordisplays users having a certain meta-value within a certain (extra) meta-fieldemailherereCAPTCHArequiredresend the activation link?showunapprove this user?unapprovedusernameusername or emailPO-Revision-Date: 2017-05-08 09:44:04+0000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=n != 1; X-Generator: GlotPress/0.1 Project-Id-Version: Profile Builder

            Gode nyheter!

            En administrator har nettopp godkjent kontoen: {{brukernavn}} på {{site_name}}.

            hallo

            Beklageligvis har en administrator nettopp avvist kontoen: {{brukernavn}} på {{site_name}}.

            Velkommen til {{site_name}}!

            Ditt brukernavn er :{{brukernavn}} og passord: {{passord}}

            Velkommen til {{site_name}}!

            Ditt brukernavn er:{{username}} og passord:{{password}}

            Før du kan få tilgang til kontoen din, må en administrator godkjenne den. Du vil bli varslet via e-post.

            Ny abonnent på {{site_name}}.

            Brukernavn :{{brukernavn}}

            E-post:{{user_email}}

            Ny abonnent på {{site_name}}.

            Brukernavn :{{brukernavn}}

            E-:{{user_email}}

            Administratorgodkjenning funksjonen ble aktivert på registrering, so Husk at du må godkjenne denne brukeren før han/hun kan logge inn!

            Noen har forespurt resetting av passord for følgende bruker konto: {{site_name}}
            Brukernavn: {{username}}

            Hvis dette ikke er tilfelle, vennligst overse denne meldingen og ingenting vil endre seg.

            For å resette ditt passord, besøk følgende adresse:
            {{{reset_link}}}

            For å aktivere bruker venligst trykk på følgende lenke:
            {{{activation_link}}}

            Etter aktivering vil du få en ny epost med din påloggingsinformasjon.

            Du har resatt ditt passord med suksess til: {{password}}

            {{username}} har forespurt ett passord bytte via passord resett funksjonen.

            Hans/hennes nye passord er: {{password}}

            * Bare tilgjengelig i %1$sHobbyist og Pro versjoner%2$s.Maskinens serienummer Ditt serie nummer vil snart utløpe, vennligst %1$s forny din lisens%2$s. Ditt serie nummer er utgått, vennligst %1$s forny din lisens%2$s.aktiveres også. Må du deaktivere den før du aktiverer denne versjonen av plugin."Administrator godkjennelse" Aktivert:"Administrator godkjennelse" Funksjon:"Epost bekreftelse" Aktivert:"Epost bekreftelse" Landings-side:"E-post" - brukere kan kun logge inn med e-post."Brukernavn og E-post" - brukere kan logge inn med både brukernavn og e-post."Brukernavn" - brukere kan kun logge inn med brukernavn%1$s %2$d%1$s har bedt om en passordendring via funksjonen Tilbakestill.
            Det nye passordet er:%2$s%1$s de %2$s%s kunne ikke slettes%s venter« Forige«« Først(f.eks RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(ingen tittel)** Kun tilgjengelig i %1$spro versjon%2$s.. Flere typer felt finnes i Hobbyist og PRO versjonen....velg
            Tittel (Type)
            Title
            Type
            Meta Name
            Required
            Note: endring av skjema tittelen endrer også kortkoden!FEIL: Passordet må minimum ha en styrke på %sFEIL: Passordet må minimum inneholde %s tegn.FEIL: Kontoen må være bekreftet av en administrator før du kan logge inn.Profile Builder En ny konto er opprettet for deg på {{site_name}}Ny abonnent (er) registrert!En unik, automatisk generert ID for dette feltet
            Du kan bruke dette i sammen med filtre for å målrette dette elementet hvis nødvendig
            Kan ikke redigeresAIMOm deg selv!AktiverAktiveringsnøkkelAktivisering LinkAktivering UrlAktivLegg tilLegg til feltLegg tilLegg til nytt felt i listenLegg til brukerLegge til nye Rediger profil skjemaLegge til nytt registreringsskjemaLegg til ny bruker oppføringTillegg er akivertAdd-On er blitt deaktivert.Tillegg er aktivAdd-On er innaktivAdd-On er aktivTilleggAdmin Approval (*)Administratorgodkjenning (*)Admin bar instillingerAdmin Epost tilpasserAdmin forespørsel for bruker passord resettAfghanistanEtter Profiloppdatering...Etter registrering...Etter innlogging omdirigere URL (valgfritt):Du må godta vilkårene.AIMAland IslandsAlbaniaAlgeriaAlle BrukereAlle brukere ble slettetAlle brukerlister MalTillat brukere å logge inn med:Tillate ulike brukerroller å redigere sin informasjon. Sett opp flere redigering profil-skjemaer med ulike felt for bestemte brukerroller.Tillat brukere å logge inn med sin e-post eller brukernavn for tilgang til nettstedet.Tillatte bildefilerTillatt Last opp utvidelserTillatt tid vise suksess meldinger (i sekunder)American SamoaEn administrator har nettopp godkjent kontoen %1$s (%2$s).En administrator har akkuratt blokkert din konto %1$s (%2$s).AndorraAngolaAnguillaAntarcticaAntigua and BarbudaBrukGodkjenneGodkjentArgentinaArmeniaArubaSom en administrator kan du ikke endre din rolle.AustraliaAustriaAutomatisk Logg innTilgjengelige TagsAvatarAvatarstørrelseAvatar størrelse (alle brukerlister)Avatar størrelse (enkelt bruker liste)Avatar Last oppAvatar eller GravatarAzerbaijanTilbakeBahamasBahrainBangladeshBarbadosGrunnleggende informasjonFør du kan få tilgang til dine konto% 1s, må en administrator godkjenne den. Du vil bli varslet via e-post.Før du kan få tilgang til dine konto% 1s, må du bekrefte din e-postadresse. Vennligst sjekk innboksen din og klikk på koblingen aktivering.Før du kan få tilgang til kontoen din, må en administrator godkjenne den. Du vil bli varslet via e-post.BelarusBelgiumBelizeBeninBermudaBhutanBiographical InfoBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBegge felter er tomme.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaMassehandlingerBurkina FasoBurundiCambodiaCameroonCanadaAvbrytCape VerdeCayman IslandsCentral African RepublicChadSjekk e-posten din for bekreftelseslenke.AvkryssingsboksChileChinaVelg en type feltVelg ett av feltene du administrere installer manuelt.Velg LandCroatiaCubaCuracaoTilpassede OmdirigeringerTilpass skjemaene slik du ønsker (*)CyprusCzech RepublicDato-formatDatovelgerDeaktivertStandardStandardinnholdStandard alternativStandard alternativ(er)Standard registreringStandard registrering og registrering med e-post BekreftelseStandardrolleStandard sorteringskriterierStandard sorteringsrekkefølgeStandardverdiStandardverdi for feltetStandardverdien for tekstområdetSlettSlett alleSlett altSlett dette elementetDemocratic Republic of the CongoDenmarkBeskrivelseDeaktivertVise meldingerNavn som visesNavn som visesVisningsnavn offentlig somDjiboutiØnsker du åVil du godkjenne valgte brukere?Vil du slette valgte brukere?Vil du blokkere valgte brukere?DominicaDominican RepublicLast ned nåNedlasting og installering...E-postFEILFEIL:East TimorEnkelt å redigere maler for å liste nettstedets brukere samt å skape enkle brukersider. Shortcode-basert, og tilbyr mange muligheter til å tilpasse dine oppføringer.EcuadorRedigerRediger profilRedigere skjemaene Rediger profilRedigere registreringsskjemaeneRediger bruker oppføringenRediger dette elementetRediger profil-skjemaetRediger profil skjemaerEgyptEl SalvadorEliminere svake passord helt ved å sette en minimum passordlengde og håndhev en viss passord styrke.Eposte-post bekreftelseTilpass E-postmeldingerE-post emneE-postvarsling sendt på nytt til brukerenTomt felt vil ikke se etter riktig telefonnummer.Aktiver ekstra funksjonerAktiver modulerSkriv inn en (detaljert) beskrivelse av alternativene for sluttbrukerne å lese
            ValgfrittAngi en kommadelt liste over etiketter
            Synlig for brukerenAngi en detaljert beskrivelse av temrs i avtalen for brukeren å lese.
            Koblinger kan settes ved hjelp av standard HTML syntaks: <a href="custom_url">custom_text</a>Skriv inn en verdi (mellom 20 og 200) for størrelsen på 'Avatar'
            Hvis ingenting er spesifisert, settes standard til 100Skriv inn minimums tegn passordet bør ha. La stå tomt for ingen minimumsgrenseEquatorial GuineaEritreaFeilmeldingEstoniaEthiopiaAlt du trenger for å administrere dine brukere er sannsynligvis allerede tilgjengelig ved hjelp av Pro moduler.Eksempel:UtdragEksisterende SiderEkstra FunksjonerEkstra funksjonerEkstra profilfelter er tilgjengelige i Hobbyist eller PRO-versjoneneEkstra kortkode parametereFalkland IslandsFaroe IslandsFunksjoner som gir deg mer kontroll over brukerne, økt sikkerhet og hjelpe deg å bekjempe brukerregistrerings spam.FeltFeltegenskaperFelttittelFijiFinn ut mer om PRO modulerFinlandFornavnFornavn/EtternavnFornavnFor Moderne brukermedvirkningAv sikkerhetsgrunner må du passere eksterne ip til reCAPTCHA!Skjema kortkodeFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesFra (navn)Fra (svarer til e-post)GabonGambiaGenerelle innstillingerGeneriske opplastningerGeorgiaGermanyFå nytt passordGet started with extra fieldsGhanaGibraltarGå tilbake LinkGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald IslandsHer kan du aktivere / deaktivere tilgjengelige moduler for Profile Builder.SkjulHondurasHong KongHungaryIDIcelandLiker du %1$s ? I så fall: spre ordet og gi oss en rating WordPress.org. Jo flere fornøyde brukere vi har, jo flere features kan vi utvikle, flere bugs kan utraderes og alle får bedre support.Hvis du registrerer denne versjonen av profil Builder, får du informasjon om oppgraderinger, oppdateringer og teknisk støtte.InaktivFeil telefonnummerIndiaIndonesiaInput / Skjult InputInstaller nåNedlasting og installering...Ugyldig aktiveringsnøkkelUgyldig nøkkel!Ugyldig brukernavnIranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanHold brukerne ut av WordPress-dashbordet, omdiriger dem til forsiden etter innlogging eller registrering, alt er bare et par klikk unna.KenyaKiribatiKosovoKuwaitKyrgyzstanEtiketterLaosSiste »»EtternavnEtternavnLatviaLebanonLesothoLiberiaLibyaLiechtensteinListevisningLithuaniaLaste Profile Builders egen CSS-fil i front-end:Logg utLogg ut »Logg ut av denne kontoenLogg ut av denne kontoeninnloggingPålogging er satt til å gjøres ved hjelp av e - post . Dette feltet vil ikke vises i front-end ! (Du kan endre disse innstillingene under "%s" tab )Logg inn med e-post eller brukernavnLogg utMistet ditt passord?Mistet ditt passord?LuxembourgMacaoMacedoniaMadagascarSørg for at brukerne registrere seg med gyldig e-postadresse. Ved registrering vil brukere motta en melding for å bekrefte sin e-postadresse.MalawiMalaysiaMaldivesMaliMaltaAdministrere standard og ekstra feltAdministrer feltMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMediumMeta-navnMexicoMicronesiaMin tallverdiMinimum antall tillatte verdi (0 for å tillate bare positive tall)Minimum Password Lengde og styrkemålerMinimum passord lengde:Minimum passord styrkeMinimum lengde på %d tegnMinimum påkrevd versjon av Profile Builder:ModulerMoldovaMonacoMongoliaMontenegroMontserratMer infoMer Info UrlMer..MoroccoMozambiqueFlere Rediger profil-skjemaerFlere RegistreringsskjemaerMå være en gyldig e-postadresse eller taggen {{reply_to}} som mislighold av administrator epostMyanmarNavnNavn/beskrivelseNamibiaNauruNepalNetherlandsNew CaledoniaLegge til nye Rediger profil skjemaNytt registreringsskjemaNy bruker oppføringNew ZealandNy abonnent på %1$s.

            Username:%2$s
            E-mail: %3$s
            Neste » NicaraguaKallenavnNigerNigeriaNiueNeiIngen Rediger profil skjema funnetIngen Rediger profil skjemaer i papirkurvenIngen registreringsskjemaet funnetIngen registreringsskjemaer funnet i papirkurvenIngen bruker oppføring funnetIngen Bruker Oppføring funnet i papirkurvIngen element funnet.Ingen resultater funnet!IngenNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayIkke kompatibel med Profile BuilderIkke kompatibel med din versjon av Profile BuilderAntall innleggAntall brukere/sideOmanKun administratorer kan se dette feltet på rediger profil skjema.Bare en administrator kan legge til nye brukere.InnstillingerOverskriv eksisterendePagineringPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayPassordPassord Tapt og FunnetPassword Recovery side URL (valgfritt):Mail om gjenoppretting av passordSuksessfull tilbakestilling av passord mailtilbakestill passord fra "%1$s"Passord Vellykket Tilbakestilt for %1$s på "%2$s"Tilpasse alle e-poster som sendes til brukere eller administratorer. Ved registrering, e-postbekreftelse, admin-godkjenning / ikke-godkjenning.PeruPhilippinesPitcairnVennligst sjekk at du skrev inn riktig e-postadresse.Kontroller at du har angitt riktig brukernavn.Velg en annen felttype som denne finnes allerede i skjemaet (må være unikt) Vennligst oppgi med ett gyldig brukernavnAngi en verdi for feltet nødvendigSkriv inn brukernavn eller e-postadresse.Vennligst velg minst en bruker rolle Prøv en annen!PolandPortugalInnleggKraftige Moduler (**)Logg inn-widgetProfile Builder RegistrerPuerto RicoQatarRadio-knapperTilfeldig (svært sakte på store databaser > 10K bruker)Gjenopprett passord (*)OmdirigereRegistrerRegistrer versjonRegistrer DegRegistrere Nettadresse (valgfritt):RegistrertRegistreringRegistrering & Rediger profilRegistreringsdatoRegistreringsskjemaRegistrerings skjemaerRegistrering med administratorgodkjenningRegistrering med e-post BekreftelseHusk imidlertid at feltverdien kombinasjonen må finnes i databasen.FjernGjenta PassordSvar tilRepublic of the CongoPåkrevdSende aktivering e-post på nyResett nøkkelTilbakestill linkTilbakestill passordResett UrlBegrense userlisting til disse valgte rollene bare
            Hvis det ikke er valgt vil standardrolle settesGjenta installeringReunionRolleBrukerroller å viseRomaniaAntall raderRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaLagreLangre endringerLagre innstillingerLagre bruker rolle rekkefølgen fra bruker rolle valgeneSøkSøk etter bruker i alle feltSøke alle felterSøk skjemaene Rediger profilSøk i registreringsskjemaerSøk i brukerlisteSecret KeyVelgMerk alleVelg hvilken bruker rolle å vise til bruker ( dra og slipp for å sortere )Velge 'Ja' vil legge til feltet i listen, men overskriver alle andre felt i databasen som har samme meta navn
            Bruk dette på eget ansvarSend denne informasjonen på e-post.SenegalSerbiaAngi rolleAngi avatar på alle brukerlisterAngi størrelse på enkelt bruker listeDefinere sorteringskriterier
            Dette kan midlertidig endres for hver nye øktAngi standard sorteringsrekkefølge
            Dette kan midlertidig endres for hver nye øktSette opp flere registreringsskjemaer med ulike felt for visse brukerroller. Fange opp ulik informasjon fra forskjellige typer brukere.SeychellesShare a little biographical information to fill out your profile. This may be shown publicly.KortkodeVisVis alle datoerVis/Skjul admin barSierra LeoneRegistrering datoSingaporeBrukerliste MalSint MaartenSite KeySide navnURL til sidenSlovakiaSloveniaSolomon IslandsSomaliaNoen har bedt om at passordet tilbakestilles for følgende konto:%1$s
            Hvis dette var en feil, bare ignorere denne e-posten, og ingenting vil skje.
            For å tilbakestille passordet ditt, kan du gå til følgende link:%2$sNoe gikk galt, vi kunne ikke koble til serveren. Vennligst forsøk igjen senere.Beklager, men du har ikke tillatelse til å gjøre det!South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainAngi nettadressen til siden brukerne vil bli omdirigert når registrerte bruker dette skjemaet
            Bruk følgende format: http://www.mysite.comAngi nettadressen til siden brukerne vil bli omdirigert når de oppdatert profilen ved hjelp av dette skjemaet
            Bruk følgende format: http://www.mysite.comAngi tillegg(et) du vil begrense for opplasting
            Eksempel: .ext1,.ext2,.ext3
            Hvis ikke spesifisert, settes standard til alle WordPress tillatte fil endelser(.*)Spesifiser antal linjer for 'Tekst' felt
            Hvis ikke spesifisert , settes standard til 5Angi alternativet som bør kontrolleres som standard
            Hvis det er flere verdier, skiller du dem med en ',' (komma)Angi alternativet som bør være valgt som standardSpesifisere siden brukerne vil bli sendt til når de bekrefter e-postadressen. Denne siden kan avvike fra registrér-siden(e) og kan endres når som helst. Hvis ikke spesifisert, vil en enkel bekreftelsesside vises for brukeren.Sri LankaStatusStyrke indikatorSterkSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaAvtalebetingelserTekstfeltThailandThat field is already added in this form That meta-name is already in use Brukernavnet er allerede aktivert.Funksjonen "Administratorgodkjenning" ble aktivert ved registrering, så husk at du må godkjenne denne brukeren før han/hun kan logge inn!Kontoen %1s ble opprettet!Den beste måten å legge til front-end registrering , redigere profil og login skjemaer.Den angitte e-postadressen ble ikke funnet i databasen!E-posten du skrev inn er ikke en gyldig e-postadresse.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical Passordene samsvarer ikke.The entered row number is not numerical The entered value for the Datepicker is not a valid date-format The following option did not coincide with the ones in the options list: %s The following option(s) did not coincide with the ones in the options list: %s Meta-Navnet kan ikke være tomt Passordet må ha en minimum styrke på %sPassordet må minimum ha en lengde på %s tegnPassordet du oppga er feil.Passordene samsvarer ikke.Den valgte brukeren kunne ikke slettesValgte brukere er aktivertValgte brukere har fått aktiveringsepost på nyttSerienummeret kunne ikke valideres fordi den opphøre!Serienummeret kunne ikke valideres fordi prosessen ble tidsavbrutt. Dette er mulig fordi serveren er nede. Prøv igjen senere!Serienummeret oppga kunne ikke valideres!Serie nummeret vil snart utløpe!Serienummeret ble validert!Shortcode blir tilgjengelig etter at du publiserer dette skjemaet."Site Key" fra Google, www.google.com/recaptchaBrukerlister vil bare være synlig bare for påloggede brukereBrukerlistene vil bare være synlig for følgende rollerBrukernavn angitt finnes ikke i databasen!Brukernavnene kan ikke endres.Det er en feil i skjemaet som ble sendtDet oppsto en feil da denne handlingen ble utført!Det oppstod en feil under forsøket på å aktivere brukerDet oppstod en feil under forsøket på å aktivere brukeren.Det oppstod en feil ved forsøk på å sende linken aktivisering til%1$s!Disse innstillingene er også gjenskapt i "User Email Customizer" innstillinger-siden ved lagring.Denne e-posten er allerede i bruk.Denne e-posten er allerede reservert til bruk snart.Dette feltet er obligatoriskDenne skjemaet er tomt.Denne loginn widgeten lar deg legge til en påloggingsskjema i sidepanelet.Denne meldingen er kun synlig for administratorerDette brukernavnet finnes allerede.Brukernavnet er allerede aktivert.Dette brukernavnet er allerede reservert for bruk snart.Dette brukernavnet er ugyldig fordi det inneholder ugyldige tegn.Dette brukernavnet er nå aktiv!Velg TidssoneTittel på feltetTittel:For å gi brukere mulighet til å registrere seg til ditt websted via Profile Builder, må du først aktivere bruker registering. Gå til %1$sNettverk Instillinger%2$s, og under Registrerings Instillinger sjekk “Bruker konto kan registreres”. %3$sAvvis%4$sDu må få en API-nøkkel fra å bruke reCAPTCHADu må få en API fellesnøkkel fra å bruke reCAPTCHA:TogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluSkriv inn passordet på nyttSkriv inn passordet ditt .U.S. Virgin IslandsNettadresseUgandaUkraineBlokkereIkke godkjentIkke godkjent brukervarslingUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsOppdaterOppgrader Profile BuilderLast oppUruguayBruk disse koder på sidene du vil skjemaene vises:Bruk denne kortkodenl på siden du vil at skjemaet skal vises:Brukeren godkjenningsvarsletBruker Epost tilpasserBruker IDBrukerlisteBruker MetaBruker RolleBruker rollerBruker rolle rekkefølgeBruker ikke funnetBrukeren er godkjent!Bruker slettet!Bruker ble utestengtBruker å endre:Bruker-RolleBruker-statusBrukerliste innstillingerBrukernavnBrukernavn og EpostBrukernavn eller E-postBrukernavn eller EpostBrukernavn kan ikke forandresBrukere kan registrere seg selv, eller du kan manuelt opprette brukere her.Brukere kan ikke registrere seg, men du kan manuelt opprette brukere her.Brukere er godkjent!Bruker slettet!Bruker ble utestengtBrukere med Ubekreftet e-postadresseUzbekistanGyldige tagger {{reply_to}} og {{site_name}}VanuatuVaticanVenezuelaVersion %sVeldig svaktVeldig SvaktVietnamVis alle ekstra shortcode parametreVise skjemaet Rediger profilSe registreringsskjemaetVis bruker-listeSynlighetVises bare for påloggede brukere?Synlig for følgende rollerWallis and FutunaSvaktNettstedVelkommen til %1$s!


            Brukernavnet ditt er: %2$sVelkommen til %1$s!


            Brukernavnet ditt er: %2$s og passord: %3$sWestern SaharaOm feltet er påkrevd eller ikkeEnten å automatisk logge på den nylig registrert bruker eller ikke
            Fungerer bare på single-sider uten "Administrator godkjennelse" og "Epost bekreftelse" funksjoner aktivert
            ADVARSEL: cache påmeldingsskjema vil gjøre at automatisk pålogging ikke fungererEnten å omdirigere brukeren til en bestemt side eller ikkeMed ekstra profilfelter kan du opprette nøyaktig det registreringsskjemaet prosjektet ditt behøver.Yahoo IMYemenJaYIM Du er allerede logget inn. Du kan endre passordet ditt på redigeringsprofilskjema.Du er logget inn som %1$s. %2$sDu er logget som %1s. Du trenger ikke en annen konto. %2sDu er nå innlogget som %s.Du har ikke lov til å gjøre dette.Du kan legge til informasjon for %s når du legger til en oppføringDu kan finne en liste over brukere på %1$sUsers > All Users > Email Confirmation%2$s.Du kan finne en liste med brukere i %1$sUsers > All Users > Admin Approval%2$s.Du finner den i Profile Builder menyen.Du kan finne standard fil her: %1$s Du kan bruke: # for tall, parenteser (), - tegn, + tegn, punktum. og mellomrom.Du kan ikke registrere denne bruker rollenDu bestemmer hvem som er en bruker på nettstedet ditt. Bli varslet via e-post eller godkjenn flere brukere på en gang via WordPress UI.Du bestemmer hvem som er en bruker på nettstedet ditt. Bli varslet via e-post eller godkjenn flere brukere på én gang via WordPress UI. Aktiver administratorgodkjenning ved å oppgradere til %1$sHobbyist or PRO versions%2$s.Du trenger ikke paginering innstillinger på denne brukerlisten!Du enten ikke har tillatelse for handlingen, eller det var en feil!Du har nå tilbakestille passordet ditt til:%1$sDu må være pålogget for å redigere din profil.Du må oppgi en gyldig epost adresse.You must enter a value for the date-format You must enter a value for the row number Du må legge inn "Secret Key" Du må legge inn "site key" Du må velge et felt Du må aktivere funksjonen Userlisting fra fanen "Moduler"!Du må angi tittelen på skjemaet før du oppretter denDu vil motta en lenke på e-post for å opprette nytt passord.Du vil snart bli omdirigert automatisk. Hvis du ser denne siden for mer enn %1$ d sekunder, vennligst klikk %2$s.%3$sKontoen din må bekreftes av en administrator før du kan bruke "Password Recovery" -funksjonen.Kontoen din må bekreftes av en administrator før du kan bruke "Password Reset" -funksjonen.Kontoen %1$s har blitt godkjent!Kontoen%1$s er blokkert.Din konto på {{site_name}} er godkjent!Din konto på {{site_name}} har blitt avvist!Din e-post ble bekreftet.Ditt passord har blitt endret!Profilen din ble oppdatert!Økten er utløpt! Oppdater siden og prøv igjenØkten er utløpt! Oppdater siden og prøv på nytt.ZambiaZimbabwe[%1$s] Aktivere %2$s[%1$s] Din nye kontoinformasjon[{{Side_navn}}] Aktiver {{brukernavn}}[{{site_name}}] Passord Resett[{{site_name}}] Passord resatt med suksessgodkjenne denne brukeren?GodkjentBekrefte denne epost selv?slette denne brukeren fra tabellen _signups?slette denne brukeren?vis alle brukere unntatt de du spesifiserte user_id forvis kun brukere som du spesifiserte user_id forviser brukere som har en bestemt meta-verdi i et bestemt (ekstra) meta felte-postherreCAPTCHApåkrevdSende aktiverings lenke på ny?VisBlokkere denne brukeren?Ikke godkjentbrukernavnbrukernavn eller eposttranslation/profile-builder-ro_RO.po000066600000627360152141651160013570 0ustar00# Translation of Profile Builder in Romanian # This file is distributed under the same license as the Profile Builder package. msgid "" msgstr "" "PO-Revision-Date: 2017-05-08 09:42:31+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);\n" "X-Generator: GlotPress/0.1\n" "Project-Id-Version: Profile Builder\n" #: profile-builder-2.0/admin/general-settings.php:154 msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s." msgstr "" #: profile-builder-2.0/admin/general-settings.php:146 msgid "\"Roles Editor\" Activated:" msgstr "" #: profile-builder-2.0/features/roles-editor/roles-editor.php:300 msgid "M j, Y @ G:i" msgstr "" #: profile-builder-2.0/front-end/recover.php:117 msgid "Please enter your email address." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yy" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244 msgid "Individual redirects defined in shortcodes; redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1217 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." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "" #: profile-builder-2.0/admin/register-version.php:251 msgid "

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            " msgstr "" #: profile-builder-2.0/admin/register-version.php:246 msgid "

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            " msgstr "" #: profile-builder-2.0/front-end/recover.php:159 msgid "You are already logged in. You can change your password on the edit profile form." msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "" #: profile-builder-2.0/features/functions.php:909 msgid "

            You can visit your site at " msgstr "" #: profile-builder-2.0/features/functions.php:896 msgid "

            Also, you will be able to visit your site at " msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138 msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network." msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36 #: profile-builder-2.0/modules/user-listing/userlisting.php:118 msgid "Blog URL" msgstr "" #: profile-builder-2.0/admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:222 msgid "Blog Details" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:239 msgid "Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579 msgid "Welcome to %1$s!


            Your username is:%2$s" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1320 msgid "View Map" msgstr "" #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267 #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367 #: pb-add-on-woocommerce/index.php:493 msgid "Address line 2" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "Billing Fields" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Billing Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Save the billing fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Billing Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Save the billing fields names" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Shipping Fields" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Shipping Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Save the shipping fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Shipping Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Save the shipping fields names" msgstr "" #: pb-add-on-woocommerce/index.php:305 msgid "Field Name" msgstr "" #: pb-add-on-woocommerce/index.php:369 msgid "Click to edit " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:368 msgid "is not a valid phone number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:377 msgid "is not a number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:382 msgid "must be a multiplier of " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:387 msgid "must be a greater than or equal to " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:392 msgid "must be less than or equal to " msgstr "" #: profile-builder-2.0/admin/add-ons.php:103 msgid "Available in Hobbyist and Pro Versions" msgstr "" #: profile-builder-2.0/admin/add-ons.php:105 msgid "Available in All Versions" msgstr "" #: profile-builder-2.0/admin/add-ons.php:148 msgid "Learn More" msgstr "" #: profile-builder-2.0/admin/basic-info.php:99 msgid "Timepicker" msgstr "" #: profile-builder-2.0/admin/basic-info.php:100 msgid "Colorpicker" msgstr "" #: profile-builder-2.0/admin/basic-info.php:103 msgid "Currency Select" msgstr "" #: profile-builder-2.0/admin/basic-info.php:109 msgid "Number" msgstr "" #: profile-builder-2.0/admin/basic-info.php:114 msgid "Validation" msgstr "" #: profile-builder-2.0/admin/basic-info.php:115 msgid "Map" msgstr "" #: profile-builder-2.0/admin/basic-info.php:116 msgid "HTML" msgstr "" #: profile-builder-2.0/admin/basic-info.php:162 #: profile-builder-2.0/modules/modules.php:117 msgid "Repeater Fields" msgstr "" #: profile-builder-2.0/admin/basic-info.php:163 msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role." msgstr "" #: profile-builder-2.0/admin/general-settings.php:59 msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Show Currency Symbol" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Whether the currency symbol should be displayed after the currency name in the select option." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Show Post Type" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Posts from what post type will be displayed in the select." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:145 msgid "Allowable Values" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:145 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." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Error Message" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Set a custom error message that will be displayed to the user." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Time Format" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Specify the time format." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Google Maps API Key" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Enter your Google Maps API key ( Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "Default Latitude" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "The latitude at which the map should be displayed when no pins are attached." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "Default Longitude" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "The longitude at which the map should be displayed when no pins are attached." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Default Zoom Level" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "Map Height" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "The height of the map." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "HTML Content" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "Add your HTML (or text) content" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Phone Format" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Eg. (###) ###-####" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Empty field won't check for correct phone number." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Heading Tag" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Change heading field size on front-end forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min Number Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Leave it empty for no min value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max Number Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Leave it empty for no max value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Number Step Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 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)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Leave it empty for no restriction" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:564 msgid "Albania Lek" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:565 msgid "Afghanistan Afghani" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:566 msgid "Argentina Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:567 msgid "Aruba Guilder" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:568 msgid "Australia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:569 msgid "Azerbaijan New Manat" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:570 msgid "Bahamas Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:571 msgid "Barbados Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:572 msgid "Bangladeshi taka" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:573 msgid "Belarus Ruble" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:574 msgid "Belize Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:575 msgid "Bermuda Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:576 msgid "Bolivia Boliviano" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:577 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:578 msgid "Botswana Pula" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:579 msgid "Bulgaria Lev" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:580 msgid "Brazil Real" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:581 msgid "Brunei Darussalam Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:582 msgid "Cambodia Riel" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:583 msgid "Canada Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:584 msgid "Cayman Islands Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:585 msgid "Chile Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:586 msgid "China Yuan Renminbi" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:587 msgid "Colombia Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:588 msgid "Costa Rica Colon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:589 msgid "Croatia Kuna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:590 msgid "Cuba Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:591 msgid "Czech Republic Koruna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:592 msgid "Denmark Krone" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:593 msgid "Dominican Republic Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:594 msgid "East Caribbean Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:595 msgid "Egypt Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:596 msgid "El Salvador Colon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:597 msgid "Estonia Kroon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:598 msgid "Euro" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:599 msgid "Falkland Islands (Malvinas) Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:600 msgid "Fiji Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:601 msgid "Ghana Cedis" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:602 msgid "Gibraltar Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:603 msgid "Guatemala Quetzal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:604 msgid "Guernsey Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:605 msgid "Guyana Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:606 msgid "Honduras Lempira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:607 msgid "Hong Kong Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:608 msgid "Hungary Forint" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:609 msgid "Iceland Krona" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:610 msgid "India Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:611 msgid "Indonesia Rupiah" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:612 msgid "Iran Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:613 msgid "Isle of Man Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:614 msgid "Israel Shekel" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:615 msgid "Jamaica Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:616 msgid "Japan Yen" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:617 msgid "Jersey Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:618 msgid "Kazakhstan Tenge" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:619 msgid "Korea (North) Won" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:620 msgid "Korea (South) Won" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:621 msgid "Kyrgyzstan Som" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:622 msgid "Laos Kip" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:623 msgid "Latvia Lat" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:624 msgid "Lebanon Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:625 msgid "Liberia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:626 msgid "Lithuania Litas" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:627 msgid "Macedonia Denar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:628 msgid "Malaysia Ringgit" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:629 msgid "Mauritius Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:630 msgid "Mexico Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:631 msgid "Mongolia Tughrik" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:632 msgid "Mozambique Metical" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:633 msgid "Namibia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:634 msgid "Nepal Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:635 msgid "Netherlands Antilles Guilder" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:636 msgid "New Zealand Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:637 msgid "Nicaragua Cordoba" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:638 msgid "Nigeria Naira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:639 msgid "Norway Krone" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:640 msgid "Oman Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:641 msgid "Pakistan Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:642 msgid "Panama Balboa" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:643 msgid "Paraguay Guarani" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:644 msgid "Peru Nuevo Sol" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:645 msgid "Philippines Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:646 msgid "Poland Zloty" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:647 msgid "Qatar Riyal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:648 msgid "Romania New Leu" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:649 msgid "Russia Ruble" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:650 msgid "Saint Helena Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:651 msgid "Saudi Arabia Riyal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:652 msgid "Serbia Dinar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:653 msgid "Seychelles Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:654 msgid "Singapore Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:655 msgid "Solomon Islands Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:656 msgid "Somalia Shilling" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:657 msgid "South Africa Rand" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:658 msgid "Sri Lanka Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:659 msgid "Sweden Krona" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:660 msgid "Switzerland Franc" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:661 msgid "Suriname Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:662 msgid "Syria Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:663 msgid "Taiwan New Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:664 msgid "Thailand Baht" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:665 msgid "Trinidad and Tobago Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:666 #: profile-builder-2.0/admin/manage-fields.php:667 msgid "Turkey Lira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:668 msgid "Tuvalu Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:669 msgid "Ukraine Hryvna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:670 msgid "United Kingdom Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:671 msgid "Uganda Shilling" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:672 msgid "US Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:673 msgid "Uruguay Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:674 msgid "Uzbekistan Som" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:675 msgid "Venezuela Bolivar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:676 msgid "Viet Nam Dong" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:677 msgid "Yemen Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:678 msgid "Zimbabwe Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1097 msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1314 msgid "Search Location" msgstr "" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754 msgid "You are not allowed to do this." msgstr "" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460 msgid "Search Users" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78 msgid "Conditional Logic" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79 msgid "Conditional Rules" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448 msgid "This field has conditional logic enabled." msgstr "" #: profile-builder-2.0/features/functions.php:685 msgid "Incorrect phone number" msgstr "" #: profile-builder-2.0/front-end/class-formbuilder.php:124 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." msgstr "" #: profile-builder-2.0/front-end/extra-fields/map/map.php:46 #: profile-builder-2.0/front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "" #: profile-builder-2.0/front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bolivia, __( Plurinational State of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bonaire, __( Sint Eustatius and Saba" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brunei Darussalam" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cabo Verde" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cocos (Keeling) Islands" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo, __( the Democratic Republic of the" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cote dIvoire" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Falkland Islands (Malvinas)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Holy See (Vatican City State)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iran, __( Islamic Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Democratic Peoples Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lao Peoples Democratic Republic" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macedonia, __( the former Yugoslav Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Micronesia, __( Federated States of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Moldova, __( Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palestine, __( State of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Russian Federation" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Helena, __( Ascension and Tristan da Cunha" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Martin (French part)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sint Maarten (Dutch part)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Syrian Arab Republic" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Taiwan, __( Province of China" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tanzania, __( United Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Timor-Leste" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Venezuela, __( Bolivarian Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Viet Nam" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( British" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( U.S." msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:186 msgid "User Fields Tags" msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479 msgid "The users selected password at signup" msgstr "" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278 msgid "[{{site_name}}] Notice of Email Change" msgstr "" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289 msgid "Changed Email Address Notification" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Limit" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Enable limit to the number of fields to be generated by users in front end forms " msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "General Limit" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "Limit reached message" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The maximum number of fields has been reached." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The popup message to display when the limit of repeater groups is reached." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Limit per Role" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Leave 0 for unlimited." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Repeated field group" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Manage field or group of fields that will be repeatable." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259 msgid "Edit field group" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260 msgid "Repeatable fields saved!" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277 #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326 msgid "Please enter a unique field title.\n" msgstr "" #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267 msgid "Are you sure you want to delete this?" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:192 msgid "Sort Tags" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:201 #: profile-builder-2.0/modules/user-listing/userlisting.php:2308 msgid "Faceted Menus" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:202 msgid "User Count" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1553 msgid "Show All" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1710 msgid "No options available" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1861 msgid "Remove All Filters" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Label" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Choose the facet name that appears on the frontend" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Facet Type" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Choose the facet menu type" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Facet Meta" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Choose the meta field for the facet menu" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Behaviour" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Narrow the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Expand the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Choose how multiple selections affect the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Visible choices" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Search Fields" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Choose the fields in which the Search Field will look in" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2330 msgid "Search Settings" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:8 #: pb-add-on-woocommerce/shipping-fields.php:8 msgid "Company Name" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:9 #: pb-add-on-woocommerce/shipping-fields.php:9 msgid "Address" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:5 #: pb-add-on-woocommerce/shipping-fields.php:5 msgid "Country" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:11 #: pb-add-on-woocommerce/shipping-fields.php:11 msgid "Town / City" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:12 #: pb-add-on-woocommerce/shipping-fields.php:12 msgid "State / County" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:13 #: pb-add-on-woocommerce/shipping-fields.php:13 msgid "Postcode / Zip" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:14 msgid "Email Address" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:15 msgid "Phone" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:278 msgid "Ship to a different address?" msgstr "" #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437 msgid "Billing Address" msgstr "" #: pb-add-on-woocommerce/index.php:169 msgid "Displays customer billing fields in front-end. " msgstr "" #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438 msgid "Shipping Address" msgstr "" #: pb-add-on-woocommerce/index.php:173 msgid "Displays customer shipping fields in front-end. " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Display on WooCommerce Checkout" msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Whether the field should be added to the WooCommerce checkout form or not" msgstr "" #: pb-add-on-woocommerce/index.php:541 msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:23 #: pb-add-on-woocommerce/woosync-page.php:70 msgid "WooCommerce Sync" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:76 msgid "Choose Register form to display on My Account page:" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:81 msgid "Default Register" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:103 msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce.
            This will also add the Profile Builder Login form to MyAccount page." msgstr "" #: pb-add-on-woocommerce/woosync-page.php:110 msgid "Choose Edit Profile form to display on My Account page:" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:115 msgid "Default Edit Profile" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:137 msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce." msgstr "" #: profile-builder-2.0/admin/add-ons.php:190 msgid "Recommended Plugins" msgstr "" #: profile-builder-2.0/admin/add-ons.php:219 #: profile-builder-2.0/admin/pms-cross-promotion.php:102 msgid "Free" msgstr "" #: profile-builder-2.0/admin/add-ons.php:221 msgid "Accept user payments, create subscription plans and restrict content on your membership site." msgstr "" #: profile-builder-2.0/admin/add-ons.php:222 #: profile-builder-2.0/admin/pms-cross-promotion.php:105 msgid "More Details" msgstr "" #: profile-builder-2.0/admin/add-ons.php:240 #: profile-builder-2.0/admin/pms-cross-promotion.php:88 #: profile-builder-2.0/admin/pms-cross-promotion.php:123 #: profile-builder-2.0/admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "" #: profile-builder-2.0/admin/add-ons.php:242 #: profile-builder-2.0/admin/pms-cross-promotion.php:87 #: profile-builder-2.0/admin/pms-cross-promotion.php:125 #: profile-builder-2.0/admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "" #: profile-builder-2.0/admin/add-ons.php:256 #: profile-builder-2.0/admin/pms-cross-promotion.php:146 msgid "Could not install plugin. Retry or install manually." msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:37 msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:104 msgid "Accept user payments, create subscription plans and restrict content on your website." msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401 msgid "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login." msgstr "Pentru a-ți activa contul, dă click pe următorul link:

            %s%s%s

            După ce îl activezi, vei primi *un nou email* cu informații despre contul tău." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45 msgid "After Login" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46 msgid "After Logout" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47 msgid "After Registration" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48 msgid "After Edit Profile" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Successful Email Confirmation" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Successful Password Reset" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55 msgid "User ID" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61 msgid "User ID or Username" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "User ID / Username" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "Please select and enter the ID or username of your user." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131 msgid "Redirect Type" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Redirect URL" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241 msgid "Individual User Redirects" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84 msgid "... Choose" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 msgid "Select a user role." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242 msgid "User Role based Redirects" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243 msgid "Global Redirects" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133 msgid "Login ( wp_login.php )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134 msgid "Register ( wp-login.php?action=register )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145 msgid "Redirect Default WordPress Forms and Pages" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157 msgid "How does this work?" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 msgid "
            User Role
            Redirect
            URL
            " msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "
            Redirect
            URL
            " msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236 msgid "These redirects happen after a successful action, like registration or after a successful login." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238 msgid "Which redirect happens depends on the following priority:" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247 msgid "Redirect Default WordPress forms and pages" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248 msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250 msgid "Available tags for dynamic URLs" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251 msgid "You use the following tags in your URLs to redirect users to various pages." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253 msgid "generates a url of the current website homepage." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254 msgid "in WordPress the site url can be different then the home url" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255 msgid "the ID of the user" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256 msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257 msgid "the URL of the previously visited page" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352 msgid "You can't add duplicate redirects!" msgstr "" #: profile-builder-2.0/admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "" #: profile-builder-2.0/admin/basic-info.php:37 msgid "Friction-less login using %s shortcode or a widget." msgstr "" #: profile-builder-2.0/admin/basic-info.php:41 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "" #: profile-builder-2.0/admin/basic-info.php:45 msgid "Straight forward edit profile forms using %s shortcode." msgstr "" #: profile-builder-2.0/admin/basic-info.php:58 msgid "Allow users to recover their password in the front-end using the %s." msgstr "" #: profile-builder-2.0/admin/basic-info.php:140 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." msgstr "" #: profile-builder-2.0/admin/general-settings.php:115 msgid "\"Admin Approval\" on User Role:" msgstr "" #: profile-builder-2.0/admin/general-settings.php:134 msgid "Select on what user roles to activate Admin Approval." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Display on PB forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Login" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Register" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Recover Password" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Display on default WP forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Login" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Register" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Recover Password" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default option of the field" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:282 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Afghanistan" msgstr "Afghanistan" #: profile-builder-2.0/admin/manage-fields.php:283 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aland Islands" msgstr "Aland Islands" #: profile-builder-2.0/admin/manage-fields.php:284 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Albania" msgstr "Albania" #: profile-builder-2.0/admin/manage-fields.php:285 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Algeria" msgstr "Algeria" #: profile-builder-2.0/admin/manage-fields.php:286 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "American Samoa" msgstr "American Samoa" #: profile-builder-2.0/admin/manage-fields.php:287 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Andorra" msgstr "Andorra" #: profile-builder-2.0/admin/manage-fields.php:288 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Angola" msgstr "Angola" #: profile-builder-2.0/admin/manage-fields.php:289 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Anguilla" msgstr "Anguilla" #: profile-builder-2.0/admin/manage-fields.php:290 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antarctica" msgstr "Antarctica" #: profile-builder-2.0/admin/manage-fields.php:291 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" #: profile-builder-2.0/admin/manage-fields.php:292 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Argentina" msgstr "Argentina" #: profile-builder-2.0/admin/manage-fields.php:293 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Armenia" msgstr "Armenia" #: profile-builder-2.0/admin/manage-fields.php:294 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aruba" msgstr "Aruba" #: profile-builder-2.0/admin/manage-fields.php:295 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Australia" msgstr "Australia" #: profile-builder-2.0/admin/manage-fields.php:296 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Austria" msgstr "Austria" #: profile-builder-2.0/admin/manage-fields.php:297 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Azerbaijan" msgstr "Azerbaijan" #: profile-builder-2.0/admin/manage-fields.php:298 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahamas" msgstr "Bahamas" #: profile-builder-2.0/admin/manage-fields.php:299 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahrain" msgstr "Bahrain" #: profile-builder-2.0/admin/manage-fields.php:300 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bangladesh" msgstr "Bangladesh" #: profile-builder-2.0/admin/manage-fields.php:301 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Barbados" msgstr "Barbados" #: profile-builder-2.0/admin/manage-fields.php:302 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belarus" msgstr "Belarus" #: profile-builder-2.0/admin/manage-fields.php:303 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belgium" msgstr "Belgium" #: profile-builder-2.0/admin/manage-fields.php:304 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belize" msgstr "Belize" #: profile-builder-2.0/admin/manage-fields.php:305 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Benin" msgstr "Benin" #: profile-builder-2.0/admin/manage-fields.php:306 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bermuda" msgstr "Bermuda" #: profile-builder-2.0/admin/manage-fields.php:307 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bhutan" msgstr "Bhutan" #: profile-builder-2.0/admin/manage-fields.php:308 msgid "Bolivia" msgstr "Bolivia" #: profile-builder-2.0/admin/manage-fields.php:309 msgid "Bonaire, Saint Eustatius and Saba" msgstr "Bonaire, Saint Eustatius and Saba" #: profile-builder-2.0/admin/manage-fields.php:310 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bosnia and Herzegovina" msgstr "Bosnia and Herzegovina" #: profile-builder-2.0/admin/manage-fields.php:311 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Botswana" msgstr "Botswana" #: profile-builder-2.0/admin/manage-fields.php:312 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bouvet Island" msgstr "Bouvet Island" #: profile-builder-2.0/admin/manage-fields.php:313 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brazil" msgstr "Brazil" #: profile-builder-2.0/admin/manage-fields.php:314 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: profile-builder-2.0/admin/manage-fields.php:315 msgid "British Virgin Islands" msgstr "British Virgin Islands" #: profile-builder-2.0/admin/manage-fields.php:316 msgid "Brunei" msgstr "Brunei" #: profile-builder-2.0/admin/manage-fields.php:317 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bulgaria" msgstr "Bulgaria" #: profile-builder-2.0/admin/manage-fields.php:318 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burkina Faso" msgstr "Burkina Faso" #: profile-builder-2.0/admin/manage-fields.php:319 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burundi" msgstr "Burundi" #: profile-builder-2.0/admin/manage-fields.php:320 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cambodia" msgstr "Cambodia" #: profile-builder-2.0/admin/manage-fields.php:321 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cameroon" msgstr "Cameroon" #: profile-builder-2.0/admin/manage-fields.php:322 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Canada" msgstr "Canada" #: profile-builder-2.0/admin/manage-fields.php:323 msgid "Cape Verde" msgstr "Cape Verde" #: profile-builder-2.0/admin/manage-fields.php:324 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cayman Islands" msgstr "Cayman Islands" #: profile-builder-2.0/admin/manage-fields.php:325 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Central African Republic" msgstr "Central African Republic" #: profile-builder-2.0/admin/manage-fields.php:326 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chad" msgstr "Chad" #: profile-builder-2.0/admin/manage-fields.php:327 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chile" msgstr "Chile" #: profile-builder-2.0/admin/manage-fields.php:328 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "China" msgstr "China" #: profile-builder-2.0/admin/manage-fields.php:329 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Christmas Island" msgstr "Christmas Island" #: profile-builder-2.0/admin/manage-fields.php:330 msgid "Cocos Islands" msgstr "Cocos Islands" #: profile-builder-2.0/admin/manage-fields.php:331 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Colombia" msgstr "Colombia" #: profile-builder-2.0/admin/manage-fields.php:332 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Comoros" msgstr "Comoros" #: profile-builder-2.0/admin/manage-fields.php:333 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cook Islands" msgstr "Cook Islands" #: profile-builder-2.0/admin/manage-fields.php:334 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Costa Rica" msgstr "Costa Rica" #: profile-builder-2.0/admin/manage-fields.php:335 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Croatia" msgstr "Croatia" #: profile-builder-2.0/admin/manage-fields.php:336 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cuba" msgstr "Cuba" #: profile-builder-2.0/admin/manage-fields.php:337 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Curacao" msgstr "Curacao" #: profile-builder-2.0/admin/manage-fields.php:338 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cyprus" msgstr "Cyprus" #: profile-builder-2.0/admin/manage-fields.php:339 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Czech Republic" msgstr "Czech Republic" #: profile-builder-2.0/admin/manage-fields.php:340 msgid "Democratic Republic of the Congo" msgstr "Democratic Republic of the Congo" #: profile-builder-2.0/admin/manage-fields.php:341 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Denmark" msgstr "Denmark" #: profile-builder-2.0/admin/manage-fields.php:342 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Djibouti" msgstr "Djibouti" #: profile-builder-2.0/admin/manage-fields.php:343 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominica" msgstr "Dominica" #: profile-builder-2.0/admin/manage-fields.php:344 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominican Republic" msgstr "Dominican Republic" #: profile-builder-2.0/admin/manage-fields.php:345 msgid "East Timor" msgstr "East Timor" #: profile-builder-2.0/admin/manage-fields.php:346 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ecuador" msgstr "Ecuador" #: profile-builder-2.0/admin/manage-fields.php:347 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Egypt" msgstr "Egypt" #: profile-builder-2.0/admin/manage-fields.php:348 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "El Salvador" msgstr "El Salvador" #: profile-builder-2.0/admin/manage-fields.php:349 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: profile-builder-2.0/admin/manage-fields.php:350 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Eritrea" msgstr "Eritrea" #: profile-builder-2.0/admin/manage-fields.php:351 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Estonia" msgstr "Estonia" #: profile-builder-2.0/admin/manage-fields.php:352 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ethiopia" msgstr "Ethiopia" #: profile-builder-2.0/admin/manage-fields.php:353 msgid "Falkland Islands" msgstr "Falkland Islands" #: profile-builder-2.0/admin/manage-fields.php:354 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Faroe Islands" msgstr "Faroe Islands" #: profile-builder-2.0/admin/manage-fields.php:355 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Fiji" msgstr "Fiji" #: profile-builder-2.0/admin/manage-fields.php:356 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Finland" msgstr "Finland" #: profile-builder-2.0/admin/manage-fields.php:357 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "France" msgstr "France" #: profile-builder-2.0/admin/manage-fields.php:358 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Guiana" msgstr "French Guiana" #: profile-builder-2.0/admin/manage-fields.php:359 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Polynesia" msgstr "French Polynesia" #: profile-builder-2.0/admin/manage-fields.php:360 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Southern Territories" msgstr "French Southern Territories" #: profile-builder-2.0/admin/manage-fields.php:361 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gabon" msgstr "Gabon" #: profile-builder-2.0/admin/manage-fields.php:362 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gambia" msgstr "Gambia" #: profile-builder-2.0/admin/manage-fields.php:363 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Georgia" msgstr "Georgia" #: profile-builder-2.0/admin/manage-fields.php:364 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Germany" msgstr "Germany" #: profile-builder-2.0/admin/manage-fields.php:365 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ghana" msgstr "Ghana" #: profile-builder-2.0/admin/manage-fields.php:366 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gibraltar" msgstr "Gibraltar" #: profile-builder-2.0/admin/manage-fields.php:367 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greece" msgstr "Greece" #: profile-builder-2.0/admin/manage-fields.php:368 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greenland" msgstr "Greenland" #: profile-builder-2.0/admin/manage-fields.php:369 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Grenada" msgstr "Grenada" #: profile-builder-2.0/admin/manage-fields.php:370 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guadeloupe" msgstr "Guadeloupe" #: profile-builder-2.0/admin/manage-fields.php:371 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guam" msgstr "Guam" #: profile-builder-2.0/admin/manage-fields.php:372 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guatemala" msgstr "Guatemala" #: profile-builder-2.0/admin/manage-fields.php:373 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guernsey" msgstr "Guernsey" #: profile-builder-2.0/admin/manage-fields.php:374 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea" msgstr "Guinea" #: profile-builder-2.0/admin/manage-fields.php:375 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: profile-builder-2.0/admin/manage-fields.php:376 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guyana" msgstr "Guyana" #: profile-builder-2.0/admin/manage-fields.php:377 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Haiti" msgstr "Haiti" #: profile-builder-2.0/admin/manage-fields.php:378 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Heard Island and McDonald Islands" msgstr "Heard Island and McDonald Islands" #: profile-builder-2.0/admin/manage-fields.php:379 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Honduras" msgstr "Honduras" #: profile-builder-2.0/admin/manage-fields.php:380 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hong Kong" msgstr "Hong Kong" #: profile-builder-2.0/admin/manage-fields.php:381 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hungary" msgstr "Hungary" #: profile-builder-2.0/admin/manage-fields.php:382 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iceland" msgstr "Iceland" #: profile-builder-2.0/admin/manage-fields.php:383 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "India" msgstr "India" #: profile-builder-2.0/admin/manage-fields.php:384 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Indonesia" msgstr "Indonesia" #: profile-builder-2.0/admin/manage-fields.php:385 msgid "Iran" msgstr "Iran" #: profile-builder-2.0/admin/manage-fields.php:386 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iraq" msgstr "Iraq" #: profile-builder-2.0/admin/manage-fields.php:387 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ireland" msgstr "Ireland" #: profile-builder-2.0/admin/manage-fields.php:388 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Isle of Man" msgstr "Isle of Man" #: profile-builder-2.0/admin/manage-fields.php:389 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Israel" msgstr "Israel" #: profile-builder-2.0/admin/manage-fields.php:390 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Italy" msgstr "Italy" #: profile-builder-2.0/admin/manage-fields.php:391 msgid "Ivory Coast" msgstr "Ivory Coast" #: profile-builder-2.0/admin/manage-fields.php:392 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jamaica" msgstr "Jamaica" #: profile-builder-2.0/admin/manage-fields.php:393 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Japan" msgstr "Japan" #: profile-builder-2.0/admin/manage-fields.php:394 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jersey" msgstr "Jersey" #: profile-builder-2.0/admin/manage-fields.php:395 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jordan" msgstr "Jordan" #: profile-builder-2.0/admin/manage-fields.php:396 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kazakhstan" msgstr "Kazakhstan" #: profile-builder-2.0/admin/manage-fields.php:397 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kenya" msgstr "Kenya" #: profile-builder-2.0/admin/manage-fields.php:398 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kiribati" msgstr "Kiribati" #: profile-builder-2.0/admin/manage-fields.php:399 msgid "Kosovo" msgstr "Kosovo" #: profile-builder-2.0/admin/manage-fields.php:400 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kuwait" msgstr "Kuwait" #: profile-builder-2.0/admin/manage-fields.php:401 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: profile-builder-2.0/admin/manage-fields.php:402 msgid "Laos" msgstr "Laos" #: profile-builder-2.0/admin/manage-fields.php:403 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Latvia" msgstr "Latvia" #: profile-builder-2.0/admin/manage-fields.php:404 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lebanon" msgstr "Lebanon" #: profile-builder-2.0/admin/manage-fields.php:405 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lesotho" msgstr "Lesotho" #: profile-builder-2.0/admin/manage-fields.php:406 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liberia" msgstr "Liberia" #: profile-builder-2.0/admin/manage-fields.php:407 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Libya" msgstr "Libya" #: profile-builder-2.0/admin/manage-fields.php:408 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liechtenstein" msgstr "Liechtenstein" #: profile-builder-2.0/admin/manage-fields.php:409 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lithuania" msgstr "Lithuania" #: profile-builder-2.0/admin/manage-fields.php:410 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Luxembourg" msgstr "Luxembourg" #: profile-builder-2.0/admin/manage-fields.php:411 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macao" msgstr "Macao" #: profile-builder-2.0/admin/manage-fields.php:412 msgid "Macedonia" msgstr "Macedonia" #: profile-builder-2.0/admin/manage-fields.php:413 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Madagascar" msgstr "Madagascar" #: profile-builder-2.0/admin/manage-fields.php:414 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malawi" msgstr "Malawi" #: profile-builder-2.0/admin/manage-fields.php:415 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malaysia" msgstr "Malaysia" #: profile-builder-2.0/admin/manage-fields.php:416 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Maldives" msgstr "Maldives" #: profile-builder-2.0/admin/manage-fields.php:417 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mali" msgstr "Mali" #: profile-builder-2.0/admin/manage-fields.php:418 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malta" msgstr "Malta" #: profile-builder-2.0/admin/manage-fields.php:419 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Marshall Islands" msgstr "Marshall Islands" #: profile-builder-2.0/admin/manage-fields.php:420 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Martinique" msgstr "Martinique" #: profile-builder-2.0/admin/manage-fields.php:421 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritania" msgstr "Mauritania" #: profile-builder-2.0/admin/manage-fields.php:422 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritius" msgstr "Mauritius" #: profile-builder-2.0/admin/manage-fields.php:423 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mayotte" msgstr "Mayotte" #: profile-builder-2.0/admin/manage-fields.php:424 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mexico" msgstr "Mexico" #: profile-builder-2.0/admin/manage-fields.php:425 msgid "Micronesia" msgstr "Micronesia" #: profile-builder-2.0/admin/manage-fields.php:426 msgid "Moldova" msgstr "Moldova" #: profile-builder-2.0/admin/manage-fields.php:427 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Monaco" msgstr "Monaco" #: profile-builder-2.0/admin/manage-fields.php:428 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mongolia" msgstr "Mongolia" #: profile-builder-2.0/admin/manage-fields.php:429 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montenegro" msgstr "Montenegro" #: profile-builder-2.0/admin/manage-fields.php:430 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montserrat" msgstr "Montserrat" #: profile-builder-2.0/admin/manage-fields.php:431 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Morocco" msgstr "Morocco" #: profile-builder-2.0/admin/manage-fields.php:432 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mozambique" msgstr "Mozambique" #: profile-builder-2.0/admin/manage-fields.php:433 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Myanmar" msgstr "Myanmar" #: profile-builder-2.0/admin/manage-fields.php:434 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Namibia" msgstr "Namibia" #: profile-builder-2.0/admin/manage-fields.php:435 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nauru" msgstr "Nauru" #: profile-builder-2.0/admin/manage-fields.php:436 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nepal" msgstr "Nepal" #: profile-builder-2.0/admin/manage-fields.php:437 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Netherlands" msgstr "Netherlands" #: profile-builder-2.0/admin/manage-fields.php:438 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Caledonia" msgstr "New Caledonia" #: profile-builder-2.0/admin/manage-fields.php:439 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Zealand" msgstr "New Zealand" #: profile-builder-2.0/admin/manage-fields.php:440 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nicaragua" msgstr "Nicaragua" #: profile-builder-2.0/admin/manage-fields.php:441 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niger" msgstr "Niger" #: profile-builder-2.0/admin/manage-fields.php:442 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nigeria" msgstr "Nigeria" #: profile-builder-2.0/admin/manage-fields.php:443 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niue" msgstr "Niue" #: profile-builder-2.0/admin/manage-fields.php:444 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norfolk Island" msgstr "Norfolk Island" #: profile-builder-2.0/admin/manage-fields.php:445 msgid "North Korea" msgstr "North Korea" #: profile-builder-2.0/admin/manage-fields.php:446 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: profile-builder-2.0/admin/manage-fields.php:447 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norway" msgstr "Norway" #: profile-builder-2.0/admin/manage-fields.php:448 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Oman" msgstr "Oman" #: profile-builder-2.0/admin/manage-fields.php:449 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pakistan" msgstr "Pakistan" #: profile-builder-2.0/admin/manage-fields.php:450 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palau" msgstr "Palau" #: profile-builder-2.0/admin/manage-fields.php:451 msgid "Palestinian Territory" msgstr "Palestinian Territory" #: profile-builder-2.0/admin/manage-fields.php:452 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Panama" msgstr "Panama" #: profile-builder-2.0/admin/manage-fields.php:453 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: profile-builder-2.0/admin/manage-fields.php:454 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Paraguay" msgstr "Paraguay" #: profile-builder-2.0/admin/manage-fields.php:455 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Peru" msgstr "Peru" #: profile-builder-2.0/admin/manage-fields.php:456 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Philippines" msgstr "Philippines" #: profile-builder-2.0/admin/manage-fields.php:457 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pitcairn" msgstr "Pitcairn" #: profile-builder-2.0/admin/manage-fields.php:458 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Poland" msgstr "Poland" #: profile-builder-2.0/admin/manage-fields.php:459 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Portugal" msgstr "Portugal" #: profile-builder-2.0/admin/manage-fields.php:460 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Puerto Rico" msgstr "Puerto Rico" #: profile-builder-2.0/admin/manage-fields.php:461 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Qatar" msgstr "Qatar" #: profile-builder-2.0/admin/manage-fields.php:462 msgid "Republic of the Congo" msgstr "Republic of the Congo" #: profile-builder-2.0/admin/manage-fields.php:463 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Reunion" msgstr "Reunion" #: profile-builder-2.0/admin/manage-fields.php:464 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Romania" msgstr "Romania" #: profile-builder-2.0/admin/manage-fields.php:465 msgid "Russia" msgstr "Russia" #: profile-builder-2.0/admin/manage-fields.php:466 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Rwanda" msgstr "Rwanda" #: profile-builder-2.0/admin/manage-fields.php:467 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: profile-builder-2.0/admin/manage-fields.php:468 msgid "Saint Helena" msgstr "Saint Helena" #: profile-builder-2.0/admin/manage-fields.php:469 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts and Nevis" #: profile-builder-2.0/admin/manage-fields.php:470 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Lucia" msgstr "Saint Lucia" #: profile-builder-2.0/admin/manage-fields.php:471 msgid "Saint Martin" msgstr "Saint Martin" #: profile-builder-2.0/admin/manage-fields.php:472 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre and Miquelon" #: profile-builder-2.0/admin/manage-fields.php:473 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent and the Grenadines" #: profile-builder-2.0/admin/manage-fields.php:474 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Samoa" msgstr "Samoa" #: profile-builder-2.0/admin/manage-fields.php:475 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "San Marino" msgstr "San Marino" #: profile-builder-2.0/admin/manage-fields.php:476 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sao Tome and Principe" msgstr "Sao Tome and Principe" #: profile-builder-2.0/admin/manage-fields.php:477 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: profile-builder-2.0/admin/manage-fields.php:478 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Senegal" msgstr "Senegal" #: profile-builder-2.0/admin/manage-fields.php:479 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Serbia" msgstr "Serbia" #: profile-builder-2.0/admin/manage-fields.php:480 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Seychelles" msgstr "Seychelles" #: profile-builder-2.0/admin/manage-fields.php:481 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sierra Leone" msgstr "Sierra Leone" #: profile-builder-2.0/admin/manage-fields.php:482 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Singapore" msgstr "Singapore" #: profile-builder-2.0/admin/manage-fields.php:483 msgid "Sint Maarten" msgstr "Sint Maarten" #: profile-builder-2.0/admin/manage-fields.php:484 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovakia" msgstr "Slovakia" #: profile-builder-2.0/admin/manage-fields.php:485 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovenia" msgstr "Slovenia" #: profile-builder-2.0/admin/manage-fields.php:486 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Solomon Islands" msgstr "Solomon Islands" #: profile-builder-2.0/admin/manage-fields.php:487 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Somalia" msgstr "Somalia" #: profile-builder-2.0/admin/manage-fields.php:488 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Africa" msgstr "South Africa" #: profile-builder-2.0/admin/manage-fields.php:489 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Georgia and the South Sandwich Islands" msgstr "South Georgia and the South Sandwich Islands" #: profile-builder-2.0/admin/manage-fields.php:490 msgid "South Korea" msgstr "South Korea" #: profile-builder-2.0/admin/manage-fields.php:491 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Sudan" msgstr "South Sudan" #: profile-builder-2.0/admin/manage-fields.php:492 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Spain" msgstr "Spain" #: profile-builder-2.0/admin/manage-fields.php:493 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sri Lanka" msgstr "Sri Lanka" #: profile-builder-2.0/admin/manage-fields.php:494 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sudan" msgstr "Sudan" #: profile-builder-2.0/admin/manage-fields.php:495 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Suriname" msgstr "Suriname" #: profile-builder-2.0/admin/manage-fields.php:496 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Svalbard and Jan Mayen" msgstr "Svalbard and Jan Mayen" #: profile-builder-2.0/admin/manage-fields.php:497 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Swaziland" msgstr "Swaziland" #: profile-builder-2.0/admin/manage-fields.php:498 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sweden" msgstr "Sweden" #: profile-builder-2.0/admin/manage-fields.php:499 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Switzerland" msgstr "Switzerland" #: profile-builder-2.0/admin/manage-fields.php:500 msgid "Syria" msgstr "Syria" #: profile-builder-2.0/admin/manage-fields.php:501 msgid "Taiwan" msgstr "Taiwan" #: profile-builder-2.0/admin/manage-fields.php:502 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tajikistan" msgstr "Tajikistan" #: profile-builder-2.0/admin/manage-fields.php:503 msgid "Tanzania" msgstr "Tanzania" #: profile-builder-2.0/admin/manage-fields.php:504 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Thailand" msgstr "Thailand" #: profile-builder-2.0/admin/manage-fields.php:505 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Togo" msgstr "Togo" #: profile-builder-2.0/admin/manage-fields.php:506 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tokelau" msgstr "Tokelau" #: profile-builder-2.0/admin/manage-fields.php:507 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tonga" msgstr "Tonga" #: profile-builder-2.0/admin/manage-fields.php:508 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Trinidad and Tobago" msgstr "Trinidad and Tobago" #: profile-builder-2.0/admin/manage-fields.php:509 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tunisia" msgstr "Tunisia" #: profile-builder-2.0/admin/manage-fields.php:510 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkey" msgstr "Turkey" #: profile-builder-2.0/admin/manage-fields.php:511 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkmenistan" msgstr "Turkmenistan" #: profile-builder-2.0/admin/manage-fields.php:512 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Islands" #: profile-builder-2.0/admin/manage-fields.php:513 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tuvalu" msgstr "Tuvalu" #: profile-builder-2.0/admin/manage-fields.php:514 msgid "U.S. Virgin Islands" msgstr "U.S. Virgin Islands" #: profile-builder-2.0/admin/manage-fields.php:515 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uganda" msgstr "Uganda" #: profile-builder-2.0/admin/manage-fields.php:516 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ukraine" msgstr "Ukraine" #: profile-builder-2.0/admin/manage-fields.php:517 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Arab Emirates" msgstr "United Arab Emirates" #: profile-builder-2.0/admin/manage-fields.php:518 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Kingdom" msgstr "United Kingdom" #: profile-builder-2.0/admin/manage-fields.php:519 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States" msgstr "United States" #: profile-builder-2.0/admin/manage-fields.php:520 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: profile-builder-2.0/admin/manage-fields.php:521 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uruguay" msgstr "Uruguay" #: profile-builder-2.0/admin/manage-fields.php:522 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uzbekistan" msgstr "Uzbekistan" #: profile-builder-2.0/admin/manage-fields.php:523 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Vanuatu" msgstr "Vanuatu" #: profile-builder-2.0/admin/manage-fields.php:524 msgid "Vatican" msgstr "Vatican" #: profile-builder-2.0/admin/manage-fields.php:525 msgid "Venezuela" msgstr "Venezuela" #: profile-builder-2.0/admin/manage-fields.php:526 msgid "Vietnam" msgstr "Vietnam" #: profile-builder-2.0/admin/manage-fields.php:527 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Wallis and Futuna" msgstr "Wallis and Futuna" #: profile-builder-2.0/admin/manage-fields.php:528 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Western Sahara" msgstr "Western Sahara" #: profile-builder-2.0/admin/manage-fields.php:529 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Yemen" msgstr "Yemen" #: profile-builder-2.0/admin/manage-fields.php:530 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zambia" msgstr "Zambia" #: profile-builder-2.0/admin/manage-fields.php:531 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zimbabwe" msgstr "Zimbabwe" #: profile-builder-2.0/admin/manage-fields.php:1219 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." msgstr "" #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237 msgid "Your account has to be confirmed by an administrator before you can log in." msgstr "" #: profile-builder-2.0/features/admin-approval/admin-approval.php:216 msgid "Your account has been successfully created!" msgstr "" #: profile-builder-2.0/features/functions.php:678 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458 msgid "Please enter a (valid) reCAPTCHA value" msgstr "" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 msgid "Click the BACK button on your browser, and try again." msgstr "" #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78 #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87 msgid "Sorry, you cannot upload this file type for this field." msgstr "" #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94 msgid "An error occurred, please try again later." msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:282 msgid "More" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:376 msgid "You do not have permission to view this user list." msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:389 msgid "You do not have the required user role to view this user list." msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2253 msgid "Ascending" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2254 msgid "Descending" msgstr "" #: profile-builder-2.0/admin/add-ons.php:148 #: profile-builder-2.0/admin/add-ons.php:248 #: profile-builder-2.0/admin/pms-cross-promotion.php:134 #: profile-builder-2.0/admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "Descarcă Acum" #: profile-builder-2.0/admin/admin-functions.php:200 msgid "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. " msgstr "Dacă apreciezi %1$s te rugăm trimite-ne feedback-ul tău pe WordPress.org. Cu cât mai mulți utilizatori fericiți, cu atât mai multe caracteristici, mai puține bug-uri și mai multă activitate pe partea de suport." #: profile-builder-2.0/admin/manage-fields.php:82 msgid "Choose one of the supported field types" msgstr "Alege o singură variantă de câmp, dintre cele suportate" #: profile-builder-2.0/admin/manage-fields.php:84 msgid ". Extra Field Types are available in Hobbyist or PRO versions." msgstr ". Sunt disponibile Câmpuri Adiționale în versiunile Hobbyist sau PRO." #: profile-builder-2.0/admin/manage-fields.php:131 msgid "Site Key" msgstr "Site Key" #: profile-builder-2.0/admin/manage-fields.php:131 msgid "The site key from Google, www.google.com/recaptcha" msgstr "Site key-ul de la Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "Secret Key" msgstr "Secret Key" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "The secret key from Google, www.google.com/recaptcha" msgstr "Secret key-ul de la Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:1023 msgid "You must enter the site key\n" msgstr "Trebuie să introduci site key-ul\n" #: profile-builder-2.0/admin/manage-fields.php:1025 msgid "You must enter the secret key\n" msgstr "Trebuie să introduci secret key-ul\n" #: profile-builder-2.0/admin/add-ons.php:10 #: profile-builder-2.0/admin/add-ons.php:32 msgid "Add-Ons" msgstr "Add-On-uri" #: profile-builder-2.0/admin/add-ons.php:34 #: profile-builder-2.0/admin/add-ons.php:129 #: profile-builder-2.0/admin/add-ons.php:231 #: profile-builder-2.0/admin/pms-cross-promotion.php:78 #: profile-builder-2.0/admin/pms-cross-promotion.php:114 #: profile-builder-2.0/admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "Activează" #: profile-builder-2.0/admin/add-ons.php:36 #: profile-builder-2.0/admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "Se începe descărcarea și instalarea..." #: profile-builder-2.0/admin/add-ons.php:37 #: profile-builder-2.0/admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "Instalare finalizată" #: profile-builder-2.0/admin/add-ons.php:39 msgid "Add-On is Active" msgstr "Add-on-ul este activ" #: profile-builder-2.0/admin/add-ons.php:40 msgid "Add-On has been activated" msgstr "Add-On-ul a fost activat" #: profile-builder-2.0/admin/add-ons.php:41 #: profile-builder-2.0/admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "Instalează din nou" #: profile-builder-2.0/admin/add-ons.php:43 #: profile-builder-2.0/admin/add-ons.php:140 msgid "Add-On is active" msgstr "Add-On-ul este activ" #: profile-builder-2.0/admin/add-ons.php:44 #: profile-builder-2.0/admin/add-ons.php:138 msgid "Add-On is inactive" msgstr "Add-On-ul este inactiv" #: profile-builder-2.0/admin/add-ons.php:46 #: profile-builder-2.0/admin/add-ons.php:133 #: profile-builder-2.0/admin/add-ons.php:235 #: profile-builder-2.0/admin/pms-cross-promotion.php:90 #: profile-builder-2.0/admin/pms-cross-promotion.php:118 #: profile-builder-2.0/admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "Dezactivează" #: profile-builder-2.0/admin/add-ons.php:47 msgid "Add-On has been deactivated." msgstr "Add-On-ul a fost dezactivat." #: profile-builder-2.0/admin/add-ons.php:59 msgid "Something went wrong, we could not connect to the server. Please try again later." msgstr "A apărut o eroare, conectare eșuată la server. Te rugăm să încerci din nou mai târziu." #: profile-builder-2.0/admin/pms-cross-promotion.php:137 #: profile-builder-2.0/admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "Instalează acum" #: profile-builder-2.0/admin/add-ons.php:153 #: profile-builder-2.0/admin/add-ons.php:251 #: profile-builder-2.0/admin/pms-cross-promotion.php:141 #: profile-builder-2.0/admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "Compatibil cu versiunea ta de Profile Builder." #: profile-builder-2.0/admin/add-ons.php:162 msgid "Upgrade Profile Builder" msgstr "Actualizează Profile Builder" #: profile-builder-2.0/admin/add-ons.php:163 msgid "Not compatible with Profile Builder" msgstr "Nu este compatibil cu Profile Builder" #: profile-builder-2.0/admin/add-ons.php:171 msgid "Not compatible with your version of Profile Builder." msgstr "Nu este compatibil cu versiunea ta de Profile Builder." #: profile-builder-2.0/admin/add-ons.php:172 msgid "Minimum required Profile Builder version:" msgstr "Versiunea Profile Builder minim necesară:" #: profile-builder-2.0/admin/add-ons.php:177 msgid "Could not install add-on. Retry or install manually." msgstr "Nu s-a putut instala add-on-ul. Te rugăm să încerci din nou sau să instalezi manual." #: profile-builder-2.0/front-end/default-fields/email/email.php:51 msgid "You must enter a valid email address." msgstr "Trebuie să introduci o adresă de e-mail validă." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "Acest nume utilizator este invalid deoarece folosește caractere nepermise." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "Te rugăm să introduci un nume utilizator valid." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72 #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85 msgid "Only administrators can see this field on edit profile forms." msgstr "Acest câmp în formularele editare profil este permis doar administratorilor." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81 msgid "As an administrator you cannot change your role." msgstr "Ca administrator, nu îți poți schimba rolul." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117 msgid "" "\n" "

            {{username}} has requested a password change via the password reset feature.

            \n" "

            His/her new password is: {{password}}

            \n" msgstr "" "\n" "

            {{username}} a solicitat o parolă nouă prin opțiunea de resetare a parolei.

            \n" "

            Parola nouă este: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141 msgid "Admin Notification for User Password Reset" msgstr "Notificare Administrator pentru modificarea parolei utilizatorului" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46 msgid "Reset Key" msgstr "Reset Key" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47 msgid "Reset Url" msgstr "Reset Url" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48 msgid "Reset Link" msgstr "Reset Link" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204 msgid "" "\n" "

            Someone requested that the password be reset for the following account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            \n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" msgstr "" "\n" "

            A fost înregistrată o cerere de schimbare a parolei pentru următorul cont: {{site_name}}
            \n" "Nume utilizator: {{username}}

            \n" "

            În cazul în care ai primit acest e-mail dintr-o greșeală, te rugăm să îl ignori și nu va avea loc nici o modificare.

            \n" "

            Pentru a reseta parola, te rugăm să accesezi următoarea adresă:
            \n" "{{{reset_link}}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218 msgid "[{{site_name}}] Password Reset" msgstr "[{{site_name}}] Modificare parolă" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229 msgid "Password Reset Email" msgstr "E-mail de resetare a parolei" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235 msgid "" "\n" "

            You have successfully reset your password to: {{password}}

            \n" msgstr "" "\n" "

            Parola a fost modificată cu succes. Noua parolă este: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset Successfully" msgstr "[{{site_name}}] Parolă modificată cu succes" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256 msgid "Password Reset Success Email" msgstr "E-mail de confirmare a parolei modificată cu succes" #: profile-builder-2.0/modules/user-listing/userlisting.php:159 msgid "User Nicename" msgstr "Nicename-ul utilizatorului" #: pb-add-on-woocommerce/woosync-page.php:80 #: pb-add-on-woocommerce/woosync-page.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:499 msgid "None" msgstr "None" #: profile-builder-2.0/admin/admin-functions.php:132 msgid "ERROR: The password must have the minimum length of %s characters" msgstr "EROARE: Parola trebuie să aibă lungimea minimă de %s caractere" #: profile-builder-2.0/admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr "EROARE: Parola trebuie să aibă complexitatea minimă de %s" #: profile-builder-2.0/admin/general-settings.php:179 msgid "Username and Email" msgstr "Nume utilizator și e-mail " #: profile-builder-2.0/admin/general-settings.php:184 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "\"Nume utilizator și e-mail\" - utilizatorii pot să se logheze fie cu numele de utilizator, fie cu e-mail-ul." #: profile-builder-2.0/admin/general-settings.php:185 msgid "\"Username\" - users can Log In only with Username." msgstr "\"Nume utilizator\" - utilizatorii pot să se logheze doar cu numele de utilizator." #: profile-builder-2.0/admin/general-settings.php:186 msgid "\"Email\" - users can Log In only with Email." msgstr "\"E-mail\" - utilizatorii pot să se logheze doar cu adresa de e-mail." #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "Specifică extensia/extensiile pe care vrei să le limitezi la upload
            Exemplu: .ext1,.ext2,.ext3
            Dacă nu se specifică, setările originale sunt: .jpg,.jpeg,.gif,.png (.*)" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)" msgstr "Specifică extensia/extensiile pe care vrei să le limitezi la upload
            Exemplu: .ext1,.ext2,.ext3
            Dacă nu se specifică, setările originale sunt: toate extensiile de fișiere permise de către Wordpress (.*) " #: profile-builder-2.0/admin/manage-fields.php:135 msgid "User Roles" msgstr "Roluri utilizator" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "Selectează care dintre roluri vor fi afișate către utilizator (trage și așează-le pentru a schimba ordinea)" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "User Roles Order" msgstr "Ordine roluri utilizator" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "Save the user role order from the user roles checkboxes" msgstr "Salvează ordinea rolurilor de utilizator din checkbox-urile acestora" #: profile-builder-2.0/admin/manage-fields.php:1128 msgid "Please select at least one user role\n" msgstr "Selectează cel puțin un rol pentru utilizator\n" #: profile-builder-2.0/admin/register-version.php:22 msgid "Profile Builder Register" msgstr "Înregistrare Profile Builder" #: profile-builder-2.0/admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "Numărul serial va expira în curând!" #: profile-builder-2.0/admin/register-version.php:81 msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr "Numărul serial va expira în curând, te rugăm %1$s să reînnoiești licența %2$s." #: profile-builder-2.0/admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr "Numărul serial a expirat, te rugăm %1$s să reînnoiești licența %2$s." #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 msgid "Add Entry" msgstr "Adaugă intrare" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 msgid "show" msgstr "arată" #: profile-builder-2.0/features/functions.php:736 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" msgstr "Pentru a permite utilizatorilor să se înregistreze pe website folosind Profile Builder, mai întâi trebuie activată înregistrarea utilizatorilor. Mergi la %1$s Setări rețea %2$s, și în meniul Setări Înregistrare asigură-te că este bifat “Conturile utilizatorilor pot fi înregistrate”. %3$s Anulează %4$s" #: profile-builder-2.0/front-end/class-formbuilder.php:659 msgid "User to edit:" msgstr "Utilizator pentru editare:" #: profile-builder-2.0/front-end/default-fields/password/password.php:46 #: profile-builder-2.0/front-end/recover.php:262 msgid "The password must have the minimum length of %s characters" msgstr "Parola trebuie să aibă lungimea minimă de %s caractere" #: profile-builder-2.0/front-end/default-fields/password/password.php:50 #: profile-builder-2.0/front-end/recover.php:266 msgid "The password must have a minimum strength of %s" msgstr "Parola trebuie să aibă complexitatea minimă de %s" #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118 msgid "You cannot register this user role" msgstr "Nu poți înregistra acest rol pentru utilizator" #: profile-builder-2.0/front-end/login.php:153 msgid "username or email" msgstr "nume utilizator sau e-mail" #: profile-builder-2.0/front-end/login.php:222 msgid "Username or Email" msgstr "Nume Utilizator sau E-mail" #: profile-builder-2.0/front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "În prezent ești logat ca %s. " #: profile-builder-2.0/front-end/logout.php:15 msgid "Log out »" msgstr "Deconectare »" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "Rol Utilizator" #: profile-builder-2.0/modules/user-listing/userlisting.php:2167 msgid "View all extra shortcode parameters" msgstr "Vezi toți parametrii shortcode extra" #: profile-builder-2.0/modules/user-listing/userlisting.php:2181 msgid "displays only the users that you specified the user_id for" msgstr "afișează doar utilizatorii pentru care ai specificat un id de utilizator" #: profile-builder-2.0/modules/user-listing/userlisting.php:2187 msgid "displays all users except the ones you specified the user_id for" msgstr "afișează toți utilizatorii, exceptând cei pentru care ai specificat un id de utilizator" #: profile-builder-2.0/features/functions.php:566 msgid "Minimum length of %d characters" msgstr "Lungimea minimă de %d caractere" #: profile-builder-2.0/front-end/class-formbuilder.php:146 #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "This message is only visible by administrators" msgstr "Acest mesaj este vizibil doar pentru administratori." #: profile-builder-2.0/modules/user-listing/userlisting.php:413 msgid "User not found" msgstr "Utilizatorul nu a fost găsit." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "Tag-uri valide {{reply_to}} și {{site_name}}" #: profile-builder-2.0/admin/admin-bar.php:48 msgid "Choose which user roles view the admin bar in the front-end of the website." msgstr "Alege ce rol de utilizator vede bara de admin în front-end-ul website-ului." #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes" msgstr "Introdu o listă de valori separate prin virgulă
            Nefiind permisă utilizatorului, poate conține orice, exceptând caractere speciale sau apostrofuri" #: profile-builder-2.0/admin/manage-fields.php:1055 msgid "The meta-name cannot be empty\n" msgstr "Numele-meta nu poate fi gol\n" #: profile-builder-2.0/admin/register-version.php:69 msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received" msgstr "Acum, că ai primit o copie de %s, te rugăm să înregistrezi plugin-ul cu numărul serial pe care l-ai primit" #: profile-builder-2.0/admin/register-version.php:243 msgid "

            Your Profile Builder serial number is invalid or missing.
            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

            " msgstr "

            Numărul serial al Profile Builder este invalid sau lipsește.
            Te rugăm %1$sînregistrează copia ta%2$s pentru a primi acces la actualizările automate și la suport. Ai nevoie de o licență? %3$sCumpără una acum%4$s

            " #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17 #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60 msgid "...Choose" msgstr "...Alege" #: profile-builder-2.0/features/class-list-table.php:526 #: profile-builder-2.0/features/class-list-table.php:942 msgid "1 item" msgstr "1 articol" #: profile-builder-2.0/features/functions.php:552 msgid "Very Weak" msgstr "Foarte slab" #: profile-builder-2.0/features/functions.php:640 msgid "This field is required" msgstr "Acest câmp este obligatoriu" #: profile-builder-2.0/features/functions.php:704 msgid "Cancel" msgstr "Anulează" #: profile-builder-2.0/features/functions.php:740 msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s" msgstr "Pentru a permite utilizatorilor să se înregistreze pe website-ul tău prin intermediul Profile Builder, mai întâi trebuie sa activezi înregistrarea utilizatorilor. Mergi la tab-ul %1$sSetări -> Generale%2$s, și sub Membership bifează căsuța “Oricine se poate înregistra”. %3$sÎnlătură%4$s" #: profile-builder-2.0/front-end/login.php:144 msgid "Invalid username." msgstr " Nume utilizator invalid." #: profile-builder-2.0/front-end/login.php:149 #: profile-builder-2.0/front-end/login.php:153 msgid "username" msgstr "Nume utilizator" #: profile-builder-2.0/front-end/login.php:149 msgid "email" msgstr "E-mail" #: profile-builder-2.0/front-end/login.php:256 msgid "Lost your password?" msgstr "Ţi-ai pierdut parola?" #: profile-builder-2.0/index.php:34 msgid " is also activated. You need to deactivate it before activating this version of the plugin." msgstr "este activată. Este nevoie să o dezactivezi înainte de a activa această versiune a plugin-ului. " #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54 msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email" msgstr "Trebuie să introduci o adresă de e–mail validă sau tag-ul {{reply_to}} care folosește adresa de e-mailul predefinită a administratorului" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508 msgid "Your selected password at signup" msgstr "Parola selectată la înregistrare " #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save." msgstr "Aceste setări sunt replicate, de asemenea, în pagina de setări \"Personalizare e-mail administrator\" după salvare." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "Acest formular este gol." #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "Șterge toate articolele" #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all" msgstr "Șterge tot" #: profile-builder-2.0/modules/user-listing/userlisting.php:1621 msgid "Choose..." msgstr "Alege..." #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Set the number of users to be displayed on every paginated part of the all-userlisting" msgstr "Setează numărul utilizatorilor care vor fi afișați pe fiecare pagină numerotată a listei de utilizatori" #: profile-builder-2.0/admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "Arată/Ascunde Bara Administrator în Front-end " #: profile-builder-2.0/admin/admin-bar.php:10 #: profile-builder-2.0/admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "Setări Bară Administrator" #: profile-builder-2.0/admin/admin-bar.php:57 msgid "User-Role" msgstr "Rolul Utilizatorului" #: profile-builder-2.0/admin/admin-bar.php:58 msgid "Visibility" msgstr "Vizibilitate" #: profile-builder-2.0/admin/admin-bar.php:73 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "Setări predefinite" #: profile-builder-2.0/admin/admin-bar.php:74 msgid "Show" msgstr "Arată" #: profile-builder-2.0/admin/admin-bar.php:75 #: profile-builder-2.0/modules/user-listing/userlisting.php:1554 msgid "Hide" msgstr "Ascunde" #: pb-add-on-woocommerce/woosync-page.php:147 #: profile-builder-2.0/admin/admin-bar.php:86 #: profile-builder-2.0/admin/general-settings.php:224 #: profile-builder-2.0/admin/register-version.php:95 #: profile-builder-2.0/features/functions.php:697 #: profile-builder-2.0/modules/modules.php:127 msgid "Save Changes" msgstr "Salvează Modificările" #: profile-builder-2.0/admin/admin-functions.php:37 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 )" msgstr "Logarea se realizează folosind adresa de e-mail. Acest câmp NU va apărea în Front-end! ( aceste setări se pot schimba din tab-ul \"%s\" ) " #: profile-builder-2.0/admin/admin-functions.php:37 #: profile-builder-2.0/admin/general-settings.php:10 #: profile-builder-2.0/admin/general-settings.php:35 msgid "General Settings" msgstr "Setări Generale" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:210 msgid "Very weak" msgstr "Foarte Slab" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:211 #: profile-builder-2.0/features/functions.php:552 msgid "Weak" msgstr "Slab" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:212 #: profile-builder-2.0/features/functions.php:552 msgid "Medium" msgstr "Mediu" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:213 #: profile-builder-2.0/features/functions.php:552 msgid "Strong" msgstr "Puternic" #: profile-builder-2.0/admin/admin-functions.php:187 msgid "Add Field" msgstr "Adaugă Câmp" #: profile-builder-2.0/admin/admin-functions.php:189 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390 msgid "Save Settings" msgstr "Salvează Setările" #: profile-builder-2.0/admin/basic-info.php:10 msgid "Basic Information" msgstr "Informații de bază" #: profile-builder-2.0/admin/basic-info.php:29 msgid "Version %s" msgstr "Versiune %s" #: profile-builder-2.0/admin/basic-info.php:30 msgid "Profile Builder " msgstr "Profile Builder " #: profile-builder-2.0/admin/basic-info.php:31 msgid "The best way to add front-end registration, edit profile and login forms." msgstr "Cel mai bun mod de a adăuga formulare de înregistrare, login și editare profil din front-end." #: profile-builder-2.0/admin/basic-info.php:33 msgid "For Modern User Interaction" msgstr "Pentru interacțiunea modernă cu utilizatorul" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25 #: profile-builder-2.0/admin/basic-info.php:36 #: profile-builder-2.0/features/login-widget/login-widget.php:59 msgid "Login" msgstr "Logare" #: profile-builder-2.0/admin/basic-info.php:40 msgid "Registration" msgstr "Înregistrare" #: profile-builder-2.0/admin/basic-info.php:44 msgid "Edit Profile" msgstr "Editare Profil" #: profile-builder-2.0/admin/basic-info.php:51 msgid "Extra Features" msgstr "Opțiuni extra" #: profile-builder-2.0/admin/basic-info.php:52 msgid "Features that give you more control over your users, increased security and help you fight user registration spam." msgstr "Opțiuni care oferă mai mult control asupra utilizatorilor, cresc securitatea și ajută împotriva spam-ului la înregistrare." #: profile-builder-2.0/admin/basic-info.php:53 msgid "Enable extra features" msgstr "Activează opțiuni extra" #: profile-builder-2.0/admin/basic-info.php:57 msgid "Recover Password" msgstr "Recuperează Parola" #: profile-builder-2.0/admin/basic-info.php:61 msgid "Admin Approval (*)" msgstr "Aprobare Administrator (*)" #: profile-builder-2.0/admin/basic-info.php:62 msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI." msgstr "Tu decizi cine este utilizatorul website-ului tău. Primești notificări prin e-mail sau aprobi mai mulţi utilizatori simultan din interfața WordPress." #: profile-builder-2.0/admin/basic-info.php:65 msgid "Email Confirmation" msgstr "Confirmare E-mail" #: profile-builder-2.0/admin/basic-info.php:66 msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address." msgstr "Asigură-te că utilizatorii se înregistrează cu adrese de e-mail autentice. La înregistrare utilizatorii vor primi o notificare de confirmare a adresei de e-mail." #: profile-builder-2.0/admin/basic-info.php:69 msgid "Minimum Password Length and Strength Meter" msgstr "Indicator al lungimii și complexității parolei" #: profile-builder-2.0/admin/basic-info.php:70 msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength." msgstr "Elimină cu totul parolele vulnerabile, prin stabilirea unei lungimi minime și aplicarea unei anumite complexități a parolei." #: profile-builder-2.0/admin/basic-info.php:73 msgid "Login with Email or Username" msgstr "Logare cu E-mail sau Nume Utilizator" #: profile-builder-2.0/admin/basic-info.php:74 msgid "Allow users to log in with their email or username when accessing your site." msgstr "Permite utilizatorilor să se logheze cu E-mail-ul sau Numele Utilizatorului atunci când accesează site-ul tău." #: profile-builder-2.0/admin/basic-info.php:87 msgid "Customize Your Forms The Way You Want (*)" msgstr "Personalizează formularele așa cum dorești (*)" #: profile-builder-2.0/admin/basic-info.php:88 msgid "With Extra Profile Fields you can create the exact registration form your project needs." msgstr "Folosind câmpurile extra din profil poți să creezi exact formularul de înregistrare de care are nevoie proiectul tău. " #: profile-builder-2.0/admin/basic-info.php:90 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "Câmpurile extra din profil sunt disponibile în versiunile Hobbyist sau PRO" #: profile-builder-2.0/admin/basic-info.php:92 msgid "Get started with extra fields" msgstr "Începe cu câmpuri suplimentare " #: profile-builder-2.0/admin/basic-info.php:95 msgid "Avatar Upload" msgstr "Încarcă Avatar" #: profile-builder-2.0/admin/basic-info.php:96 msgid "Generic Uploads" msgstr "Încărcări generale" #: profile-builder-2.0/admin/basic-info.php:97 msgid "Agree To Terms Checkbox" msgstr "Sunt de acord cu termenii și condițiile Checkbox" #: profile-builder-2.0/admin/basic-info.php:98 msgid "Datepicker" msgstr "Câmp Dată" #: profile-builder-2.0/admin/basic-info.php:101 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: profile-builder-2.0/admin/basic-info.php:102 msgid "Country Select" msgstr "Selectează țara" #: profile-builder-2.0/admin/basic-info.php:104 msgid "Timezone Select" msgstr "Selectează fusul orar" #: profile-builder-2.0/admin/basic-info.php:108 msgid "Input / Hidden Input" msgstr "Adăugare / Ascunde adăugare" #: profile-builder-2.0/admin/basic-info.php:110 msgid "Checkbox" msgstr "Checkbox" #: profile-builder-2.0/admin/basic-info.php:111 msgid "Select" msgstr "Selectează" #: profile-builder-2.0/admin/basic-info.php:112 msgid "Radio Buttons" msgstr "Butoane radio" #: profile-builder-2.0/admin/basic-info.php:113 msgid "Textarea" msgstr "Textarea" #: profile-builder-2.0/admin/basic-info.php:125 msgid "Powerful Modules (**)" msgstr "Module puternice (**)" #: profile-builder-2.0/admin/basic-info.php:126 msgid "Everything you will need to manage your users is probably already available using the Pro Modules." msgstr "Tot ce ai nevoie pentru a gestiona utilizatorii este cel mai probabil disponibil folosind Modulele Pro." #: profile-builder-2.0/admin/basic-info.php:128 msgid "Enable your modules" msgstr "Activează modulele" #: profile-builder-2.0/admin/basic-info.php:131 msgid "Find out more about PRO Modules" msgstr "Află mai multe despre Modulele PRO" #: profile-builder-2.0/admin/basic-info.php:136 #: profile-builder-2.0/modules/modules.php:89 #: profile-builder-2.0/modules/user-listing/userlisting.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:12 #: profile-builder-2.0/modules/user-listing/userlisting.php:17 #: profile-builder-2.0/modules/user-listing/userlisting.php:23 msgid "User Listing" msgstr "Listă utilizatori " #: profile-builder-2.0/admin/basic-info.php:138 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." msgstr "Formulare ușor de editat atât pentru afișarea utilizatorilor site-ului tău, cât și pentru a crea pagini individuale pentru utilizatori. Bazat pe shortcode, oferă opțiuni multiple pentru personalizarea modului de afișare." #: profile-builder-2.0/admin/basic-info.php:144 msgid "Email Customizer" msgstr "Personalizare e-mail" #: profile-builder-2.0/admin/basic-info.php:145 msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval." msgstr "Personalizează toate e-mail-urile trimise către utilizatori și administratori. La înregistrare, confirmare e-mail, aprobare / refuz aprobare." #: profile-builder-2.0/admin/basic-info.php:148 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33 #: profile-builder-2.0/modules/modules.php:110 msgid "Custom Redirects" msgstr "Redirecționări personalizate " #: profile-builder-2.0/admin/basic-info.php:149 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." msgstr "Păstrați utilizatorii în afara dashboard-ului WordPress, redirecționându-i după logare sau înregistrare către prima pagină, iar în felul acesta totul este la câteva click-uri distanță. " #: profile-builder-2.0/admin/basic-info.php:154 #: profile-builder-2.0/modules/modules.php:75 msgid "Multiple Registration Forms" msgstr "Formulare multiple de înregistrare " #: profile-builder-2.0/admin/basic-info.php:155 msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users." msgstr "Configurează formulare de înregistrare multiple, cu câmpuri diferite pentru anumite tipuri de roluri. Surprinde informații diferite pentru tipuri diferite de utilizatori." #: profile-builder-2.0/admin/basic-info.php:158 #: profile-builder-2.0/modules/modules.php:82 msgid "Multiple Edit-profile Forms" msgstr "Formulare editare profil multiple" #: profile-builder-2.0/admin/basic-info.php:159 msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles." msgstr "Permite rolurilor diferite de utilizatori să editeze informațiile lor specifice. Configurează formularele de editare profil multiple cu câmpuri diferite pentru anumite roluri de utilizator." #: profile-builder-2.0/admin/basic-info.php:187 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr "* disponibil doar pentru versiunile %1$sHobbyist și Pro %2$s" #: profile-builder-2.0/admin/basic-info.php:188 msgid "** only available in the %1$sPro version%2$s." msgstr "** disponibil doar în versiunea %1$sPro %2$s." #: profile-builder-2.0/admin/general-settings.php:39 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "Încarcă fișierul CSS al Profile Builder în Front-end:" #: profile-builder-2.0/admin/general-settings.php:42 #: profile-builder-2.0/admin/general-settings.php:55 #: profile-builder-2.0/admin/general-settings.php:104 #: profile-builder-2.0/admin/general-settings.php:151 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Yes" msgstr "Da" #: profile-builder-2.0/admin/general-settings.php:44 msgid "You can find the default file here: %1$s" msgstr "Poți găsi fișierul inițial aici: %1$s" #: profile-builder-2.0/admin/general-settings.php:51 msgid "\"Email Confirmation\" Activated:" msgstr "\"Confirmare E-mail\" Activată" #: profile-builder-2.0/admin/general-settings.php:56 #: profile-builder-2.0/admin/general-settings.php:105 #: profile-builder-2.0/admin/general-settings.php:150 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "No" msgstr "Nu" #: profile-builder-2.0/admin/general-settings.php:61 msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s." msgstr "Poți găsi o listă cu adresele de e-mail neconfirmate %1$sUsers > All Users > Email Confirmation%2$s." #: profile-builder-2.0/admin/general-settings.php:69 msgid "\"Email Confirmation\" Landing Page:" msgstr "Pagina de destinație \"Confirmare E-mail\": " #: profile-builder-2.0/admin/general-settings.php:74 msgid "Existing Pages" msgstr "Pagini existente" #: profile-builder-2.0/admin/general-settings.php:89 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." msgstr "Specifică pagina către care utilizatorii vor fi direcționați atunci când confirmă adresa de e-mail. Aceasta pagină poate să difere de pagina/paginile de înregistrare și poate fi schimbată oricând. În lipsa unei selecții, o pagină simplă de confirmare va fi afișată pentru utilizator. " #: profile-builder-2.0/admin/general-settings.php:100 msgid "\"Admin Approval\" Activated:" msgstr "\"Aprobare Administrator\" Activată" #: profile-builder-2.0/admin/general-settings.php:108 msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "Poți găsi o lista a utilizatorilor la %1$sUsers > All Users > Admin Approval%2$s." #: profile-builder-2.0/admin/general-settings.php:165 msgid "\"Admin Approval\" Feature:" msgstr "Opțiune \"Aprobare Administrator\":" #: profile-builder-2.0/admin/general-settings.php:168 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." msgstr "Tu decizi cine este utilizatorul website-ului tău. Primești notificări prin e-mail sau aprobi mai mulţi utilizatori simultan din interfața WordPress. Activează opțiunea \"Aprobare Administrator\" prin a trece la versiunile %1$sHobbyist sau PRO %2$s." #: profile-builder-2.0/admin/general-settings.php:175 msgid "Allow Users to Log in With:" msgstr "Permite utilizatorilor sa se logheze cu:" #: profile-builder-2.0/admin/general-settings.php:180 #: profile-builder-2.0/admin/manage-fields.php:201 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167 #: profile-builder-2.0/front-end/login.php:85 #: profile-builder-2.0/front-end/login.php:99 #: profile-builder-2.0/front-end/login.php:218 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28 #: profile-builder-2.0/modules/user-listing/userlisting.php:102 #: profile-builder-2.0/modules/user-listing/userlisting.php:277 #: profile-builder-2.0/modules/user-listing/userlisting.php:730 #: profile-builder-2.0/modules/user-listing/userlisting.php:2219 msgid "Username" msgstr "Nume Utilizator" #: profile-builder-2.0/admin/general-settings.php:181 #: profile-builder-2.0/front-end/login.php:215 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29 #: profile-builder-2.0/modules/user-listing/userlisting.php:736 #: profile-builder-2.0/modules/user-listing/userlisting.php:2220 msgid "Email" msgstr "E-mail" #: profile-builder-2.0/admin/general-settings.php:193 msgid "Minimum Password Length:" msgstr "Lungime minimă a parolei" #: profile-builder-2.0/admin/general-settings.php:198 msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit" msgstr "Introdu numărul minim de caractere pe care parola trebuie să îl conțină. A se lasă liber dacă nu există o limită minimă" #: profile-builder-2.0/admin/general-settings.php:205 msgid "Minimum Password Strength:" msgstr "Complexitate minimă a parolei:" #: profile-builder-2.0/admin/general-settings.php:209 msgid "Disabled" msgstr "Dezactivat" #: profile-builder-2.0/admin/manage-fields.php:12 msgid "Manage Fields" msgstr "Gestionează câmpurile" #: profile-builder-2.0/admin/manage-fields.php:13 msgid "Manage Default and Extra Fields" msgstr "Gestionează câmpurile predefinite și extra" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Field Title" msgstr "Titlu câmp" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Title of the field" msgstr "Titlul câmpului " #: profile-builder-2.0/admin/manage-fields.php:119 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "Câmp " #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Meta-name" msgstr "Meta-name" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "ID" msgstr "ID" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be edited" msgstr "Un ID unic, auto-generat pentru exact acest câmp
            Poți folosi acest lucru coroborat cu filtrele, pentru a viza acest element dacă e nevoie
            Nu poate fi editat" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Description" msgstr "Descriere" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Enter a (detailed) description of the option for end users to read
            Optional" msgstr "Introdu o descriere (detaliată) a opțiunii pentru a fi citită de către utilizatorii finali
            Opțional " #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Row Count" msgstr "Numărătoare rânduri" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5" msgstr "Specifică numărul de rânduri pentru câmpul 'Textarea'
            Dacă nu se specifică, numărul predefinit este 5" #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Allowed Image Extensions" msgstr "Extensii imagini permise " #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Allowed Upload Extensions" msgstr "Încărcare extensii permise" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Avatar Size" msgstr "Dimensiune Avatar" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100" msgstr "Introdu o valoare (intre 20 și 200) pentru a stabili dimensiunea 'Avatar'
            Dacă nu se specifică, numărul predefinit este 100" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Date-format" msgstr "Format dată" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Terms of Agreement" msgstr "Termenii acordului" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Enter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>" msgstr "Introdu o descriere detaliată a termenilor acordului pentru a fi citită de utilizator.
            Link-urile pot fi introduse prin folosirea sintaxei HTML standard: <a href=\"custom_url\">custom_text</a>" #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Options" msgstr "Opțiuni" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Labels" msgstr "Etichete" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "Introdu o listă de etichete separate prin virgulă
            Vizibilă pentru utilizator" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default Value" msgstr "Valoare predefinită" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default value of the field" msgstr "Valoarea predefinită a câmpului " #: profile-builder-2.0/admin/manage-fields.php:138 #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default Option" msgstr "Opțiune predefinită" #: profile-builder-2.0/admin/manage-fields.php:138 msgid "Specify the option which should be selected by default" msgstr "Specifică opțiunea care ar trebui să fie selectată în setările predefinite" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Default Option(s)" msgstr "Opțiune/opțiuni predefinite" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)" msgstr "Specifică opțiunea care ar trebui să fie bifată în setările predefinite
            Dacă sunt valori multiple, separă-le cu \",\" (virgula)" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default Content" msgstr "Conținut predefinit" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default value of the textarea" msgstr "Valoarea predefinită pentru textarea" #: pb-add-on-woocommerce/index.php:306 #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Required" msgstr "Necesar" #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Whether the field is required or not" msgstr "Dacă un câmp este necesar sau nu" #: profile-builder-2.0/admin/manage-fields.php:161 msgid "Overwrite Existing" msgstr "Suprascrie ceea ce există" #: profile-builder-2.0/admin/manage-fields.php:161 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
            Use this at your own risk" msgstr "Selectând \"Da\" se va adăuga câmpul la listă, dar va suprascrie orice alt câmp din baza de date care are același meta-name
            Folosești acest lucru pe propria răspundere " #: profile-builder-2.0/admin/manage-fields.php:167 msgid "Field Properties" msgstr "Proprietățile câmpului " #: profile-builder-2.0/admin/manage-fields.php:181 msgid "Registration & Edit Profile" msgstr "Înregistrare & editare profil" #: profile-builder-2.0/admin/manage-fields.php:200 msgid "Name" msgstr "Nume" #: profile-builder-2.0/admin/manage-fields.php:201 msgid "Usernames cannot be changed." msgstr "Numele de utilizator nu poate fi schimbat" #: pb-add-on-woocommerce/billing-fields.php:6 #: pb-add-on-woocommerce/shipping-fields.php:6 #: profile-builder-2.0/admin/manage-fields.php:202 msgid "First Name" msgstr "Prenume" #: pb-add-on-woocommerce/billing-fields.php:7 #: pb-add-on-woocommerce/shipping-fields.php:7 #: profile-builder-2.0/admin/manage-fields.php:203 msgid "Last Name" msgstr "Nume" #: profile-builder-2.0/admin/manage-fields.php:204 #: profile-builder-2.0/modules/user-listing/userlisting.php:769 #: profile-builder-2.0/modules/user-listing/userlisting.php:2227 msgid "Nickname" msgstr "Poreclă" #: profile-builder-2.0/admin/manage-fields.php:205 msgid "Display name publicly as" msgstr "Nume public afișat ca:" #: profile-builder-2.0/admin/manage-fields.php:206 msgid "Contact Info" msgstr "Date de contact" #: profile-builder-2.0/admin/manage-fields.php:207 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168 #: profile-builder-2.0/front-end/recover.php:118 #: profile-builder-2.0/modules/user-listing/userlisting.php:108 msgid "E-mail" msgstr "E-mail" #: profile-builder-2.0/admin/manage-fields.php:208 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32 #: profile-builder-2.0/modules/user-listing/userlisting.php:111 #: profile-builder-2.0/modules/user-listing/userlisting.php:751 #: profile-builder-2.0/modules/user-listing/userlisting.php:2221 msgid "Website" msgstr "Website" #: profile-builder-2.0/admin/manage-fields.php:212 msgid "AIM" msgstr "AIM" #: profile-builder-2.0/admin/manage-fields.php:213 msgid "Yahoo IM" msgstr "Yahoo IM" #: profile-builder-2.0/admin/manage-fields.php:214 msgid "Jabber / Google Talk" msgstr "Jabber / Google Talk" #: profile-builder-2.0/admin/manage-fields.php:217 msgid "About Yourself" msgstr "Despre tine" #: profile-builder-2.0/admin/manage-fields.php:218 #: profile-builder-2.0/modules/user-listing/userlisting.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:754 #: profile-builder-2.0/modules/user-listing/userlisting.php:2222 msgid "Biographical Info" msgstr "Informații biografice" #: profile-builder-2.0/admin/manage-fields.php:218 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "Împărtășește câteva informații biografice care să completeze profilul tău. Acestea pot fi afișate public." #: profile-builder-2.0/admin/manage-fields.php:219 #: profile-builder-2.0/front-end/recover.php:73 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "Parola " #: profile-builder-2.0/admin/manage-fields.php:219 msgid "Type your password." msgstr "Tastează parola" #: profile-builder-2.0/admin/manage-fields.php:220 #: profile-builder-2.0/front-end/recover.php:74 msgid "Repeat Password" msgstr "Repetă parola" #: profile-builder-2.0/admin/manage-fields.php:220 msgid "Type your password again. " msgstr "Tastează parola din nou" #: profile-builder-2.0/admin/manage-fields.php:980 #: profile-builder-2.0/admin/manage-fields.php:1137 msgid "You must select a field\n" msgstr "Trebuie sa selectezi un câmp \n" #: profile-builder-2.0/admin/manage-fields.php:990 msgid "Please choose a different field type as this one already exists in your form (must be unique)\n" msgstr "Selectează un tip diferit de câmp fiindcă cel selectat există deja în formular (trebuie sa fie unic)\n" #: profile-builder-2.0/admin/manage-fields.php:1001 msgid "The entered avatar size is not between 20 and 200\n" msgstr "" "Mărimea introdusă a avatarului nu este între 20 şi 200\n" "\n" "\n" #: profile-builder-2.0/admin/manage-fields.php:1004 msgid "The entered avatar size is not numerical\n" msgstr "Mărimea introdusă a avatarului nu este în formă numerică\n" #: profile-builder-2.0/admin/manage-fields.php:1012 msgid "The entered row number is not numerical\n" msgstr "Numărul rândului introdus nu este în formă numerică\n" #: profile-builder-2.0/admin/manage-fields.php:1015 msgid "You must enter a value for the row number\n" msgstr "Trebuie să introduci o valoare pentru numărul rândului\n" #: profile-builder-2.0/admin/manage-fields.php:1036 msgid "The entered value for the Datepicker is not a valid date-format\n" msgstr "Valoarea introdusă pentru Datepicker nu este în format dată valid\n" #: profile-builder-2.0/admin/manage-fields.php:1039 msgid "You must enter a value for the date-format\n" msgstr "Trebuie să introduci o valoare pentru formatul dată\n" #: profile-builder-2.0/admin/manage-fields.php:1067 #: profile-builder-2.0/admin/manage-fields.php:1075 #: profile-builder-2.0/admin/manage-fields.php:1086 msgid "That meta-name is already in use\n" msgstr "Acest meta-name este deja în uz\n" #: profile-builder-2.0/admin/manage-fields.php:1117 msgid "The following option(s) did not coincide with the ones in the options list: %s\n" msgstr "Următoarele opțiuni nu coincid cu cele din lista de opțiuni: %s\n" #: profile-builder-2.0/admin/manage-fields.php:1121 msgid "The following option did not coincide with the ones in the options list: %s\n" msgstr "Următoarea opțiune nu coincide cu cele din lista de opțiuni: %s\n" #: profile-builder-2.0/admin/manage-fields.php:1144 msgid "That field is already added in this form\n" msgstr "Câmpul este deja adăugat în acest formular\n" #: profile-builder-2.0/admin/manage-fields.php:1193 msgid "
            Title
            Type
            Meta Name
            Required
            " msgstr "
            Titlu
            Tip
            Meta Name
            Necesar
            " #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108 #: profile-builder-2.0/features/functions.php:718 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Edit" msgstr "Editează" #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217 #: profile-builder-2.0/features/functions.php:711 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "Delete" msgstr "Șterge " #: profile-builder-2.0/admin/manage-fields.php:1208 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "Folosește aceste shortcode-uri pe paginile în care vrei ca formularele să fie afișate:" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Your Version" msgstr "Înregistrează versiunea proprie" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Version" msgstr "Înregistrează versiunea " #: profile-builder-2.0/admin/register-version.php:70 msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support." msgstr "Dacă înregistrezi această versiune a Profile Builder, vei primi informații legate de upgrade-uri, patch-uri și suport tehnic." #: profile-builder-2.0/admin/register-version.php:72 msgid " Serial Number:" msgstr "Număr serial:" #: profile-builder-2.0/admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "Numărul serial a fost validat cu succes!" #: profile-builder-2.0/admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "Numărul serial nu a putut fi validat!" #: profile-builder-2.0/admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "Numărul serial nu a putut fi validat pentru că a expirat!" #: profile-builder-2.0/admin/register-version.php:85 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!" msgstr "Numărul serial nu a putut fi validat pentru că timpul pentru procesul de validare a expirat. Acest lucru e posibil să se fi întâmplat din cauză că serverul nu funcționează momentan. Te rugăm încearcă din nou mai târziu! " #: profile-builder-2.0/admin/register-version.php:87 msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "(ex. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/features/functions.php:725 msgid "Content" msgstr "Conținut " #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 msgid "Edit this item" msgstr "Editează acest element" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 msgid "Delete this item" msgstr "Șterge acest element" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705 msgid "Please enter a value for the required field " msgstr "Te rugăm să introduci o valoare pentru câmpul necesar" #: pb-add-on-woocommerce/woo-checkout-field-support.php:262 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122 msgid "Select File" msgstr "Selectează fișierul " #: pb-add-on-woocommerce/woo-checkout-field-support.php:252 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112 msgid "Remove" msgstr "Șterge " #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8 msgid "You can add the information for the %s after you add a entry" msgstr "Poți să adaugi informația pentru %s după ce adaugi o intrare " #: pb-add-on-woocommerce/woo-checkout-field-support.php:268 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128 msgid "Upload " msgstr "Încarcă " #: profile-builder-2.0/features/class-list-table.php:184 msgid "No items found." msgstr "Nu a fost găsit niciun element." #: profile-builder-2.0/features/class-list-table.php:308 msgid "Bulk Actions" msgstr "Acțiuni în masă" #: profile-builder-2.0/features/class-list-table.php:318 msgid "Apply" msgstr "Aplică" #: profile-builder-2.0/features/class-list-table.php:402 msgid "Show all dates" msgstr "Arată toate datele " #: profile-builder-2.0/features/class-list-table.php:415 msgid "%1$s %2$d" msgstr "%1$s %2$d" #: profile-builder-2.0/features/class-list-table.php:431 msgid "List View" msgstr "Vizualizare sub forma de listă " #: profile-builder-2.0/features/class-list-table.php:432 msgid "Excerpt View" msgstr "Vizualizare fragment" #: profile-builder-2.0/features/class-list-table.php:458 msgid "%s pending" msgstr "%s în așteptare" #: profile-builder-2.0/features/class-list-table.php:566 msgid "%1$s of %2$s" msgstr "%1$s din %2$s" #: profile-builder-2.0/features/class-list-table.php:713 msgid "Select All" msgstr "Selectează tot" #: profile-builder-2.0/features/functions.php:526 msgid "Strength indicator" msgstr "Indicator complexitate" #: profile-builder-2.0/features/admin-approval/admin-approval.php:14 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453 msgid "Admin Approval" msgstr "Aprobare administrator " #: profile-builder-2.0/features/admin-approval/admin-approval.php:28 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "Vrei să" #: profile-builder-2.0/features/admin-approval/admin-approval.php:51 msgid "Your session has expired! Please refresh the page and try again" msgstr "Sesiunea a expirat! Te rugăm să actualizezi pagina și să încerci din nou" #: profile-builder-2.0/features/admin-approval/admin-approval.php:64 msgid "User successfully approved!" msgstr "Utilizator aprobat cu succes!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:74 msgid "User successfully unapproved!" msgstr "Neaprobarea utilizatorului a avut succes!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:80 msgid "User successfully deleted!" msgstr "Ștergerea utilizatorului a avut succes!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:85 #: profile-builder-2.0/features/admin-approval/admin-approval.php:131 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "Fie nu ai permisiunea pentru această acțiune, fie a avut loc o eroare!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:96 msgid "Your session has expired! Please refresh the page and try again." msgstr "Sesiunea a expirat! Actualizează pagina și încearcă din nou." #: profile-builder-2.0/features/admin-approval/admin-approval.php:109 msgid "Users successfully approved!" msgstr "Utilizatori aprobați cu succes!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:119 msgid "Users successfully unapproved!" msgstr "Neaprobarea utilizatorilor a avut succes!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:127 msgid "Users successfully deleted!" msgstr "Ștergerea utilizatorilor a avut succes!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:147 msgid "Your account on %1$s has been approved!" msgstr "Contul tău pe %1$s a fost aprobat!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:148 #: profile-builder-2.0/features/admin-approval/admin-approval.php:151 msgid "approved" msgstr "aprobat" #: profile-builder-2.0/features/admin-approval/admin-approval.php:150 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "Un administrator tocmai a aprobat contul tău pe %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:155 msgid "Your account on %1$s has been unapproved!" msgstr "Contul tău pe %1$s nu a fost aprobat!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:156 #: profile-builder-2.0/features/admin-approval/admin-approval.php:159 msgid "unapproved" msgstr "neaprobat" #: profile-builder-2.0/features/admin-approval/admin-approval.php:158 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "Un administrator tocmai a respins cererea de aprobare pentru contul tău pe %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:177 msgid "ERROR: Your account has to be confirmed by an administrator before you can log in." msgstr "EROARE: Contul tău trebuie confirmat de către un administrator înainte de logare. " #: profile-builder-2.0/features/admin-approval/admin-approval.php:189 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature." msgstr "Contul tău trebuie să fie confirmat de către un administrator înainte să poți folosi opțiunea \"Recuperare parolă\"" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "ștergi acest utilizator?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "anulezi aprobarea pentru acest utilizator?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr "anulează aprobarea " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "aprobi acest utilizator?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "Aprobă" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167 #: profile-builder-2.0/modules/user-listing/userlisting.php:278 #: profile-builder-2.0/modules/user-listing/userlisting.php:742 #: profile-builder-2.0/modules/user-listing/userlisting.php:2224 msgid "Firstname" msgstr "Prenume" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168 #: profile-builder-2.0/modules/user-listing/userlisting.php:745 #: profile-builder-2.0/modules/user-listing/userlisting.php:2225 msgid "Lastname" msgstr "Nume" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170 #: profile-builder-2.0/modules/user-listing/userlisting.php:149 #: profile-builder-2.0/modules/user-listing/userlisting.php:279 #: profile-builder-2.0/modules/user-listing/userlisting.php:772 #: profile-builder-2.0/modules/user-listing/userlisting.php:2229 msgid "Role" msgstr "Rol" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169 msgid "Registered" msgstr "Înregistrat " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "Status utilizator " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "Vrei să aprobi în masă utilizatorii selectați?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "Vrei să anulezi în masă aprobările pentru utilizatorii selectați?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "Vrei să ștergi în masă utilizatorii selectați?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278 msgid "Sorry, but you don't have permission to do that!" msgstr "Îmi pare rău, dar nu ai permisiunea de a face acest lucru!" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339 msgid "Approved" msgstr "Aprobat" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341 msgid "Unapproved" msgstr "Neaprobat " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454 msgid "All Users" msgstr "Toți utilizatorii" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 msgid "delete this user from the _signups table?" msgstr "ștergi acest utilizator din tabelul _signups?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 msgid "confirm this email yourself?" msgstr "propria confirmare a adresei de e-mail? " #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218 msgid "Confirm Email" msgstr "Confirmă e-mail" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 msgid "resend the activation link?" msgstr "retrimite link-ul de activare " #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219 msgid "Resend Activation Email" msgstr "Retrimite e-mail-ul de activare" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249 msgid "%s couldn't be deleted" msgstr "%s nu a putut fi șters " #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253 msgid "All users have been successfully deleted" msgstr "Toți utilizatorii au fost șterși cu succes " #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263 msgid "The selected users have been activated" msgstr "Utilizatorii selectați au fost activați " #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274 msgid "The selected users have had their activation emails resent" msgstr "E-mail-urile de activare au fost retrimise către utilizatorii selectați " #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "Utilizatori cu adrese de e-mail neconfirmate" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "A apărut o eroare în timp ce se desfășura această acțiune!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "Utilizatorul selectat nu a putut fi șters" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "Notificare e-mail retrimisă către utilizator" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398 msgid "[%1$s] Activate %2$s" msgstr "[%1$s] Activează %2$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442 #: profile-builder-2.0/front-end/register.php:71 msgid "Could not create user!" msgstr "Utilizatorul nu a putut fi creat! " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445 msgid "That username is already activated!" msgstr "Acest nume de utilizator este deja activat!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468 msgid "There was an error while trying to activate the user" msgstr "A apărut o eroare în timpul acțiunii de activare a utilizatorului" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73 msgid "A new subscriber has (been) registered!" msgstr "Un nou abonat este (a fost) înregistrat!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "Un nou abonat pe %1$s.

            Nume utilizator:%2$s
            E-mail:%3$s
            " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634 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!" msgstr "Opțiunea \"Aprobare administrator\" a fost activată în momentul înregistrării, astfel vă rog amintiți-vă că este nevoie de aprobarea utilizatorului înainte ca el/ea să se poată loga!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570 msgid "[%1$s] Your new account information" msgstr "[%1$s] Noile informații ale contului tău" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581 msgid "Welcome to %1$s!


            Your username is:%2$s and password:%3$s" msgstr "Bine ai venit pe %1$s!


            Numele tău de utilizator este: %2$s şi parola:%3$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642 #: profile-builder-2.0/front-end/register.php:125 msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email." msgstr "Înainte de a-ți putea accesa contul, un administrator trebuie să îl aprobe. Vei fi notificat prin e-mail." #: profile-builder-2.0/features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "Acest widget de conectare îți permite să adaugi un formular de conectare în bara de instrumente." #: profile-builder-2.0/features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "Profile Builder Login Widget" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36 #: profile-builder-2.0/front-end/class-formbuilder.php:415 #: profile-builder-2.0/front-end/login.php:250 msgid "Register" msgstr "Înregistrează-te " #: profile-builder-2.0/features/login-widget/login-widget.php:63 msgid "Title:" msgstr "Titlu:" #: profile-builder-2.0/features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "URL redirecționare după logare (opțional):" #: profile-builder-2.0/features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "URL pagină de înregistrare (opțional):" #: profile-builder-2.0/features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "URL pagină recuperare parolă (opțional):" #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91 #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "Numele de utilizator nu pot fi schimbate." #: profile-builder-2.0/front-end/class-formbuilder.php:136 msgid "Only an administrator can add new users." msgstr "Doar administratorul poate adăuga noi utilizatori." #: profile-builder-2.0/front-end/class-formbuilder.php:146 msgid "Users can register themselves or you can manually create users here." msgstr "Aici utilizatorii se pot înregistra singuri sau tu poți să ii creezi manual. " #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "Users cannot currently register themselves, but you can manually create users here." msgstr "Utilizatorii momentan nu se pot înregistra singuri, dar poți să ii creezi manual aici." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "În acest moment ești logat ca %1s. Nu ai nevoie de un alt cont. %2s" #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Log out of this account." msgstr "Logout din acest cont." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Logout" msgstr "Logout" #: profile-builder-2.0/front-end/class-formbuilder.php:175 msgid "You must be logged in to edit your profile." msgstr "Trebuie să fii logat pentru a putea edita profilul." #: profile-builder-2.0/features/functions.php:994 msgid "here" msgstr "aici" #: profile-builder-2.0/features/functions.php:995 msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s" msgstr "În curând vei fi redirecționat automat. Dacă această pagina se poate vizualiza pentru mai mult de %1$d, te rog apasă aici %2$s.%3$s" #: profile-builder-2.0/front-end/class-formbuilder.php:315 #: profile-builder-2.0/front-end/class-formbuilder.php:322 msgid "The account %1s has been successfully created!" msgstr "Contul %1s a fost creat cu succes!" #: profile-builder-2.0/front-end/class-formbuilder.php:318 #: profile-builder-2.0/front-end/class-formbuilder.php:328 msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link." msgstr "Înainte de a-ți putea accesa contul %1s, trebuie să confirmi adresa de e-mail. Te rog verifică inbox-ul și apasă pe link-ul de activare." #: profile-builder-2.0/front-end/class-formbuilder.php:324 msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email." msgstr "Înainte de a putea accesa contul %1s, un administrator trebuie să îl aprobe. Vei fi notificat prin e-mail." #: profile-builder-2.0/front-end/class-formbuilder.php:347 msgid "Your profile has been successfully updated!" msgstr "Profilul tău a fost actualizat cu succes!" #: profile-builder-2.0/front-end/class-formbuilder.php:358 msgid "There was an error in the submitted form" msgstr "A apărut o eroare în formularul trimis" #: profile-builder-2.0/front-end/class-formbuilder.php:415 msgid "Add User" msgstr "Adaugă utilizator" #: profile-builder-2.0/admin/add-ons.php:170 #: profile-builder-2.0/front-end/class-formbuilder.php:418 msgid "Update" msgstr "Actualizează " #: profile-builder-2.0/front-end/class-formbuilder.php:481 msgid "Send these credentials via email." msgstr "Trimite aceste acreditari prin e-mail." #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92 #: profile-builder-2.0/front-end/login.php:137 #: profile-builder-2.0/front-end/login.php:144 #: profile-builder-2.0/front-end/login.php:158 #: profile-builder-2.0/front-end/recover.php:17 #: profile-builder-2.0/front-end/recover.php:245 msgid "ERROR" msgstr "EROARE" #: profile-builder-2.0/front-end/login.php:137 msgid "The password you entered is incorrect." msgstr "Parola introdusă este incorectă." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Password Lost and Found." msgstr "Parolă pierdută și găsită." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Lost your password" msgstr "Ţi-ai pierdut parola" #: profile-builder-2.0/front-end/login.php:158 msgid "Both fields are empty." msgstr "Ambele câmpuri sunt goale." #: profile-builder-2.0/front-end/login.php:296 msgid "You are currently logged in as %1$s. %2$s" msgstr "În acest moment ești logat ca %1$s. %2$s" #: profile-builder-2.0/front-end/login.php:295 #: profile-builder-2.0/front-end/logout.php:25 msgid "Log out of this account" msgstr "Ieși din acest cont" #: profile-builder-2.0/front-end/login.php:295 msgid "Log out" msgstr "Ieșire " #: profile-builder-2.0/front-end/recover.php:17 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature." msgstr "Contul tău trebuie să fie confirmat de către un administrator înainte de a putea folosi opțiunea \"Resetare parola\"." #: profile-builder-2.0/front-end/recover.php:94 msgid "Reset Password" msgstr "Resetare parolă" #: profile-builder-2.0/front-end/recover.php:121 msgid "Please enter your username or email address." msgstr "Te rog introdu numele tău de utilizator și adresa de e-mail." #: profile-builder-2.0/front-end/recover.php:125 msgid "You will receive a link to create a new password via email." msgstr "Vei primi prin e-mail un link pentru a crea o noua parolă." #: profile-builder-2.0/front-end/recover.php:122 msgid "Username or E-mail" msgstr "Nume utilizator sau e-mail" #: profile-builder-2.0/front-end/recover.php:138 msgid "Get New Password" msgstr "Obţine o nouă parolă" #: profile-builder-2.0/front-end/recover.php:185 msgid "The username entered wasn't found in the database!" msgstr "Numele de utilizator nu a fost găsit în baza de date!" #: profile-builder-2.0/front-end/recover.php:185 msgid "Please check that you entered the correct username." msgstr "Te rog verifică dacă numele de utilizator este corect." #: profile-builder-2.0/front-end/recover.php:200 msgid "Check your e-mail for the confirmation link." msgstr "Verifică e-mail-ul pentru link-ul de confirmare." #: profile-builder-2.0/front-end/recover.php:235 msgid "Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s" msgstr "Cineva a cerut ca parola pentru următorul cont să fie resetată: %1$s
            Dacă acest lucru este o greșeala, ignoră acest e-mail și lucrurile vor rămâne neschimbate.
            Pentru a reseta parola, accesează următorul link: %2$s" #: profile-builder-2.0/front-end/recover.php:238 msgid "Password Reset from \"%1$s\"" msgstr "Resetare parolă de la \"%1$s\"" #: profile-builder-2.0/front-end/recover.php:245 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "A apărut o eroare în timpul acțiunii de trimitere a link-ului de activare %1$s!" #: profile-builder-2.0/front-end/recover.php:207 msgid "The email address entered wasn't found in the database!" msgstr "Adresa de e-mail introdusă nu a fost găsită în baza de date!" #: profile-builder-2.0/front-end/recover.php:207 msgid "Please check that you entered the correct email address." msgstr "Te rog verifică dacă adresa de e-mail introdusă este corectă." #: profile-builder-2.0/front-end/recover.php:273 msgid "Your password has been successfully changed!" msgstr "Parola ta a fost schimbată cu succes!" #: profile-builder-2.0/front-end/recover.php:292 msgid "You have successfully reset your password to: %1$s" msgstr "Ai resetat cu succes parola ca: %1$s" #: profile-builder-2.0/front-end/recover.php:295 #: profile-builder-2.0/front-end/recover.php:306 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "Parolă resetată cu succes pentru %1$s pe \"%2$s\"" #: profile-builder-2.0/front-end/recover.php:303 msgid "%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s" msgstr "%1$s a cerut schimbarea parolei prin opțiunea resetare parolă.
            Noua lui/ei parolă este: %2$s " #: profile-builder-2.0/front-end/recover.php:320 msgid "The entered passwords don't match!" msgstr "Parolele introduse nu coincid!" #: profile-builder-2.0/front-end/recover.php:375 msgid "ERROR:" msgstr "EROARE:" #: profile-builder-2.0/front-end/recover.php:375 msgid "Invalid key!" msgstr "Cheie incorectă!" #: profile-builder-2.0/front-end/register.php:56 msgid "Invalid activation key!" msgstr "Cheie de validare incorectă!" #: profile-builder-2.0/front-end/register.php:60 msgid "This username is now active!" msgstr "Acest nume de utilizator este acum activ!" #: profile-builder-2.0/front-end/register.php:74 msgid "This username is already activated!" msgstr "Acest nume de utilizator este deja activat!" #: profile-builder-2.0/front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "E-mail-ul a fost confirmat cu succes." #: profile-builder-2.0/front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "A apărut o eroare în timp ce se derula activarea utilizatorului." #: pb-add-on-woocommerce/index.php:393 #: profile-builder-2.0/front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "Adresa de e-mail introdusă nu este o adresă de e-mail validă." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "Această adresă de e-mail este deja rezervată pentru a fi folosită în curând." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 #: profile-builder-2.0/front-end/default-fields/username/username.php:49 #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "Te rog încearcă una diferită!" #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "Acestă adresa de e-mail este deja în uz." #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37 #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "Parolele nu coincid" #: profile-builder-2.0/front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "Acest nume de utilizator există deja." #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "Acest nume de utilizator este rezervat pentru a fi folosit în curând." #: profile-builder-2.0/modules/user-listing/userlisting.php:276 msgid "Avatar" msgstr "Avatar" #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72 #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45 #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45 #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40 #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34 #: profile-builder-2.0/front-end/extra-fields/input/input.php:30 #: profile-builder-2.0/front-end/extra-fields/map/map.php:51 #: profile-builder-2.0/front-end/extra-fields/number/number.php:30 #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39 #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52 #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46 #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49 #: profile-builder-2.0/front-end/extra-fields/select/select.php:51 #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70 #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "necesar" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48 msgid "To use reCAPTCHA you must get an API key from" msgstr "Pentru a folosi reCAPTCHA trebuie să obţii o cheie API de la" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "Din motive de securitate, trebuie să introduci ip-ul remote în reCAPTCHA!" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "Pentru a folosi reCAPTCHA trebuie să obţii o cheie publică API de la:" #: profile-builder-2.0/modules/modules.php:11 #: profile-builder-2.0/modules/modules.php:58 msgid "Modules" msgstr "Module" #: profile-builder-2.0/modules/modules.php:59 msgid "Here you can activate / deactivate available modules for Profile Builder." msgstr "Aici poți activa / dezactiva modulele disponibile pentru Profile Builder." #: profile-builder-2.0/modules/modules.php:69 msgid "Name/Description" msgstr "Nume/Descriere" #: profile-builder-2.0/modules/modules.php:70 msgid "Status" msgstr "Status" #: profile-builder-2.0/modules/modules.php:77 #: profile-builder-2.0/modules/modules.php:84 #: profile-builder-2.0/modules/modules.php:91 #: profile-builder-2.0/modules/modules.php:98 #: profile-builder-2.0/modules/modules.php:105 #: profile-builder-2.0/modules/modules.php:112 #: profile-builder-2.0/modules/modules.php:119 msgid "Active" msgstr "Activ" #: profile-builder-2.0/modules/modules.php:78 #: profile-builder-2.0/modules/modules.php:85 #: profile-builder-2.0/modules/modules.php:92 #: profile-builder-2.0/modules/modules.php:99 #: profile-builder-2.0/modules/modules.php:106 #: profile-builder-2.0/modules/modules.php:113 #: profile-builder-2.0/modules/modules.php:120 msgid "Inactive" msgstr "Inactiv" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:96 msgid "Admin Email Customizer" msgstr "Personalizare E-mail Administrator" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:103 msgid "User Email Customizer" msgstr "Personalizare E-mail Utilizator " #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253 msgid "Save" msgstr "Salvează" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "Redirecționează " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "URL" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save." msgstr "Aceste setări sunt de asemenea replicate după salvare în pagina pentru setări a \"Personalizare e-mail utilizator\" " #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41 msgid "From (name)" msgstr "De la (nume)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49 msgid "From (reply-to email)" msgstr "De la (răspunde către e-mail)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57 msgid "Common Settings" msgstr "Setări comune " #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" msgstr "" "\n" "

            Nou abonat pe {{site_name}}.

            \n" "

            Nume utilizator:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "\n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274 msgid "Email Subject" msgstr "Subiect e-mail" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84 msgid "Default Registration & Registration with Email Confirmation" msgstr "Înregistrare predefinită și înregistrare cu confirmare e-mail" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log in!

            \n" msgstr "" "\n" "

            Nou abonat pe {{site_name}}.

            \n" "

            Nume utilizator:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            Opțiunea aprobare administrator a fost activată în momentul înregistrarii,\n" "astfel vă rugăm țineți minte că acest utilizator trebuie aprobat înainte ca el/ea să se logheze!

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143 msgid "Registration with Admin Approval" msgstr "Înregistrare cu aprobare administrator" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "Etichete disponibile" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170 msgid "User Meta" msgstr "Utilizator Meta" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "URL site" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "Nume site" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25 #: profile-builder-2.0/modules/user-listing/userlisting.php:158 msgid "User Id" msgstr "ID utilizator" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33 msgid "Reply To" msgstr "Răspunde către" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40 msgid "Activation Key" msgstr "Cheie activare" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41 msgid "Activation Url" msgstr "URL activare" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42 msgid "Activation Link" msgstr "Link activare" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" msgstr "" "\n" "

            Bine ai venit pe {{site_name}}!

            \n" "

            Numele tău de utilizator este:{{username}} și parola:{{password}}

            \n" "\n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85 msgid "Default Registration" msgstr "Înregistrare predefinită" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91 msgid "" "\n" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials.

            \n" msgstr "" "\n" "

            Pentru a iți activa utilizatorul, apasă pe link-ul următor:
            \n" "{{{activation_link}}}

            \n" "

            După activare, vei primi încă un e-mail cu acreditările.

            \n" "\n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103 msgid "[{{site_name}}] Activate {{username}}" msgstr "[{{site_name}}] Activează {{username}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114 msgid "Registration with Email Confirmation" msgstr "Înregistrare folosind confirmare e-mail" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n" msgstr "" "\n" "

            Bine ai venit pe {{site_name}}!

            \n" "

            Numele tău de utilizator este:{{username}} și parola:{{password}}

            \n" "

            Înainte de a iți putea accesa contul, un administrator trebuie să îl aprobe. Vei fi notificat prin e-mail

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132 msgid "A new account has been created for you on {{site_name}}" msgstr "Un nou cont a fost creat pentru tine pe {{site_name}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148 msgid "" "\n" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Vești bune!

            \n" "

            Un administrator tocmai ți-a aprobat contul: {{username}} pe {{site_name}}.

            \n" "\n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159 msgid "Your account on {{site_name}} has been approved!" msgstr "Contul tău pe {{site_name}} a fost aprobat!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170 msgid "User Approval Notification" msgstr "Notificare aprobare utilizator" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175 msgid "" "\n" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Salut,

            \n" "

            Din păcate un administrator nu ți-a aprobat contul: {{username}} pe {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187 msgid "Your account on {{site_name}} has been unapproved!" msgstr "Contul tău pe {{site_name}} nu a fost aprobat!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198 msgid "Unapproved User Notification" msgstr "Notificare utilizator neaprobată" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "Formular editare profil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13 #: profile-builder-2.0/modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "Adaugă nou" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "Adaugă formular nou pentru editare profil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "Adaugă formulare noi pentru editare profil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "Formular editare profil nou" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "Formulare editare profil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "Vizualizează formularul de editare profil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "Caută formulare pentru editare profil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "Nu s-au găsit formulare pentru editare profil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "Nu s-au găsit formularele pentru editare profil în gunoi" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138 #: profile-builder-2.0/modules/user-listing/userlisting.php:2115 msgid "Shortcode" msgstr "Shortcode" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159 #: profile-builder-2.0/modules/user-listing/userlisting.php:2136 msgid "(no title)" msgstr "(fără titlu)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178 #: profile-builder-2.0/modules/user-listing/userlisting.php:2156 msgid "The shortcode will be available after you publish this form." msgstr "Shortcode-ul va fi disponibil după ce publici acest formular." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180 #: profile-builder-2.0/modules/user-listing/userlisting.php:2158 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "Folosește acest shortcode pe pagina pe care vrei să fie afișat formularul:" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184 #: profile-builder-2.0/modules/user-listing/userlisting.php:2162 msgid "Note: changing the form title also changes the shortcode!" msgstr "Notă: schimbarea titlului formularului va schimba și shortcode-ul!" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190 #: profile-builder-2.0/modules/user-listing/userlisting.php:2195 msgid "Form Shortcode" msgstr "Formular shortcode" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "Dacă utilizatorul va fi redirecționat către o pagină specifică sau nu" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "Afișează mesaje" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "Timp permis pentru afișarea mesajelor de succes (în secunde)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 msgid "Specify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.com" msgstr "Specifică URL-ul paginii către care utilizatorii vor fi redirecționați după actualizarea profilului folosind acest formular
            Folosește formatul următor: http://www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "După actualizarea profilului..." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "Adaugă în listă un nou câmp " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage Title (Type)" msgstr "
            Titlu (Tastează)
            " #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "Trebuie să specifici titlul formularului înainte de crearea lui" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "Formular de inregistrare" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "Adaugă un nou formular de înregistrare " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "Editează formularele de înregistrare " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "Formular nou de înregistrare " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "Formulare înregistrare " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "Vizualizează formularul de înregistrare " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "Caută formularele de înregistrare " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "Nu s-au găsit formulare de înregistrare " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "Nu s-au găsit formularele de înregistrare în gunoi" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "Rol predefinit" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "Stabilește rol" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Choose what role the user will have after (s)he registered
            If not specified, defaults to the role set in the WordPress settings" msgstr "Alege rolul pe care utilizatorul îl va avea după înregistrare
            Dacă nu se specifică, setările predefinite de rol din Wordpress vor fi activate" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "Logare automată" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Whether to automatically log in the newly registered user or not
            Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work" msgstr "Dacă noul utilizator se poate loga automat sau nu
            Funcționează doar pentru site-uri singulare care nu au activate opțiunile \"aprobare administrator\" sau \"confirmare e-mail\"
            ATENȚIE: Caching-ul formularului de înregistrare va face ca logarea automată să nu funcționeze " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "Specify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.com" msgstr "Specifică URL-ul paginii către care utilizatorii vor fi redirecționați după ce se înregistrează cu acest formular
            Folosește următorul format: http://www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "După înregistrare " #: profile-builder-2.0/modules/user-listing/userlisting.php:1038 #: profile-builder-2.0/modules/user-listing/userlisting.php:1485 #: profile-builder-2.0/modules/user-listing/userlisting.php:1953 #: profile-builder-2.0/modules/user-listing/userlisting.php:2426 msgid "Search Users by All Fields" msgstr "Caută utilizatorii folosind toate câmpurile " #: profile-builder-2.0/modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "Adaugă o noua listă de utilizatori" #: profile-builder-2.0/modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "Editează lista de utilizatori" #: profile-builder-2.0/modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "Listă de utilizatori nouă" #: profile-builder-2.0/modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "Vizualizează lista de utilizatori" #: profile-builder-2.0/modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "Caută lista de utilizatori" #: profile-builder-2.0/modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "Nu a fost găsită lista de utilizatori" #: profile-builder-2.0/modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "Nu a fost găsită lista de utilizatori în gunoi" #: profile-builder-2.0/modules/user-listing/userlisting.php:105 msgid "Display name as" msgstr "Afișează nume ca" #: profile-builder-2.0/modules/user-listing/userlisting.php:150 #: profile-builder-2.0/modules/user-listing/userlisting.php:2223 msgid "Registration Date" msgstr "Data înregistrării " #: profile-builder-2.0/modules/user-listing/userlisting.php:151 #: profile-builder-2.0/modules/user-listing/userlisting.php:2228 msgid "Number of Posts" msgstr "Număr de postări" #: profile-builder-2.0/modules/user-listing/userlisting.php:155 msgid "More Info" msgstr "Mai multe informații " #: profile-builder-2.0/modules/user-listing/userlisting.php:156 msgid "More Info Url" msgstr "URL pentru mai multe informații " #: profile-builder-2.0/modules/user-listing/userlisting.php:157 msgid "Avatar or Gravatar" msgstr "Avatar sau Gravatar" #: profile-builder-2.0/modules/user-listing/userlisting.php:196 #: profile-builder-2.0/modules/user-listing/userlisting.php:227 msgid "Extra Functions" msgstr "Funcții extra " #: profile-builder-2.0/modules/user-listing/userlisting.php:199 msgid "Pagination" msgstr "Paginare" #: profile-builder-2.0/modules/user-listing/userlisting.php:200 msgid "Search all Fields" msgstr "Caută toate câmpurile " #: profile-builder-2.0/modules/user-listing/userlisting.php:229 msgid "Go Back Link" msgstr "Link de mers înapoi" #: profile-builder-2.0/modules/user-listing/userlisting.php:247 msgid "All-userlisting Template" msgstr "Template care listează toți utilizatorii" #: profile-builder-2.0/modules/user-listing/userlisting.php:250 msgid "Single-userlisting Template" msgstr "Template pentru o singură persoană" #: profile-builder-2.0/modules/user-listing/userlisting.php:733 msgid "First/Lastname" msgstr "Prenume/Nume" #: profile-builder-2.0/modules/user-listing/userlisting.php:281 #: profile-builder-2.0/modules/user-listing/userlisting.php:739 msgid "Sign-up Date" msgstr "Dată înregistrare " #: profile-builder-2.0/modules/user-listing/userlisting.php:748 #: profile-builder-2.0/modules/user-listing/userlisting.php:2226 msgid "Display Name" msgstr "Nume afișat " #: profile-builder-2.0/modules/user-listing/userlisting.php:280 #: profile-builder-2.0/modules/user-listing/userlisting.php:757 msgid "Posts" msgstr "Postări " #: profile-builder-2.0/modules/user-listing/userlisting.php:760 #: profile-builder-2.0/modules/user-listing/userlisting.php:2233 msgid "Aim" msgstr "Aim" #: profile-builder-2.0/modules/user-listing/userlisting.php:763 #: profile-builder-2.0/modules/user-listing/userlisting.php:2234 msgid "Yim" msgstr "Yim" #: profile-builder-2.0/modules/user-listing/userlisting.php:766 #: profile-builder-2.0/modules/user-listing/userlisting.php:2235 msgid "Jabber" msgstr "Jabber" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "Click here to see more information about this user" msgstr "Apasă aici pentru a vedea mai multe informații despre acest utilizator. " #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "More..." msgstr "Mai mult..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1293 msgid "Click here to see more information about this user." msgstr "Apasă aici pentru a vedea mai multe informații despre acest utilizator." #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 #: profile-builder-2.0/modules/user-listing/userlisting.php:1442 msgid "Click here to go back" msgstr "Apasă aici pentru a te întoarce" #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 msgid "Back" msgstr "Înapoi " #: profile-builder-2.0/modules/user-listing/userlisting.php:1472 msgid "«« First" msgstr "«« Primul " #: profile-builder-2.0/modules/user-listing/userlisting.php:1473 msgid "« Prev" msgstr "« Anterior " #: profile-builder-2.0/modules/user-listing/userlisting.php:1474 msgid "Next » " msgstr "Următorul » " #: profile-builder-2.0/modules/user-listing/userlisting.php:1475 msgid "Last »»" msgstr "Ultimul »»" #: profile-builder-2.0/modules/user-listing/userlisting.php:1504 msgid "You don't have any pagination settings on this userlisting!" msgstr "Nu ai nicio setare de paginare pentru acestă listă de utilizatori!" #: profile-builder-2.0/modules/user-listing/userlisting.php:1970 msgid "Search" msgstr "Caută" #: profile-builder-2.0/modules/user-listing/userlisting.php:1971 msgid "Clear Results" msgstr "Șterge rezultatele " #: profile-builder-2.0/modules/user-listing/userlisting.php:2165 #: profile-builder-2.0/modules/user-listing/userlisting.php:2169 msgid "Extra shortcode parameters" msgstr "Parametri extra shortcode" #: profile-builder-2.0/modules/user-listing/userlisting.php:2172 msgid "displays users having a certain meta-value within a certain (extra) meta-field" msgstr "afișează utilizatorii ca având a anumită valoare meta într-un anumit câmp meta (extra)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2173 msgid "Example:" msgstr "Exemplu:" #: profile-builder-2.0/modules/user-listing/userlisting.php:2175 msgid "Remember though, that the field-value combination must exist in the database." msgstr "Adu-ți aminte, combinația valoare-câmp trebuie să existe în baza de date. " #: profile-builder-2.0/modules/user-listing/userlisting.php:2250 msgid "Random (very slow on large databases > 10K user)" msgstr "Aleator (foarte încet pentru baze de date mari > 10 000 utilizatori)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Roles to Display" msgstr "Roluri pentru afișare " #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Restrict the userlisting to these selected roles only
            If not specified, defaults to all existing roles" msgstr "Restricționează lista de utilizatori doar pentru rolurile selectate
            În lipsa unei selecții, se activează opțiunile predefinite pentru toate rolurile existente" #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Number of Users/Page" msgstr "Număr de utilizatori/pagină" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Default Sorting Criteria" msgstr "Criterii de sortare prestabilite " #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Set the default sorting criteria
            This can temporarily be changed for each new session" msgstr "Predefineşte criteriile de sortare
            Pot fi schimbate temporar pentru fiecare sesiune nouă" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Default Sorting Order" msgstr "Ordine de sortare predefinită" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Set the default sorting order
            This can temporarily be changed for each new session" msgstr "Predefinește ordinea de sortare
            Poate fi schimbată temporar pentru fiecare sesiune nouă" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Avatar Size (All-userlisting)" msgstr "Dimensiune Avatar (Toată lista de utilizatori)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Set the avatar size on the all-userlisting only" msgstr "Stabilește dimensiunea avatarului în template-ul care listează toți utilizatorii" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Avatar Size (Single-userlisting)" msgstr "Dimensiune Avatar (Template pentru o singură persoană)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Set the avatar size on the single-userlisting only" msgstr "Stabilește dimensiunea avatarului în template-ul pentru o singură persoană" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Visible only to logged in users?" msgstr "Vizibil doar pentru utilizatorii logați?" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "The userlisting will only be visible only to the logged in users" msgstr "Lista utilizatorilor va fi vizibilă doar de către utilizatorii logati" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "Visible to following Roles" msgstr "Vizibil de către rolurile următoare" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "The userlisting will only be visible to the following roles" msgstr "Lista utilizatorilor va fi vizibilă de către rolurile următoare" #: profile-builder-2.0/modules/user-listing/userlisting.php:2275 msgid "Userlisting Settings" msgstr "Setări listă utilizatori" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "Trebuie să activezi opțiunea Listă Utilizatori din tab-ul \"Module\"" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You can find it in the Profile Builder menu." msgstr "Îl puteți găsi în meniul Profile Builder." #: profile-builder-2.0/modules/user-listing/userlisting.php:2565 msgid "No results found!" msgstr "Nu există rezultate!"translation/profile-builder-ja.mo000066600000217332152141651170013132 0ustar00.22l2yj3c3H4c5567CJ88;9M9K]9C9[9I:e::":+:E:14; f;ep; ;; ; <<2'< Z<-e<O< <<<=d=YT>G>R>cI?!?7?'@/@@@@@@AA A %A/A7AQAZAtAAAA!A#A B1B9BHB[BnB*B BBB$BC'C +C9CAC IC(SC|CCCLADDD9DD? EAJEEEE EEEEE EEE0E #F-F5FJFYF `FlF F FF FFFF FFGkG~GiHoHwHHHHHHH!HHHI II#IBIYI`I iI vIIIIII IIII,IJJJ'%J7MJJK K UK_K pK~K2K3K K LL"L0*L [L iLvL ~L LLULMMMM'M)8MbMiM xM M MMMMMM;M $N1NJN `NnNNN NNN NN OOO *O7OGO`O/iO.O1OOP P#PAPHPNP UP`PhP mPzPPPPPPP QsQQQQ Q!QQQOR?VRR/SeSWLTTTTTbT2U ;UHUWUfU>vUUU UrUbVhV yVVVV VV VV?V2WAW HWVWgW WWWWWWWWWWX X "X/X 6X@X HXSX XXbXkX rXXX!XIXXX YYYY$YYeZnZ tZ~Z ZZZ ZZZZZ Z [[ [#[*[?[G[M[T[ [[f[[[\\ \!\(\-\ A\K\T\[\c\k\s\ y\ \ \5\\\\]] ]]]]] ]^ ^ ^~^^^^^^^ ^^ ^ _ __'_ ._8_ ?_*J_u___)___` ` ` ` )` 3`A`I` Q`\`x`_```aaa a &a 2a@aVala }aCa a aaaaabb$bDb$_bbbbbbb bbc#c4?cptccc d=d(Mdvd~d ddddddddd&e+e@e]e.xewef $f0f89f3rf^fg,$g,Qg%~ggggggg h "h.h 4h0Bhshhhhhh h hhi!i3i Fi$giiiiiii i ii jjj |jjjjj jjjj jj j kk /kPk Vkak wkk k kkkkkkl ,l7l >lIIll!0mRmZmam/jm2mYmV'nV~nn co noxo}o(o o o oo op ppp'p0p@pHpQ!q0sq q,q q qqqrssUPtxt6uVu GvQvXvkvrvxvv vv vvv vvvvv)v!%w#Gwkw.xI2x7|x3x2x)y"Ey(hy@yLyOzoz/z:z&z {r;{%{&{:{;6|r|0|*-}-X}<}p}@4~;u~2~ ~(*.4Y5D[ Ze/ހ%;9.u#2<Vs-u5لބ 5<Wk ąم $":BEJA҆  " 0 :EVe ȇ ҇އ"4DQS#$B g)r ˉՉ#݉7 M XyFߊ$6X=)G׌#<CbK,/(\"y";G 2h+%ǐ+*DcK<;"r^hђe:')ȓ02#&V,}+ ֔?@7x#%+2EN)k@:N#rx } Ɨїڗ՘e-.s\ ОJޟ)T:TpաF#ڢ#5<_rңV_ J&W ~ 2ߥIm2 Tʦ#wCsK/K{yǩ!ARc-x|!$ʫ + 8E^-q!'ݬ*-0-^ ȭܭ'9 Q] |9$î  '!?af$-&TPcV  #.BIP WaiHo ²ʲ --A$o dz ϳڳ |v$+2!:\$s ն '07 GRaz?ط޷9;Zl pz!E3 :H Q^9f  º Ϻ$ں !Ļ4" 1>Qm' 0!4V is* Ľν޽ $+ A KUq6z6<%.!A-c ɿѿؿ-;T$j$ Wm7ikNC?DT j$w\60 AO  (--[cgo-s_$& -;Lhy ! (8 ?I Q\ akt {!T  *25I=~ $!Bd-}  *28? FQ (>CY]ahpx =--? mz<3p$'    - 4-?m4  " - 8E U_ g-r>FM]ek q }* l ^ ku <H-+9Y'3!07 FRk-rN v&i9P fp4$'*L*w@ LEj=3'K8P' #, 3?EUX $ > K$X } +-2`sZv~   &G MX n{!-+ GR n{!WWM0i  60 g t ~! l'N ,  )5;|VRdQd w    %A:J1-/~rN!KpKD3M5LGGL.J/9>'xq63IH}K666#QZwH$EmN'**?UK?g!{{33f!9-96*Ka' m dy<^z 0-<PT[ c mw $ i%a' 2A Zdw-$$'%Mdw'-- '4 3\  *! *L -w !  A    $ . A Q a <i -    - A S  Z rg  $ 4 QCr//p_*JFu3P$3 ZZFU?<7%Q8w+%lHoZ'=:F"OiH366'moou|+6+@*'k 9A':D.O  < ]-d -

            Good News!

            An administrator has just approved your account: {{username}} on {{site_name}}.

            Hello,

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            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!

            Someone requested that the password be reset for the following account: {{site_name}}
            Username: {{username}}

            If this was a mistake, just ignore this email and nothing will happen.

            To reset your password, visit the following address:
            {{{reset_link}}}

            To activate your user, please click the following link:
            {{{activation_link}}}

            After you activate, you will receive another email with your credentials.

            You have successfully reset your password to: {{password}}

            {{username}} has requested a password change via the password reset feature.

            His/her new password is: {{password}}

            * only available in the %1$sHobbyist and Pro versions%2$s. Serial Number: Your serial number is about to expire, please %1$s Renew Your License%2$s. Your serial number is expired, please %1$s Renew Your License%2$s. is also activated. You need to deactivate it before activating this version of the plugin."Admin Approval" Activated:"Admin Approval" Feature:"Email Confirmation" Activated:"Email Confirmation" Landing Page:"Email" - users can Log In only with Email."Username and Email" - users can Log In with both Username and Email."Username" - users can Log In only with Username.%1$s %2$d%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s%1$s of %2$s%s couldn't be deleted%s pending« Prev«« First(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(no title)** only available in the %1$sPro version%2$s.. Extra Field Types are available in
            Hobbyist or PRO versions....Choose1 item%s items

            Your Profile Builder serial number is invalid or missing.
            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

            Title (Type)
            Title
            Type
            Meta Name
            Required
            Note: changing the form title also changes the shortcode!ERROR: The password must have a minimum strength of %sERROR: The password must have the minimum length of %s charactersERROR: Your account has to be confirmed by an administrator before you can log in.Profile Builder A new account has been created for you on {{site_name}}A new subscriber has (been) registered!A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be editedAIMAbout YourselfActivateActivation KeyActivation LinkActivation UrlActiveAdd EntryAdd FieldAdd NewAdd New Field to the ListAdd UserAdd new Edit-profile FormAdd new Registration FormAdd new User ListingAdd-On has been activatedAdd-On has been deactivated.Add-On is activeAdd-On is inactiveAdd-On is ActiveAdd-OnsAdmin ApprovalAdmin Approval (*)Admin Bar SettingsAdmin Email CustomizerAdmin Notification for User Password ResetAfghanistanAfter Profile Update...After Registration...After login redirect URL (optional):Agree To Terms CheckboxAimAland IslandsAlbaniaAlgeriaAll UsersAll users have been successfully deletedAll-userlisting TemplateAllow Users to Log in With:Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.Allow users to log in with their email or username when accessing your site.Allowed Image ExtensionsAllowed Upload ExtensionsAllowed time to display any success messages (in seconds)American SamoaAn administrator has just approved your account on %1$s (%2$s).An administrator has just unapproved your account on %1$s (%2$s).AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApplyApproveApprovedArgentinaArmeniaArubaAs an administrator you cannot change your role.AustraliaAustriaAutomatically Log InAvailable TagsAvatarAvatar SizeAvatar Size (All-userlisting)Avatar Size (Single-userlisting)Avatar UploadAvatar or GravatarAzerbaijanBackBahamasBahrainBangladeshBarbadosBasic InformationBefore you can access your account %1s, an administrator has to approve it. You will be notified via email.Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.Before you can access your account, an administrator needs to approve it. You will be notified via email.BelarusBelgiumBelizeBeninBermudaBhutanBiographical InfoBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBoth fields are empty.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaBulk ActionsBurkina FasoBurundiCambodiaCameroonCanadaCancelCape VerdeCayman IslandsCentral African RepublicChadCheck your e-mail for the confirmation link.CheckboxChileChinaChoose one of the supported field typesChoose one of the supported fields you manage install manually.Country SelectCroatiaCubaCuracaoCustom RedirectsCustomize Your Forms The Way You Want (*)CyprusCzech RepublicDate-formatDatepickerDeactivateDefaultDefault ContentDefault OptionDefault Option(s)Default RegistrationDefault Registration & Registration with Email ConfirmationDefault RoleDefault Sorting CriteriaDefault Sorting OrderDefault ValueDefault value of the fieldDefault value of the textareaDeleteDelete allDelete all itemsDelete this itemDemocratic Republic of the CongoDenmarkDescriptionDisabledDisplay MessagesDisplay NameDisplay name asDisplay name publicly asDjiboutiDo you want to bulk approve the selected users?Do you want to bulk delete the selected users?Do you want to bulk unapprove the selected users?DominicaDominican RepublicDownload NowDownloading and installing...E-mailERRORERROR:East TimorEcuadorEditEdit ProfileEdit the Edit-profile FormsEdit the Registration FormsEdit the User ListingEdit this itemEdit-profile FormEdit-profile FormsEgyptEl SalvadorEliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.EmailEmail ConfirmationEmail CustomizerEmail SubjectEmail notification resent to userEnable extra featuresEnable your modulesEnter a (detailed) description of the option for end users to read
            OptionalEnter a comma separated list of labels
            Visible for the userEnter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophesEnter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100Enter the minimum characters the password should have. Leave empty for no minimum limitEquatorial GuineaEritreaEstoniaEthiopiaEverything you will need to manage your users is probably already available using the Pro Modules.Example:Excerpt ViewExisting PagesExtra FeaturesExtra FunctionsExtra Profile Fields are available in Hobbyist or PRO versionsExtra shortcode parametersFalkland IslandsFaroe IslandsFeatures that give you more control over your users, increased security and help you fight user registration spam.FieldField PropertiesField TitleFijiFind out more about PRO ModulesFinlandFirst NameFirst/LastnameFirstnameFor Modern User InteractionFor security reasons, you must pass the remote ip to reCAPTCHA!Form ShortcodeFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesFrom (name)From (reply-to email)GabonGambiaGeneral SettingsGeneric UploadsGeorgiaGermanyGet New PasswordGet started with extra fieldsGhanaGibraltarGo Back LinkGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald IslandsHere you can activate / deactivate available modules for Profile Builder.HideHondurasHong KongHungaryIDIcelandIf you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.InactiveIndiaIndonesiaInput / Hidden InputInstall NowInstallation completeInvalid activation key!Invalid key!Invalid username.IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanKeep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.KenyaKiribatiKosovoKuwaitKyrgyzstanLabelsLaosLast »»Last NameLastnameLatviaLebanonLesothoLiberiaLibyaLiechtensteinList ViewLithuaniaLoad Profile Builder's own CSS file in the front-end:Log outLog out »Log out of this accountLog out of this account.LoginLogin 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 )Login with Email or UsernameLogoutLost your passwordLost your password?LuxembourgMacaoMacedoniaMadagascarMake sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.MalawiMalaysiaMaldivesMaliMaltaManage Default and Extra FieldsManage FieldsMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMediumMeta-nameMexicoMicronesiaMinimum Password Length and Strength MeterMinimum Password Length:Minimum Password Strength:Minimum length of %d charactersMinimum required Profile Builder version:ModulesMoldovaMonacoMongoliaMontenegroMontserratMore InfoMore Info UrlMore...MoroccoMozambiqueMultiple Edit-profile FormsMultiple Registration FormsMust be a valid email address or the tag {{reply_to}} which defaults to the administrator emailMyanmarNameName/DescriptionNamibiaNauruNepalNetherlandsNew CaledoniaNew Edit-profile FormNew Registration FormNew User ListingNew ZealandNew subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            Next » NicaraguaNicknameNigerNigeriaNiueNoNo Edit-profile Form foundNo Edit-profile Forms found in trashNo Registration Form foundNo Registration Forms found in trashNo User Listing foundNo User Listing found in trashNo items found.No results found!NoneNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNot compatible with Profile BuilderNot compatible with your version of Profile Builder.Now that you acquired a copy of %s, you should take the time and register it with the serial number you receivedNumber of PostsNumber of Users/PageOmanOnly administrators can see this field on edit profile forms.Only an administrator can add new users.OptionsOverwrite ExistingPaginationPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayPasswordPassword Lost and Found.Password Recovery page URL (optional):Password Reset EmailPassword Reset Success EmailPassword Reset from "%1$s"Password Successfully Reset for %1$s on "%2$s"Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.PeruPhilippinesPitcairnPlease check that you entered the correct email address.Please check that you entered the correct username.Please choose a different field type as this one already exists in your form (must be unique) Please enter a valid username.Please enter a value for the required field Please enter your username or email address.Please select at least one user role Please try a different one!PolandPortugalPostsPowerful Modules (**)Profile Builder Login WidgetProfile Builder RegisterPuerto RicoQatarRadio ButtonsRandom (very slow on large databases > 10K user)Recover PasswordRedirectRegisterRegister VersionRegister Your VersionRegister page URL (optional):RegisteredRegistrationRegistration & Edit ProfileRegistration DateRegistration FormRegistration FormsRegistration with Admin ApprovalRegistration with Email ConfirmationRemoveRepeat PasswordReply ToRepublic of the CongoRequiredResend Activation EmailReset KeyReset LinkReset PasswordReset UrlRestrict the userlisting to these selected roles only
            If not specified, defaults to all existing rolesRetry InstallReunionRoleRoles to DisplayRomaniaRow CountRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaveSave ChangesSave SettingsSearchSearch Users by All FieldsSearch all FieldsSearch the Edit-profile FormsSearch the Registration FormsSearch the User ListingSecret KeySelectSelect AllSelect which user roles to show to the user ( drag and drop to re-order )Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name
            Use this at your own riskSend these credentials via email.SenegalSerbiaSet RoleSet the avatar size on the all-userlisting onlySet the avatar size on the single-userlisting onlySet the default sorting criteria
            This can temporarily be changed for each new sessionSet the default sorting order
            This can temporarily be changed for each new sessionSet the number of users to be displayed on every paginated part of the all-userlistingSet up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.SeychellesShortcodeShowShow all datesShow/Hide the Admin Bar on the Front-EndSierra LeoneSign-up DateSingaporeSingle-userlisting TemplateSint MaartenSite KeySite NameSite UrlSlovakiaSloveniaSolomon IslandsSomaliaSomeone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$sSomething went wrong, we could not connect to the server. Please try again later.Sorry, but you don't have permission to do that!South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.comSpecify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.comSpecify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)Specify the option which should be selected by defaultSpecify 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.Sri LankaStatusStrength indicatorStrongSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaTerms of AgreementTextareaThailandThat field is already added in this form That meta-name is already in use That username is already activated!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!The account %1s has been successfully created!The best way to add front-end registration, edit profile and login forms.The email address entered wasn't found in the database!The email you entered is not a valid email address.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical The entered passwords don't match!The entered row number is not numerical The entered value for the Datepicker is not a valid date-format The following option did not coincide with the ones in the options list: %s The following option(s) did not coincide with the ones in the options list: %s The meta-name cannot be empty The password must have a minimum strength of %sThe password must have the minimum length of %s charactersThe password you entered is incorrect.The passwords do not matchThe secret key from Google, www.google.com/recaptchaThe selected user couldn't be deletedThe selected users have been activatedThe selected users have had their activation emails resentThe serial number couldn't be validated because it expired!The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!The serial number entered couldn't be validated!The serial number is about to expire soon!The serial number was successfully validated!The shortcode will be available after you publish this form.The site key from Google, www.google.com/recaptchaThe userlisting will only be visible only to the logged in usersThe userlisting will only be visible to the following rolesThe username entered wasn't found in the database!The usernames cannot be changed.There was an error in the submitted formThere was an error performing that action!There was an error while trying to activate the userThere was an error while trying to activate the user.There was an error while trying to send the activation link to %1$s!These settings are also replicated in the "Admin Email Customizer" settings-page upon save.These settings are also replicated in the "User Email Customizer" settings-page upon save.This email is already in use.This email is already reserved to be used soon.This field is requiredThis form is empty.This login widget lets you add a login form in the sidebar.This message is only visible by administratorsThis username already exists.This username is already activated!This username is already reserved to be used soon.This username is invalid because it uses illegal characters.This username is now active!Timezone SelectTitle of the fieldTitle: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$sTo allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$sTo use reCAPTCHA you must get an API key fromTo use reCAPTCHA you must get an API public key from:TogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluType your password again. Type your password.U.S. Virgin IslandsURLUgandaUkraineUnapproveUnapprovedUnapproved User NotificationUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUpdateUpgrade Profile BuilderUpload UruguayUse these shortcodes on the pages you want the forms to be displayed:Use this shortcode on the page you want the form to be displayed:User Approval NotificationUser Email CustomizerUser IdUser ListingUser MetaUser NicenameUser RoleUser RolesUser Roles OrderUser not foundUser successfully approved!User successfully deleted!User successfully unapproved!User to edit:User-RoleUser-statusUserlisting SettingsUsernameUsername and EmailUsername or E-mailUsername or EmailUsernames cannot be changed.Users can register themselves or you can manually create users here.Users cannot currently register themselves, but you can manually create users here.Users successfully approved!Users successfully deleted!Users successfully unapproved!Users with Unconfirmed Email AddressUzbekistanValid tags {{reply_to}} and {{site_name}}VanuatuVaticanVenezuelaVersion %sVery WeakVery weakVietnamView all extra shortcode parametersView the Edit-profile FormView the Registration FormView the User ListingVisibilityVisible only to logged in users?Wallis and FutunaWeakWebsiteWelcome to %1$s!


            Your username is:%2$s and password:%3$sWestern SaharaWhether the field is required or notWhether to automatically log in the newly registered user or not
            Only works on single-sites without "Admin Approval" and "Email Confirmation" features activated
            WARNING: Caching the registration form will make automatic login not workWhether to redirect the user to a specific page or notWith Extra Profile Fields you can create the exact registration form your project needs.Yahoo IMYemenYesYimYou are currently logged in as %1$s. %2$sYou are currently logged in as %1s. You don't need another account. %2sYou are currently logged in as %s. You can add the information for the %s after you add a entryYou can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.You can find it in the Profile Builder menu.You can find the default file here: %1$sYou cannot register this user roleYou decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.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.You don't have any pagination settings on this userlisting!You either don't have permission for that action or there was an error!You have successfully reset your password to: %1$sYou must be logged in to edit your profile.You must enter a valid email address.You must enter a value for the date-format You must enter a value for the row number You must enter the secret key You must enter the site key You must select a field You need to activate the Userlisting feature from within the "Modules" tab!You need to specify the title of the form before creating itYou will receive a link to create a new password via email.You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$sYour account has to be confirmed by an administrator before you can use the "Password Recovery" feature.Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.Your account on %1$s has been approved!Your account on %1$s has been unapproved!Your account on {{site_name}} has been approved!Your account on {{site_name}} has been unapproved!Your email was successfully confirmed.Your password has been successfully changed!Your profile has been successfully updated!Your selected password at signupYour session has expired! Please refresh the page and try againYour session has expired! Please refresh the page and try again.ZambiaZimbabwe[%1$s] Activate %2$s[%1$s] Your new account information[{{site_name}}] Activate {{username}}[{{site_name}}] Password Reset[{{site_name}}] Password Reset Successfullyapprove this user?approvedconfirm this email yourself?delete this user from the _signups table?delete this user?displays all users except the ones you specified the user_id fordisplays only the users that you specified the user_id fordisplays users having a certain meta-value within a certain (extra) meta-fieldemailherereCAPTCHArequiredresend the activation link?showunapprove this user?unapprovedusernameusername or emailPO-Revision-Date: 2017-04-12 05:23:16+0000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; X-Generator: GlotPress/0.1 Project-Id-Version: Profile Builder

            おめでとうございます!

            {{site_name}}の管理者があなたのアカウント{{username}}を承認しました。

            こんにちは,

            残念ながら{{site_name}}の管理者はあなたのアカウント{{username}}を不承認としました。

            ようこそ、{{site_name}}へ!

            あなたのユーザ名は{{username}}、パスワードは{{password}}になります。

            ようこそ、{{site_name}}へ!

            あなたのユーザー名は{{username}}、パスワードは{{password}}です。

            ご登録いただいたアカウントのご利用には、管理者の承認が必要です。eメールにて通知が届きます。

            {{site_name}}の新規登録がありました。

            ユーザー名:{{username}}

            メールアドレス:{{user_email}}

            {{site_name}}に新規登録がありました。

            ユーザ名:{{username}}

            メールアドレス:{{user_email}}

            登録時点で管理者承認機能が有効でしたので、, あなたが承認するまでは彼/彼女はログインすることができません。

            次のアカウントのパスワードリセットが要求されました: {{site_name}}
            ユーザ名: {{username}}

            このこれが間違いなら単に無視してください。何も処理されません。

            パスワードリセットを実行するには、下記のアドレスにアクセスしてください。:
            {{{reset_link}}}

            作成したアカウントのアクティベートの為に、下記のリンクをクリックしてください。
            {{{activation_link}}}

            アクティベート完了後、あなたの認証情報が記載されたメールが別途届きます。

            以下のパスワードにリセットしました: {{password}}

            {{username}} がパスワードリセット機能によるパスワードの変更を要求しました。

            彼/彼女の新しいパスワードは {{password}}です。

            *印の項目は%1$sHobbyistとProバージョン%2$sでのみ利用可能です。シリアルナンバー:あなたのシリアル番号はもうすぐ期限切れとなります。%1$sライセンス更新%2$sをお願いします。シリアル番号の有効期限が切れました。%1$s ライセンス更新%2$sを行ってください。.が有効になっています。このバージョンのプラグインを有効にするには、それを無効化する必要があります。"管理者承認" 機能 有効化:"管理者承認" 機能:"Eメール確認"機能 有効化:"Eメール確認"機能 ランディングページ:"メールアドレス" - ユーザはメールアドレスでのみログインできます。"ユーザ名とメールアドレス" - ユーザーはユーザー名とメールアドレスのどちらでもログインできます。"ユーザー名" - ユーザーはユーザー名でのみログインできます。%1$s %2$d%1$sさんがパスワードリセット機能によりパスワードの変更を要求しました。
            新しいパスワード:%2$s%1$s of %2$s%sが削除できませんでした。%s保留中« 前«« 最初(例. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(無題)**印の項目は%1$sProバージョン%2$sでのみ利用可能です。プロフィールの項目追加はHobbyistとPROバージョンでのみ利用可能です...選択してください1アイテム

            Profile Builderのシリアルナンバーが未登録か誤っています。
            %1$sライセンス登録%2$s から登録し、自動アップデートやサポートをお受け取りください。まだライセンスキーをお持ちでない場合はこちらで購入できます。%3$s今すぐ購入%4$s

            タイトル (タイプ)
            ラベル
            タイプ
            メタネーム
            必須指定
            メモ: タイトルを変更するとショートコードも変更されます!エラー: パスワードは最低%s文字必要です。エラー: パスワードは最低%s文字必要です。エラー: あなたのアカウントは事前に管理者の承認を受ける必要があります。Profile Builder {{site_name}}用のあなたの新しいアカウントが作成されました。新しい購読者が登録されました!この記入欄固有の自動生成されたIDです
            フィルターでこの要素を指し示すのに使用できます。
            編集不可AIMあなたについてアクティベートアクティベーションキーアクティベーションリンクアクティベーションURL有効エントリを追加欄を追加新規追加リストに欄を追加ユーザー追加プロフィール編集フォームを追加登録フォームを追加新しいユーザ一覧を追加アドオンが有効化されましたアドオンは無効化されました。アドオンは 有効ですアドオンは 無効ですアドオンは有効です。アドオン管理者承認管理者承認 (*)管理バー設定メール文面編集(管理者宛)ユーザのパスワードリセットに対する通知Afghanistanプロフォール更新後...登録後...ログイン後リダイレクト先URL(オプション):利用許諾チェックボックスAIMAland IslandsAlbaniaAlgeria全ユーザ全てのユーザを削除しました一覧画面のテンプレートユーザーログイン方法:ユーザの権限毎に異なる記入欄を備えた個別のプロフィール編集フォームを用意することができます。様々なユーザタイプ毎に異なる情報を記入させることが可能です。あなたのサイトにユーザがアクセスする際、メールアドレスまたはユーザ名でログインできます。対応画像拡張子アップロード可能な拡張子成功メッセージの表示時間(秒)American Samoa%1$s (%2$s)上のあなたのアカウントを管理者が承認しました。%1$s (%2$s)上のあなたのアカウントを管理者が不承認としました。AndorraAngolaAnguillaAntarcticaAntigua and Barbuda適用承認承認ArgentinaArmeniaAruba管理者として、あなた自身の権限は変更できません。AustraliaAustria自動でログイン有効なタグアバターアバターサイズアバター画像サイズ(一覧画面)アバター画像サイズ(個別画面)アバター画像アップロードアバター or GravatarAzerbaijan戻るBahamasBahrainBangladeshBarbados基本情報ご登録いただいたアカウント%1sのご利用には、管理者の承認が必要です。eメールにて通知が届きます。ご登録いただいたアカウント%1sのご利用には、メールアドレスの確認が必要です。メールボックスに届いたメールに記載されたアクティベーション用のリンクをクリックしてください。ご登録いただいたアカウントのご利用には、管理者の承認が必要です。eメールにて通知が届きます。BelarusBelgiumBelizeBeninBermudaBhutan略歴BoliviaBonaire, Saint Eustatius and SabaBosnia and Herzegovina両方の欄とも未記入です。BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgaria一括操作Burkina FasoBurundiCambodiaCameroonCanadaキャンセルCape VerdeCayman IslandsCentral African RepublicChad確認リンクをメールでチェックしてください。チェックボックスChileChina対応した記入欄タイプを選択してください編集したい記入欄を選んでください 手動インストールをお試しください。国選択CroatiaCubaCuracaoカスタム・リダイレクトフォームも自由自在にカスタマイズ (*)CyprusCzech Republic日付様式日付ピッカーディアクティベートデフォルトに従うデフォルトの値デフォルトの選択肢デフォルトの選択肢(複数)標準登録標準登録およびメール確認付き登録デフォルト権限デフォルトのソート基準初期ソート順初期値記入欄のデフォルト値テキストエリアのデフォルト値削除全削除全項目削除この項目を削除Democratic Republic of the CongoDenmark説明無効表示メッセージ表示名表示名この名前で公開表示Djibouti選択したユーザを一括で承認しますか?選択したユーザを一括で削除しますか?選択したユーザを一括で不承認にしますか?DominicaDominican Republicすぐにダウンロードするダウンロードとインストール中...メールアドレスエラーエラー:East TimorEcuador編集プロフィール編集プロフィール編集フォームを編集登録フォームを編集ユーザ一覧の編集この項目を編集プロフィール編集フォームプロフィール編集フォームEgyptEl Salvador最低パスワード文字数とパスワード強度を設定することで、単純すぎるパスワードの使用を防止できます。メールアドレスメールアドレス確認メール文面編集メールタイトルEメール通知がユーザに再送されました。追加機能を設定モジュール設定一般ユーザが何を記入すれば良いかの詳しい説明を記入してください(任意)選択肢をカンマで区切って入力してください。
            ユーザに提示される値です。選択肢に対応する値をカンマで区切って入力してください。
            この値はhiddenフォームで使われ、ユーザに見えないのでどんなもの構いませんが、特殊文字とアポストロフィは含めない方が良いでしょう。ユーザに読ませたい利用許諾書を入力します。
            リンクは標準的なHTML文法で挿入できます。: <a href="custom_url">custom_text</a>アバター画像サイズの値を入力してください(20から200の間)
            指定しない場合のデフォルトは100です。パスワードの最低文字数を入力。指定しない場合は空欄。Equatorial GuineaEritreaEstoniaEthiopiaあなたのユーザを管理するのに必要なものが、PROバージョンには既に用意されているでしょう。例:抜粋ビュー存在するページ追加機能追加機能タグ (Extra Functions)プロフィールの項目追加はHobbyistとPROバージョンでのみ利用可能ですその他のショートコード用パラメーターFalkland IslandsFaroe Islandsサイトユーザに関する操作権をあなたに与え、セキュリティを強化し、登録スパムと戦うお手伝いをする追加機能を備えています。記入欄記入欄の属性欄名称FijiPROバージョンについて詳しく見るFinland名名/姓名現代的なユーザインタラクションセキュリティ保護のため、リモートIPをreCAPTCHAに渡す必要があります。フォーム・ショートコードFranceFrench GuianaFrench PolynesiaFrench Southern Territories差出人 (name)差出人 (reply-to email)GabonGambia一般設定ファイルアップロードGeorgiaGermany新しいパスワードを取得追加記入欄を使用GhanaGibraltar戻るリンクGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald IslandsこちらでProfule Builderモジュールの有効化/無効化ができます。非表示HondurasHong KongHungaryIDIceland %1$s をお楽しみいただけましたら、より多くの方に知ってもらえるようWordPress.orgで評価をお願いいたします。ユーザが増えることで、より多くの機能、少ないバグ、そしてより良いサポートが実現します。登録すると、アップグレードの案内、修正プログラム、テクニカルサポートが受けられます。無効IndiaIndonesiaテキスト(一行)/不可視すぐにインストールするインストール完了無効なアクティベーションキー!無効なキー!不適格なユーザ名IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstan一般ユーザにWordPressダッシュボードを見せなくし、ログイン後、登録後などに任意の公開ページに簡単にリダイレクトできます。KenyaKiribatiKosovoKuwaitKyrgyzstan選択肢(表示)Laos最後 »»姓姓LatviaLebanonLesothoLiberiaLibyaLiechtenstein一覧表示LithuaniaProfile Builder固有のCSSを公開ページで読み込む:ログアウトログアウト »このアカウントをログアウトするこのアカウントをログアウトするログインログインはメールアドレスを用いるよう設定されました. この欄は公開部分には表示されません! ( この設定は "%s" タブで変更できます )メールアドレスまたはユーザー名でログインログアウトパスワードをお忘れですかパスワードをお忘れですか?LuxembourgMacaoMacedoniaMadagascar本物のメールアドレスによる登録を確実にします。登録時、ユーザはメールアドレス確認の通知メールを受け取ります。MalawiMalaysiaMaldivesMaliMalta記入欄設定記入欄設定Marshall IslandsMartiniqueMauritaniaMauritiusMayotte中程度メタネームMexicoMicronesia最低パスワード長と強度メーター最低パスワード長:パスワードの最低強度:最低%d文字必要です。対応するProfile Builderの最低バージョン:モジュールMoldovaMonacoMongoliaMontenegroMontserrat追加情報追加情報URL詳細...MoroccoMozambique複数のプロフィール編集フォーム複数の登録フォーム正しいメールアドレスか{{reply_to}}タグ(標準では管理者のメールアドレス)を入れてください。Myanmar名前名前/説明NamibiaNauruNepalNetherlandsNew Caledonia新規プロフィール編集フォーム新規登録フォーム新規ユーザ一覧New Zealand%1$sに新規登録がありました。

            ユーザー名:%2$s
            E-メールアドレス:%3$s
            次 » NicaraguaニックネームNigerNigeriaNiueいいえプロフィール編集フォームが見つかりませんゴミ箱にプロフィール編集フォームが見つかりません登録フォームが見つかりません。ゴミ箱に登録フォームが見つかりません。ユーザ一覧が見つかりませんゴミ箱にユーザ一覧が見つかりません項目が見つかりません見つかりませんでした。なしNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayProfile Builderと互換性がありませんお使いのProfile Builderバージョンとは互換性がありません。%sをご購入いただきましたら、こちらでお受け取りになったシリアルナンバーを登録してください。投稿数1ページに表示するユーザ数:Omanプロフィール編集フォームのこのフィールドを見られるのは管理者のみです。管理者のみがユーザを新規追加できます。選択肢(記録)上書きページ分割PakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayパスワードパスワード紛失対応パスワード復旧ページURL (オプション):パスワードリセットメールパスワードリセット成功メール"%1$s"からのパスワードリセット"%2$s"の%1$sのパスワードがリセットされました。新規登録、Eメール確認時、管理者承認/不承認などユーザや管理者宛に送信される全てのメール文面をカスタマイズできます。PeruPhilippinesPitcairn正しいEメールアドレスを入力したか確認してください。正しいユーザー名を入力したか確認してください。他の記入欄タイプを選択してください(既にあるものと重複はできません)。 有効なユーザ名を入力してください。必須欄に入力してください。ユーザー名またはメールアドレスを入力してください。最低1つのユーザ権限を選択してください 他のものをお試しください!PolandPortugal投稿数強力な追加モジュール (**)Profile BuiderログインウィジェットProfile Builder 登録Puerto RicoQatarラジオボタンランダム (1万ユーザ以上の大きなデータベースではとても遅い)パスワード忘れ対応リダイレクト新規登録ライセンス登録ライセンスの登録登録ページURL(オプション):登録日時利用登録プロファイルの登録と編集登録日登録フォーム登録フォーム登録に管理者の承認Eメール確認有りの登録削除パスワード(確認)Reply ToRepublic of the Congo必須アクティベーションメールの再送リセットキーリセットリンクパスワードをリセットリセットURLこのユーザ一覧を選択した権限のみに制限してください。
            指定しない場合は、全ての権限のデフォルトになります。インストール再試行Reunion権限表示対象にする権限:Romania行数RussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi Arabia保存変更を保存設定を保存検索全ての欄でユーザを検索全ての欄を検索プロフィール編集フォームを検索登録フォームを検索ユーザー一覧を検索Secret Keyプルダウンメニュー全て選択ユーザーに提示するユーザー権限を選択してください。 ( ドラッグ&ドロップして順序を入れ替え )「Yes」を指定すると、データベース上で同じmeta-nameをもつ他のフィールドを上書きします。
            自己責任でお使いください。承認情報をメールで送信SenegalSerbia権限をセットする一覧画面で表示するアバター画像のサイズを指定してください。個別画面で表示するアバター画像のサイズを指定してください。デフォルトのソート基準を指定してください。
            この指定はセッション毎に一時的に変更できます。デフォルトのソート順を指定してください。この指定はセッション毎に一時的に変更できます。全てのユーザ一覧のページネーション毎のユーザ表示数を指定してください。ユーザの権限毎に異なる記入欄を備えた個別の登録フォームを用意することができます。様々なユーザタイプ毎に異なる情報を取得することが可能です。Seychellesショートコード表示全てのの日付を用事公開ページでの管理バーの表示/非表示Sierra Leone登録日Singapore個別画面のテンプレートSint Maartenサイト鍵サイト名サイトURLSlovakiaSloveniaSolomon IslandsSomalia次のアカウントのパスワードリセットが要求されました。: %1$s
            もし間違いであれば、このメールは無視して結構です。
            パスワードをリセットする場合は、こちらのリンクをクリックしてください。:%2$s何らかの原因でサーバーに接続できませんでした。後ほど再度お試しください。申し訳ありません、それはあなたの権限では行えません!South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainこのフォームで新規登録した後にリダイレクトされるページを指定します。
            次の形式で指定: http://www.mysite.comこのフォームでプロフィールを更新した後にリダイレクトされるページを指定します。
            次の形式で指定: http://www.mysite.comアップロード可能にしたいファイル拡張子を指定してください。
            例: .ext1,.ext2,.ext3
            指定しない場合はWordPressがデフォルトで許可する拡張子になります (.*)。アップロード可能にしたいファイル拡張子を指定してください。
            例: .ext1,.ext2,.ext3
            指定しない場合は.jpg,.jpeg,.gif,.png (.*)となります。'Textarea'型記入欄の行数
            指定しない場合は5行になります。デフォルトで選択状態にしたい選択肢を指定してください。
            複数の値を指定する場合は',' (半角カンマ)で区切ってください。デフォルトで選択状態にしたい選択肢を指定してください。Eメール確認後にリダイレクトされるページを指定してください。これは登録ページと違っていてもよく、またいつでも変更できます。なにも指定していない場合、シンプルは確認ページが表示されます。Sri Lankaステータス強度インジゲーター強固SudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzania利用許諾テキスト(複数行)Thailandこの記入欄はこのフォームに追加済みです そのメタネームは既に存在します。 このユーザー名は承認済みです!登録地の"管理者承認"機能が有効化されました。あなたが承認するまでユーザはログインすることはできません!アカウント %1s が作成されました!登録、プロフィール編集、ログインフォームをサイトに追加する最高の選択肢です。そのメールアドレスはデータベース上で見付かりません!入力したメールアドレスは有効なものではありません。入力したアバターサイズが20から200の間ではありません 入力されたアバターサイズが数値ではありませんl 入力されたパスワードが異なります!入力された行数が数値ではありませんl 日付欄に指定された値が正しい日付書式ではありません 以下の選択肢が一覧のにあるものと一致しません: %s 以下の選択肢が一覧のにあるものと一致しません: %s メタネームは空欄にはできません パスワードの強度が最低「%s」である必要があります。パスワードは最低%s文字必要です。入力されたパスワードが間違っています。パスワードが合致しません。GoogleからのSecret Key, www.google.com/recaptcha選択したユーザが削除できませんでした選択したユーザは有効化されました。選択したユーザに有効化メールが再送信されました。シリアルナンバーが期限切れで承認されませんでした。シリアル番号の承認がタイムアウトしました。おそらくサーバーの不具合によるものです。後ほど再度お試しください。シリアル番号が承認されませんでした!シリアル番号がまもなく期限切れです!シリアル番号は正常に承認されました!ショートコードはこのフォームを公開後に有効となります。Googleからのサイトキー、www.google.com/recaptchaユーザー一覧をログインしたユーザにだけ表示しますユーザー一覧を以下の権限ユーザにだけ表示します入力されたユーザ名はデータベース上で見付かりません!ユーザ名は変更できません。入力内容にエラーがあります。その処理を実行する際にエラーが起きました!ユーザをアクティベートする際にエラーが発生しましたユーザを有効にする際にエラーがありました。%1$sにアクティベーションリンクを送信しようとしてエラーが発生しました!これらの設定を変更すると「メール文面編集(ユーザ宛)」設定ページにも反映されます。これらの設定を変更すると「メール文面編集(管理者宛)」設定ページにも反映されます。このメールアドレスは登録済みです。このメールアドレスは予約済みです。この欄は必須ですフォームが空欄です。このログインウィジェットはサイドバーにログインフォームを表示します。このメッセージは管理者のみ閲覧できますこのユーザ名は既に存在します。このユーザ名は既に有効化されています!このユーザ名は既に予約されています。このユーザ名には使用できない文字が含まれています。このユーザー名は有効です!タイムゾーン選択欄の名称タイトル:ユーザがProfile Builderを通じてあなたのウェブサイトに登録できるようにするには、ユーザ登録を有効化する必要があります。%1$sネットワークの設定%2$sを開き、「登録の設定」の下の「ユーザーアカウントの新規登録を許可する。」をチェックしてください。 %3$s非表示%4$sユーザがProfile Builderを通じてあなたのウェブサイトに登録できるようにするには、ユーザ登録を有効化する必要があります。%1$s設定 -> 一般%2$sタブを開き、「メンバーシップ」の「だれでもユーザー登録ができるようにする」をチェックしてください。%3$s非表示%4$sreCAPTCHAの利用には、APIキーの取得が必要ですreCAPTCHAの利用には、以下よりAPI公開キー(public key)の取得が必要ですTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluパスワードを再入力してください。パスワードを入力してください。U.S. Virgin IslandsURLUgandaUkraine不承認不承認ユーザー不承認通知United Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying Islands更新Profile Builderを更新アップロードUruguayフォームを表示したいページに以下のショートコードを貼り付けてください:フォームを表示したいページにこのショートコードを挿入してください:ユーザー承認通知メール文面編集(ユーザ宛)ユーザーIDユーザー一覧表示User Metaニックネーム権限グループユーザ権限ユーザ権限順ユーザーが見つかりませんでしたユーザーを承認しました!ユーザーを削除しました!ユーザーを不承認しました!編集するユーザ:ユーザー権限ユーザ状態ユーザー一覧設定ユーザー名ユーザー名とメールアドレスユーザー名またはメールアドレスユーザー名またはメールアドレスユーザ名は変更できません。こちらで新規ユーザ登録ができます。ユーザが自身で登録することができませでした。しかしあなたは手動でユーザを作成することができます。ユーザの承認が完了しました!ユーザの削除が完了しました!ユーザの不承認が完了しました!アドレス未確認ユーザーUzbekistan使用可能なタグは {{reply_to}} と {{site_name}} です。VanuatuVaticanVenezuelaバージョン %sとても弱いとても弱いVietnam全てのショートコード用パラメーターを見るプロフィール編集フォームを見る登録フォームを見るユーザー一覧を表示表示ログイン中のユーザーにのみ表示Wallis and Futuna弱いWebサイトようこそ、%1$sへ!


            あなたのユーザ名は%2$s、パスワードは%3$sとなります。Western Saharaこの記入欄が必須かどうか新規登録ユーザが自動的にログインするかどうかを指定します。"管理者承認"機能"と"Eメール確認"機能が無効化されたシングルサイトでのみ機能します。注意: 登録フォームをキャッシュすると自動ログイン機能は機能しません。ユーザを特定のページにリダイレクトするかを指定します。プロフィール項目追加機能で、登録フォームに必要な欄を追加することができます。Yahoo IMYemenはいYahoo! Messenger%1$sさんとしてログイン中です。%2$sあなたは現在%1sとしてログインしています。 別のアカウントは必要ありません。%2s%s さんとしてログイン中です。エントリの追加後、%sの情報を追加することができます未確認のメールアドレス一覧は、%1$sユーザー > ユーザー一覧 > アドレス未確認ユーザー%2$s で確認できます。ユーザーの一覧は %1$sユーザー > ユーザー一覧 > 監視者承認%2$sで見ることができます。Profile Builderメニューの中にあります。初期ファイルはこちら: %1$sこのユーザー権限は登録できません。誰がこのサイトを利用できるか管理者が選別します。メールでの通知を受け取るか、WordPress UI上でまとめて承認することができます。誰がこのサイトを利用できるか管理者が選別します。メールでの通知を受け取るか、WordPress UI上でまとめて承認することができます。この機能は%1$sHobbyist または PRO バージョン%2$sで有効化できます。このユーザー一覧に対するページネーションの設定がありません。その処理を実行する権限がない、もしくはエラーが発生しました!%1$sに対するパスワードを正常にリセットしました。プロフィールの編集にはログインが必要です。正しいメールアドレスを入力してください。正しい書式で日付を入力してください。 数字で入力してください。 秘密キー(Secret Key)を入力してください サイトキーを入力してください 記入欄を選択してください 「モジュール」タブの「ユーザー一覧表示」機能を有効にする必要があります!フォーム作成前にタイトルを指定する必要があります新しいパスワードを設定する為のリンクがメールで送信されます。ページは自動遷移します。このページが %1$d 秒以上見えている時は、以下をクリックしてください %2$s.%3$sあなたのアカウントはパスワードリカバリーの手続きをとる前に、管理者により確認されました。あなたのアカウントはパスワードリセットの手続きをとる前に、管理者により確認されました。%1$sのあなたのアカウントは承認されました!%1$sのアカウントが承認されませんでした!{{site_name}}のあなたのアカウントが承認されました!{{site_name}}のあなたのアカウントが承認されませんでした!あなたのメールアドレス確認が正常に完了しました。パスワードは正常に更新されました!プロファイルは正常に更新されました!登録時に選択したパスワードセッションの有効期限が切れました!ページをリロードして再度お試しください。セッションの有効期限が切れました!ページをリロードして再度お試しください。ZambiaZimbabwe[%1$s] 有効化 %2$s[%1$s] あなたの新アカウント情報[{{site_name}}]のユーザー{{username}}の有効化[{{site_name}}] パスワードリセット[{{site_name}}] パスワードリセットは完了しましたこのユーザを承認しますか?承認済みこのメールをあなた自身で確認しますか?_signupsテーブルからこのユーザを削除しますか?このユーザを削除しますか?user_idで指定した以外の全てのユーザを表示user_idを指定したユーザのみを表示特定の(extra) meta-fieldが特定のmeta-valueをもつユーザのみ表示メールここreCAPTCHA必須アクティベーションリンクを再送しますか?表示このユーザを不承認にしますか?不承認ユーザー名ユーザー名またはメールアドレスtranslation/profile-builder-sl_SI.mo000066600000213232152141651170013544 0ustar004\3\3l]3y3cD44c}5567C88;q99K9C :[M::::":+";EN;1; ;e; 6<C< Z< e<r<2< <-<O< C=M=T=.>dF>Y>G?RM?c?!@7&@'^@@!A%A4A=ALA\AkA rA |AAAAAAAAB!1B#SBwBBBBBB*B CC+C$ACfC~C CCC C(CCCDLDDD9ERE?aEAEEEE EFF F(F 1F;FCF0IF zFFFFF FF F GG #G.G3G;G CGNGWGkiGGi\HHHHHHHHI! I.IEI\I eIsIzIIII I IIIIII J JJ5J,:JgJpJvJ'|J7JJK`K KK KK2K3L RL`LiLyL0L L LL L LLUMZMiMqMvM~M)MMM M M MMM NN*N;?N {NNN NNNN OO!O 2OSO [OgOpO OOOOO/O.O1.P`PiP |PPPPP PPfQnQ sQQQQQQQR RsRRRR R!RRRO S?\SS5TeTWRUUUUUbU8V AVNV]VlV>|VVV VrVhWnW WWWW WW WW?W8XGX NX\XmX XXXXXXXXXXY Y (Y5Y ` E`*P`{```)``a aa a $a /a 9aGaOa Waba~a_aabbb b&b ,b 8bFb\brb bCb b bbbbcc c$%cJc$eccccccc cdd#!d4Edpzddde=e(Se|ee eeeeeeeee& f1fFfcf.~fwf%g *g6g8?g3xg^g h,*h,Wh%hhhhhhhi (i4i :i0Hiyiiiiii i iij'j9j Lj$mjMjjjjkkk 7k AkLk [kjek kkkkk llll -l:l Pl \lil ll ll ll l l7l0m7mRmdmmm mm mImn!nnnn/n2&oYYoVoV pap p]p Xqbqgq(vq q q qq qq qqrrr*r2rQ s0]s s,s s sssotuuU:vxv6 w@w 1x;xBxUx\xbxkx xx xxx xxxxx)x!y#1yUy.yIz7fz3z2z){"/{(R{@{{L{O |Y|/x|:|&| }r%}%}&}:}; ~\~0~*-B<pp@;_2 ΀(*4C5xD[ZO/Ȃ;#._#2Ѓ<@]m{-_5ÆȆІֆ &AUimt | Ç ҇$ $,E4Az׈   $/@Ok ȉ݉ D;SԊ $, Q)\ #Nj! 7 Bc~F$6 XB)G܎#$<HbK,4(a"y';G%2m+%̒+*IhK<;'rch֔e?')͕02(&[,+ ۖ?@<}#%Ɨ+ 7JS)p@:N(w}  ˙֙ߙ#po(o:J? {L9ȡUOoc5#+Y%)HգqY woť5ܥ-$PR gէk=DBm1$6ĩ#ƪͪ ֪ 2 =K Zh(#ë#&A(h !Ϭ% =/m|1(  " -8,J&w+ʮs~'+FF@<  ( 2 >L c p z 7 ޱ  %74R6D۲ . 7 B M [gk~g   $ / 9 G$Rw  ǵ!ѵ #9 I T ` l v 3Ŷ +DCq  1ظ1 < MY o1z ֹ ,s,  źк2 %7He tĻ>ݻ%.Tk& ¼μ޼# 2=EUl| /Ž01& Xdz! ž о޾ ȿӿܿ$!3Oci #/"Fi9|HL7/vSK y P[oD,2C $+:$ALf"  $0M V`w #     '5 = J V` q{$R   ) /:|  %" /Eem u       ' 2 < G R]fw P 8C0 "6 KY b o} * 4 @LT.]  9Tr 2   -@ _ j u$ j 4? F R]fo~"PJ ` mx 2;- 67)n2# ?#I4ms(GLO2  ! :D Xdm6!)9/i )65>lh..C7r.  #0 Tu A%!A1c"-!&O;v  (.Gb u` ( ;F Y cm# !: JThD} #) &3 Z{ b) O>KeVeG QU_ :.> T&a  ^>W/J]} 5    , 9CR [ e s ! &(l*K+v5< .6GeEH <2]% r-a(D@>2' 2H>{o<*5g4.*,,2Y2Fpxw 8JaTz/#&#CJD( &#1U4R=    9C^q    % ' FR p {[X#;(_#;Vu !2 R s,CP V!w"& 0 " - 8E V d r0}%! ' HcxR 73 Uk     * W %f 6 m s1 , - / 0  A Q (//X#+/ ')QEj:Br.y|&&//)F,p+'OOA  *)%/;k  /G;GQ   * /; Xe y

            Good News!

            An administrator has just approved your account: {{username}} on {{site_name}}.

            Hello,

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            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!

            Someone requested that the password be reset for the following account: {{site_name}}
            Username: {{username}}

            If this was a mistake, just ignore this email and nothing will happen.

            To reset your password, visit the following address:
            {{{reset_link}}}

            To activate your user, please click the following link:
            {{{activation_link}}}

            After you activate, you will receive another email with your credentials.

            You have successfully reset your password to: {{password}}

            {{username}} has requested a password change via the password reset feature.

            His/her new password is: {{password}}

            * only available in the %1$sHobbyist and Pro versions%2$s. Serial Number: Your serial number is about to expire, please %1$s Renew Your License%2$s. Your serial number is expired, please %1$s Renew Your License%2$s. is also activated. You need to deactivate it before activating this version of the plugin."Admin Approval" Activated:"Admin Approval" Feature:"Email Confirmation" Activated:"Email Confirmation" Landing Page:"Email" - users can Log In only with Email."Username and Email" - users can Log In with both Username and Email."Username" - users can Log In only with Username.%1$s %2$d%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s%1$s of %2$s%s couldn't be deleted%s pending« Prev«« First(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(no title)** only available in the %1$sPro version%2$s.. Extra Field Types are available in Hobbyist or PRO versions....Choose1 item

            Your Profile Builder serial number is invalid or missing.
            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

            Title (Type)
            Title
            Type
            Meta Name
            Required
            Note: changing the form title also changes the shortcode!ERROR: The password must have a minimum strength of %sERROR: The password must have the minimum length of %s charactersERROR: Your account has to be confirmed by an administrator before you can log in.Profile Builder A new account has been created for you on {{site_name}}A new subscriber has (been) registered!A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be editedAIMAbout YourselfActivateActivation KeyActivation LinkActivation UrlActiveAdd EntryAdd FieldAdd NewAdd New Field to the ListAdd UserAdd new Edit-profile FormAdd new Registration FormAdd new User ListingAdd-On has been activatedAdd-On has been deactivated.Add-On is activeAdd-On is inactiveAdd-On is ActiveAdd-OnsAdmin ApprovalAdmin Approval (*)Admin Bar SettingsAdmin Email CustomizerAdmin Notification for User Password ResetAfghanistanAfter Profile Update...After Registration...After login redirect URL (optional):Agree To Terms CheckboxAimAland IslandsAlbaniaAlgeriaAll UsersAll users have been successfully deletedAll-userlisting TemplateAllow Users to Log in With:Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.Allow users to log in with their email or username when accessing your site.Allowed Image ExtensionsAllowed Upload ExtensionsAllowed time to display any success messages (in seconds)American SamoaAn administrator has just approved your account on %1$s (%2$s).An administrator has just unapproved your account on %1$s (%2$s).AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApplyApproveApprovedArgentinaArmeniaArubaAs an administrator you cannot change your role.AustraliaAustriaAutomatically Log InAvailable TagsAvatarAvatar SizeAvatar Size (All-userlisting)Avatar Size (Single-userlisting)Avatar UploadAvatar or GravatarAzerbaijanBackBahamasBahrainBangladeshBarbadosBasic InformationBefore you can access your account %1s, an administrator has to approve it. You will be notified via email.Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.Before you can access your account, an administrator needs to approve it. You will be notified via email.BelarusBelgiumBelizeBeninBermudaBhutanBiographical InfoBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBoth fields are empty.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaBulk ActionsBurkina FasoBurundiCambodiaCameroonCanadaCancelCape VerdeCayman IslandsCentral African RepublicChadCheck your e-mail for the confirmation link.CheckboxChileChinaChoose one of the supported field typesChoose one of the supported fields you manage install manually.Country SelectCroatiaCubaCuracaoCustom RedirectsCustomize Your Forms The Way You Want (*)CyprusCzech RepublicDate-formatDatepickerDeactivateDefaultDefault ContentDefault OptionDefault Option(s)Default RegistrationDefault Registration & Registration with Email ConfirmationDefault RoleDefault Sorting CriteriaDefault Sorting OrderDefault ValueDefault value of the fieldDefault value of the textareaDeleteDelete allDelete all itemsDelete this itemDemocratic Republic of the CongoDenmarkDescriptionDisabledDisplay MessagesDisplay NameDisplay name asDisplay name publicly asDjiboutiDo you want toDo you want to bulk approve the selected users?Do you want to bulk delete the selected users?Do you want to bulk unapprove the selected users?DominicaDominican RepublicDownload NowDownloading and installing...E-mailERRORERROR:East TimorEasy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings.EcuadorEditEdit ProfileEdit the Edit-profile FormsEdit the Registration FormsEdit the User ListingEdit this itemEdit-profile FormEdit-profile FormsEgyptEl SalvadorEliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.EmailEmail ConfirmationEmail CustomizerEmail SubjectEmail notification resent to userEnable extra featuresEnable your modulesEnter a (detailed) description of the option for end users to read
            OptionalEnter a comma separated list of labels
            Visible for the userEnter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophesEnter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100Enter the minimum characters the password should have. Leave empty for no minimum limitEquatorial GuineaEritreaEstoniaEthiopiaEverything you will need to manage your users is probably already available using the Pro Modules.Example:Excerpt ViewExisting PagesExtra FeaturesExtra FunctionsExtra Profile Fields are available in Hobbyist or PRO versionsExtra shortcode parametersFalkland IslandsFaroe IslandsFeatures that give you more control over your users, increased security and help you fight user registration spam.FieldField PropertiesField TitleFijiFind out more about PRO ModulesFinlandFirst NameFirst/LastnameFirstnameFor Modern User InteractionFor security reasons, you must pass the remote ip to reCAPTCHA!Form ShortcodeFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesFrom (name)From (reply-to email)GabonGambiaGeneral SettingsGeneric UploadsGeorgiaGermanyGet New PasswordGet started with extra fieldsGhanaGibraltarGo Back LinkGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald IslandsHere you can activate / deactivate available modules for Profile Builder.HideHondurasHong KongHungaryIDIcelandIf you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.InactiveIndiaIndonesiaInput / Hidden InputInstall NowInstallation completeInvalid activation key!Invalid key!Invalid username.IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanKeep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.KenyaKiribatiKosovoKuwaitKyrgyzstanLabelsLaosLast »»Last NameLastnameLatviaLebanonLesothoLiberiaLibyaLiechtensteinList ViewLithuaniaLoad Profile Builder's own CSS file in the front-end:Log outLog out »Log out of this accountLog out of this account.LoginLogin 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 )Login with Email or UsernameLogoutLost your passwordLost your password?LuxembourgMacaoMacedoniaMadagascarMake sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.MalawiMalaysiaMaldivesMaliMaltaManage Default and Extra FieldsManage FieldsMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMediumMeta-nameMexicoMicronesiaMinimum Password Length and Strength MeterMinimum Password Length:Minimum Password Strength:Minimum length of %d charactersMinimum required Profile Builder version:ModulesMoldovaMonacoMongoliaMontenegroMontserratMore InfoMore Info UrlMore...MoroccoMozambiqueMultiple Edit-profile FormsMultiple Registration FormsMust be a valid email address or the tag {{reply_to}} which defaults to the administrator emailMyanmarNameName/DescriptionNamibiaNauruNepalNetherlandsNew CaledoniaNew Edit-profile FormNew Registration FormNew User ListingNew ZealandNew subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            Next » NicaraguaNicknameNigerNigeriaNiueNoNo Edit-profile Form foundNo Edit-profile Forms found in trashNo Registration Form foundNo Registration Forms found in trashNo User Listing foundNo User Listing found in trashNo items found.No results found!NoneNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNot compatible with Profile BuilderNot compatible with your version of Profile Builder.Now that you acquired a copy of %s, you should take the time and register it with the serial number you receivedNumber of PostsNumber of Users/PageOmanOnly administrators can see this field on edit profile forms.Only an administrator can add new users.OptionsOverwrite ExistingPaginationPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayPasswordPassword Lost and Found.Password Recovery page URL (optional):Password Reset EmailPassword Reset Success EmailPassword Reset from "%1$s"Password Successfully Reset for %1$s on "%2$s"Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.PeruPhilippinesPitcairnPlease check that you entered the correct email address.Please check that you entered the correct username.Please choose a different field type as this one already exists in your form (must be unique) Please enter a valid username.Please enter a value for the required field Please enter your username or email address.Please select at least one user role Please try a different one!PolandPortugalPostsPowerful Modules (**)Profile Builder Login WidgetProfile Builder RegisterPuerto RicoQatarRadio ButtonsRandom (very slow on large databases > 10K user)Recover PasswordRedirectRegisterRegister VersionRegister Your VersionRegister page URL (optional):RegisteredRegistrationRegistration & Edit ProfileRegistration DateRegistration FormRegistration FormsRegistration with Admin ApprovalRegistration with Email ConfirmationRemember though, that the field-value combination must exist in the database.RemoveRepeat PasswordReply ToRepublic of the CongoRequiredResend Activation EmailReset KeyReset LinkReset PasswordReset UrlRestrict the userlisting to these selected roles only
            If not specified, defaults to all existing rolesRetry InstallReunionRoleRoles to DisplayRomaniaRow CountRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaveSave ChangesSave SettingsSave the user role order from the user roles checkboxesSearchSearch Users by All FieldsSearch all FieldsSearch the Edit-profile FormsSearch the Registration FormsSearch the User ListingSecret KeySelectSelect AllSelect which user roles to show to the user ( drag and drop to re-order )Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name
            Use this at your own riskSend these credentials via email.SenegalSerbiaSet RoleSet the avatar size on the all-userlisting onlySet the avatar size on the single-userlisting onlySet the default sorting criteria
            This can temporarily be changed for each new sessionSet the default sorting order
            This can temporarily be changed for each new sessionSet the number of users to be displayed on every paginated part of the all-userlistingSet up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.SeychellesShare a little biographical information to fill out your profile. This may be shown publicly.ShortcodeShowShow all datesShow/Hide the Admin Bar on the Front-EndSierra LeoneSign-up DateSingaporeSingle-userlisting TemplateSint MaartenSite KeySite NameSite UrlSlovakiaSloveniaSolomon IslandsSomaliaSomeone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$sSomething went wrong, we could not connect to the server. Please try again later.Sorry, but you don't have permission to do that!South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.comSpecify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.comSpecify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)Specify the option which should be selected by defaultSpecify 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.Sri LankaStatusStrength indicatorStrongSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaTerms of AgreementTextareaThailandThat field is already added in this form That meta-name is already in use That username is already activated!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!The account %1s has been successfully created!The best way to add front-end registration, edit profile and login forms.The email address entered wasn't found in the database!The email you entered is not a valid email address.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical The entered passwords don't match!The entered row number is not numerical The entered value for the Datepicker is not a valid date-format The following option did not coincide with the ones in the options list: %s The following option(s) did not coincide with the ones in the options list: %s The meta-name cannot be empty The password must have a minimum strength of %sThe password must have the minimum length of %s charactersThe password you entered is incorrect.The passwords do not matchThe secret key from Google, www.google.com/recaptchaThe selected user couldn't be deletedThe selected users have been activatedThe selected users have had their activation emails resentThe serial number couldn't be validated because it expired!The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!The serial number entered couldn't be validated!The serial number is about to expire soon!The serial number was successfully validated!The shortcode will be available after you publish this form.The site key from Google, www.google.com/recaptchaThe userlisting will only be visible only to the logged in usersThe userlisting will only be visible to the following rolesThe username entered wasn't found in the database!The usernames cannot be changed.There was an error in the submitted formThere was an error performing that action!There was an error while trying to activate the userThere was an error while trying to activate the user.There was an error while trying to send the activation link to %1$s!These settings are also replicated in the "Admin Email Customizer" settings-page upon save.These settings are also replicated in the "User Email Customizer" settings-page upon save.This email is already in use.This email is already reserved to be used soon.This field is requiredThis form is empty.This login widget lets you add a login form in the sidebar.This message is only visible by administratorsThis username already exists.This username is already activated!This username is already reserved to be used soon.This username is invalid because it uses illegal characters.This username is now active!Timezone SelectTitle of the fieldTitle: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$sTo allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$sTo use reCAPTCHA you must get an API key fromTo use reCAPTCHA you must get an API public key from:TogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluType your password again. Type your password.U.S. Virgin IslandsURLUgandaUkraineUnapproveUnapprovedUnapproved User NotificationUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUpdateUpgrade Profile BuilderUpload UruguayUse these shortcodes on the pages you want the forms to be displayed:Use this shortcode on the page you want the form to be displayed:User Approval NotificationUser Email CustomizerUser IdUser ListingUser MetaUser NicenameUser RoleUser RolesUser Roles OrderUser not foundUser successfully approved!User successfully deleted!User successfully unapproved!User to edit:User-RoleUser-statusUserlisting SettingsUsernameUsername and EmailUsername or E-mailUsername or EmailUsernames cannot be changed.Users can register themselves or you can manually create users here.Users cannot currently register themselves, but you can manually create users here.Users successfully approved!Users successfully deleted!Users successfully unapproved!Users with Unconfirmed Email AddressUzbekistanValid tags {{reply_to}} and {{site_name}}VanuatuVaticanVenezuelaVersion %sVery WeakVery weakVietnamView all extra shortcode parametersView the Edit-profile FormView the Registration FormView the User ListingVisibilityVisible only to logged in users?Visible to following RolesWallis and FutunaWeakWebsiteWelcome to %1$s!


            Your username is:%2$s and password:%3$sWestern SaharaWhether the field is required or notWhether to automatically log in the newly registered user or not
            Only works on single-sites without "Admin Approval" and "Email Confirmation" features activated
            WARNING: Caching the registration form will make automatic login not workWhether to redirect the user to a specific page or notWith Extra Profile Fields you can create the exact registration form your project needs.Yahoo IMYemenYesYimYou are currently logged in as %1$s. %2$sYou are currently logged in as %1s. You don't need another account. %2sYou are currently logged in as %s. You can add the information for the %s after you add a entryYou can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.You can find it in the Profile Builder menu.You can find the default file here: %1$sYou cannot register this user roleYou decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.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.You don't have any pagination settings on this userlisting!You either don't have permission for that action or there was an error!You have successfully reset your password to: %1$sYou must be logged in to edit your profile.You must enter a valid email address.You must enter a value for the date-format You must enter a value for the row number You must enter the secret key You must enter the site key You must select a field You need to activate the Userlisting feature from within the "Modules" tab!You need to specify the title of the form before creating itYou will receive a link to create a new password via email.You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$sYour account has to be confirmed by an administrator before you can use the "Password Recovery" feature.Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.Your account on %1$s has been approved!Your account on %1$s has been unapproved!Your account on {{site_name}} has been approved!Your account on {{site_name}} has been unapproved!Your email was successfully confirmed.Your password has been successfully changed!Your profile has been successfully updated!Your selected password at signupYour session has expired! Please refresh the page and try againYour session has expired! Please refresh the page and try again.ZambiaZimbabwe[%1$s] Activate %2$s[%1$s] Your new account information[{{site_name}}] Activate {{username}}[{{site_name}}] Password Reset[{{site_name}}] Password Reset Successfullyapprove this user?approvedconfirm this email yourself?delete this user from the _signups table?delete this user?displays all users except the ones you specified the user_id fordisplays only the users that you specified the user_id fordisplays users having a certain meta-value within a certain (extra) meta-fieldemailherereCAPTCHArequiredresend the activation link?showunapprove this user?unapprovedusernameusername or emailPO-Revision-Date: 2015-09-29 11:56:41+0000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3); X-Generator: GlotPress/0.1 Project-Id-Version: Profile Builder

            Dobra novica!

            Skrbnik strani je pravkar odobril vaš račun: {{username}} na {{site_name}}.

            Pozdravljeni,

            Na žalost je skrbnik strani pravkar označil vaš uporabniški račun kot neodobrenega: {{username}} na strani {{site_name}}.

            Dobrodošli na {{site_name}}!

            Vaše uporabniško ime je:{{username}} in geslo:{{password}}

            Dobrodošli na {{site_name}}!

            Vaše uporabniško ime je:{{username}} in geslo:{{password}}

            Preden lahko dostopate do svojega uporabniškega računa ga mora odobriti skrbnik strani. Obveščeni boste po e-pošti.

            Nov naročnik na {{site_name}}.

            Uporabniško ime:{{username}}

            E-naslov:{{user_email}}

            Nov naročnik na {{site_name}}.

            Uporabniško ime:{{username}}

            E-naslov:{{user_email}}

            Opcija za odobritev s strani skrbnika strani je bila aktivirana ob času registracije, zato ne pozabite, da morate uporabnika potrditi preden se lahko prijavi!

            Nekdo je sprožil zahtevo po ponastavitvi gesla za sledeči uporabniški račun: {{site_name}}
            Uporabniško ime: {{username}}

            Če je prišlo do napake, ignorirajte to e-pošto in nič se ne bo zgodilo.

            Za ponastavitev vašega gesla obiščite sledečo povezavo:
            {{{reset_link}}}

            Za aktivacijo vašega uporabniškega računa, prosimo klknite sledečo povezavo:
            {{{activation_link}}}

            Po aktivaciji boste prejeli dodatno e-pošto s prijavnimi podatki.

            Uspešno ste spremenili vaše geslo v: {{password}}

            {{username}} je prosil za spremembo gesla preko funkcije za zamenjavo gesla.

            Novo geslo je: {{password}}

            * na voljo samo v %1$sHobbyist in Pro različicah%2$s.Serijska številka:Vaša serijska številka bo kmalu potekla, prosimo %1$sObnovite vašo licenco%2$s.Vaša serijska številka je potekla, prosimo %1$sObnovite vašo licenco%2$s.je tudi aktiviran. Za aktivacijo te različice vtičnika morate najprej deaktivirati trenutnega."Odobritev s strani skrbnikov" je bila aktivirana:"Odobritev s strani skrbnikov" možnost:"Potrditvena e-pošta" aktivirana:Ciljna stran za "Potrditveno e-pošto""E-naslov" - uporabniki se lahko prijavijo samo z e-poštnim naslovom"Uporabniško ime in e-naslov" - uporabnik se lahko prijavi tako z uporabniškim imenom kot tudi z e-naslovom."Uporabniško ime" - uporabniki se lahko prijavijo le z njihovim uporabniškim imenom.%1$s %2$d%1$s je oddal prošnjo za spremembo gesla preko funkcije za ponastavitev gesla.
            Njegovo/Njeno novo geslo je:%2$s%1$s od %2$s%s ni bilo mogoče izbrisati%s v čakanju« Prejšnji«« Prvi(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(brez naslova)** na voljo samo v %1$sPro različici%2$s.Dodatni tipi polj so na voljo v Hobbyist ali PRO različici....Izberite1 element

            Your Profile Builder serijska številka je neveljavna ali manjkajoča.
            Prosimo %1$sregistrirajte svoj izvod%2$s, da dobite dostop do samodejnih posodobitev in podpore. Potrebujete licenčni ključ? %3$sKupite sedaj%4$s

            Naslov (Tip)
            Naslov
            Tip
            Meta Ime
            Zahtevano
            Opomba: sprememba naslova obrazca spremeni tudi kratko kodo (shortcode)!NAPAKA: Geslo mora biti najmanj %s v težavnostiNAPAKA: Geslo mora vsebovati najmanj %s znakovNAPAKA: Vaš račun mora biti odobren s strani skrbnika strani preden se lahko prijavite.Profile Builder Na {{site_name}} je bil ustvarjen nov račun za vasNov naročnik se je registriral!Edinstven, samodejno ustvarjen ID za to določeno polje
            Če je potrebno lahko uporabite to v povezavi s filtri za ciljanje tega elementa
            Ni mogoče urejatiAIMO vasAktivirajAktivacijski ključAktivacijska povezavaAktivacijski spletni naslovAktivenDodaj vnosDodaj poljeDodaj novoDodaj novo polje na seznamDodaj uporabnikaDodaj nov obrazec za ureditev profilaDodaj nov registracijski obrazecDodaj nov seznam uporabnikovDodatek je bil aktiviranDodatek je bil deaktiviranDodatek je aktivenDodatek je neaktivenDodatek je aktivenDodatkiOdobritev skrbnika straniOdobritev skrbnikov strani (*)Admin Bar nastavitveOblikovalec Skrbniškega E-naslovaObvestilo skrbniku strani za ponastavitev gesla uporabnikaAfghanistanPo posodobitvi profila...Po registraciji...Preusmeritvena povezava po prijavi (opcijsko):Strinjam se s pogoji uporabe CheckboxAimAland IslandsAlbaniaAlgeriaVsi uporabnikiVsi uporabniki so bili uspešno izbrisaniPredloga za seznam vseh uporabnikovDovolite uporabnikom, da se prijavijo z:Dovolite različnim vlogam uporabnikov urejanje njihovih specifičnih informacij. Postavite več obrazcev za urejanje profila z različnimi polji za različne tipe uporabnikov.Dovolite uporabnikom, da se prijavijo z njihovim e-naslovom ali uporabniškim imenom pri prijavi na vašo stran.Dovoljene končnice datotek za slikeDovoljene končnice datotek za nalaganjeDovoljen čas prikaza kakršnihkoli sporočil o uspehu (v sekundah)American SamoaSkrbnik strani je pravkar odobril vaš račun na %1$s (%2$s).Skrbnik strani ni odobril vašega računa na %1$s (%2$s).AndorraAngolaAnguillaAntarcticaAntigua and BarbudaUporabiteOdobriOdobrenArgentinaArmeniaArubaKot skrbnik strani ne morete spremeniti svoje vloge.AustraliaAustriaSamodejna prijavaOznake, ki so na voljoPrikazna slikaVelikost prikazne slikeVelikost prikazne slike (vsi seznami uporabnikov)Velikost prikazne slike (enojni seznam uporabnikov)Nastavitev prikazne slikePrikazna slika ali globalno prepoznavna prikazna slika (gravatar)AzerbaijanNazajBahamasBahrainBangladeshBarbadosOsnovne informacijePreden lahko uporabljate svoj račun %1s ga mora odobriti skrbnik strani. Obveščeni boste po e-pošti.Preden lahko uporabljate svoj račun %1s morate potrditi svoj e-poštni naslov. Prosimo preverite vašo mapo s prejeto e-pošto in kliknite na aktivacijsko povezavo.Preden lahko uporabljate svoj račun ga mora odobriti skrbnik strani. Obveščeni boste po e-pošti.BelarusBelgiumBelizeBeninBermudaBhutanBiografijaBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaObe polji sta prazni.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaVeč dejanj hkratiBurkina FasoBurundiCambodiaCameroonCanadaPrekiniCape VerdeCayman IslandsCentral African RepublicChadPreverite vaš e-naslov za potrditveno povezavo.CheckboxChileChinaIzberite enega izmed podprtih tipov poljIzberite eno izmed podprtih polj, s katerimi upravljate namestite ročno.Izbira državeCroatiaCubaCuracaoPreusmeritve po meriPrilagodite vaše obrazce po svojih željah (*)CyprusCzech RepublicFormat datumaIzbira datuma z vmesnikomDeaktivirajPrivzetoPrivzeta vsebinaPrivzeta možnostPrivzeta(e) možnost(i)Privzeta registracijaPrivzeta registracija & registracija s potrditveno e-poštoPrivzeta vlogaPrivzeti kriterij za razvrščanjePrivzeti vrstni redPrivzeta vrednostPrivzeta vrednost poljaPrivzeta vrednost besedilnega poljaIzbrišiIzbriši vseIzbris vseh elementovIzbriši ta elementDemocratic Republic of the CongoDenmarkOpisOnemogočenoPrikazna sporočilaPrikazno imePrikaži ime kotPrikaži ime javno kotDjiboutiAli hočeteAli hočete odobriti vse izbrane uporabnike?Ali hočete izbrisati vse izbrane uporabnike?Ali hočete neodobriti vse izbrane uporabnike?DominicaDominican RepublicPrenesite sedajPrenašanje in nameščanje...E-naslovNAPAKANAPAKA:East TimorPredloge z enostavnim urejanjem za ustvarjanje seznamov uporabnikov kot tudi za ustvarjanje strani za posamezne uporabnike. Temelječa na kratki kodi (shortcode), ta opcija ponuja veliko možnosti za upravljanje z vašimi seznami.EcuadorUrediUredi profilUredi obrazec za ureditev profilaUredite registracijske obrazceUredi seznam uporabnikovUredi ta elementObrazec za ureditev profilaObrazci za ureditev profilaEgyptEl SalvadorV celoti onemogočite slaba gesla z nastavitvijo najmanjše dolžine gesla in z zahtevo močnih gesel.E-naslovPotrditev e-naslovaSpremenite e-poštna sporočilaZadeva e-pošteObvestilo preko e-pošte je bilo preposlano uporabnikuOmogoči dodatne funkcijeOmogočite vaše moduleVnesite (podroben) opis možnosti za končnega uporabnika
            IzbirnoVnesite seznam vrednosti ločenih z vejico
            Vidno končnemu uporabnikuVnesite seznam vrednosti ločenih z vejico
            To je lahko karkoli, ker je skrito pred uporabniki, ampak ne sme vsebovati posebnih znakov ali opuščajev (apostrofov).Vnesite podroben opis pogojev uporabe za uporabnike.
            Povezave so lahko vnešene s strandardno HTML sintakso: <a href="custom_url">custom_text</a>Vnesite vrednost (med 20 in 200) za velikost prikazne slike
            Če ni določena vrednost, je privzeta vrednost 100Vnesite minimalno št., ki jih mora imeti geslo. Pustite prazno za brez omejitveEquatorial GuineaEritreaEstoniaEthiopiaVse kar boste kadarkoli potrebovali za upravljanje z vašimi uporabniki je verjetno že na voljo v naboru Pro modulov.Primer:Pogled izvlečkaObstoječe straniDodatne funkcijeDodatne funkcijeDodatna profilna polja so na voljo v različicah Hobbyist ali PRODodatni parametri kratke kode (shortcode)Falkland IslandsFaroe IslandsFunkcije, ki vam dajo več nadzora nad vašimi uporabniki, povečano varnost in pomagajo pri borbi proti nezaželenim prijavam.PoljeLastnosti poljaNaslov poljaFijiIzvedite več o PRO modulihFinlandImeIme/PriimekImeInterakcija za moderne uporabnikeZavoljo varnostnih razlogov, morate priskrbeti oddaljeni ip za reCAPTCHA!Kratka koda (shortcode) obrazcaFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesOd (ime)Od (odgovori-na e-naslov)GabonGambiaSplošne nastavitveSplošni upload-iGeorgiaGermanyPridobite novo gesloZačnite z uporabo dodatnih poljGhanaGibraltarVrni se nazajGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald IslandsTukaj lahko aktivirate / deaktivirate module, ki so na voljo za Profile BuilderSkrijHondurasHong KongHungaryIDIcelandČe ste zadovoljni z uporabo %1$s nas prosimo ocenite na WordPress.org. Več zadovoljnih uporabnikov pomeni več dodatnih funkcij, manj napak in boljšo podporo za vse.Če registrirate to različico Profile Builder, boste deležni informacij o posodobitvah, popravkih in tehnične podpore.NeaktivenIndiaIndonesiaVnosno polje / skrito vnosno poljeNamestite sedajNamestitev končanaNeveljaven aktivacijski ključ!Neveljaven ključ!Neveljavno uporabniško ime.IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanNe dovolite, da vaši uporabniki vidijo WordPress nadzorno ploščo, preusmerite jih na sprednjo stran (Front-End) po prijavi ali registraciji - vse samo nekaj klikov stran.KenyaKiribatiKosovoKuwaitKyrgyzstanOznakeLaosZadnji »»PriimekPriimekLatviaLebanonLesothoLiberiaLibyaLiechtensteinPogled seznamaLithuaniaNaložite lastno Profile Builder CSS datoteko na sprednji strani (Front-End):IzpisIzpis »Izpis iz tega računaOdjavi se iz tega računa.PrijavaPrijava je nastavljena na uporabo z e-naslovom. To polje se NE bo prikazalo na sprednji strani (Front-End)! ( te nastavitve lahko spremenite pod zavihkom "%s" )Prijava z e-naslovom ali uporabniškim imenomOdjavaIzgubljeno gesloIzgubljeno geslo?LuxembourgMacaoMacedoniaMadagascarPoskrbite, da se vaši uporabniki prijavljajo s pristnimi e-naslovi. Pri registraciji prejmejo uporabniki na e-naslov obvestilo, v katerem morajo potrditi svoj e-naslov.MalawiMalaysiaMaldivesMaliMaltaUpravljajte s privzetimi in dodatnimi poljiUpravljajte s poljiMarshall IslandsMartiniqueMauritaniaMauritiusMayotteSrednjeMeta-imeMexicoMicronesiaNajmanjša dolžina gesla ter prikaz težavnosti geslaNajmanjša dolžina gesla:Najmanjša težavnost gesla:Najmanjša dolžina %d znakovMinimalna zahtevana različica Profile Builder:ModuliMoldovaMonacoMongoliaMontenegroMontserratVeč informacijPovezava do več informacijVeč...MoroccoMozambiqueVeč obrazcev za urejanje profilaVeč registracijskih obrazcevMora biti veljaven e-naslov ali oznaka {{reply_to}}, ki ima privzeto vrednost e-naslova skrbnika straniMyanmarImeIme/OpisNamibiaNauruNepalNetherlandsNew CaledoniaNov obrazec za ureditev profilaNov registracijski obrazecNov seznam uporabnikovNew ZealandNovi naročnik na %1$s.

            Uporabniško ime:%2$s
            E-naslov:%3$s
            Naslednji » NicaraguaVzdevekNigerNigeriaNiueNeNoben obrazec za urejanje profila ni bil najdenNoben obrazec za urejanje profila ni bil najden v smetehNoben registracijski obrazec ni bil najdenNoben registracijski obrazec ni bil najden v smetehNoben seznam uporabnikov ni bil najdenNoben seznam uporabnikov ni bil najden v smetehNi najdenih elementov.Brez rezultatov!NobenNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNi združljivo s Profile BuilderNi združljivo z vašo različico Profile BuilderSedaj ko ste pridobili svoj izvod %s, si vzamite čas in ga registrirajte z serijsko številko, ki ste jo dobiliŠtevilo objavŠtevilo uporabnikov/straniOmanSamo skrbniki strani lahko vidijo to polje na urejanju profilnih obrazcevSamo skrbnik strani lahko doda nove uporabnike.MožnostiPrepiši obstoječeOštevilčenje straniPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayGesloGeslo izgubljeno in najdenoSpletni naslov strani za obnovitev gesla (izbirno):E-pošta za ponastavitev geslaE-pošta o uspešni ponastavitvi geslaPonastavitev gesla od "%1$s"Geslo je bilo uspešno ponastavljeno za %1$s na "%2$s"Naredite vso e-pošto, ki je poslana vašim uporabnikom ter skrbnikom strani, bolj osebno. Registracija, potrditvena e-pošta, odobritev / zavrnitev skrbnika strani.PeruPhilippinesPitcairnProsimo preverite, da ste vnesli pravilen e-naslov.Prosimo preverite ali ste vnesli pravilno uporabniško ime.Prosimo izberite drugačen tip polja, ker to polje že obstaja v vašem obrazcu (mora biti unikatno) Prosimo vpišite veljavno uporabniško ime.Prosimo vnesite vrednost za zahtevano poljeProsimo vpišite vaše uporabniško ime ali e-naslovProsimo izberite vsaj eno vlogo uporabnika Prosimo poskusite drugega!PolandPortugalObjaveZmogljivi moduli (**)Prijavni gradnik Profile BuilderRegistriranje Profile BuilderPuerto RicoQatarIzbirni gumbi (radio buttons)Naključno (zelo počasno pri velikih bazah > 10k uporabnikov)Obnovitev geslaPreusmeritevRegistriraj seRegistrirajte različicoRegistrirajte vašo različicoRegistrirajte spletni naslov strani (izbirno):RegistriranRegistracijaRegistracija & urejanje profilaDatum registracijeRegistracijski obrazecRegistracijski obrazciRegistracija z odobritvijo skrbnika straniRegistracija s potrditveno e-poštoNe pozabite, da mora v bazi obstajati par polje-vrednostOdstraniPonovite gesloOdgovori naRepublic of the CongoZahtevanoPonovno pošlji aktivacijsko e-poštoPonastavitveni ključPonastavitvena povezavaPonastavi gesloPonastavitveni spletni naslovOmeji seznam uporabnikov samo na izbrane vloge
            Če niso izbrane, vzami privzeto vse vlogePonoven poskus namestitveReunionVlogaVloge za prikazRomaniaŠtevilo vrsticRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaShraniShrani spremembeShrani nastavitveShranite vrstni red vlog uporabnikov s pomočjo potrditvenih poljIščiIšči uporabnike po vseh poljihIšči po vseh poljihIšči med obrazci za urejanje profilaIšči med registracijskimi obrazciIšči po seznamu uporabnikovSkriti ključSelectIzberi vseIzberite katere vloge uporabnikov se prikažejo uporabniku ( povleci in spusti za razvrstitev )Izbira 'Da' bo dodala polje na seznam, ampak če v bazi obstaja še eno polje z istim meta-imenom bo polje v bazi prepisano.
            Uporabite na lastno odgovornostPošlji te vpisne podatke po e-pošti.SenegalSerbiaNastavi vlogoNastavi velikost prikazne slike samo na vseobsegajočih seznamih uporabnikovNastavi prikazno sliko samo na enojnih seznamih uporabnikovNastavi privzeti kriterij za razvrščanje
            To je lahko začasno nastavljeno za vsako novo sejoNastavi privzeti vrstni red
            To je lahko začasno nastavljeno za vsako novo sejoNastavi število uporabnikov, ki se jih prikaže na vsaki oštevilčeni strani seznama uporabnikovPostavite več registracijskih obrazcev z različnimi polji za določene vloge uporabnikov. Zajemite več različnih informacij od različnih tipov uporabnikov.SeychellesDelite malo svoje biografije, da zapolnite profil. Ta del bo lahko javno dostopen.Kratka koda (shortcode)PrikažiPrikaži vse datumePrikaži/skrij Admin Bar na sprednji strani (Front-End)Sierra LeoneDatum registracijeSingaporePredloga za seznam enega uporabnikaSint MaartenKljuč spletne straniIme spletnega mestaSpletni naslovSlovakiaSloveniaSolomon IslandsSomaliaNekdo je oddal prošnjo za ponastavitev gesla za sledeči uporabniški račun: %1$s
            Če je to bila pomota, ignorirajte to e-pošto in nič se ne bo zgodilo.
            Za ponastavitev gesla, obiščite sledečo povezavo:%2$sNekaj je šlo narobe, povezava na strežnik je bila neuspešna. Prosimo poizkusite kasneje.Oprostite, ampak nimate pravic za dokočnanje tega dejanja!South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainDoločite spletno povezavo na katero bodo preusmerjeni uporabniki ko se registrirajo s tem obrazcem
            Uporabite sledeči format: http://www.mysite.comDoločite spletno povezavo strani, na katero bodo preusmerjeni uporabniki, ko posodobijo svoj profil preko tega obrazca
            Uporabite naslednji format: http://www.mysite.comDoločite končnice na katere hočete omejiti naložene datoteke
            Primer: .ext1,.ext2,.ext3
            Če niso določene, so privzete končnice vse dovoljene WordPress končnice (.*)Določite končnice na katere hočete omejiti naložene datoteke
            Primer: .ext1,.ext2,.ext3
            Če niso določene, so privzete končnice: .jpg,.jpeg,.gif,.png (.*)Določite število vrstic za polje 'Textarea'
            Če ni določeno, je privzeta vrednost 5Določite katere možnosti naj bodo privzeto označene
            Če mislite napisate več možnosti, jih ločite z ',' (vejica)Določite možnost, ki naj bo izbrana kot privzetaDoločite stran, kamor bodo uporabniki preusmerjeni po potrditvi svojega e-naslova. Ta stran se lahko razlikuje od strani za registracijo in je lahko spremenjena kadarkoli. Če ni izbrana nobena stran, se bo uporabniku prikazala preprosta potrditvena stran.Sri LankaStatusIndikator moči geslaMočnoSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaSplošni pogojiTextareaThailandTo polje je že v tem obrazcu To meta-ime je že v uporabi To uporabniško ime je že aktivno!"Odobritev s strani skrbnikov" možnost je bila aktivirana ob času registracije, tako da ne pozabite, da morate uporabnika odobriti preden se lahko prijavi!Račun %1s je bil uspećno ustvarjen!Najboljši način za registracijo na sprednji strani (Front-End), urejanje profila in obrazce za prijavo.Vnešeni e-naslov ni bil najden v bazi!E-naslov, ki ste ga vnesli, ni veljaven.Vnešena velikost prikazne slike ni med 20 in 200 Vnešena vrednost velikosti prikazne slike ni numerična Vnešeni gesli se ne ujemata!Vnešena vrednost za vrstico ni numerična Vnešena vrednost za datumski vmesnik ni v veljavnem formatu datuma Sledeča možnost ni sovpadale s tistimi iz seznama možnosti: %s Sledeče možnosti niso sovpadale s tistimi iz seznama možnosti: %s Meta-ime ne more biti prazno Geslo mora biti najmanj takšne težavnosti: %sGeslo mora imeti najmanj %s znakovVnešeno geslo je nepravilno.Gesli se ne ujemataSkriti ključ iz Googla, www.google.com/recaptchaIzbranega uporabnika ni bilo moč zbrisatiIzbrani uporabniki so bili aktiviraniIzbranim uporabnikom so bile ponovno poslane potrditvene e-pošteSerisjke številke ni bilo možno validirati, ker je potekla!Serijske številke ni bilo možno validirati, ker je proces naletel na časovno omejitev. To se lahko zgodi zaradi napake v strežniku. Prosimo poizkusite ponovno kasneje!Vnešena serijska številka ni bila validirana!Serijska številka bo kmalu potekla!Serijska številka je bila uspešno validirana!Kratka koda (shortcode) bo na voljo po objavi tega obrazca.Ključ Google strani, www.google.com/recaptchaSeznam uporabnikov bo viden samo prijavljenim uporabnikomSeznam uporabnikov bo viden samo naslednjim vlogamVnešeno uporabniško ime ni bilo najdeno v bazi!Uporabniškega imena se ne more spremeniti.Prišlo je do napake pri oddaji obrazcaPrišlo je do napake pri zadnjem dejanju!Prišlo je do napake pri aktiviranju uporabnikaPrišlo je do napake pri aktivaciji uporabnika.Prišlo je do napake pri pošiljanju aktivacijske povezave na %1$s!Te nastavitve bodo podvojene tudi na "Oblikovalec Skrbniškega E-naslova" strani z nastavitvami ob shranitvi.Te nastavitve se shranijo tudi (kopirajo) v "Oblikovalec Uporabniškega E-naslova" stran z nastavitvami ob shranitvi.Ta e-naslov je že v uporabi.Ta e-naslov je že rezerviran in bo kmalu uporabljen.To polje je obveznoTa obrazec je prazen.Ta prijavni gradnik vam omogoča dodajanje prijavnega obrazca v stransko vrstico.To sporočilo je vidno samo skrbnikom straniTo uporabniško ime že obstaja.To uporabniško ime je že aktivno!To uporabniško ime je že rezervirano, da bo kmalu uporabljeno.To uporabniško ime je neveljavno, ker vsebuje nedovoljene znake.To uporabniško ime je sedaj aktivno!Izbira časovnega pasaNaslov poljaNaslov:Da se bodo uporabniki lahko registrirali na vaši strani preko Profile Builder vtičnika, morate najprej omogočiti registracijo uporabnikov. Pojdite na %1$sNastavitve omrežja%2$s, in pod Registracijske nastavitve označite “Uporabniški računi so lahko registrirani”. %3$sSkrij%4$sDa se bodo uporabniki lahko registrirali na vaši strani preko Profile Builder vtičnika, morate najprej omogočiti registracijo uporabnikov. Pojdite na %1$sNastavitve%2$s, in pod Članstvo označite “Registrira se lahko kdorkoli”. %3$sSkrij%4$sZa uporabo reCAPTCHA morate priskrbeti API ključZa uporabo reCAPTCHA morate pridobiti API javni ključ od:TogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluPonovno vpišite geslo.Vpišite geslo.U.S. Virgin IslandsURLUgandaUkraineNeodobriNeodobrenObvestilo o neodobritvi uporabnikaUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsPosodobiPosodobite Profile BuilderNaložiUruguayUporabite te kratke kode (shortcode) na straneh, kjer hočete, da se prikažejo obrazci:Uporabite to kratko kodo (shortcode) na strani, kjer hočete, da se prikaže obrazec:Obvestilo o odobritvi uporabnika Oblikovalec Uporabniškega E-naslovaIdentifikacijska št. uporabnikaSeznam uporabnikovMeta uporabnikaUporabnikovo olepšano imeVloga uporabnikaVloge uporabnikovVrstni red vlog uporabnikovUporabnik ni bil najdenUporabnik uspešno odobren!Uporabnik uspešno izbrisan!Uporabnik uspešno neodobren!Uporabnik, ki ga urejate:Vloga uporabnikaStatus uporabnikaNastavitve seznama uporabnikovUporabniško imeUporabniško ime in e-naslovUporabniško ime ali e-naslovUporabniško ime ali e-naslovUporabniškega imena se ne da spremeniti.Uporabniki se lahko registrirajo ali pa jih ročno ustvarite tu.Uporabniki se trenutno ne morejo registrirati, lahko pa jih ročno dodate tu.Uporabniki uspešno odobreni!Uporabniki uspešno izbrisani!Uporabniki uspešno neodobreni!Uporabniki z nepotrjenimi e-nasloviUzbekistanVeljavni oznaki {{reply_to}} in {{site_name}}VanuatuVaticanVenezuelaRazličica %sZelo slaboZelo slaboVietnamPreglej vse parametre kratke kode (shortcode)Ogled obrazcev za urejanje profilaPreglej registracijske obrazceOglej si seznam uporabnikovVidnostVidno samo prijavljenim uporabnikom?Vidno naslednjim vlogamWallis and FutunaSlaboSpletna stranDobrodošli na %1$s!


            Vaše uporabniško ime je:%2$s in geslo:%3$sWestern SaharaAli je polje zahtevano ali neSamodejna prijava novo ustvarjenih uporabnikov
            Deluje le na enojnih instalacijah brez aktiviranih funkcij "Odobritev skrbnikov strani" ter "Potrditvena e-pošta"
            OPOZORILO: Če je vključeno predpomnenje (caching) registracijskega obrazca samodejna prijava ne bo delovalaAli preusmeriti uporabnika na določeno stran ali neZ dodatnimi profilnimi polji lahko ustvarite registracijski obrazec po vaši meri.Yahoo IMYemenDaYimTrenutno ste prijavljeni kot %1$s. %2$sTrenutno ste prijavljeni kot %1s. Ne potrebujete drugega uporabniškega računa. %2sTrenutno ste prijavljeni kot %1$s.Informacije za %s lahko dodate šele ko dodate vnosSeznam nepotrjenih e-naslovov lahko najdete na %1$sUporabniki > Vsi uporabniki > Potrditvena e-pošta%2$s.Seznam e-naslovov uporabnikov lahko najdete na %1$sUporabniki > Vsi uporabniki > Potrditve skrbnikov strani%2$s.Najdete ga lahko v Profile Builder menijuOriginalno datoteko lahko najdete tu: %1$sTe uporabniške vloge ne morete registriratiVi določite kdo bo postal uporabnik vaše strani. Prejmite obvestilo preko e-pošte ali odobrite več uporabnikov iz WordPress-a.Vi določite kdo bo uporabnik na vaši strani. Prejmite obvestilo po e-pošti ali odobrite več uporabnikov hkrati preko WordPress UI. Omogočite Odobritev skrbnikov Strani z nadgradnjo na %1$sHobbyist ali PRO različico%2$s.Na temu seznamu uporabnikov ni nobenega oštevilčenja strani!Nimate zadosti pravic za dokončanje tega dejanja ali pa je prišlo do napake!Uspešno ste spremenili geslo v: %1$sZa urejanje profila morate biti prijavljeni.Vnesti morate veljaven e-naslov.Vnesti morate vrednost za format datuma Vnesti morate vrednost za številko vrstice Vnesti morate skrivni ključ Vnesti morate ključ spletne strani Izbrati morate polje Aktivirati morate možnost seznamov uporabnikov v zavihku "Moduli"Navesti morate naslov obrazca preden ga lahko ustvaritePrejeli boste povezavo, da ustvarite novo geslo preko e-naslovaKmalu boste samodejno preusmerjeni. Če ostanete na tej strani več kot %1$d sekund, prosimo kliknite %2$s.%3$sVaš uporabniški račun mora biti odobren s strani skrbnika strani preden lahko uporabite funkcijo "Obnovitev gesla".Vaš uporabniški račun mora biti odobren s strani skrbnika strani preden lahko uporabite funkcijo "Ponastavitev gesla".Vaš račun na %1$s je bil odobren!Vaš račun na %1$s ni bil odobren!Vaš račun na {{site_name}} je bil odobren!Vaš račun na {{site_name}} ni bil odobren!Vaš e-naslov je bil uspešno potrjen.Vaše geslo je bilo uspešno spremenjeno!Vaš profil je bil uspešno posodobljen!Vaše izbrano geslo pri registracijiVaša seja je potekla! Prosimo ponovno naložite stran in poizkusite ponovnoVaša seja je potekla! Prosimo ponovno naložite stran in poizkusite ponovnoZambiaZimbabwe[%1$s] Aktiviraj %2$s[%1$s] Vaše nove informacije v računu[{{site_name}}] Aktiviraj {{username}}[{{site_name}}] Ponastavitev gesla[{{site_name}}] Uspešno ponastavljeno gesloodobri tega uporabnika?odobrenželite potrditi ta e-naslov?izbriši tega uporabnika iz _signups tabele?izbriši tega uporabnika?prikaže vse uporabnike razen tistih za katere ste določili user_idprikaže samo uporabnike za katere ste določili user_idprikaži uporabnike z določeno meta-vrednostjo znotraj (dodatnega) meta-poljae-naslovtukajreCAPTCHAzahtevanoponovno pošljem aktivacijsko povezavo?prikažineodobri tega uporabnika?neodobrenuporabniško imeuporabniško ime ali e-naslovtranslation/profile-builder-da_DK.po000066600000632041152141651170013503 0ustar00# Translation of Profile Builder in Danish # This file is distributed under the same license as the Profile Builder package. msgid "" msgstr "" "PO-Revision-Date: 2017-05-08 09:42:03+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: GlotPress/0.1\n" "Project-Id-Version: Profile Builder\n" #: profile-builder-2.0/admin/general-settings.php:154 msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s." msgstr "" #: profile-builder-2.0/admin/general-settings.php:146 msgid "\"Roles Editor\" Activated:" msgstr "" #: profile-builder-2.0/features/roles-editor/roles-editor.php:300 msgid "M j, Y @ G:i" msgstr "" #: profile-builder-2.0/front-end/recover.php:117 msgid "Please enter your email address." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yy" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244 msgid "Individual redirects defined in shortcodes; redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1217 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." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "" #: profile-builder-2.0/admin/register-version.php:251 msgid "

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            " msgstr "" #: profile-builder-2.0/admin/register-version.php:246 msgid "

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            " msgstr "" #: profile-builder-2.0/front-end/recover.php:159 msgid "You are already logged in. You can change your password on the edit profile form." msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "" #: profile-builder-2.0/features/functions.php:909 msgid "

            You can visit your site at " msgstr "" #: profile-builder-2.0/features/functions.php:896 msgid "

            Also, you will be able to visit your site at " msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138 msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network." msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36 #: profile-builder-2.0/modules/user-listing/userlisting.php:118 msgid "Blog URL" msgstr "" #: profile-builder-2.0/admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:222 msgid "Blog Details" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:239 msgid "Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579 msgid "Welcome to %1$s!


            Your username is:%2$s" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1320 msgid "View Map" msgstr "" #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267 #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367 #: pb-add-on-woocommerce/index.php:493 msgid "Address line 2" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "Billing Fields" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Billing Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Save the billing fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Billing Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Save the billing fields names" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Shipping Fields" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Shipping Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Save the shipping fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Shipping Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Save the shipping fields names" msgstr "" #: pb-add-on-woocommerce/index.php:305 msgid "Field Name" msgstr "" #: pb-add-on-woocommerce/index.php:369 msgid "Click to edit " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:368 msgid "is not a valid phone number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:377 msgid "is not a number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:382 msgid "must be a multiplier of " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:387 msgid "must be a greater than or equal to " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:392 msgid "must be less than or equal to " msgstr "" #: profile-builder-2.0/admin/add-ons.php:103 msgid "Available in Hobbyist and Pro Versions" msgstr "" #: profile-builder-2.0/admin/add-ons.php:105 msgid "Available in All Versions" msgstr "" #: profile-builder-2.0/admin/add-ons.php:148 msgid "Learn More" msgstr "" #: profile-builder-2.0/admin/basic-info.php:99 msgid "Timepicker" msgstr "" #: profile-builder-2.0/admin/basic-info.php:100 msgid "Colorpicker" msgstr "" #: profile-builder-2.0/admin/basic-info.php:103 msgid "Currency Select" msgstr "" #: profile-builder-2.0/admin/basic-info.php:109 msgid "Number" msgstr "" #: profile-builder-2.0/admin/basic-info.php:114 msgid "Validation" msgstr "" #: profile-builder-2.0/admin/basic-info.php:115 msgid "Map" msgstr "" #: profile-builder-2.0/admin/basic-info.php:116 msgid "HTML" msgstr "" #: profile-builder-2.0/admin/basic-info.php:162 #: profile-builder-2.0/modules/modules.php:117 msgid "Repeater Fields" msgstr "" #: profile-builder-2.0/admin/basic-info.php:163 msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role." msgstr "" #: profile-builder-2.0/admin/general-settings.php:59 msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Show Currency Symbol" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Whether the currency symbol should be displayed after the currency name in the select option." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Show Post Type" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Posts from what post type will be displayed in the select." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:145 msgid "Allowable Values" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:145 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." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Error Message" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Set a custom error message that will be displayed to the user." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Time Format" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Specify the time format." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Google Maps API Key" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Enter your Google Maps API key ( Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "Default Latitude" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "The latitude at which the map should be displayed when no pins are attached." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "Default Longitude" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "The longitude at which the map should be displayed when no pins are attached." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Default Zoom Level" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "Map Height" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "The height of the map." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "HTML Content" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "Add your HTML (or text) content" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Phone Format" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Eg. (###) ###-####" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Empty field won't check for correct phone number." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Heading Tag" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Change heading field size on front-end forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min Number Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Leave it empty for no min value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max Number Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Leave it empty for no max value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Number Step Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 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)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Leave it empty for no restriction" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:564 msgid "Albania Lek" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:565 msgid "Afghanistan Afghani" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:566 msgid "Argentina Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:567 msgid "Aruba Guilder" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:568 msgid "Australia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:569 msgid "Azerbaijan New Manat" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:570 msgid "Bahamas Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:571 msgid "Barbados Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:572 msgid "Bangladeshi taka" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:573 msgid "Belarus Ruble" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:574 msgid "Belize Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:575 msgid "Bermuda Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:576 msgid "Bolivia Boliviano" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:577 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:578 msgid "Botswana Pula" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:579 msgid "Bulgaria Lev" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:580 msgid "Brazil Real" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:581 msgid "Brunei Darussalam Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:582 msgid "Cambodia Riel" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:583 msgid "Canada Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:584 msgid "Cayman Islands Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:585 msgid "Chile Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:586 msgid "China Yuan Renminbi" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:587 msgid "Colombia Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:588 msgid "Costa Rica Colon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:589 msgid "Croatia Kuna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:590 msgid "Cuba Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:591 msgid "Czech Republic Koruna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:592 msgid "Denmark Krone" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:593 msgid "Dominican Republic Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:594 msgid "East Caribbean Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:595 msgid "Egypt Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:596 msgid "El Salvador Colon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:597 msgid "Estonia Kroon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:598 msgid "Euro" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:599 msgid "Falkland Islands (Malvinas) Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:600 msgid "Fiji Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:601 msgid "Ghana Cedis" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:602 msgid "Gibraltar Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:603 msgid "Guatemala Quetzal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:604 msgid "Guernsey Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:605 msgid "Guyana Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:606 msgid "Honduras Lempira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:607 msgid "Hong Kong Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:608 msgid "Hungary Forint" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:609 msgid "Iceland Krona" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:610 msgid "India Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:611 msgid "Indonesia Rupiah" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:612 msgid "Iran Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:613 msgid "Isle of Man Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:614 msgid "Israel Shekel" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:615 msgid "Jamaica Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:616 msgid "Japan Yen" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:617 msgid "Jersey Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:618 msgid "Kazakhstan Tenge" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:619 msgid "Korea (North) Won" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:620 msgid "Korea (South) Won" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:621 msgid "Kyrgyzstan Som" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:622 msgid "Laos Kip" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:623 msgid "Latvia Lat" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:624 msgid "Lebanon Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:625 msgid "Liberia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:626 msgid "Lithuania Litas" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:627 msgid "Macedonia Denar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:628 msgid "Malaysia Ringgit" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:629 msgid "Mauritius Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:630 msgid "Mexico Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:631 msgid "Mongolia Tughrik" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:632 msgid "Mozambique Metical" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:633 msgid "Namibia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:634 msgid "Nepal Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:635 msgid "Netherlands Antilles Guilder" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:636 msgid "New Zealand Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:637 msgid "Nicaragua Cordoba" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:638 msgid "Nigeria Naira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:639 msgid "Norway Krone" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:640 msgid "Oman Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:641 msgid "Pakistan Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:642 msgid "Panama Balboa" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:643 msgid "Paraguay Guarani" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:644 msgid "Peru Nuevo Sol" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:645 msgid "Philippines Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:646 msgid "Poland Zloty" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:647 msgid "Qatar Riyal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:648 msgid "Romania New Leu" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:649 msgid "Russia Ruble" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:650 msgid "Saint Helena Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:651 msgid "Saudi Arabia Riyal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:652 msgid "Serbia Dinar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:653 msgid "Seychelles Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:654 msgid "Singapore Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:655 msgid "Solomon Islands Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:656 msgid "Somalia Shilling" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:657 msgid "South Africa Rand" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:658 msgid "Sri Lanka Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:659 msgid "Sweden Krona" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:660 msgid "Switzerland Franc" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:661 msgid "Suriname Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:662 msgid "Syria Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:663 msgid "Taiwan New Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:664 msgid "Thailand Baht" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:665 msgid "Trinidad and Tobago Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:666 #: profile-builder-2.0/admin/manage-fields.php:667 msgid "Turkey Lira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:668 msgid "Tuvalu Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:669 msgid "Ukraine Hryvna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:670 msgid "United Kingdom Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:671 msgid "Uganda Shilling" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:672 msgid "US Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:673 msgid "Uruguay Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:674 msgid "Uzbekistan Som" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:675 msgid "Venezuela Bolivar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:676 msgid "Viet Nam Dong" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:677 msgid "Yemen Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:678 msgid "Zimbabwe Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1097 msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1314 msgid "Search Location" msgstr "" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754 msgid "You are not allowed to do this." msgstr "" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460 msgid "Search Users" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78 msgid "Conditional Logic" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79 msgid "Conditional Rules" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448 msgid "This field has conditional logic enabled." msgstr "" #: profile-builder-2.0/features/functions.php:685 msgid "Incorrect phone number" msgstr "" #: profile-builder-2.0/front-end/class-formbuilder.php:124 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." msgstr "" #: profile-builder-2.0/front-end/extra-fields/map/map.php:46 #: profile-builder-2.0/front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "" #: profile-builder-2.0/front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bolivia, __( Plurinational State of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bonaire, __( Sint Eustatius and Saba" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brunei Darussalam" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cabo Verde" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cocos (Keeling) Islands" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo, __( the Democratic Republic of the" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cote dIvoire" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Falkland Islands (Malvinas)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Holy See (Vatican City State)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iran, __( Islamic Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Democratic Peoples Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lao Peoples Democratic Republic" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macedonia, __( the former Yugoslav Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Micronesia, __( Federated States of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Moldova, __( Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palestine, __( State of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Russian Federation" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Helena, __( Ascension and Tristan da Cunha" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Martin (French part)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sint Maarten (Dutch part)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Syrian Arab Republic" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Taiwan, __( Province of China" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tanzania, __( United Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Timor-Leste" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Venezuela, __( Bolivarian Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Viet Nam" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( British" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( U.S." msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:186 msgid "User Fields Tags" msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479 msgid "The users selected password at signup" msgstr "" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278 msgid "[{{site_name}}] Notice of Email Change" msgstr "" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289 msgid "Changed Email Address Notification" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Limit" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Enable limit to the number of fields to be generated by users in front end forms " msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "General Limit" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "Limit reached message" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The maximum number of fields has been reached." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The popup message to display when the limit of repeater groups is reached." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Limit per Role" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Leave 0 for unlimited." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Repeated field group" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Manage field or group of fields that will be repeatable." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259 msgid "Edit field group" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260 msgid "Repeatable fields saved!" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277 #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326 msgid "Please enter a unique field title.\n" msgstr "" #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267 msgid "Are you sure you want to delete this?" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:192 msgid "Sort Tags" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:201 #: profile-builder-2.0/modules/user-listing/userlisting.php:2308 msgid "Faceted Menus" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:202 msgid "User Count" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1553 msgid "Show All" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1710 msgid "No options available" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1861 msgid "Remove All Filters" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Label" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Choose the facet name that appears on the frontend" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Facet Type" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Choose the facet menu type" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Facet Meta" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Choose the meta field for the facet menu" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Behaviour" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Narrow the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Expand the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Choose how multiple selections affect the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Visible choices" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Search Fields" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Choose the fields in which the Search Field will look in" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2330 msgid "Search Settings" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:8 #: pb-add-on-woocommerce/shipping-fields.php:8 msgid "Company Name" msgstr "Firmanavn" #: pb-add-on-woocommerce/billing-fields.php:9 #: pb-add-on-woocommerce/shipping-fields.php:9 msgid "Address" msgstr "Adresse" #: pb-add-on-woocommerce/billing-fields.php:5 #: pb-add-on-woocommerce/shipping-fields.php:5 msgid "Country" msgstr "Land" #: pb-add-on-woocommerce/billing-fields.php:11 #: pb-add-on-woocommerce/shipping-fields.php:11 msgid "Town / City" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:12 #: pb-add-on-woocommerce/shipping-fields.php:12 msgid "State / County" msgstr "Stat" #: pb-add-on-woocommerce/billing-fields.php:13 #: pb-add-on-woocommerce/shipping-fields.php:13 msgid "Postcode / Zip" msgstr "Postnr" #: pb-add-on-woocommerce/billing-fields.php:14 msgid "Email Address" msgstr "Email" #: pb-add-on-woocommerce/billing-fields.php:15 msgid "Phone" msgstr "Telefon" #: pb-add-on-woocommerce/billing-fields.php:278 msgid "Ship to a different address?" msgstr "Send til anden adresse" #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437 msgid "Billing Address" msgstr "Fakturerings adresse" #: pb-add-on-woocommerce/index.php:169 msgid "Displays customer billing fields in front-end. " msgstr "Se kunde faktureringsfelter i front-end" #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438 msgid "Shipping Address" msgstr "Leveringsadresse" #: pb-add-on-woocommerce/index.php:173 msgid "Displays customer shipping fields in front-end. " msgstr "Se kunde leveringsfelter i front-end" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Display on WooCommerce Checkout" msgstr "Se på WooCommerce betal siden" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Whether the field should be added to the WooCommerce checkout form or not" msgstr "" #: pb-add-on-woocommerce/index.php:541 msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!" msgstr "WooCommerce skal installeres ag aktiveret for at Profile Builder - WooCommerce Sync Add-on virker!" #: pb-add-on-woocommerce/woosync-page.php:23 #: pb-add-on-woocommerce/woosync-page.php:70 msgid "WooCommerce Sync" msgstr "WooCommerce Sync" #: pb-add-on-woocommerce/woosync-page.php:76 msgid "Choose Register form to display on My Account page:" msgstr "Choose Register form to display on My Account page:" #: pb-add-on-woocommerce/woosync-page.php:81 msgid "Default Register" msgstr "Default Register" #: pb-add-on-woocommerce/woosync-page.php:103 msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce.
            This will also add the Profile Builder Login form to MyAccount page." msgstr "" #: pb-add-on-woocommerce/woosync-page.php:110 msgid "Choose Edit Profile form to display on My Account page:" msgstr "Choose Edit Profile form to display on My Account page:" #: pb-add-on-woocommerce/woosync-page.php:115 msgid "Default Edit Profile" msgstr "Standard editerings profil" #: pb-add-on-woocommerce/woosync-page.php:137 msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce." msgstr "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce." #: profile-builder-2.0/admin/add-ons.php:190 msgid "Recommended Plugins" msgstr "Anbefalede plugins" #: profile-builder-2.0/admin/add-ons.php:219 #: profile-builder-2.0/admin/pms-cross-promotion.php:102 msgid "Free" msgstr "Fri" #: profile-builder-2.0/admin/add-ons.php:221 msgid "Accept user payments, create subscription plans and restrict content on your membership site." msgstr "Accept user payments, create subscription plans and restrict content on your membership site." #: profile-builder-2.0/admin/add-ons.php:222 #: profile-builder-2.0/admin/pms-cross-promotion.php:105 msgid "More Details" msgstr "Flere detaljer" #: profile-builder-2.0/admin/add-ons.php:240 #: profile-builder-2.0/admin/pms-cross-promotion.php:88 #: profile-builder-2.0/admin/pms-cross-promotion.php:123 #: profile-builder-2.0/admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "Plugin er inaktiv" #: profile-builder-2.0/admin/add-ons.php:242 #: profile-builder-2.0/admin/pms-cross-promotion.php:87 #: profile-builder-2.0/admin/pms-cross-promotion.php:125 #: profile-builder-2.0/admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "Plugin er aktiv" #: profile-builder-2.0/admin/add-ons.php:256 #: profile-builder-2.0/admin/pms-cross-promotion.php:146 msgid "Could not install plugin. Retry or install manually." msgstr "Could not install plugin. Retry or install manually." #: profile-builder-2.0/admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "Betalt konto" #: profile-builder-2.0/admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "Paid Member Subscriptions - a free WordPress plugin" #: profile-builder-2.0/admin/pms-cross-promotion.php:37 msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." msgstr "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." #: profile-builder-2.0/admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "Betalt og fri tilmelding" #: profile-builder-2.0/admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "Beskyt indhold" #: profile-builder-2.0/admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "Medlemsstyring" #: profile-builder-2.0/admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "Email skabeloner" #: profile-builder-2.0/admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "Kontostyring" #: profile-builder-2.0/admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "Tilmeldingsstyring" #: profile-builder-2.0/admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "Betalingsstyring" #: profile-builder-2.0/admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "Plugin er aktiv" #: profile-builder-2.0/admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "Plugin er aktiveret" #: profile-builder-2.0/admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "Plugin er blevet deaktiveret" #: profile-builder-2.0/admin/pms-cross-promotion.php:104 msgid "Accept user payments, create subscription plans and restrict content on your website." msgstr "Accepter bruger betaling opret tilmeldings planer og beskyt indhold på din webside." #: profile-builder-2.0/admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "Step by Step Quick Setup" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401 msgid "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45 msgid "After Login" msgstr "Efter logind" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46 msgid "After Logout" msgstr "Efter logud" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47 msgid "After Registration" msgstr "Efter tilmelding" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48 msgid "After Edit Profile" msgstr "Efter brugerprofil opdatering" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Successful Email Confirmation" msgstr "Efter email bekræftelse" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Successful Password Reset" msgstr "Efter psssword reset" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "Dashboard (redirect users from accessing the dashboard)" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55 msgid "User ID" msgstr "Bruger ID" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61 msgid "User ID or Username" msgstr "Bruger ID eller Brugernavn" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "User ID / Username" msgstr "Bruger ID / Brugernavn" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "Please select and enter the ID or username of your user." msgstr "Vælg og intast ID eller brugernavn på din bruger" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131 msgid "Redirect Type" msgstr "Redirect Type" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Redirect URL" msgstr "Redirect URL" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" msgstr "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241 msgid "Individual User Redirects" msgstr "Individual User Redirects" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84 msgid "... Choose" msgstr "... Vælg" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 msgid "Select a user role." msgstr "Vælg brugerrolle" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242 msgid "User Role based Redirects" msgstr "Rollebaseret bruger redirects" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243 msgid "Global Redirects" msgstr "Global Redirects" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133 msgid "Login ( wp_login.php )" msgstr "Logind ( wp_login.php )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134 msgid "Register ( wp-login.php?action=register )" msgstr "Tilmeld ( wp-login.php?action=register )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "Mistet kodeord ( wp-login.php?action=lostpassword )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "Forfatter arkiv ( http://sitename.com/author/admin )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145 msgid "Redirect Default WordPress Forms and Pages" msgstr "Redirect Default WordPress Forms and Pages" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157 msgid "How does this work?" msgstr "Hvordan virker dette ?" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "
            User ID / Username
            Redirect
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 msgid "
            User Role
            Redirect
            URL
            " msgstr "
            User Role
            Redirect
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "
            Redirect
            URL
            " msgstr "
            Redirect
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236 msgid "These redirects happen after a successful action, like registration or after a successful login." msgstr "These redirects happen after a successful action, like registration or after a successful login." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238 msgid "Which redirect happens depends on the following priority:" msgstr "Which redirect happens depends on the following priority:" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247 msgid "Redirect Default WordPress forms and pages" msgstr "Redirect Default WordPress forms and pages" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248 msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder." msgstr "With these you can redirect various WordPress forms and pages to pages created with profile builder." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250 msgid "Available tags for dynamic URLs" msgstr "Available tags for dynamic URLs" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251 msgid "You use the following tags in your URLs to redirect users to various pages." msgstr "You use the following tags in your URLs to redirect users to various pages." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253 msgid "generates a url of the current website homepage." msgstr "generates a url of the current website homepage." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254 msgid "in WordPress the site url can be different then the home url" msgstr "in WordPress the site url can be different then the home url" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255 msgid "the ID of the user" msgstr "Bruger ID " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256 msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." msgstr "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257 msgid "the URL of the previously visited page" msgstr "URL på sidst besøgte side" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352 msgid "You can't add duplicate redirects!" msgstr "Du kan ikke oprette duplicate redirects!" #: profile-builder-2.0/admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "Display name publicly as - only appears on the Edit Profile page!" #: profile-builder-2.0/admin/basic-info.php:37 msgid "Friction-less login using %s shortcode or a widget." msgstr "Friction-less login using %s shortcode or a widget." #: profile-builder-2.0/admin/basic-info.php:41 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "Beautiful registration forms fully customizable using the %s shortcode." #: profile-builder-2.0/admin/basic-info.php:45 msgid "Straight forward edit profile forms using %s shortcode." msgstr "Straight forward edit profile forms using %s shortcode." #: profile-builder-2.0/admin/basic-info.php:58 msgid "Allow users to recover their password in the front-end using the %s." msgstr "Allow users to recover their password in the front-end using the %s." #: profile-builder-2.0/admin/basic-info.php:140 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." msgstr "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s." #: profile-builder-2.0/admin/general-settings.php:115 msgid "\"Admin Approval\" on User Role:" msgstr "Admin godkendelse på denne brugerrolle" #: profile-builder-2.0/admin/general-settings.php:134 msgid "Select on what user roles to activate Admin Approval." msgstr "Select on what user roles to activate Admin Approval." #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Display on PB forms" msgstr "Se på PB forms" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Login" msgstr "PB Login" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Register" msgstr "PB Register" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Recover Password" msgstr "PB Recover Password" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "Select on which Profile Builder forms to display reCAPTCHA" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Display on default WP forms" msgstr "Display on default WP forms" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Login" msgstr "Default WP Login" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Register" msgstr "Default WP Register" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Recover Password" msgstr "Default WP Recover Password" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "Vælg på hvilne standard WP forms de vil se reCAPTCHA" #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default option of the field" msgstr "Standard værdi på feltet" #: profile-builder-2.0/admin/manage-fields.php:282 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Afghanistan" msgstr "Afghanistan" #: profile-builder-2.0/admin/manage-fields.php:283 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aland Islands" msgstr "Aland Islands" #: profile-builder-2.0/admin/manage-fields.php:284 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Albania" msgstr "Albania" #: profile-builder-2.0/admin/manage-fields.php:285 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Algeria" msgstr "Algeria" #: profile-builder-2.0/admin/manage-fields.php:286 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "American Samoa" msgstr "American Samoa" #: profile-builder-2.0/admin/manage-fields.php:287 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Andorra" msgstr "Andorra" #: profile-builder-2.0/admin/manage-fields.php:288 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Angola" msgstr "Angola" #: profile-builder-2.0/admin/manage-fields.php:289 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Anguilla" msgstr "Anguilla" #: profile-builder-2.0/admin/manage-fields.php:290 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antarctica" msgstr "Antarctica" #: profile-builder-2.0/admin/manage-fields.php:291 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" #: profile-builder-2.0/admin/manage-fields.php:292 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Argentina" msgstr "Argentina" #: profile-builder-2.0/admin/manage-fields.php:293 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Armenia" msgstr "Armenia" #: profile-builder-2.0/admin/manage-fields.php:294 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aruba" msgstr "Aruba" #: profile-builder-2.0/admin/manage-fields.php:295 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Australia" msgstr "Australia" #: profile-builder-2.0/admin/manage-fields.php:296 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Austria" msgstr "Austria" #: profile-builder-2.0/admin/manage-fields.php:297 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Azerbaijan" msgstr "Azerbaijan" #: profile-builder-2.0/admin/manage-fields.php:298 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahamas" msgstr "Bahamas" #: profile-builder-2.0/admin/manage-fields.php:299 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahrain" msgstr "Bahrain" #: profile-builder-2.0/admin/manage-fields.php:300 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bangladesh" msgstr "Bangladesh" #: profile-builder-2.0/admin/manage-fields.php:301 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Barbados" msgstr "Barbados" #: profile-builder-2.0/admin/manage-fields.php:302 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belarus" msgstr "Belarus" #: profile-builder-2.0/admin/manage-fields.php:303 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belgium" msgstr "Belgium" #: profile-builder-2.0/admin/manage-fields.php:304 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belize" msgstr "Belize" #: profile-builder-2.0/admin/manage-fields.php:305 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Benin" msgstr "Benin" #: profile-builder-2.0/admin/manage-fields.php:306 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bermuda" msgstr "Bermuda" #: profile-builder-2.0/admin/manage-fields.php:307 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bhutan" msgstr "Bhutan" #: profile-builder-2.0/admin/manage-fields.php:308 msgid "Bolivia" msgstr "Bolivia" #: profile-builder-2.0/admin/manage-fields.php:309 msgid "Bonaire, Saint Eustatius and Saba" msgstr "Bonaire, Saint Eustatius and Saba" #: profile-builder-2.0/admin/manage-fields.php:310 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bosnia and Herzegovina" msgstr "Bosnia and Herzegovina" #: profile-builder-2.0/admin/manage-fields.php:311 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Botswana" msgstr "Botswana" #: profile-builder-2.0/admin/manage-fields.php:312 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bouvet Island" msgstr "Bouvet Island" #: profile-builder-2.0/admin/manage-fields.php:313 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brazil" msgstr "Brazil" #: profile-builder-2.0/admin/manage-fields.php:314 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: profile-builder-2.0/admin/manage-fields.php:315 msgid "British Virgin Islands" msgstr "British Virgin Islands" #: profile-builder-2.0/admin/manage-fields.php:316 msgid "Brunei" msgstr "Brunei" #: profile-builder-2.0/admin/manage-fields.php:317 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bulgaria" msgstr "Bulgaria" #: profile-builder-2.0/admin/manage-fields.php:318 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burkina Faso" msgstr "Burkina Faso" #: profile-builder-2.0/admin/manage-fields.php:319 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burundi" msgstr "Burundi" #: profile-builder-2.0/admin/manage-fields.php:320 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cambodia" msgstr "Cambodia" #: profile-builder-2.0/admin/manage-fields.php:321 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cameroon" msgstr "Cameroon" #: profile-builder-2.0/admin/manage-fields.php:322 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Canada" msgstr "Canada" #: profile-builder-2.0/admin/manage-fields.php:323 msgid "Cape Verde" msgstr "Cape Verde" #: profile-builder-2.0/admin/manage-fields.php:324 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cayman Islands" msgstr "Cayman Islands" #: profile-builder-2.0/admin/manage-fields.php:325 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Central African Republic" msgstr "Central African Republic" #: profile-builder-2.0/admin/manage-fields.php:326 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chad" msgstr "Chad" #: profile-builder-2.0/admin/manage-fields.php:327 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chile" msgstr "Chile" #: profile-builder-2.0/admin/manage-fields.php:328 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "China" msgstr "China" #: profile-builder-2.0/admin/manage-fields.php:329 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Christmas Island" msgstr "Christmas Island" #: profile-builder-2.0/admin/manage-fields.php:330 msgid "Cocos Islands" msgstr "Cocos Islands" #: profile-builder-2.0/admin/manage-fields.php:331 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Colombia" msgstr "Colombia" #: profile-builder-2.0/admin/manage-fields.php:332 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Comoros" msgstr "Comoros" #: profile-builder-2.0/admin/manage-fields.php:333 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cook Islands" msgstr "Cook Islands" #: profile-builder-2.0/admin/manage-fields.php:334 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Costa Rica" msgstr "Costa Rica" #: profile-builder-2.0/admin/manage-fields.php:335 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Croatia" msgstr "Croatia" #: profile-builder-2.0/admin/manage-fields.php:336 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cuba" msgstr "Cuba" #: profile-builder-2.0/admin/manage-fields.php:337 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Curacao" msgstr "Curacao" #: profile-builder-2.0/admin/manage-fields.php:338 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cyprus" msgstr "Cyprus" #: profile-builder-2.0/admin/manage-fields.php:339 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Czech Republic" msgstr "Czech Republic" #: profile-builder-2.0/admin/manage-fields.php:340 msgid "Democratic Republic of the Congo" msgstr "Democratic Republic of the Congo" #: profile-builder-2.0/admin/manage-fields.php:341 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Denmark" msgstr "Denmark" #: profile-builder-2.0/admin/manage-fields.php:342 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Djibouti" msgstr "Djibouti" #: profile-builder-2.0/admin/manage-fields.php:343 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominica" msgstr "Dominica" #: profile-builder-2.0/admin/manage-fields.php:344 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominican Republic" msgstr "Dominican Republic" #: profile-builder-2.0/admin/manage-fields.php:345 msgid "East Timor" msgstr "East Timor" #: profile-builder-2.0/admin/manage-fields.php:346 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ecuador" msgstr "Ecuador" #: profile-builder-2.0/admin/manage-fields.php:347 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Egypt" msgstr "Egypt" #: profile-builder-2.0/admin/manage-fields.php:348 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "El Salvador" msgstr "El Salvador" #: profile-builder-2.0/admin/manage-fields.php:349 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: profile-builder-2.0/admin/manage-fields.php:350 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Eritrea" msgstr "Eritrea" #: profile-builder-2.0/admin/manage-fields.php:351 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Estonia" msgstr "Estonia" #: profile-builder-2.0/admin/manage-fields.php:352 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ethiopia" msgstr "Ethiopia" #: profile-builder-2.0/admin/manage-fields.php:353 msgid "Falkland Islands" msgstr "Falkland Islands" #: profile-builder-2.0/admin/manage-fields.php:354 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Faroe Islands" msgstr "Faroe Islands" #: profile-builder-2.0/admin/manage-fields.php:355 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Fiji" msgstr "Fiji" #: profile-builder-2.0/admin/manage-fields.php:356 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Finland" msgstr "Finland" #: profile-builder-2.0/admin/manage-fields.php:357 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "France" msgstr "France" #: profile-builder-2.0/admin/manage-fields.php:358 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Guiana" msgstr "French Guiana" #: profile-builder-2.0/admin/manage-fields.php:359 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Polynesia" msgstr "French Polynesia" #: profile-builder-2.0/admin/manage-fields.php:360 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Southern Territories" msgstr "French Southern Territories" #: profile-builder-2.0/admin/manage-fields.php:361 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gabon" msgstr "Gabon" #: profile-builder-2.0/admin/manage-fields.php:362 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gambia" msgstr "Gambia" #: profile-builder-2.0/admin/manage-fields.php:363 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Georgia" msgstr "Georgia" #: profile-builder-2.0/admin/manage-fields.php:364 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Germany" msgstr "Germany" #: profile-builder-2.0/admin/manage-fields.php:365 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ghana" msgstr "Ghana" #: profile-builder-2.0/admin/manage-fields.php:366 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gibraltar" msgstr "Gibraltar" #: profile-builder-2.0/admin/manage-fields.php:367 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greece" msgstr "Greece" #: profile-builder-2.0/admin/manage-fields.php:368 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greenland" msgstr "Greenland" #: profile-builder-2.0/admin/manage-fields.php:369 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Grenada" msgstr "Grenada" #: profile-builder-2.0/admin/manage-fields.php:370 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guadeloupe" msgstr "Guadeloupe" #: profile-builder-2.0/admin/manage-fields.php:371 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guam" msgstr "Guam" #: profile-builder-2.0/admin/manage-fields.php:372 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guatemala" msgstr "Guatemala" #: profile-builder-2.0/admin/manage-fields.php:373 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guernsey" msgstr "Guernsey" #: profile-builder-2.0/admin/manage-fields.php:374 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea" msgstr "Guinea" #: profile-builder-2.0/admin/manage-fields.php:375 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: profile-builder-2.0/admin/manage-fields.php:376 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guyana" msgstr "Guyana" #: profile-builder-2.0/admin/manage-fields.php:377 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Haiti" msgstr "Haiti" #: profile-builder-2.0/admin/manage-fields.php:378 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Heard Island and McDonald Islands" msgstr "Heard Island and McDonald Islands" #: profile-builder-2.0/admin/manage-fields.php:379 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Honduras" msgstr "Honduras" #: profile-builder-2.0/admin/manage-fields.php:380 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hong Kong" msgstr "Hong Kong" #: profile-builder-2.0/admin/manage-fields.php:381 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hungary" msgstr "Hungary" #: profile-builder-2.0/admin/manage-fields.php:382 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iceland" msgstr "Iceland" #: profile-builder-2.0/admin/manage-fields.php:383 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "India" msgstr "India" #: profile-builder-2.0/admin/manage-fields.php:384 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Indonesia" msgstr "Indonesia" #: profile-builder-2.0/admin/manage-fields.php:385 msgid "Iran" msgstr "Iran" #: profile-builder-2.0/admin/manage-fields.php:386 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iraq" msgstr "Iraq" #: profile-builder-2.0/admin/manage-fields.php:387 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ireland" msgstr "Ireland" #: profile-builder-2.0/admin/manage-fields.php:388 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Isle of Man" msgstr "Isle of Man" #: profile-builder-2.0/admin/manage-fields.php:389 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Israel" msgstr "Israel" #: profile-builder-2.0/admin/manage-fields.php:390 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Italy" msgstr "Italy" #: profile-builder-2.0/admin/manage-fields.php:391 msgid "Ivory Coast" msgstr "Ivory Coast" #: profile-builder-2.0/admin/manage-fields.php:392 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jamaica" msgstr "Jamaica" #: profile-builder-2.0/admin/manage-fields.php:393 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Japan" msgstr "Japan" #: profile-builder-2.0/admin/manage-fields.php:394 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jersey" msgstr "Jersey" #: profile-builder-2.0/admin/manage-fields.php:395 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jordan" msgstr "Jordan" #: profile-builder-2.0/admin/manage-fields.php:396 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kazakhstan" msgstr "Kazakhstan" #: profile-builder-2.0/admin/manage-fields.php:397 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kenya" msgstr "Kenya" #: profile-builder-2.0/admin/manage-fields.php:398 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kiribati" msgstr "Kiribati" #: profile-builder-2.0/admin/manage-fields.php:399 msgid "Kosovo" msgstr "Kosovo" #: profile-builder-2.0/admin/manage-fields.php:400 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kuwait" msgstr "Kuwait" #: profile-builder-2.0/admin/manage-fields.php:401 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: profile-builder-2.0/admin/manage-fields.php:402 msgid "Laos" msgstr "Laos" #: profile-builder-2.0/admin/manage-fields.php:403 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Latvia" msgstr "Latvia" #: profile-builder-2.0/admin/manage-fields.php:404 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lebanon" msgstr "Lebanon" #: profile-builder-2.0/admin/manage-fields.php:405 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lesotho" msgstr "Lesotho" #: profile-builder-2.0/admin/manage-fields.php:406 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liberia" msgstr "Liberia" #: profile-builder-2.0/admin/manage-fields.php:407 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Libya" msgstr "Libya" #: profile-builder-2.0/admin/manage-fields.php:408 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liechtenstein" msgstr "Liechtenstein" #: profile-builder-2.0/admin/manage-fields.php:409 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lithuania" msgstr "Lithuania" #: profile-builder-2.0/admin/manage-fields.php:410 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Luxembourg" msgstr "Luxembourg" #: profile-builder-2.0/admin/manage-fields.php:411 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macao" msgstr "Macao" #: profile-builder-2.0/admin/manage-fields.php:412 msgid "Macedonia" msgstr "Macedonia" #: profile-builder-2.0/admin/manage-fields.php:413 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Madagascar" msgstr "Madagascar" #: profile-builder-2.0/admin/manage-fields.php:414 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malawi" msgstr "Malawi" #: profile-builder-2.0/admin/manage-fields.php:415 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malaysia" msgstr "Malaysia" #: profile-builder-2.0/admin/manage-fields.php:416 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Maldives" msgstr "Maldives" #: profile-builder-2.0/admin/manage-fields.php:417 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mali" msgstr "Mali" #: profile-builder-2.0/admin/manage-fields.php:418 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malta" msgstr "Malta" #: profile-builder-2.0/admin/manage-fields.php:419 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Marshall Islands" msgstr "Marshall Islands" #: profile-builder-2.0/admin/manage-fields.php:420 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Martinique" msgstr "Martinique" #: profile-builder-2.0/admin/manage-fields.php:421 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritania" msgstr "Mauritania" #: profile-builder-2.0/admin/manage-fields.php:422 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritius" msgstr "Mauritius" #: profile-builder-2.0/admin/manage-fields.php:423 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mayotte" msgstr "Mayotte" #: profile-builder-2.0/admin/manage-fields.php:424 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mexico" msgstr "Mexico" #: profile-builder-2.0/admin/manage-fields.php:425 msgid "Micronesia" msgstr "Micronesia" #: profile-builder-2.0/admin/manage-fields.php:426 msgid "Moldova" msgstr "Moldova" #: profile-builder-2.0/admin/manage-fields.php:427 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Monaco" msgstr "Monaco" #: profile-builder-2.0/admin/manage-fields.php:428 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mongolia" msgstr "Mongolia" #: profile-builder-2.0/admin/manage-fields.php:429 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montenegro" msgstr "Montenegro" #: profile-builder-2.0/admin/manage-fields.php:430 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montserrat" msgstr "Montserrat" #: profile-builder-2.0/admin/manage-fields.php:431 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Morocco" msgstr "Morocco" #: profile-builder-2.0/admin/manage-fields.php:432 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mozambique" msgstr "Mozambique" #: profile-builder-2.0/admin/manage-fields.php:433 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Myanmar" msgstr "Myanmar" #: profile-builder-2.0/admin/manage-fields.php:434 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Namibia" msgstr "Namibia" #: profile-builder-2.0/admin/manage-fields.php:435 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nauru" msgstr "Nauru" #: profile-builder-2.0/admin/manage-fields.php:436 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nepal" msgstr "Nepal" #: profile-builder-2.0/admin/manage-fields.php:437 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Netherlands" msgstr "Netherlands" #: profile-builder-2.0/admin/manage-fields.php:438 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Caledonia" msgstr "New Caledonia" #: profile-builder-2.0/admin/manage-fields.php:439 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Zealand" msgstr "New Zealand" #: profile-builder-2.0/admin/manage-fields.php:440 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nicaragua" msgstr "Nicaragua" #: profile-builder-2.0/admin/manage-fields.php:441 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niger" msgstr "Niger" #: profile-builder-2.0/admin/manage-fields.php:442 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nigeria" msgstr "Nigeria" #: profile-builder-2.0/admin/manage-fields.php:443 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niue" msgstr "Niue" #: profile-builder-2.0/admin/manage-fields.php:444 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norfolk Island" msgstr "Norfolk Island" #: profile-builder-2.0/admin/manage-fields.php:445 msgid "North Korea" msgstr "North Korea" #: profile-builder-2.0/admin/manage-fields.php:446 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: profile-builder-2.0/admin/manage-fields.php:447 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norway" msgstr "Norway" #: profile-builder-2.0/admin/manage-fields.php:448 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Oman" msgstr "Oman" #: profile-builder-2.0/admin/manage-fields.php:449 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pakistan" msgstr "Pakistan" #: profile-builder-2.0/admin/manage-fields.php:450 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palau" msgstr "Palau" #: profile-builder-2.0/admin/manage-fields.php:451 msgid "Palestinian Territory" msgstr "Palestinian Territory" #: profile-builder-2.0/admin/manage-fields.php:452 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Panama" msgstr "Panama" #: profile-builder-2.0/admin/manage-fields.php:453 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: profile-builder-2.0/admin/manage-fields.php:454 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Paraguay" msgstr "Paraguay" #: profile-builder-2.0/admin/manage-fields.php:455 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Peru" msgstr "Peru" #: profile-builder-2.0/admin/manage-fields.php:456 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Philippines" msgstr "Philippines" #: profile-builder-2.0/admin/manage-fields.php:457 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pitcairn" msgstr "Pitcairn" #: profile-builder-2.0/admin/manage-fields.php:458 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Poland" msgstr "Poland" #: profile-builder-2.0/admin/manage-fields.php:459 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Portugal" msgstr "Portugal" #: profile-builder-2.0/admin/manage-fields.php:460 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Puerto Rico" msgstr "Puerto Rico" #: profile-builder-2.0/admin/manage-fields.php:461 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Qatar" msgstr "Qatar" #: profile-builder-2.0/admin/manage-fields.php:462 msgid "Republic of the Congo" msgstr "Republic of the Congo" #: profile-builder-2.0/admin/manage-fields.php:463 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Reunion" msgstr "Reunion" #: profile-builder-2.0/admin/manage-fields.php:464 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Romania" msgstr "Romania" #: profile-builder-2.0/admin/manage-fields.php:465 msgid "Russia" msgstr "Russia" #: profile-builder-2.0/admin/manage-fields.php:466 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Rwanda" msgstr "Rwanda" #: profile-builder-2.0/admin/manage-fields.php:467 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: profile-builder-2.0/admin/manage-fields.php:468 msgid "Saint Helena" msgstr "Saint Helena" #: profile-builder-2.0/admin/manage-fields.php:469 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts and Nevis" #: profile-builder-2.0/admin/manage-fields.php:470 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Lucia" msgstr "Saint Lucia" #: profile-builder-2.0/admin/manage-fields.php:471 msgid "Saint Martin" msgstr "Saint Martin" #: profile-builder-2.0/admin/manage-fields.php:472 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre and Miquelon" #: profile-builder-2.0/admin/manage-fields.php:473 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent and the Grenadines" #: profile-builder-2.0/admin/manage-fields.php:474 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Samoa" msgstr "Samoa" #: profile-builder-2.0/admin/manage-fields.php:475 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "San Marino" msgstr "San Marino" #: profile-builder-2.0/admin/manage-fields.php:476 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sao Tome and Principe" msgstr "Sao Tome and Principe" #: profile-builder-2.0/admin/manage-fields.php:477 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: profile-builder-2.0/admin/manage-fields.php:478 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Senegal" msgstr "Senegal" #: profile-builder-2.0/admin/manage-fields.php:479 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Serbia" msgstr "Serbia" #: profile-builder-2.0/admin/manage-fields.php:480 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Seychelles" msgstr "Seychelles" #: profile-builder-2.0/admin/manage-fields.php:481 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sierra Leone" msgstr "Sierra Leone" #: profile-builder-2.0/admin/manage-fields.php:482 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Singapore" msgstr "Singapore" #: profile-builder-2.0/admin/manage-fields.php:483 msgid "Sint Maarten" msgstr "Sint Maarten" #: profile-builder-2.0/admin/manage-fields.php:484 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovakia" msgstr "Slovakia" #: profile-builder-2.0/admin/manage-fields.php:485 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovenia" msgstr "Slovenia" #: profile-builder-2.0/admin/manage-fields.php:486 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Solomon Islands" msgstr "Solomon Islands" #: profile-builder-2.0/admin/manage-fields.php:487 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Somalia" msgstr "Somalia" #: profile-builder-2.0/admin/manage-fields.php:488 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Africa" msgstr "South Africa" #: profile-builder-2.0/admin/manage-fields.php:489 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Georgia and the South Sandwich Islands" msgstr "South Georgia and the South Sandwich Islands" #: profile-builder-2.0/admin/manage-fields.php:490 msgid "South Korea" msgstr "South Korea" #: profile-builder-2.0/admin/manage-fields.php:491 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Sudan" msgstr "South Sudan" #: profile-builder-2.0/admin/manage-fields.php:492 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Spain" msgstr "Spain" #: profile-builder-2.0/admin/manage-fields.php:493 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sri Lanka" msgstr "Sri Lanka" #: profile-builder-2.0/admin/manage-fields.php:494 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sudan" msgstr "Sudan" #: profile-builder-2.0/admin/manage-fields.php:495 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Suriname" msgstr "Suriname" #: profile-builder-2.0/admin/manage-fields.php:496 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Svalbard and Jan Mayen" msgstr "Svalbard and Jan Mayen" #: profile-builder-2.0/admin/manage-fields.php:497 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Swaziland" msgstr "Swaziland" #: profile-builder-2.0/admin/manage-fields.php:498 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sweden" msgstr "Sweden" #: profile-builder-2.0/admin/manage-fields.php:499 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Switzerland" msgstr "Switzerland" #: profile-builder-2.0/admin/manage-fields.php:500 msgid "Syria" msgstr "Syria" #: profile-builder-2.0/admin/manage-fields.php:501 msgid "Taiwan" msgstr "Taiwan" #: profile-builder-2.0/admin/manage-fields.php:502 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tajikistan" msgstr "Tajikistan" #: profile-builder-2.0/admin/manage-fields.php:503 msgid "Tanzania" msgstr "Tanzania" #: profile-builder-2.0/admin/manage-fields.php:504 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Thailand" msgstr "Thailand" #: profile-builder-2.0/admin/manage-fields.php:505 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Togo" msgstr "Togo" #: profile-builder-2.0/admin/manage-fields.php:506 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tokelau" msgstr "Tokelau" #: profile-builder-2.0/admin/manage-fields.php:507 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tonga" msgstr "Tonga" #: profile-builder-2.0/admin/manage-fields.php:508 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Trinidad and Tobago" msgstr "Trinidad and Tobago" #: profile-builder-2.0/admin/manage-fields.php:509 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tunisia" msgstr "Tunisia" #: profile-builder-2.0/admin/manage-fields.php:510 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkey" msgstr "Turkey" #: profile-builder-2.0/admin/manage-fields.php:511 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkmenistan" msgstr "Turkmenistan" #: profile-builder-2.0/admin/manage-fields.php:512 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Islands" #: profile-builder-2.0/admin/manage-fields.php:513 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tuvalu" msgstr "Tuvalu" #: profile-builder-2.0/admin/manage-fields.php:514 msgid "U.S. Virgin Islands" msgstr "U.S. Virgin Islands" #: profile-builder-2.0/admin/manage-fields.php:515 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uganda" msgstr "Uganda" #: profile-builder-2.0/admin/manage-fields.php:516 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ukraine" msgstr "Ukraine" #: profile-builder-2.0/admin/manage-fields.php:517 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Arab Emirates" msgstr "United Arab Emirates" #: profile-builder-2.0/admin/manage-fields.php:518 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Kingdom" msgstr "United Kingdom" #: profile-builder-2.0/admin/manage-fields.php:519 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States" msgstr "United States" #: profile-builder-2.0/admin/manage-fields.php:520 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: profile-builder-2.0/admin/manage-fields.php:521 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uruguay" msgstr "Uruguay" #: profile-builder-2.0/admin/manage-fields.php:522 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uzbekistan" msgstr "Uzbekistan" #: profile-builder-2.0/admin/manage-fields.php:523 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Vanuatu" msgstr "Vanuatu" #: profile-builder-2.0/admin/manage-fields.php:524 msgid "Vatican" msgstr "Vatican" #: profile-builder-2.0/admin/manage-fields.php:525 msgid "Venezuela" msgstr "Venezuela" #: profile-builder-2.0/admin/manage-fields.php:526 msgid "Vietnam" msgstr "Vietnam" #: profile-builder-2.0/admin/manage-fields.php:527 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Wallis and Futuna" msgstr "Wallis and Futuna" #: profile-builder-2.0/admin/manage-fields.php:528 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Western Sahara" msgstr "Western Sahara" #: profile-builder-2.0/admin/manage-fields.php:529 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Yemen" msgstr "Yemen" #: profile-builder-2.0/admin/manage-fields.php:530 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zambia" msgstr "Zambia" #: profile-builder-2.0/admin/manage-fields.php:531 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zimbabwe" msgstr "Zimbabwe" #: profile-builder-2.0/admin/manage-fields.php:1219 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." msgstr "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." #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237 msgid "Your account has to be confirmed by an administrator before you can log in." msgstr "Di konto skal godekendes af en administrator før du kan logge ind" #: profile-builder-2.0/features/admin-approval/admin-approval.php:216 msgid "Your account has been successfully created!" msgstr "Din konto er oprettet!" #: profile-builder-2.0/features/functions.php:678 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458 msgid "Please enter a (valid) reCAPTCHA value" msgstr "Indtast en valid reCAPTCHA værdi" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 msgid "Click the BACK button on your browser, and try again." msgstr "Tryk på BACK knappen i din browser, og prøv igen." #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78 #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87 msgid "Sorry, you cannot upload this file type for this field." msgstr "Beklager, du kan ikke uploade denne fil type." #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94 msgid "An error occurred, please try again later." msgstr "Der opstaod en fejl, prøv venligst igen senere." #: profile-builder-2.0/modules/user-listing/userlisting.php:282 msgid "More" msgstr "Mere" #: profile-builder-2.0/modules/user-listing/userlisting.php:376 msgid "You do not have permission to view this user list." msgstr "Du har ikke lov til at se denne bruger liste." #: profile-builder-2.0/modules/user-listing/userlisting.php:389 msgid "You do not have the required user role to view this user list." msgstr "Du er ikke oprettet med en rigtige brugerrolle for at se denne liste" #: profile-builder-2.0/modules/user-listing/userlisting.php:2253 msgid "Ascending" msgstr "Stigende" #: profile-builder-2.0/modules/user-listing/userlisting.php:2254 msgid "Descending" msgstr "Faldende" #: profile-builder-2.0/admin/add-ons.php:148 #: profile-builder-2.0/admin/add-ons.php:248 #: profile-builder-2.0/admin/pms-cross-promotion.php:134 #: profile-builder-2.0/admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "Download nu" #: profile-builder-2.0/admin/admin-functions.php:200 msgid "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. " msgstr "Hvis du kan lide at bruge %1$s please rate os på WordPress.org. Flere tilfredse brugere betyder flere features, færre fejl og bedre support til alle." #: profile-builder-2.0/admin/manage-fields.php:82 msgid "Choose one of the supported field types" msgstr "Vælg en af de supporterede felttyper" #: profile-builder-2.0/admin/manage-fields.php:84 msgid ". Extra Field Types are available in Hobbyist or PRO versions." msgstr ".Ekstra felttyper er tilgængelig i Hobbyist or PRO versions." #: profile-builder-2.0/admin/manage-fields.php:131 msgid "Site Key" msgstr "Site nøgle (Key)" #: profile-builder-2.0/admin/manage-fields.php:131 msgid "The site key from Google, www.google.com/recaptcha" msgstr "Site nøgle (Key) fra Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "Secret Key" msgstr "Hemmelig nøgle (Key)" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "The secret key from Google, www.google.com/recaptcha" msgstr "Den hemmelige nøgle (Key) fra Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:1023 msgid "You must enter the site key\n" msgstr "Du skal enter site nøglen (Key)\n" #: profile-builder-2.0/admin/manage-fields.php:1025 msgid "You must enter the secret key\n" msgstr "Du skal enter den hemmelige nøgle (Key)\n" #: profile-builder-2.0/admin/add-ons.php:10 #: profile-builder-2.0/admin/add-ons.php:32 msgid "Add-Ons" msgstr "Tilføjelser" #: profile-builder-2.0/admin/add-ons.php:34 #: profile-builder-2.0/admin/add-ons.php:129 #: profile-builder-2.0/admin/add-ons.php:231 #: profile-builder-2.0/admin/pms-cross-promotion.php:78 #: profile-builder-2.0/admin/pms-cross-promotion.php:114 #: profile-builder-2.0/admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "Aktivér" #: profile-builder-2.0/admin/add-ons.php:36 #: profile-builder-2.0/admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "Dowloader og installerer...." #: profile-builder-2.0/admin/add-ons.php:37 #: profile-builder-2.0/admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "Installationen gennemført" #: profile-builder-2.0/admin/add-ons.php:39 msgid "Add-On is Active" msgstr "Tilføjelser er aktive" #: profile-builder-2.0/admin/add-ons.php:40 msgid "Add-On has been activated" msgstr "Tilføjelser er blevet aktiveret" #: profile-builder-2.0/admin/add-ons.php:41 #: profile-builder-2.0/admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "Geninstallér" #: profile-builder-2.0/admin/add-ons.php:43 #: profile-builder-2.0/admin/add-ons.php:140 msgid "Add-On is active" msgstr "Tilføjelser (add-on) er active" #: profile-builder-2.0/admin/add-ons.php:44 #: profile-builder-2.0/admin/add-ons.php:138 msgid "Add-On is inactive" msgstr "Tilføjelser (add-on) er inactive" #: profile-builder-2.0/admin/add-ons.php:46 #: profile-builder-2.0/admin/add-ons.php:133 #: profile-builder-2.0/admin/add-ons.php:235 #: profile-builder-2.0/admin/pms-cross-promotion.php:90 #: profile-builder-2.0/admin/pms-cross-promotion.php:118 #: profile-builder-2.0/admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "Deaktivér" #: profile-builder-2.0/admin/add-ons.php:47 msgid "Add-On has been deactivated." msgstr "Tilføjelser er blevet deaktiveret" #: profile-builder-2.0/admin/add-ons.php:59 msgid "Something went wrong, we could not connect to the server. Please try again later." msgstr "Et eller andet gik galt, vi kunne ikke forbinde til serveren. Venligst prøv igen senere." #: profile-builder-2.0/admin/pms-cross-promotion.php:137 #: profile-builder-2.0/admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "Installér nu" #: profile-builder-2.0/admin/add-ons.php:153 #: profile-builder-2.0/admin/add-ons.php:251 #: profile-builder-2.0/admin/pms-cross-promotion.php:141 #: profile-builder-2.0/admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "Kompatibel med din version af Profile Builder." #: profile-builder-2.0/admin/add-ons.php:162 msgid "Upgrade Profile Builder" msgstr "Opgradér Profile Builder" #: profile-builder-2.0/admin/add-ons.php:163 msgid "Not compatible with Profile Builder" msgstr "Ikke kompatibel med Profile Builder" #: profile-builder-2.0/admin/add-ons.php:171 msgid "Not compatible with your version of Profile Builder." msgstr "Ikke kompatibel med din version af Profile Builder" #: profile-builder-2.0/admin/add-ons.php:172 msgid "Minimum required Profile Builder version:" msgstr "Minimum krævet version af Profile Builder:" #: profile-builder-2.0/admin/add-ons.php:177 msgid "Could not install add-on. Retry or install manually." msgstr "Kunne ikke installere tilføjelse (add-on). Prøv igen eller install manually." #: profile-builder-2.0/front-end/default-fields/email/email.php:51 msgid "You must enter a valid email address." msgstr "Du skal indtaste en gyldig e-mail adresse." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "Dette brugernavn er ugyldigt, idet det indeholde karaterer / tegn som ikke er tilladte." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "Venligst indtast et gyldigt brugernavn." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72 #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85 msgid "Only administrators can see this field on edit profile forms." msgstr "Kun administratorer kan se dette felt på rediger profilformularer." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81 msgid "As an administrator you cannot change your role." msgstr "Som administrator kan du ikke ændre din rolle." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117 msgid "" "\n" "

            {{username}} has requested a password change via the password reset feature.

            \n" "

            His/her new password is: {{password}}

            \n" msgstr "" "\n" "

            {{username}} har foretaget en ændring af adgangskoden via genskab adgangskode.

            \n" "\n" "

            Hans/hendes nye adgangskode er: {{password}}

            \n" "\n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141 msgid "Admin Notification for User Password Reset" msgstr "Admin meddelelse for genskabning af bruger adgangskode" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46 msgid "Reset Key" msgstr "Genskab nøgle" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47 msgid "Reset Url" msgstr "Genskab URL" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48 msgid "Reset Link" msgstr "Genskab link" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204 msgid "" "\n" "

            Someone requested that the password be reset for the following account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            \n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" msgstr "" "\n" "

            Nogen har foretaget en genskabning af adgangskoden for følgende konto: {{site_name}}
            \n" "Brugernavn: {{username}}

            \n" "

            Hvis dette var en fejl skal du blot se bort fra denne email og intet vil ske.

            \n" "

            For at genskabe din adgangskode gå ind på følgende adresse:
            \n" "{{{reset_link}}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218 msgid "[{{site_name}}] Password Reset" msgstr "[{{site_name}}] Nulstil adgangskode " #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229 msgid "Password Reset Email" msgstr "E-mail vedr. nulstilling af adgangskode" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235 msgid "" "\n" "

            You have successfully reset your password to: {{password}}

            \n" msgstr "" "\n" "

            Du har med succes nulstillet din adgangskode til: {{password}}

            \n" "\n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset Successfully" msgstr "[{{site_name}}] Adgangskode nulstillet succesfuldt" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256 msgid "Password Reset Success Email" msgstr "E-mail vedr. adgangskode nulstillet succesfuldt" #: profile-builder-2.0/modules/user-listing/userlisting.php:159 msgid "User Nicename" msgstr "Bruger kaldenavn" #: pb-add-on-woocommerce/woosync-page.php:80 #: pb-add-on-woocommerce/woosync-page.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:499 msgid "None" msgstr "Ingen" #: profile-builder-2.0/admin/admin-functions.php:132 msgid "ERROR: The password must have the minimum length of %s characters" msgstr "FEJL: Adgangskoden skal bestå af mindst %s characters" #: profile-builder-2.0/admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr "FEJL: Adgangskodens styrke skal være mindst: %s" #: profile-builder-2.0/admin/general-settings.php:179 msgid "Username and Email" msgstr "Brugernavn og e-mail" #: profile-builder-2.0/admin/general-settings.php:184 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "\"Brugernavn og e-mail\" - brugere kan logge ind med såvel brugernavn som e-mail." #: profile-builder-2.0/admin/general-settings.php:185 msgid "\"Username\" - users can Log In only with Username." msgstr "\"Brugernavn\" - brugere kan kun logge ind med brugernavn." #: profile-builder-2.0/admin/general-settings.php:186 msgid "\"Email\" - users can Log In only with Email." msgstr "\"E-mail\" - brugere kan kun logge ind med e-mail." #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "Specificer hvilke filformater (extensions) du ønsker at afgrænse til i uploads
            Eks: .ext1,.ext2,.ext3
            Hvis ikke specificeret er default: .jpg,.jpeg,.gif,.png (.*)" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)" msgstr "Specificer hvilke filformater (extensions) du ønsker at afgrænse til i uploads
            Eks: .ext1,.ext2,.ext3
            Hvis ikke specificeret er default alle WordPress tilladte filformater (.*)" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "User Roles" msgstr "Brugerroller" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "Vælg hvilke brugerroller der skal vises for brugerne (\"træk\" og \"slip\" for at om-organiserer)" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "User Roles Order" msgstr "Brugerroller orden" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "Save the user role order from the user roles checkboxes" msgstr "Gem brugerrolle ordenen fra brugerrollernes tjekbokse" #: profile-builder-2.0/admin/manage-fields.php:1128 msgid "Please select at least one user role\n" msgstr "Vælg venligst mindst en brugerrolle\n" #: profile-builder-2.0/admin/register-version.php:22 msgid "Profile Builder Register" msgstr "Registrer Profile Builder" #: profile-builder-2.0/admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "Serienummeret udløber snart!" #: profile-builder-2.0/admin/register-version.php:81 msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr "Dit serienummer er ved at udløbe, venligst %1$s forny din licens%2$s." #: profile-builder-2.0/admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr " Dit serienummer er udløbet, venligst %1$s forny din licens%2$s." #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 msgid "Add Entry" msgstr "Tilføj post" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 msgid "show" msgstr "vis" #: profile-builder-2.0/features/functions.php:736 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" msgstr "For at tillade brugere at registrere sig på din hjemmeside via Profile Builder, skal du først aktivere brugerregistrering. Gå til %1$sNetwork Settings%2$s, og under registreringsopsætningen sørg for at sætte markering ved “Brugerkonti må registreres.” %3$sDismiss%4$s" #: profile-builder-2.0/front-end/class-formbuilder.php:659 msgid "User to edit:" msgstr "Bruger der skal redigeres:" #: profile-builder-2.0/front-end/default-fields/password/password.php:46 #: profile-builder-2.0/front-end/recover.php:262 msgid "The password must have the minimum length of %s characters" msgstr "Adgangskoden skal have en minimumslængde på %s karakterer" #: profile-builder-2.0/front-end/default-fields/password/password.php:50 #: profile-builder-2.0/front-end/recover.php:266 msgid "The password must have a minimum strength of %s" msgstr "Adgangskoden skal minimum have en styrke på %s" #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118 msgid "You cannot register this user role" msgstr "Du kan ikke registrere denne brugerrolle" #: profile-builder-2.0/front-end/login.php:153 msgid "username or email" msgstr "brugernavn eller e-mail" #: profile-builder-2.0/front-end/login.php:222 msgid "Username or Email" msgstr "Brugernavn eller e-mail" #: profile-builder-2.0/front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "Du er i øjeblikket logget ind som %s." #: profile-builder-2.0/front-end/logout.php:15 msgid "Log out »" msgstr "Log ud »" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "Brugerrolle" #: profile-builder-2.0/modules/user-listing/userlisting.php:2167 msgid "View all extra shortcode parameters" msgstr "Se alle ekstra \"shortcode\" parametre" #: profile-builder-2.0/modules/user-listing/userlisting.php:2181 msgid "displays only the users that you specified the user_id for" msgstr "vis kun de brugere som du specificerede 'user_id' for" #: profile-builder-2.0/modules/user-listing/userlisting.php:2187 msgid "displays all users except the ones you specified the user_id for" msgstr "vis alle brugere undtagen dem som du specificerede 'user_id' for" #: profile-builder-2.0/features/functions.php:566 msgid "Minimum length of %d characters" msgstr "Minimum længde på %d karakterer" #: profile-builder-2.0/front-end/class-formbuilder.php:146 #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "This message is only visible by administrators" msgstr "Denne meddelelse er kun synlig for administratorer" #: profile-builder-2.0/modules/user-listing/userlisting.php:413 msgid "User not found" msgstr "Bruger ikke fundet" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "Gyldige tags {{reply_to}} og{{site_name}}" #: profile-builder-2.0/admin/admin-bar.php:48 msgid "Choose which user roles view the admin bar in the front-end of the website." msgstr "Vælg hvilke brugerroller der skal se kontrolpanelet på sitets 'front-end'." #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes" msgstr "Indsæt en komma separeret liste med værdier
            Det kan være hvad som helst, idet værdierne er skjulte for brugeren. Men listen må ikke indeholde specielle karakterer eller apostroffer." #: profile-builder-2.0/admin/manage-fields.php:1055 msgid "The meta-name cannot be empty\n" msgstr "'Meta-name' kan ikke være tom\n" #: profile-builder-2.0/admin/register-version.php:69 msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received" msgstr "Nu du har erhvervet en kopi af %s bør du tage dig tid til at registrere det med serienummeret som du modtog." #: profile-builder-2.0/admin/register-version.php:243 msgid "

            Your Profile Builder serial number is invalid or missing.
            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

            " msgstr "

            DinProfile Builder serienummer er ugyldigt eller mangler.
            Venligst %1$sregistrer din kopi%2$s for at få adgang til automatiske opdateringer og support.Har du brug for en licensnøgle? %3$sPurchase one now%4$s

            " #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17 #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60 msgid "...Choose" msgstr "...Vælg" #: profile-builder-2.0/features/class-list-table.php:526 #: profile-builder-2.0/features/class-list-table.php:942 msgid "1 item" msgstr "1 emne" #: profile-builder-2.0/features/functions.php:552 msgid "Very Weak" msgstr "Meget svag" #: profile-builder-2.0/features/functions.php:640 msgid "This field is required" msgstr "Dette felt er obligatorisk" #: profile-builder-2.0/features/functions.php:704 msgid "Cancel" msgstr "Annuller" #: profile-builder-2.0/features/functions.php:740 msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s" msgstr "For at tillade bruger at registrere sig på dit site via Profile Builder, skal du først aktiverer brugerregistrering. Gå til %1$sIndstillinger -> Generel%2$s fane, og under Medlemskab sørge for at markere “Alle kan registrere sig\". %3$sAfvis%4$s" #: profile-builder-2.0/front-end/login.php:144 msgid "Invalid username." msgstr "Ugyldigt brugernavn" #: profile-builder-2.0/front-end/login.php:149 #: profile-builder-2.0/front-end/login.php:153 msgid "username" msgstr "brugernavn" #: profile-builder-2.0/front-end/login.php:149 msgid "email" msgstr "e-mail" #: profile-builder-2.0/front-end/login.php:256 msgid "Lost your password?" msgstr "Mistet din adgangskode?" #: profile-builder-2.0/index.php:34 msgid " is also activated. You need to deactivate it before activating this version of the plugin." msgstr "er også aktiveret. Du skal deaktivere det før aktivering af plugin'et." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54 msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email" msgstr "Skal være en gyldig e-mail adresse eller {{reply_to}} som default for administrator e-mailen" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508 msgid "Your selected password at signup" msgstr "Din valgte adgangskode ved oprettelse" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save." msgstr "Disse indstillinger gemmes ligeledes på indstillingssiden på 'Admin Email Customizer', når de gemmes." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "Denne formular er tom." #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "Slet alle emner" #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all" msgstr "Slet alt" #: profile-builder-2.0/modules/user-listing/userlisting.php:1621 msgid "Choose..." msgstr "Vælg..." #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Set the number of users to be displayed on every paginated part of the all-userlisting" msgstr "Angiv antallet af brugere som vises på hver side af den samlede brugeroversigt" #: profile-builder-2.0/admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "Vis/Skjul 'Admin menu' på 'Front-end'" #: profile-builder-2.0/admin/admin-bar.php:10 #: profile-builder-2.0/admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "Admin menu indstillinger " #: profile-builder-2.0/admin/admin-bar.php:57 msgid "User-Role" msgstr "Brugerrolle" #: profile-builder-2.0/admin/admin-bar.php:58 msgid "Visibility" msgstr "Synlighed" #: profile-builder-2.0/admin/admin-bar.php:73 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "Default" #: profile-builder-2.0/admin/admin-bar.php:74 msgid "Show" msgstr "Vis" #: profile-builder-2.0/admin/admin-bar.php:75 #: profile-builder-2.0/modules/user-listing/userlisting.php:1554 msgid "Hide" msgstr "Skjul" #: pb-add-on-woocommerce/woosync-page.php:147 #: profile-builder-2.0/admin/admin-bar.php:86 #: profile-builder-2.0/admin/general-settings.php:224 #: profile-builder-2.0/admin/register-version.php:95 #: profile-builder-2.0/features/functions.php:697 #: profile-builder-2.0/modules/modules.php:127 msgid "Save Changes" msgstr "Gem ændringer" #: profile-builder-2.0/admin/admin-functions.php:37 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 )" msgstr "Login er indstillet til at blive foretaget ved hjælp af e-mail. Dette felt vil IKKE fremgå af 'front-end'! (du kan ændre disse indstillinger på \"%s\" fanen)" #: profile-builder-2.0/admin/admin-functions.php:37 #: profile-builder-2.0/admin/general-settings.php:10 #: profile-builder-2.0/admin/general-settings.php:35 msgid "General Settings" msgstr "Generelle indstillinger" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:210 msgid "Very weak" msgstr "Meget svag" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:211 #: profile-builder-2.0/features/functions.php:552 msgid "Weak" msgstr "Svag" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:212 #: profile-builder-2.0/features/functions.php:552 msgid "Medium" msgstr "Middel" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:213 #: profile-builder-2.0/features/functions.php:552 msgid "Strong" msgstr "Stærk" #: profile-builder-2.0/admin/admin-functions.php:187 msgid "Add Field" msgstr "Tilføj felt" #: profile-builder-2.0/admin/admin-functions.php:189 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390 msgid "Save Settings" msgstr "Gem indstillinger" #: profile-builder-2.0/admin/basic-info.php:10 msgid "Basic Information" msgstr "Basis information" #: profile-builder-2.0/admin/basic-info.php:29 msgid "Version %s" msgstr "Version %s" #: profile-builder-2.0/admin/basic-info.php:30 msgid "Profile Builder " msgstr "Profile Builder " #: profile-builder-2.0/admin/basic-info.php:31 msgid "The best way to add front-end registration, edit profile and login forms." msgstr "Den bedste måde at tilføje 'front-end' registrering, redigere profile og login formularer på." #: profile-builder-2.0/admin/basic-info.php:33 msgid "For Modern User Interaction" msgstr "Til 'Modern User Interaction'" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25 #: profile-builder-2.0/admin/basic-info.php:36 #: profile-builder-2.0/features/login-widget/login-widget.php:59 msgid "Login" msgstr "Log ind" #: profile-builder-2.0/admin/basic-info.php:40 msgid "Registration" msgstr "Registrering" #: profile-builder-2.0/admin/basic-info.php:44 msgid "Edit Profile" msgstr "Rediger profil" #: profile-builder-2.0/admin/basic-info.php:51 msgid "Extra Features" msgstr "Ekstra funktioner" #: profile-builder-2.0/admin/basic-info.php:52 msgid "Features that give you more control over your users, increased security and help you fight user registration spam." msgstr "Funktioner som giver dig mere kontrol over dine brugere, forbedret sikkerhed og hjælper dig med at bekæmpe spam ved brugerregistrering." #: profile-builder-2.0/admin/basic-info.php:53 msgid "Enable extra features" msgstr "Aktiver ekstra funktioner" #: profile-builder-2.0/admin/basic-info.php:57 msgid "Recover Password" msgstr "Genskab adgangskode" #: profile-builder-2.0/admin/basic-info.php:61 msgid "Admin Approval (*)" msgstr "Admin godkendelse (*)" #: profile-builder-2.0/admin/basic-info.php:62 msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI." msgstr "Du bestemmer hvem der er bruger på dit site. Få besked via e-mail eller godkende flere brugere ad gangen fra WordPress UI." #: profile-builder-2.0/admin/basic-info.php:65 msgid "Email Confirmation" msgstr "E-mail bekræftelse" #: profile-builder-2.0/admin/basic-info.php:66 msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address." msgstr "Sørg for at brugere registrerer med en ægte e-mail adresse. Ved registrering vil brugerne modtage en e-mail, hvori de skal bekræfte deres e-mail adresse." #: profile-builder-2.0/admin/basic-info.php:69 msgid "Minimum Password Length and Strength Meter" msgstr "Minimum længde og styrke på adgangskode" #: profile-builder-2.0/admin/basic-info.php:70 msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength." msgstr "Undgå svage adgangskoder ved at sætte et krav om min. længde samt sætte et krav om en vis styrke på adgangskoden." #: profile-builder-2.0/admin/basic-info.php:73 msgid "Login with Email or Username" msgstr "Log ind med e-mail eller brugernavn" #: profile-builder-2.0/admin/basic-info.php:74 msgid "Allow users to log in with their email or username when accessing your site." msgstr "Tillad brugere at logge ind med deres e-mail eller brugernavn når de logger ind på dit site." #: profile-builder-2.0/admin/basic-info.php:87 msgid "Customize Your Forms The Way You Want (*)" msgstr "Tilpas dine formularer som du ønsker det (*)" #: profile-builder-2.0/admin/basic-info.php:88 msgid "With Extra Profile Fields you can create the exact registration form your project needs." msgstr "Med ekstra profil felter kan du lave nøjagtigt den registreringsformular, som dit projekt har brug for. " #: profile-builder-2.0/admin/basic-info.php:90 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "Ekstra profilfelter er tilgængelig i Hobbyist og PRO versionerne" #: profile-builder-2.0/admin/basic-info.php:92 msgid "Get started with extra fields" msgstr "Kom i gang med ekstra felter" #: profile-builder-2.0/admin/basic-info.php:95 msgid "Avatar Upload" msgstr "Avatar upload" #: profile-builder-2.0/admin/basic-info.php:96 msgid "Generic Uploads" msgstr "Generisk upload" #: profile-builder-2.0/admin/basic-info.php:97 msgid "Agree To Terms Checkbox" msgstr "Accept af betingelser tjekboks" #: profile-builder-2.0/admin/basic-info.php:98 msgid "Datepicker" msgstr "Datovælger" #: profile-builder-2.0/admin/basic-info.php:101 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: profile-builder-2.0/admin/basic-info.php:102 msgid "Country Select" msgstr "Landevalg" #: profile-builder-2.0/admin/basic-info.php:104 msgid "Timezone Select" msgstr "Tidszone valg" #: profile-builder-2.0/admin/basic-info.php:108 msgid "Input / Hidden Input" msgstr "Input / Skjult input" #: profile-builder-2.0/admin/basic-info.php:110 msgid "Checkbox" msgstr "Tjekboks" #: profile-builder-2.0/admin/basic-info.php:111 msgid "Select" msgstr "Vælg" #: profile-builder-2.0/admin/basic-info.php:112 msgid "Radio Buttons" msgstr "'Radio' knapper" #: profile-builder-2.0/admin/basic-info.php:113 msgid "Textarea" msgstr "Tekstområde" #: profile-builder-2.0/admin/basic-info.php:125 msgid "Powerful Modules (**)" msgstr "Stærke moduler (**)" #: profile-builder-2.0/admin/basic-info.php:126 msgid "Everything you will need to manage your users is probably already available using the Pro Modules." msgstr "Alt hvad du behøver for at håndtere dine brugere er formentlig allerede tilgængeligt ved at bruge Pro Moduler." #: profile-builder-2.0/admin/basic-info.php:128 msgid "Enable your modules" msgstr "Aktiver dine moduler" #: profile-builder-2.0/admin/basic-info.php:131 msgid "Find out more about PRO Modules" msgstr "Fin ud af mere om PRO Moduler" #: profile-builder-2.0/admin/basic-info.php:136 #: profile-builder-2.0/modules/modules.php:89 #: profile-builder-2.0/modules/user-listing/userlisting.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:12 #: profile-builder-2.0/modules/user-listing/userlisting.php:17 #: profile-builder-2.0/modules/user-listing/userlisting.php:23 msgid "User Listing" msgstr "Brugeroversigt" #: profile-builder-2.0/admin/basic-info.php:138 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." msgstr "Brugervenlige skabeloner gør det muligt at liste dit websites bruger ligesom du kan skabe enkelt bruger sider. Og så er det 'Shortcode' baseret, som gør det muligt for dig at tilpasse dine lister/oversigter. " #: profile-builder-2.0/admin/basic-info.php:144 msgid "Email Customizer" msgstr "E-mail opsætning" #: profile-builder-2.0/admin/basic-info.php:145 msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval." msgstr "Personaliser alle e-mails sendt til dine brugere eller administratorer. Ved registrering, e-mail bekræftelse, administrator godkendelse / afvisning." #: profile-builder-2.0/admin/basic-info.php:148 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33 #: profile-builder-2.0/modules/modules.php:110 msgid "Custom Redirects" msgstr "Brugertilpassede omdirigeringer ('redirects')" #: profile-builder-2.0/admin/basic-info.php:149 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." msgstr "Hold dine brugere ud af Wordpress' kontrolpanel ('dashboard'), omdiriger dem til forsiden efter login eller registrering. Alt dette er kun nogle få klik væk." #: profile-builder-2.0/admin/basic-info.php:154 #: profile-builder-2.0/modules/modules.php:75 msgid "Multiple Registration Forms" msgstr "Forskellige registreringsformularer" #: profile-builder-2.0/admin/basic-info.php:155 msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users." msgstr "Opsæt forskellige registreringsformularer med forskellige felter tilpasset bestemte brugeroller. Indsaml forskelligt information fra forskellige brugertyper." #: profile-builder-2.0/admin/basic-info.php:158 #: profile-builder-2.0/modules/modules.php:82 msgid "Multiple Edit-profile Forms" msgstr "Forskellige profil redigerings formularer" #: profile-builder-2.0/admin/basic-info.php:159 msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles." msgstr "Tillad forskellige brugerroller at redigere deres specifikke information. Opsæt forskellige profil redigerings formularer med forskellige felter tilpasset bestemte brugerroller." #: profile-builder-2.0/admin/basic-info.php:187 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr " * kun tilgængelig %1$sHobbyist and Pro versionerne%2$s." #: profile-builder-2.0/admin/basic-info.php:188 msgid "** only available in the %1$sPro version%2$s." msgstr "** kun tilgængelig i %1$sPro version%2$s." #: profile-builder-2.0/admin/general-settings.php:39 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "Brug Profile Builders egen CSS fil i 'front-end':" #: profile-builder-2.0/admin/general-settings.php:42 #: profile-builder-2.0/admin/general-settings.php:55 #: profile-builder-2.0/admin/general-settings.php:104 #: profile-builder-2.0/admin/general-settings.php:151 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Yes" msgstr "Ja" #: profile-builder-2.0/admin/general-settings.php:44 msgid "You can find the default file here: %1$s" msgstr "Du kan finde default filen her: %1$s" #: profile-builder-2.0/admin/general-settings.php:51 msgid "\"Email Confirmation\" Activated:" msgstr "\"E-mail bekræftelse\" aktiveret:" #: profile-builder-2.0/admin/general-settings.php:56 #: profile-builder-2.0/admin/general-settings.php:105 #: profile-builder-2.0/admin/general-settings.php:150 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "No" msgstr "Nej" #: profile-builder-2.0/admin/general-settings.php:61 msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s." msgstr "Du kan finde en liste over ubekræftede e-mail adresser %1$sUsers > All Users > Email Confirmation%2$s." #: profile-builder-2.0/admin/general-settings.php:69 msgid "\"Email Confirmation\" Landing Page:" msgstr "\"E-mail bekræftelse\" landings side:" #: profile-builder-2.0/admin/general-settings.php:74 msgid "Existing Pages" msgstr "Eksisterende sider" #: profile-builder-2.0/admin/general-settings.php:89 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." msgstr "Angiv siden hvortil brugere bliver omdirigeret til når de bekræfter e-mail kontoen. Denne side kan være forskellig fra registrerings siden (siderne) og kan altid ændres. Hvis ingen er valgt vises der en simpel bekræftelsesside for brugeren." #: profile-builder-2.0/admin/general-settings.php:100 msgid "\"Admin Approval\" Activated:" msgstr "\"Administrator godkendelse\" aktiveret:" #: profile-builder-2.0/admin/general-settings.php:108 msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "Du kan finde en liste med brugere på %1$sUsers > All Users > Admin Approval%2$s." #: profile-builder-2.0/admin/general-settings.php:165 msgid "\"Admin Approval\" Feature:" msgstr "\"Administrator godkendelse\" funktion:" #: profile-builder-2.0/admin/general-settings.php:168 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." msgstr "Du bestemmer hvem der er bruger på dit website. Bliv informeret via e-mail eller godkend flere brugere samlet ('bulk') via WordPress UI. Aktiver 'Administrator godkendelse' ved at opgradere til %1$sHobbyist or PRO versions%2$s." #: profile-builder-2.0/admin/general-settings.php:175 msgid "Allow Users to Log in With:" msgstr "Tillad brugere at logge ind med:" #: profile-builder-2.0/admin/general-settings.php:180 #: profile-builder-2.0/admin/manage-fields.php:201 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167 #: profile-builder-2.0/front-end/login.php:85 #: profile-builder-2.0/front-end/login.php:99 #: profile-builder-2.0/front-end/login.php:218 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28 #: profile-builder-2.0/modules/user-listing/userlisting.php:102 #: profile-builder-2.0/modules/user-listing/userlisting.php:277 #: profile-builder-2.0/modules/user-listing/userlisting.php:730 #: profile-builder-2.0/modules/user-listing/userlisting.php:2219 msgid "Username" msgstr "Brugernavn" #: profile-builder-2.0/admin/general-settings.php:181 #: profile-builder-2.0/front-end/login.php:215 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29 #: profile-builder-2.0/modules/user-listing/userlisting.php:736 #: profile-builder-2.0/modules/user-listing/userlisting.php:2220 msgid "Email" msgstr "E-mail" #: profile-builder-2.0/admin/general-settings.php:193 msgid "Minimum Password Length:" msgstr "Min. længde på adgangskode:" #: profile-builder-2.0/admin/general-settings.php:198 msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit" msgstr "Angiv minimum antallet af karakterer som adgangskoden skal bestå af. Lad feltet være tomt for ikke at have minimumsbegrænsning." #: profile-builder-2.0/admin/general-settings.php:205 msgid "Minimum Password Strength:" msgstr "Minimum styrke på adgangskode:" #: profile-builder-2.0/admin/general-settings.php:209 msgid "Disabled" msgstr "Deaktiver" #: profile-builder-2.0/admin/manage-fields.php:12 msgid "Manage Fields" msgstr "Håndter felter" #: profile-builder-2.0/admin/manage-fields.php:13 msgid "Manage Default and Extra Fields" msgstr "Håndter standard ('default') og ekstra felter" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Field Title" msgstr "Felt titel" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Title of the field" msgstr "Feltets titel" #: profile-builder-2.0/admin/manage-fields.php:119 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "Felt" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Meta-name" msgstr "Meta-navn" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "ID" msgstr "ID" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be edited" msgstr "En unik autogenereret ID for dette bestemte felt
            Du kan bruge dette sammen med filtre for at målrette dette element, hvis nødvendigt.
            Kan ikke redigeres " #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Description" msgstr "Beskrivelse" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Enter a (detailed) description of the option for end users to read
            Optional" msgstr "Angiv en (detaljeret) beskrivelse til slutbrugerne af muligheden
            Valgfri" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Row Count" msgstr "Række antal" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5" msgstr "Angiv antallet af rækker i feltet 'Textarea'
            Hvis ikke angivet er default 5 rækker" #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Allowed Image Extensions" msgstr "Tilladte billedformater ('extensions')" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Allowed Upload Extensions" msgstr "Tilladte upload formater ('extensions')" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Avatar Size" msgstr "Avatar størrelse" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100" msgstr "Angiv en værdi (mellem 20 og 200) for størrelsen af 'Avatar'
            Hvis ikke angivet er default sat til 100" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Date-format" msgstr "Datoformat" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Terms of Agreement" msgstr "Aftalebetingelser" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Enter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>" msgstr "Angiv en detaljeret beskrivelse til brugerne af aftalebetingelserne.
            Link kan indsætte ved at anvende standard HTML syntax: <a href=\"custom_url\">custom_text</a>" #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Options" msgstr "Valgmuligheder" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Labels" msgstr "Labels" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "Angiv et komme separeret liste med labels
            Synlig for brugeren" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default Value" msgstr "Standard værdi" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default value of the field" msgstr "Feltets standardværdi" #: profile-builder-2.0/admin/manage-fields.php:138 #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default Option" msgstr "Standard indstillingsvalg" #: profile-builder-2.0/admin/manage-fields.php:138 msgid "Specify the option which should be selected by default" msgstr "Angiv indstillingen som skal vælges som standard" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Default Option(s)" msgstr "Standard indstillingsvalg (flere)" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)" msgstr "Angiv indstillingen som skal vælges som standard
            Hvis der er flere valgmuligheder, separer dem med ',' (et komma)" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default Content" msgstr "Standard indhold" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default value of the textarea" msgstr "Standard værdi for tekstområdet ('textarea')" #: pb-add-on-woocommerce/index.php:306 #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Required" msgstr "Krævet" #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Whether the field is required or not" msgstr "Om feltet er krævet eller ikke" #: profile-builder-2.0/admin/manage-fields.php:161 msgid "Overwrite Existing" msgstr "Overskriv eksisterende" #: profile-builder-2.0/admin/manage-fields.php:161 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
            Use this at your own risk" msgstr "Ved at vælge 'Ja' tilføjes feltet til listen, men vil overskrive ethvert andet felt i databasen som har det samme meta-navn
            Brug dette på eget ansvar" #: profile-builder-2.0/admin/manage-fields.php:167 msgid "Field Properties" msgstr "Felt indstillinger" #: profile-builder-2.0/admin/manage-fields.php:181 msgid "Registration & Edit Profile" msgstr "Registrering & ændre profil" #: profile-builder-2.0/admin/manage-fields.php:200 msgid "Name" msgstr "Navn" #: profile-builder-2.0/admin/manage-fields.php:201 msgid "Usernames cannot be changed." msgstr "Brugernavn kan ikke ændres" #: pb-add-on-woocommerce/billing-fields.php:6 #: pb-add-on-woocommerce/shipping-fields.php:6 #: profile-builder-2.0/admin/manage-fields.php:202 msgid "First Name" msgstr "Fornavn" #: pb-add-on-woocommerce/billing-fields.php:7 #: pb-add-on-woocommerce/shipping-fields.php:7 #: profile-builder-2.0/admin/manage-fields.php:203 msgid "Last Name" msgstr "Efternavn" #: profile-builder-2.0/admin/manage-fields.php:204 #: profile-builder-2.0/modules/user-listing/userlisting.php:769 #: profile-builder-2.0/modules/user-listing/userlisting.php:2227 msgid "Nickname" msgstr "Kælenavn" #: profile-builder-2.0/admin/manage-fields.php:205 msgid "Display name publicly as" msgstr "Vis navn offentligt som" #: profile-builder-2.0/admin/manage-fields.php:206 msgid "Contact Info" msgstr "Kontakt info" #: profile-builder-2.0/admin/manage-fields.php:207 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168 #: profile-builder-2.0/front-end/recover.php:118 #: profile-builder-2.0/modules/user-listing/userlisting.php:108 msgid "E-mail" msgstr "E-mail" #: profile-builder-2.0/admin/manage-fields.php:208 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32 #: profile-builder-2.0/modules/user-listing/userlisting.php:111 #: profile-builder-2.0/modules/user-listing/userlisting.php:751 #: profile-builder-2.0/modules/user-listing/userlisting.php:2221 msgid "Website" msgstr "Website" #: profile-builder-2.0/admin/manage-fields.php:212 msgid "AIM" msgstr "AIM" #: profile-builder-2.0/admin/manage-fields.php:213 msgid "Yahoo IM" msgstr "Yahoo IM" #: profile-builder-2.0/admin/manage-fields.php:214 msgid "Jabber / Google Talk" msgstr "Jabber / Google Talk" #: profile-builder-2.0/admin/manage-fields.php:217 msgid "About Yourself" msgstr "Om dig selv" #: profile-builder-2.0/admin/manage-fields.php:218 #: profile-builder-2.0/modules/user-listing/userlisting.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:754 #: profile-builder-2.0/modules/user-listing/userlisting.php:2222 msgid "Biographical Info" msgstr "Biografi info" #: profile-builder-2.0/admin/manage-fields.php:218 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "Del en lille biografisk information for at fylde din profil ud. Dette kan blive vist offentligt." #: profile-builder-2.0/admin/manage-fields.php:219 #: profile-builder-2.0/front-end/recover.php:73 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "Kodeord" #: profile-builder-2.0/admin/manage-fields.php:219 msgid "Type your password." msgstr "Skriv din kodeord." #: profile-builder-2.0/admin/manage-fields.php:220 #: profile-builder-2.0/front-end/recover.php:74 msgid "Repeat Password" msgstr "Gentag dit kodeord" #: profile-builder-2.0/admin/manage-fields.php:220 msgid "Type your password again. " msgstr "Skriv dit kodeord igen." #: profile-builder-2.0/admin/manage-fields.php:980 #: profile-builder-2.0/admin/manage-fields.php:1137 msgid "You must select a field\n" msgstr "Du skal vælge et felt\n" #: profile-builder-2.0/admin/manage-fields.php:990 msgid "Please choose a different field type as this one already exists in your form (must be unique)\n" msgstr "Vælg venligst en anden felttype, da denne allerede eksistere i din formular. (skal være unik)\n" #: profile-builder-2.0/admin/manage-fields.php:1001 msgid "The entered avatar size is not between 20 and 200\n" msgstr "Den indsatte avatar størrelse er ikke mellem 20 og 200\n" #: profile-builder-2.0/admin/manage-fields.php:1004 msgid "The entered avatar size is not numerical\n" msgstr "Det indtastede rækkenummer er ikke nummereret\n" #: profile-builder-2.0/admin/manage-fields.php:1012 msgid "The entered row number is not numerical\n" msgstr "Det indsatte række nummer er ikke nummeret\n" #: profile-builder-2.0/admin/manage-fields.php:1015 msgid "You must enter a value for the row number\n" msgstr "Du skal indtaste en værdi for rækkenummeret\n" #: profile-builder-2.0/admin/manage-fields.php:1036 msgid "The entered value for the Datepicker is not a valid date-format\n" msgstr "Den indsatte værdi for datovælgeren er ikke korret datoformat\n" #: profile-builder-2.0/admin/manage-fields.php:1039 msgid "You must enter a value for the date-format\n" msgstr "Du skal indskrive en værdi for datoformatet\n" #: profile-builder-2.0/admin/manage-fields.php:1067 #: profile-builder-2.0/admin/manage-fields.php:1075 #: profile-builder-2.0/admin/manage-fields.php:1086 msgid "That meta-name is already in use\n" msgstr "Det meta-navn er allerede i brug\n" #: profile-builder-2.0/admin/manage-fields.php:1117 msgid "The following option(s) did not coincide with the ones in the options list: %s\n" msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s\n" #: profile-builder-2.0/admin/manage-fields.php:1121 msgid "The following option did not coincide with the ones in the options list: %s\n" msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s \n" #: profile-builder-2.0/admin/manage-fields.php:1144 msgid "That field is already added in this form\n" msgstr "Det felt er allerede tilføjet denne formular\n" #: profile-builder-2.0/admin/manage-fields.php:1193 msgid "
            Title
            Type
            Meta Name
            Required
            " msgstr "
            titel
            Type
            Meta navn
            nødvendigt
            " #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108 #: profile-builder-2.0/features/functions.php:718 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Edit" msgstr "Rediger" #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217 #: profile-builder-2.0/features/functions.php:711 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "Delete" msgstr "Slet" #: profile-builder-2.0/admin/manage-fields.php:1208 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "Benyt disse shortcodes på siden du vil have vist formularerne:" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Your Version" msgstr "Registrer din version" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Version" msgstr "Registrer version" #: profile-builder-2.0/admin/register-version.php:70 msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support." msgstr "Hvis du registrere denne version af Profile Builder, så vil du modtage information vedrørende opgraderinger, patches og teknisk support." #: profile-builder-2.0/admin/register-version.php:72 msgid " Serial Number:" msgstr "Serie Nummer:" #: profile-builder-2.0/admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "Serienummeret blev godkendt!" #: profile-builder-2.0/admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "Serienummeret som du har indsat er ikke korrekt!" #: profile-builder-2.0/admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "Serienummeret kunne ikke godkendes da det er udløbet!" #: profile-builder-2.0/admin/register-version.php:85 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!" msgstr "Serienummeret kunne ikke valideres på grund af process time-out. Dette skyldes formentlig at serveren er nede. Venligst prøv igen senere!" #: profile-builder-2.0/admin/register-version.php:87 msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "(f.eks.: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/features/functions.php:725 msgid "Content" msgstr "Indhold" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 msgid "Edit this item" msgstr "Rediger denne" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 msgid "Delete this item" msgstr "Slet denne" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705 msgid "Please enter a value for the required field " msgstr "Venligst indsæt en værdi for feltet" #: pb-add-on-woocommerce/woo-checkout-field-support.php:262 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122 msgid "Select File" msgstr "Vælg en fil" #: pb-add-on-woocommerce/woo-checkout-field-support.php:252 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112 msgid "Remove" msgstr "Fjern" #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8 msgid "You can add the information for the %s after you add a entry" msgstr "Du kan tilføje information for %s efter du har indsat en indtastning" #: pb-add-on-woocommerce/woo-checkout-field-support.php:268 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128 msgid "Upload " msgstr "Upload" #: profile-builder-2.0/features/class-list-table.php:184 msgid "No items found." msgstr "Intet fundet." #: profile-builder-2.0/features/class-list-table.php:308 msgid "Bulk Actions" msgstr "Mængde aktion" #: profile-builder-2.0/features/class-list-table.php:318 msgid "Apply" msgstr "Tilføj" #: profile-builder-2.0/features/class-list-table.php:402 msgid "Show all dates" msgstr "Vis alle datoer" #: profile-builder-2.0/features/class-list-table.php:415 msgid "%1$s %2$d" msgstr "%1$s %2$d" #: profile-builder-2.0/features/class-list-table.php:431 msgid "List View" msgstr "Listevisning" #: profile-builder-2.0/features/class-list-table.php:432 msgid "Excerpt View" msgstr "Uddragsvisning" #: profile-builder-2.0/features/class-list-table.php:458 msgid "%s pending" msgstr "%s afventer" #: profile-builder-2.0/features/class-list-table.php:566 msgid "%1$s of %2$s" msgstr "%1$s of %2$s" #: profile-builder-2.0/features/class-list-table.php:713 msgid "Select All" msgstr "Vælg alt" #: profile-builder-2.0/features/functions.php:526 msgid "Strength indicator" msgstr "Styrkeindikator" #: profile-builder-2.0/features/admin-approval/admin-approval.php:14 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453 msgid "Admin Approval" msgstr "Admin godkendelse" #: profile-builder-2.0/features/admin-approval/admin-approval.php:28 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "Vil du" #: profile-builder-2.0/features/admin-approval/admin-approval.php:51 msgid "Your session has expired! Please refresh the page and try again" msgstr "Din session er udløbet! Venligst opdater siden og prøv igen" #: profile-builder-2.0/features/admin-approval/admin-approval.php:64 msgid "User successfully approved!" msgstr "Bruger godkendt!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:74 msgid "User successfully unapproved!" msgstr "Bruger ikke godkendt!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:80 msgid "User successfully deleted!" msgstr "Bruger slettet!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:85 #: profile-builder-2.0/features/admin-approval/admin-approval.php:131 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "Enten har du ikke tilladelse til dette eller der var en felj!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:96 msgid "Your session has expired! Please refresh the page and try again." msgstr "Din session er udløbet! Opdater venligst siden og prøv igen." #: profile-builder-2.0/features/admin-approval/admin-approval.php:109 msgid "Users successfully approved!" msgstr "Brugere godkendt!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:119 msgid "Users successfully unapproved!" msgstr "Brugere ikke godkendt med succes!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:127 msgid "Users successfully deleted!" msgstr "Brugere slettet!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:147 msgid "Your account on %1$s has been approved!" msgstr "Din konto på %1$s er blevet godkendt!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:148 #: profile-builder-2.0/features/admin-approval/admin-approval.php:151 msgid "approved" msgstr "godkendt" #: profile-builder-2.0/features/admin-approval/admin-approval.php:150 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "En administrator har netop godkendt din konto på %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:155 msgid "Your account on %1$s has been unapproved!" msgstr "Din konto på %1$s er blevet 'ikke-godkendt'!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:156 #: profile-builder-2.0/features/admin-approval/admin-approval.php:159 msgid "unapproved" msgstr "'ikke-godkendt'" #: profile-builder-2.0/features/admin-approval/admin-approval.php:158 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "En administrator har netop sat din konto til 'ikke-godkendt' på %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:177 msgid "ERROR: Your account has to be confirmed by an administrator before you can log in." msgstr "ERROR: Din konto skal godkendes af en administrator før du kan logge ind." #: profile-builder-2.0/features/admin-approval/admin-approval.php:189 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature." msgstr "Din konto skal først være godkendt af en administrator før du kan bruge 'Genskab adgangskode'" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "slet denne bruger?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "sæt denne bruge til 'ikke-godkendt'?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr "Ophæv godkendelsen" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "godkend denne bruger?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "Godkend" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167 #: profile-builder-2.0/modules/user-listing/userlisting.php:278 #: profile-builder-2.0/modules/user-listing/userlisting.php:742 #: profile-builder-2.0/modules/user-listing/userlisting.php:2224 msgid "Firstname" msgstr "Fornavn" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168 #: profile-builder-2.0/modules/user-listing/userlisting.php:745 #: profile-builder-2.0/modules/user-listing/userlisting.php:2225 msgid "Lastname" msgstr "Efternavn" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170 #: profile-builder-2.0/modules/user-listing/userlisting.php:149 #: profile-builder-2.0/modules/user-listing/userlisting.php:279 #: profile-builder-2.0/modules/user-listing/userlisting.php:772 #: profile-builder-2.0/modules/user-listing/userlisting.php:2229 msgid "Role" msgstr "Rolle" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169 msgid "Registered" msgstr "Registreret" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "Brugerstatus" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "Ønsker du at godkende de valgte brugere på én gang?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "Ønsker du at ophæve godkendelsen af de valgte brugere på én gang?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "Ønsker du at slette de valgte brugere på én gang?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278 msgid "Sorry, but you don't have permission to do that!" msgstr "Beklager, men du har ikke rettighederne til at gøre dette!" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339 msgid "Approved" msgstr "Godkendt" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341 msgid "Unapproved" msgstr "Ikke godkendt" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454 msgid "All Users" msgstr "Alle brugere" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 msgid "delete this user from the _signups table?" msgstr "slet denne bruger fra tilmeldingstabellen (_signups table)?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 msgid "confirm this email yourself?" msgstr "bekræft selv denne e-mail?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218 msgid "Confirm Email" msgstr "Bekræft e-mail" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 msgid "resend the activation link?" msgstr "gen-send aktiveringslinket?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219 msgid "Resend Activation Email" msgstr "Gen-send aktiverings e-mailen" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249 msgid "%s couldn't be deleted" msgstr "%s kunne ikke slettes" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253 msgid "All users have been successfully deleted" msgstr "Alle brugere er blevet slettet uden problemer" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263 msgid "The selected users have been activated" msgstr "De valgte brugere er blevet aktiveret" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274 msgid "The selected users have had their activation emails resent" msgstr "De valgte brugere har fået deres aktiverings e-mail gensendt" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "Brugere med ubekræftede e-mail adresser" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "Der opstod en fejl ved udførelsen af denne handling!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "De valgte brugere kunne ikke slettes" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "E-mail besked er gensendt til bruger" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398 msgid "[%1$s] Activate %2$s" msgstr "[%1$s] Aktivér %2$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442 #: profile-builder-2.0/front-end/register.php:71 msgid "Could not create user!" msgstr "Kunne ikke oprette bruger!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445 msgid "That username is already activated!" msgstr "Dette brugernavn er allerede i brug!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468 msgid "There was an error while trying to activate the user" msgstr "Der skete en fejl ved forsøg på at aktivere brugeren" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73 msgid "A new subscriber has (been) registered!" msgstr "En ny abonnent ('subscriber') er blevet registreret!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "Ny abonnent ('subscriber') på %1$s.

            Brugernavn:%2$s
            E-mail:%3$s
            " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634 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!" msgstr "\"Administrator godkendelses\" funktionen blev aktiveret på registreringstidspunktet, så vær venlig at huske at du skal godkende denne bruger før han/hun kan logge ind!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570 msgid "[%1$s] Your new account information" msgstr "[%1$s] Din nye konto information" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581 msgid "Welcome to %1$s!


            Your username is:%2$s and password:%3$s" msgstr "Velkommen til %1$s!


            Dit brugernavn er:%2$s og adgangskoden er:%3$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642 #: profile-builder-2.0/front-end/register.php:125 msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email." msgstr "Før du kan tilgå din konto skal en administrator først godkende det. Du bliver adviseret via a-mail." #: profile-builder-2.0/features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "Denne login widget gør det muligt for dig at tilføje en formular i din sidebar." #: profile-builder-2.0/features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "Profile Builder login widget" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36 #: profile-builder-2.0/front-end/class-formbuilder.php:415 #: profile-builder-2.0/front-end/login.php:250 msgid "Register" msgstr "Registrer" #: profile-builder-2.0/features/login-widget/login-widget.php:63 msgid "Title:" msgstr "Titel:" #: profile-builder-2.0/features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "Efter login URL omdirigering (valgfri):" #: profile-builder-2.0/features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "Registrerings side URL (valgfri):" #: profile-builder-2.0/features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "Adgangskode genskabnings side URL (valgfri)" #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91 #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "Brugernavnene kan ikke ændres." #: profile-builder-2.0/front-end/class-formbuilder.php:136 msgid "Only an administrator can add new users." msgstr "Kun administrator kan tilføje nye brugere." #: profile-builder-2.0/front-end/class-formbuilder.php:146 msgid "Users can register themselves or you can manually create users here." msgstr "Brugere kan registrere sig selv eller du kan manuelt oprette brugere her." #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "Users cannot currently register themselves, but you can manually create users here." msgstr "Brugere kan ikke i øjeblikket registrere sig selv, men du kan manuelt oprette brugere her." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "Du er i øjeblikket logget ind som %1s. Du har ikke brug for en anden konto. %2s" #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Log out of this account." msgstr "Log ud fra denne konto." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Logout" msgstr "Log ud" #: profile-builder-2.0/front-end/class-formbuilder.php:175 msgid "You must be logged in to edit your profile." msgstr "Du skal være logget ind for at redigere din profil." #: profile-builder-2.0/features/functions.php:994 msgid "here" msgstr "her" #: profile-builder-2.0/features/functions.php:995 msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s" msgstr "Du vil snart blive omdirigeret automatisk. Hvis du ser denne side i mere end %1$d seconds, klik venligst %2$s.%3$s" #: profile-builder-2.0/front-end/class-formbuilder.php:315 #: profile-builder-2.0/front-end/class-formbuilder.php:322 msgid "The account %1s has been successfully created!" msgstr "Kontoen %1s er oprettet uden problemer!" #: profile-builder-2.0/front-end/class-formbuilder.php:318 #: profile-builder-2.0/front-end/class-formbuilder.php:328 msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link." msgstr "Før du kan tilgå din konto %1s, skal du bekræfte din e-mail adresse. Tjek venligst din indbakke og klik på aktiveringslinket." #: profile-builder-2.0/front-end/class-formbuilder.php:324 msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email." msgstr "Før du kan tilgå din konto %1s, skal en administrator godkende den. Du vil blive adviseret via e-mail." #: profile-builder-2.0/front-end/class-formbuilder.php:347 msgid "Your profile has been successfully updated!" msgstr "Din profil er blevet opdateret uden problemer!" #: profile-builder-2.0/front-end/class-formbuilder.php:358 msgid "There was an error in the submitted form" msgstr "Der var en fejl i den sendte formular. " #: profile-builder-2.0/front-end/class-formbuilder.php:415 msgid "Add User" msgstr "Tilføj bruger" #: profile-builder-2.0/admin/add-ons.php:170 #: profile-builder-2.0/front-end/class-formbuilder.php:418 msgid "Update" msgstr "Opdater" #: profile-builder-2.0/front-end/class-formbuilder.php:481 msgid "Send these credentials via email." msgstr "Send disse legitimationsoplysninger via e-mail." #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92 #: profile-builder-2.0/front-end/login.php:137 #: profile-builder-2.0/front-end/login.php:144 #: profile-builder-2.0/front-end/login.php:158 #: profile-builder-2.0/front-end/recover.php:17 #: profile-builder-2.0/front-end/recover.php:245 msgid "ERROR" msgstr "FEJL" #: profile-builder-2.0/front-end/login.php:137 msgid "The password you entered is incorrect." msgstr "Adgangskoden du angav er forkert." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Password Lost and Found." msgstr "Adgangskode 'mistet og fundet'" #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Lost your password" msgstr "Mistet din adgangskode" #: profile-builder-2.0/front-end/login.php:158 msgid "Both fields are empty." msgstr "Begge felter er tomme." #: profile-builder-2.0/front-end/login.php:296 msgid "You are currently logged in as %1$s. %2$s" msgstr "Du er i øjeblikket logget ind som %1$s. %2$s" #: profile-builder-2.0/front-end/login.php:295 #: profile-builder-2.0/front-end/logout.php:25 msgid "Log out of this account" msgstr "Log ud af denne konto" #: profile-builder-2.0/front-end/login.php:295 msgid "Log out" msgstr "Log ud" #: profile-builder-2.0/front-end/recover.php:17 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature." msgstr "Din konto skal først godkendes af en administrator før du kan bruge \"Genskab adgangskode\"" #: profile-builder-2.0/front-end/recover.php:94 msgid "Reset Password" msgstr "Genskab adgangskode" #: profile-builder-2.0/front-end/recover.php:121 msgid "Please enter your username or email address." msgstr "Venligst angiv dit brugernavn eller e-mail adresse." #: profile-builder-2.0/front-end/recover.php:125 msgid "You will receive a link to create a new password via email." msgstr "Du modtager et link via e-mail, så du kan oprette en ny adgangskode" #: profile-builder-2.0/front-end/recover.php:122 msgid "Username or E-mail" msgstr "Brugernavn eller e-mail" #: profile-builder-2.0/front-end/recover.php:138 msgid "Get New Password" msgstr "Anmod om ny adgangskode" #: profile-builder-2.0/front-end/recover.php:185 msgid "The username entered wasn't found in the database!" msgstr "Det angivne brugernavn blev ikke fundet i databasen!" #: profile-builder-2.0/front-end/recover.php:185 msgid "Please check that you entered the correct username." msgstr "Tjek venligst at du angav det korrekte brugernavn." #: profile-builder-2.0/front-end/recover.php:200 msgid "Check your e-mail for the confirmation link." msgstr "Tjek din e-mail for bekræftelseslink." #: profile-builder-2.0/front-end/recover.php:235 msgid "Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s" msgstr "Nogen anmodede om at adgangskoden skulle genskabes for følgende konto: %1$s
            Hvis dette var en fejltagelse, så se bare bort fra denne e-mail og intet vil ske.
            For at genskabe din adgangskode, følge dette link:%2$s" #: profile-builder-2.0/front-end/recover.php:238 msgid "Password Reset from \"%1$s\"" msgstr "Adgangskode genskab fra \"%1$s\"" #: profile-builder-2.0/front-end/recover.php:245 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "Der opstod en fejl, da aktivireingslinket blev forsøgt sendt til %1$s!" #: profile-builder-2.0/front-end/recover.php:207 msgid "The email address entered wasn't found in the database!" msgstr "Den angivne e-mail adresse blev ikke fundet i databasen!" #: profile-builder-2.0/front-end/recover.php:207 msgid "Please check that you entered the correct email address." msgstr "Tjek venligst at du angav den korrekte e-mail adresse." #: profile-builder-2.0/front-end/recover.php:273 msgid "Your password has been successfully changed!" msgstr "Din adgangskode er ændret uden problemer!" #: profile-builder-2.0/front-end/recover.php:292 msgid "You have successfully reset your password to: %1$s" msgstr "Du har med succes genskabt din adgangskode til: %1$s" #: profile-builder-2.0/front-end/recover.php:295 #: profile-builder-2.0/front-end/recover.php:306 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "Adgangskoden ændret uden problemer for %1$s på \"%2$s\"" #: profile-builder-2.0/front-end/recover.php:303 msgid "%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s" msgstr "%1$s har anmodet om ændring af adgangskoden via 'Genskab adgangskode'.
            Hans/hendes nye adgagnskode er:%2$s" #: profile-builder-2.0/front-end/recover.php:320 msgid "The entered passwords don't match!" msgstr "Den angivne adgangskode matcher ikke!" #: profile-builder-2.0/front-end/recover.php:375 msgid "ERROR:" msgstr "FEJL:" #: profile-builder-2.0/front-end/recover.php:375 msgid "Invalid key!" msgstr "Ugyldig nøgle!" #: profile-builder-2.0/front-end/register.php:56 msgid "Invalid activation key!" msgstr "Ugyldig aktiveringsnøgle!" #: profile-builder-2.0/front-end/register.php:60 msgid "This username is now active!" msgstr "Dette brugernavn er nu aktivt!" #: profile-builder-2.0/front-end/register.php:74 msgid "This username is already activated!" msgstr "Dette brugernavn er allerede aktiveret!" #: profile-builder-2.0/front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "Din e-mail blev bekræftet uden problemer." #: profile-builder-2.0/front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "Der skete en fejl under forsøget på at aktivere brugeren." #: pb-add-on-woocommerce/index.php:393 #: profile-builder-2.0/front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "E-mailen, som du angav, er ikke en gyldig e-mail adresse." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "Denne e-mail er allerede reserveret til snart at blive anvendt." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 #: profile-builder-2.0/front-end/default-fields/username/username.php:49 #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "Venligst prøv en anden!" #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "Denne e-mail er allerede i brug." #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37 #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "Adgangskoden matcher ikke" #: profile-builder-2.0/front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "Dette brugernavn eksisterer allerede." #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "Dette brugernavn er allerede reserveret til snart at blive anvendt." #: profile-builder-2.0/modules/user-listing/userlisting.php:276 msgid "Avatar" msgstr "Avatar" #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72 #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45 #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45 #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40 #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34 #: profile-builder-2.0/front-end/extra-fields/input/input.php:30 #: profile-builder-2.0/front-end/extra-fields/map/map.php:51 #: profile-builder-2.0/front-end/extra-fields/number/number.php:30 #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39 #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52 #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46 #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49 #: profile-builder-2.0/front-end/extra-fields/select/select.php:51 #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70 #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "krævet" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48 msgid "To use reCAPTCHA you must get an API key from" msgstr "For at bruge 'reCAPTCHA' skal du først have en API nøgle fra" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "Af sikkerhedsmæssige grunde skal du angive 'remote' ip til 'reCAPTCHA'!" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "For at bruge 'reCAPTCHA' skal du have en offentlig API nøgle fra:" #: profile-builder-2.0/modules/modules.php:11 #: profile-builder-2.0/modules/modules.php:58 msgid "Modules" msgstr "Moduler" #: profile-builder-2.0/modules/modules.php:59 msgid "Here you can activate / deactivate available modules for Profile Builder." msgstr "Her kan du aktivere / deaktivere tilgængelige moduler i Profile Builder." #: profile-builder-2.0/modules/modules.php:69 msgid "Name/Description" msgstr "Navn/Beskrivelse" #: profile-builder-2.0/modules/modules.php:70 msgid "Status" msgstr "Status" #: profile-builder-2.0/modules/modules.php:77 #: profile-builder-2.0/modules/modules.php:84 #: profile-builder-2.0/modules/modules.php:91 #: profile-builder-2.0/modules/modules.php:98 #: profile-builder-2.0/modules/modules.php:105 #: profile-builder-2.0/modules/modules.php:112 #: profile-builder-2.0/modules/modules.php:119 msgid "Active" msgstr "Aktiv" #: profile-builder-2.0/modules/modules.php:78 #: profile-builder-2.0/modules/modules.php:85 #: profile-builder-2.0/modules/modules.php:92 #: profile-builder-2.0/modules/modules.php:99 #: profile-builder-2.0/modules/modules.php:106 #: profile-builder-2.0/modules/modules.php:113 #: profile-builder-2.0/modules/modules.php:120 msgid "Inactive" msgstr "Inaktiv" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:96 msgid "Admin Email Customizer" msgstr "Opsætning af administrator e-mails" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:103 msgid "User Email Customizer" msgstr "Opsætning af bruger e-mails" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253 msgid "Save" msgstr "Gem" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "Omdiriger" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "URL" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save." msgstr "Disse indstillinger bliver samtidig også gemt i \"Opsætning af bruger e-mails\" når de gemmes." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41 msgid "From (name)" msgstr "Fra (navn)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49 msgid "From (reply-to email)" msgstr "Fra (svar-til e-mail)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57 msgid "Common Settings" msgstr "Fælles indstillinger" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" msgstr "" "\n" "

            Ny abonnent på {{site_name}}.

            \n" "

            Brugernavn:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274 msgid "Email Subject" msgstr "E-mail emne" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84 msgid "Default Registration & Registration with Email Confirmation" msgstr "Standard registrering & registrering med e-mail bekræftelse" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log in!

            \n" msgstr "" "\n" "

            Ny abonnent på {{site_name}}.

            \n" "

            Brugernavn:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            Administrator godkendelsesfunktione blev aktiveret på tidspunktet for registrering,\n" "så husk venligst at du skal godkende denne bruger før han/hun kan logge ind!

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143 msgid "Registration with Admin Approval" msgstr "Registrering med administrator godkendelse" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "Tilgængelige 'tags'" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170 msgid "User Meta" msgstr "Bruger 'meta'" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "Site URL" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "Site navn" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25 #: profile-builder-2.0/modules/user-listing/userlisting.php:158 msgid "User Id" msgstr "Bruger ID" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33 msgid "Reply To" msgstr "Svar til" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40 msgid "Activation Key" msgstr "Aktiveringsnøgle" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41 msgid "Activation Url" msgstr "Aktiverings URL" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42 msgid "Activation Link" msgstr "Aktiveringslink" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" msgstr "" "\n" "

            Velkommen til {{site_name}}!

            \n" "

            Dit brugernavn er:{{username}} og adgangskode:{{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85 msgid "Default Registration" msgstr "Standard registrering" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91 msgid "" "\n" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials.

            \n" msgstr "" "\n" "

            For at aktivere din bruger klik venligst på følgende link:
            \n" "{{{activation_link}}}

            \n" "

            Efter du aktiverer vil du modtage endnu en e-mail med dine legitimationsoplysninger.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103 msgid "[{{site_name}}] Activate {{username}}" msgstr "[{{site_name}}] Aktivér {{username}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114 msgid "Registration with Email Confirmation" msgstr "Registrering med e-mail bekræftelse" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n" msgstr "" "\n" "

            Velkommen til {{site_name}}!

            \n" "

            Dit brugernavn er:{{username}} og adgangskode:{{password}}

            \n" "

            Før du kan tilgå din konto skal en administrator først godkende den. Du vil få yderligere besked via e-mail.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132 msgid "A new account has been created for you on {{site_name}}" msgstr "En ny konto er blevet oprettet til dig på {{site_name}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148 msgid "" "\n" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Gode nyheder!

            \n" "

            En administrator har netop godkendt din konto: {{username}} på {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159 msgid "Your account on {{site_name}} has been approved!" msgstr "Din konto på {{site_name}} er blevet godkendt!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170 msgid "User Approval Notification" msgstr "Meddelelse om brugergodkendelse" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175 msgid "" "\n" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Hej,

            \n" "

            En administrator har desværre ophævet godkendelsen af din konto: {{username}} på {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187 msgid "Your account on {{site_name}} has been unapproved!" msgstr "Din konto på {{site_name}} er ikke længere godkendt!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198 msgid "Unapproved User Notification" msgstr "Meddelelse om ophævelse af brugerkonto" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "Formular til profilredigering" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13 #: profile-builder-2.0/modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "Tilføj ny" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "Tilføj ny formular til profilredigering" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "Rediger profilredigerings formularer" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "Ny profilredigerings formular" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "Profilredigerings formularer" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "Vis profilredigerings formular" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "Søg profilredigerings formularer" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "Ingen profilredigerings formular fundet" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "Ingen profilredigerings formular fundet i papirkurven" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138 #: profile-builder-2.0/modules/user-listing/userlisting.php:2115 msgid "Shortcode" msgstr "'Shortcode'" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159 #: profile-builder-2.0/modules/user-listing/userlisting.php:2136 msgid "(no title)" msgstr "(ingen titel)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178 #: profile-builder-2.0/modules/user-listing/userlisting.php:2156 msgid "The shortcode will be available after you publish this form." msgstr "'Shortcode' er tilgængelig efter du har publiceret denne formular." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180 #: profile-builder-2.0/modules/user-listing/userlisting.php:2158 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "Brug denne 'shortcode' på den side du ønsker formularen vist:" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184 #: profile-builder-2.0/modules/user-listing/userlisting.php:2162 msgid "Note: changing the form title also changes the shortcode!" msgstr "Bemærk: ændring af denne formulars titel ændrer også 'shortcode'!" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190 #: profile-builder-2.0/modules/user-listing/userlisting.php:2195 msgid "Form Shortcode" msgstr "Formular 'shortcode'" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "Hvorvidt brugeren skal omdirigeres til en bestemt side eller ikke" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "Vis meddelelser" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "Tilladt visningstid (i sekunder) for alle problemfrie meddelelser" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 msgid "Specify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.com" msgstr "Specificer sidens URL som brugere vil blive omdirigeret til så snart de opdaterer deres profil fra denne formular
            Brug følgende format: http://www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "Efter profilopdatering..." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "Tilføj nyt felt til listen" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage Title (Type)" msgstr "
            Titel (Type)
            " #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "Du skal specificere formularens titel før du opretter den" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "Registreringsformular" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "Tilføj ny registreringsformular" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "Rediger registreringsformularer" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "Ny registreringsformular" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "Registreringsformularer" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "Vis registrerinsformularen" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "Søg registreringsformularer" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "Ingen registreringsformular funder" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "Ingen registreringsformularer fundet i papirkurven" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "Standard rolle" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "Indstil rolle" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Choose what role the user will have after (s)he registered
            If not specified, defaults to the role set in the WordPress settings" msgstr "Vælg hvilken rolle brugeren får efter han/hun har registreret sig
            Hvis ikke specificeret, anvendes rollen der er sat som 'default' i WordPress indstillingerne" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "Automatisk log ind" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Whether to automatically log in the newly registered user or not
            Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work" msgstr "Hvorvidt nyligt registrerede brugere skal logges automatisk ind eller ikke
            Virker kun på 'single-sites' hvor \"Administrator godkendelse\" og \"E-mail bekræftelse\" ikke er aktiveret
            ADVARSEL: 'Caching' af registreringsformularer vil bevirke, at den automatiske log ind funktion ikke vil fungere" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "Specify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.com" msgstr "Specificer sidens URL som brugere vil blive omdirigeret til så snart de er registreret via denne formular.
            Brug følgende format: http://www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "Efter registrering..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1038 #: profile-builder-2.0/modules/user-listing/userlisting.php:1485 #: profile-builder-2.0/modules/user-listing/userlisting.php:1953 #: profile-builder-2.0/modules/user-listing/userlisting.php:2426 msgid "Search Users by All Fields" msgstr "Søg brugere ved at bruge 'Alle felter'" #: profile-builder-2.0/modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "Tilføj ny brugeroversigt" #: profile-builder-2.0/modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "Rediger brugeroversigten" #: profile-builder-2.0/modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "Ny brugeroversigt" #: profile-builder-2.0/modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "Vis brugeroversigten" #: profile-builder-2.0/modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "Søg i brugeroversigt" #: profile-builder-2.0/modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "Ingen brugeroversigt fundet" #: profile-builder-2.0/modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "Ingen brugeroversigt fundet i papirkurven" #: profile-builder-2.0/modules/user-listing/userlisting.php:105 msgid "Display name as" msgstr "Vis navn som" #: profile-builder-2.0/modules/user-listing/userlisting.php:150 #: profile-builder-2.0/modules/user-listing/userlisting.php:2223 msgid "Registration Date" msgstr "Registreringsdato" #: profile-builder-2.0/modules/user-listing/userlisting.php:151 #: profile-builder-2.0/modules/user-listing/userlisting.php:2228 msgid "Number of Posts" msgstr "Antal poster" #: profile-builder-2.0/modules/user-listing/userlisting.php:155 msgid "More Info" msgstr "Mere info" #: profile-builder-2.0/modules/user-listing/userlisting.php:156 msgid "More Info Url" msgstr "Mere info URL" #: profile-builder-2.0/modules/user-listing/userlisting.php:157 msgid "Avatar or Gravatar" msgstr "Avatar eller Gravatar" #: profile-builder-2.0/modules/user-listing/userlisting.php:196 #: profile-builder-2.0/modules/user-listing/userlisting.php:227 msgid "Extra Functions" msgstr "Ekstra funktioner" #: profile-builder-2.0/modules/user-listing/userlisting.php:199 msgid "Pagination" msgstr "Sideopdeling" #: profile-builder-2.0/modules/user-listing/userlisting.php:200 msgid "Search all Fields" msgstr "Søg 'Alle felter'" #: profile-builder-2.0/modules/user-listing/userlisting.php:229 msgid "Go Back Link" msgstr "Tilbage link" #: profile-builder-2.0/modules/user-listing/userlisting.php:247 msgid "All-userlisting Template" msgstr "Skabelon for flere-brugeroversigt" #: profile-builder-2.0/modules/user-listing/userlisting.php:250 msgid "Single-userlisting Template" msgstr "Skabelon for enkelt-brugeroversigt" #: profile-builder-2.0/modules/user-listing/userlisting.php:733 msgid "First/Lastname" msgstr "For-/Efternavn" #: profile-builder-2.0/modules/user-listing/userlisting.php:281 #: profile-builder-2.0/modules/user-listing/userlisting.php:739 msgid "Sign-up Date" msgstr "Tilmeldingsdato" #: profile-builder-2.0/modules/user-listing/userlisting.php:748 #: profile-builder-2.0/modules/user-listing/userlisting.php:2226 msgid "Display Name" msgstr "Vis navn som" #: profile-builder-2.0/modules/user-listing/userlisting.php:280 #: profile-builder-2.0/modules/user-listing/userlisting.php:757 msgid "Posts" msgstr "Poster" #: profile-builder-2.0/modules/user-listing/userlisting.php:760 #: profile-builder-2.0/modules/user-listing/userlisting.php:2233 msgid "Aim" msgstr "'Aim'" #: profile-builder-2.0/modules/user-listing/userlisting.php:763 #: profile-builder-2.0/modules/user-listing/userlisting.php:2234 msgid "Yim" msgstr "'Yim'" #: profile-builder-2.0/modules/user-listing/userlisting.php:766 #: profile-builder-2.0/modules/user-listing/userlisting.php:2235 msgid "Jabber" msgstr "'Jabber'" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "Click here to see more information about this user" msgstr "Klik her for at se mere information om denne bruger" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "More..." msgstr "Mere..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1293 msgid "Click here to see more information about this user." msgstr "Klik her for at se mere information om denne bruger." #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 #: profile-builder-2.0/modules/user-listing/userlisting.php:1442 msgid "Click here to go back" msgstr "Klik her for at gå tilbage" #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 msgid "Back" msgstr "Tilbage" #: profile-builder-2.0/modules/user-listing/userlisting.php:1472 msgid "«« First" msgstr "«« Først" #: profile-builder-2.0/modules/user-listing/userlisting.php:1473 msgid "« Prev" msgstr "« Forrige" #: profile-builder-2.0/modules/user-listing/userlisting.php:1474 msgid "Next » " msgstr "Næste » " #: profile-builder-2.0/modules/user-listing/userlisting.php:1475 msgid "Last »»" msgstr "Sidste »»" #: profile-builder-2.0/modules/user-listing/userlisting.php:1504 msgid "You don't have any pagination settings on this userlisting!" msgstr "Du har ingen sideopdeling (paginering) på denne brugeroversigt!" #: profile-builder-2.0/modules/user-listing/userlisting.php:1970 msgid "Search" msgstr "Søg" #: profile-builder-2.0/modules/user-listing/userlisting.php:1971 msgid "Clear Results" msgstr "Ryd resultatet" #: profile-builder-2.0/modules/user-listing/userlisting.php:2165 #: profile-builder-2.0/modules/user-listing/userlisting.php:2169 msgid "Extra shortcode parameters" msgstr "Ekstra 'shortcode' parametre" #: profile-builder-2.0/modules/user-listing/userlisting.php:2172 msgid "displays users having a certain meta-value within a certain (extra) meta-field" msgstr "viser brugere med en bestemt meta-værdi inden for et bestemt (ekstra) meta-felt" #: profile-builder-2.0/modules/user-listing/userlisting.php:2173 msgid "Example:" msgstr "Eksempel:" #: profile-builder-2.0/modules/user-listing/userlisting.php:2175 msgid "Remember though, that the field-value combination must exist in the database." msgstr "Husk dog, at feltværdi kombinationen skal eksistere i databasen." #: profile-builder-2.0/modules/user-listing/userlisting.php:2250 msgid "Random (very slow on large databases > 10K user)" msgstr "Vilkårlig (meget langsom på store databaser > 10K brugere)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Roles to Display" msgstr "Roller der skal vises" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Restrict the userlisting to these selected roles only
            If not specified, defaults to all existing roles" msgstr "Begræns brugeroversigter til kun at omfatte disse udvalgte roller
            Hvis ikke specificeret, så bruges alle eksisterende roller" #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Number of Users/Page" msgstr "Antal brugere/side" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Default Sorting Criteria" msgstr "Standard sorteringskriterie" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Set the default sorting criteria
            This can temporarily be changed for each new session" msgstr "Sæt standard sorteringskriteriet
            Denne kan ændres midlertidigt for hver ny session" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Default Sorting Order" msgstr "Standard sorteringsorden" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Set the default sorting order
            This can temporarily be changed for each new session" msgstr "Sæt standard sorteringsorden
            Denne kan ændres midlertidigt for hver ny session" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Avatar Size (All-userlisting)" msgstr "Avatar størrelse (Flere-brugeroversigt)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Set the avatar size on the all-userlisting only" msgstr "Sæt avatar størrelsen på kun flere-brugeroversigten " #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Avatar Size (Single-userlisting)" msgstr "Avatar størrelse (enkelt-brugeroversigt)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Set the avatar size on the single-userlisting only" msgstr "Sæt avatar størrelsen på kun enkelt-brugeroversigten" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Visible only to logged in users?" msgstr "Synlig kun for brugere, der er logget ind?" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "The userlisting will only be visible only to the logged in users" msgstr "Brugeroversigten vil kun være synlig for brugere, der er logget ind" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "Visible to following Roles" msgstr "Synlig for følgende roller" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "The userlisting will only be visible to the following roles" msgstr "Brugeroversigten vil kun være synlig for følgende roller" #: profile-builder-2.0/modules/user-listing/userlisting.php:2275 msgid "Userlisting Settings" msgstr "Opsætning af brugeroversigt" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "Du skal aktivere brugeroversigts funktionen inde på fanen \"Moduler\"!" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You can find it in the Profile Builder menu." msgstr "Du kan finde det i Profile Builder menuen." #: profile-builder-2.0/modules/user-listing/userlisting.php:2565 msgid "No results found!" msgstr "Ingen resultater fundet!"translation/profile-builder.pot000066600000624061152141651170012732 0ustar00# Copyright (C) 2020 Profile Builder # This file is distributed under the same license as the Profile Builder package. msgid "" msgstr "" "Project-Id-Version: Profile Builder\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Basepath: ..\n" "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" "X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../pb-add-on-bbpress/bbpress-page.php:24, ../pb-add-on-bbpress/bbpress-page.php:24 msgid "bbPress" msgstr "" #: ../pb-add-on-bbpress/bbpress-page.php:69 msgid "bbPress Integration" msgstr "" #: ../pb-add-on-bbpress/bbpress-page.php:78 msgid "Choose (Single) User Listing to display under bbPress user Profile tab:" msgstr "" #: ../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-campaign-monitor-integration/admin/cmonitor-page.php:557, ../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:135 msgid "None" msgstr "" #: ../pb-add-on-bbpress/bbpress-page.php:105 msgid "Select which Single User-listing managed via Profile Builder should replace the default bbPress user profile." msgstr "" #: ../pb-add-on-bbpress/bbpress-page.php:113 msgid "Choose Edit Profile form to display under bbPress Profile Edit tab:" msgstr "" #: ../pb-add-on-bbpress/bbpress-page.php:118, ../pb-add-on-buddypress/buddypress-page.php:98, ../pb-add-on-woocommerce/woosync-page.php:116 msgid "Default Edit Profile" msgstr "" #: ../pb-add-on-bbpress/bbpress-page.php:141 msgid "Select Profile Builder Edit Profile form to replace the bbPress Profile Edit tab." msgstr "" #: ../pb-add-on-bbpress/index.php:163, ../pb-add-on-bbpress/index.php:169, ../pb-add-on-bbpress/index.php:184, ../pb-add-on-bbpress/index.php:234 msgid "Topics Started" msgstr "" #: ../pb-add-on-bbpress/index.php:164, ../pb-add-on-bbpress/index.php:170, ../pb-add-on-bbpress/index.php:185, ../pb-add-on-bbpress/index.php:236 msgid "Replies Created" msgstr "" #: ../pb-add-on-bbpress/index.php:168, ../pb-add-on-bbpress/index.php:183 msgid "Forum Role" msgstr "" #: ../pb-add-on-bbpress/index.php:308 msgid "bbPress needs to be installed and activated for Profile Builder - bbPress Integration Add-on to work as expected!" msgstr "" #: ../pb-add-on-buddypress/buddypress-page.php:26, ../pb-add-on-buddypress/buddypress-page.php:26 msgid "BuddyPress" msgstr "" #: ../pb-add-on-buddypress/buddypress-page.php:45 msgid "BuddyPress Integration" msgstr "" #: ../pb-add-on-buddypress/buddypress-page.php:50 msgid "Import BuddyPress Fields to Profile Builder" msgstr "" #: ../pb-add-on-buddypress/buddypress-page.php:53 msgid "Import BuddyPress Fields" msgstr "" #: ../pb-add-on-buddypress/buddypress-page.php:55 msgid "Create fields in Profile Builder that match the existing ones in BuddyPress and import all the user field entries.
            Learn more about importing BuddyPress fields." msgstr "" #: ../pb-add-on-buddypress/buddypress-page.php:61 msgid "Registration form:" msgstr "" #: ../pb-add-on-buddypress/buddypress-page.php:65, modules/email-customizer/user-email-customizer.php:104 msgid "Default Registration" msgstr "" #: ../pb-add-on-buddypress/buddypress-page.php:87 msgid "Select Profile Builder Registration form to replace the BuddyPress Registration form.
            Registration emails will now be managed in Profile Builder -> User Email Customizer" msgstr "" #: ../pb-add-on-buddypress/buddypress-page.php:94 msgid "Edit Profile form:" msgstr "" #: ../pb-add-on-buddypress/buddypress-page.php:120 msgid "Select Profile Builder Edit Profile form to replace the BuddyPress Profile Edit tab." msgstr "" #: ../pb-add-on-buddypress/buddypress-page.php:131 msgid "User Listing template:" msgstr "" #: ../pb-add-on-buddypress/buddypress-page.php:157 msgid "Select which User Listing template managed by Profile Builder should replace the default BuddyPress user profile view." msgstr "" #: ../pb-add-on-buddypress/buddypress-page.php:164 msgid "Use All-User Listing?" msgstr "" #: ../pb-add-on-buddypress/buddypress-page.php:170 msgid "Enable PB User Listing on BuddyPress Members page" msgstr "" #: ../pb-add-on-buddypress/buddypress-page.php:172 msgid "Check this if All User-listing managed via Profile Builder should replace the default BuddyPress Members page.
            The template used will be the one selected above." msgstr "" #: ../pb-add-on-buddypress/field-visibility.php:20 msgid "Allow members to override" msgstr "" #: ../pb-add-on-buddypress/field-visibility.php:20 msgid "Enforce field visibility" msgstr "" #: ../pb-add-on-buddypress/field-visibility.php:22 msgid "BuddyPress Default Field Visibility" msgstr "" #: ../pb-add-on-buddypress/field-visibility.php:23 msgid "BuddyPress Allow Custom Visibility" msgstr "" #: ../pb-add-on-buddypress/field-visibility.php:105, ../pb-add-on-buddypress/field-visibility.php:119 msgid "This field can be seen by: " msgstr "" #: ../pb-add-on-buddypress/field-visibility.php:105 msgid "Change" msgstr "" #: ../pb-add-on-buddypress/field-visibility.php:110 msgid "Who can see this field?" msgstr "" #: ../pb-add-on-buddypress/field-visibility.php:115 msgid "Close" msgstr "" #: ../pb-add-on-buddypress/field-visibility.php:216, ../pb-add-on-custom-profile-menus/index.php:269 msgid "Everyone" msgstr "" #: ../pb-add-on-buddypress/field-visibility.php:220 msgid "Only Me" msgstr "" #: ../pb-add-on-buddypress/field-visibility.php:224, ../pb-add-on-buddypress/mustache-vars.php:335 msgid "All Members" msgstr "" #: ../pb-add-on-buddypress/field-visibility.php:228, ../pb-add-on-buddypress/mustache-vars.php:339 msgid "My Friends" msgstr "" #: ../pb-add-on-buddypress/import-bp-fields.php:34 msgid "

            Import BuddyPress Fields to Profile Builder

            " msgstr "" #: ../pb-add-on-buddypress/import-bp-fields.php:40 msgid "BuddyPress is not installed and active. Import aborted!" msgstr "" #: ../pb-add-on-buddypress/import-bp-fields.php:44 msgid "Importing BuddyPress Field Settings to Profile Builder...

            " msgstr "" #: ../pb-add-on-buddypress/import-bp-fields.php:51, ../pb-add-on-buddypress/import-bp-fields.php:328 msgid "If the page does not redirect automatically" msgstr "" #: ../pb-add-on-buddypress/import-bp-fields.php:51, ../pb-add-on-buddypress/import-bp-fields.php:328 msgid "click here" msgstr "" #: ../pb-add-on-buddypress/import-bp-fields.php:53 msgid "Importing User entries BuddyPress Fields to Profile Builder...

            " msgstr "" #: ../pb-add-on-buddypress/import-bp-fields.php:55 msgid "Done." msgstr "" #: ../pb-add-on-buddypress/import-bp-fields.php:55 msgid "Back to BuddyPress Settings page" msgstr "" #: ../pb-add-on-buddypress/index.php:222 msgid "Profile Builder Avatar field is disabled to allow use of BuddyPress Avatar." msgstr "" #: ../pb-add-on-buddypress/index.php:379 msgid "BuddyPress needs to be installed and activated for Profile Builder - BuddyPress Integration Add-on to work as expected!" msgstr "" #: ../pb-add-on-buddypress/index.php:508, ../pb-add-on-campaign-monitor-integration/admin/widget.php:226, ../pb-add-on-campaign-monitor-integration/admin/widget.php:228, admin/manage-fields.php:317 msgid "Name" msgstr "" #: ../pb-add-on-buddypress/index.php:511 msgid "Username:" msgstr "" #: ../pb-add-on-buddypress/index.php:515 msgid "First Name:" msgstr "" #: ../pb-add-on-buddypress/index.php:519 msgid "Last Name:" msgstr "" #: ../pb-add-on-buddypress/index.php:523 msgid "Nickname:" msgstr "" #: ../pb-add-on-buddypress/index.php:527 msgid "Display name:" msgstr "" #: ../pb-add-on-buddypress/index.php:531, admin/manage-fields.php:323 msgid "Contact Info" msgstr "" #: ../pb-add-on-buddypress/index.php:534 msgid "Website:" msgstr "" #: ../pb-add-on-buddypress/index.php:538, admin/manage-fields.php:334 msgid "About Yourself" msgstr "" #: ../pb-add-on-buddypress/index.php:541 msgid "Biographical Info:" msgstr "" #: ../pb-add-on-buddypress/mustache-vars.php:15, ../pb-add-on-buddypress/mustache-vars.php:53 msgid "BuddyPress Avatar" msgstr "" #: ../pb-add-on-buddypress/mustache-vars.php:16, ../pb-add-on-buddypress/mustache-vars.php:54 msgid "BuddyPress Cover Photo" msgstr "" #: ../pb-add-on-buddypress/mustache-vars.php:17, ../pb-add-on-buddypress/mustache-vars.php:35, ../pb-add-on-buddypress/mustache-vars.php:262 msgid "BuddyPress Last Active" msgstr "" #: ../pb-add-on-buddypress/mustache-vars.php:21 msgid "BuddyPress Add Friend Button" msgstr "" #: ../pb-add-on-buddypress/mustache-vars.php:24 msgid "BuddyPress Latest Update" msgstr "" #: ../pb-add-on-buddypress/mustache-vars.php:140 msgid "Never active" msgstr "" #: ../pb-add-on-buddypress/mustache-vars.php:245 msgid "Last Active" msgstr "" #: ../pb-add-on-buddypress/mustache-vars.php:278 msgid "My BuddyPress Friends Tab" msgstr "" #: ../pb-add-on-buddypress/mustache-vars.php:379 msgid "BuddyPress field visibility syntax" msgstr "" #: ../pb-add-on-buddypress/mustache-vars.php:399 msgid "Are you sure you want to reset this template?" msgstr "" #: ../pb-add-on-buddypress/mustache-vars.php:399 msgid "Reset to Default BuddyPress User Listing Templates" msgstr "" #: ../pb-add-on-buddypress/mustache-vars.php:400 msgid "Note: This action is not reversible. All modifications to this template will be lost!" msgstr "" #: ../pb-add-on-buddypress/mustache-vars.php:414 msgid "Reset template" msgstr "" #: ../pb-add-on-custom-css-classes-on-fields/index.php:50 msgid "CSS Class" msgstr "" #: ../pb-add-on-custom-css-classes-on-fields/index.php:51 msgid "Add a class to a field. Should not contain dots(.) and for multiple classes separate by space." msgstr "" #: ../pb-add-on-custom-profile-menus/index.php:178 msgid "Login Label" msgstr "" #: ../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:59 msgid "Login" msgstr "" #: ../pb-add-on-custom-profile-menus/index.php:186 msgid "Logout Label" msgstr "" #: ../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:174 msgid "Logout" msgstr "" #: ../pb-add-on-custom-profile-menus/index.php:197 msgid "Form page URL" msgstr "" #: ../pb-add-on-custom-profile-menus/index.php:200 msgid "Login page URL" msgstr "" #: ../pb-add-on-custom-profile-menus/index.php:203 msgid "Login Form page URL" msgstr "" #: ../pb-add-on-custom-profile-menus/index.php:206 msgid "Edit Profile Form page URL" msgstr "" #: ../pb-add-on-custom-profile-menus/index.php:209 msgid "Register Form page URL" msgstr "" #: ../pb-add-on-custom-profile-menus/index.php:248 msgid "Display Mode" msgstr "" #: ../pb-add-on-custom-profile-menus/index.php:255, features/content-restriction/content-restriction-meta-box.php:67 msgid "Logged In Users" msgstr "" #: ../pb-add-on-custom-profile-menus/index.php:262 msgid "Logged Out Users" msgstr "" #: ../pb-add-on-custom-profile-menus/index.php:276 msgid "Restrict menu item to a minimum role" msgstr "" #: ../pb-add-on-custom-profile-menus/index.php:277 msgid "Works only if Display Mode: Logged In Users is selected" msgstr "" #: ../pb-add-on-custom-profile-menus/index.php:308, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:67 msgid "Edit Profile" msgstr "" #: ../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:429, front-end/login.php:421 msgid "Register" msgstr "" #: ../pb-add-on-custom-profile-menus/index.php:317 msgid "iFrame Title" msgstr "" #: ../pb-add-on-custom-profile-menus/index.php:327 msgid "iFrame Size" msgstr "" #: ../pb-add-on-custom-profile-menus/index.php:330 msgid "Height (px)" msgstr "" #: ../pb-add-on-custom-profile-menus/index.php:337 msgid "Width (px)" msgstr "" #: ../pb-add-on-customization-toolbox/index.php:40 msgid "Forms" msgstr "" #: ../pb-add-on-customization-toolbox/index.php:41 msgid "Fields" msgstr "" #: ../pb-add-on-customization-toolbox/index.php:42 msgid "Userlisting" msgstr "" #: ../pb-add-on-customization-toolbox/index.php:43 msgid "Shortcodes" msgstr "" #: ../pb-add-on-customization-toolbox/index.php:44 msgid "Admin" msgstr "" #: ../pb-add-on-customization-toolbox/index.php:62, ../pb-add-on-customization-toolbox/index.php:72 msgid "Customization Toolbox" msgstr "" #: ../pb-add-on-customization-toolbox/index.php:62 msgid "Toolbox" msgstr "" #: ../pb-add-on-customization-toolbox/index.php:147, ../pb-add-on-social-connect/index.php:237, admin/admin-functions.php:226, admin/general-settings.php:76, admin/general-settings.php:76 msgid "Settings" msgstr "" #: ../pb-add-on-email-confirmation-field/index.php:85 msgid "The email confirmation does not match your email address." msgstr "" #: ../pb-add-on-field-visibility/index.php:215, admin/admin-bar.php:63 msgid "Visibility" msgstr "" #: ../pb-add-on-field-visibility/index.php:215 msgid "Admin Only field is visible only for administrators. User Locked field is visible for both administrators and users, but only administrators have the capability to edit it." msgstr "" #: ../pb-add-on-field-visibility/index.php:216 msgid "User Role Visibility" msgstr "" #: ../pb-add-on-field-visibility/index.php:216 msgid "Select which user roles see this field" msgstr "" #: ../pb-add-on-field-visibility/index.php:217 msgid "Location Visibility" msgstr "" #: ../pb-add-on-field-visibility/index.php:217 msgid "Select the locations you wish the field to appear" msgstr "" #: ../pb-add-on-field-visibility/index.php:235 msgid "
            Title
            Type
            Meta Name
            Required
            "
            msgstr ""
            
            #: ../pb-add-on-field-visibility/index.php:235, ../pb-add-on-labels-edit/pble.php:381, admin/manage-fields.php:1318, features/functions.php:872, features/functions.php:879, 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
            msgid "Edit"
            msgstr ""
            
            #: ../pb-add-on-field-visibility/index.php:235, admin/manage-fields.php:1318, features/functions.php:865, features/functions.php:879, 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:179, features/roles-editor/roles-editor.php:884, features/roles-editor/roles-editor.php:893, features/roles-editor/roles-editor.php:904, 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:18
            msgid "Delete"
            msgstr ""
            
            #: ../pb-add-on-field-visibility/index.php:256
            msgid "This field is visible only for administrators."
            msgstr ""
            
            #: ../pb-add-on-field-visibility/index.php:259
            msgid "This field is visible for both administrators and users, but only administrators have the capability to edit it."
            msgstr ""
            
            #: ../pb-add-on-field-visibility/index.php:282
            msgid "This field is visible only for the following user roles: %1$s"
            msgstr ""
            
            #: ../pb-add-on-field-visibility/index.php:328
            msgid "This field is visible only in the following locations: %1$s"
            msgstr ""
            
            #: ../pb-add-on-field-visibility/index.php:470
            msgid "Get file"
            msgstr ""
            
            #: ../pb-add-on-field-visibility/index.php:603
            msgid "You do not have the capabilities necessary to edit this field."
            msgstr ""
            
            #: ../pb-add-on-import-export/pbie-export.php:117
            msgid "Export Profile Builder options as a .json file. This allows you to easily import the configuration into another site."
            msgstr ""
            
            #: ../pb-add-on-import-export/pbie-export.php:119, ../pb-add-on-import-export/pbie.php:55, ../pb-add-on-labels-edit/pble.php:345
            msgid "Export"
            msgstr ""
            
            #: ../pb-add-on-import-export/pbie-import.php:32
            msgid "Import Profile Builder options from a .json file. This allows you to easily import the configuration from another site. "
            msgstr ""
            
            #: ../pb-add-on-import-export/pbie-import.php:38, ../pb-add-on-import-export/pbie.php:54, ../pb-add-on-labels-edit/pble.php:335
            msgid "Import"
            msgstr ""
            
            #: ../pb-add-on-import-export/pbie-import.php:38
            msgid "This will overwrite your old PB settings! Are you sure you want to continue?"
            msgstr ""
            
            #: ../pb-add-on-import-export/pbie.php:40, ../pb-add-on-import-export/pbie.php:40, ../pb-add-on-import-export/pbie.php:74
            msgid "Import and Export"
            msgstr ""
            
            #: ../pb-add-on-labels-edit/pble.php:136
            msgid " labels scanned."
            msgstr ""
            
            #: ../pb-add-on-labels-edit/pble.php:211, ../pb-add-on-labels-edit/pble.php:212
            msgid "Labels Edit"
            msgstr ""
            
            #: ../pb-add-on-labels-edit/pble.php:230
            msgid "Label to Edit"
            msgstr ""
            
            #: ../pb-add-on-labels-edit/pble.php:231
            msgid "New Label"
            msgstr ""
            
            #: ../pb-add-on-labels-edit/pble.php:237
            msgid "Edit Labels"
            msgstr ""
            
            #: ../pb-add-on-labels-edit/pble.php:253
            msgid "Rescan Lables"
            msgstr ""
            
            #: ../pb-add-on-labels-edit/pble.php:278
            msgid "Informations"
            msgstr ""
            
            #: ../pb-add-on-labels-edit/pble.php:312
            msgid "Import and Export Labels"
            msgstr ""
            
            #: ../pb-add-on-labels-edit/pble.php:326
            msgid "Import Labels from a .json file."
            msgstr ""
            
            #: ../pb-add-on-labels-edit/pble.php:328
            msgid "Easily import the labels from another site."
            msgstr ""
            
            #: ../pb-add-on-labels-edit/pble.php:335
            msgid "This will overwrite all your old edited labels!\nAre you sure you want to continue?"
            msgstr ""
            
            #: ../pb-add-on-labels-edit/pble.php:340
            msgid "Export Labels as a .json file."
            msgstr ""
            
            #: ../pb-add-on-labels-edit/pble.php:342
            msgid "Easily import the labels into another site."
            msgstr ""
            
            #: ../pb-add-on-labels-edit/pble.php:370
            msgid "You must select a label to edit!"
            msgstr ""
            
            #: ../pb-add-on-labels-edit/pble.php:381, admin/manage-fields.php:189
            msgid "Labels"
            msgstr ""
            
            #: ../pb-add-on-labels-edit/pble.php:381, ../pb-add-on-labels-edit/pble.php:381, modules/multiple-forms/multiple-forms.php:406
            msgid "Delete all"
            msgstr ""
            
            #: ../pb-add-on-labels-edit/pble.php:433
            msgid "No labels edited, nothing to export!"
            msgstr ""
            
            #: ../pb-add-on-mailpoet-integration/index.php:128
            msgid "MailPoet Newsletters needs to be installed and activated for Profile Builder - MailPoet Add-on to work!"
            msgstr ""
            
            #: ../pb-add-on-maximum-character-length/index.php:49
            msgid "Maximum Character Length"
            msgstr ""
            
            #: ../pb-add-on-maximum-character-length/index.php:49
            msgid "Specify the maximum number of characters a user can type in this field"
            msgstr ""
            
            #: ../pb-add-on-maximum-character-length/index.php:70
            msgid ""
            "The entered character number is not numerical\n"
            ""
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:102, ../pb-add-on-multi-step-forms/index.php:525
            msgid "Step"
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:103
            msgid "Title for Tab"
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:104
            msgid "Add Break Points to edit tabs title."
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:105
            msgid "Publish the form to edit tabs title."
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:106, ../pb-add-on-multi-step-forms/index.php:215
            msgid "Publish the form before adding Break Points!"
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:107
            msgid "Request in process, please wait a few seconds before a new one!"
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:143
            msgid "Multi-Step Forms"
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:187
            msgid "Multi-Step Forms options updated."
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:192
            msgid "Enable on:"
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:193
            msgid "PB Default Register Form"
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:194
            msgid "PB Default Edit Profile Form"
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:195
            msgid "To enable it on Multiple Registration and Edit-Profile Forms you must add Break Points in each form page."
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:196, ../pb-add-on-multi-step-forms/index.php:221
            msgid "Pagination and Tabs:"
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:197, ../pb-add-on-multi-step-forms/index.php:222
            msgid "Enable Pagination"
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:198, ../pb-add-on-multi-step-forms/index.php:223
            msgid "Enable Tabs"
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:198, ../pb-add-on-multi-step-forms/index.php:223
            msgid "Edit Tabs Title"
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:200
            msgid "Update Multi-Step"
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:220
            msgid "To enable MSF you must add Break Points."
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:454
            msgid "Next"
            msgstr ""
            
            #: ../pb-add-on-multi-step-forms/index.php:455
            msgid "Previous"
            msgstr ""
            
            #: ../pb-add-on-placeholder-labels/pbpl.php:142, ../pb-add-on-placeholder-labels/pbpl.php:146
            msgid "Placeholder Labels"
            msgstr ""
            
            #: ../pb-add-on-placeholder-labels/pbpl.php:168
            msgid "Replace labels with placeholders:"
            msgstr ""
            
            #: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:324, admin/general-settings.php:113, admin/general-settings.php:126, admin/general-settings.php:175, admin/general-settings.php:222, admin/general-settings.php:296, admin/private-website.php:60, admin/private-website.php:117, ../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:88, 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:2394
            msgid "Yes"
            msgstr ""
            
            #: ../pb-add-on-placeholder-labels/pbpl.php:172, ../pb-add-on-social-connect/index.php:325, admin/general-settings.php:127, admin/general-settings.php:176, admin/general-settings.php:221, admin/general-settings.php:295, admin/private-website.php:59, admin/private-website.php:116, features/content-restriction/content-restriction.php:87, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230
            msgid "No"
            msgstr ""
            
            #: ../pb-add-on-social-connect/index.php:184, ../pb-add-on-social-connect/index.php:185, ../pb-add-on-social-connect/index.php:292, ../pb-add-on-social-connect/index.php:296
            msgid "Social Connect"
            msgstr ""
            
            #: ../pb-add-on-social-connect/index.php:204
            msgid "Display on the Following Forms"
            msgstr ""
            
            #: ../pb-add-on-social-connect/index.php:205
            msgid "Disable Registration on"
            msgstr ""
            
            #: ../pb-add-on-social-connect/index.php:205
            msgid "Allow only login with Social Connect on Profile Builder Login Form.
            Social Connect will still automatically register users on other forms." msgstr "" #: ../pb-add-on-social-connect/index.php:206 msgid "Facebook Login" msgstr "" #: ../pb-add-on-social-connect/index.php:207 msgid "Facebook App ID" msgstr "" #: ../pb-add-on-social-connect/index.php:208 msgid "Google Login" msgstr "" #: ../pb-add-on-social-connect/index.php:209 msgid "Google Client ID" msgstr "" #: ../pb-add-on-social-connect/index.php:210 msgid "Twitter Login" msgstr "" #: ../pb-add-on-social-connect/index.php:211 msgid "Twitter API Key" msgstr "" #: ../pb-add-on-social-connect/index.php:212 msgid "Twitter API Secret" msgstr "" #: ../pb-add-on-social-connect/index.php:213 msgid "LinkedIn Login" msgstr "" #: ../pb-add-on-social-connect/index.php:214 msgid "LinkedIn Client ID" msgstr "" #: ../pb-add-on-social-connect/index.php:215 msgid "LinkedIn Client Secret" msgstr "" #: ../pb-add-on-social-connect/index.php:216 msgid "Buttons Order" msgstr "" #: ../pb-add-on-social-connect/index.php:216 msgid "Drag and drop the dots to re-order." msgstr "" #: ../pb-add-on-social-connect/index.php:217 msgid "Buttons Re-Order" msgstr "" #: ../pb-add-on-social-connect/index.php:217 msgid "Save the buttons order from the buttons order checkboxes" msgstr "" #: ../pb-add-on-social-connect/index.php:218 msgid "Buttons Location" msgstr "" #: ../pb-add-on-social-connect/index.php:218 msgid "Display social buttons before or after the forms fields." msgstr "" #: ../pb-add-on-social-connect/index.php:219 msgid "Buttons Style" msgstr "" #: ../pb-add-on-social-connect/index.php:220 msgid "Heading Before Buttons (Login/Register)" msgstr "" #: ../pb-add-on-social-connect/index.php:220, ../pb-add-on-social-connect/index.php:221 msgid "Empty field will remove the heading." msgstr "" #: ../pb-add-on-social-connect/index.php:221 msgid "Heading Before Buttons (Edit Profile)" msgstr "" #: ../pb-add-on-social-connect/index.php:222 msgid "Facebook Button Text (Login/Register)" msgstr "" #: ../pb-add-on-social-connect/index.php:223 msgid "Google Button Text (Login/Register)" msgstr "" #: ../pb-add-on-social-connect/index.php:224 msgid "Twitter Button Text (Login/Register)" msgstr "" #: ../pb-add-on-social-connect/index.php:225 msgid "LinkedIn Button Text (Login/Register)" msgstr "" #: ../pb-add-on-social-connect/index.php:226 msgid "Facebook Button Text (Edit Profile)" msgstr "" #: ../pb-add-on-social-connect/index.php:227 msgid "Google Button Text (Edit Profile)" msgstr "" #: ../pb-add-on-social-connect/index.php:228 msgid "Twitter Button Text (Edit Profile)" msgstr "" #: ../pb-add-on-social-connect/index.php:229 msgid "LinkedIn Button Text (Edit Profile)" msgstr "" #: ../pb-add-on-social-connect/index.php:230 msgid "Unlink Accounts (Edit Profile)" msgstr "" #: ../pb-add-on-social-connect/index.php:230 msgid "This option will display linked social platforms to users accounts and will allow to easily unlink them in Edit Profile page." msgstr "" #: ../pb-add-on-social-connect/index.php:231 msgid "Default Social Connect CSS in the Front-end" msgstr "" #: ../pb-add-on-social-connect/index.php:251 msgid "Help" msgstr "" #: ../pb-add-on-social-connect/index.php:321 msgid "Display Social Connect buttons:" msgstr "" #: ../pb-add-on-social-connect/index.php:370 msgid "You have successfully unlinked %% from your account." msgstr "" #: ../pb-add-on-social-connect/index.php:382 msgid "An account with this email address already exists.
            Do you want to connect it?" msgstr "" #: ../pb-add-on-social-connect/index.php:383 msgid "Please enter your website account password" msgstr "" #: ../pb-add-on-social-connect/index.php:384 msgid "Please enter a new email" msgstr "" #: ../pb-add-on-social-connect/index.php:385 msgid "You have successfully linked your account to %%." msgstr "" #: ../pb-add-on-social-connect/index.php:386, ../pb-add-on-social-connect/twitter/twitter.php:109 msgid "Something went wrong. Please try again later!" msgstr "" #: ../pb-add-on-social-connect/index.php:387 msgid "Before you can access your account you need to confirm your email address. Please check your inbox and click the activation link." msgstr "" #: ../pb-add-on-social-connect/index.php:388 msgid "ERROR: You need to confirm your email address before you can log in." msgstr "" #: ../pb-add-on-social-connect/index.php:389 msgid "Before you can access your account an administrator has to approve it. You will be notified via email." msgstr "" #: ../pb-add-on-social-connect/index.php:390, features/admin-approval/admin-approval.php:180 msgid "ERROR: Your account has to be confirmed by an administrator before you can log in." msgstr "" #: ../pb-add-on-social-connect/index.php:391 msgid "You will be redirected in 5 seconds. If not, click %%." msgstr "" #: ../pb-add-on-social-connect/index.php:392, features/functions.php:1159 msgid "here" msgstr "" #: ../pb-add-on-social-connect/index.php:393 msgid "You can only login with social accounts, not register!
            Please link your social account to an existing user account first." msgstr "" #: ../pb-add-on-social-connect/index.php:394 msgid "Wrong password!" msgstr "" #: ../pb-add-on-social-connect/index.php:395 msgid "Please enter a valid email!" msgstr "" #: ../pb-add-on-social-connect/index.php:396 msgid "You can only login on this form.
            Register with your social account on the register form." msgstr "" #: ../pb-add-on-social-connect/index.php:402, ../pb-add-on-social-connect/index.php:403 msgid "Please enter your Facebook email!" msgstr "" #: ../pb-add-on-social-connect/index.php:415 msgid "Waiting for Twitter..." msgstr "" #: ../pb-add-on-social-connect/index.php:416, ../pb-add-on-social-connect/index.php:417 msgid "Please enter your Twitter email!" msgstr "" #: ../pb-add-on-social-connect/index.php:697 msgid "Profile Builder not active!" msgstr "" #: ../pb-add-on-social-connect/index.php:834, admin/admin-functions.php:37, admin/general-settings.php:8 msgid "General Settings" msgstr "" #: ../pb-add-on-social-connect/index.php:838 msgid "Application Settings" msgstr "" #: ../pb-add-on-social-connect/index.php:842 msgid "Appearance Settings" msgstr "" #: ../pb-add-on-social-connect/index.php:906 msgid "Unlink" msgstr "" #: ../pb-add-on-social-connect/index.php:913 msgid "Your account is linked with:" msgstr "" #: ../pb-add-on-woocommerce/billing-fields.php:5, ../pb-add-on-woocommerce/shipping-fields.php:5 msgid "Country" msgstr "" #: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, admin/manage-fields.php:319, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:127 msgid "First Name" msgstr "" #: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, admin/manage-fields.php:320, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:133 msgid "Last Name" msgstr "" #: ../pb-add-on-woocommerce/billing-fields.php:8, ../pb-add-on-woocommerce/shipping-fields.php:8 msgid "Company Name" msgstr "" #: ../pb-add-on-woocommerce/billing-fields.php:9, ../pb-add-on-woocommerce/shipping-fields.php:9 msgid "Address" msgstr "" #: ../pb-add-on-woocommerce/billing-fields.php:11, ../pb-add-on-woocommerce/shipping-fields.php:11 msgid "Town / City" msgstr "" #: ../pb-add-on-woocommerce/billing-fields.php:12, ../pb-add-on-woocommerce/shipping-fields.php:12 msgid "State / County" msgstr "" #: ../pb-add-on-woocommerce/billing-fields.php:13, ../pb-add-on-woocommerce/shipping-fields.php:13 msgid "Postcode / Zip" msgstr "" #: ../pb-add-on-woocommerce/billing-fields.php:14 msgid "Email Address" msgstr "" #: ../pb-add-on-woocommerce/billing-fields.php:15 msgid "Phone" msgstr "" #: ../pb-add-on-woocommerce/billing-fields.php:278 msgid "Ship to a different address?" msgstr "" #: ../pb-add-on-woocommerce/index.php:167, ../pb-add-on-woocommerce/index.php:736 msgid "Billing Address" msgstr "" #: ../pb-add-on-woocommerce/index.php:167 msgid "Displays customer billing fields in front-end. " msgstr "" #: ../pb-add-on-woocommerce/index.php:171, ../pb-add-on-woocommerce/index.php:737 msgid "Shipping Address" msgstr "" #: ../pb-add-on-woocommerce/index.php:171 msgid "Displays customer shipping fields in front-end. " msgstr "" #: ../pb-add-on-woocommerce/index.php:246, ../pb-add-on-woocommerce/index.php:265, ../pb-add-on-woocommerce/index.php:362, ../pb-add-on-woocommerce/index.php:365, ../pb-add-on-woocommerce/index.php:792 msgid "Address line 2" msgstr "" #: ../pb-add-on-woocommerce/index.php:254 msgid "Billing Fields" msgstr "" #: ../pb-add-on-woocommerce/index.php:254 msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: ../pb-add-on-woocommerce/index.php:255 msgid "Billing Fields Order" msgstr "" #: ../pb-add-on-woocommerce/index.php:255 msgid "Save the billing fields order from the billing fields checkboxes" msgstr "" #: ../pb-add-on-woocommerce/index.php:256 msgid "Billing Fields Name" msgstr "" #: ../pb-add-on-woocommerce/index.php:256 msgid "Save the billing fields names" msgstr "" #: ../pb-add-on-woocommerce/index.php:273 msgid "Shipping Fields" msgstr "" #: ../pb-add-on-woocommerce/index.php:273 msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: ../pb-add-on-woocommerce/index.php:274 msgid "Shipping Fields Order" msgstr "" #: ../pb-add-on-woocommerce/index.php:274 msgid "Save the shipping fields order from the billing fields checkboxes" msgstr "" #: ../pb-add-on-woocommerce/index.php:275 msgid "Shipping Fields Name" msgstr "" #: ../pb-add-on-woocommerce/index.php:275 msgid "Save the shipping fields names" msgstr "" #: ../pb-add-on-woocommerce/index.php:303 msgid "Field Name" msgstr "" #: ../pb-add-on-woocommerce/index.php:304, admin/manage-fields.php:241 msgid "Required" msgstr "" #: ../pb-add-on-woocommerce/index.php:367 msgid "Click to edit " msgstr "" #: ../pb-add-on-woocommerce/index.php:391, front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "" #: ../pb-add-on-woocommerce/index.php:649 msgid "No options available. Please select one country." msgstr "" #: ../pb-add-on-woocommerce/index.php:668, ../pb-add-on-woocommerce/index.php:693 msgid "Billing " msgstr "" #: ../pb-add-on-woocommerce/index.php:676, ../pb-add-on-woocommerce/index.php:700 msgid "Shipping " msgstr "" #: ../pb-add-on-woocommerce/index.php:853 msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!" msgstr "" #: ../pb-add-on-woocommerce/woo-checkout-field-support.php:82 msgid "Display on WooCommerce Checkout" msgstr "" #: ../pb-add-on-woocommerce/woo-checkout-field-support.php:82 msgid "Whether the field should be added to the WooCommerce checkout form or not" msgstr "" #: ../pb-add-on-woocommerce/woosync-page.php:23, ../pb-add-on-woocommerce/woosync-page.php:23, ../pb-add-on-woocommerce/woosync-page.php:70 msgid "WooCommerce Sync" msgstr "" #: ../pb-add-on-woocommerce/woosync-page.php:76 msgid "Choose Register form to display on My Account page:" msgstr "" #: ../pb-add-on-woocommerce/woosync-page.php:81 msgid "Default Register" msgstr "" #: ../pb-add-on-woocommerce/woosync-page.php:104 msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce.
            This will also add the Profile Builder Login form to MyAccount page." msgstr "" #: ../pb-add-on-woocommerce/woosync-page.php:111 msgid "Choose Edit Profile form to display on My Account page:" msgstr "" #: ../pb-add-on-woocommerce/woosync-page.php:139 msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce." msgstr "" #: index.php:36 msgid "%s is also activated. You need to deactivate it before activating this version of the plugin." msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:11, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:11, ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:46 msgid "Campaign Monitor" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:38 msgid "Campaign Monitor Integration" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:58, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:94, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:340, assets/lib/wck-api/wordpress-creation-kit.php:343 msgid "Save" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:85 msgid "Campaign Monitor API key:" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:92, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:124 msgid "The API key was successfully validated!" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:96 msgid "Either the API key is not valid or we could not connect to Campaign Monitor to validate it!" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:100 msgid "Enter your Campaign Monitor account API key." msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:126 msgid "Select client:" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:136 msgid "Loading clients..." msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:148 msgid "Select a client that you would like to edit." msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:186 msgid "No clients found" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:188 msgid "Select a client..." msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:266, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:274 msgid "Client List" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:267, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:275, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:61, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:68 msgid "Fields Count" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:348 msgid "Retrieves changes made in your Campaign Monitor account and matches it with the saved data from the add-on. This does not save the new data, so you will have to manually save." msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:348 msgid "Synchronize client data" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:349 msgid "Change client" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:413 msgid "No lists were found." msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:437 msgid "Click to edit" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:451, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:858, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:403, assets/lib/wck-api/wordpress-creation-kit.php:406 msgid "Cancel" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:523, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:202 msgid "Field Associations:" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:579 msgid "Associate each Campaign Monitor field with a Profile Builder field" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:601, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:357 msgid "Extra Options:" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:609, ../pb-add-on-campaign-monitor-integration/admin/widget.php:236 msgid "Resubscribe" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:612, ../pb-add-on-campaign-monitor-integration/admin/widget.php:239 msgid "If the subscriber is in an inactive state or has previously been unsubscribed and you check the Resubscribe option, they will be re-added to the list. Therefore, this method should be used with caution and only where suitable." msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:656 msgid "Campaign Monitor API key is empty" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:658 msgid "Campaign Monitor API key is invalid" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:42, ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:60, ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:63 msgid "Campaign Monitor List" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:42 msgid "Please enter a Campaign Monitor API key here." msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:46 msgid "Something went wrong. Either the API key is invalid or we could not connect to Campaign Monitor to validate the key." msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:52, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:52, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:38 msgid "Select a list..." msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:60 msgid "Select in which Campaign Monitor list you wish to add a new subscriber" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:61, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:62, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:49 msgid "Hide on Edit Profile" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:61, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:62, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:49 msgid "If checked this field will not be displayed on edit profile forms" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:63 msgid "We couldn't find any lists in your Campaign Monitor settings." msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:83 msgid "" "Please select at least one Campaign Monitor list \n" "" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:14 msgid "Profile Builder Campaign Monitor Widget" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:15 msgid "Adds a basic subscribe form so that your users can subscribe to your Campaign Monitor lists" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:68 msgid "Something went wrong. Either the Campaign Monitor API key is missing or it is invalid." msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:93, ../pb-add-on-mailchimp-integration/admin/widget.php:91, ../pb-add-on-mailchimp-integration/admin/widget.php:93, ../pb-add-on-mailchimp-integration/admin/widget.php:98 msgid "%s" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:157, ../pb-add-on-mailchimp-integration/admin/widget.php:158 msgid "Submit" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:182, ../pb-add-on-mailchimp-integration/admin/widget.php:185 msgid "Subscribe to Newsletter" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:191, ../pb-add-on-mailchimp-integration/admin/widget.php:193 msgid "Title" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:197, ../pb-add-on-mailchimp-integration/admin/widget.php:198 msgid "Select the list your new subscriber will be added to" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:202 msgid "Select list..." msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:208 msgid "No lists found" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:213, ../pb-add-on-mailchimp-integration/admin/widget.php:216 msgid "Select which fields to show" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:219, ../pb-add-on-campaign-monitor-integration/admin/widget.php:221 msgid "E-mail address" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:225 msgid "fullname" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:231 msgid "Extra options" msgstr "" #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:245 msgid "The Campaign Monitor API key is either missing or is invalid." msgstr "" #: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29 msgid "Communication Preferences" msgstr "" #: ../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:324, front-end/recover.php:116, ../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:117 msgid "E-mail" msgstr "" #: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9 msgid "Telephone" msgstr "" #: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9 msgid "SMS" msgstr "" #: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9 msgid "Post" msgstr "" #: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29 msgid "Select which communication preferences are available on your site ( drag and drop to re-order )" msgstr "" #: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:30 msgid "Communication Preferences Order" msgstr "" #: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:30 msgid "Save the communication preferences order" msgstr "" #: ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:53, ../pb-add-on-select2/front-end/select2-field.php:72, ../pb-add-on-select2/front-end/select2-multiple-field.php:87, front-end/extra-fields/avatar/avatar.php:78, front-end/extra-fields/checkbox/checkbox.php:46, front-end/extra-fields/colorpicker/colorpicker.php:45, front-end/extra-fields/datepicker/datepicker.php:40, front-end/extra-fields/input/input.php:30, front-end/extra-fields/input-email/input-email.php:30, front-end/extra-fields/input-hidden/input-hidden.php:34, front-end/extra-fields/input-url/input-url.php:30, front-end/extra-fields/map/map.php:51, front-end/extra-fields/number/number.php:30, front-end/extra-fields/phone/phone.php:39, front-end/extra-fields/radio/radio.php:44, front-end/extra-fields/select/select.php:51, front-end/extra-fields/select-cpt/select-cpt.php:58, front-end/extra-fields/select-multiple/select-multiple.php:47, front-end/extra-fields/select-timezone/select-timezone.php:49, front-end/extra-fields/textarea/textarea.php:30, front-end/extra-fields/upload/upload.php:74, front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "" #: ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:77 msgid "Date" msgstr "" #: ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:77 msgid "Preference" msgstr "" #: ../pb-add-on-import-export/inc/class-pbie-import.php:64, ../pb-add-on-labels-edit/inc/class-pble-import.php:34 msgid "Uploaded file is not valid json!" msgstr "" #: ../pb-add-on-import-export/inc/class-pbie-import.php:82, ../pb-add-on-labels-edit/inc/class-pble-import.php:48 msgid "Import successfully!" msgstr "" #: ../pb-add-on-import-export/inc/class-pbie-import.php:88, ../pb-add-on-labels-edit/inc/class-pble-import.php:54 msgid "Please select a .json file to import!" msgstr "" #: ../pb-add-on-labels-edit/inc/class-pble-import.php:48 msgid "Page will refresh in 3 seconds..." msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:11, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:11 msgid "MailChimp" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:35 msgid "MailChimp Integration" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:44 msgid "Before you can make any changes you will need to add a MailChimp API key." msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:60, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:67, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:42, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:46, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:60, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:64 msgid "MailChimp List" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:82 msgid "We couldn't find any lists" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:119 msgid "MailChimp API Key:" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:126 msgid "Either the API key is not valid or we could not connect to MailChimp to validate it!" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:129 msgid "Enter a MailChimp API key. You can create keys in your MailChimp account." msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:157, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:540, assets/lib/wck-api/wordpress-creation-kit.php:544 msgid "Edit this item" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:211 msgid "This field is required in MailChimp" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:261 msgid "Associate each MailChimp field with a Profile Builder field" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:295 msgid "Group Associations:" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:334 msgid "Associate each MailChimp group with a Profile Builder field" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:366, ../pb-add-on-mailchimp-integration/admin/widget.php:229 msgid "Double Opt-In" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:367, ../pb-add-on-mailchimp-integration/admin/widget.php:230 msgid "If you select double opt-in, the user will receive an e-mail to confirm the subscription" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:382, ../pb-add-on-mailchimp-integration/admin/widget.php:241 msgid "Enable GDPR" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:383, ../pb-add-on-mailchimp-integration/admin/widget.php:242 msgid "If checked will enable GDPR on this list. You must also enable GDPR on the list from mailchimp" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:428 msgid "MailChimp API key is empty" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:430 msgid "MailChimp API key is invalid" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:437, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:46 msgid "Something went wrong. Either the API key is invalid or we could not connect to MailChimp to validate the key." msgstr "" #: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:42 msgid "Please enter a MailChimp API key here." msgstr "" #: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:60 msgid "Select in which MailChimp list you wish to add a new subscriber" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:61, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:48 msgid "Checked by Default" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:61, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:48 msgid "If checked the Subscribe checkbox in the front-end will be checked by default on register forms" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:64 msgid "We couldn't find any lists in your MailChimp settings." msgstr "" #: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:84 msgid "" "Please select at least one MailChimp list \n" "" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/widget.php:14 msgid "Profile Builder MailChimp Widget" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/widget.php:15 msgid "Adds a basic subscribe form so that your users can subscribe to your MailChimp lists" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/widget.php:68, ../pb-add-on-mailchimp-integration/admin/widget.php:250 msgid "Something went wrong. Either the MailChimp API key is missing or it is invalid." msgstr "" #: ../pb-add-on-mailchimp-integration/admin/widget.php:201 msgid "Select..." msgstr "" #: ../pb-add-on-mailchimp-integration/admin/widget.php:225 msgid "Extra Options" msgstr "" #: ../pb-add-on-mailchimp-integration/admin/widget.php:383 msgid "Please select a list first" msgstr "" #: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:43 msgid "No list was found." msgstr "" #: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:47, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:51, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:53 msgid "MailPoet List" msgstr "" #: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:47 msgid "Select in which MailPoet list you wish to add a new subscriber" msgstr "" #: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:51 msgid "We couldn't find any lists in your MailPoet settings." msgstr "" #: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:53 msgid "Please install and activate MailPoet plugin." msgstr "" #: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:73 msgid "" "Please select at least one MailPoet list \n" "" msgstr "" #: ../pb-add-on-select2/admin/manage-fields.php:52 msgid "Maximum Selections" msgstr "" #: ../pb-add-on-select2/admin/manage-fields.php:52 msgid "Select2 multi-value select boxes can set restrictions regarding the maximum number of options selected." msgstr "" #: ../pb-add-on-select2/admin/manage-fields.php:53 msgid "User Inputted Options" msgstr "" #: ../pb-add-on-select2/admin/manage-fields.php:53 msgid "Check this to allow users to create their own options beside the pre-existing ones." msgstr "" #: ../pb-add-on-social-connect/facebook/facebook.php:32 msgid "Link with Facebook" msgstr "" #: ../pb-add-on-social-connect/facebook/facebook.php:38 msgid "Sign in with Facebook" msgstr "" #: ../pb-add-on-social-connect/google/google.php:31 msgid "Link with Google" msgstr "" #: ../pb-add-on-social-connect/google/google.php:37 msgid "Sign in with Google" msgstr "" #: ../pb-add-on-social-connect/linkedin/linkedin.php:40 msgid "Link with LinkedIn" msgstr "" #: ../pb-add-on-social-connect/linkedin/linkedin.php:46 msgid "Sign in with LinkedIn" msgstr "" #: ../pb-add-on-social-connect/twitter/twitter.php:53 msgid "Connection with twitter Failed" msgstr "" #: ../pb-add-on-social-connect/twitter/twitter.php:58 msgid "Error Receiving Request Token" msgstr "" #: ../pb-add-on-social-connect/twitter/twitter.php:142 msgid "Link with Twitter" msgstr "" #: ../pb-add-on-social-connect/twitter/twitter.php:148 msgid "Sign in with Twitter" msgstr "" #: admin/add-ons.php:10, admin/add-ons.php:10, admin/add-ons.php:193 msgid "Add-Ons" msgstr "" #: admin/add-ons.php:41 msgid "Recommended Plugins" msgstr "" #: admin/add-ons.php:72, admin/add-ons.php:143, admin/pms-cross-promotion.php:102 msgid "Free" msgstr "" #: admin/add-ons.php:74 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." msgstr "" #: admin/add-ons.php:84, admin/add-ons.php:155, admin/add-ons.php:195, admin/add-ons.php:287, admin/pms-cross-promotion.php:78, admin/pms-cross-promotion.php:114, admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "" #: admin/add-ons.php:88, admin/add-ons.php:159, admin/add-ons.php:207, admin/add-ons.php:291, admin/pms-cross-promotion.php:90, admin/pms-cross-promotion.php:118, admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "" #: admin/add-ons.php:93, admin/add-ons.php:164, admin/pms-cross-promotion.php:88, admin/pms-cross-promotion.php:123, admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "" #: admin/add-ons.php:95, admin/add-ons.php:166, admin/pms-cross-promotion.php:87, admin/pms-cross-promotion.php:125, admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "" #: admin/add-ons.php:101, admin/add-ons.php:172, admin/pms-cross-promotion.php:137, admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "" #: admin/add-ons.php:104, admin/add-ons.php:175, admin/add-ons.php:311, admin/pms-cross-promotion.php:141, admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "" #: admin/add-ons.php:109, admin/add-ons.php:180, admin/pms-cross-promotion.php:146 msgid "Could not install plugin. Retry or install manually." msgstr "" #: admin/add-ons.php:145 msgid "Accept user payments, create subscription plans and restrict content on your membership site." msgstr "" #: admin/add-ons.php:197, admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "" #: admin/add-ons.php:198, admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "" #: admin/add-ons.php:200 msgid "Add-On is Active" msgstr "" #: admin/add-ons.php:201 msgid "Add-On has been activated" msgstr "" #: admin/add-ons.php:202, admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "" #: admin/add-ons.php:204, admin/add-ons.php:298 msgid "Add-On is active" msgstr "" #: admin/add-ons.php:205, admin/add-ons.php:296 msgid "Add-On is inactive" msgstr "" #: admin/add-ons.php:208 msgid "Add-On has been deactivated." msgstr "" #: admin/add-ons.php:216 msgid "Something went wrong, we could not connect to the server. Please try again later." msgstr "" #: admin/add-ons.php:263 msgid "Available in Hobbyist and Pro Versions" msgstr "" #: admin/add-ons.php:265 msgid "Available in All Versions" msgstr "" #: admin/add-ons.php:306 msgid "Learn More" msgstr "" #: admin/add-ons.php:306, admin/pms-cross-promotion.php:134, admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "" #: admin/add-ons.php:320 msgid "Upgrade Profile Builder" msgstr "" #: admin/add-ons.php:321 msgid "Not compatible with Profile Builder" msgstr "" #: admin/add-ons.php:328, front-end/class-formbuilder.php:432 msgid "Update" msgstr "" #: admin/add-ons.php:329 msgid "Not compatible with your version of Profile Builder." msgstr "" #: admin/add-ons.php:330 msgid "Minimum required Profile Builder version:" msgstr "" #: admin/add-ons.php:335 msgid "Could not install add-on. Retry or install manually." msgstr "" #: admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "" #: admin/admin-bar.php:10, admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "" #: admin/admin-bar.php:53 msgid "Choose which user roles view the admin bar in the front-end of the website." msgstr "" #: admin/admin-bar.php:62 msgid "User-Role" msgstr "" #: admin/admin-bar.php:78, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "" #: admin/admin-bar.php:79 msgid "Show" msgstr "" #: admin/admin-bar.php:80, modules/user-listing/userlisting.php:1670 msgid "Hide" msgstr "" #: admin/admin-functions.php:37 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 )" msgstr "" #: admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "" #: admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "" #: admin/admin-functions.php:132 msgid "ERROR: The password must have the minimum length of %s characters" msgstr "" #: admin/admin-functions.php:137, admin/general-settings.php:281 msgid "Very weak" msgstr "" #: admin/admin-functions.php:137, admin/general-settings.php:282, features/functions.php:673, features/functions.php:697 msgid "Weak" msgstr "" #: admin/admin-functions.php:137, admin/general-settings.php:283, features/functions.php:673, features/functions.php:697 msgid "Medium" msgstr "" #: admin/admin-functions.php:137, admin/general-settings.php:284, features/functions.php:673, features/functions.php:697 msgid "Strong" msgstr "" #: admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr "" #: admin/admin-functions.php:187 msgid "Add Field" msgstr "" #: admin/admin-functions.php:189 msgid "Save Settings" msgstr "" #: admin/admin-functions.php:200 msgid "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. " msgstr "" #: admin/admin-functions.php:240 msgid "View Profile Builder documentation" msgstr "" #: admin/admin-functions.php:240 msgid "Docs" msgstr "" #: admin/admin-functions.php:260 msgid "Check out the Customization Toolbox add-on which packs the most popular customization requests from Profile Builder." msgstr "" #: admin/admin-functions.php:262 msgid "See details" msgstr "" #: admin/admin-functions.php:263 msgid "Dismiss this notice." msgstr "" #: admin/basic-info.php:10, admin/basic-info.php:10 msgid "Basic Information" msgstr "" #: admin/basic-info.php:30 msgid "Profile Builder %s" msgstr "" #: admin/basic-info.php:31 msgid "The best way to add front-end registration, edit profile and login forms." msgstr "" #: admin/basic-info.php:39 msgid "Speed up the setup process by automatically creating the form pages:" msgstr "" #: admin/basic-info.php:40 msgid "Create Form Pages" msgstr "" #: admin/basic-info.php:44 msgid "You can see all the pages with Profile Builder form shortcodes here:" msgstr "" #: admin/basic-info.php:45 msgid "View Form Pages" msgstr "" #: admin/basic-info.php:51 msgid "Login Form" msgstr "" #: admin/basic-info.php:52 msgid "Friction-less login using %s shortcode or a widget." msgstr "" #: admin/basic-info.php:55, modules/multiple-forms/register-forms.php:11, modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "" #: admin/basic-info.php:56 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "" #: admin/basic-info.php:59 msgid "Edit Profile Form" msgstr "" #: admin/basic-info.php:60 msgid "Straight forward edit profile forms using %s shortcode." msgstr "" #: admin/basic-info.php:66 msgid "Extra Features" msgstr "" #: admin/basic-info.php:67 msgid "Features that give you more control over your users, increased security and help you fight user registration spam." msgstr "" #: admin/basic-info.php:68 msgid "Enable extra features" msgstr "" #: admin/basic-info.php:72 msgid "Recover Password" msgstr "" #: admin/basic-info.php:73 msgid "Allow users to recover their password in the front-end using the %s." msgstr "" #: admin/basic-info.php:76 msgid "Admin Approval (*)" msgstr "" #: admin/basic-info.php:77 msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI." msgstr "" #: admin/basic-info.php:80 msgid "Email Confirmation" msgstr "" #: admin/basic-info.php:81 msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address." msgstr "" #: admin/basic-info.php:84, admin/general-settings.php:10, features/content-restriction/content-restriction.php:26, features/content-restriction/content-restriction.php:26 msgid "Content Restriction" msgstr "" #: admin/basic-info.php:85 msgid "Restrict users from accessing certain pages, posts or custom post types based on user role or logged-in status." msgstr "" #: admin/basic-info.php:88 msgid "Minimum Password Length and Strength Meter" msgstr "" #: admin/basic-info.php:89 msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength." msgstr "" #: admin/basic-info.php:92 msgid "Login with Email or Username" msgstr "" #: admin/basic-info.php:93 msgid "Allow users to log in with their email or username when accessing your site." msgstr "" #: admin/basic-info.php:96, features/roles-editor/roles-editor.php:244, features/roles-editor/roles-editor.php:245, features/roles-editor/roles-editor.php:250, features/roles-editor/roles-editor.php:257 msgid "Roles Editor" msgstr "" #: admin/basic-info.php:97 msgid "Add, remove, clone and edit roles and also capabilities for these roles." msgstr "" #: admin/basic-info.php:110 msgid "Customize Your Forms The Way You Want (*)" msgstr "" #: admin/basic-info.php:111 msgid "With Extra Profile Fields you can create the exact registration form your project needs." msgstr "" #: admin/basic-info.php:113 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "" #: admin/basic-info.php:115 msgid "Get started with extra fields" msgstr "" #: admin/basic-info.php:118 msgid "Avatar Upload" msgstr "" #: admin/basic-info.php:119 msgid "Generic Uploads" msgstr "" #: admin/basic-info.php:120 msgid "Agree To Terms Checkbox" msgstr "" #: admin/basic-info.php:121 msgid "Datepicker" msgstr "" #: admin/basic-info.php:122 msgid "Timepicker" msgstr "" #: admin/basic-info.php:123 msgid "Colorpicker" msgstr "" #: admin/basic-info.php:124 msgid "reCAPTCHA" msgstr "" #: admin/basic-info.php:125 msgid "Country Select" msgstr "" #: admin/basic-info.php:126 msgid "Currency Select" msgstr "" #: admin/basic-info.php:127 msgid "Timezone Select" msgstr "" #: admin/basic-info.php:131 msgid "Input / Hidden Input" msgstr "" #: admin/basic-info.php:132 msgid "Number" msgstr "" #: admin/basic-info.php:133 msgid "Checkbox" msgstr "" #: admin/basic-info.php:134 msgid "Select" msgstr "" #: admin/basic-info.php:135 msgid "Radio Buttons" msgstr "" #: admin/basic-info.php:136 msgid "Textarea" msgstr "" #: admin/basic-info.php:137 msgid "Validation" msgstr "" #: admin/basic-info.php:138 msgid "Map" msgstr "" #: admin/basic-info.php:139 msgid "HTML" msgstr "" #: admin/basic-info.php:148 msgid "Powerful Modules (**)" msgstr "" #: admin/basic-info.php:149 msgid "Everything you will need to manage your users is probably already available using the Pro Modules." msgstr "" #: admin/basic-info.php:151 msgid "Enable your modules" msgstr "" #: admin/basic-info.php:154 msgid "Find out more about PRO Modules" msgstr "" #: admin/basic-info.php:159, 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 msgid "User Listing" msgstr "" #: admin/basic-info.php:161 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." msgstr "" #: admin/basic-info.php:163 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." msgstr "" #: admin/basic-info.php:167, admin/general-settings.php:17, modules/modules.php:94 msgid "Email Customizer" msgstr "" #: admin/basic-info.php:168 msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval." msgstr "" #: admin/basic-info.php:171, modules/modules.php:106, modules/custom-redirects/custom_redirects_admin.php:33, modules/custom-redirects/custom_redirects_admin.php:34 msgid "Custom Redirects" msgstr "" #: admin/basic-info.php:172 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." msgstr "" #: admin/basic-info.php:177, modules/modules.php:73 msgid "Multiple Registration Forms" msgstr "" #: admin/basic-info.php:178 msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users." msgstr "" #: admin/basic-info.php:181, modules/modules.php:80 msgid "Multiple Edit-profile Forms" msgstr "" #: admin/basic-info.php:182 msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles." msgstr "" #: admin/basic-info.php:185, modules/modules.php:113 msgid "Repeater Fields" msgstr "" #: admin/basic-info.php:186 msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role." msgstr "" #: admin/basic-info.php:222 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr "" #: admin/basic-info.php:223 msgid "** only available in the %1$sPro version%2$s." msgstr "" #: admin/feedback.php:23 msgid "Quick Feedback" msgstr "" #: admin/feedback.php:24 msgid "Because we care about our clients, please leave us feedback on why you are no longer using our plugin." msgstr "" #: admin/feedback.php:30 msgid "Lacking certain features" msgstr "" #: admin/feedback.php:31 msgid "What feature would you like to see?" msgstr "" #: admin/feedback.php:35 msgid "Hard to use" msgstr "" #: admin/feedback.php:36 msgid "How can we improve our user experience ?" msgstr "" #: admin/feedback.php:40 msgid "Unsatisfactory support" msgstr "" #: admin/feedback.php:45 msgid "Other" msgstr "" #: admin/feedback.php:46 msgid "Please tell us more" msgstr "" #: admin/feedback.php:50 msgid "Poor Documentation" msgstr "" #: admin/feedback.php:51 msgid "Tell us what you couldn't find" msgstr "" #: admin/feedback.php:56 msgid "Submit & Deactivate" msgstr "" #: admin/feedback.php:59 msgid "Skip and Deactivate" msgstr "" #: admin/feedback.php:163 msgid "Submit and Deactivate" msgstr "" #: admin/general-settings.php:9 msgid "Admin Bar" msgstr "" #: admin/general-settings.php:11, admin/private-website.php:11, admin/private-website.php:11 msgid "Private Website" msgstr "" #: admin/general-settings.php:19 msgid "User Emails" msgstr "" #: admin/general-settings.php:20 msgid "Administrator Emails" msgstr "" #: admin/general-settings.php:97 msgid "Profile Builder Settings" msgstr "" #: admin/general-settings.php:110 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "" #: admin/general-settings.php:115 msgid "You can find the default file here: %1$s" msgstr "" #: admin/general-settings.php:122 msgid "\"Email Confirmation\" Activated:" msgstr "" #: admin/general-settings.php:130 msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "" #: admin/general-settings.php:132 msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s." msgstr "" #: admin/general-settings.php:140 msgid "\"Email Confirmation\" Landing Page:" msgstr "" #: admin/general-settings.php:145 msgid "Existing Pages" msgstr "" #: admin/general-settings.php:160 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." msgstr "" #: admin/general-settings.php:171 msgid "\"Admin Approval\" Activated:" msgstr "" #: admin/general-settings.php:179 msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "" #: admin/general-settings.php:186 msgid "\"Admin Approval\" on User Role:" msgstr "" #: admin/general-settings.php:205 msgid "Select on what user roles to activate Admin Approval." msgstr "" #: admin/general-settings.php:217 msgid "\"Roles Editor\" Activated:" msgstr "" #: admin/general-settings.php:225 msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s." msgstr "" #: admin/general-settings.php:236 msgid "\"Admin Approval\" Feature:" msgstr "" #: admin/general-settings.php:239 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." msgstr "" #: admin/general-settings.php:246 msgid "Allow Users to Log in With:" msgstr "" #: admin/general-settings.php:250 msgid "Username and Email" msgstr "" #: admin/general-settings.php:251, admin/manage-fields.php:318, front-end/login.php:246, front-end/login.php:260, front-end/login.php:389, ../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:111, modules/user-listing/userlisting.php:311, modules/user-listing/userlisting.php:798, modules/user-listing/userlisting.php:2348 msgid "Username" msgstr "" #: admin/general-settings.php:252, front-end/login.php:386, modules/email-customizer/email-customizer.php:29, modules/user-listing/userlisting.php:804, modules/user-listing/userlisting.php:2349 msgid "Email" msgstr "" #: admin/general-settings.php:255 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "" #: admin/general-settings.php:256 msgid "\"Username\" - users can Log In only with Username." msgstr "" #: admin/general-settings.php:257 msgid "\"Email\" - users can Log In only with Email." msgstr "" #: admin/general-settings.php:264 msgid "Minimum Password Length:" msgstr "" #: admin/general-settings.php:269 msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit" msgstr "" #: admin/general-settings.php:276 msgid "Minimum Password Strength:" msgstr "" #: admin/general-settings.php:280 msgid "Disabled" msgstr "" #: admin/general-settings.php:291 msgid "Use ajax on conditional fields:" msgstr "" #: admin/general-settings.php:299 msgid "For large conditional forms select \"Yes\" for an improved page performance" msgstr "" #: admin/manage-fields.php:17 msgid "Form Fields" msgstr "" #: admin/manage-fields.php:18 msgid "Manage Form Fields" msgstr "" #: admin/manage-fields.php:125 msgid "Choose one of the supported field types" msgstr "" #: admin/manage-fields.php:127 msgid ". Extra Field Types are available in Hobbyist or PRO versions." msgstr "" #: admin/manage-fields.php:160 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count" msgstr "" #: admin/manage-fields.php:163 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this will only affect subsequent entries" msgstr "" #: admin/manage-fields.php:177 msgid "Field Title" msgstr "" #: admin/manage-fields.php:177 msgid "Title of the field" msgstr "" #: admin/manage-fields.php:178, modules/multiple-forms/edit-profile-forms.php:245, modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "" #: admin/manage-fields.php:179 msgid "Meta-name" msgstr "" #: admin/manage-fields.php:180, 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 msgid "ID" msgstr "" #: admin/manage-fields.php:180, modules/multiple-forms/edit-profile-forms.php:246, modules/multiple-forms/register-forms.php:267 msgid "A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be edited" msgstr "" #: admin/manage-fields.php:181 msgid "Description" msgstr "" #: admin/manage-fields.php:181 msgid "Enter a (detailed) description of the option for end users to read
            Optional" msgstr "" #: admin/manage-fields.php:182 msgid "Row Count" msgstr "" #: admin/manage-fields.php:182 msgid "Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5" msgstr "" #: admin/manage-fields.php:183 msgid "Allowed Image Extensions" msgstr "" #: admin/manage-fields.php:183 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "" #: admin/manage-fields.php:184 msgid "Allowed Upload Extensions" msgstr "" #: admin/manage-fields.php:184 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)" msgstr "" #: admin/manage-fields.php:185 msgid "Avatar Size" msgstr "" #: admin/manage-fields.php:185 msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100" msgstr "" #: admin/manage-fields.php:186 msgid "Date-format" msgstr "" #: admin/manage-fields.php:186 msgid "Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yy" msgstr "" #: admin/manage-fields.php:187 msgid "Terms of Agreement" msgstr "" #: admin/manage-fields.php:187 msgid "Enter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>" msgstr "" #: admin/manage-fields.php:188 msgid "Options" msgstr "" #: admin/manage-fields.php:188 msgid "Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes" msgstr "" #: admin/manage-fields.php:189 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "" #: admin/manage-fields.php:190 msgid "reCAPTCHA Type" msgstr "" #: admin/manage-fields.php:190 msgid "Choose the type of reCAPTCHA you wish to add to this site." msgstr "" #: admin/manage-fields.php:191 msgid "Site Key" msgstr "" #: admin/manage-fields.php:191 msgid "The site key from Google, www.google.com/recaptcha" msgstr "" #: admin/manage-fields.php:192 msgid "Secret Key" msgstr "" #: admin/manage-fields.php:192 msgid "The secret key from Google, www.google.com/recaptcha" msgstr "" #: admin/manage-fields.php:193 msgid "Display on PB forms" msgstr "" #: admin/manage-fields.php:193 msgid "PB Login" msgstr "" #: admin/manage-fields.php:193 msgid "PB Register" msgstr "" #: admin/manage-fields.php:193 msgid "PB Recover Password" msgstr "" #: admin/manage-fields.php:193 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "" #: admin/manage-fields.php:194 msgid "Display on default WP forms" msgstr "" #: admin/manage-fields.php:194 msgid "Default WP Login" msgstr "" #: admin/manage-fields.php:194 msgid "Default WP Register" msgstr "" #: admin/manage-fields.php:194 msgid "Default WP Recover Password" msgstr "" #: admin/manage-fields.php:194 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "" #: admin/manage-fields.php:195 msgid "User Roles" msgstr "" #: admin/manage-fields.php:195 msgid "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "" #: admin/manage-fields.php:196 msgid "Display on Edit Profile" msgstr "" #: admin/manage-fields.php:196 msgid "Check if you want the select user role field to appear on Edit Profile forms" msgstr "" #: admin/manage-fields.php:197 msgid "User Roles Order" msgstr "" #: admin/manage-fields.php:197 msgid "Save the user role order from the user roles checkboxes" msgstr "" #: admin/manage-fields.php:198 msgid "Default Value" msgstr "" #: admin/manage-fields.php:198 msgid "Default value of the field" msgstr "" #: admin/manage-fields.php:199, admin/manage-fields.php:201, admin/manage-fields.php:202, admin/manage-fields.php:203 msgid "Default Option" msgstr "" #: admin/manage-fields.php:199 msgid "Specify the option which should be selected by default" msgstr "" #: admin/manage-fields.php:200 msgid "Default Option(s)" msgstr "" #: admin/manage-fields.php:200 msgid "Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)" msgstr "" #: admin/manage-fields.php:201, admin/manage-fields.php:202, admin/manage-fields.php:203 msgid "Default option of the field" msgstr "" #: admin/manage-fields.php:204 msgid "Show Currency Symbol" msgstr "" #: admin/manage-fields.php:204 msgid "Whether the currency symbol should be displayed after the currency name in the select option." msgstr "" #: admin/manage-fields.php:205 msgid "Show Post Type" msgstr "" #: admin/manage-fields.php:205 msgid "Posts from what post type will be displayed in the select." msgstr "" #: admin/manage-fields.php:206 msgid "Allowable Values" msgstr "" #: admin/manage-fields.php:206 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." msgstr "" #: admin/manage-fields.php:207 msgid "Error Message" msgstr "" #: admin/manage-fields.php:207 msgid "Set a custom error message that will be displayed to the user." msgstr "" #: admin/manage-fields.php:208 msgid "Time Format" msgstr "" #: admin/manage-fields.php:208 msgid "Specify the time format." msgstr "" #: admin/manage-fields.php:209 msgid "Google Maps API Key" msgstr "" #: admin/manage-fields.php:209 msgid "Enter your Google Maps API key ( Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used." msgstr "" #: admin/manage-fields.php:214 msgid "Default Latitude" msgstr "" #: admin/manage-fields.php:215 msgid "The latitude at which the map should be displayed when no pins are attached." msgstr "" #: admin/manage-fields.php:221 msgid "Default Longitude" msgstr "" #: admin/manage-fields.php:222 msgid "The longitude at which the map should be displayed when no pins are attached." msgstr "" #: admin/manage-fields.php:228 msgid "Default Zoom Level" msgstr "" #: admin/manage-fields.php:229 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "" #: admin/manage-fields.php:233 msgid "Map Height" msgstr "" #: admin/manage-fields.php:233 msgid "The height of the map." msgstr "" #: admin/manage-fields.php:234 msgid "Default Content" msgstr "" #: admin/manage-fields.php:234 msgid "Default value of the textarea" msgstr "" #: admin/manage-fields.php:235 msgid "HTML Content" msgstr "" #: admin/manage-fields.php:235 msgid "Add your HTML (or text) content" msgstr "" #: admin/manage-fields.php:236 msgid "Phone Format" msgstr "" #: admin/manage-fields.php:236 msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces." msgstr "" #: admin/manage-fields.php:236 msgid "Eg. (###) ###-####" msgstr "" #: admin/manage-fields.php:236 msgid "Empty field won't check for correct phone number." msgstr "" #: admin/manage-fields.php:237 msgid "Heading Tag" msgstr "" #: admin/manage-fields.php:237 msgid "Change heading field size on front-end forms" msgstr "" #: admin/manage-fields.php:238 msgid "Min Number Value" msgstr "" #: admin/manage-fields.php:238 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "" #: admin/manage-fields.php:238 msgid "Leave it empty for no min value" msgstr "" #: admin/manage-fields.php:239 msgid "Max Number Value" msgstr "" #: admin/manage-fields.php:239 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "" #: admin/manage-fields.php:239 msgid "Leave it empty for no max value" msgstr "" #: admin/manage-fields.php:240 msgid "Number Step Value" msgstr "" #: admin/manage-fields.php:240 msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal" msgstr "" #: admin/manage-fields.php:240 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "" #: admin/manage-fields.php:240 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)" msgstr "" #: admin/manage-fields.php:240 msgid "Leave it empty for no restriction" msgstr "" #: admin/manage-fields.php:241 msgid "Whether the field is required or not" msgstr "" #: admin/manage-fields.php:242 msgid "Overwrite Existing" msgstr "" #: admin/manage-fields.php:242 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
            Use this at your own risk" msgstr "" #: admin/manage-fields.php:248 msgid "POIs Load Type" msgstr "" #: admin/manage-fields.php:250 msgid "POIs of the listed users (as filtered & paginated)" msgstr "" #: admin/manage-fields.php:251 msgid "POIs of all the users for the filter* (no pagination)" msgstr "" #: admin/manage-fields.php:254 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." msgstr "" #: admin/manage-fields.php:261 msgid "POI Bubble Info" msgstr "" #: admin/manage-fields.php:264 msgid "Select the attributes to be listed inside the POI bubble." msgstr "" #: admin/manage-fields.php:275 msgid "Number of Users per Map Iteration" msgstr "" #: admin/manage-fields.php:276 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.

            Please adjust this value to your hosting capabilities, and make sure that the value you set is the best for performance. We recommend a maximum value of 300." msgstr "" #: admin/manage-fields.php:284 msgid "Form Field Properties" msgstr "" #: admin/manage-fields.php:298 msgid "Registration & Edit Profile Forms" msgstr "" #: admin/manage-fields.php:318 msgid "Usernames cannot be changed." msgstr "" #: admin/manage-fields.php:321, modules/user-listing/userlisting.php:837, modules/user-listing/userlisting.php:2356 msgid "Nickname" msgstr "" #: admin/manage-fields.php:322 msgid "Display name publicly as" msgstr "" #: admin/manage-fields.php:325, modules/email-customizer/email-customizer.php:33, modules/user-listing/userlisting.php:120, modules/user-listing/userlisting.php:819, modules/user-listing/userlisting.php:2350 msgid "Website" msgstr "" #: admin/manage-fields.php:329 msgid "AIM" msgstr "" #: admin/manage-fields.php:330 msgid "Yahoo IM" msgstr "" #: admin/manage-fields.php:331 msgid "Jabber / Google Talk" msgstr "" #: admin/manage-fields.php:335, modules/user-listing/userlisting.php:123, modules/user-listing/userlisting.php:822, modules/user-listing/userlisting.php:2351 msgid "Biographical Info" msgstr "" #: admin/manage-fields.php:335 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "" #: admin/manage-fields.php:336, front-end/recover.php:70, modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "" #: admin/manage-fields.php:336 msgid "Type your password." msgstr "" #: admin/manage-fields.php:337, front-end/recover.php:71 msgid "Repeat Password" msgstr "" #: admin/manage-fields.php:337 msgid "Type your password again. " msgstr "" #: admin/manage-fields.php:339 msgid "Blog Details" msgstr "" #: admin/manage-fields.php:398 msgid "Select a Country" msgstr "" #: admin/manage-fields.php:399 msgid "Afghanistan" msgstr "" #: admin/manage-fields.php:400 msgid "Aland Islands" msgstr "" #: admin/manage-fields.php:401 msgid "Albania" msgstr "" #: admin/manage-fields.php:402 msgid "Algeria" msgstr "" #: admin/manage-fields.php:403 msgid "American Samoa" msgstr "" #: admin/manage-fields.php:404 msgid "Andorra" msgstr "" #: admin/manage-fields.php:405 msgid "Angola" msgstr "" #: admin/manage-fields.php:406 msgid "Anguilla" msgstr "" #: admin/manage-fields.php:407 msgid "Antarctica" msgstr "" #: admin/manage-fields.php:408 msgid "Antigua and Barbuda" msgstr "" #: admin/manage-fields.php:409 msgid "Argentina" msgstr "" #: admin/manage-fields.php:410 msgid "Armenia" msgstr "" #: admin/manage-fields.php:411 msgid "Aruba" msgstr "" #: admin/manage-fields.php:412 msgid "Australia" msgstr "" #: admin/manage-fields.php:413 msgid "Austria" msgstr "" #: admin/manage-fields.php:414 msgid "Azerbaijan" msgstr "" #: admin/manage-fields.php:415 msgid "Bahamas" msgstr "" #: admin/manage-fields.php:416 msgid "Bahrain" msgstr "" #: admin/manage-fields.php:417 msgid "Bangladesh" msgstr "" #: admin/manage-fields.php:418 msgid "Barbados" msgstr "" #: admin/manage-fields.php:419 msgid "Belarus" msgstr "" #: admin/manage-fields.php:420 msgid "Belgium" msgstr "" #: admin/manage-fields.php:421 msgid "Belize" msgstr "" #: admin/manage-fields.php:422 msgid "Benin" msgstr "" #: admin/manage-fields.php:423 msgid "Bermuda" msgstr "" #: admin/manage-fields.php:424 msgid "Bhutan" msgstr "" #: admin/manage-fields.php:425 msgid "Bolivia" msgstr "" #: admin/manage-fields.php:426 msgid "Bonaire, Saint Eustatius and Saba" msgstr "" #: admin/manage-fields.php:427 msgid "Bosnia and Herzegovina" msgstr "" #: admin/manage-fields.php:428 msgid "Botswana" msgstr "" #: admin/manage-fields.php:429 msgid "Bouvet Island" msgstr "" #: admin/manage-fields.php:430 msgid "Brazil" msgstr "" #: admin/manage-fields.php:431 msgid "British Indian Ocean Territory" msgstr "" #: admin/manage-fields.php:432 msgid "British Virgin Islands" msgstr "" #: admin/manage-fields.php:433 msgid "Brunei" msgstr "" #: admin/manage-fields.php:434 msgid "Bulgaria" msgstr "" #: admin/manage-fields.php:435 msgid "Burkina Faso" msgstr "" #: admin/manage-fields.php:436 msgid "Burundi" msgstr "" #: admin/manage-fields.php:437 msgid "Cambodia" msgstr "" #: admin/manage-fields.php:438 msgid "Cameroon" msgstr "" #: admin/manage-fields.php:439 msgid "Canada" msgstr "" #: admin/manage-fields.php:440 msgid "Cape Verde" msgstr "" #: admin/manage-fields.php:441 msgid "Cayman Islands" msgstr "" #: admin/manage-fields.php:442 msgid "Central African Republic" msgstr "" #: admin/manage-fields.php:443 msgid "Chad" msgstr "" #: admin/manage-fields.php:444 msgid "Chile" msgstr "" #: admin/manage-fields.php:445 msgid "China" msgstr "" #: admin/manage-fields.php:446 msgid "Christmas Island" msgstr "" #: admin/manage-fields.php:447 msgid "Cocos Islands" msgstr "" #: admin/manage-fields.php:448 msgid "Colombia" msgstr "" #: admin/manage-fields.php:449 msgid "Comoros" msgstr "" #: admin/manage-fields.php:450 msgid "Cook Islands" msgstr "" #: admin/manage-fields.php:451 msgid "Costa Rica" msgstr "" #: admin/manage-fields.php:452 msgid "Croatia" msgstr "" #: admin/manage-fields.php:453 msgid "Cuba" msgstr "" #: admin/manage-fields.php:454 msgid "Curacao" msgstr "" #: admin/manage-fields.php:455 msgid "Cyprus" msgstr "" #: admin/manage-fields.php:456 msgid "Czech Republic" msgstr "" #: admin/manage-fields.php:457 msgid "Democratic Republic of the Congo" msgstr "" #: admin/manage-fields.php:458 msgid "Denmark" msgstr "" #: admin/manage-fields.php:459 msgid "Djibouti" msgstr "" #: admin/manage-fields.php:460 msgid "Dominica" msgstr "" #: admin/manage-fields.php:461 msgid "Dominican Republic" msgstr "" #: admin/manage-fields.php:462 msgid "East Timor" msgstr "" #: admin/manage-fields.php:463 msgid "Ecuador" msgstr "" #: admin/manage-fields.php:464 msgid "Egypt" msgstr "" #: admin/manage-fields.php:465 msgid "El Salvador" msgstr "" #: admin/manage-fields.php:466 msgid "Equatorial Guinea" msgstr "" #: admin/manage-fields.php:467 msgid "Eritrea" msgstr "" #: admin/manage-fields.php:468 msgid "Estonia" msgstr "" #: admin/manage-fields.php:469 msgid "Ethiopia" msgstr "" #: admin/manage-fields.php:470 msgid "Falkland Islands" msgstr "" #: admin/manage-fields.php:471 msgid "Faroe Islands" msgstr "" #: admin/manage-fields.php:472 msgid "Fiji" msgstr "" #: admin/manage-fields.php:473 msgid "Finland" msgstr "" #: admin/manage-fields.php:474 msgid "France" msgstr "" #: admin/manage-fields.php:475 msgid "French Guiana" msgstr "" #: admin/manage-fields.php:476 msgid "French Polynesia" msgstr "" #: admin/manage-fields.php:477 msgid "French Southern Territories" msgstr "" #: admin/manage-fields.php:478 msgid "Gabon" msgstr "" #: admin/manage-fields.php:479 msgid "Gambia" msgstr "" #: admin/manage-fields.php:480 msgid "Georgia" msgstr "" #: admin/manage-fields.php:481 msgid "Germany" msgstr "" #: admin/manage-fields.php:482 msgid "Ghana" msgstr "" #: admin/manage-fields.php:483 msgid "Gibraltar" msgstr "" #: admin/manage-fields.php:484 msgid "Greece" msgstr "" #: admin/manage-fields.php:485 msgid "Greenland" msgstr "" #: admin/manage-fields.php:486 msgid "Grenada" msgstr "" #: admin/manage-fields.php:487 msgid "Guadeloupe" msgstr "" #: admin/manage-fields.php:488 msgid "Guam" msgstr "" #: admin/manage-fields.php:489 msgid "Guatemala" msgstr "" #: admin/manage-fields.php:490 msgid "Guernsey" msgstr "" #: admin/manage-fields.php:491 msgid "Guinea" msgstr "" #: admin/manage-fields.php:492 msgid "Guinea-Bissau" msgstr "" #: admin/manage-fields.php:493 msgid "Guyana" msgstr "" #: admin/manage-fields.php:494 msgid "Haiti" msgstr "" #: admin/manage-fields.php:495 msgid "Heard Island and McDonald Islands" msgstr "" #: admin/manage-fields.php:496 msgid "Honduras" msgstr "" #: admin/manage-fields.php:497 msgid "Hong Kong" msgstr "" #: admin/manage-fields.php:498 msgid "Hungary" msgstr "" #: admin/manage-fields.php:499 msgid "Iceland" msgstr "" #: admin/manage-fields.php:500 msgid "India" msgstr "" #: admin/manage-fields.php:501 msgid "Indonesia" msgstr "" #: admin/manage-fields.php:502 msgid "Iran" msgstr "" #: admin/manage-fields.php:503 msgid "Iraq" msgstr "" #: admin/manage-fields.php:504 msgid "Ireland" msgstr "" #: admin/manage-fields.php:505 msgid "Isle of Man" msgstr "" #: admin/manage-fields.php:506 msgid "Israel" msgstr "" #: admin/manage-fields.php:507 msgid "Italy" msgstr "" #: admin/manage-fields.php:508 msgid "Ivory Coast" msgstr "" #: admin/manage-fields.php:509 msgid "Jamaica" msgstr "" #: admin/manage-fields.php:510 msgid "Japan" msgstr "" #: admin/manage-fields.php:511 msgid "Jersey" msgstr "" #: admin/manage-fields.php:512 msgid "Jordan" msgstr "" #: admin/manage-fields.php:513 msgid "Kazakhstan" msgstr "" #: admin/manage-fields.php:514 msgid "Kenya" msgstr "" #: admin/manage-fields.php:515 msgid "Kiribati" msgstr "" #: admin/manage-fields.php:516 msgid "Kosovo" msgstr "" #: admin/manage-fields.php:517 msgid "Kuwait" msgstr "" #: admin/manage-fields.php:518 msgid "Kyrgyzstan" msgstr "" #: admin/manage-fields.php:519 msgid "Laos" msgstr "" #: admin/manage-fields.php:520 msgid "Latvia" msgstr "" #: admin/manage-fields.php:521 msgid "Lebanon" msgstr "" #: admin/manage-fields.php:522 msgid "Lesotho" msgstr "" #: admin/manage-fields.php:523 msgid "Liberia" msgstr "" #: admin/manage-fields.php:524 msgid "Libya" msgstr "" #: admin/manage-fields.php:525 msgid "Liechtenstein" msgstr "" #: admin/manage-fields.php:526 msgid "Lithuania" msgstr "" #: admin/manage-fields.php:527 msgid "Luxembourg" msgstr "" #: admin/manage-fields.php:528 msgid "Macao" msgstr "" #: admin/manage-fields.php:529 msgid "Macedonia" msgstr "" #: admin/manage-fields.php:530 msgid "Madagascar" msgstr "" #: admin/manage-fields.php:531 msgid "Malawi" msgstr "" #: admin/manage-fields.php:532 msgid "Malaysia" msgstr "" #: admin/manage-fields.php:533 msgid "Maldives" msgstr "" #: admin/manage-fields.php:534 msgid "Mali" msgstr "" #: admin/manage-fields.php:535 msgid "Malta" msgstr "" #: admin/manage-fields.php:536 msgid "Marshall Islands" msgstr "" #: admin/manage-fields.php:537 msgid "Martinique" msgstr "" #: admin/manage-fields.php:538 msgid "Mauritania" msgstr "" #: admin/manage-fields.php:539 msgid "Mauritius" msgstr "" #: admin/manage-fields.php:540 msgid "Mayotte" msgstr "" #: admin/manage-fields.php:541 msgid "Mexico" msgstr "" #: admin/manage-fields.php:542 msgid "Micronesia" msgstr "" #: admin/manage-fields.php:543 msgid "Moldova" msgstr "" #: admin/manage-fields.php:544 msgid "Monaco" msgstr "" #: admin/manage-fields.php:545 msgid "Mongolia" msgstr "" #: admin/manage-fields.php:546 msgid "Montenegro" msgstr "" #: admin/manage-fields.php:547 msgid "Montserrat" msgstr "" #: admin/manage-fields.php:548 msgid "Morocco" msgstr "" #: admin/manage-fields.php:549 msgid "Mozambique" msgstr "" #: admin/manage-fields.php:550 msgid "Myanmar" msgstr "" #: admin/manage-fields.php:551 msgid "Namibia" msgstr "" #: admin/manage-fields.php:552 msgid "Nauru" msgstr "" #: admin/manage-fields.php:553 msgid "Nepal" msgstr "" #: admin/manage-fields.php:554 msgid "Netherlands" msgstr "" #: admin/manage-fields.php:555 msgid "New Caledonia" msgstr "" #: admin/manage-fields.php:556 msgid "New Zealand" msgstr "" #: admin/manage-fields.php:557 msgid "Nicaragua" msgstr "" #: admin/manage-fields.php:558 msgid "Niger" msgstr "" #: admin/manage-fields.php:559 msgid "Nigeria" msgstr "" #: admin/manage-fields.php:560 msgid "Niue" msgstr "" #: admin/manage-fields.php:561 msgid "Norfolk Island" msgstr "" #: admin/manage-fields.php:562 msgid "North Korea" msgstr "" #: admin/manage-fields.php:563 msgid "Northern Mariana Islands" msgstr "" #: admin/manage-fields.php:564 msgid "Norway" msgstr "" #: admin/manage-fields.php:565 msgid "Oman" msgstr "" #: admin/manage-fields.php:566 msgid "Pakistan" msgstr "" #: admin/manage-fields.php:567 msgid "Palau" msgstr "" #: admin/manage-fields.php:568 msgid "Palestinian Territory" msgstr "" #: admin/manage-fields.php:569 msgid "Panama" msgstr "" #: admin/manage-fields.php:570 msgid "Papua New Guinea" msgstr "" #: admin/manage-fields.php:571 msgid "Paraguay" msgstr "" #: admin/manage-fields.php:572 msgid "Peru" msgstr "" #: admin/manage-fields.php:573 msgid "Philippines" msgstr "" #: admin/manage-fields.php:574 msgid "Pitcairn" msgstr "" #: admin/manage-fields.php:575 msgid "Poland" msgstr "" #: admin/manage-fields.php:576 msgid "Portugal" msgstr "" #: admin/manage-fields.php:577 msgid "Puerto Rico" msgstr "" #: admin/manage-fields.php:578 msgid "Qatar" msgstr "" #: admin/manage-fields.php:579 msgid "Republic of the Congo" msgstr "" #: admin/manage-fields.php:580 msgid "Reunion" msgstr "" #: admin/manage-fields.php:581 msgid "Romania" msgstr "" #: admin/manage-fields.php:582 msgid "Russia" msgstr "" #: admin/manage-fields.php:583 msgid "Rwanda" msgstr "" #: admin/manage-fields.php:584 msgid "Saint Barthelemy" msgstr "" #: admin/manage-fields.php:585 msgid "Saint Helena" msgstr "" #: admin/manage-fields.php:586 msgid "Saint Kitts and Nevis" msgstr "" #: admin/manage-fields.php:587 msgid "Saint Lucia" msgstr "" #: admin/manage-fields.php:588 msgid "Saint Martin" msgstr "" #: admin/manage-fields.php:589 msgid "Saint Pierre and Miquelon" msgstr "" #: admin/manage-fields.php:590 msgid "Saint Vincent and the Grenadines" msgstr "" #: admin/manage-fields.php:591 msgid "Samoa" msgstr "" #: admin/manage-fields.php:592 msgid "San Marino" msgstr "" #: admin/manage-fields.php:593 msgid "Sao Tome and Principe" msgstr "" #: admin/manage-fields.php:594 msgid "Saudi Arabia" msgstr "" #: admin/manage-fields.php:595 msgid "Senegal" msgstr "" #: admin/manage-fields.php:596 msgid "Serbia" msgstr "" #: admin/manage-fields.php:597 msgid "Seychelles" msgstr "" #: admin/manage-fields.php:598 msgid "Sierra Leone" msgstr "" #: admin/manage-fields.php:599 msgid "Singapore" msgstr "" #: admin/manage-fields.php:600 msgid "Sint Maarten" msgstr "" #: admin/manage-fields.php:601 msgid "Slovakia" msgstr "" #: admin/manage-fields.php:602 msgid "Slovenia" msgstr "" #: admin/manage-fields.php:603 msgid "Solomon Islands" msgstr "" #: admin/manage-fields.php:604 msgid "Somalia" msgstr "" #: admin/manage-fields.php:605 msgid "South Africa" msgstr "" #: admin/manage-fields.php:606 msgid "South Georgia and the South Sandwich Islands" msgstr "" #: admin/manage-fields.php:607 msgid "South Korea" msgstr "" #: admin/manage-fields.php:608 msgid "South Sudan" msgstr "" #: admin/manage-fields.php:609 msgid "Spain" msgstr "" #: admin/manage-fields.php:610 msgid "Sri Lanka" msgstr "" #: admin/manage-fields.php:611 msgid "Sudan" msgstr "" #: admin/manage-fields.php:612 msgid "Suriname" msgstr "" #: admin/manage-fields.php:613 msgid "Svalbard and Jan Mayen" msgstr "" #: admin/manage-fields.php:614 msgid "Swaziland" msgstr "" #: admin/manage-fields.php:615 msgid "Sweden" msgstr "" #: admin/manage-fields.php:616 msgid "Switzerland" msgstr "" #: admin/manage-fields.php:617 msgid "Syria" msgstr "" #: admin/manage-fields.php:618 msgid "Taiwan" msgstr "" #: admin/manage-fields.php:619 msgid "Tajikistan" msgstr "" #: admin/manage-fields.php:620 msgid "Tanzania" msgstr "" #: admin/manage-fields.php:621 msgid "Thailand" msgstr "" #: admin/manage-fields.php:622 msgid "Togo" msgstr "" #: admin/manage-fields.php:623 msgid "Tokelau" msgstr "" #: admin/manage-fields.php:624 msgid "Tonga" msgstr "" #: admin/manage-fields.php:625 msgid "Trinidad and Tobago" msgstr "" #: admin/manage-fields.php:626 msgid "Tunisia" msgstr "" #: admin/manage-fields.php:627 msgid "Turkey" msgstr "" #: admin/manage-fields.php:628 msgid "Turkmenistan" msgstr "" #: admin/manage-fields.php:629 msgid "Turks and Caicos Islands" msgstr "" #: admin/manage-fields.php:630 msgid "Tuvalu" msgstr "" #: admin/manage-fields.php:631 msgid "U.S. Virgin Islands" msgstr "" #: admin/manage-fields.php:632 msgid "Uganda" msgstr "" #: admin/manage-fields.php:633 msgid "Ukraine" msgstr "" #: admin/manage-fields.php:634 msgid "United Arab Emirates" msgstr "" #: admin/manage-fields.php:635 msgid "United Kingdom" msgstr "" #: admin/manage-fields.php:636 msgid "United States" msgstr "" #: admin/manage-fields.php:637 msgid "United States Minor Outlying Islands" msgstr "" #: admin/manage-fields.php:638 msgid "Uruguay" msgstr "" #: admin/manage-fields.php:639 msgid "Uzbekistan" msgstr "" #: admin/manage-fields.php:640 msgid "Vanuatu" msgstr "" #: admin/manage-fields.php:641 msgid "Vatican" msgstr "" #: admin/manage-fields.php:642 msgid "Venezuela" msgstr "" #: admin/manage-fields.php:643 msgid "Vietnam" msgstr "" #: admin/manage-fields.php:644 msgid "Wallis and Futuna" msgstr "" #: admin/manage-fields.php:645 msgid "Western Sahara" msgstr "" #: admin/manage-fields.php:646 msgid "Yemen" msgstr "" #: admin/manage-fields.php:647 msgid "Zambia" msgstr "" #: admin/manage-fields.php:648 msgid "Zimbabwe" msgstr "" #: admin/manage-fields.php:681 msgid "Albania Lek" msgstr "" #: admin/manage-fields.php:682 msgid "Afghanistan Afghani" msgstr "" #: admin/manage-fields.php:683 msgid "Argentina Peso" msgstr "" #: admin/manage-fields.php:685 msgid "Australia Dollar" msgstr "" #: admin/manage-fields.php:686 msgid "Azerbaijan New Manat" msgstr "" #: admin/manage-fields.php:687 msgid "Bahamas Dollar" msgstr "" #: admin/manage-fields.php:688 msgid "Barbados Dollar" msgstr "" #: admin/manage-fields.php:689 msgid "Bangladeshi taka" msgstr "" #: admin/manage-fields.php:690 msgid "Belarus Ruble" msgstr "" #: admin/manage-fields.php:691 msgid "Belize Dollar" msgstr "" #: admin/manage-fields.php:692 msgid "Bermuda Dollar" msgstr "" #: admin/manage-fields.php:693 msgid "Bolivia Boliviano" msgstr "" #: admin/manage-fields.php:694 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "" #: admin/manage-fields.php:695 msgid "Botswana Pula" msgstr "" #: admin/manage-fields.php:696 msgid "Bulgaria Lev" msgstr "" #: admin/manage-fields.php:697 msgid "Brazil Real" msgstr "" #: admin/manage-fields.php:698 msgid "Brunei Darussalam Dollar" msgstr "" #: admin/manage-fields.php:699 msgid "Cambodia Riel" msgstr "" #: admin/manage-fields.php:700 msgid "Canada Dollar" msgstr "" #: admin/manage-fields.php:701 msgid "Cayman Islands Dollar" msgstr "" #: admin/manage-fields.php:702 msgid "Chile Peso" msgstr "" #: admin/manage-fields.php:703 msgid "China Yuan Renminbi" msgstr "" #: admin/manage-fields.php:704 msgid "Colombia Peso" msgstr "" #: admin/manage-fields.php:705 msgid "Costa Rica Colon" msgstr "" #: admin/manage-fields.php:706 msgid "Croatia Kuna" msgstr "" #: admin/manage-fields.php:707 msgid "Cuba Peso" msgstr "" #: admin/manage-fields.php:708 msgid "Czech Republic Koruna" msgstr "" #: admin/manage-fields.php:709 msgid "Denmark Krone" msgstr "" #: admin/manage-fields.php:710 msgid "Dominican Republic Peso" msgstr "" #: admin/manage-fields.php:711 msgid "East Caribbean Dollar" msgstr "" #: admin/manage-fields.php:712 msgid "Egypt Pound" msgstr "" #: admin/manage-fields.php:713 msgid "El Salvador Colon" msgstr "" #: admin/manage-fields.php:714 msgid "Estonia Kroon" msgstr "" #: admin/manage-fields.php:715 msgid "Euro" msgstr "" #: admin/manage-fields.php:716 msgid "Falkland Islands (Malvinas) Pound" msgstr "" #: admin/manage-fields.php:717 msgid "Fiji Dollar" msgstr "" #: admin/manage-fields.php:718 msgid "Ghana Cedis" msgstr "" #: admin/manage-fields.php:719 msgid "Gibraltar Pound" msgstr "" #: admin/manage-fields.php:720 msgid "Guatemala Quetzal" msgstr "" #: admin/manage-fields.php:721 msgid "Guernsey Pound" msgstr "" #: admin/manage-fields.php:722 msgid "Guyana Dollar" msgstr "" #: admin/manage-fields.php:723 msgid "Honduras Lempira" msgstr "" #: admin/manage-fields.php:724 msgid "Hong Kong Dollar" msgstr "" #: admin/manage-fields.php:725 msgid "Hungary Forint" msgstr "" #: admin/manage-fields.php:726 msgid "Iceland Krona" msgstr "" #: admin/manage-fields.php:727 msgid "India Rupee" msgstr "" #: admin/manage-fields.php:728 msgid "Indonesia Rupiah" msgstr "" #: admin/manage-fields.php:729 msgid "Iran Rial" msgstr "" #: admin/manage-fields.php:730 msgid "Isle of Man Pound" msgstr "" #: admin/manage-fields.php:731 msgid "Israel Shekel" msgstr "" #: admin/manage-fields.php:732 msgid "Jamaica Dollar" msgstr "" #: admin/manage-fields.php:733 msgid "Japan Yen" msgstr "" #: admin/manage-fields.php:734 msgid "Jersey Pound" msgstr "" #: admin/manage-fields.php:735 msgid "Kazakhstan Tenge" msgstr "" #: admin/manage-fields.php:736 msgid "Korea (North) Won" msgstr "" #: admin/manage-fields.php:737 msgid "Korea (South) Won" msgstr "" #: admin/manage-fields.php:738 msgid "Kyrgyzstan Som" msgstr "" #: admin/manage-fields.php:739 msgid "Laos Kip" msgstr "" #: admin/manage-fields.php:740 msgid "Latvia Lat" msgstr "" #: admin/manage-fields.php:741 msgid "Lebanon Pound" msgstr "" #: admin/manage-fields.php:742 msgid "Liberia Dollar" msgstr "" #: admin/manage-fields.php:743 msgid "Lithuania Litas" msgstr "" #: admin/manage-fields.php:744 msgid "Macedonia Denar" msgstr "" #: admin/manage-fields.php:745 msgid "Malaysia Ringgit" msgstr "" #: admin/manage-fields.php:746 msgid "Mauritius Rupee" msgstr "" #: admin/manage-fields.php:747 msgid "Mexico Peso" msgstr "" #: admin/manage-fields.php:748 msgid "Mongolia Tughrik" msgstr "" #: admin/manage-fields.php:749 msgid "Mozambique Metical" msgstr "" #: admin/manage-fields.php:750 msgid "Namibia Dollar" msgstr "" #: admin/manage-fields.php:751 msgid "Nepal Rupee" msgstr "" #: admin/manage-fields.php:752 msgid "Netherlands Antilles Guilder" msgstr "" #: admin/manage-fields.php:753 msgid "New Zealand Dollar" msgstr "" #: admin/manage-fields.php:754 msgid "Nicaragua Cordoba" msgstr "" #: admin/manage-fields.php:755 msgid "Nigeria Naira" msgstr "" #: admin/manage-fields.php:756 msgid "Norway Krone" msgstr "" #: admin/manage-fields.php:757 msgid "Oman Rial" msgstr "" #: admin/manage-fields.php:758 msgid "Pakistan Rupee" msgstr "" #: admin/manage-fields.php:759 msgid "Panama Balboa" msgstr "" #: admin/manage-fields.php:760 msgid "Paraguay Guarani" msgstr "" #: admin/manage-fields.php:761 msgid "Peru Nuevo Sol" msgstr "" #: admin/manage-fields.php:762 msgid "Philippines Peso" msgstr "" #: admin/manage-fields.php:763 msgid "Poland Zloty" msgstr "" #: admin/manage-fields.php:764 msgid "Qatar Riyal" msgstr "" #: admin/manage-fields.php:765 msgid "Romania New Leu" msgstr "" #: admin/manage-fields.php:766 msgid "Russia Ruble" msgstr "" #: admin/manage-fields.php:767 msgid "Saint Helena Pound" msgstr "" #: admin/manage-fields.php:768 msgid "Saudi Arabia Riyal" msgstr "" #: admin/manage-fields.php:769 msgid "Serbia Dinar" msgstr "" #: admin/manage-fields.php:770 msgid "Seychelles Rupee" msgstr "" #: admin/manage-fields.php:771 msgid "Singapore Dollar" msgstr "" #: admin/manage-fields.php:772 msgid "Solomon Islands Dollar" msgstr "" #: admin/manage-fields.php:773 msgid "Somalia Shilling" msgstr "" #: admin/manage-fields.php:774 msgid "South Africa Rand" msgstr "" #: admin/manage-fields.php:775 msgid "Sri Lanka Rupee" msgstr "" #: admin/manage-fields.php:776 msgid "Sweden Krona" msgstr "" #: admin/manage-fields.php:777 msgid "Switzerland Franc" msgstr "" #: admin/manage-fields.php:778 msgid "Suriname Dollar" msgstr "" #: admin/manage-fields.php:779 msgid "Syria Pound" msgstr "" #: admin/manage-fields.php:780 msgid "Taiwan New Dollar" msgstr "" #: admin/manage-fields.php:781 msgid "Thailand Baht" msgstr "" #: admin/manage-fields.php:782 msgid "Trinidad and Tobago Dollar" msgstr "" #: admin/manage-fields.php:783, admin/manage-fields.php:784 msgid "Turkey Lira" msgstr "" #: admin/manage-fields.php:785 msgid "Tuvalu Dollar" msgstr "" #: admin/manage-fields.php:786 msgid "Ukraine Hryvna" msgstr "" #: admin/manage-fields.php:787 msgid "United Kingdom Pound" msgstr "" #: admin/manage-fields.php:788 msgid "Uganda Shilling" msgstr "" #: admin/manage-fields.php:789 msgid "US Dollar" msgstr "" #: admin/manage-fields.php:790 msgid "Uruguay Peso" msgstr "" #: admin/manage-fields.php:791 msgid "Uzbekistan Som" msgstr "" #: admin/manage-fields.php:792 msgid "Venezuela Bolivar" msgstr "" #: admin/manage-fields.php:793 msgid "Viet Nam Dong" msgstr "" #: admin/manage-fields.php:794 msgid "Yemen Rial" msgstr "" #: admin/manage-fields.php:795 msgid "Zimbabwe Dollar" msgstr "" #: admin/manage-fields.php:1098, admin/manage-fields.php:1260 msgid "" "You must select a field\n" "" msgstr "" #: admin/manage-fields.php:1108 msgid "" "Please choose a different field type as this one already exists in your form (must be unique)\n" "" msgstr "" #: admin/manage-fields.php:1119 msgid "" "The entered avatar size is not between 20 and 200\n" "" msgstr "" #: admin/manage-fields.php:1122 msgid "" "The entered avatar size is not numerical\n" "" msgstr "" #: admin/manage-fields.php:1130 msgid "" "The entered row number is not numerical\n" "" msgstr "" #: admin/manage-fields.php:1133 msgid "" "You must enter a value for the row number\n" "" msgstr "" #: admin/manage-fields.php:1141 msgid "" "You must enter the site key\n" "" msgstr "" #: admin/manage-fields.php:1143 msgid "" "You must enter the secret key\n" "" msgstr "" #: admin/manage-fields.php:1151 msgid "" "You must enter a value for the date-format\n" "" msgstr "" #: admin/manage-fields.php:1165 msgid "" "The entered value for the Datepicker is not a valid date-format\n" "" msgstr "" #: admin/manage-fields.php:1184 msgid "" "The meta-name cannot be empty\n" "" msgstr "" #: admin/manage-fields.php:1190 msgid "" "That meta-name can't be used, please choose another\n" "" msgstr "" #: admin/manage-fields.php:1198, admin/manage-fields.php:1209 msgid "" "That meta-name is already in use\n" "" msgstr "" #: admin/manage-fields.php:1220 msgid "" "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n" "" msgstr "" #: admin/manage-fields.php:1240 msgid "" "The following option(s) did not coincide with the ones in the options list: %s\n" "" msgstr "" #: admin/manage-fields.php:1244 msgid "" "The following option did not coincide with the ones in the options list: %s\n" "" msgstr "" #: admin/manage-fields.php:1251 msgid "" "Please select at least one user role\n" "" msgstr "" #: admin/manage-fields.php:1267 msgid "" "That field is already added in this form\n" "" msgstr "" #: admin/manage-fields.php:1318 msgid "
            Title
            Type
            Meta Name
            Required
            " msgstr "" #: admin/manage-fields.php:1333 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "" #: admin/manage-fields.php:1342 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." msgstr "" #: admin/manage-fields.php:1344 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." msgstr "" #: admin/manage-fields.php:1441 msgid "Search Location" msgstr "" #: admin/pms-cross-promotion.php:10, admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "" #: admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "" #: admin/pms-cross-promotion.php:37 msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." msgstr "" #: admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "" #: admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "" #: admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "" #: admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "" #: admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "" #: admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "" #: admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "" #: admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "" #: admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "" #: admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "" #: admin/pms-cross-promotion.php:104 msgid "Accept user payments, create subscription plans and restrict content on your website." msgstr "" #: admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "" #: admin/pms-cross-promotion.php:239 msgid "Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "" #: admin/private-website.php:43 msgid "Private Website Settings" msgstr "" #: admin/private-website.php:56 msgid "Enable Private Website" msgstr "" #: admin/private-website.php:63 msgid "Activate Private Website. It will restrict the content, RSS and REST API for your website" msgstr "" #: admin/private-website.php:69 msgid "Redirect to" msgstr "" #: admin/private-website.php:72 msgid "Default WordPress login page" msgstr "" #: admin/private-website.php:85 msgid "Redirects to this page if not logged in. We recommend this page contains the [wppb-login] shortcode." msgstr "" #: admin/private-website.php:86 msgid "You can force access to wp-login.php so you don't get locked out of the site by accessing the link:" msgstr "" #: admin/private-website.php:92 msgid "Allowed Pages" msgstr "" #: admin/private-website.php:107 msgid "Allow these pages to be accessed even if you are not logged in" msgstr "" #: admin/private-website.php:113 msgid "Hide all Menus" msgstr "" #: admin/private-website.php:120 msgid "Hide all menu items if you are not logged in." msgstr "" #: admin/private-website.php:121 msgid "We recommend \"Custom Profile Menus\" addon if you need different menu items for logged in / logged out users." msgstr "" #: admin/private-website.php:129, features/functions.php:851, ../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:161, 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 msgid "Save Changes" msgstr "" #: admin/register-version.php:14 msgid "Register Your Version" msgstr "" #: admin/register-version.php:14 msgid "Register Version" msgstr "" #: admin/register-version.php:22, admin/register-version.php:22 msgid "Profile Builder Register" msgstr "" #: admin/register-version.php:61 msgid "Register your version of %s" msgstr "" #: admin/register-version.php:69 msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received" msgstr "" #: admin/register-version.php:70 msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support." msgstr "" #: admin/register-version.php:72 msgid " Serial Number:" msgstr "" #: admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "" #: admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "" #: admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "" #: admin/register-version.php:81 msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr "" #: admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "" #: admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr "" #: admin/register-version.php:85 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!" msgstr "" #: admin/register-version.php:87 msgid "(e.g. CLPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "" #: admin/register-version.php:260 msgid "

            Your Profile Builder serial number is invalid or missing.
            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

            " msgstr "" #: admin/register-version.php:266 msgid "

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s

            " msgstr "" #: admin/register-version.php:268 msgid "

            Your Profile Builder license has expired.
            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

            " msgstr "" #: admin/register-version.php:275 msgid "

            Your Profile Builder license is about to expire on %5$s.
            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

            " msgstr "" #: features/functions.php:318 msgid "GDPR Checkbox" msgstr "" #: features/functions.php:318 msgid "I allow the website to collect and store the data I submit through this form." msgstr "" #: features/functions.php:647 msgid "Strength indicator" msgstr "" #: features/functions.php:673, features/functions.php:697 msgid "Very Weak" msgstr "" #: features/functions.php:687 msgid "Minimum length of %d characters." msgstr "" #: features/functions.php:698 msgid "The password must have a minimum strength of %s." msgstr "" #: features/functions.php:775 msgid "This field is required" msgstr "" #: features/functions.php:813, front-end/default-fields/recaptcha/recaptcha.php:481, front-end/default-fields/recaptcha/recaptcha.php:490, front-end/default-fields/recaptcha/recaptcha.php:543, front-end/default-fields/recaptcha/recaptcha.php:588 msgid "Please enter a (valid) reCAPTCHA value" msgstr "" #: features/functions.php:820 msgid "Incorrect phone number" msgstr "" #: features/functions.php:879, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:444, assets/lib/wck-api/wordpress-creation-kit.php:447 msgid "Content" msgstr "" #: features/functions.php:1061 msgid "

            Also, you will be able to visit your site at " msgstr "" #: features/functions.php:1074 msgid "

            You can visit your site at " msgstr "" #: features/functions.php:1160 msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s" msgstr "" #: features/functions.php:1290 msgid "No feed available,please visit our homepage!" msgstr "" #: features/functions.php:1325 msgid "You are not currently logged in." msgstr "" #: front-end/class-formbuilder.php:129 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." msgstr "" #: front-end/class-formbuilder.php:141 msgid "Only an administrator can add new users." msgstr "" #: front-end/class-formbuilder.php:151 msgid "Users can register themselves or you can manually create users here." msgstr "" #: front-end/class-formbuilder.php:151, front-end/class-formbuilder.php:154 msgid "This message is only visible by administrators" msgstr "" #: front-end/class-formbuilder.php:154 msgid "Users cannot currently register themselves, but you can manually create users here." msgstr "" #: front-end/class-formbuilder.php:174 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "" #: front-end/class-formbuilder.php:174 msgid "Log out of this account." msgstr "" #: front-end/class-formbuilder.php:180 msgid "You must be logged in to edit your profile." msgstr "" #: front-end/class-formbuilder.php:273, front-end/login.php:479 msgid "You are not allowed to do this." msgstr "" #: front-end/class-formbuilder.php:329, front-end/class-formbuilder.php:336 msgid "The account %1s has been successfully created!" msgstr "" #: front-end/class-formbuilder.php:332, front-end/class-formbuilder.php:342 msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link." msgstr "" #: front-end/class-formbuilder.php:338 msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email." msgstr "" #: front-end/class-formbuilder.php:361 msgid "Your profile has been successfully updated!" msgstr "" #: front-end/class-formbuilder.php:372 msgid "There was an error in the submitted form" msgstr "" #: front-end/class-formbuilder.php:429 msgid "Add User" msgstr "" #: front-end/class-formbuilder.php:511 msgid "Send these credentials via email." msgstr "" #: front-end/class-formbuilder.php:708 msgid "User to edit:" msgstr "" #: front-end/class-formbuilder.php:710 msgid "Select User" msgstr "" #: front-end/class-formbuilder.php:726 msgid "There are no other users to edit" msgstr "" #: front-end/class-formbuilder.php:749 msgid "Something went wrong. Please try again!" msgstr "" #: front-end/login.php:309, front-end/login.php:330, front-end/recover.php:16, front-end/recover.php:304, front-end/extra-fields/extra-fields.php:93 msgid "ERROR" msgstr "" #: front-end/login.php:312 msgid "The password you entered is incorrect." msgstr "" #: front-end/login.php:317 msgid "Invalid email." msgstr "" #: front-end/login.php:319 msgid "Invalid username or email." msgstr "" #: front-end/login.php:321 msgid "Invalid username." msgstr "" #: front-end/login.php:325 msgid "Password Lost and Found." msgstr "" #: front-end/login.php:325 msgid "Lost your password ?" msgstr "" #: front-end/login.php:330 msgid "Both fields are empty." msgstr "" #: front-end/login.php:393 msgid "Username or Email" msgstr "" #: front-end/login.php:427 msgid "Lost your password?" msgstr "" #: front-end/login.php:466, front-end/logout.php:25 msgid "Log out of this account" msgstr "" #: front-end/login.php:466 msgid "Log out" msgstr "" #: front-end/login.php:467 msgid "You are currently logged in as %1$s. %2$s" msgstr "" #: front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "" #: front-end/logout.php:15 msgid "Log out »" msgstr "" #: front-end/recover.php:16 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature." msgstr "" #: front-end/recover.php:92 msgid "Reset Password" msgstr "" #: front-end/recover.php:115 msgid "Please enter your email address." msgstr "" #: front-end/recover.php:119 msgid "Please enter your username or email address." msgstr "" #: front-end/recover.php:120 msgid "Username or E-mail" msgstr "" #: front-end/recover.php:123 msgid "You will receive a link to create a new password via email." msgstr "" #: front-end/recover.php:136 msgid "Get New Password" msgstr "" #: front-end/recover.php:179 msgid "Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s" msgstr "" #: front-end/recover.php:182 msgid "Password Reset from \"%1$s\"" msgstr "" #: front-end/recover.php:209 msgid "You have successfully reset your password." msgstr "" #: front-end/recover.php:211 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "" #: front-end/recover.php:229 msgid "%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s" msgstr "" #: front-end/recover.php:256 msgid "You are already logged in. You can change your password on the edit profile form." msgstr "" #: front-end/recover.php:279 msgid "The username entered wasn't found in the database!" msgstr "" #: front-end/recover.php:279 msgid "Please check that you entered the correct username." msgstr "" #: front-end/recover.php:292 msgid "Check your e-mail for the confirmation link." msgstr "" #: front-end/recover.php:304 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "" #: front-end/recover.php:315 msgid "The email address entered wasn't found in the database!" msgstr "" #: front-end/recover.php:315 msgid "Please check that you entered the correct email address." msgstr "" #: front-end/recover.php:328 msgid "The entered passwords don't match!" msgstr "" #: front-end/recover.php:334, front-end/default-fields/password/password.php:50 msgid "The password must have the minimum length of %s characters" msgstr "" #: front-end/recover.php:338, front-end/default-fields/password/password.php:54 msgid "The password must have a minimum strength of %s" msgstr "" #: front-end/recover.php:345 msgid "Your password has been successfully changed!" msgstr "" #: front-end/recover.php:381 msgid "The password must not be empty!" msgstr "" #: front-end/recover.php:406 msgid "ERROR:" msgstr "" #: front-end/recover.php:406 msgid "Invalid key!" msgstr "" #: front-end/register.php:56 msgid "Invalid activation key!" msgstr "" #: front-end/register.php:60 msgid "This username is now active!" msgstr "" #: front-end/register.php:71, features/email-confirmation/email-confirmation.php:450 msgid "Could not create user!" msgstr "" #: front-end/register.php:74 msgid "This username is already activated!" msgstr "" #: front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "" #: front-end/register.php:125, features/email-confirmation/email-confirmation.php:651 msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email." msgstr "" #: front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "" #: modules/modules.php:11, modules/modules.php:11, modules/modules.php:56 msgid "Modules" msgstr "" #: modules/modules.php:57 msgid "Here you can activate / deactivate available modules for Profile Builder." msgstr "" #: modules/modules.php:67 msgid "Name/Description" msgstr "" #: modules/modules.php:68 msgid "Status" msgstr "" #: modules/modules.php:75, modules/modules.php:82, modules/modules.php:89, modules/modules.php:101, modules/modules.php:108, modules/modules.php:115 msgid "Active" msgstr "" #: modules/modules.php:76, modules/modules.php:83, modules/modules.php:90, modules/modules.php:102, modules/modules.php:109, modules/modules.php:116 msgid "Inactive" msgstr "" #: ../pb-add-on-customization-toolbox/includes/fields/unique-display-name.php:19 msgid "This display name is already in use. Please choose another one." msgstr "" #: ../pb-add-on-customization-toolbox/includes/shortcodes/resend-activation.php:5 msgid "Resend activation email" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-admin.php:14 msgid "Allow users with the 'delete_users' capability to view the Admin Approval list" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-admin.php:23 msgid "By checking this option, you will allow users that have the 'delete_users' capability to access and use the Admin Approval list." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-admin.php:30 msgid "Allow users with the 'delete_users' capability to view the list of Unconfirmed Emails" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-admin.php:39 msgid "By checking this option, you will allow users that have the 'delete_users' capability to see the list of Unconfirmed Email Addresses." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:14 msgid "Automatically generate password for users" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:23 msgid "By checking this option, the password will be automatically generated and emailed to the user." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:30 msgid "Modify 'Send Credentials' checkbox" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:34 msgid "Hidden and checked" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:39 msgid "Field text:" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:49 msgid "By default, the user needs to choose if he wants to receive a registration email." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:52 msgid "By checking the Hidden and checked option, the field won't be shown and the message will always be sent to the user." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:55 msgid "If you choose to show the field, you can modify the default text by entering something in the field from above." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:62 msgid "Redirect users to a page if they have empty required fields" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:71 msgid "Redirect Page:" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:91 msgid "By activating this option, logged in users which have empty required fields on their profile will be redirected to the page you added above." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:94 msgid "For example, you can redirect these users to the Edit Profile form so they can add the missing info." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:101 msgid "Ban certain words from being used in fields" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:108, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:21 msgid "On" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:116 msgid "Affected fields:" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:140 msgid "Banned words:" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:159, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:66 msgid "Error message:" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:170 msgid "Allows you to define some words which users cannot use in their Username, First Name or Last Name when registering." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:177 msgid "Unique 'Display Name' for users" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:186 msgid "By checking this option, users will not be able to choose a Display Name that is already used by another account." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:193 msgid "Always capitalize 'First Name' and 'Last Name' default fields" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:202 msgid "If you have these fields in your forms, they will be always saved with the first letter as uppercase." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:205 msgid "eg.: John Doe instead of john doe" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:213 msgid "Datepicker starts on Monday" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:222 msgid "Will make all Datepickers use Monday as the first day of the week." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:236 msgid "Hide Repeater Fields from the back-end profile page" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:245 msgid "Repeater Fields from Profile Builder do not work on the back-end user profile page, they are just displayed. If you want to remove them completely, you can use this option." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:248 msgid "You will still be able to use them from a front-end edit profile form." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:257 msgid "Remove All Extra Fields from Backend edit profile page." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:266 msgid "If you activate this option, it will remove all custom fields from the backend profile page created with Profile Builder." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:275 msgid "Update database entries when changing meta key" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:284 msgid "If you activate this option, when changing the meta key of a field, existing entries from the database will be updated as well." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:14 msgid "Allow or deny email domains from registering" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:29 msgid "Type:" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:34 msgid "Allow" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:40 msgid "Deny" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:47 msgid "Restricted domains:" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:77 msgid "This option lets you allow registrations only from certain domains or deny registrations from certain domains." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:80 msgid "You should add only the domain in the list from above. eg.: gmail.com" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:92 msgid "Forms that should bypass Email Confirmation" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:119 msgid "Users registering through any of the selected forms will not need to confirm their email address." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:128 msgid "Disable Email Confirmation for Social Connect registrations" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:137 msgid "If checked, will allow users that register through the Social Connect add-on to bypass the Email Confirmation feature." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:145 msgid "Remember me checked by default" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:154 msgid "Check the 'Remember Me' checkbox on Login forms, by default." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:160 msgid "Remove validation from back-end profile page" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:169 msgid "When saving the back-end user profile, Profile Builder fields will not be validated anymore. eg.: bypass required attribute" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:180 msgid "Always show edit other users dropdown" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:189 msgid "For perfomance reasons, we disable the select if you have more than 5000 users on your website. This option lets you enable it again." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:197 msgid "Consider 'Anyone can Register' WordPress option" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:207 msgid "setting" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:209 msgid "By default, Profile Builder ignores this %1$s. If you check this option, our registration form will consider it." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:217 msgid "Modify default Redirect Delay timer" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:224 msgid "This allows you to change the amount of seconds it takes for the 'After Registration' redirect to happen." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:227 msgid "The default is 3 seconds. Leave empty if you do not want to change it." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:235 msgid "Save Admin Approval status in usermeta" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:244 msgid "By default, the Admin Approval status is saved as a custom taxonomy that is attached to the user." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:247 msgid "If you check this option, the status will also be saved in the '*_usermeta' table under the wppb_approval_status meta name." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:256 msgid "Redirect '/author' page if user is not approved" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:265 msgid "By default, users placed in Admin Approval will not be able to login, but the Author pages will be accessible." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:268 msgid "Using this option you can redirect these pages, sending users who try to access them to your home page." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:276 msgid "Save 'Last Login' date in usermeta" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:285 msgid "By checking this option, each time a user logins, the date and time will be saved in the database." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:288 msgid "The meta name for the field will be last_login_date." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:291, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:313 msgid "You can create a field with this meta name in Profile Builder to display it in the Userlisting or Edit Profile forms." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:298 msgid "Save 'Last Profile Update' date in usermeta" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:307 msgid "By checking this option, each time a modifies his profile the date and time will be saved in the database." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:310 msgid "The meta name for the field will be last_profile_update_date." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:12 msgid "Enable Compare shortcode" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:21 msgid "You can read more info about this shortcode by following this url." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:28 msgid "Enable Usermeta shortcode" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:37 msgid "You can read more info about this shortcode by following this url." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:44 msgid "Enable Resend Activation Email shortcode" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:53 msgid "You can read more info about this shortcode by following this url." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:60 msgid "Enable Format Date shortcode" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:69 msgid "You can read more info about this shortcode by following this url." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:12 msgid "Change placeholder text for Search box" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:19 msgid "This refers to the placeholder text from the {{{extra_search_all_fields}}} tag." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:22 msgid "Default text is Search Users by All Fields, use this option to change it to something else. Leave empty if you do not want to change it." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:29 msgid "Modify base URL for Single Userlisting" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:37 msgid "By default Single Userlisting URLs contain the word user. eg.: " msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:42 msgid "Using this option, you can change the word user to something else. Leave empty if you do not want to change it." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:49 msgid "Make the Single Userlisting URLs work with user nicename" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:59 msgid "By default Single Userlisting URLs are generated using the users ID. eg.: " msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:64 msgid "With this option activated, the URLs will be generated using the users nicename." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:71 msgid "Remove repetition counts from Faceted Menus" msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:80 msgid "The number of users that share a particular value is shown for the Select and Checkbox facet types." msgstr "" #: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:83 msgid "If you enable this option they will be hidden." msgstr "" #: assets/misc/plugin-compatibilities.php:237 msgid "Your account has to be confirmed by an administrator before you can log in." msgstr "" #: features/admin-approval/admin-approval.php:14, features/admin-approval/class-admin-approval.php:460, features/admin-approval/class-admin-approval.php:528 msgid "Admin Approval" msgstr "" #: features/admin-approval/admin-approval.php:28, features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "" #: features/admin-approval/admin-approval.php:51, features/admin-approval/admin-approval.php:99 msgid "Your session has expired! Please refresh the page and try again." msgstr "" #: features/admin-approval/admin-approval.php:67, features/admin-approval/admin-approval.php:279 msgid "User successfully approved!" msgstr "" #: features/admin-approval/admin-approval.php:77 msgid "User successfully unapproved!" msgstr "" #: features/admin-approval/admin-approval.php:83 msgid "User successfully deleted!" msgstr "" #: features/admin-approval/admin-approval.php:88, features/admin-approval/admin-approval.php:134, features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "" #: features/admin-approval/admin-approval.php:112 msgid "Users successfully approved!" msgstr "" #: features/admin-approval/admin-approval.php:122 msgid "Users successfully unapproved!" msgstr "" #: features/admin-approval/admin-approval.php:130 msgid "Users successfully deleted!" msgstr "" #: features/admin-approval/admin-approval.php:150 msgid "Your account on %1$s has been approved!" msgstr "" #: features/admin-approval/admin-approval.php:151, features/admin-approval/admin-approval.php:154 msgid "approved" msgstr "" #: features/admin-approval/admin-approval.php:153 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "" #: features/admin-approval/admin-approval.php:158 msgid "Your account on %1$s has been unapproved!" msgstr "" #: features/admin-approval/admin-approval.php:159, features/admin-approval/admin-approval.php:162 msgid "unapproved" msgstr "" #: features/admin-approval/admin-approval.php:161 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "" #: features/admin-approval/admin-approval.php:192 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature." msgstr "" #: features/admin-approval/admin-approval.php:227 msgid "Your account has been successfully created!" msgstr "" #: features/admin-approval/admin-approval.php:295 msgid "The approval link is not valid! Please log in to approve the user manually. " msgstr "" #: features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "" #: features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "" #: features/admin-approval/class-admin-approval.php:116, features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr "" #: features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "" #: features/admin-approval/class-admin-approval.php:118, features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "" #: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:810, modules/user-listing/userlisting.php:2353 msgid "Firstname" msgstr "" #: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:813, modules/user-listing/userlisting.php:2354 msgid "Lastname" msgstr "" #: features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:255, modules/user-listing/userlisting.php:159, modules/user-listing/userlisting.php:313, modules/user-listing/userlisting.php:840, modules/user-listing/userlisting.php:2358 msgid "Role" msgstr "" #: features/admin-approval/class-admin-approval.php:171, features/email-confirmation/class-email-confirmation.php:170 msgid "Registered" msgstr "" #: features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "" #: features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "" #: features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "" #: features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "" #: features/admin-approval/class-admin-approval.php:274, features/email-confirmation/class-email-confirmation.php:279 msgid "Sorry, but you don't have permission to do that!" msgstr "" #: features/admin-approval/class-admin-approval.php:344 msgid "Approved" msgstr "" #: features/admin-approval/class-admin-approval.php:346 msgid "Unapproved" msgstr "" #: features/admin-approval/class-admin-approval.php:463, features/email-confirmation/class-email-confirmation.php:461 msgid "All Users" msgstr "" #: features/conditional-fields/conditional-fields.php:84 msgid "Conditional Logic" msgstr "" #: features/conditional-fields/conditional-fields.php:85 msgid "Conditional Rules" msgstr "" #: features/conditional-fields/conditional-fields.php:553 msgid "This field has conditional logic enabled." msgstr "" #: features/content-restriction/class-elementor-content-restriction.php:77, features/content-restriction/content-restriction-meta-box.php:18 msgid "Profile Builder Content Restriction" msgstr "" #: features/content-restriction/class-elementor-content-restriction.php:90 msgid "Restrict to logged in users" msgstr "" #: features/content-restriction/class-elementor-content-restriction.php:92 msgid "Allow only logged in users to see this content." msgstr "" #: features/content-restriction/class-elementor-content-restriction.php:98 msgid "Restrict by User Roles" msgstr "" #: features/content-restriction/class-elementor-content-restriction.php:110 msgid "Allow users which have the specified role to see this content." msgstr "" #: features/content-restriction/class-elementor-content-restriction.php:116, features/content-restriction/content-restriction-meta-box.php:119 msgid "Restriction Messages" msgstr "" #: features/content-restriction/class-elementor-content-restriction.php:124 msgid "Enable Restriction Messages" msgstr "" #: features/content-restriction/class-elementor-content-restriction.php:126 msgid "Replace hidden content with the default messages from PB -> Settings -> Content Restriction, a custom message or an Elementor Template." msgstr "" #: features/content-restriction/class-elementor-content-restriction.php:132, features/content-restriction/content-restriction-meta-box.php:125 msgid "Enable Custom Messages" msgstr "" #: features/content-restriction/class-elementor-content-restriction.php:134 msgid "Add a custom message or template." msgstr "" #: features/content-restriction/class-elementor-content-restriction.php:143 msgid "Content type" msgstr "" #: features/content-restriction/class-elementor-content-restriction.php:147 msgid "Text" msgstr "" #: features/content-restriction/class-elementor-content-restriction.php:151 msgid "Template" msgstr "" #: features/content-restriction/class-elementor-content-restriction.php:168 msgid "Select Template" msgstr "" #: features/content-restriction/content-restriction-functions.php:44 msgid "You must be logged in to view this content." msgstr "" #: features/content-restriction/content-restriction-functions.php:46 msgid "This content is restricted for your user role." msgstr "" #: features/content-restriction/content-restriction-meta-box.php:32 msgid "Display Options" msgstr "" #: features/content-restriction/content-restriction-meta-box.php:36, features/content-restriction/content-restriction.php:100 msgid "Message" msgstr "" #: features/content-restriction/content-restriction-meta-box.php:36, features/content-restriction/content-restriction.php:105, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "" #: features/content-restriction/content-restriction-meta-box.php:41, features/content-restriction/content-restriction.php:95 msgid "Type of Restriction" msgstr "" #: features/content-restriction/content-restriction-meta-box.php:45 msgid "Settings Default" msgstr "" #: features/content-restriction/content-restriction-meta-box.php:57 msgid "Display For" msgstr "" #: features/content-restriction/content-restriction-meta-box.php:81 msgid "Checking only \"Logged In Users\" will show this %s to all logged in users, regardless of user role." msgstr "" #: features/content-restriction/content-restriction-meta-box.php:85 msgid "Checking any user role will show this %s only to users that have one of those user roles assigned." msgstr "" #: features/content-restriction/content-restriction-meta-box.php:92 msgid "Restriction Redirect URL" msgstr "" #: features/content-restriction/content-restriction-meta-box.php:98 msgid "Enable Custom Redirect URL" msgstr "" #: features/content-restriction/content-restriction-meta-box.php:102 msgid "Check if you wish to add a custom redirect URL for this %s." msgstr "" #: features/content-restriction/content-restriction-meta-box.php:109 msgid "Custom Redirect URL" msgstr "" #: features/content-restriction/content-restriction-meta-box.php:113 msgid "Add a URL where you wish to redirect users that do not have access to this %s and try to access it directly." msgstr "" #: features/content-restriction/content-restriction-meta-box.php:129 msgid "Check if you wish to add custom messages for this %s." msgstr "" #: features/content-restriction/content-restriction-meta-box.php:136 msgid "Messages for logged-out users" msgstr "" #: features/content-restriction/content-restriction-meta-box.php:139 msgid "Messages for logged-in users" msgstr "" #: features/content-restriction/content-restriction.php:62 msgid "Content Restriction Settings" msgstr "" #: features/content-restriction/content-restriction.php:84 msgid "Enable Content Restriction" msgstr "" #: features/content-restriction/content-restriction.php:90 msgid "Activate Content Restriction" msgstr "" #: features/content-restriction/content-restriction.php:108 msgid "If you select \"Message\", the post's content will be protected by being replaced with a custom message." msgstr "" #: features/content-restriction/content-restriction.php:109 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." msgstr "" #: features/content-restriction/content-restriction.php:114, 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 msgid "Redirect URL" msgstr "" #: features/content-restriction/content-restriction.php:119 msgid "Message for logged-out users" msgstr "" #: features/content-restriction/content-restriction.php:124 msgid "Message for logged-in users" msgstr "" #: features/content-restriction/content-restriction.php:129 msgid "Restricted Posts Preview" msgstr "" #: features/content-restriction/content-restriction.php:144 msgid "Show the first %s words of the post's content" msgstr "" #: features/content-restriction/content-restriction.php:152 msgid "Show the content before the \"more\" tag" msgstr "" #: features/content-restriction/content-restriction.php:156 msgid "Show a portion of the restricted post to logged-out users or users that are not allowed to see it." msgstr "" #: features/email-confirmation/class-email-confirmation.php:92, features/email-confirmation/class-email-confirmation.php:171 msgid "User Meta" msgstr "" #: features/email-confirmation/class-email-confirmation.php:92 msgid "show" msgstr "" #: features/email-confirmation/class-email-confirmation.php:121 msgid "delete this user from the _signups table?" msgstr "" #: features/email-confirmation/class-email-confirmation.php:122 msgid "confirm this email yourself?" msgstr "" #: features/email-confirmation/class-email-confirmation.php:122, features/email-confirmation/class-email-confirmation.php:219 msgid "Confirm Email" msgstr "" #: features/email-confirmation/class-email-confirmation.php:123 msgid "resend the activation link?" msgstr "" #: features/email-confirmation/class-email-confirmation.php:123, features/email-confirmation/class-email-confirmation.php:220 msgid "Resend Activation Email" msgstr "" #: features/email-confirmation/class-email-confirmation.php:250 msgid "%s couldn't be deleted" msgstr "" #: features/email-confirmation/class-email-confirmation.php:254 msgid "All users have been successfully deleted" msgstr "" #: features/email-confirmation/class-email-confirmation.php:264 msgid "The selected users have been activated" msgstr "" #: features/email-confirmation/class-email-confirmation.php:275 msgid "The selected users have had their activation emails resent" msgstr "" #: features/email-confirmation/class-email-confirmation.php:458, features/email-confirmation/class-email-confirmation.php:498, features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "" #: features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "" #: features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "" #: features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "" #: features/email-confirmation/email-confirmation.php:406 msgid "[%1$s] Activate %2$s" msgstr "" #: features/email-confirmation/email-confirmation.php:409 msgid "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login." msgstr "" #: features/email-confirmation/email-confirmation.php:453 msgid "That username is already activated!" msgstr "" #: features/email-confirmation/email-confirmation.php:476 msgid "There was an error while trying to activate the user" msgstr "" #: features/email-confirmation/email-confirmation.php:524, modules/email-customizer/admin-email-customizer.php:84 msgid "A new subscriber has (been) registered!" msgstr "" #: features/email-confirmation/email-confirmation.php:527 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "" #: features/email-confirmation/email-confirmation.php:578 msgid "[%1$s] Your new account information" msgstr "" #: features/email-confirmation/email-confirmation.php:582, features/email-confirmation/email-confirmation.php:592, modules/email-customizer/email-customizer.php:497, modules/email-customizer/email-customizer.php:504, modules/email-customizer/email-customizer.php:518 msgid "Your selected password at signup" msgstr "" #: features/email-confirmation/email-confirmation.php:588 msgid "Welcome to %1$s!


            Your username is: %2$s and your password is the one that you have selected during registration.

            Access your account: %3$s " msgstr "" #: features/email-confirmation/email-confirmation.php:590 msgid "Welcome to %1$s!


            Your username is: %2$s and the password: %3$s.

            Access your account: %4$s " msgstr "" #: features/email-confirmation/email-confirmation.php:643 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!" msgstr "" #: features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "" #: features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "" #: features/login-widget/login-widget.php:63 msgid "Title:" msgstr "" #: features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "" #: features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "" #: features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "" #: features/roles-editor/roles-editor.php:182 msgid "Capability" msgstr "" #: features/roles-editor/roles-editor.php:183 msgid "You can't delete this capability from your role." msgstr "" #: features/roles-editor/roles-editor.php:246, features/roles-editor/roles-editor.php:247 msgid "Add New Role" msgstr "" #: features/roles-editor/roles-editor.php:248 msgid "Edit Role" msgstr "" #: features/roles-editor/roles-editor.php:249 msgid "New Role" msgstr "" #: features/roles-editor/roles-editor.php:251 msgid "View Role" msgstr "" #: features/roles-editor/roles-editor.php:252 msgid "Search the Roles Editor" msgstr "" #: features/roles-editor/roles-editor.php:253 msgid "No roles found" msgstr "" #: features/roles-editor/roles-editor.php:254 msgid "No roles found in trash" msgstr "" #: features/roles-editor/roles-editor.php:296, features/roles-editor/roles-editor.php:299 msgid "Role updated." msgstr "" #: features/roles-editor/roles-editor.php:297 msgid "Custom field updated." msgstr "" #: features/roles-editor/roles-editor.php:298 msgid "Custom field deleted." msgstr "" #: features/roles-editor/roles-editor.php:301 msgid "Role created." msgstr "" #: features/roles-editor/roles-editor.php:302 msgid "Role saved." msgstr "" #: features/roles-editor/roles-editor.php:303 msgid "Role submitted." msgstr "" #: features/roles-editor/roles-editor.php:304 msgid "Role scheduled for: %1$s" msgstr "" #: features/roles-editor/roles-editor.php:305 msgid "Role draft updated." msgstr "" #: features/roles-editor/roles-editor.php:364 msgid "Role Name" msgstr "" #: features/roles-editor/roles-editor.php:365, modules/user-listing/userlisting.php:160 msgid "Role Slug" msgstr "" #: features/roles-editor/roles-editor.php:366 msgid "Capabilities" msgstr "" #: features/roles-editor/roles-editor.php:367 msgid "Users" msgstr "" #: features/roles-editor/roles-editor.php:877 msgid "Clone" msgstr "" #: features/roles-editor/roles-editor.php:884 msgid "You can't delete your role." msgstr "" #: features/roles-editor/roles-editor.php:892 msgid "Change Default" msgstr "" #: features/roles-editor/roles-editor.php:893 msgid "You can't delete the default role. Change it first." msgstr "" #: features/roles-editor/roles-editor.php:1116 msgid "Edit User Roles" msgstr "" #: features/upgrades/upgrades-functions.php:91, features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Login" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Logout" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:51 msgid "After Registration" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:52 msgid "After Edit Profile" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:53 msgid "After Successful Email Confirmation" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:54 msgid "After Successful Password Reset" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:55 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:59 msgid "User ID" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:65 msgid "User ID or Username" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:66 msgid "User ID / Username" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:66 msgid "Please select and enter the ID or username of your user." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:67, modules/custom-redirects/custom_redirects_admin.php:97, modules/custom-redirects/custom_redirects_admin.php:116, modules/custom-redirects/custom_redirects_admin.php:135 msgid "Redirect Type" msgstr "" #: 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 msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:75, modules/custom-redirects/custom_redirects_admin.php:245 msgid "Individual User Redirects" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:96, modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:96 msgid "Select a user role." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:105, modules/custom-redirects/custom_redirects_admin.php:246 msgid "User Role based Redirects" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:124, modules/custom-redirects/custom_redirects_admin.php:247 msgid "Global Redirects" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:137 msgid "Login ( wp-login.php )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:138 msgid "Register ( wp-login.php?action=register )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:139 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:140 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:149 msgid "Redirect Default WordPress Forms and Pages" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:161 msgid "How does this work?" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:183 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:197 msgid "
            User Role
            Redirect
            URL
            " msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:211, modules/custom-redirects/custom_redirects_admin.php:225 msgid "
            Redirect
            URL
            " msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:240 msgid "These redirects happen after a successful action, like registration or after a successful login." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:242 msgid "Which redirect happens depends on the following priority:" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:244 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:248 msgid "Individual redirects defined in shortcodes; redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:251 msgid "Redirect Default WordPress forms and pages" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:252 msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:254 msgid "Available tags for dynamic URLs" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:255 msgid "You use the following tags in your URLs to redirect users to various pages." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:257 msgid "generates a url of the current website homepage." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:258 msgid "in WordPress the site url can be different then the home url" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:259 msgid "the ID of the user" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:260 msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:261 msgid "the URL of the previously visited page" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:344, modules/custom-redirects/custom_redirects_admin.php:350, modules/custom-redirects/custom_redirects_admin.php:356 msgid "You can't add duplicate redirects!" msgstr "" #: modules/email-customizer/admin-email-customizer.php:11 msgid "Admin Email Customizer" msgstr "" #: modules/email-customizer/admin-email-customizer.php:12 msgid "Admin Email Customizer Settings" msgstr "" #: modules/email-customizer/admin-email-customizer.php:53 msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save." msgstr "" #: modules/email-customizer/admin-email-customizer.php:53, modules/email-customizer/user-email-customizer.php:53 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "" #: modules/email-customizer/admin-email-customizer.php:56, modules/email-customizer/user-email-customizer.php:56 msgid "From (name)" msgstr "" #: modules/email-customizer/admin-email-customizer.php:64, modules/email-customizer/user-email-customizer.php:64 msgid "From (reply-to email)" msgstr "" #: modules/email-customizer/admin-email-customizer.php:69, modules/email-customizer/user-email-customizer.php:69 msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email" msgstr "" #: modules/email-customizer/admin-email-customizer.php:72, modules/email-customizer/user-email-customizer.php:72 msgid "Common Settings" msgstr "" #: modules/email-customizer/admin-email-customizer.php:75 msgid "" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "" msgstr "" #: modules/email-customizer/admin-email-customizer.php:80, modules/email-customizer/admin-email-customizer.php:111, modules/email-customizer/admin-email-customizer.php:142, modules/email-customizer/user-email-customizer.php:83, modules/email-customizer/user-email-customizer.php:114, modules/email-customizer/user-email-customizer.php:146, modules/email-customizer/user-email-customizer.php:177, modules/email-customizer/user-email-customizer.php:209, modules/email-customizer/user-email-customizer.php:241, modules/email-customizer/user-email-customizer.php:273, modules/email-customizer/user-email-customizer.php:307 msgid "Email Subject" msgstr "" #: modules/email-customizer/admin-email-customizer.php:87, modules/email-customizer/admin-email-customizer.php:118, modules/email-customizer/admin-email-customizer.php:149, modules/email-customizer/user-email-customizer.php:90, modules/email-customizer/user-email-customizer.php:121, modules/email-customizer/user-email-customizer.php:153, modules/email-customizer/user-email-customizer.php:184, modules/email-customizer/user-email-customizer.php:216, modules/email-customizer/user-email-customizer.php:248, modules/email-customizer/user-email-customizer.php:280, modules/email-customizer/user-email-customizer.php:314 msgid "Enable email" msgstr "" #: modules/email-customizer/admin-email-customizer.php:102 msgid "Default Registration & Registration with Email Confirmation" msgstr "" #: modules/email-customizer/admin-email-customizer.php:105 msgid "" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log in!

            " msgstr "" #: modules/email-customizer/admin-email-customizer.php:133, modules/email-customizer/user-email-customizer.php:168 msgid "Registration with Admin Approval" msgstr "" #: modules/email-customizer/admin-email-customizer.php:136 msgid "" "

            {{username}} has requested a password change via the password reset feature.

            \n" "

            His/her new password is: {{password}}

            \n" "" msgstr "" #: modules/email-customizer/admin-email-customizer.php:164 msgid "Admin Notification for User Password Reset" msgstr "" #: modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "" #: modules/email-customizer/email-customizer.php:11, modules/user-listing/userlisting.php:212 msgid "User Fields Tags" msgstr "" #: modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "" #: modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "" #: modules/email-customizer/email-customizer.php:25, modules/user-listing/userlisting.php:169 msgid "User Id" msgstr "" #: modules/email-customizer/email-customizer.php:32 msgid "User Role Label" msgstr "" #: modules/email-customizer/email-customizer.php:34 msgid "Reply To" msgstr "" #: modules/email-customizer/email-customizer.php:37, modules/user-listing/userlisting.php:127 msgid "Blog URL" msgstr "" #: modules/email-customizer/email-customizer.php:41 msgid "Activation Key" msgstr "" #: modules/email-customizer/email-customizer.php:42 msgid "Activation Url" msgstr "" #: modules/email-customizer/email-customizer.php:43 msgid "Activation Link" msgstr "" #: modules/email-customizer/email-customizer.php:47 msgid "Reset Key" msgstr "" #: modules/email-customizer/email-customizer.php:48 msgid "Reset Url" msgstr "" #: modules/email-customizer/email-customizer.php:49 msgid "Reset Link" msgstr "" #: modules/email-customizer/email-customizer.php:53 msgid "Approve User Url" msgstr "" #: modules/email-customizer/email-customizer.php:54 msgid "Approve User Link" msgstr "" #: modules/email-customizer/email-customizer.php:489 msgid "The users selected password at signup" msgstr "" #: modules/email-customizer/user-email-customizer.php:11 msgid "User Email Customizer" msgstr "" #: modules/email-customizer/user-email-customizer.php:12 msgid "User Email Customizer Settings" msgstr "" #: modules/email-customizer/user-email-customizer.php:53 msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save." msgstr "" #: modules/email-customizer/user-email-customizer.php:79 msgid "" "

            Welcome to {{site_name}}!

            \n" "

            Your username is: {{username}} and password:{{password}}

            \n" "" msgstr "" #: modules/email-customizer/user-email-customizer.php:110 msgid "" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials.

            \n" "" msgstr "" #: modules/email-customizer/user-email-customizer.php:118 msgid "[{{site_name}}] Activate {{username}}" msgstr "" #: modules/email-customizer/user-email-customizer.php:136 msgid "Registration with Email Confirmation" msgstr "" #: modules/email-customizer/user-email-customizer.php:142 msgid "" "

            Welcome to {{site_name}}!

            \n" "

            Your username is: {{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n" "" msgstr "" #: modules/email-customizer/user-email-customizer.php:150 msgid "A new account has been created for you on {{site_name}}" msgstr "" #: modules/email-customizer/user-email-customizer.php:173 msgid "" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n" "" msgstr "" #: modules/email-customizer/user-email-customizer.php:181 msgid "Your account on {{site_name}} has been approved!" msgstr "" #: modules/email-customizer/user-email-customizer.php:199 msgid "User Approval Notification" msgstr "" #: modules/email-customizer/user-email-customizer.php:204 msgid "" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n" "" msgstr "" #: modules/email-customizer/user-email-customizer.php:213 msgid "Your account on {{site_name}} has been unapproved!" msgstr "" #: modules/email-customizer/user-email-customizer.php:231 msgid "Unapproved User Notification" msgstr "" #: modules/email-customizer/user-email-customizer.php:237 msgid "" "

            Someone requested that the password be reset for the following account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            \n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" "" msgstr "" #: modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset" msgstr "" #: modules/email-customizer/user-email-customizer.php:263 msgid "Password Reset Email" msgstr "" #: modules/email-customizer/user-email-customizer.php:269 msgid "" "

            You have successfully reset your password.

            \n" "" msgstr "" #: modules/email-customizer/user-email-customizer.php:277 msgid "[{{site_name}}] Password Reset Successfully" msgstr "" #: modules/email-customizer/user-email-customizer.php:295 msgid "Password Reset Success Email" msgstr "" #: modules/email-customizer/user-email-customizer.php:303 msgid "" "

            Hi {{username}},

            \n" "

            This notice confirms that your email was changed on {{site_name}}.

            \n" "

            If you did not change your email, please contact the Site Administrator at %s

            \n" "

            This email has been sent to {{user_email}}

            \n" "

            Regards,
            \n" "All at {{site_name}}
            \n" "{{site_url}}

            " msgstr "" #: modules/email-customizer/user-email-customizer.php:311 msgid "[{{site_name}}] Notice of Email Change" msgstr "" #: modules/email-customizer/user-email-customizer.php:329 msgid "Changed Email Address Notification" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:11, modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:13, modules/multiple-forms/register-forms.php:13, modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:17, modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:2244 msgid "Shortcode" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:2265 msgid "(no title)" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:2285 msgid "The shortcode will be available after you publish this form." msgstr "" #: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:2287 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:2291 msgid "Note: changing the form title also changes the shortcode!" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:2324 msgid "Form Shortcode" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:207, modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:207, modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:208, modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:208 msgid "Specify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.com" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "" #: modules/multiple-forms/edit-profile-forms.php:241, modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:245, modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage here" msgstr "" #: modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "" #: modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "" #: modules/multiple-forms/multiple-forms.php:406 msgid "
            Title (Type)
            " msgstr "" #: modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "" #: modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "" #: modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "" #: modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "" #: modules/multiple-forms/register-forms.php:17, modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "" #: modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "" #: modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "" #: modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "" #: modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "" #: modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "" #: modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "" #: modules/multiple-forms/register-forms.php:228 msgid "Choose what role the user will have after (s)he registered
            If not specified, defaults to the role set in the WordPress settings" msgstr "" #: modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "" #: modules/multiple-forms/register-forms.php:229 msgid "Whether to automatically log in the newly registered user or not
            Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work" msgstr "" #: modules/multiple-forms/register-forms.php:232 msgid "Specify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.com" msgstr "" #: modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "" #: modules/repeater-field/repeater-field.php:298 msgid "Are you sure you want to delete this?" msgstr "" #: modules/user-listing/one-map-listing.php:432 msgid "Please wait while the pins are loading..." msgstr "" #: modules/user-listing/one-map-listing.php:547 msgid "The API Key was not provided." msgstr "" #: modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "" #: modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "" #: modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "" #: modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "" #: modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "" #: modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "" #: modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "" #: modules/user-listing/userlisting.php:114 msgid "Display name as" msgstr "" #: modules/user-listing/userlisting.php:161, modules/user-listing/userlisting.php:2352 msgid "Registration Date" msgstr "" #: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:2357 msgid "Number of Posts" msgstr "" #: modules/user-listing/userlisting.php:166 msgid "More Info" msgstr "" #: modules/user-listing/userlisting.php:167 msgid "More Info Url" msgstr "" #: modules/user-listing/userlisting.php:168 msgid "Avatar or Gravatar" msgstr "" #: modules/user-listing/userlisting.php:170 msgid "User Nicename" msgstr "" #: modules/user-listing/userlisting.php:218 msgid "Sort Tags" msgstr "" #: modules/user-listing/userlisting.php:222, modules/user-listing/userlisting.php:261 msgid "Extra Functions" msgstr "" #: modules/user-listing/userlisting.php:225 msgid "Pagination" msgstr "" #: modules/user-listing/userlisting.php:226 msgid "Search all Fields" msgstr "" #: modules/user-listing/userlisting.php:227, modules/user-listing/userlisting.php:2436 msgid "Faceted Menus" msgstr "" #: modules/user-listing/userlisting.php:228 msgid "User Count" msgstr "" #: modules/user-listing/userlisting.php:235 msgid "Map of listed users" msgstr "" #: modules/user-listing/userlisting.php:263 msgid "Go Back Link" msgstr "" #: modules/user-listing/userlisting.php:281 msgid "All-userlisting Template" msgstr "" #: modules/user-listing/userlisting.php:284 msgid "Single-userlisting Template" msgstr "" #: modules/user-listing/userlisting.php:310 msgid "Avatar" msgstr "" #: modules/user-listing/userlisting.php:314, modules/user-listing/userlisting.php:825 msgid "Posts" msgstr "" #: modules/user-listing/userlisting.php:315, modules/user-listing/userlisting.php:807 msgid "Sign-up Date" msgstr "" #: modules/user-listing/userlisting.php:316 msgid "More" msgstr "" #: modules/user-listing/userlisting.php:410 msgid "You do not have permission to view this user list." msgstr "" #: modules/user-listing/userlisting.php:423 msgid "You do not have the required user role to view this user list." msgstr "" #: modules/user-listing/userlisting.php:447 msgid "User not found" msgstr "" #: modules/user-listing/userlisting.php:801 msgid "First/Lastname" msgstr "" #: modules/user-listing/userlisting.php:816, modules/user-listing/userlisting.php:2355 msgid "Display Name" msgstr "" #: modules/user-listing/userlisting.php:828, modules/user-listing/userlisting.php:2362 msgid "Aim" msgstr "" #: modules/user-listing/userlisting.php:831, modules/user-listing/userlisting.php:2363 msgid "Yim" msgstr "" #: modules/user-listing/userlisting.php:834, modules/user-listing/userlisting.php:2364 msgid "Jabber" msgstr "" #: modules/user-listing/userlisting.php:1121, modules/user-listing/userlisting.php:1601, modules/user-listing/userlisting.php:2079, modules/user-listing/userlisting.php:2556 msgid "Search Users by All Fields" msgstr "" #: modules/user-listing/userlisting.php:1394 msgid "Click here to see more information about this user" msgstr "" #: modules/user-listing/userlisting.php:1394, modules/user-listing/userlisting.php:1394 msgid "More..." msgstr "" #: modules/user-listing/userlisting.php:1397 msgid "Click here to see more information about this user." msgstr "" #: modules/user-listing/userlisting.php:1424 msgid "View Map" msgstr "" #: modules/user-listing/userlisting.php:1555, modules/user-listing/userlisting.php:1558 msgid "Click here to go back" msgstr "" #: modules/user-listing/userlisting.php:1555, modules/user-listing/userlisting.php:1555 msgid "Back" msgstr "" #: modules/user-listing/userlisting.php:1588 msgid "«« First" msgstr "" #: modules/user-listing/userlisting.php:1589 msgid "« Prev" msgstr "" #: modules/user-listing/userlisting.php:1590 msgid "Next » " msgstr "" #: modules/user-listing/userlisting.php:1591 msgid "Last »»" msgstr "" #: modules/user-listing/userlisting.php:1620 msgid "You don't have any pagination settings on this userlisting!" msgstr "" #: modules/user-listing/userlisting.php:1669 msgid "Show All" msgstr "" #: modules/user-listing/userlisting.php:1743 msgid "Choose..." msgstr "" #: modules/user-listing/userlisting.php:1832 msgid "No options available" msgstr "" #: modules/user-listing/userlisting.php:1982 msgid "Remove All Filters" msgstr "" #: modules/user-listing/userlisting.php:2096 msgid "Search" msgstr "" #: modules/user-listing/userlisting.php:2097 msgid "Clear Results" msgstr "" #: modules/user-listing/userlisting.php:2294, modules/user-listing/userlisting.php:2298 msgid "Extra shortcode parameters" msgstr "" #: modules/user-listing/userlisting.php:2296 msgid "View all extra shortcode parameters" msgstr "" #: modules/user-listing/userlisting.php:2301 msgid "displays users having a certain meta-value within a certain (extra) meta-field" msgstr "" #: modules/user-listing/userlisting.php:2302 msgid "Example:" msgstr "" #: modules/user-listing/userlisting.php:2304 msgid "Remember though, that the field-value combination must exist in the database." msgstr "" #: modules/user-listing/userlisting.php:2310 msgid "displays only the users that you specified the user_id for" msgstr "" #: modules/user-listing/userlisting.php:2316 msgid "displays all users except the ones you specified the user_id for" msgstr "" #: modules/user-listing/userlisting.php:2379 msgid "Random (very slow on large databases > 10K user)" msgstr "" #: modules/user-listing/userlisting.php:2382 msgid "Ascending" msgstr "" #: modules/user-listing/userlisting.php:2383 msgid "Descending" msgstr "" #: modules/user-listing/userlisting.php:2388 msgid "Roles to Display" msgstr "" #: modules/user-listing/userlisting.php:2388 msgid "Restrict the userlisting to these selected roles only
            If not specified, defaults to all existing roles" msgstr "" #: modules/user-listing/userlisting.php:2389 msgid "Number of Users/Page" msgstr "" #: modules/user-listing/userlisting.php:2389 msgid "Set the number of users to be displayed on every paginated part of the all-userlisting" msgstr "" #: modules/user-listing/userlisting.php:2390 msgid "Default Sorting Criteria" msgstr "" #: modules/user-listing/userlisting.php:2390 msgid "Set the default sorting criteria
            This can temporarily be changed for each new session" msgstr "" #: modules/user-listing/userlisting.php:2391 msgid "Default Sorting Order" msgstr "" #: modules/user-listing/userlisting.php:2391 msgid "Set the default sorting order
            This can temporarily be changed for each new session" msgstr "" #: modules/user-listing/userlisting.php:2392 msgid "Avatar Size (All-userlisting)" msgstr "" #: modules/user-listing/userlisting.php:2392 msgid "Set the avatar size on the all-userlisting only" msgstr "" #: modules/user-listing/userlisting.php:2393 msgid "Avatar Size (Single-userlisting)" msgstr "" #: modules/user-listing/userlisting.php:2393 msgid "Set the avatar size on the single-userlisting only" msgstr "" #: modules/user-listing/userlisting.php:2394 msgid "Visible only to logged in users?" msgstr "" #: modules/user-listing/userlisting.php:2394 msgid "The userlisting will only be visible only to the logged in users" msgstr "" #: modules/user-listing/userlisting.php:2395 msgid "Visible to following Roles" msgstr "" #: modules/user-listing/userlisting.php:2395 msgid "The userlisting will only be visible to the following roles" msgstr "" #: modules/user-listing/userlisting.php:2401 msgid "Userlisting Settings" msgstr "" #: modules/user-listing/userlisting.php:2426 msgid "Label" msgstr "" #: modules/user-listing/userlisting.php:2426 msgid "Choose the facet name that appears on the frontend" msgstr "" #: modules/user-listing/userlisting.php:2427 msgid "Facet Type" msgstr "" #: modules/user-listing/userlisting.php:2427 msgid "Choose the facet menu type" msgstr "" #: modules/user-listing/userlisting.php:2428 msgid "Facet Meta" msgstr "" #: modules/user-listing/userlisting.php:2428 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." msgstr "" #: modules/user-listing/userlisting.php:2429 msgid "Behaviour" msgstr "" #: modules/user-listing/userlisting.php:2429 msgid "Narrow the results" msgstr "" #: modules/user-listing/userlisting.php:2429 msgid "Expand the results" msgstr "" #: modules/user-listing/userlisting.php:2429 msgid "Choose how multiple selections affect the results" msgstr "" #: modules/user-listing/userlisting.php:2430 msgid "Visible choices" msgstr "" #: modules/user-listing/userlisting.php:2430 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "" #: modules/user-listing/userlisting.php:2455 msgid "Search Fields" msgstr "" #: modules/user-listing/userlisting.php:2455 msgid "Choose the fields in which the Search Field will look in" msgstr "" #: modules/user-listing/userlisting.php:2460 msgid "Search Settings" msgstr "" #: modules/user-listing/userlisting.php:2532 msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "" #: modules/user-listing/userlisting.php:2532 msgid "You can find it in the Profile Builder menu." msgstr "" #: modules/user-listing/userlisting.php:2695 msgid "No results found!" msgstr "" #: ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:541, assets/lib/wck-api/wordpress-creation-kit.php:545 msgid "Delete this item" msgstr "" #: ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:1286 msgid "Syncronize WCK" msgstr "" #: ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:1298 msgid "Syncronize WCK Translation" msgstr "" #: front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "" #: front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "" #: front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "" #: front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "" #: front-end/default-fields/blog-details/blog-details.php:138 msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network." msgstr "" #: front-end/default-fields/email/email.php:51, front-end/extra-fields/input-email/input-email.php:70 msgid "You must enter a valid email address." msgstr "" #: front-end/default-fields/email/email.php:60, front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "" #: front-end/default-fields/email/email.php:60, front-end/default-fields/email/email.php:67, front-end/default-fields/email/email.php:77, front-end/default-fields/email/email.php:95, front-end/default-fields/username/username.php:49, front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "" #: front-end/default-fields/email/email.php:77, front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "" #: front-end/default-fields/gdpr-delete/gdpr-delete.php:31 msgid "Type %s to confirm deleting your account and all data associated with it:" msgstr "" #: front-end/default-fields/gdpr-delete/gdpr-delete.php:32 msgid "You did not type %s. Try again!" msgstr "" #: front-end/default-fields/password-repeat/password-repeat.php:37, front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "" #: front-end/default-fields/recaptcha/recaptcha.php:53 msgid "To use reCAPTCHA you must get an API key from" msgstr "" #: front-end/default-fields/recaptcha/recaptcha.php:192 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "" #: front-end/default-fields/recaptcha/recaptcha.php:257 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "" #: front-end/default-fields/recaptcha/recaptcha.php:543 msgid "Click the BACK button on your browser, and try again." msgstr "" #: front-end/default-fields/user-role/user-role.php:97, front-end/default-fields/user-role/user-role.php:111 msgid "Only administrators can see this field on edit profile forms." msgstr "" #: front-end/default-fields/user-role/user-role.php:106 msgid "As an administrator you cannot change your role." msgstr "" #: front-end/default-fields/user-role/user-role.php:148, front-end/default-fields/user-role/user-role.php:172, front-end/default-fields/user-role/user-role.php:177 msgid "You cannot register this user role" msgstr "" #: front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "" #: front-end/default-fields/username/username.php:52, front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "" #: front-end/default-fields/username/username.php:52, front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "" #: front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "" #: front-end/extra-fields/input-url/input-url.php:70 msgid "You must enter a valid URL." msgstr "" #: front-end/extra-fields/map/map.php:46, front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "" #: front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "" #: front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "" #: front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "" #: front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "" #: front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "" #: front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "" #: front-end/extra-fields/select-cpt/select-cpt.php:42, front-end/extra-fields/select-cpt/select-cpt.php:66, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/country select.php:14, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/cpt select.php:17, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/select.php:14, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/user select.php:15, assets/lib/wck-api/fields/country select.php:14, assets/lib/wck-api/fields/cpt select.php:17, assets/lib/wck-api/fields/select.php:14, assets/lib/wck-api/fields/user select.php:15 msgid "...Choose" msgstr "" #: front-end/extra-fields/upload/upload.php:122 msgid "Remove" msgstr "" #: front-end/extra-fields/upload/upload.php:132 msgid "Select File" msgstr "" #: front-end/extra-fields/upload/upload.php:138 msgid "Upload " msgstr "" #: front-end/extra-fields/upload/upload_helper_functions.php:61 msgid "Files must be smaller than " msgstr "" #: front-end/extra-fields/upload/upload_helper_functions.php:87, front-end/extra-fields/upload/upload_helper_functions.php:96 msgid "Sorry, you cannot upload this file type for this field." msgstr "" #: front-end/extra-fields/upload/upload_helper_functions.php:103 msgid "An error occurred, please try again later." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:210 msgid "Limit" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:210 msgid "Enable limit to the number of fields to be generated by users in front end forms " msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:211 msgid "General Limit" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:211 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:212 msgid "Limit reached message" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:212 msgid "The maximum number of fields has been reached." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:212 msgid "The popup message to display when the limit of repeater groups is reached." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:213 msgid "Limit per Role" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:213 msgid "Leave 0 for unlimited." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:214 msgid "Repeated field group" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:214 msgid "Manage field or group of fields that will be repeatable." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:279 msgid "Edit field group" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:280 msgid "Repeatable fields saved!" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:297 msgid "Please enter a unique field title." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:346 msgid "" "Please enter a unique field title.\n" "" msgstr "" #: assets/lib/wck-api/fields/select-2.php:16 msgid "Select or type in an option" msgstr "" translation/profile-builder-hu_HU.mo000066600000125437152141651170013554 0ustar00q,','l-'y'c(x(cM))*+Cz,,;A-}-K-C-[.y.+.E.1/e9/ /-/ ///G 0RR0c0! 1'+1S1]W1U1 22'262F2U2 \2 f2p2x22222 22 2 233#13U3u33 333 33?3A4*J4u4}44 4444 44404 5 55"515Q5 X5 d5 r5}55 555k56i677 7'7-757<7!D7f7}77 777777 78 888&8 -888G8`8,e888'8K8 995-9 c9q9z909 9 99 9 99U:[:j:r:w:::7: : :::: ; ";0;L;g; n;y;; ;; ; ;;; ;<<A+<m</v<.<1<== #=0=N=U=[= b=m=u= z==== =====W=V>h> p>~>>>>>> >> >>> >> ??? $?2?C? _?k???????? ?? ?? ?? ?@ @ @!@(@!.@P@U@ ^@h@|@@@@ @ @@@ @@@AA AA#A )A5AD IDTD YD fDpD xDDDDDDD D DD D DDE EEEE*EWVW^W fW pW zWWWWWW W XXX.XAXSXDpXSX Y&YBY aYlYtY |Y Y YYY#YY Y YZ(Z-Z45ZFjZZZA[J[P[T[)X[G[#["[2\>D\G\2\+\%*]P]Ki];]r]+d^K^h^eE_'_)_0_2.`&a`,`+` `a aa+1a]apaya@a:ab bbb7b eo~! &Ď!)1 CQ h u! Ǐӏ  1 ;EZ^p+ϐD Q])d ̑ ֑]$XA} -͒  ' * BM Ubi q } ,#311H0z#Kϖ-8I0<.*"Y%|,+Ϙ(B$5g" < #F6jNR(Cl śΛ ֛'.F[`h q |%  %9S&o&#ܝ%&E^q0˞]eZ)&( :FO Xcr,)Ϡ:CV ^HhK Ƣ͢Ӣ'آ8 9.Z;^ţ>$=c3(դtAӥVQviȦg2@Iۧ@%Mf%*ڨ!*'R Z*d2© ީC8G ê 

            Good News!

            An administrator has just approved your account: {{username}} on {{site_name}}.

            Hello,

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            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!

            Someone requested that the password be reset for the following account: {{site_name}}
            Username: {{username}}

            If this was a mistake, just ignore this email and nothing will happen.

            To reset your password, visit the following address:
            {{{reset_link}}}

            To activate your user, please click the following link:
            {{{activation_link}}}

            After you activate, you will receive another email with your credentials.

            You have successfully reset your password to: {{password}}

            {{username}} has requested a password change via the password reset feature.

            His/her new password is: {{password}}

            * only available in the %1$sHobbyist and Pro versions%2$s. Serial Number: Your serial number is about to expire, please %1$s Renew Your License%2$s. Your serial number is expired, please %1$s Renew Your License%2$s. is also activated. You need to deactivate it before activating this version of the plugin."Admin Approval" Activated:"Email" - users can Log In only with Email."Username and Email" - users can Log In with both Username and Email."Username" - users can Log In only with Username.%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s(no title)** only available in the %1$sPro version%2$s....Choose1 item%s items
            Title (Type)
            ERROR: The password must have a minimum strength of %sERROR: The password must have the minimum length of %s charactersERROR: Your account has to be confirmed by an administrator before you can log in.Profile Builder A new subscriber has (been) registered!AIMAccept user payments, create subscription plans and restrict content on your membership site.Accept user payments, create subscription plans and restrict content on your website.Account ManagementActivateActivation KeyActivation LinkActivation UrlActiveAdd EntryAdd FieldAdd NewAdd UserAdd new Edit-profile FormAdd new Registration FormAdd-OnsAdmin Bar SettingsAfghanistanAfter Edit ProfileAfter LoginAfter LogoutAfter RegistrationAfter Registration...After Successful Email ConfirmationAfter Successful Password ResetAgree To Terms CheckboxAimAland IslandsAlbaniaAlgeriaAll UsersAmerican SamoaAn administrator has just approved your account on %1$s (%2$s).An administrator has just unapproved your account on %1$s (%2$s).An error occurred, please try again later.AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApproveApprovedArgentinaArmeniaArubaAs an administrator you cannot change your role.AscendingAustraliaAustriaAvailable TagsAvailable tags for dynamic URLsAvatarAvatar SizeAvatar UploadAzerbaijanBahamasBahrainBangladeshBarbadosBasic InformationBefore you can access your account %1s, an administrator has to approve it. You will be notified via email.Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.Before you can access your account, an administrator needs to approve it. You will be notified via email.BelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBoth fields are empty.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCancelCape VerdeCayman IslandsCentral African RepublicChadCheck your e-mail for the confirmation link.ChileChinaChoose one of the supported field typesChoose which user roles view the admin bar in the front-end of the website.Choose...Christmas IslandClick the BACK button on your browser, and try again.Cocos IslandsColombiaComorosCompatible with your version of Profile Builder.Confirm EmailContact InfoContentCook IslandsCosta RicaCould not create user!Could not install plugin. Retry or install manually.Country SelectCroatiaCubaCuracaoCyprusCzech RepublicDashboard (redirect users from accessing the dashboard)Date-formatDeactivateDefaultDefault OptionDefault Option(s)Default RegistrationDefault ValueDefault option of the fieldDefault value of the fieldDeleteDelete allDelete all itemsDelete this itemDemocratic Republic of the CongoDenmarkDescendingDescriptionDisabledDisplay MessagesDisplay NameDisplay name asDisplay name publicly asDisplay name publicly as - only appears on the Edit Profile page!DjiboutiDo you want to bulk approve the selected users?Do you want to bulk delete the selected users?Do you want to bulk unapprove the selected users?DominicaDominican RepublicDownload NowDownloading and installing...E-mailERRORERROR:East TimorEcuadorEditEdit ProfileEdit the Registration FormsEdit this itemEgyptEl SalvadorEmailEmail ConfirmationEmail CustomizerEmail TemplatesEnter the minimum characters the password should have. Leave empty for no minimum limitEquatorial GuineaEritreaError MessageEstoniaEthiopiaExample:Existing PagesExtra FeaturesFalkland IslandsFaroe IslandsFieldField TitleFijiFinlandFirst NameFirst/LastnameFirstnameFranceFreeFrench GuianaFrench PolynesiaFrench Southern TerritoriesFrom (name)From (reply-to email)GabonGambiaGeneral SettingsGeorgiaGermanyGet New PasswordGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald IslandsHideHondurasHong KongHow does this work?HungaryIcelandInactiveIndiaIndonesiaInstall NowInstallation completeInvalid activation key!Invalid key!Invalid username.IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKosovoKuwaitKyrgyzstanLaosLast NameLastnameLatviaLebanonLesothoLiberiaLibyaLiechtensteinList ViewLithuaniaLog outLog out »Log out of this accountLog out of this account.LoginLogin with Email or UsernameLogoutLost your passwordLost your password?LuxembourgMacaoMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaManage Default and Extra FieldsManage FieldsMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMediumMember ManagementMexicoMicronesiaMinimum Password Length and Strength MeterMinimum Password Length:Minimum Password Strength:Minimum length of %d charactersMinimum required Profile Builder version:ModulesMoldovaMonacoMongoliaMontenegroMontserratMoreMore DetailsMore InfoMoroccoMozambiqueMyanmarNameName/DescriptionNamibiaNauruNepalNetherlandsNew CaledoniaNew Registration FormNew ZealandNicaraguaNicknameNigerNigeriaNiueNoNo items found.No results found!NoneNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNot compatible with Profile BuilderNot compatible with your version of Profile Builder.Number of PostsOmanOnly administrators can see this field on edit profile forms.Only an administrator can add new users.OptionsPaid & Free SubscriptionsPaid AccountsPaid Member Subscriptions - a free WordPress pluginPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayPasswordPassword Lost and Found.Password Reset EmailPassword Reset Success EmailPassword Successfully Reset for %1$s on "%2$s"Payment ManagementPeruPhilippinesPitcairnPlease check that you entered the correct email address.Please check that you entered the correct username.Please enter a (valid) reCAPTCHA valuePlease enter a valid username.Please enter your username or email address.Please select at least one user role Plugin has been activatedPlugin has been deactivated.Plugin is activePlugin is inactivePlugin is ActivePolandPortugalPostsProfile Builder RegisterPuerto RicoQatarRecommended PluginsRecover PasswordRedirectRedirect URLRegisterRegisteredRegistrationRegistration & Edit ProfileRegistration DateRegistration FormRegistration FormsRegistration with Admin ApprovalRemoveRepeat PasswordRepublic of the CongoResend Activation EmailReset PasswordRestrict ContentRetry InstallReunionRoleRomaniaRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaveSave ChangesSave SettingsSearchSelectSelect AllSelect FileSelect which user roles to show to the user ( drag and drop to re-order )Send these credentials via email.SenegalSerbiaSet the number of users to be displayed on every paginated part of the all-userlistingSeychellesShowShow/Hide the Admin Bar on the Front-EndSierra LeoneSingaporeSint MaartenSite NameSite UrlSlovakiaSloveniaSolomon IslandsSomaliaSomething went wrong, we could not connect to the server. Please try again later.Sorry, but you don't have permission to do that!Sorry, you cannot upload this file type for this field.South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)Sri LankaStatusStep by Step Quick SetupStrength indicatorStrongSubscription ManagementSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaThailandThat username is already activated!The account %1s has been successfully created!The email address entered wasn't found in the database!The email you entered is not a valid email address.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical The entered passwords don't match!The following option(s) did not coincide with the ones in the options list: %s The password must have a minimum strength of %sThe password must have the minimum length of %s charactersThe password you entered is incorrect.The passwords do not matchThe selected user couldn't be deletedThe serial number couldn't be validated because it expired!The serial number entered couldn't be validated!The serial number is about to expire soon!The serial number was successfully validated!The username entered wasn't found in the database!The usernames cannot be changed.There was an error in the submitted formThere was an error while trying to activate the userThere was an error while trying to activate the user.This email is already in use.This email is already reserved to be used soon.This field is requiredThis form is empty.This message is only visible by administratorsThis username already exists.This username is already activated!This username is already reserved to be used soon.This username is invalid because it uses illegal characters.This username is now active!Timezone SelectTitle of the fieldTitle:TogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluType your password again. Type your password.U.S. Virgin IslandsURLUgandaUkraineUnapproveUnapprovedUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUpdateUpgrade Profile BuilderUpload UruguayUser MetaUser RoleUser RolesUser Roles OrderUser not foundUser successfully approved!User successfully deleted!User successfully unapproved!User to edit:User-RoleUsernameUsername and EmailUsername or E-mailUsername or EmailUsernames cannot be changed.Users can register themselves or you can manually create users here.Users cannot currently register themselves, but you can manually create users here.Users successfully approved!Users successfully deleted!Users successfully unapproved!UzbekistanVanuatuVaticanVenezuelaVery WeakVery weakVietnamView MapView all extra shortcode parametersView the Registration FormVisibilityVisible only to logged in users?Wallis and FutunaWeakWebsiteWelcome to %1$s!


            Your username is:%2$sWelcome to %1$s!


            Your username is:%2$s and password:%3$sWestern SaharaWith the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts.Yahoo IMYemenYesYimYou are currently logged in as %1$s. %2$sYou are currently logged in as %1s. You don't need another account. %2sYou are currently logged in as %s. You cannot register this user roleYou do not have permission to view this user list.You do not have the required user role to view this user list.You either don't have permission for that action or there was an error!You have successfully reset your password to: %1$sYou must be logged in to edit your profile.You must enter a valid email address.You must select a field You use the following tags in your URLs to redirect users to various pages.You will receive a link to create a new password via email.You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$sYour account has been successfully created!Your account has to be confirmed by an administrator before you can log in.Your account has to be confirmed by an administrator before you can use the "Password Recovery" feature.Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.Your account on %1$s has been approved!Your account on %1$s has been unapproved!Your account on {{site_name}} has been approved!Your account on {{site_name}} has been unapproved!Your email was successfully confirmed.Your password has been successfully changed!Your profile has been successfully updated!Your selected password at signupZambiaZimbabwe[{{site_name}}] Password Reset[{{site_name}}] Password Reset Successfullyapprove this user?approveddelete this user?displays all users except the ones you specified the user_id fordisplays only the users that you specified the user_id foremailhererequiredresend the activation link?showunapprove this user?unapprovedusernameusername or emailPO-Revision-Date: 2017-04-12 05:30:46+0000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=n != 1; X-Generator: GlotPress/0.1 Project-Id-Version: Profile Builder

            Jó hírünk van!

            Jóváhagytuk a regisztrációdat: a felhasználóneved: {{username}} a(z) {{site_name}} oldalon.

            Szia,

            Sajnos rossz hírünk van! Nem tudtuk jóváhagyni a regisztrációdat: felhasználóneved {{username}} a(z) {{site_name}} oldalon.

            Üdvözlünk a(z) {{site_name}} oldalon!

            A felhasználóneved:{{username}} és a jelszavad:{{password}}

            Üdvözlünk a(z) {{site_name}} oldalon!

            A felhasználóneved:{{username}} és a jelszavad:{{password}}

            Ahhoz, hogy be tudj jelentkezni, előbb el kell fogadnunk a regisztrációdat. A jóváhagyásról majd e-mailben értesítünk.

            Új feliratkozó a következő oldalon: {{site_name}}.

            Felhasználónév:{{username}}

            E-mail:{{user_email}}

            Új feliratkozó a következő oldalon: {{site_name}}.

            Felhasználónév:{{username}}

            E-mail:{{user_email}}

            Az Admin Jóváhagyás funkció aktiválva volt a regisztrációkor, így ne feledd, hogy jóvá ell hagynod a felhasználó regisztrációját ahhoz, hogy ő be tudjon jelentkezni!

            Új jelszóigénylés érkezett a következő fiókra: {{site_name}}
            Felhasználónév: {{username}}

            Ha ez véletlen történt, nyugodtan hagyd figyelmen kívül ezt a levelet és semmi sem fog történni.

            Az új jelszó igényléséhez látogasd meg a következő címet:
            {{{reset_link}}}

            A felhasználói fiókod aktiválásához kérjük, kattints a következő linkre:
            {{{activation_link}}}

            Miután aktiváltad, küldünk neked egy e-mailt.

            Sikeresen megváltoztattad a jelszavadat a következőre: {{password}}

            {{username}} új jelszót igényelt a jelszó újraigénylő funkcióval.

            Az új jelszó: {{password}}

            * csak a %1$sHobbyist és Pro verziókban%2$s elérhető.Sorozatszám:Sorozatszáma hamarosan lejár, kérem %1$s Újítsa meg Licenszét%2$s. Sorozatszáma lejárt, kérem %1$s Újítsa meg Licenszét%2$s.már aktiválva. Deaktiváld mielőtt aktiválod a plugin ezen verzióját."Adminisztrátori Jóváhagyás" aktiválva:"Email" . csak az email címét használhatja belépéshez."Felhasználónév és Email". a belépéshez a felhasználónevét és email címét is használhatja."Felhasználónév" . csak a felhasználónevet használhatja belépéshez.%1$s nevű felhasználó a jelszó módosító opcióval megváltoztatta a jelszavát.
            Az új jelszava:%2$s(nincs cím)** Csak a %1$sPro version%2$s tartalmazza.... Válassz1 elem
            Cím (típus)
            HIBA: A jelszónak minimum %s erősnek kell lennieHIBA: A jelszónak minimum %s karakteresnek kell lennieHIBA!: Ahhoz, hogy be tudj lépni a fiókodba, előbb el kell fogadnunk a regisztrációdat. E-mailben értesítünk majd a jóváhagyásról.Profile Builder Új felhasználó regisztrált.AIMFelhasználói fizetés, feliratkozási tervek és tartalom korlátozása a tagsági oldalán.Felhasználói fizetések elfogadása, előfizetési tervek készítése és korlátozott hozzáférésű tartalom az oldaladon.Fiók MenedzsmentAktiválAktiváló kulcsAktiváló linkAktiváló URLAktívBejegyzés hozzáadásaMező hozzáadásaÚj hozzáadásaFelhasználó hozzáadásaÚj Felhasználói profil szerkesztő űrlap hozzáadásaÚj Regisztrációs űrlap létrehozásaBővítményekAdmin Bar beállításokAfghanistanProfil szerkesztése utánBejelentkezés utánKijelentkezés utánRegisztráció utánRegisztráció után..Sikeres E-mail megerősítés utánSikeres új jelszó beállítása utánSzabályzat elfogadása checkdobozCélAland IslandsAlbaniaAlgeriaÖsszes felhasználóAmerican SamoaA következő oldalon: %1$s (%2$s) lévő fiókod sikeresen elfogadásra került.A következő oldalon: %1$s (%2$s) lévő fiókod elutasításra került.Valami hiba történt, kérem, próbálja meg később.AndorraAngolaAnguillaAntarcticaAntigua and BarbudaElfogadElfogadvaArgentinaArmeniaArubaMint adminisztrátor, Ön nem módosíthatja saját jogosultságát.NövekvőAustraliaAustriaLehetséges címkékElérhető címkék dinamikus URL-ekhezAvatarAvatar méretAvatar feltöltéseAzerbaijanBahamasBahrainBangladeshBarbadosAlap információAhhoz, hogy hozzáférj a %1s fiókodhoz, előbb el kell fogadnunk a regisztrációdat. A jóváhagyásról majd e-mailben értesítünk.Ahhoz, hogy be tudj lépni a %1s fiókodba, előbb meg kell erősítened az e-mail címedet. Kérjük ellenőrizd a beérkező leveleidet és kattints az aktiváló linkre.Ahhoz, hogy be tudj lépni a fiókodba, először jóvá kell hagynunk a regisztrációdat. E-mailben értesítünk, amint jóváhagytuk.BelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaMindkét mező üres.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaBurkina FasoBurundiCambodiaCameroonCanadaMégsemCape VerdeCayman IslandsCentral African RepublicChadNézz rá az e-mail fiókodra a megerősítésért.ChileChinaVálassz egyet a támogatott mező formátumokbólVálaszd ki melyik felhasználói szerepkörök láthatják az admin bar-t a weboldalon front-end.Válassz ...Christmas IslandKattintson a VISSZA gombra a böngészőjében, és próbálja újra.Cocos IslandsColombiaComorosKompatibilis a te Profile Builder verzióddal.E-mail megerősítéseElérhetőségekTartalomCook IslandsCosta RicaA felhasználó létrehozása nem sikerült.Bővítmény telepítése sikertelen. Próbálja újra vagy telepítse manuálisan.Ország kiválasztásaCroatiaCubaCuracaoCyprusCzech RepublicVezérlőpultDátum formátumKikapcsolAlapértelmezettAlapértelmezett beállításAlapértelmezett beállítás(ok)Alapértelmezett regisztrációAlapértelmezett értékA mező alapértelmezett értékeA mező alapértelmezett értékeTörölMindent törölMinden elem törléseElem törléseDemocratic Republic of the CongoDenmarkCsökkenőLeírásKikapcsolvaÜzenetek megjelenítéseMegjelenített névNév megjelenítése mintMegjelenítendő névNév megjelenítése mint.. - csak a Profil szerkesztése oldalon jelenik meg.DjiboutiSzeretnéd csoportosan elfogadni a kiválasztott felhasználókat?Szeretnéd csoportosan törölni a kiválasztott felhasználókat?Szeretnéd csoportosan elutasítani a kiválasztott felhasználókat?DominicaDominican RepublicLetöltés mostLetöltés és telepítésE-mailHIBAHIBA:East TimorEcuadorSzerkesztProfil szerkesztéseRegisztrációs űrlap szerkesztéseElem szerkesztéseEgyptEl SalvadorE-mailE-mail megerősítésE-mail testreszabásEmail SablonokAdd meg, hogy minimum hány karakteresnek kell lennie a jelszónak. Hagyd üresen, ha nem akarsz limitet meghatározni.Equatorial GuineaEritreaHibaüzenetEstoniaEthiopiaPéldául:Létező oldalakExtra funkciókFalkland IslandsFaroe IslandsMezőMezőcímFijiFinlandVezetéknévKereszt/VezetéknévVezetéknévFranceIngyenesFrench GuianaFrench PolynesiaFrench Southern TerritoriesFeladó (név)Feladó (válasz e-mail)GabonGambiaÁltalános beállításokGeorgiaGermanyÚj jelszót kérek!GhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald IslandsElrejtHondurasHong KongHogy működik ez?HungaryIcelandInaktívIndiaIndonesiaTelepítés mostTelepítés készHibás aktiváló kulcs!Érvénytelen kulcs!Nem megfelelő felhasználónévIranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKosovoKuwaitKyrgyzstanLaosKeresztnévKeresztnévLatviaLebanonLesothoLiberiaLibyaLiechtensteinLista nézetLithuaniaKijelentkezésKijelentkezés »Kijelentkezés ebből a fiókbólKijelentkezés ebből a fiókból.BejelentkezésBejelentkezés e-mail címmel vagy felhasználónévvelKijelentkezésElfelejtette jelszavátElfelejtette a jelszavát?LuxembourgMacaoMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaAlapértelmezett és extra mezők beállításaMezők kezeléseMarshall IslandsMartiniqueMauritaniaMauritiusMayotteKözepesTag menedzsmentMexicoMicronesiaJelszó minimális hosszának és erősségének méréseMinimális jelszó hosszúság:Minimális jelszóerősség:Minimum %d karakter hosszúA minimálisan elvárt Profile Builder verzió:ModulokMoldovaMonacoMongoliaMontenegroMontserratTöbbTovábbi RészletekTovábbi infóMoroccoMozambiqueMyanmarNévNév/LeírásNamibiaNauruNepalNetherlandsNew CaledoniaÚj regisztrációs űrlapNew ZealandNicaraguaBecenévNigerNigeriaNiueNemNem találhatóak elemek.Nincs találatNincsNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNem kompatibilis a Profile Builder-relNem kompatibilis a te Profile Builder verzióddal.Bejegyzések számaOmanCsak az adminisztrátorok láthatják ezt a mezőt a profilszerkesztő űrlapon.Csak adminisztrátor adhat hozzá új felhasználókat.BeállításokFizetős és ingyenes előfizetésekFizetős FiókokElőfizetéses Tagság - ingyenes WordPress bővítményPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayJelszóElfelejtett jelszó.Új jelszó igénylő e-mailÚj jelszó sikeresen beállítva e-mailJelszavad sikeresen módosítva a következőre: %1$s a következőn: "%2$s"Fizetés MenedzsmentPeruPhilippinesPitcairnKérjük, ellenőrizd, hogy helyesen adtad-e meg az e-mail címedet.Kérjük ellenőrizd, hogy helyes felhasználónevet gépeltél be.Kérem adjon meg egy (valós) reCAPTCHA értéketKérjük, adj meg egy érvényes felhasználónevet.Add meg a felhasználóneved vagy email címed!Legalább egy engedélyt választani kell Plugin aktiválvaA bővítményt kikapcsolták.Bővítmény bekapcsolvaBővítmény kikapcsolvaA Plugin AktívPolandPortugalBejegyzésekProfile Builder RegisztrációPuerto RicoQatarAjánlott BővítményekJelszó helyreállításaÁtirányításÁtirányítási URLRegisztrálok!RegisztráltRegisztrációRegisztráció és profil szerkesztéseRegisztráció dátumaRegisztrációs űrlapRegisztrációs űrlapokRegisztráció Admin jóváhagyássalTörlésJelszó újraRepublic of the CongoAktiváló E-mail újraküldéseÚj jelszóKorlátozott hozzáférésű tartalomTelepítés megismétléseReunionSzerepRomaniaRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaMentésVáltozások mentéseBeállítások mentéseKeresésVálasztMinden kijelöléseFájl kiválasztásaVálaszd ki, hogy a felhasználók mihez férhetnek hozzá (húzd és vidd a módosításhoz)Adatok küldése saját részre e-mailben.SenegalSerbiaVálaszd ki az egy oldalon megjeleníthető felhasználók számátSeychellesMutatMutat/elrejt az Admin Bar a Front-end-enSierra LeoneSingaporeSint MaartenOldal neveOldal UrlSlovakiaSloveniaSolomon IslandsSomaliaHiba történt és nem tudtunk csatlakozni a szerverhez. Kérjük, próbáld újra később.Elnézést, erre nincs engedélyed.Sajnáljuk, ilyen fájl típust nem tölthet fel ebbe a mezőbe.South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainHatározza meg a fájlkiterjesztés(eke)t, amiket a felhasználó feltöltéskor használhat
            Például: .ext1,.ext2,.ext3
            (beállítás nélkül): .a WordPress által engedélyezettek (.*)Határozza meg a fájlkiterjesztés(eke)t, amiket a felhasználó feltöltéskor használhat
            Például: .ext1,.ext2,.ext3
            alapbeállítás (beállítás nélkül): .jpg,.jpeg,.gif,.png (.*)Sri LankaÁllapotLépésről lépésre GyorsbeállítóErősség jelzőErősElőfizetés MenedzsmentSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaThailandEz a felhasználónév már aktiválva van!A %1s fiók sikeresen létrehozva.A megadott e-mail cím nincs meg az adatbázisban!Az általad megadott e-mail cím nem érvényes.A beírt avatar méret nem 20 és 200 közötti A megadott avatar méret nem numerikus érték A megadott jelszavak nem egyeznek!A következő lehetőség(ek) nem egyezik a lista egyik elemével sem: %s A jelszónak minimum %s erősnek kell lennieA jelszónak minimum %s karakter hosszúnak kell lennieA begépelt jelszó hibás.Nem egyeznek meg a jelszókA kiválasztott felhasználó nem törölhető.A beírt sorozatszám nem aktiválható, mert már lejárt.A beírt sorozatszámot nem lehet aktiválni!A széria szám hamarosan lejár!A sorozatszám sikeresen aktiválva!A beírt felhasználónév nem található!A felhasználónevek nem módosíthatóak.Valami hiba van az elküldött űrlaponHiba történt, amikor megpróbáltad aktiválni a felhasználótHiba történt a felhasználó aktiválása közben.Az e-mail már használatban van.Ez az e-mail cím már foglalt.Ez kötelező mező!Az űrlap üres.Ez az üzenet csak az adminisztrátorok számára láthatóA felhasználónév már létezik.Ezt a felhasználónevet már korábban aktiválták.A felhasználónév már le van foglalva és hamarosan használni is fogják.Ez a felhasználónév érvénytelen, mert nem megengedett karaktereket használ.A felhasználóneved mostantól aktív.Időzóna kiválasztásaMező címeCím:TogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluKérjük, írd be a jelszavadat újra.Írja be a jelszavát.U.S. Virgin IslandsURLUgandaUkraineElutasítElutasítvaUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsFrissítésProfile Builder frissítéseFeltöltésUruguayFelhasználó MetaFelhasználói engedélyFelhasználói engedélyekFelhasználói engedélyek rendezéseFelhasználó nem találhatóFelhasználó sikeresen jóváhagyva!Felhasználó sikeresen törölve!Felhasználó sikeresen elutasítva!Szerkesztendő felhasználó:Felhasználói-szerepekFelhasználónévFelhasználónév és EmailFelhasználónév vagy E-mailFelhasználónév vagy EmailA felhasználónevet nem lehet megváltoztatni.A felhasználók regisztrálhatják magukat vagy manuálisan te is létrehozhatod őket itt.A felhasználók jelenleg nem regisztrálhatják magukat, de te manuálisan hozzáadhatod őket itt.A felhasználók sikeresen jóváhagyva!A felhasználók sikeresen törölve!A felhasználók sikeresen elutasítva!UzbekistanVanuatuVaticanVenezuelaNagyon GyengeNagyon gyengeVietnamTérkép megtekintéseMinden extra shortcode paraméter mutatásaA Regisztrációs űrlap megjelenítéseLáthatóságCsak a bejelentkezett felhasználók számára látható?Wallis and FutunaGyengeWeboldalÜdvözlünk a(z) %1$s oldalon!


            A felhasználóneved:%2$sÜdvözlünk a fedélzeten! A felhasználóneved:%2$s és a jelszavad:%3$sWestern SaharaAz új Előfizetések mezővel a Profile Builder-ben, a regisztrációs formokon lehetőség nyílik a felhasználók számára a fizetős fiókra történő előfizetésre.Yahoo IMYemenIgenYimJelenleg bejelentkezve mint %1$s. %2$sBelépve mint %1s. Nincs szüksége másik fiókra. %2sJelenleg bejelentkezve mint %s.Nem regisztrálhatsz ilyen felhasználókéntÖnnek nincs joga a felhasználói lista megtekintésére.Önnek nincs meg a megfelelő jogosultsága ahhoz, hogy ezt a felhasználólistát megnyissa.Nincs engedélyed erre a műveletre vagy hiba történhetett!Sikeresen módosítottad a jelszavadat a következőre: %1$sA profilod szerkesztéséhez be kell jelentkezned.Érvényes e-mail címet kell megadnod.Választanod kell egy mezőtA következő címkéket használod az URL-eidben a felhasználók átirányításához a különböző oldalakhoz.E-mailben kapott linken keresztül új jelszót hozhatsz létre.Hamarosan automatikusan át leszel irányítva. Ha több mint %1$d másodpercig látod ezt az ablakot, kérlek kattints %2$s.%3$sFiókja sikeresen létrehozva!Az Ön fiókját egy jóvá kell hagynia adminisztrátornak, mielőtt beléphet.A fiókodat előbb jóvá kell hagynunk ahhoz, hogy használni tudd a Jelszó helyreállító funkciót.A fiókodat meg kell, hogy erősítse egy adminisztrátor az "Elfelejtett jelszó" használata előtt.A következő oldalon: %1$s lévő fiókod sikeresen elfogadva!A következő oldalon: %1$s létrehozott fiókod elutasításra került!A(z) {{site_name}} oldalon lévő fiókod elfogadásra került!A(z) {{site_name}} oldalon lévő regisztrációdat nem tudtuk jóváhagyni.E-mailed sikeresen megerősítetted.A jelszavadat sikeresen megváltoztattad.A profilod sikeresen frissítve!A regisztrációkor választott jelszavadZambiaZimbabwe[{{site_name}}] Új jelszó beállítása[{{site_name}}] Új jelszó sikeresen beállítvaFelhasználó elfogadása?elfogadvafelhasználó törlése?csak azon felhasználók mutatása akiknél nem szerepel a user_idcsak azon felhasználók megjelenítése akik a user_idemailittkötelezőaktiváló link újraküldése?Megmutatfelhasználó elutasítása?elutasítvafelhasználónévfelhasználónév vagy emailtranslation/profile-builder-zh_CN.mo000066600000161305152141651170013537 0ustar0011l1y*2c23c3A4B5;5+6K;6C6667"!7+D7Ep717 7e7 X8e8 |8 8828 8-8O9 e9o9d9Y9GF:R:c:!E;7g;';;b<f<u<~<<<< < <<<<< =&=;=U=r====== ===$>6>N> R>`>h> p>(z>>>>Lh???9?"@?1@Aq@@@@ @@@@@ A AA0A JATA\AqAA AA A AA AAB B BB'Bk9BBi,CCCCCCCCC!CCD,D 5DCDJDiDDD D DDDDDD DDDE, E7E@EFE'LE7tEEK0F |FF FF2F3F "G0G9GIG0QG G GG G GGUG*H9HAHFHNH)_HHH H H HHHHHH;I KIXIqI IIII III J#J +J7J@J QJ^JnJJJ/J.J1J0K9K LKYKwK~KK KK6L>L CLPLlLLLLLL LsLXM^MqM M!MMMOM?,NlNOeOW"PzPPPPbPQ QQ-QLQQQ QrQ8R>R OR[R`RR RR RR?RSS S,S=S YSeS{SSSSSSSSS S ST TT T)T .T8TAT HTVT]T!cTITTT TTTTTzUU UU UUU UUVV V VV&V ,V8V?VTV\VbViV pV{VWWW$W +W6W=WBW VW`WiWpWxWWW W W W5WWWWX/X5XXXXX YY Y 'Y~2YYYYYYY YZ Z Z *Z4Z[ H[V[^[ f[q[[[[[[[[ [ [[ \!\ 2\C>\ \ \\\\\\\$\\$]9]O]n]~]] ]]]#]4]$^4^I^=N^(^^^ ^^^^___!_*_&C_j___._w_^` c`o`8x`3`^`Da,ca,a%aaabbb+bHb abmb sb0bbbbbbb c %c2cNc`crc c$cMcd d0d9dOdXdpdjd ddeee e(e/e6e GeTe je vee ee ee ee e f7fJfQflf~ffff f fIf:g!gghh/h2AhYthVh%i i]i j&j+j(:j cj pj }jj jj jjjjjjjQk0!l Rl,_l l lll3mmmnUnxTo6op ppqq q&q/q FqPq Wqcqiq pq{qqqq)q!q#qr.rIr7*s3bs2s)s"s(t@?tLtOt/u:Mu&uu%u&u:v;Rvv0w*Iw-tw<wpw@Px;x2x y(!y*Jy4uy5yDyZ%zz/zzz;z.5{d{#{2{<{|3|C|V|]|-Q}5}}}}}}} }}~~3~G~[~_~f~ n~ x~~~~ ~$~~~E&Al    !2A]x π؀D-SrƁ$ CNV ^ h s }#΂ +FX]Fe$6ӄX clrv)zG#<bMK,()"Ryu;G25+h%+*K*<v;rhbeˋ'1)Y02&,+; g?@ȍ #.%Rx)ێ@:.Ni Ï͏֏  2bd~dH_]!2 >?4t&ݕ8&= dKn Ȗ ؖ7 E&X  eO4g5RҘ!%3G*{{"&6 = J Wa h u  њ#3:J^w  '  #B![o}WE[3q41#* 3>RY ` jt|-  ž Ϟܞ $! 7D Wbiq y PnWZ ɠϠנ ޠ! ,9 BPWv ȡѡء ߡ' ?IO$U+zUE BL ]j*}- ֣ '* =J Q ^iT Ԥ+ 5< KX hr y  ! ҥߥ %5 <I\ l ͦݦ !!!4V_ r  LT[!nƨ٨ K JWj }!Aҩ7LڪVh6E! g q ~ H l  *ޭ 3 O\ cqʮЮ ׮ * 0 :G NX `k pz !9ǯ #*h2  ư Ӱ $) 1=D JV]rz z#* 1<CH^els{ / $z+$˳ҳ   { ״  !+ 2=\r!õ˵ҵ ۵   #.M`h o} ĶԶ ?3 FPW]ejn-$Է$7J] lx* ߸3'3[ bov ƹ!ֹ *#BjfѺ ֺ3*^J$Ż0">Zajq ̼ Ҽ=߼  *4 ;H[ z Ƚ<7>NUkr \  #*18 IV l x  ƿѿ  '=Dcv 8' *'MCDr I6T(    ) 6CLUem- *: e,r [yzEb>]  $(.7 NX _kq x yzK'B +L"x7) ,6c 0$5`Z' %'2'Z*'* 'KBs$ ?$Z!!*! )6 FP/9N +29A HRk $9N4 -CY l yKEB    )1MfyG*9O$]* 8^2I2-!<s^'0+0 >(]"8*?*ajDI$[!0*!?X-w-#7 MW0v2: FM T^e 

            Good News!

            An administrator has just approved your account: {{username}} on {{site_name}}.

            Hello,

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            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!

            To activate your user, please click the following link:
            {{{activation_link}}}

            After you activate, you will receive another email with your credentials.

            * only available in the %1$sHobbyist and Pro versions%2$s. Serial Number: Your serial number is about to expire, please %1$s Renew Your License%2$s. Your serial number is expired, please %1$s Renew Your License%2$s."Admin Approval" Activated:"Admin Approval" Feature:"Email Confirmation" Activated:"Email Confirmation" Landing Page:"Email" - users can Log In only with Email."Username and Email" - users can Log In with both Username and Email."Username" - users can Log In only with Username.%1$s %2$d%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s%1$s of %2$s%s couldn't be deleted%s pending« Prev«« First(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(no title)** only available in the %1$sPro version%2$s.. Extra Field Types are available in Hobbyist or PRO versions....Choose
            Title (Type)
            Title
            Type
            Meta Name
            Required
            Note: changing the form title also changes the shortcode!ERROR: The password must have a minimum strength of %sERROR: The password must have the minimum length of %s charactersERROR: Your account has to be confirmed by an administrator before you can log in.Profile Builder A new account has been created for you on {{site_name}}A new subscriber has (been) registered!A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be editedAIMAbout YourselfActivateActivation KeyActivation LinkActivation UrlActiveAdd EntryAdd FieldAdd NewAdd New Field to the ListAdd UserAdd new Edit-profile FormAdd new Registration FormAdd new User ListingAdd-On has been activatedAdd-On has been deactivated.Add-On is ActiveAdd-OnsAdmin ApprovalAdmin Approval (*)Admin Bar SettingsAdmin Email CustomizerAfghanistanAfter Profile Update...After Registration...After login redirect URL (optional):Agree To Terms CheckboxAimAland IslandsAlbaniaAlgeriaAll UsersAll users have been successfully deletedAll-userlisting TemplateAllow Users to Log in With:Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.Allow users to log in with their email or username when accessing your site.Allowed Image ExtensionsAllowed Upload ExtensionsAllowed time to display any success messages (in seconds)American SamoaAn administrator has just approved your account on %1$s (%2$s).An administrator has just unapproved your account on %1$s (%2$s).AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApplyApproveApprovedArgentinaArmeniaArubaAs an administrator you cannot change your role.AustraliaAustriaAutomatically Log InAvailable TagsAvatarAvatar SizeAvatar Size (All-userlisting)Avatar Size (Single-userlisting)Avatar UploadAvatar or GravatarAzerbaijanBackBahamasBahrainBangladeshBarbadosBasic InformationBefore you can access your account %1s, an administrator has to approve it. You will be notified via email.Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.Before you can access your account, an administrator needs to approve it. You will be notified via email.BelarusBelgiumBelizeBeninBermudaBhutanBiographical InfoBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBoth fields are empty.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaBulk ActionsBurkina FasoBurundiCambodiaCameroonCanadaCancelCape VerdeCayman IslandsCentral African RepublicChadCheck your e-mail for the confirmation link.CheckboxChileChinaChoose one of the supported field typesChoose one of the supported fields you manage install manually.Country SelectCroatiaCubaCuracaoCustom RedirectsCustomize Your Forms The Way You Want (*)CyprusCzech RepublicDate-formatDatepickerDeactivateDefaultDefault ContentDefault OptionDefault Option(s)Default RegistrationDefault Registration & Registration with Email ConfirmationDefault RoleDefault Sorting CriteriaDefault Sorting OrderDefault ValueDefault value of the fieldDefault value of the textareaDeleteDelete allDelete all itemsDelete this itemDemocratic Republic of the CongoDenmarkDescriptionDisabledDisplay MessagesDisplay NameDisplay name asDisplay name publicly asDjiboutiDo you want toDo you want to bulk approve the selected users?Do you want to bulk delete the selected users?Do you want to bulk unapprove the selected users?DominicaDominican RepublicDownload NowDownloading and installing...E-mailERRORERROR:East TimorEasy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings.EcuadorEditEdit ProfileEdit the Edit-profile FormsEdit the Registration FormsEdit the User ListingEdit this itemEdit-profile FormEdit-profile FormsEgyptEl SalvadorEliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.EmailEmail ConfirmationEmail CustomizerEmail SubjectEmail notification resent to userEnable extra featuresEnable your modulesEnter a (detailed) description of the option for end users to read
            OptionalEnter a comma separated list of labels
            Visible for the userEnter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophesEnter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100Enter the minimum characters the password should have. Leave empty for no minimum limitEquatorial GuineaEritreaEstoniaEthiopiaEverything you will need to manage your users is probably already available using the Pro Modules.Example:Excerpt ViewExisting PagesExtra FeaturesExtra FunctionsExtra Profile Fields are available in Hobbyist or PRO versionsExtra shortcode parametersFalkland IslandsFaroe IslandsFeatures that give you more control over your users, increased security and help you fight user registration spam.FieldField PropertiesField TitleFijiFind out more about PRO ModulesFinlandFirst NameFirst/LastnameFirstnameFor Modern User InteractionFor security reasons, you must pass the remote ip to reCAPTCHA!Form ShortcodeFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesFrom (name)From (reply-to email)GabonGambiaGeneral SettingsGeneric UploadsGeorgiaGermanyGet New PasswordGet started with extra fieldsGhanaGibraltarGo Back LinkGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald IslandsHere you can activate / deactivate available modules for Profile Builder.HideHondurasHong KongHungaryIDIcelandIf you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.InactiveIndiaIndonesiaInput / Hidden InputInstall NowInstallation completeInvalid activation key!Invalid key!Invalid username.IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanKeep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.KenyaKiribatiKosovoKuwaitKyrgyzstanLabelsLaosLast »»Last NameLastnameLatviaLebanonLesothoLiberiaLibyaLiechtensteinList ViewLithuaniaLoad Profile Builder's own CSS file in the front-end:Log outLog out »Log out of this accountLog out of this account.LoginLogin 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 )Login with Email or UsernameLogoutLost your passwordLost your password?LuxembourgMacaoMacedoniaMadagascarMake sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.MalawiMalaysiaMaldivesMaliMaltaManage Default and Extra FieldsManage FieldsMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMediumMeta-nameMexicoMicronesiaMinimum Password Length and Strength MeterMinimum Password Length:Minimum Password Strength:Minimum length of %d charactersMinimum required Profile Builder version:ModulesMoldovaMonacoMongoliaMontenegroMontserratMore InfoMore Info UrlMore...MoroccoMozambiqueMultiple Edit-profile FormsMultiple Registration FormsMyanmarNameName/DescriptionNamibiaNauruNepalNetherlandsNew CaledoniaNew Edit-profile FormNew Registration FormNew User ListingNew ZealandNew subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            Next » NicaraguaNicknameNigerNigeriaNiueNoNo Edit-profile Form foundNo Edit-profile Forms found in trashNo Registration Form foundNo Registration Forms found in trashNo User Listing foundNo User Listing found in trashNo items found.No results found!Norfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNot compatible with Profile BuilderNot compatible with your version of Profile Builder.Number of PostsNumber of Users/PageOmanOnly administrators can see this field on edit profile forms.Only an administrator can add new users.OptionsOverwrite ExistingPaginationPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayPasswordPassword Lost and Found.Password Recovery page URL (optional):Password Reset EmailPassword Reset Success EmailPassword Reset from "%1$s"Password Successfully Reset for %1$s on "%2$s"Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.PeruPhilippinesPitcairnPlease check that you entered the correct email address.Please check that you entered the correct username.Please choose a different field type as this one already exists in your form (must be unique) Please enter a valid username.Please enter a value for the required field Please enter your username or email address.Please select at least one user role Please try a different one!PolandPortugalPostsPowerful Modules (**)Profile Builder Login WidgetProfile Builder RegisterPuerto RicoQatarRadio ButtonsRandom (very slow on large databases > 10K user)Recover PasswordRedirectRegisterRegister VersionRegister Your VersionRegister page URL (optional):RegisteredRegistrationRegistration & Edit ProfileRegistration DateRegistration FormRegistration FormsRegistration with Admin ApprovalRegistration with Email ConfirmationRemember though, that the field-value combination must exist in the database.RemoveRepeat PasswordReply ToRepublic of the CongoRequiredResend Activation EmailReset PasswordRestrict the userlisting to these selected roles only
            If not specified, defaults to all existing rolesRetry InstallReunionRoleRoles to DisplayRomaniaRow CountRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaveSave ChangesSave SettingsSave the user role order from the user roles checkboxesSearchSearch Users by All FieldsSearch all FieldsSearch the Edit-profile FormsSearch the Registration FormsSearch the User ListingSelectSelect AllSelect FileSelect which user roles to show to the user ( drag and drop to re-order )Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name
            Use this at your own riskSend these credentials via email.SenegalSerbiaSet RoleSet the avatar size on the all-userlisting onlySet the avatar size on the single-userlisting onlySet the default sorting criteria
            This can temporarily be changed for each new sessionSet the default sorting order
            This can temporarily be changed for each new sessionSet up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.SeychellesShare a little biographical information to fill out your profile. This may be shown publicly.ShortcodeShowShow all datesShow/Hide the Admin Bar on the Front-EndSierra LeoneSign-up DateSingaporeSingle-userlisting TemplateSint MaartenSite KeySite NameSite UrlSlovakiaSloveniaSolomon IslandsSomaliaSomeone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$sSomething went wrong, we could not connect to the server. Please try again later.Sorry, but you don't have permission to do that!South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.comSpecify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.comSpecify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)Specify the option which should be selected by defaultSpecify 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.Sri LankaStatusStrength indicatorStrongSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaTerms of AgreementTextareaThailandThat field is already added in this form That meta-name is already in use That username is already activated!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!The account %1s has been successfully created!The best way to add front-end registration, edit profile and login forms.The email address entered wasn't found in the database!The email you entered is not a valid email address.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical The entered passwords don't match!The entered row number is not numerical The entered value for the Datepicker is not a valid date-format The following option did not coincide with the ones in the options list: %s The following option(s) did not coincide with the ones in the options list: %s The password must have a minimum strength of %sThe password must have the minimum length of %s charactersThe password you entered is incorrect.The passwords do not matchThe selected user couldn't be deletedThe selected users have been activatedThe selected users have had their activation emails resentThe serial number couldn't be validated because it expired!The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!The serial number entered couldn't be validated!The serial number is about to expire soon!The serial number was successfully validated!The shortcode will be available after you publish this form.The site key from Google, www.google.com/recaptchaThe userlisting will only be visible only to the logged in usersThe userlisting will only be visible to the following rolesThe username entered wasn't found in the database!The usernames cannot be changed.There was an error in the submitted formThere was an error performing that action!There was an error while trying to activate the userThere was an error while trying to activate the user.There was an error while trying to send the activation link to %1$s!These settings are also replicated in the "User Email Customizer" settings-page upon save.This email is already in use.This email is already reserved to be used soon.This field is requiredThis form is empty.This login widget lets you add a login form in the sidebar.This message is only visible by administratorsThis username already exists.This username is already activated!This username is already reserved to be used soon.This username is invalid because it uses illegal characters.This username is now active!Timezone SelectTitle of the fieldTitle: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$sTo use reCAPTCHA you must get an API key fromTo use reCAPTCHA you must get an API public key from:TogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluType your password again. Type your password.U.S. Virgin IslandsURLUgandaUkraineUnapproveUnapprovedUnapproved User NotificationUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUpdateUpgrade Profile BuilderUpload UruguayUse these shortcodes on the pages you want the forms to be displayed:Use this shortcode on the page you want the form to be displayed:User Approval NotificationUser Email CustomizerUser IdUser ListingUser MetaUser NicenameUser RoleUser RolesUser Roles OrderUser not foundUser successfully approved!User successfully deleted!User successfully unapproved!User to edit:User-RoleUser-statusUserlisting SettingsUsernameUsername and EmailUsername or E-mailUsername or EmailUsernames cannot be changed.Users can register themselves or you can manually create users here.Users cannot currently register themselves, but you can manually create users here.Users successfully approved!Users successfully deleted!Users successfully unapproved!Users with Unconfirmed Email AddressUzbekistanVanuatuVaticanVenezuelaVersion %sVery WeakVery weakVietnamView all extra shortcode parametersView the Edit-profile FormView the Registration FormView the User ListingVisibilityVisible only to logged in users?Visible to following RolesWallis and FutunaWeakWebsiteWelcome to %1$s!


            Your username is:%2$s and password:%3$sWestern SaharaWhether the field is required or notWhether to automatically log in the newly registered user or not
            Only works on single-sites without "Admin Approval" and "Email Confirmation" features activated
            WARNING: Caching the registration form will make automatic login not workWhether to redirect the user to a specific page or notWith Extra Profile Fields you can create the exact registration form your project needs.Yahoo IMYemenYesYimYou are currently logged in as %1$s. %2$sYou are currently logged in as %1s. You don't need another account. %2sYou are currently logged in as %s. You can add the information for the %s after you add a entryYou can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.You can find it in the Profile Builder menu.You can find the default file here: %1$sYou cannot register this user roleYou decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.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.You don't have any pagination settings on this userlisting!You either don't have permission for that action or there was an error!You have successfully reset your password to: %1$sYou must be logged in to edit your profile.You must enter a valid email address.You must enter a value for the date-format You must enter a value for the row number You must select a field You need to activate the Userlisting feature from within the "Modules" tab!You need to specify the title of the form before creating itYou will receive a link to create a new password via email.You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$sYour account has to be confirmed by an administrator before you can use the "Password Recovery" feature.Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.Your account on %1$s has been approved!Your account on %1$s has been unapproved!Your account on {{site_name}} has been approved!Your account on {{site_name}} has been unapproved!Your email was successfully confirmed.Your password has been successfully changed!Your profile has been successfully updated!Your selected password at signupYour session has expired! Please refresh the page and try againYour session has expired! Please refresh the page and try again.ZambiaZimbabwe[%1$s] Activate %2$s[%1$s] Your new account information[{{site_name}}] Activate {{username}}approve this user?approvedconfirm this email yourself?delete this user from the _signups table?delete this user?displays all users except the ones you specified the user_id fordisplays only the users that you specified the user_id fordisplays users having a certain meta-value within a certain (extra) meta-fieldemailherereCAPTCHArequiredresend the activation link?showunapprove this user?unapprovedusernameusername or emailPO-Revision-Date: 2015-09-29 11:53:21+0000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; X-Generator: GlotPress/0.1 Project-Id-Version: Profile Builder

            好消息 !

            管理员已经批准您的帐号: {{username}} 在 {{site_name}}.

            您好,

            抱歉,管理员未批准您的帐号: {{username}} 在 {{site_name}}.

            欢迎来到 {{site_name}}!

            您的用户名是:{{username}} 密码是:{{password}}

            欢迎来到 {{site_name}}!

            您的用户名:{{username}} 密码:{{password}}

            在您访问您的帐号前,需要管理审批。您将会收邮件通知。

            新用户在 {{site_name}}.

            用户名:{{username}}

            邮箱:{{user_email}}

            新用户在 {{site_name}}.

            用户名:{{username}}

            邮箱:{{user_email}}

            管理审核功能已被激活, 请记住,您需要批准这个用户,他才能登陆!

            激活您的帐户,请点击下面连接:
            {{{activation_link}}}

            在您激活完成后,将会收到另外一封凭据邮件。

            * 仅获得在 %1$sHobbyist 与专业版本 %2$s.序号:您的序列号即将到期, 请 %1$s 更新您的许可 %2$s.您的序列号已经过期, 请 %1$s 更新您的许可 %2$s. "管理员审批" 激活:"管理员审批" 功能 :"邮件确认" 激活:"邮件确认" 登陆页面:"邮箱" - 用户只能用邮箱登陆"用户名和邮箱" - 同时以用户名和邮箱登陆"用户名" - 只能以用户名登陆%1$s %2$d%1$s 请求通过密码重置功能修改密码。
            他的密码是:%2$s%1$s 的 %2$s%s 不能删除%s 等待中« 上一页«« 首页(例如: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(没有标题)** 仅激活在 %1$s专业版本 %2$s.网站秘钥请选择
            标题 (类型)
            标题
            类型
            Meta Name
            必须
            注意: 改变表单标题也将改变简码!错误: 密码必须满足强度 %s错误: 密码必须有 %s 个字符错误: 您的帐号需要管理员批准后才能登陆使用。Profile Builder 一个新的帐号在您的 {{site_name}} 上建立一个新的用户已经(被)注册!一个独特的、为特定的字段自动生成ID
            如果需要可以使用过滤器调用这个目标
            不能编辑AIM关于您自己激活激活密钥激活链接激活URL激活增加条目添加字段新增加添加新字段到列表所有用户添加新的编辑资料表单增加新的注册表单增加新的用户列表插件已激活插件已关闭插件已激活插件管理员审批管理员审批 (*)管理员工具栏设置管理员邮件定制Afghanistan档案更新后…注册后…登录后的重定向URL(可选):同意使用条款AimAland IslandsAlbaniaAlgeria所有用户所有的用户已成功删除所有用户列表模板允许用户使用什么登陆:允许不同的用户角色去编辑他们的具体信息。设置多个编辑表单一不同的作用字段。当用户访问您的网站时,允许用户登录他们的用户名和电子邮件。允许的图像扩展允许的上传扩展允许用时间去显示成功信息提示(秒)American Samoa管理员已经批准您在 %1$s (%2$s) 的帐号。管理员已拒绝您在 %1$s (%2$s) 的帐号。AndorraAngolaAnguillaAntarcticaAntigua and Barbuda应用允许已允许ArgentinaArmeniaAruba作为管理员,您无法改变您的角色AustraliaAustria自动登录可用标签头像头像大小头像大小(所有用户列表)头像大小(单用户列表)头像上传头像或 GravatarAzerbaijan返回BahamasBahrainBangladeshBarbados基本信息访问您的帐号 %1s 前,需要管理员审批通过。您将收到邮件。访问您的帐号 %1s 前,您需要确认您的邮箱地址。请检查您的邮箱并点击激活连接。需要管理员审核通过才能访问您的帐户。您将收到一封电子邮件。BelarusBelgiumBelizeBeninBermudaBhutan个人说明BoliviaBonaire, Saint Eustatius and SabaBosnia and Herzegovina字段均空BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgaria批量动作Burkina FasoBurundiCambodiaCameroonCanada取消Cape VerdeCayman IslandsCentral African RepublicChad检查你的邮件中的确认链接。复选框ChileChina请选择其中一个支持的类型选择一个支持字段去管理 install manually.国家选择CroatiaCubaCuracao自定义重定向自定义表格用你想要的方式(*)CyprusCzech Republic日期格式日期选择器未启用默认默认内容默认选项默认选项(s)默认注册默认注册与邮件确认注册默认角色默认分类标准默认排列顺序默认值该字段的默认值文本默认值删除全部删除删除所有条目删除此项目Democratic Republic of the CongoDenmark描述关闭显示消息显示名称显示名称为公开显示为Djibouti您想要你想批量允许所选用户?你想批量删除所选用户?你想批量拒绝所选用户?DominicaDominican Republic现在下载正在下载并安装...电子邮件错误错误:East Timor易于编辑模列表您的网站用户,以及创建单用户页面模板。基于简码,提供了许多选项来定制您的列表。Ecuador编辑编辑个人资料编辑的编辑个人资料表单编缉注册表单编辑用户列表编辑此项目编辑资料表单编辑资料表单EgyptEl Salvador消除弱密码最小密码长度,并强制执行设定的密码强度。电子邮件电子邮件确认电子邮件定制邮件主题电子邮件通知重发给用户启用额外功能启用你的模块输入(详细)的最终用户阅读选项的描述
            可选输入一个逗号分隔标签
            对用户可见的因为用户无法看到您所输入的字符,您可以输入任意字符并以逗号“," 隔开,但这些字符不能包括特殊符号输入一个供用户查看的协议内容。
            连接可以使用 HTML 语法,例如:<a href="custom_url">custom_text</a>输入 '头像' 大小数值 ( 20 与 200 之间 )
            如果没指定,默认是100输入密码必须最少字符。留空为没有限制Equatorial GuineaEritreaEstoniaEthiopia使用一切你需要的工具,用于管理你的用户的模块。例子:摘录查看现有页面额外字段额外功能额外个人资料字段需要激活 Hobbyist 或者 PRO 版本才可用额外简码参数Falkland IslandsFaroe Islands特性,让您对您的用户更多的控制,增强安全性,帮助用户注册与限制垃圾邮件。字段字段属性字段标题Fiji了解关于专业版模块的更多内容Finland名字名字/姓氏名子新颖的用户交互。安全原因,您必须通过远程IP到reCAPTCHA!表单简码FranceFrench GuianaFrench PolynesiaFrench Southern Territories来自(名子)来自(回复邮件)GabonGambia常规设置常规上传GeorgiaGermany获取新密码开始使用额外字段GhanaGibraltar返回链接GreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald Islands在这里你可以激活/停用 Profile Builder 模块。隐藏HondurasHong KongHungary编号Iceland如果您注册这个版本的 Profile Builder ,您将收到有关升级,补丁,和技术支持。关闭IndiaIndonesia输入/隐藏输入立即安装安装完成无效的激活密钥!无效密钥!不正确的用户名IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstan让你的用户离开 WordPress 仪表盘,重定向到他们的前端页面,登录注册一切都只需几个点击。KenyaKiribatiKosovoKuwaitKyrgyzstan标签Laos最后 »»姓氏姓氏LatviaLebanonLesothoLiberiaLibyaLiechtenstein列表查看Lithuania在前端载入 Profile Builder 的CSS文件:退出登出»退出这个帐户退出这个帐号。登陆登录允许使用电子邮件。这字段不会显示在前端! ( 你可以改变这些设置,在 "%s" 选项卡中 )通过电子邮件或用户名登录退出忘记您的密码忘记密码?LuxembourgMacaoMacedoniaMadagascar确保用户注册是使用真实的电子邮件。注册用户将收到一个通知,确认他们的电子邮件地址。MalawiMalaysiaMaldivesMaliMalta管理默认与额外字段管理字段Marshall IslandsMartiniqueMauritaniaMauritiusMayotte中Meta-nameMexicoMicronesia最小密码长度和强度表最小密码长度:最小密码强度:最少%d个字符所需Profile Builder最低版本模块MoldovaMonacoMongoliaMontenegroMontserrat更多信息更多信息网址更多...MoroccoMozambique多个编辑个人资料形式多个注册形式Myanmar姓名名称/描述NamibiaNauruNepalNetherlandsNew Caledonia新的编辑资料表单新注册表单新的用户列表New Zealand新用户在 %1$s.

            用户名:%2$s
            邮箱:%3$s
            下一页 » Nicaragua昵称NigerNigeriaNiue不没有编辑个人资料表单在回收站中没有编辑个人资料表单没有找到注册表单在回收站没有找到注册表单没有找到用户列表没有在回收站找到用户列表找不到项目。无任何结果!Norfolk IslandNorth KoreaNorthern Mariana IslandsNorway与Profile Builder不兼容于您现版本的Profile Builder不兼容帖子数用户/页面数Oman只有管理员才能看到编辑信息的表格项只有管理员可以添加新用户。选项覆盖现有分页PakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguay新密码密码遗失。密码恢复页URL(可选):密码重设邮件密码重设成功确认邮件从 "%1$s" 密码重置密码成功重置 %1$s 在 "%2$s"个性化邮件发送到你的用户或管理员。注册,电子邮件确认,管理员批准/拒绝。PeruPhilippinesPitcairn请检查您输入(正确)电子邮件地址。请检查您已输入正确的用户名。请选择一个不同的字段类型,这个已经存在你的表格(必须是唯一的) 请输入有效的用户名请为这个字段输入所需的值请输入您的用户名或电子邮件地址。请至少选择一个用户角色 请尝试一个不同的!PolandPortugal帖子强大的模块(**)Profile Builder 登陆小工具Profile Builder 注册Puerto RicoQatar单选按钮随机 (在大于 10K 的用户数据库中将会很慢 )恢复密码重定向注册注册版本注册您的版本注册页面URL(可选):已注册注册注册与编辑资料注册日期注册表单注册表单注册需管理员审批电子邮件确认注册记住,该字段值的组合必须存在于数据库中。移除重复新密码回复Republic of the Congo必须发送激活邮件重置密码限制用户列表中的特定角色
            如果没有指定,默认为全部现有的角色重新安装Reunion角色角色显示:Romania行数RussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi Arabia保存保存更改保存设置从角色选择框来保存角色排序搜索在所有字段中搜索用户搜索所有字段搜索编辑资料表单搜索注册表单搜索用户列表选择选择所有选择文件请选择要对用户显示哪个角色(可拖拽排序)选择“是”将增加字段到列表中,但将覆盖在数据库中具有相同名称的任何其他领域的 meta-name
            使用需自己承担风险通过电子邮件发送这些凭据。SenegalSerbia设置角色设置在所有用户列表的头像大小设置在单用户列表的头像大小设置默认的排序标准
            这可以暂时被每一个新的会话更改设置默认排列顺序
            这可以在每个新会话时被改变设置多个注册表单为某些用户角色不同的字段。获取来自不同类型的用户不同的信息。Seychelles分享关于您的一些信息。可能会被公开。简码显示显示所有日期显示/隐藏管理员工具栏在前端Sierra Leone注册日期Singapore单用户列表模板Sint Maarten网站秘钥网站名称网站地址SlovakiaSloveniaSolomon IslandsSomalia有人要求以下帐号密码进行重置: %1$s
            如果不是您自己的操作,请忽略。
            需要重置您的密码的话,请点击 :%2$s现在无法连接服务器,请稍候重试抱歉,您没有相应的操作权限!South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpain指定用户注册页面地址将被重定向
            使用下列格式: http://www.mysite.com指定页面用于用户一旦更新他们的资料使用这个表单转向
            使用这种格式: http://www.mysite.com指定你想限制的文件后缀
            例如: .ext1,.ext2,.ext3
            如果不指定,默认为Wordpress所允许的全部文件后缀指定你想限制的文件后缀
            例如: .ext1,.ext2,.ext3
            如果不指定,默认为: .jpg,.jpeg,.gif,.png (.*)指定 'Textarea' 字段的行数
            如果没有指定,缺省为5指定选项默认是否勾选
            如果有多个值的选项,使用“,”分开(逗号)指定选项的默认选择值指定供用户确认邮件的转向页面。此页面可不同于注册页面(s)并且可随时改变。如果没有指定,将显示给用户一个简单确认页。Sri Lanka状态强度指标强SudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzania协议条款文本框Thailand这个字段已经加入这个 meta-name 已在使用 用户名已经被激活!管理员审批”的功能是注册时激活,所以请记住,你必须批准该用户,他/她才能进行登录!帐号 %1s 创建成功!最好的前端注册、编辑个人资料与登陆表单的实现方式。邮箱地址无法在数据库中找到您输入的电子邮件不是一个有效的电子邮件地址。输入的头像大小不是20与200之间 输入的头像大小不是数值 输入的密码不匹配!输入的行数不是数值 日期选择器输入的值不是有效的日期格式 下列选项不符合的选项清单: %s 下列选项(s)不符合的选项清单: %s 密码至少满足强度 %s密码至少应包括%s个字符你输入的密码不正确。密码不匹配所选用户不能删除所选的用户已被激活所选用户已经重新发送激活电子邮件序号无法验证,因已过期!序号无法验证,因为连接超时。这可能是由于服务器维护。请稍后再试!序号无法验证!序列号即将到期序号成功验证!简码将在您发布表单后可用。网站秘钥用户列表只有登录用户可见的用户列表只允许以下角色可见输入的用户名不存在数据库中!用户名不可更改。在递交表单时出错执行操作时出错!试图激活用户时出现一个错误尝试激活用户时出现一个错误。发送激活链接时出现错误 %1$s!这些设置也复制在"用户邮件定制" 设置页中保存。电子邮件已被使用。此邮箱地址已被保留使用。必填选项这个表格是空的该登录控件是允许您添加在侧边栏的登录表单。只有管理员可以查看该信息用户名已经存在。这个用户名已经被激活!这个用户名已经被保留。用户名无效,因为含有非法字符这个用户名现在被激活!时区选择字段的标题标题:为使用户可以通过Profile Builder注册,您首先需要开启“用户注册”。去到%1$s网络设置%2$s,常规,确保”任何人都可以注册“这个选项已被勾选。%3$s忽略%4$s使用 reCAPTCHA 你必须获得一个API密钥使用reCAPTCHA,你必须得到一个API公开密钥:TogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvalu再输入一遍新密码。重复新密码U.S. Virgin Islands网址UgandaUkraine拒绝已拒绝被拒绝的用户通知United Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying Islands更新个人资料更新Profile Builder上传Uruguay使用这些简码在页面中你想要的形式显示:使用这个简码在页面上,将会获得您想要的表单显示效果:用户批准通知用户邮件定制用户名称用户列表User Meta用户昵称用户角色用户角色用户角色排序找不到用户用户成功批准!用户成功删除!用户成功拒绝!要编辑的用户用户角色用户状态用户列表设置姓名用户名和邮箱用户或邮箱地址用户名或邮件 用户名不可更改。用户可以注册自己注册,或您可以在这里手动创建用户。用户无法自己注册,但你可以在这里手动创建用户。用户成功批准!用户成功删除!用户成功拒绝!没经确认邮箱的用户UzbekistanVanuatuVaticanVenezuela版本 %s非常弱非常弱Vietnam查看其他的断码参数查看编辑资料表单查看注册表单查看用户列表可见只有登录用户可见的?以下角色可见Wallis and Futuna弱站点欢迎来到 %1$s!


            您的用户名是:%2$s 密码是:%3$sWestern Sahara该字段是否必须是否记录用户新注册
            只使用于单网站,并且没有开启 "管理员审批" 与 "邮箱确认" 功能
            警告:缓存注册表单会让自动登录不正常是否将用户重定向到特定页额外个人资料字段,根据您的项目需求你可以创建精确的登注册表单。雅虎通讯Yemen是Yim您当前登录为 %1$s. %2$s您当前登陆为 %1s。您不需要其它帐号。 %2s您现在的登陆名为 %s您可以添加信息到 %s您可以找到还没确认邮箱地址的列表 %1$s用户 > 所有用户 > 邮箱确认%2$s.您可以找到用户在 %1$s用户 > 所有用户 > 管理员审批%2$s.你可以在 Profile Builder 菜单中找到它。你可以在这里找到默认的文件: %1$s您不可以注册这个用户组你决定在你的网站用户是谁。从WordPress 界面通过电子邮件或批准的多个用户获得通知。您控制您的用户在网站上的角色。获得游戏通知或者一次性批量审批多用户。启用管理审批功能需要升级到 %1$sHobbyist 或者 专业版本%2$s。您不需在用户列表中设置分页你没有权限操作,或出现一个错误!您已经成功地将密码更改成:%1$s您必须在登陆状态下编辑个人资料。请输入有效的邮箱地址您必须输入一个日期格式的值 您必须输入一个值的行数 你必须选择一个字段 您需要激活用户列表功能在 "模块" 选项卡!你需要在创建前指定表单的标题你将收到一封创建一个新密码连接的电子邮件。您很快将会自动重定向。如果你看到这个页面超过 %1$d 秒,请点击 %2$s.%3$s您的帐号在管理员确认前可以使用 "密码找回" 功能.您的帐户需被管理员审批后才可使用 "密码重置" 功能。您在 %1$s 的帐号成功通过!您在 %1$s 的帐号被拒绝!您在 {{site_name}} 的帐号已经被通过!您在 {{site_name}} 的帐号被拒绝!您的电子邮件已确认。您已经成功地更改密码!个人资料已更新!您在注册时输入的密码您的会话已过期!请刷新页面重试您的会话已过期!请刷新页面重试ZambiaZimbabwe[%1$s] 激活 %2$s[%1$s] 您的新帐户信息[{{site_name}}] 激活 {{username}}允许这个用户?已批准确认自己的电子邮件?在 the _signups 表单中 删除这个用户?删除这个用户?向除了指定用户ID之外的所有用户显示仅向指定用户ID显示显示用户在某一(额外)元字段(meta-field)邮件这里reCAPTCHA必须重新发送激活链接?显示拒绝这个用户?已拒绝用户名用户名或邮件translation/profile-builder-pt_BR.po000066600000657561152141651170013565 0ustar00# Translation of Profile Builder in Portuguese (Brazil) # This file is distributed under the same license as the Profile Builder package. msgid "" msgstr "" "PO-Revision-Date: 2017-05-23 06:42:14+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: GlotPress/0.1\n" "Project-Id-Version: Profile Builder\n" #: profile-builder-2.0/admin/general-settings.php:154 msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s." msgstr "" #: profile-builder-2.0/admin/general-settings.php:146 msgid "\"Roles Editor\" Activated:" msgstr "" #: profile-builder-2.0/features/roles-editor/roles-editor.php:300 msgid "M j, Y @ G:i" msgstr "" #: profile-builder-2.0/front-end/recover.php:117 msgid "Please enter your email address." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yy" msgstr "Especifique o formato da data quando usando o Datepicker
            Opções válidas: mm/dd/aa, mm/aa/dd, dd/aa/mm, dd/mm/aa, aa/dd/mm, aa/mm/dd, mm-dd-aa, aa-mm-dd, D, dd M aa, D d M a, DD, dd-Mm-a, D, d M aa, @
            Se não especificar, o padrão será mm/dd/aa." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244 msgid "Individual redirects defined in shortcodes; redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects." msgstr "Redirecionamentos individuais definidos nos códigos; redirect_priority=\"top\" . Parâmetros podem ser adicionados em qualquer código, então o código de redirecionamento terá prioridade sobre todos os outros direcionamentos." #: profile-builder-2.0/admin/manage-fields.php:1217 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." msgstr "Se você está interessado em mostrar diferentes campo na tela de registro e editar formulários de perfil, por favor use o Registros Múltiplos e Módulos e Formulários de Edição de Perfil." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "Configurações de Redirecionamento dos Registros Múltiplos e Editor de Perfil." #: profile-builder-2.0/admin/register-version.php:251 msgid "

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            " msgstr "

            sua licença do Construtor de Perfil expira em %5$s.
            Por favor %1$sRenove sua licença%2$s para continuar a ter acesso a downloads, atualizações automáticas e suporte. %3$sRenove agora e ganhe 40% de desconto %4$s %6$sDescartar%7$s

            " #: profile-builder-2.0/admin/register-version.php:246 msgid "

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            " msgstr "

            Sua licença do Construtor de Perfilexpirou.
            Por favor %1$sRenove sua Licença%2$s para continuar tendo acesso a downloads, atualizações automáticas e suporte. %3$sRenove agora e ganhe 40% de desconto %4$s %5$sDescartar%6$s

            " #: profile-builder-2.0/front-end/recover.php:159 msgid "You are already logged in. You can change your password on the edit profile form." msgstr "Você já está conectado. Você pode mudar sua senha no formulário Editar Perfil." #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "A URL de seu site ficará assim:
            " #: profile-builder-2.0/features/functions.php:909 msgid "

            You can visit your site at " msgstr "

            Você pode visitar seu site como" #: profile-builder-2.0/features/functions.php:896 msgid "

            Also, you will be able to visit your site at " msgstr "

            Também, você estará apto a visitar seu site como" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138 msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network." msgstr "Privativo: Eu gostaria que meu site aparecesse nos motores de busca, e em listagens públicas acerca desta rede de serviço." #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "Título do Site" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "Slug da URL do Site" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "Sim, eu gostaria de criar um novo site" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36 #: profile-builder-2.0/modules/user-listing/userlisting.php:118 msgid "Blog URL" msgstr "URL do Blog" #: profile-builder-2.0/admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "Detalhes do Blog - apenas aparece na página de registro!" #: profile-builder-2.0/admin/manage-fields.php:222 msgid "Blog Details" msgstr "Detalhes do Blog" #: profile-builder-2.0/admin/pms-cross-promotion.php:239 msgid "Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "Permita que seus usuários tenham contas pagas com o Construtor de Perfil. %1$sSaiba como>%2$s %3$sDescartar%4$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579 msgid "Welcome to %1$s!


            Your username is:%2$s" msgstr "Bem vindo a(o) %1$s!


            Seu nome de usuário é:%2$s" #: profile-builder-2.0/modules/user-listing/userlisting.php:1320 msgid "View Map" msgstr "Visão do Mapa" #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267 #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367 #: pb-add-on-woocommerce/index.php:493 msgid "Address line 2" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "Billing Fields" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Billing Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Save the billing fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Billing Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Save the billing fields names" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Shipping Fields" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Shipping Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Save the shipping fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Shipping Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Save the shipping fields names" msgstr "" #: pb-add-on-woocommerce/index.php:305 msgid "Field Name" msgstr "" #: pb-add-on-woocommerce/index.php:369 msgid "Click to edit " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:368 msgid "is not a valid phone number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:377 msgid "is not a number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:382 msgid "must be a multiplier of " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:387 msgid "must be a greater than or equal to " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:392 msgid "must be less than or equal to " msgstr "" #: profile-builder-2.0/admin/add-ons.php:103 msgid "Available in Hobbyist and Pro Versions" msgstr "Disponível nas versões Hobbyist e PRO" #: profile-builder-2.0/admin/add-ons.php:105 msgid "Available in All Versions" msgstr "Disponíveis em todas as Versões" #: profile-builder-2.0/admin/add-ons.php:148 msgid "Learn More" msgstr "Leia Mais" #: profile-builder-2.0/admin/basic-info.php:99 msgid "Timepicker" msgstr "Marcador de horas" #: profile-builder-2.0/admin/basic-info.php:100 msgid "Colorpicker" msgstr "Selecionador de cores" #: profile-builder-2.0/admin/basic-info.php:103 msgid "Currency Select" msgstr "Selecione moeda" #: profile-builder-2.0/admin/basic-info.php:109 msgid "Number" msgstr "Número" #: profile-builder-2.0/admin/basic-info.php:114 msgid "Validation" msgstr "Validação" #: profile-builder-2.0/admin/basic-info.php:115 msgid "Map" msgstr "Mapa" #: profile-builder-2.0/admin/basic-info.php:116 msgid "HTML" msgstr "HTML" #: profile-builder-2.0/admin/basic-info.php:162 #: profile-builder-2.0/modules/modules.php:117 msgid "Repeater Fields" msgstr "Repetidor de Fields" #: profile-builder-2.0/admin/basic-info.php:163 msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role." msgstr "Defina um grupo de repetição de campos no registro e formulários de edição de perfil. Limite o número de grupos de repetição para cada função de usuário." #: profile-builder-2.0/admin/general-settings.php:59 msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "Isto funciona apenas com formulários frontais. Recomendamos para direcionar para o padrão WP de registro para um Construtor de Perfil usando o módulo de \"Redirecionamentos Personalizados\"" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count" msgstr "Use esta conjunção com funções WordPress para mostrar o valor na página de sua escolha
            Auto completada mas editável em alguns casos (em quais casos devem ser únicos)
            Mudando isto pode levar muito tempo no caso de uma conta de usuário muito grande" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Show Currency Symbol" msgstr "Mostrar Símbolo de Moeda" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Whether the currency symbol should be displayed after the currency name in the select option." msgstr "Se o símbolo monetário deve aparecer após o nome de moeda na opção de selecionar." #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Show Post Type" msgstr "Mostrar Tipo de Postagem" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Posts from what post type will be displayed in the select." msgstr "Postagens deste tipo de postagem serão mostradas na seleção." #: profile-builder-2.0/admin/manage-fields.php:145 msgid "Allowable Values" msgstr "Valores Permitidos" #: profile-builder-2.0/admin/manage-fields.php:145 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." msgstr "Digite uma vírgula separando a lista de valores possíveis. Uma vez que registrar o valor provido pelo usuário e ele não conferir com estes valores, o usuário não será registrado." #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Error Message" msgstr "Mensagem de Erro" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Set a custom error message that will be displayed to the user." msgstr "Defina uma mensagem de erro personalizada que será mostrada para o usuário." #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Time Format" msgstr "Formato do tempo" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Specify the time format." msgstr "Especifique o formato do tempo." #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Google Maps API Key" msgstr "Chave de API do Google Maps" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Enter your Google Maps API key ( Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used." msgstr "Digite sua Chave de API do Google Maps ( Obtenha sua chave API ).Se mais de um campo de mapa é adicionar em um formulário a chave API do primeiro mapa mostrado será usada." #: profile-builder-2.0/admin/manage-fields.php:149 msgid "Default Latitude" msgstr "Latitude Padrão" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "The latitude at which the map should be displayed when no pins are attached." msgstr "A latitude a qual o mapa deverá ser mostrado quando não tiver pinos anexados." #: profile-builder-2.0/admin/manage-fields.php:150 msgid "Default Longitude" msgstr "Longitude Padrão" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "The longitude at which the map should be displayed when no pins are attached." msgstr "A longitude a qual o mapa deverá ser mostrado quando não tiver pinos anexados." #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Default Zoom Level" msgstr "Level do Zoom Padrão" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "Adicione um número de 0 a 19. Quando maior o número maior o zoom." #: profile-builder-2.0/admin/manage-fields.php:152 msgid "Map Height" msgstr "Altura do Mapa" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "The height of the map." msgstr "A altura do mapa." #: profile-builder-2.0/admin/manage-fields.php:154 msgid "HTML Content" msgstr "Conteúdo HTML" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "Add your HTML (or text) content" msgstr "Adicione seu conteúdo em HTML (ou texto)" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Phone Format" msgstr "Formato do Telefone" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces." msgstr "Você pode usar: # para números, parênteses ( ), Sinais de + ou -, ponto . e espaços." #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Eg. (###) ###-####" msgstr "Exemplo: (###) ####-####" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Empty field won't check for correct phone number." msgstr "Campos vazios não verificam número de telefone correto." #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Heading Tag" msgstr "Tag de Título" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Change heading field size on front-end forms" msgstr "Mude o tamanho do campo título no formulário frontal" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min Number Value" msgstr "Valor mínimo do número" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "Mínimo permitido do valor do número (0 zero para permitir apenas números positivos)" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Leave it empty for no min value" msgstr "Deixe isso vazio para nenhum valor mínimo." #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max Number Value" msgstr "Valor máximo do número" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "Máximo permitido para valor do número (0 zero para permitir apenas números negativos)" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Leave it empty for no max value" msgstr "Deixe vazio para nenhum valor máximo" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Number Step Value" msgstr "Valor do Número de Pessos" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal" msgstr "Passo de valor 1 para permitir integrantes, 0.1 para permitir integrantes com 1 decimal" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "Para permitir decimais múltiplos use por exemplo 0.01 (para duas casas decimais) e pronto " #: profile-builder-2.0/admin/manage-fields.php:159 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)" msgstr "Você pode usar valores substitutos para especificar o número legal de intervalos (ex. valor substituto 2 irá permitir apenas -4, -2, 0, 2 e etc.)" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Leave it empty for no restriction" msgstr "Deixe vazio para nenhuma restrição" #: profile-builder-2.0/admin/manage-fields.php:564 msgid "Albania Lek" msgstr "Albania Lek" #: profile-builder-2.0/admin/manage-fields.php:565 msgid "Afghanistan Afghani" msgstr "Afghanistan Afghani" #: profile-builder-2.0/admin/manage-fields.php:566 msgid "Argentina Peso" msgstr "Argentina Peso" #: profile-builder-2.0/admin/manage-fields.php:567 msgid "Aruba Guilder" msgstr "Aruba Guilder" #: profile-builder-2.0/admin/manage-fields.php:568 msgid "Australia Dollar" msgstr "Australia Dollar" #: profile-builder-2.0/admin/manage-fields.php:569 msgid "Azerbaijan New Manat" msgstr "Azerbaijan New Manat" #: profile-builder-2.0/admin/manage-fields.php:570 msgid "Bahamas Dollar" msgstr "Bahamas Dollar" #: profile-builder-2.0/admin/manage-fields.php:571 msgid "Barbados Dollar" msgstr "Barbados Dollar" #: profile-builder-2.0/admin/manage-fields.php:572 msgid "Bangladeshi taka" msgstr "Bangladeshi taka" #: profile-builder-2.0/admin/manage-fields.php:573 msgid "Belarus Ruble" msgstr "Belarus Ruble" #: profile-builder-2.0/admin/manage-fields.php:574 msgid "Belize Dollar" msgstr "Belize Dollar" #: profile-builder-2.0/admin/manage-fields.php:575 msgid "Bermuda Dollar" msgstr "Bermuda Dollar" #: profile-builder-2.0/admin/manage-fields.php:576 msgid "Bolivia Boliviano" msgstr "Bolivia Boliviano" #: profile-builder-2.0/admin/manage-fields.php:577 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "Bosnia and Herzegovina Convertible Marka" #: profile-builder-2.0/admin/manage-fields.php:578 msgid "Botswana Pula" msgstr "Botswana Pula" #: profile-builder-2.0/admin/manage-fields.php:579 msgid "Bulgaria Lev" msgstr "Bulgaria Lev" #: profile-builder-2.0/admin/manage-fields.php:580 msgid "Brazil Real" msgstr "Real Brasileiro" #: profile-builder-2.0/admin/manage-fields.php:581 msgid "Brunei Darussalam Dollar" msgstr "Brunei Darussalam Dollar" #: profile-builder-2.0/admin/manage-fields.php:582 msgid "Cambodia Riel" msgstr "Cambodia Riel" #: profile-builder-2.0/admin/manage-fields.php:583 msgid "Canada Dollar" msgstr "Canada Dollar" #: profile-builder-2.0/admin/manage-fields.php:584 msgid "Cayman Islands Dollar" msgstr "Cayman Islands Dollar" #: profile-builder-2.0/admin/manage-fields.php:585 msgid "Chile Peso" msgstr "Chile Peso" #: profile-builder-2.0/admin/manage-fields.php:586 msgid "China Yuan Renminbi" msgstr "China Yuan Renminbi" #: profile-builder-2.0/admin/manage-fields.php:587 msgid "Colombia Peso" msgstr "Colombia Peso" #: profile-builder-2.0/admin/manage-fields.php:588 msgid "Costa Rica Colon" msgstr "Costa Rica Colon" #: profile-builder-2.0/admin/manage-fields.php:589 msgid "Croatia Kuna" msgstr "Croatia Kuna" #: profile-builder-2.0/admin/manage-fields.php:590 msgid "Cuba Peso" msgstr "Cuba Peso" #: profile-builder-2.0/admin/manage-fields.php:591 msgid "Czech Republic Koruna" msgstr "Czech Republic Koruna" #: profile-builder-2.0/admin/manage-fields.php:592 msgid "Denmark Krone" msgstr "Denmark Krone" #: profile-builder-2.0/admin/manage-fields.php:593 msgid "Dominican Republic Peso" msgstr "Dominican Republic Peso" #: profile-builder-2.0/admin/manage-fields.php:594 msgid "East Caribbean Dollar" msgstr "East Caribbean Dollar" #: profile-builder-2.0/admin/manage-fields.php:595 msgid "Egypt Pound" msgstr "Egypt Pound" #: profile-builder-2.0/admin/manage-fields.php:596 msgid "El Salvador Colon" msgstr "El Salvador Colon" #: profile-builder-2.0/admin/manage-fields.php:597 msgid "Estonia Kroon" msgstr "Estonia Kroon" #: profile-builder-2.0/admin/manage-fields.php:598 msgid "Euro" msgstr "Euro" #: profile-builder-2.0/admin/manage-fields.php:599 msgid "Falkland Islands (Malvinas) Pound" msgstr "Falkland Islands (Malvinas) Pound" #: profile-builder-2.0/admin/manage-fields.php:600 msgid "Fiji Dollar" msgstr "Fiji Dollar" #: profile-builder-2.0/admin/manage-fields.php:601 msgid "Ghana Cedis" msgstr "Ghana Cedis" #: profile-builder-2.0/admin/manage-fields.php:602 msgid "Gibraltar Pound" msgstr "Gibraltar Pound" #: profile-builder-2.0/admin/manage-fields.php:603 msgid "Guatemala Quetzal" msgstr "Guatemala Quetzal" #: profile-builder-2.0/admin/manage-fields.php:604 msgid "Guernsey Pound" msgstr "Guernsey Pound" #: profile-builder-2.0/admin/manage-fields.php:605 msgid "Guyana Dollar" msgstr "Guyana Dollar" #: profile-builder-2.0/admin/manage-fields.php:606 msgid "Honduras Lempira" msgstr "Honduras Lempira" #: profile-builder-2.0/admin/manage-fields.php:607 msgid "Hong Kong Dollar" msgstr "Hong Kong Dollar" #: profile-builder-2.0/admin/manage-fields.php:608 msgid "Hungary Forint" msgstr "Hungary Forint" #: profile-builder-2.0/admin/manage-fields.php:609 msgid "Iceland Krona" msgstr "Iceland Krona" #: profile-builder-2.0/admin/manage-fields.php:610 msgid "India Rupee" msgstr "India Rupee" #: profile-builder-2.0/admin/manage-fields.php:611 msgid "Indonesia Rupiah" msgstr "Indonesia Rupiah" #: profile-builder-2.0/admin/manage-fields.php:612 msgid "Iran Rial" msgstr "Iran Rial" #: profile-builder-2.0/admin/manage-fields.php:613 msgid "Isle of Man Pound" msgstr "Isle of Man Pound" #: profile-builder-2.0/admin/manage-fields.php:614 msgid "Israel Shekel" msgstr "Israel Shekel" #: profile-builder-2.0/admin/manage-fields.php:615 msgid "Jamaica Dollar" msgstr "Jamaica Dollar" #: profile-builder-2.0/admin/manage-fields.php:616 msgid "Japan Yen" msgstr "Japan Yen" #: profile-builder-2.0/admin/manage-fields.php:617 msgid "Jersey Pound" msgstr "Jersey Pound" #: profile-builder-2.0/admin/manage-fields.php:618 msgid "Kazakhstan Tenge" msgstr "Kazakhstan Tenge" #: profile-builder-2.0/admin/manage-fields.php:619 msgid "Korea (North) Won" msgstr "Korea (North) Won" #: profile-builder-2.0/admin/manage-fields.php:620 msgid "Korea (South) Won" msgstr "Korea (South) Won" #: profile-builder-2.0/admin/manage-fields.php:621 msgid "Kyrgyzstan Som" msgstr "Kyrgyzstan Som" #: profile-builder-2.0/admin/manage-fields.php:622 msgid "Laos Kip" msgstr "Laos Kip" #: profile-builder-2.0/admin/manage-fields.php:623 msgid "Latvia Lat" msgstr "Latvia Lat" #: profile-builder-2.0/admin/manage-fields.php:624 msgid "Lebanon Pound" msgstr "Lebanon Pound" #: profile-builder-2.0/admin/manage-fields.php:625 msgid "Liberia Dollar" msgstr "Liberia Dollar" #: profile-builder-2.0/admin/manage-fields.php:626 msgid "Lithuania Litas" msgstr "Lithuania Litas" #: profile-builder-2.0/admin/manage-fields.php:627 msgid "Macedonia Denar" msgstr "Macedonia Denar" #: profile-builder-2.0/admin/manage-fields.php:628 msgid "Malaysia Ringgit" msgstr "Malaysia Ringgit" #: profile-builder-2.0/admin/manage-fields.php:629 msgid "Mauritius Rupee" msgstr "Mauritius Rupee" #: profile-builder-2.0/admin/manage-fields.php:630 msgid "Mexico Peso" msgstr "Mexico Peso" #: profile-builder-2.0/admin/manage-fields.php:631 msgid "Mongolia Tughrik" msgstr "Mongolia Tughrik" #: profile-builder-2.0/admin/manage-fields.php:632 msgid "Mozambique Metical" msgstr "Mozambique Metical" #: profile-builder-2.0/admin/manage-fields.php:633 msgid "Namibia Dollar" msgstr "Namibia Dollar" #: profile-builder-2.0/admin/manage-fields.php:634 msgid "Nepal Rupee" msgstr "Nepal Rupee" #: profile-builder-2.0/admin/manage-fields.php:635 msgid "Netherlands Antilles Guilder" msgstr "Netherlands Antilles Guilder" #: profile-builder-2.0/admin/manage-fields.php:636 msgid "New Zealand Dollar" msgstr "New Zealand Dollar" #: profile-builder-2.0/admin/manage-fields.php:637 msgid "Nicaragua Cordoba" msgstr "Nicaragua Cordoba" #: profile-builder-2.0/admin/manage-fields.php:638 msgid "Nigeria Naira" msgstr "Nigeria Naira" #: profile-builder-2.0/admin/manage-fields.php:639 msgid "Norway Krone" msgstr "Norway Krone" #: profile-builder-2.0/admin/manage-fields.php:640 msgid "Oman Rial" msgstr "Oman Rial" #: profile-builder-2.0/admin/manage-fields.php:641 msgid "Pakistan Rupee" msgstr "Pakistan Rupee" #: profile-builder-2.0/admin/manage-fields.php:642 msgid "Panama Balboa" msgstr "Panama Balboa" #: profile-builder-2.0/admin/manage-fields.php:643 msgid "Paraguay Guarani" msgstr "Paraguay Guarani" #: profile-builder-2.0/admin/manage-fields.php:644 msgid "Peru Nuevo Sol" msgstr "Peru Nuevo Sol" #: profile-builder-2.0/admin/manage-fields.php:645 msgid "Philippines Peso" msgstr "Philippines Peso" #: profile-builder-2.0/admin/manage-fields.php:646 msgid "Poland Zloty" msgstr "Poland Zloty" #: profile-builder-2.0/admin/manage-fields.php:647 msgid "Qatar Riyal" msgstr "Qatar Riyal" #: profile-builder-2.0/admin/manage-fields.php:648 msgid "Romania New Leu" msgstr "Romania New Leu" #: profile-builder-2.0/admin/manage-fields.php:649 msgid "Russia Ruble" msgstr "Russia Ruble" #: profile-builder-2.0/admin/manage-fields.php:650 msgid "Saint Helena Pound" msgstr "Saint Helena Pound" #: profile-builder-2.0/admin/manage-fields.php:651 msgid "Saudi Arabia Riyal" msgstr "Saudi Arabia Riyal" #: profile-builder-2.0/admin/manage-fields.php:652 msgid "Serbia Dinar" msgstr "Serbia Dinar" #: profile-builder-2.0/admin/manage-fields.php:653 msgid "Seychelles Rupee" msgstr "Seychelles Rupee" #: profile-builder-2.0/admin/manage-fields.php:654 msgid "Singapore Dollar" msgstr "Singapore Dollar" #: profile-builder-2.0/admin/manage-fields.php:655 msgid "Solomon Islands Dollar" msgstr "Solomon Islands Dollar" #: profile-builder-2.0/admin/manage-fields.php:656 msgid "Somalia Shilling" msgstr "Somalia Shilling" #: profile-builder-2.0/admin/manage-fields.php:657 msgid "South Africa Rand" msgstr "South Africa Rand" #: profile-builder-2.0/admin/manage-fields.php:658 msgid "Sri Lanka Rupee" msgstr "Sri Lanka Rupee" #: profile-builder-2.0/admin/manage-fields.php:659 msgid "Sweden Krona" msgstr "Sweden Krona" #: profile-builder-2.0/admin/manage-fields.php:660 msgid "Switzerland Franc" msgstr "Switzerland Franc" #: profile-builder-2.0/admin/manage-fields.php:661 msgid "Suriname Dollar" msgstr "Suriname Dollar" #: profile-builder-2.0/admin/manage-fields.php:662 msgid "Syria Pound" msgstr "Syria Pound" #: profile-builder-2.0/admin/manage-fields.php:663 msgid "Taiwan New Dollar" msgstr "Taiwan New Dollar" #: profile-builder-2.0/admin/manage-fields.php:664 msgid "Thailand Baht" msgstr "Thailand Baht" #: profile-builder-2.0/admin/manage-fields.php:665 msgid "Trinidad and Tobago Dollar" msgstr "Trinidad and Tobago Dollar" #: profile-builder-2.0/admin/manage-fields.php:666 #: profile-builder-2.0/admin/manage-fields.php:667 msgid "Turkey Lira" msgstr "Turkey Lira" #: profile-builder-2.0/admin/manage-fields.php:668 msgid "Tuvalu Dollar" msgstr "Tuvalu Dollar" #: profile-builder-2.0/admin/manage-fields.php:669 msgid "Ukraine Hryvna" msgstr "Ukraine Hryvna" #: profile-builder-2.0/admin/manage-fields.php:670 msgid "United Kingdom Pound" msgstr "United Kingdom Pound" #: profile-builder-2.0/admin/manage-fields.php:671 msgid "Uganda Shilling" msgstr "Uganda Shilling" #: profile-builder-2.0/admin/manage-fields.php:672 msgid "US Dollar" msgstr "US Dollar" #: profile-builder-2.0/admin/manage-fields.php:673 msgid "Uruguay Peso" msgstr "Uruguay Peso" #: profile-builder-2.0/admin/manage-fields.php:674 msgid "Uzbekistan Som" msgstr "Uzbekistan Som" #: profile-builder-2.0/admin/manage-fields.php:675 msgid "Venezuela Bolivar" msgstr "Venezuela Bolivar" #: profile-builder-2.0/admin/manage-fields.php:676 msgid "Viet Nam Dong" msgstr "Viet Nam Dong" #: profile-builder-2.0/admin/manage-fields.php:677 msgid "Yemen Rial" msgstr "Yemen Rial" #: profile-builder-2.0/admin/manage-fields.php:678 msgid "Zimbabwe Dollar" msgstr "Zimbabwe Dollar" #: profile-builder-2.0/admin/manage-fields.php:1097 msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n" msgstr "O nome pode apenas conter letras minúsculas, números, _ , - e sem espaços.\n" #: profile-builder-2.0/admin/manage-fields.php:1314 msgid "Search Location" msgstr "Pesquisar Localização" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754 msgid "You are not allowed to do this." msgstr "Você não está permitido a fazer isso." #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460 msgid "Search Users" msgstr "Pesquisar Usuários" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78 msgid "Conditional Logic" msgstr "Lógica Condicional" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79 msgid "Conditional Rules" msgstr "Regras Condicionais" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448 msgid "This field has conditional logic enabled." msgstr "O Campo possui lógica condicional habilitada." #: profile-builder-2.0/features/functions.php:685 msgid "Incorrect phone number" msgstr "Número de Telefone Incorreto" #: profile-builder-2.0/front-end/class-formbuilder.php:124 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." msgstr "A função do usuário criado está definida para regra padrão. Apenas um administrador pode registrar um usuário com a função atribuída a este formulário." #: profile-builder-2.0/front-end/extra-fields/map/map.php:46 #: profile-builder-2.0/front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "Por favor adicione a chave do API do Google Maps para este campo." #: profile-builder-2.0/front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "Alguma coisa está errada. Por favor tente novamente." #: profile-builder-2.0/front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "Por favor digite apenas números" #: profile-builder-2.0/front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "Valor deve ser um múltiplo de %1$s" #: profile-builder-2.0/front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "Valor deve ser maior ou igual a %1$s" #: profile-builder-2.0/front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "Valor deve ser menor ou igual a %1$s" #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "Requerido formato do número de telefone:" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bolivia, __( Plurinational State of" msgstr "Estado Plurinacional da Bolivia" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bonaire, __( Sint Eustatius and Saba" msgstr "Bonaire, __( Sint Eustatius and Saba" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cabo Verde" msgstr "Cabo Verde" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cocos (Keeling) Islands" msgstr "Cocos (Keeling) Islands" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo" msgstr "Congo" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo, __( the Democratic Republic of the" msgstr "Congo, __( the Democratic Republic of the" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cote dIvoire" msgstr "Cote dIvoire" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Falkland Islands (Malvinas)" msgstr "Falkland Islands (Malvinas)" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Holy See (Vatican City State)" msgstr "Holy See (Vatican City State)" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iran, __( Islamic Republic of" msgstr "Iran, __( Islamic Republic of" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Democratic Peoples Republic of" msgstr "Korea, __( Democratic Peoples Republic of" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Republic of" msgstr "Korea, __( Republic of" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lao Peoples Democratic Republic" msgstr "Lao Peoples Democratic Republic" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macedonia, __( the former Yugoslav Republic of" msgstr "Macedonia, __( the former Yugoslav Republic of" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Micronesia, __( Federated States of" msgstr "Micronesia, __( Federated States of" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Moldova, __( Republic of" msgstr "Moldova, __( Republic of" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palestine, __( State of" msgstr "Palestine, __( State of" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Russian Federation" msgstr "Russian Federation" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Helena, __( Ascension and Tristan da Cunha" msgstr "Saint Helena, __( Ascension and Tristan da Cunha" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Martin (French part)" msgstr "Saint Martin (French part)" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sint Maarten (Dutch part)" msgstr "Sint Maarten (Dutch part)" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Syrian Arab Republic" msgstr "Syrian Arab Republic" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Taiwan, __( Province of China" msgstr "Taiwan, __( Province of China" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tanzania, __( United Republic of" msgstr "Tanzania, __( United Republic of" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Timor-Leste" msgstr "Timor-Leste" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Venezuela, __( Bolivarian Republic of" msgstr "Venezuela, __( Bolivarian Republic of" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Viet Nam" msgstr "Viet Nam" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( British" msgstr "Virgin Islands, __( British" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( U.S." msgstr "Virgin Islands, __( U.S." #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:186 msgid "User Fields Tags" msgstr "Tags dos campos de Usuário" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479 msgid "The users selected password at signup" msgstr "As senhas de usuários selecionados ao se inscrever" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278 msgid "[{{site_name}}] Notice of Email Change" msgstr "[{{site_name}}] Aviso de Alteração de E-mail" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289 msgid "Changed Email Address Notification" msgstr "Mudar notificação do Endereço de E-mail" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Limit" msgstr "Limite" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Enable limit to the number of fields to be generated by users in front end forms " msgstr "Habilitar limite para o número de campos a ser gerado por usuários nos formulários frontais" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "General Limit" msgstr "Limites Gerais" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "Limites padrões para este grupo repetidor.
            Deixe 0 para ilimitado." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "Limit reached message" msgstr "Limite de mensagens alcançado" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The maximum number of fields has been reached." msgstr "O número máximo de campos foi alcançado." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The popup message to display when the limit of repeater groups is reached." msgstr "A mensagem PopUp para mostrar quando o limite de grupos de repetição for alcançado." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Limit per Role" msgstr "Limite por função" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Leave 0 for unlimited." msgstr "Deixe 0 para ilimitado." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Repeated field group" msgstr "Grupo de repetição de campos" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Manage field or group of fields that will be repeatable." msgstr "Gerenciar campo ou grupo de campos que serão repetitivos." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259 msgid "Edit field group" msgstr "Editar campo grupos" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260 msgid "Repeatable fields saved!" msgstr "Campos repetitivos salvos!" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277 #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326 msgid "Please enter a unique field title.\n" msgstr "Por favor entre campo de título único.\n" #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267 msgid "Are you sure you want to delete this?" msgstr "Tem certeza que quer deletar isto?" #: profile-builder-2.0/modules/user-listing/userlisting.php:192 msgid "Sort Tags" msgstr "Tags sortidas" #: profile-builder-2.0/modules/user-listing/userlisting.php:201 #: profile-builder-2.0/modules/user-listing/userlisting.php:2308 msgid "Faceted Menus" msgstr "Menus Lapidados" #: profile-builder-2.0/modules/user-listing/userlisting.php:202 msgid "User Count" msgstr "Conta de Usuário" #: profile-builder-2.0/modules/user-listing/userlisting.php:1553 msgid "Show All" msgstr "Mostrar tudo" #: profile-builder-2.0/modules/user-listing/userlisting.php:1710 msgid "No options available" msgstr "Nenhuma opção disponível" #: profile-builder-2.0/modules/user-listing/userlisting.php:1861 msgid "Remove All Filters" msgstr "Remove todos os Filtros" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Label" msgstr "Rótulo" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Choose the facet name that appears on the frontend" msgstr "Escolha o nome que aparece na fronte" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Facet Type" msgstr "Tipo Lapidado" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Choose the facet menu type" msgstr "Escolha o tipo de menu lapidado" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Facet Meta" msgstr "Meta Faceta" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Choose the meta field for the facet menu" msgstr "Escolha o campo de dados para a face do menu" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Behaviour" msgstr "Comportamento" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Narrow the results" msgstr "Limitar os resultados" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Expand the results" msgstr "Expandir os resultados" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Choose how multiple selections affect the results" msgstr "Escolha como seções múltiplas afetam os resultados" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Visible choices" msgstr "Escolhas visíveis" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "Mostrar um link alternativo após muitas escolhas. Deixe vazio para todos" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Search Fields" msgstr "Buscar Campos" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Choose the fields in which the Search Field will look in" msgstr "Escolha os campos em quais os Campos de Busca procuração dados" #: profile-builder-2.0/modules/user-listing/userlisting.php:2330 msgid "Search Settings" msgstr "Configurações de Pesquisa" #: pb-add-on-woocommerce/billing-fields.php:8 #: pb-add-on-woocommerce/shipping-fields.php:8 msgid "Company Name" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:9 #: pb-add-on-woocommerce/shipping-fields.php:9 msgid "Address" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:5 #: pb-add-on-woocommerce/shipping-fields.php:5 msgid "Country" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:11 #: pb-add-on-woocommerce/shipping-fields.php:11 msgid "Town / City" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:12 #: pb-add-on-woocommerce/shipping-fields.php:12 msgid "State / County" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:13 #: pb-add-on-woocommerce/shipping-fields.php:13 msgid "Postcode / Zip" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:14 msgid "Email Address" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:15 msgid "Phone" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:278 msgid "Ship to a different address?" msgstr "" #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437 msgid "Billing Address" msgstr "" #: pb-add-on-woocommerce/index.php:169 msgid "Displays customer billing fields in front-end. " msgstr "" #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438 msgid "Shipping Address" msgstr "" #: pb-add-on-woocommerce/index.php:173 msgid "Displays customer shipping fields in front-end. " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Display on WooCommerce Checkout" msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Whether the field should be added to the WooCommerce checkout form or not" msgstr "" #: pb-add-on-woocommerce/index.php:541 msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:23 #: pb-add-on-woocommerce/woosync-page.php:70 msgid "WooCommerce Sync" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:76 msgid "Choose Register form to display on My Account page:" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:81 msgid "Default Register" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:103 msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce.
            This will also add the Profile Builder Login form to MyAccount page." msgstr "" #: pb-add-on-woocommerce/woosync-page.php:110 msgid "Choose Edit Profile form to display on My Account page:" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:115 msgid "Default Edit Profile" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:137 msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce." msgstr "" #: profile-builder-2.0/admin/add-ons.php:190 msgid "Recommended Plugins" msgstr "Plugins Recomendados" #: profile-builder-2.0/admin/add-ons.php:219 #: profile-builder-2.0/admin/pms-cross-promotion.php:102 msgid "Free" msgstr "Grátis" #: profile-builder-2.0/admin/add-ons.php:221 msgid "Accept user payments, create subscription plans and restrict content on your membership site." msgstr "Aceite paramento de usuários, crie planos de assinatura e restrinja comentários em seu site de adesões." #: profile-builder-2.0/admin/add-ons.php:222 #: profile-builder-2.0/admin/pms-cross-promotion.php:105 msgid "More Details" msgstr "Mais detalhes" #: profile-builder-2.0/admin/add-ons.php:240 #: profile-builder-2.0/admin/pms-cross-promotion.php:88 #: profile-builder-2.0/admin/pms-cross-promotion.php:123 #: profile-builder-2.0/admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "Plugin está inativo" #: profile-builder-2.0/admin/add-ons.php:242 #: profile-builder-2.0/admin/pms-cross-promotion.php:87 #: profile-builder-2.0/admin/pms-cross-promotion.php:125 #: profile-builder-2.0/admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "Plugin está ativo" #: profile-builder-2.0/admin/add-ons.php:256 #: profile-builder-2.0/admin/pms-cross-promotion.php:146 msgid "Could not install plugin. Retry or install manually." msgstr "Não foi possível instalar o plugin. Repita ou instale manualmente." #: profile-builder-2.0/admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "Contas pagas" #: profile-builder-2.0/admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "Paid Member Subscriptions -Um Plugin gratuito WordPress" #: profile-builder-2.0/admin/pms-cross-promotion.php:37 msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." msgstr "Com o novo Campo de Assinaturas no Construtor de Perfil, seus formulários de registro serão permitidos a seus usuários se inscrever em contas pagas." #: profile-builder-2.0/admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "Assinaturas Pagas e Gratuitas" #: profile-builder-2.0/admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "Conteúdo Restrito" #: profile-builder-2.0/admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "Gerenciamento de Membros" #: profile-builder-2.0/admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "Modelos de E-mail" #: profile-builder-2.0/admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "Gerenciamento de Conta" #: profile-builder-2.0/admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "Gerenciamento de Assinatura" #: profile-builder-2.0/admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "Gerenciamento de Pagamento" #: profile-builder-2.0/admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "Plugin está ativo" #: profile-builder-2.0/admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "Plugin foi ativado" #: profile-builder-2.0/admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "Plugin foi desativado." #: profile-builder-2.0/admin/pms-cross-promotion.php:104 msgid "Accept user payments, create subscription plans and restrict content on your website." msgstr "Aceite pagamentos, crie planos de assinatura e restrinja conteúdo em seu site." #: profile-builder-2.0/admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "Configuração rápida passo a passo" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401 msgid "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login." msgstr "Para ativar seu usuário, por favor clique no seguinte link:

            %s%s%s

            Após sua ativação você irá receber ainda *outro e-mail* com seu login." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45 msgid "After Login" msgstr "Após Conectar" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46 msgid "After Logout" msgstr "Após Desconectar" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47 msgid "After Registration" msgstr "Após registrar" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48 msgid "After Edit Profile" msgstr "Após Editar Perfil" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Successful Email Confirmation" msgstr "Após a Confirmação de E-mail com Sucesso" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Successful Password Reset" msgstr "Após o Reset de senha realizado com Sucesso" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "Painel de Controle (redirecione usuários para acessar o painel de controle)" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55 msgid "User ID" msgstr "ID de Usuário" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61 msgid "User ID or Username" msgstr "Nome ou ID de Usuário" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "User ID / Username" msgstr "ID de Usuário / Nome de Usuário" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "Please select and enter the ID or username of your user." msgstr "Por favor selecione e digite o ID ou nome de usuário de seu usuário." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131 msgid "Redirect Type" msgstr "Tipo de Direcionamento" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Redirect URL" msgstr "URL de Direcionamento" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" msgstr "Pode conter as seguintes tags dinâmicas:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241 msgid "Individual User Redirects" msgstr "Redirecionamento individual de Usuários" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84 msgid "... Choose" msgstr "... Escolha" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 msgid "Select a user role." msgstr "Selecione uma função de usuário." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242 msgid "User Role based Redirects" msgstr "Direcionamento baseado em funções de usuário" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243 msgid "Global Redirects" msgstr "Direcionamentos Globais" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133 msgid "Login ( wp_login.php )" msgstr "Conectar ( wp_login.php )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134 msgid "Register ( wp-login.php?action=register )" msgstr "Registro ( wp-login.php?action=register )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "Esqueceu a Senha ( wp-login.php?action=lostpassword )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "Autor do Arquivo ( http://sitename.com/author/admin )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145 msgid "Redirect Default WordPress Forms and Pages" msgstr "Redirecionamento Padrão de Formulários e Páginas WordPress" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157 msgid "How does this work?" msgstr "Como isto funciona?" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "
            ID de usuário/Nome de Usuário
            Redirecionar
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 msgid "
            User Role
            Redirect
            URL
            " msgstr "
            Função de Usuário
            Redirecionar
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "
            Redirect
            URL
            " msgstr "
            Redirecionar
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236 msgid "These redirects happen after a successful action, like registration or after a successful login." msgstr "Estes redirecionamentos acontecem após uma ação realizada com sucesso, como registro ou login." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238 msgid "Which redirect happens depends on the following priority:" msgstr "Qual direcionamento acontece depende da seguindo prioridade :" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247 msgid "Redirect Default WordPress forms and pages" msgstr "Páginas e Formulários padrão de redirecionamento do WordPress" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248 msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder." msgstr "Com estes você pode direcionar vários formulários e páginas WordPress para páginas criadas com o construtor de perfil." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250 msgid "Available tags for dynamic URLs" msgstr "Tags disponíveis para URL's dinâmicas" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251 msgid "You use the following tags in your URLs to redirect users to various pages." msgstr "Você usa as seguintes tags em seus URL's para direcionar usuários para várias páginas." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253 msgid "generates a url of the current website homepage." msgstr "gerar uma URL da página inicial atual de seu site." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254 msgid "in WordPress the site url can be different then the home url" msgstr "no WordPress a URL do site pode ser diferente do url da home" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255 msgid "the ID of the user" msgstr "A ID do Usuário" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256 msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." msgstr "A versão Limpa da URL do nome de usuário, o nome gentil do usuário pode ser usada com segurança em URL's desde que não contenha espaços e caracteres especiais." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257 msgid "the URL of the previously visited page" msgstr "a URL da página visitada anteriormente" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352 msgid "You can't add duplicate redirects!" msgstr "Você não pode adicionar direcionamentos duplicados!" #: profile-builder-2.0/admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "Mostrar nome publicamente como - apenas aparece na página de Edição de Perfil!" #: profile-builder-2.0/admin/basic-info.php:37 msgid "Friction-less login using %s shortcode or a widget." msgstr "Conectando usando código sem atrito %s ou um widget." #: profile-builder-2.0/admin/basic-info.php:41 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "Formulários de registro bonitos e completamente personalizáveis usando o código %s." #: profile-builder-2.0/admin/basic-info.php:45 msgid "Straight forward edit profile forms using %s shortcode." msgstr "Edite diretamente os formulários de perfil usando o código %s." #: profile-builder-2.0/admin/basic-info.php:58 msgid "Allow users to recover their password in the front-end using the %s." msgstr "Permitir usuários a recuperar suas senhas na tela frontal usando o %s." #: profile-builder-2.0/admin/basic-info.php:140 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." msgstr "Para criar uma página contendo os usuários registrados para este site/blog atual, insira o seguinte código em uma página de sua escola: %s." #: profile-builder-2.0/admin/general-settings.php:115 msgid "\"Admin Approval\" on User Role:" msgstr "\"Aprovação do Administrador\" na função do usuário:" #: profile-builder-2.0/admin/general-settings.php:134 msgid "Select on what user roles to activate Admin Approval." msgstr "Selecione quais funções de usuário para ativar a Aprovação de Administrador." #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Display on PB forms" msgstr "Mostrar em Formulários PB" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Login" msgstr "Login PB" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Register" msgstr "Registro PB" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Recover Password" msgstr "Recuperar Senha PB" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "Selecione qual formulário do Construtor de Perfil a mostrar reCAPTCHA" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Display on default WP forms" msgstr "Mostrar em formulários padrão WP" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Login" msgstr "Login WP Padrão" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Register" msgstr "Registro WP Padrão" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Recover Password" msgstr "Padrão WP de Recuperação de Senha" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "Selecione qual formulário padrão WP será mostrado o reCAPTCHA" #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default option of the field" msgstr "Opção Padrão do campo" #: profile-builder-2.0/admin/manage-fields.php:282 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Afghanistan" msgstr "Afghanistan" #: profile-builder-2.0/admin/manage-fields.php:283 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aland Islands" msgstr "Aland Islands" #: profile-builder-2.0/admin/manage-fields.php:284 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Albania" msgstr "Albania" #: profile-builder-2.0/admin/manage-fields.php:285 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Algeria" msgstr "Algeria" #: profile-builder-2.0/admin/manage-fields.php:286 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "American Samoa" msgstr "American Samoa" #: profile-builder-2.0/admin/manage-fields.php:287 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Andorra" msgstr "Andorra" #: profile-builder-2.0/admin/manage-fields.php:288 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Angola" msgstr "Angola" #: profile-builder-2.0/admin/manage-fields.php:289 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Anguilla" msgstr "Anguilla" #: profile-builder-2.0/admin/manage-fields.php:290 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antarctica" msgstr "Antarctica" #: profile-builder-2.0/admin/manage-fields.php:291 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" #: profile-builder-2.0/admin/manage-fields.php:292 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Argentina" msgstr "Argentina" #: profile-builder-2.0/admin/manage-fields.php:293 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Armenia" msgstr "Armenia" #: profile-builder-2.0/admin/manage-fields.php:294 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aruba" msgstr "Aruba" #: profile-builder-2.0/admin/manage-fields.php:295 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Australia" msgstr "Australia" #: profile-builder-2.0/admin/manage-fields.php:296 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Austria" msgstr "Austria" #: profile-builder-2.0/admin/manage-fields.php:297 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Azerbaijan" msgstr "Azerbaijan" #: profile-builder-2.0/admin/manage-fields.php:298 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahamas" msgstr "Bahamas" #: profile-builder-2.0/admin/manage-fields.php:299 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahrain" msgstr "Bahrain" #: profile-builder-2.0/admin/manage-fields.php:300 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bangladesh" msgstr "Bangladesh" #: profile-builder-2.0/admin/manage-fields.php:301 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Barbados" msgstr "Barbados" #: profile-builder-2.0/admin/manage-fields.php:302 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belarus" msgstr "Belarus" #: profile-builder-2.0/admin/manage-fields.php:303 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belgium" msgstr "Belgium" #: profile-builder-2.0/admin/manage-fields.php:304 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belize" msgstr "Belize" #: profile-builder-2.0/admin/manage-fields.php:305 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Benin" msgstr "Benin" #: profile-builder-2.0/admin/manage-fields.php:306 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bermuda" msgstr "Bermuda" #: profile-builder-2.0/admin/manage-fields.php:307 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bhutan" msgstr "Bhutan" #: profile-builder-2.0/admin/manage-fields.php:308 msgid "Bolivia" msgstr "Bolivia" #: profile-builder-2.0/admin/manage-fields.php:309 msgid "Bonaire, Saint Eustatius and Saba" msgstr "Bonaire, Saint Eustatius and Saba" #: profile-builder-2.0/admin/manage-fields.php:310 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bosnia and Herzegovina" msgstr "Bosnia and Herzegovina" #: profile-builder-2.0/admin/manage-fields.php:311 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Botswana" msgstr "Botswana" #: profile-builder-2.0/admin/manage-fields.php:312 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bouvet Island" msgstr "Bouvet Island" #: profile-builder-2.0/admin/manage-fields.php:313 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brazil" msgstr "Brazil" #: profile-builder-2.0/admin/manage-fields.php:314 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: profile-builder-2.0/admin/manage-fields.php:315 msgid "British Virgin Islands" msgstr "British Virgin Islands" #: profile-builder-2.0/admin/manage-fields.php:316 msgid "Brunei" msgstr "Brunei" #: profile-builder-2.0/admin/manage-fields.php:317 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bulgaria" msgstr "Bulgaria" #: profile-builder-2.0/admin/manage-fields.php:318 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burkina Faso" msgstr "Burkina Faso" #: profile-builder-2.0/admin/manage-fields.php:319 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burundi" msgstr "Burundi" #: profile-builder-2.0/admin/manage-fields.php:320 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cambodia" msgstr "Cambodia" #: profile-builder-2.0/admin/manage-fields.php:321 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cameroon" msgstr "Cameroon" #: profile-builder-2.0/admin/manage-fields.php:322 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Canada" msgstr "Canada" #: profile-builder-2.0/admin/manage-fields.php:323 msgid "Cape Verde" msgstr "Cape Verde" #: profile-builder-2.0/admin/manage-fields.php:324 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cayman Islands" msgstr "Cayman Islands" #: profile-builder-2.0/admin/manage-fields.php:325 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Central African Republic" msgstr "Central African Republic" #: profile-builder-2.0/admin/manage-fields.php:326 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chad" msgstr "Chad" #: profile-builder-2.0/admin/manage-fields.php:327 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chile" msgstr "Chile" #: profile-builder-2.0/admin/manage-fields.php:328 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "China" msgstr "China" #: profile-builder-2.0/admin/manage-fields.php:329 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Christmas Island" msgstr "Christmas Island" #: profile-builder-2.0/admin/manage-fields.php:330 msgid "Cocos Islands" msgstr "Cocos Islands" #: profile-builder-2.0/admin/manage-fields.php:331 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Colombia" msgstr "Colombia" #: profile-builder-2.0/admin/manage-fields.php:332 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Comoros" msgstr "Comoros" #: profile-builder-2.0/admin/manage-fields.php:333 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cook Islands" msgstr "Cook Islands" #: profile-builder-2.0/admin/manage-fields.php:334 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Costa Rica" msgstr "Costa Rica" #: profile-builder-2.0/admin/manage-fields.php:335 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Croatia" msgstr "Croatia" #: profile-builder-2.0/admin/manage-fields.php:336 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cuba" msgstr "Cuba" #: profile-builder-2.0/admin/manage-fields.php:337 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Curacao" msgstr "Curacao" #: profile-builder-2.0/admin/manage-fields.php:338 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cyprus" msgstr "Cyprus" #: profile-builder-2.0/admin/manage-fields.php:339 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Czech Republic" msgstr "Czech Republic" #: profile-builder-2.0/admin/manage-fields.php:340 msgid "Democratic Republic of the Congo" msgstr "Democratic Republic of the Congo" #: profile-builder-2.0/admin/manage-fields.php:341 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Denmark" msgstr "Denmark" #: profile-builder-2.0/admin/manage-fields.php:342 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Djibouti" msgstr "Djibouti" #: profile-builder-2.0/admin/manage-fields.php:343 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominica" msgstr "Dominica" #: profile-builder-2.0/admin/manage-fields.php:344 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominican Republic" msgstr "Dominican Republic" #: profile-builder-2.0/admin/manage-fields.php:345 msgid "East Timor" msgstr "East Timor" #: profile-builder-2.0/admin/manage-fields.php:346 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ecuador" msgstr "Ecuador" #: profile-builder-2.0/admin/manage-fields.php:347 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Egypt" msgstr "Egypt" #: profile-builder-2.0/admin/manage-fields.php:348 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "El Salvador" msgstr "El Salvador" #: profile-builder-2.0/admin/manage-fields.php:349 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: profile-builder-2.0/admin/manage-fields.php:350 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Eritrea" msgstr "Eritrea" #: profile-builder-2.0/admin/manage-fields.php:351 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Estonia" msgstr "Estonia" #: profile-builder-2.0/admin/manage-fields.php:352 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ethiopia" msgstr "Ethiopia" #: profile-builder-2.0/admin/manage-fields.php:353 msgid "Falkland Islands" msgstr "Falkland Islands" #: profile-builder-2.0/admin/manage-fields.php:354 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Faroe Islands" msgstr "Faroe Islands" #: profile-builder-2.0/admin/manage-fields.php:355 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Fiji" msgstr "Fiji" #: profile-builder-2.0/admin/manage-fields.php:356 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Finland" msgstr "Finland" #: profile-builder-2.0/admin/manage-fields.php:357 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "France" msgstr "France" #: profile-builder-2.0/admin/manage-fields.php:358 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Guiana" msgstr "French Guiana" #: profile-builder-2.0/admin/manage-fields.php:359 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Polynesia" msgstr "French Polynesia" #: profile-builder-2.0/admin/manage-fields.php:360 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Southern Territories" msgstr "French Southern Territories" #: profile-builder-2.0/admin/manage-fields.php:361 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gabon" msgstr "Gabon" #: profile-builder-2.0/admin/manage-fields.php:362 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gambia" msgstr "Gambia" #: profile-builder-2.0/admin/manage-fields.php:363 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Georgia" msgstr "Georgia" #: profile-builder-2.0/admin/manage-fields.php:364 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Germany" msgstr "Germany" #: profile-builder-2.0/admin/manage-fields.php:365 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ghana" msgstr "Ghana" #: profile-builder-2.0/admin/manage-fields.php:366 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gibraltar" msgstr "Gibraltar" #: profile-builder-2.0/admin/manage-fields.php:367 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greece" msgstr "Greece" #: profile-builder-2.0/admin/manage-fields.php:368 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greenland" msgstr "Greenland" #: profile-builder-2.0/admin/manage-fields.php:369 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Grenada" msgstr "Grenada" #: profile-builder-2.0/admin/manage-fields.php:370 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guadeloupe" msgstr "Guadeloupe" #: profile-builder-2.0/admin/manage-fields.php:371 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guam" msgstr "Guam" #: profile-builder-2.0/admin/manage-fields.php:372 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guatemala" msgstr "Guatemala" #: profile-builder-2.0/admin/manage-fields.php:373 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guernsey" msgstr "Guernsey" #: profile-builder-2.0/admin/manage-fields.php:374 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea" msgstr "Guinea" #: profile-builder-2.0/admin/manage-fields.php:375 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: profile-builder-2.0/admin/manage-fields.php:376 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guyana" msgstr "Guyana" #: profile-builder-2.0/admin/manage-fields.php:377 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Haiti" msgstr "Haiti" #: profile-builder-2.0/admin/manage-fields.php:378 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Heard Island and McDonald Islands" msgstr "Heard Island and McDonald Islands" #: profile-builder-2.0/admin/manage-fields.php:379 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Honduras" msgstr "Honduras" #: profile-builder-2.0/admin/manage-fields.php:380 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hong Kong" msgstr "Hong Kong" #: profile-builder-2.0/admin/manage-fields.php:381 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hungary" msgstr "Hungary" #: profile-builder-2.0/admin/manage-fields.php:382 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iceland" msgstr "Iceland" #: profile-builder-2.0/admin/manage-fields.php:383 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "India" msgstr "India" #: profile-builder-2.0/admin/manage-fields.php:384 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Indonesia" msgstr "Indonesia" #: profile-builder-2.0/admin/manage-fields.php:385 msgid "Iran" msgstr "Iran" #: profile-builder-2.0/admin/manage-fields.php:386 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iraq" msgstr "Iraq" #: profile-builder-2.0/admin/manage-fields.php:387 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ireland" msgstr "Ireland" #: profile-builder-2.0/admin/manage-fields.php:388 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Isle of Man" msgstr "Isle of Man" #: profile-builder-2.0/admin/manage-fields.php:389 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Israel" msgstr "Israel" #: profile-builder-2.0/admin/manage-fields.php:390 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Italy" msgstr "Italy" #: profile-builder-2.0/admin/manage-fields.php:391 msgid "Ivory Coast" msgstr "Ivory Coast" #: profile-builder-2.0/admin/manage-fields.php:392 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jamaica" msgstr "Jamaica" #: profile-builder-2.0/admin/manage-fields.php:393 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Japan" msgstr "Japan" #: profile-builder-2.0/admin/manage-fields.php:394 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jersey" msgstr "Jersey" #: profile-builder-2.0/admin/manage-fields.php:395 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jordan" msgstr "Jordan" #: profile-builder-2.0/admin/manage-fields.php:396 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kazakhstan" msgstr "Kazakhstan" #: profile-builder-2.0/admin/manage-fields.php:397 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kenya" msgstr "Kenya" #: profile-builder-2.0/admin/manage-fields.php:398 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kiribati" msgstr "Kiribati" #: profile-builder-2.0/admin/manage-fields.php:399 msgid "Kosovo" msgstr "Kosovo" #: profile-builder-2.0/admin/manage-fields.php:400 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kuwait" msgstr "Kuwait" #: profile-builder-2.0/admin/manage-fields.php:401 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: profile-builder-2.0/admin/manage-fields.php:402 msgid "Laos" msgstr "Laos" #: profile-builder-2.0/admin/manage-fields.php:403 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Latvia" msgstr "Latvia" #: profile-builder-2.0/admin/manage-fields.php:404 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lebanon" msgstr "Lebanon" #: profile-builder-2.0/admin/manage-fields.php:405 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lesotho" msgstr "Lesotho" #: profile-builder-2.0/admin/manage-fields.php:406 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liberia" msgstr "Liberia" #: profile-builder-2.0/admin/manage-fields.php:407 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Libya" msgstr "Libya" #: profile-builder-2.0/admin/manage-fields.php:408 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liechtenstein" msgstr "Liechtenstein" #: profile-builder-2.0/admin/manage-fields.php:409 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lithuania" msgstr "Lithuania" #: profile-builder-2.0/admin/manage-fields.php:410 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Luxembourg" msgstr "Luxembourg" #: profile-builder-2.0/admin/manage-fields.php:411 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macao" msgstr "Macao" #: profile-builder-2.0/admin/manage-fields.php:412 msgid "Macedonia" msgstr "Macedonia" #: profile-builder-2.0/admin/manage-fields.php:413 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Madagascar" msgstr "Madagascar" #: profile-builder-2.0/admin/manage-fields.php:414 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malawi" msgstr "Malawi" #: profile-builder-2.0/admin/manage-fields.php:415 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malaysia" msgstr "Malaysia" #: profile-builder-2.0/admin/manage-fields.php:416 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Maldives" msgstr "Maldives" #: profile-builder-2.0/admin/manage-fields.php:417 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mali" msgstr "Mali" #: profile-builder-2.0/admin/manage-fields.php:418 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malta" msgstr "Malta" #: profile-builder-2.0/admin/manage-fields.php:419 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Marshall Islands" msgstr "Marshall Islands" #: profile-builder-2.0/admin/manage-fields.php:420 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Martinique" msgstr "Martinique" #: profile-builder-2.0/admin/manage-fields.php:421 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritania" msgstr "Mauritania" #: profile-builder-2.0/admin/manage-fields.php:422 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritius" msgstr "Mauritius" #: profile-builder-2.0/admin/manage-fields.php:423 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mayotte" msgstr "Mayotte" #: profile-builder-2.0/admin/manage-fields.php:424 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mexico" msgstr "Mexico" #: profile-builder-2.0/admin/manage-fields.php:425 msgid "Micronesia" msgstr "Micronesia" #: profile-builder-2.0/admin/manage-fields.php:426 msgid "Moldova" msgstr "Moldova" #: profile-builder-2.0/admin/manage-fields.php:427 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Monaco" msgstr "Monaco" #: profile-builder-2.0/admin/manage-fields.php:428 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mongolia" msgstr "Mongolia" #: profile-builder-2.0/admin/manage-fields.php:429 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montenegro" msgstr "Montenegro" #: profile-builder-2.0/admin/manage-fields.php:430 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montserrat" msgstr "Montserrat" #: profile-builder-2.0/admin/manage-fields.php:431 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Morocco" msgstr "Morocco" #: profile-builder-2.0/admin/manage-fields.php:432 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mozambique" msgstr "Mozambique" #: profile-builder-2.0/admin/manage-fields.php:433 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Myanmar" msgstr "Myanmar" #: profile-builder-2.0/admin/manage-fields.php:434 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Namibia" msgstr "Namibia" #: profile-builder-2.0/admin/manage-fields.php:435 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nauru" msgstr "Nauru" #: profile-builder-2.0/admin/manage-fields.php:436 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nepal" msgstr "Nepal" #: profile-builder-2.0/admin/manage-fields.php:437 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Netherlands" msgstr "Netherlands" #: profile-builder-2.0/admin/manage-fields.php:438 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Caledonia" msgstr "New Caledonia" #: profile-builder-2.0/admin/manage-fields.php:439 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Zealand" msgstr "New Zealand" #: profile-builder-2.0/admin/manage-fields.php:440 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nicaragua" msgstr "Nicaragua" #: profile-builder-2.0/admin/manage-fields.php:441 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niger" msgstr "Niger" #: profile-builder-2.0/admin/manage-fields.php:442 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nigeria" msgstr "Nigeria" #: profile-builder-2.0/admin/manage-fields.php:443 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niue" msgstr "Niue" #: profile-builder-2.0/admin/manage-fields.php:444 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norfolk Island" msgstr "Norfolk Island" #: profile-builder-2.0/admin/manage-fields.php:445 msgid "North Korea" msgstr "North Korea" #: profile-builder-2.0/admin/manage-fields.php:446 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: profile-builder-2.0/admin/manage-fields.php:447 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norway" msgstr "Norway" #: profile-builder-2.0/admin/manage-fields.php:448 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Oman" msgstr "Oman" #: profile-builder-2.0/admin/manage-fields.php:449 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pakistan" msgstr "Pakistan" #: profile-builder-2.0/admin/manage-fields.php:450 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palau" msgstr "Palau" #: profile-builder-2.0/admin/manage-fields.php:451 msgid "Palestinian Territory" msgstr "Palestinian Territory" #: profile-builder-2.0/admin/manage-fields.php:452 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Panama" msgstr "Panama" #: profile-builder-2.0/admin/manage-fields.php:453 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: profile-builder-2.0/admin/manage-fields.php:454 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Paraguay" msgstr "Paraguay" #: profile-builder-2.0/admin/manage-fields.php:455 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Peru" msgstr "Peru" #: profile-builder-2.0/admin/manage-fields.php:456 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Philippines" msgstr "Philippines" #: profile-builder-2.0/admin/manage-fields.php:457 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pitcairn" msgstr "Pitcairn" #: profile-builder-2.0/admin/manage-fields.php:458 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Poland" msgstr "Poland" #: profile-builder-2.0/admin/manage-fields.php:459 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Portugal" msgstr "Portugal" #: profile-builder-2.0/admin/manage-fields.php:460 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Puerto Rico" msgstr "Puerto Rico" #: profile-builder-2.0/admin/manage-fields.php:461 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Qatar" msgstr "Qatar" #: profile-builder-2.0/admin/manage-fields.php:462 msgid "Republic of the Congo" msgstr "Republic of the Congo" #: profile-builder-2.0/admin/manage-fields.php:463 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Reunion" msgstr "Reunion" #: profile-builder-2.0/admin/manage-fields.php:464 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Romania" msgstr "Romania" #: profile-builder-2.0/admin/manage-fields.php:465 msgid "Russia" msgstr "Russia" #: profile-builder-2.0/admin/manage-fields.php:466 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Rwanda" msgstr "Rwanda" #: profile-builder-2.0/admin/manage-fields.php:467 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: profile-builder-2.0/admin/manage-fields.php:468 msgid "Saint Helena" msgstr "Saint Helena" #: profile-builder-2.0/admin/manage-fields.php:469 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts and Nevis" #: profile-builder-2.0/admin/manage-fields.php:470 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Lucia" msgstr "Saint Lucia" #: profile-builder-2.0/admin/manage-fields.php:471 msgid "Saint Martin" msgstr "Saint Martin" #: profile-builder-2.0/admin/manage-fields.php:472 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre and Miquelon" #: profile-builder-2.0/admin/manage-fields.php:473 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent and the Grenadines" #: profile-builder-2.0/admin/manage-fields.php:474 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Samoa" msgstr "Samoa" #: profile-builder-2.0/admin/manage-fields.php:475 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "San Marino" msgstr "San Marino" #: profile-builder-2.0/admin/manage-fields.php:476 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sao Tome and Principe" msgstr "Sao Tome and Principe" #: profile-builder-2.0/admin/manage-fields.php:477 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: profile-builder-2.0/admin/manage-fields.php:478 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Senegal" msgstr "Senegal" #: profile-builder-2.0/admin/manage-fields.php:479 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Serbia" msgstr "Serbia" #: profile-builder-2.0/admin/manage-fields.php:480 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Seychelles" msgstr "Seychelles" #: profile-builder-2.0/admin/manage-fields.php:481 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sierra Leone" msgstr "Sierra Leone" #: profile-builder-2.0/admin/manage-fields.php:482 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Singapore" msgstr "Singapore" #: profile-builder-2.0/admin/manage-fields.php:483 msgid "Sint Maarten" msgstr "Sint Maarten" #: profile-builder-2.0/admin/manage-fields.php:484 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovakia" msgstr "Slovakia" #: profile-builder-2.0/admin/manage-fields.php:485 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovenia" msgstr "Slovenia" #: profile-builder-2.0/admin/manage-fields.php:486 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Solomon Islands" msgstr "Solomon Islands" #: profile-builder-2.0/admin/manage-fields.php:487 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Somalia" msgstr "Somalia" #: profile-builder-2.0/admin/manage-fields.php:488 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Africa" msgstr "South Africa" #: profile-builder-2.0/admin/manage-fields.php:489 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Georgia and the South Sandwich Islands" msgstr "South Georgia and the South Sandwich Islands" #: profile-builder-2.0/admin/manage-fields.php:490 msgid "South Korea" msgstr "South Korea" #: profile-builder-2.0/admin/manage-fields.php:491 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Sudan" msgstr "South Sudan" #: profile-builder-2.0/admin/manage-fields.php:492 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Spain" msgstr "Spain" #: profile-builder-2.0/admin/manage-fields.php:493 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sri Lanka" msgstr "Sri Lanka" #: profile-builder-2.0/admin/manage-fields.php:494 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sudan" msgstr "Sudan" #: profile-builder-2.0/admin/manage-fields.php:495 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Suriname" msgstr "Suriname" #: profile-builder-2.0/admin/manage-fields.php:496 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Svalbard and Jan Mayen" msgstr "Svalbard and Jan Mayen" #: profile-builder-2.0/admin/manage-fields.php:497 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Swaziland" msgstr "Swaziland" #: profile-builder-2.0/admin/manage-fields.php:498 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sweden" msgstr "Sweden" #: profile-builder-2.0/admin/manage-fields.php:499 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Switzerland" msgstr "Switzerland" #: profile-builder-2.0/admin/manage-fields.php:500 msgid "Syria" msgstr "Syria" #: profile-builder-2.0/admin/manage-fields.php:501 msgid "Taiwan" msgstr "Taiwan" #: profile-builder-2.0/admin/manage-fields.php:502 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tajikistan" msgstr "Tajikistan" #: profile-builder-2.0/admin/manage-fields.php:503 msgid "Tanzania" msgstr "Tanzania" #: profile-builder-2.0/admin/manage-fields.php:504 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Thailand" msgstr "Thailand" #: profile-builder-2.0/admin/manage-fields.php:505 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Togo" msgstr "Togo" #: profile-builder-2.0/admin/manage-fields.php:506 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tokelau" msgstr "Tokelau" #: profile-builder-2.0/admin/manage-fields.php:507 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tonga" msgstr "Tonga" #: profile-builder-2.0/admin/manage-fields.php:508 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Trinidad and Tobago" msgstr "Trinidad and Tobago" #: profile-builder-2.0/admin/manage-fields.php:509 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tunisia" msgstr "Tunisia" #: profile-builder-2.0/admin/manage-fields.php:510 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkey" msgstr "Turkey" #: profile-builder-2.0/admin/manage-fields.php:511 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkmenistan" msgstr "Turkmenistan" #: profile-builder-2.0/admin/manage-fields.php:512 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Islands" #: profile-builder-2.0/admin/manage-fields.php:513 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tuvalu" msgstr "Tuvalu" #: profile-builder-2.0/admin/manage-fields.php:514 msgid "U.S. Virgin Islands" msgstr "U.S. Virgin Islands" #: profile-builder-2.0/admin/manage-fields.php:515 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uganda" msgstr "Uganda" #: profile-builder-2.0/admin/manage-fields.php:516 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ukraine" msgstr "Ukraine" #: profile-builder-2.0/admin/manage-fields.php:517 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Arab Emirates" msgstr "United Arab Emirates" #: profile-builder-2.0/admin/manage-fields.php:518 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Kingdom" msgstr "United Kingdom" #: profile-builder-2.0/admin/manage-fields.php:519 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States" msgstr "United States" #: profile-builder-2.0/admin/manage-fields.php:520 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: profile-builder-2.0/admin/manage-fields.php:521 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uruguay" msgstr "Uruguay" #: profile-builder-2.0/admin/manage-fields.php:522 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uzbekistan" msgstr "Uzbekistan" #: profile-builder-2.0/admin/manage-fields.php:523 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Vanuatu" msgstr "Vanuatu" #: profile-builder-2.0/admin/manage-fields.php:524 msgid "Vatican" msgstr "Vatican" #: profile-builder-2.0/admin/manage-fields.php:525 msgid "Venezuela" msgstr "Venezuela" #: profile-builder-2.0/admin/manage-fields.php:526 msgid "Vietnam" msgstr "Vietnam" #: profile-builder-2.0/admin/manage-fields.php:527 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Wallis and Futuna" msgstr "Wallis and Futuna" #: profile-builder-2.0/admin/manage-fields.php:528 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Western Sahara" msgstr "Western Sahara" #: profile-builder-2.0/admin/manage-fields.php:529 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Yemen" msgstr "Yemen" #: profile-builder-2.0/admin/manage-fields.php:530 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zambia" msgstr "Zambia" #: profile-builder-2.0/admin/manage-fields.php:531 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zimbabwe" msgstr "Zimbabwe" #: profile-builder-2.0/admin/manage-fields.php:1219 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." msgstr "Com o Construtor de Perfil Pro v2, você pode exibir diferentes campos nos formulários de registro e edição de perfil, usando o módulo Múltiplos Registro e Editar Formulários de Perfil." #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237 msgid "Your account has to be confirmed by an administrator before you can log in." msgstr "Sua conta deve ser confirmada por um administrador antes de você se conectar." #: profile-builder-2.0/features/admin-approval/admin-approval.php:216 msgid "Your account has been successfully created!" msgstr "Sua conta foi criada com sucesso!" #: profile-builder-2.0/features/functions.php:678 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458 msgid "Please enter a (valid) reCAPTCHA value" msgstr "Por favor digite um valor válido para o reCAPTCHA" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 msgid "Click the BACK button on your browser, and try again." msgstr "Clique o botão voltar em seu navegador, e tente novamente." #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78 #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87 msgid "Sorry, you cannot upload this file type for this field." msgstr "Desculpe, você não pode carregar este tipo de arquivo neste campo." #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94 msgid "An error occurred, please try again later." msgstr "Um erro aconteceu, por favor tente novamente." #: profile-builder-2.0/modules/user-listing/userlisting.php:282 msgid "More" msgstr "Mais" #: profile-builder-2.0/modules/user-listing/userlisting.php:376 msgid "You do not have permission to view this user list." msgstr "Você não tem permissão para esta lista de usuários." #: profile-builder-2.0/modules/user-listing/userlisting.php:389 msgid "You do not have the required user role to view this user list." msgstr "Você não tem a função requerida de usuário para ver esta lista de usuários." #: profile-builder-2.0/modules/user-listing/userlisting.php:2253 msgid "Ascending" msgstr "Ascendente" #: profile-builder-2.0/modules/user-listing/userlisting.php:2254 msgid "Descending" msgstr "Descendente" #: profile-builder-2.0/admin/add-ons.php:148 #: profile-builder-2.0/admin/add-ons.php:248 #: profile-builder-2.0/admin/pms-cross-promotion.php:134 #: profile-builder-2.0/admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "Baixar Agora" #: profile-builder-2.0/admin/admin-functions.php:200 msgid "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. " msgstr "Se você gostar de usar %1$s por favor qualifique-nos no WordPress.org. Usuários mais satisfeitos significa que temos mais funcionalidade, menos bugs e um melhor suporte para todos. " #: profile-builder-2.0/admin/manage-fields.php:82 msgid "Choose one of the supported field types" msgstr "Escolha um dos tipos de campos suportados" #: profile-builder-2.0/admin/manage-fields.php:84 msgid ". Extra Field Types are available in Hobbyist or PRO versions." msgstr ". Tipos de Campos Extras estão disponíveis em Versão Hobbyist ou PRO." #: profile-builder-2.0/admin/manage-fields.php:131 msgid "Site Key" msgstr "Chave do site" #: profile-builder-2.0/admin/manage-fields.php:131 msgid "The site key from Google, www.google.com/recaptcha" msgstr "A chave do site do Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "Secret Key" msgstr "Chave secreta" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "The secret key from Google, www.google.com/recaptcha" msgstr "A chave secreta do Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:1023 msgid "You must enter the site key\n" msgstr "Voce precisa entrar com a chave do site\n" #: profile-builder-2.0/admin/manage-fields.php:1025 msgid "You must enter the secret key\n" msgstr "Você precisa entrar a chave secreta\n" #: profile-builder-2.0/admin/add-ons.php:10 #: profile-builder-2.0/admin/add-ons.php:32 msgid "Add-Ons" msgstr "Add-Ons" #: profile-builder-2.0/admin/add-ons.php:34 #: profile-builder-2.0/admin/add-ons.php:129 #: profile-builder-2.0/admin/add-ons.php:231 #: profile-builder-2.0/admin/pms-cross-promotion.php:78 #: profile-builder-2.0/admin/pms-cross-promotion.php:114 #: profile-builder-2.0/admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "Ativar" #: profile-builder-2.0/admin/add-ons.php:36 #: profile-builder-2.0/admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "Baixando e instalando..." #: profile-builder-2.0/admin/add-ons.php:37 #: profile-builder-2.0/admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "Instalação completa" #: profile-builder-2.0/admin/add-ons.php:39 msgid "Add-On is Active" msgstr "Add-On está ativo" #: profile-builder-2.0/admin/add-ons.php:40 msgid "Add-On has been activated" msgstr "Add-On foi ativado" #: profile-builder-2.0/admin/add-ons.php:41 #: profile-builder-2.0/admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "Instale novamente" #: profile-builder-2.0/admin/add-ons.php:43 #: profile-builder-2.0/admin/add-ons.php:140 msgid "Add-On is active" msgstr "Add-On está ativo" #: profile-builder-2.0/admin/add-ons.php:44 #: profile-builder-2.0/admin/add-ons.php:138 msgid "Add-On is inactive" msgstr "Add-On está inativo" #: profile-builder-2.0/admin/add-ons.php:46 #: profile-builder-2.0/admin/add-ons.php:133 #: profile-builder-2.0/admin/add-ons.php:235 #: profile-builder-2.0/admin/pms-cross-promotion.php:90 #: profile-builder-2.0/admin/pms-cross-promotion.php:118 #: profile-builder-2.0/admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "Desativar" #: profile-builder-2.0/admin/add-ons.php:47 msgid "Add-On has been deactivated." msgstr "Add-On foi desativado." #: profile-builder-2.0/admin/add-ons.php:59 msgid "Something went wrong, we could not connect to the server. Please try again later." msgstr "Algo ocorreu de errado, não foi possível conectar ao servidor. Por favor tente mais tarde novamente." #: profile-builder-2.0/admin/pms-cross-promotion.php:137 #: profile-builder-2.0/admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "Instale Agora" #: profile-builder-2.0/admin/add-ons.php:153 #: profile-builder-2.0/admin/add-ons.php:251 #: profile-builder-2.0/admin/pms-cross-promotion.php:141 #: profile-builder-2.0/admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "Compatível com a sua versão do Profile Builder." #: profile-builder-2.0/admin/add-ons.php:162 msgid "Upgrade Profile Builder" msgstr "Atualize Profile Builder" #: profile-builder-2.0/admin/add-ons.php:163 msgid "Not compatible with Profile Builder" msgstr "Não compatível com Profile Builder" #: profile-builder-2.0/admin/add-ons.php:171 msgid "Not compatible with your version of Profile Builder." msgstr "Não compatível com sua versão do Profile Bulder " #: profile-builder-2.0/admin/add-ons.php:172 msgid "Minimum required Profile Builder version:" msgstr "Versão mínima requerida do Profile Builder:" #: profile-builder-2.0/admin/add-ons.php:177 msgid "Could not install add-on. Retry or install manually." msgstr "Não foi possível instalar o add-on. Tente novamente ou instale manualmente." #: profile-builder-2.0/front-end/default-fields/email/email.php:51 msgid "You must enter a valid email address." msgstr "Você precisa entrar com um endereço de e-mail válido." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "Este nome de usuário é invalido pois contém caracteres ilegais." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "Por favor entre um nome de usuário valido." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72 #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85 msgid "Only administrators can see this field on edit profile forms." msgstr "Somente administradores podem ver este campo na edição do formulário." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81 msgid "As an administrator you cannot change your role." msgstr "Sendo um administrador você não pode alterar suas características." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117 msgid "" "\n" "

            {{username}} has requested a password change via the password reset feature.

            \n" "

            His/her new password is: {{password}}

            \n" msgstr "" "\n" "

            {{username}} solicitou a troca da senha via componente de redefinição de senha.

            \n" "

            A sua nova senha é: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141 msgid "Admin Notification for User Password Reset" msgstr "Notificação do administrador de redefinição de senha" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46 msgid "Reset Key" msgstr "Redefinir Chave" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47 msgid "Reset Url" msgstr "Redefinir Url" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48 msgid "Reset Link" msgstr "Redefinir link" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204 msgid "" "\n" "

            Someone requested that the password be reset for the following account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            \n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" msgstr "" "

            Alguém solicitou a redefinição da senha da seguinte conta: {{site_name}}
            \n" "Nome do usuário: {{username}}

            \n" "

            Se isso foi um engano, basta ignorar este e-mail e nenhuma alteração será realizada.

            \n" "

            Para redefinir a sua senha, clique no seguinte endereço:
            \n" "{{{reset_link}}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218 msgid "[{{site_name}}] Password Reset" msgstr "[{{site_name}}] Redefinição de senha" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229 msgid "Password Reset Email" msgstr "E-mail de Redefinição de Senha" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235 msgid "" "\n" "

            You have successfully reset your password to: {{password}}

            \n" msgstr "" "\n" "

            Você alterou sua senha com sucesso para: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset Successfully" msgstr "Senha alterada com sucesso" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256 msgid "Password Reset Success Email" msgstr "Email de sucesso de redefinição de senha" #: profile-builder-2.0/modules/user-listing/userlisting.php:159 msgid "User Nicename" msgstr "Nicename do usuário" #: pb-add-on-woocommerce/woosync-page.php:80 #: pb-add-on-woocommerce/woosync-page.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:499 msgid "None" msgstr "Nada" #: profile-builder-2.0/admin/admin-functions.php:132 msgid "ERROR: The password must have the minimum length of %s characters" msgstr "ERRO: A senha deve ter o tamanho mínimo de %s caracteres" #: profile-builder-2.0/admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr "ERRO: A senha deve ter uma força mínima de %s" #: profile-builder-2.0/admin/general-settings.php:179 msgid "Username and Email" msgstr "Nome e Email" #: profile-builder-2.0/admin/general-settings.php:184 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "\"Nome e Email\" - usuários podem fazer Log In com Nome e Email." #: profile-builder-2.0/admin/general-settings.php:185 msgid "\"Username\" - users can Log In only with Username." msgstr "\"Nome\" - usuários só podem fazer Log In com o Nome." #: profile-builder-2.0/admin/general-settings.php:186 msgid "\"Email\" - users can Log In only with Email." msgstr "\"Email\" - usuários só podem fazer Log In com o Email." #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "Especifique a(s) extensão(ões) que você quer limitar para fazer upload
            Exemplo: .ext1,.ext2,.ext3
            Se não especificado, o padrão é: .jpg,.jpeg,.gif,.png (.*)" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)" msgstr "Especique a(s) extensão(ões) que você quer limitar para fazer upload
            Exemplo: .ext1,.ext2,.ext3
            Se não especificado, o padrão são todas as extensões de arquivo permitidas no WordPress (.*)" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "User Roles" msgstr "Funções de Usuário" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "Escolha que funções mostrar ao usuário ( arrastar e soltar para reordenar )" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "User Roles Order" msgstr "Ordem das Funções de Usuário " #: profile-builder-2.0/admin/manage-fields.php:136 msgid "Save the user role order from the user roles checkboxes" msgstr "Salvar a ordem das funções das caixas de seleção" #: profile-builder-2.0/admin/manage-fields.php:1128 msgid "Please select at least one user role\n" msgstr "Favor selecionar ao menos uma função de usuário\n" #: profile-builder-2.0/admin/register-version.php:22 msgid "Profile Builder Register" msgstr "Registro do Profile Builder" #: profile-builder-2.0/admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "Seu serial está para expirar em breve!" #: profile-builder-2.0/admin/register-version.php:81 msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr "Seu serial está para expirar, favor %1$s Renovar Sua Licença%2$s." #: profile-builder-2.0/admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr "Seu serial expirou, favor %1$s Renovar Sua Licença%2$s." #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 msgid "Add Entry" msgstr "Adicionar Entrada" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 msgid "show" msgstr "mostrar" #: profile-builder-2.0/features/functions.php:736 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" msgstr "Para permitir que usuários registrem para seu website via Profile Builder, você precisa antes habilitar o registro de usuário. Vá para %1$sConfigurações de Rede%2$s, e sob Configurações de Registro certifique-se de ticar “Contas de usuário podem ser registradas”. %3$sDispensar%4$s" #: profile-builder-2.0/front-end/class-formbuilder.php:659 msgid "User to edit:" msgstr "Usuário para editar:" #: profile-builder-2.0/front-end/default-fields/password/password.php:46 #: profile-builder-2.0/front-end/recover.php:262 msgid "The password must have the minimum length of %s characters" msgstr "A senha deve ter um tamanho mínimo de %s caracteres" #: profile-builder-2.0/front-end/default-fields/password/password.php:50 #: profile-builder-2.0/front-end/recover.php:266 msgid "The password must have a minimum strength of %s" msgstr "A senha deve ter uma força mínima de %s" #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118 msgid "You cannot register this user role" msgstr "Você não pode registrar essa função de usuário" #: profile-builder-2.0/front-end/login.php:153 msgid "username or email" msgstr "nome ou email" #: profile-builder-2.0/front-end/login.php:222 msgid "Username or Email" msgstr "Nome ou Email" #: profile-builder-2.0/front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "Você entrou como %s." #: profile-builder-2.0/front-end/logout.php:15 msgid "Log out »" msgstr "Sair »" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "Função de Usuário" #: profile-builder-2.0/modules/user-listing/userlisting.php:2167 msgid "View all extra shortcode parameters" msgstr "Visualizar todos os parâmetros extras de shortcode" #: profile-builder-2.0/modules/user-listing/userlisting.php:2181 msgid "displays only the users that you specified the user_id for" msgstr "mostrar somente os usuários para os quais você especificou o user_id" #: profile-builder-2.0/modules/user-listing/userlisting.php:2187 msgid "displays all users except the ones you specified the user_id for" msgstr "mostrar todos os usuários exceto aqueles para os quais você especificou o user_id" #: profile-builder-2.0/features/functions.php:566 msgid "Minimum length of %d characters" msgstr "Tamanho mínimo de %d caracteres" #: profile-builder-2.0/front-end/class-formbuilder.php:146 #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "This message is only visible by administrators" msgstr "Esta mensagem só é visível para os administradores" #: profile-builder-2.0/modules/user-listing/userlisting.php:413 msgid "User not found" msgstr "Usuário não encontrado" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "Etiquetas válidas {{reply_to}} e {{site_name}}" #: profile-builder-2.0/admin/admin-bar.php:48 msgid "Choose which user roles view the admin bar in the front-end of the website." msgstr "Escolha que função de usuário pode ver a barra de administração na interface do website." #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes" msgstr "Insira uma lista de valores separada por vírgula
            Ela pode ser qualquer uma, pois é ocultada do usuário, mas não deve conter caracteres especiais ou apóstrofes" #: profile-builder-2.0/admin/manage-fields.php:1055 msgid "The meta-name cannot be empty\n" msgstr "O meta-name não pode ser vazio \n" #: profile-builder-2.0/admin/register-version.php:69 msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received" msgstr "Agora que você adquiriu uma cópia do %s, você pode aproveitar para registrá-la com o serial que você recebeu" #: profile-builder-2.0/admin/register-version.php:243 msgid "

            Your Profile Builder serial number is invalid or missing.
            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

            " msgstr "

            Seu serial do Profile Builder é inválido or inexistente.
            Favor %1$sregistrar sua cópia%2$s para ter acesso a atualizações automáticas e suporte. Precisa de uma licença? %3$sAdquira uma agora%4$s

            " #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17 #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60 msgid "...Choose" msgstr "...Escolher" #: profile-builder-2.0/features/class-list-table.php:526 #: profile-builder-2.0/features/class-list-table.php:942 msgid "1 item" msgstr "1 item" #: profile-builder-2.0/features/functions.php:552 msgid "Very Weak" msgstr "Muito Fraco" #: profile-builder-2.0/features/functions.php:640 msgid "This field is required" msgstr "Este campo é requerido" #: profile-builder-2.0/features/functions.php:704 msgid "Cancel" msgstr "Cancelar" #: profile-builder-2.0/features/functions.php:740 msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s" msgstr "Para permitir que usuários registrem para seu website via Profile Builder, você precisa antes habilitar o registro de usuário. Vá para %1$sConfigurações -> Tabela Geral%2$s, e sob Participação certifique-se de ticar “Qualquer um pode registrar”. %3$sDispensar%4$s" #: profile-builder-2.0/front-end/login.php:144 msgid "Invalid username." msgstr "Nome inválido." #: profile-builder-2.0/front-end/login.php:149 #: profile-builder-2.0/front-end/login.php:153 msgid "username" msgstr "nome de usuário" #: profile-builder-2.0/front-end/login.php:149 msgid "email" msgstr "e-mail" #: profile-builder-2.0/front-end/login.php:256 msgid "Lost your password?" msgstr "Perdeu sua senha?" #: profile-builder-2.0/index.php:34 msgid " is also activated. You need to deactivate it before activating this version of the plugin." msgstr "também é ativado. Você precisa desativá-la antes de ativar esta versão do plugin." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54 msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email" msgstr "Deve ser um endereço de e-mail válido ou o tag {{reply_to}} o qual o padrão para o e-mail do administrador" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508 msgid "Your selected password at signup" msgstr "Sua senha selecionada ao registrar" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save." msgstr "Estas configurações também são replicadas na página \"Personalizar Email do Administrador\" em salvar." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "Esse formulário está vazio." #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "Apagar todos os itens" #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all" msgstr "Apagar tudo" #: profile-builder-2.0/modules/user-listing/userlisting.php:1621 msgid "Choose..." msgstr "Escolher..." #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Set the number of users to be displayed on every paginated part of the all-userlisting" msgstr "Selecione o numero de usuário para ser mostrado em cada parte paginada de todas as listas de usuários." #: profile-builder-2.0/admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "Mostrar/Ocultar a Barra de Admin no site" #: profile-builder-2.0/admin/admin-bar.php:10 #: profile-builder-2.0/admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "Configurações da Barra de Admin" #: profile-builder-2.0/admin/admin-bar.php:57 msgid "User-Role" msgstr "Função do Usuário" #: profile-builder-2.0/admin/admin-bar.php:58 msgid "Visibility" msgstr "Visibilidade" #: profile-builder-2.0/admin/admin-bar.php:73 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "Padrão" #: profile-builder-2.0/admin/admin-bar.php:74 msgid "Show" msgstr "Mostrar" #: profile-builder-2.0/admin/admin-bar.php:75 #: profile-builder-2.0/modules/user-listing/userlisting.php:1554 msgid "Hide" msgstr "Ocultar" #: pb-add-on-woocommerce/woosync-page.php:147 #: profile-builder-2.0/admin/admin-bar.php:86 #: profile-builder-2.0/admin/general-settings.php:224 #: profile-builder-2.0/admin/register-version.php:95 #: profile-builder-2.0/features/functions.php:697 #: profile-builder-2.0/modules/modules.php:127 msgid "Save Changes" msgstr "Salvar Alterações" #: profile-builder-2.0/admin/admin-functions.php:37 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 )" msgstr "Login está configurado para ser feito através do E-mail. Esse campo NÃO irá aparecer na tela! (você pode alterar essas configurações na aba \"%s\")" #: profile-builder-2.0/admin/admin-functions.php:37 #: profile-builder-2.0/admin/general-settings.php:10 #: profile-builder-2.0/admin/general-settings.php:35 msgid "General Settings" msgstr "Configurações Gerais" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:210 msgid "Very weak" msgstr "Muito fraco" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:211 #: profile-builder-2.0/features/functions.php:552 msgid "Weak" msgstr "Fraco" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:212 #: profile-builder-2.0/features/functions.php:552 msgid "Medium" msgstr "Médio" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:213 #: profile-builder-2.0/features/functions.php:552 msgid "Strong" msgstr "Forte" #: profile-builder-2.0/admin/admin-functions.php:187 msgid "Add Field" msgstr "Adicionar Campo" #: profile-builder-2.0/admin/admin-functions.php:189 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390 msgid "Save Settings" msgstr "Salvar Configurações" #: profile-builder-2.0/admin/basic-info.php:10 msgid "Basic Information" msgstr "Informações Básicas" #: profile-builder-2.0/admin/basic-info.php:29 msgid "Version %s" msgstr "Versão %s" #: profile-builder-2.0/admin/basic-info.php:30 msgid "Profile Builder " msgstr "Profile Builder " #: profile-builder-2.0/admin/basic-info.php:31 msgid "The best way to add front-end registration, edit profile and login forms." msgstr "A melhor forma de criar registros no front-end, editar perfis e formulários de login." #: profile-builder-2.0/admin/basic-info.php:33 msgid "For Modern User Interaction" msgstr "Para interação com usuários modernos" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25 #: profile-builder-2.0/admin/basic-info.php:36 #: profile-builder-2.0/features/login-widget/login-widget.php:59 msgid "Login" msgstr "Login" #: profile-builder-2.0/admin/basic-info.php:40 msgid "Registration" msgstr "Registro" #: profile-builder-2.0/admin/basic-info.php:44 msgid "Edit Profile" msgstr "Editar Perfil" #: profile-builder-2.0/admin/basic-info.php:51 msgid "Extra Features" msgstr "Funções Extras" #: profile-builder-2.0/admin/basic-info.php:52 msgid "Features that give you more control over your users, increased security and help you fight user registration spam." msgstr "Funções que lhe dão mais controle sobre seus usuários, aumentam a seguração e o ajudam a combater o cadastro de spams." #: profile-builder-2.0/admin/basic-info.php:53 msgid "Enable extra features" msgstr "Habilite as funções extras" #: profile-builder-2.0/admin/basic-info.php:57 msgid "Recover Password" msgstr "Recuperar Password" #: profile-builder-2.0/admin/basic-info.php:61 msgid "Admin Approval (*)" msgstr "Aprovação do Admin (*)" #: profile-builder-2.0/admin/basic-info.php:62 msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI." msgstr "Você decide quem é um usuário em seu site. Receba notificações via email ou aprove múltiplos usuários de uma só vez pela interface do Wordpress." #: profile-builder-2.0/admin/basic-info.php:65 msgid "Email Confirmation" msgstr "Confirmação de Email" #: profile-builder-2.0/admin/basic-info.php:66 msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address." msgstr "Garanta que usuários cadastrem-se com emails genuínos. No registro, os usuários receberão uma notificação para confirmarem seus emails." #: profile-builder-2.0/admin/basic-info.php:69 msgid "Minimum Password Length and Strength Meter" msgstr "Tamanho mínimo do password e medidor de força" #: profile-builder-2.0/admin/basic-info.php:70 msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength." msgstr "Elimine passwords de uma vez configurando um tamanho mínimo e mantendo a força do password." #: profile-builder-2.0/admin/basic-info.php:73 msgid "Login with Email or Username" msgstr "Login com Email ou Usuário" #: profile-builder-2.0/admin/basic-info.php:74 msgid "Allow users to log in with their email or username when accessing your site." msgstr "Permite aos usuários fazerem o login com seus emails ou nome de usuários quando acessarem seu site." #: profile-builder-2.0/admin/basic-info.php:87 msgid "Customize Your Forms The Way You Want (*)" msgstr "Customize seus formulários da forma que quiser (*)" #: profile-builder-2.0/admin/basic-info.php:88 msgid "With Extra Profile Fields you can create the exact registration form your project needs." msgstr "Com os campos extra de perfil você pode criar o formulário de registro exatamente como precisa." #: profile-builder-2.0/admin/basic-info.php:90 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "Campos Extra de Perfil estão disponíveis nas versões Hobbyist ou PRO" #: profile-builder-2.0/admin/basic-info.php:92 msgid "Get started with extra fields" msgstr "Comece já a usar os campos extra" #: profile-builder-2.0/admin/basic-info.php:95 msgid "Avatar Upload" msgstr "Upload de Avatar" #: profile-builder-2.0/admin/basic-info.php:96 msgid "Generic Uploads" msgstr "Uploads Genéricos" #: profile-builder-2.0/admin/basic-info.php:97 msgid "Agree To Terms Checkbox" msgstr "Checkbox de acordo com termos" #: profile-builder-2.0/admin/basic-info.php:98 msgid "Datepicker" msgstr "Selecionador de datas" #: profile-builder-2.0/admin/basic-info.php:101 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: profile-builder-2.0/admin/basic-info.php:102 msgid "Country Select" msgstr "Selecionador de País" #: profile-builder-2.0/admin/basic-info.php:104 msgid "Timezone Select" msgstr "Selecionador de Fuso Horários" #: profile-builder-2.0/admin/basic-info.php:108 msgid "Input / Hidden Input" msgstr "Input / Input Oculto" #: profile-builder-2.0/admin/basic-info.php:110 msgid "Checkbox" msgstr "Checkbox" #: profile-builder-2.0/admin/basic-info.php:111 msgid "Select" msgstr "Select" #: profile-builder-2.0/admin/basic-info.php:112 msgid "Radio Buttons" msgstr "Radio Buttons" #: profile-builder-2.0/admin/basic-info.php:113 msgid "Textarea" msgstr "Área de Texto" #: profile-builder-2.0/admin/basic-info.php:125 msgid "Powerful Modules (**)" msgstr "Módulos Poderosos (**)" #: profile-builder-2.0/admin/basic-info.php:126 msgid "Everything you will need to manage your users is probably already available using the Pro Modules." msgstr "Tudo que você precisa para gerenciar seus usuários provavelmente já está disponível usando os módulos PRO." #: profile-builder-2.0/admin/basic-info.php:128 msgid "Enable your modules" msgstr "Habilite seus módulos" #: profile-builder-2.0/admin/basic-info.php:131 msgid "Find out more about PRO Modules" msgstr "Saiba mais sobre os módulos PRO" #: profile-builder-2.0/admin/basic-info.php:136 #: profile-builder-2.0/modules/modules.php:89 #: profile-builder-2.0/modules/user-listing/userlisting.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:12 #: profile-builder-2.0/modules/user-listing/userlisting.php:17 #: profile-builder-2.0/modules/user-listing/userlisting.php:23 msgid "User Listing" msgstr "Listagem de usuários" #: profile-builder-2.0/admin/basic-info.php:138 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." msgstr "Templates para listagem dos usuários do seu site fáceis de editar, além da criação de páginas exclusivas para cada um. Baseado em shortcodes, ofecere muitas opções de customizar suas listagens. " #: profile-builder-2.0/admin/basic-info.php:144 msgid "Email Customizer" msgstr "Customizador de Emails" #: profile-builder-2.0/admin/basic-info.php:145 msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval." msgstr "Personalize todos os emails enviados aos seus usuários ou admins. Quando fizerem registro, confirmação de email, aprovação/negação de admin." #: profile-builder-2.0/admin/basic-info.php:148 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33 #: profile-builder-2.0/modules/modules.php:110 msgid "Custom Redirects" msgstr "Redirecionamentos customizados" #: profile-builder-2.0/admin/basic-info.php:149 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." msgstr "Mantenha seus usuários longe do dashboard do Wordpress, redirecione-os para a página principal após o login ou o registro, tudo isso com alguns cliques." #: profile-builder-2.0/admin/basic-info.php:154 #: profile-builder-2.0/modules/modules.php:75 msgid "Multiple Registration Forms" msgstr "Múltiplos formulários de Registro" #: profile-builder-2.0/admin/basic-info.php:155 msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users." msgstr "Configure múltiplos formulários de registro com diferentes campos para funções específicas de usuários. Capture diferentes informações de diferentes tipos de usuários." #: profile-builder-2.0/admin/basic-info.php:158 #: profile-builder-2.0/modules/modules.php:82 msgid "Multiple Edit-profile Forms" msgstr "Múltiplos formulários de edição de perfil" #: profile-builder-2.0/admin/basic-info.php:159 msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles." msgstr "Permita que usuários com diferentes funções editem suas informações específicas. Configure múltiplos formulários de edição de perfil com diferentes campos para funções específicas de usuários." #: profile-builder-2.0/admin/basic-info.php:187 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr "* disponível apenas nas versões %1$sHobbyist e PRO%2$s." #: profile-builder-2.0/admin/basic-info.php:188 msgid "** only available in the %1$sPro version%2$s." msgstr "** disponível apenas na versão %1s Pro %2$s." #: profile-builder-2.0/admin/general-settings.php:39 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "Carregar o arquivo CSS próprio do Profile Builder em sua página:" #: profile-builder-2.0/admin/general-settings.php:42 #: profile-builder-2.0/admin/general-settings.php:55 #: profile-builder-2.0/admin/general-settings.php:104 #: profile-builder-2.0/admin/general-settings.php:151 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Yes" msgstr "Sim" #: profile-builder-2.0/admin/general-settings.php:44 msgid "You can find the default file here: %1$s" msgstr "Você pode encontrar o arquivo padrão aqui: %1$s" #: profile-builder-2.0/admin/general-settings.php:51 msgid "\"Email Confirmation\" Activated:" msgstr "\"Email de Confirmação\" Ativado:" #: profile-builder-2.0/admin/general-settings.php:56 #: profile-builder-2.0/admin/general-settings.php:105 #: profile-builder-2.0/admin/general-settings.php:150 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "No" msgstr "Não" #: profile-builder-2.0/admin/general-settings.php:61 msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s." msgstr "Você pode encontrar uma lista com os emails não confirmados em %1$sUsers > Todos Usuários > Confirmação de Email%2$s." #: profile-builder-2.0/admin/general-settings.php:69 msgid "\"Email Confirmation\" Landing Page:" msgstr "Página de abertura da \"Confirmação de Email\"" #: profile-builder-2.0/admin/general-settings.php:74 msgid "Existing Pages" msgstr "Páginas existentes" #: profile-builder-2.0/admin/general-settings.php:89 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." msgstr "Especifique qual a página que os usuários serão redirecionados quando confirmarem sua conta por email. Essa página pode diferente da página de registro e poderá ser alterada a qualquer momento. Se nenhuma for selecionada, uma página simples de confirmação será apresentada ao usuário." #: profile-builder-2.0/admin/general-settings.php:100 msgid "\"Admin Approval\" Activated:" msgstr "\"Aprovação do Admin\" Ativada:" #: profile-builder-2.0/admin/general-settings.php:108 msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "Você pode encontrar uma lista dos usuários em %1$sUsers > Todos Usuários > Aprovação do Admin%2$s." #: profile-builder-2.0/admin/general-settings.php:165 msgid "\"Admin Approval\" Feature:" msgstr "Função \"Aprovação do Admin\":" #: profile-builder-2.0/admin/general-settings.php:168 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." msgstr "Você decide quem é um usuário em seu website. Seja notificado via email ou aprove múltiplos usuários de uma só vez na interface do Wordpress. Habilite a aprovação do admin fazendo o upgrade para a versão %1$sHobbyist ou PRO%2$s." #: profile-builder-2.0/admin/general-settings.php:175 msgid "Allow Users to Log in With:" msgstr "Permitir usuários fazerem login com:" #: profile-builder-2.0/admin/general-settings.php:180 #: profile-builder-2.0/admin/manage-fields.php:201 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167 #: profile-builder-2.0/front-end/login.php:85 #: profile-builder-2.0/front-end/login.php:99 #: profile-builder-2.0/front-end/login.php:218 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28 #: profile-builder-2.0/modules/user-listing/userlisting.php:102 #: profile-builder-2.0/modules/user-listing/userlisting.php:277 #: profile-builder-2.0/modules/user-listing/userlisting.php:730 #: profile-builder-2.0/modules/user-listing/userlisting.php:2219 msgid "Username" msgstr "Usuário" #: profile-builder-2.0/admin/general-settings.php:181 #: profile-builder-2.0/front-end/login.php:215 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29 #: profile-builder-2.0/modules/user-listing/userlisting.php:736 #: profile-builder-2.0/modules/user-listing/userlisting.php:2220 msgid "Email" msgstr "Email" #: profile-builder-2.0/admin/general-settings.php:193 msgid "Minimum Password Length:" msgstr "Tamanho mínimo do password:" #: profile-builder-2.0/admin/general-settings.php:198 msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit" msgstr "Digite a quantidade mínima de caracteres que o password deve conter. Deixe em branco para sem limite mínimo" #: profile-builder-2.0/admin/general-settings.php:205 msgid "Minimum Password Strength:" msgstr "Força mínima do password:" #: profile-builder-2.0/admin/general-settings.php:209 msgid "Disabled" msgstr "Desabilitado" #: profile-builder-2.0/admin/manage-fields.php:12 msgid "Manage Fields" msgstr "Gerenciar campos" #: profile-builder-2.0/admin/manage-fields.php:13 msgid "Manage Default and Extra Fields" msgstr "Gerenciar campos padrões e extras" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Field Title" msgstr "Título do campo" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Title of the field" msgstr "Título do campo" #: profile-builder-2.0/admin/manage-fields.php:119 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "Campo" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Meta-name" msgstr "Nome-Meta" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "ID" msgstr "ID" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be edited" msgstr "Um ID único, gerado automaticamente para esse campo em particular
            Você pode usar isso em conjunto com filtros para filtrar esse elemento se necessário
            Não pode ser editado" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Description" msgstr "Descrição" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Enter a (detailed) description of the option for end users to read
            Optional" msgstr "Digite uma descrição (detalhada) da opção para os usuários lerem
            Opcional" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Row Count" msgstr "Contagem de linhas" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5" msgstr "Especifique o número de linhas para o campo do tipo \"Área de Texto\"
            Se não especificado, o padrão são 5" #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Allowed Image Extensions" msgstr "Extensões de imagens permitidas" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Allowed Upload Extensions" msgstr "Extensões permitidas para upload" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Avatar Size" msgstr "Tamanho do Avatar" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100" msgstr "Digite um valor (entre 20 e 200) para o tamanho do 'Avatar'
            Se não especificado, o padrão são 100" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Date-format" msgstr "Formato da data" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Terms of Agreement" msgstr "Termos de Acordo" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Enter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>" msgstr "Digite uma descrição detalhada dos termos de acordo para o usuário ler.
            Links podem ser inseridos usando uma sintaxe HTML padrão: <a href=\"custom_url\">custom_text</a>" #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Options" msgstr "Opções" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Labels" msgstr "Rótulos" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "Entre com uma lista de rótulos separados por vírgula
            Visível para o usuário" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default Value" msgstr "Valor padrão" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default value of the field" msgstr "Valor padrão do campo" #: profile-builder-2.0/admin/manage-fields.php:138 #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default Option" msgstr "Opção padrão" #: profile-builder-2.0/admin/manage-fields.php:138 msgid "Specify the option which should be selected by default" msgstr "Especifique a opção que será selecionada por padrão" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Default Option(s)" msgstr "Opção(es) padrão" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)" msgstr "Especifique a opção que será marcada por padrão
            Se houver múltiplos valores, separe-os com uma \",\" (vírgula)" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default Content" msgstr "Conteúdo padrão" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default value of the textarea" msgstr "Valor padrão da Área de Texto" #: pb-add-on-woocommerce/index.php:306 #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Required" msgstr "Obrigatório" #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Whether the field is required or not" msgstr "Se o campo é obrigatório ou não" #: profile-builder-2.0/admin/manage-fields.php:161 msgid "Overwrite Existing" msgstr "Sobrepor existente" #: profile-builder-2.0/admin/manage-fields.php:161 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
            Use this at your own risk" msgstr "Escolhendo \"Sim\" você adicionará o campo à lista, mas irá sobrescrever qualquer outro campo na base de dados que tenha o mesmo meta-name
            Use por seu próprio risco" #: profile-builder-2.0/admin/manage-fields.php:167 msgid "Field Properties" msgstr "Propriedades do campo" #: profile-builder-2.0/admin/manage-fields.php:181 msgid "Registration & Edit Profile" msgstr "Registro & Edição de Perfil" #: profile-builder-2.0/admin/manage-fields.php:200 msgid "Name" msgstr "Nome" #: profile-builder-2.0/admin/manage-fields.php:201 msgid "Usernames cannot be changed." msgstr "Nomes de usuários não podem ser mudados." #: pb-add-on-woocommerce/billing-fields.php:6 #: pb-add-on-woocommerce/shipping-fields.php:6 #: profile-builder-2.0/admin/manage-fields.php:202 msgid "First Name" msgstr "Primeiro Nome" #: pb-add-on-woocommerce/billing-fields.php:7 #: pb-add-on-woocommerce/shipping-fields.php:7 #: profile-builder-2.0/admin/manage-fields.php:203 msgid "Last Name" msgstr "Último nome" #: profile-builder-2.0/admin/manage-fields.php:204 #: profile-builder-2.0/modules/user-listing/userlisting.php:769 #: profile-builder-2.0/modules/user-listing/userlisting.php:2227 msgid "Nickname" msgstr "Apelido" #: profile-builder-2.0/admin/manage-fields.php:205 msgid "Display name publicly as" msgstr "Mostrar nome publicamente como" #: profile-builder-2.0/admin/manage-fields.php:206 msgid "Contact Info" msgstr "Informações de Contato" #: profile-builder-2.0/admin/manage-fields.php:207 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168 #: profile-builder-2.0/front-end/recover.php:118 #: profile-builder-2.0/modules/user-listing/userlisting.php:108 msgid "E-mail" msgstr "E-mail" #: profile-builder-2.0/admin/manage-fields.php:208 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32 #: profile-builder-2.0/modules/user-listing/userlisting.php:111 #: profile-builder-2.0/modules/user-listing/userlisting.php:751 #: profile-builder-2.0/modules/user-listing/userlisting.php:2221 msgid "Website" msgstr "Website" #: profile-builder-2.0/admin/manage-fields.php:212 msgid "AIM" msgstr "AIM" #: profile-builder-2.0/admin/manage-fields.php:213 msgid "Yahoo IM" msgstr "Yahoo IM" #: profile-builder-2.0/admin/manage-fields.php:214 msgid "Jabber / Google Talk" msgstr "Jabber / Google Talk" #: profile-builder-2.0/admin/manage-fields.php:217 msgid "About Yourself" msgstr "Sobre você" #: profile-builder-2.0/admin/manage-fields.php:218 #: profile-builder-2.0/modules/user-listing/userlisting.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:754 #: profile-builder-2.0/modules/user-listing/userlisting.php:2222 msgid "Biographical Info" msgstr "Informação biográfica" #: profile-builder-2.0/admin/manage-fields.php:218 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "Compartilhe um pouco de sua informação biográfica para preencher o seu perfil. Isso poderá ser mostrado publicamente." #: profile-builder-2.0/admin/manage-fields.php:219 #: profile-builder-2.0/front-end/recover.php:73 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "Password" #: profile-builder-2.0/admin/manage-fields.php:219 msgid "Type your password." msgstr "Digite seu password." #: profile-builder-2.0/admin/manage-fields.php:220 #: profile-builder-2.0/front-end/recover.php:74 msgid "Repeat Password" msgstr "Repita o Password" #: profile-builder-2.0/admin/manage-fields.php:220 msgid "Type your password again. " msgstr "Digite seu password novamente." #: profile-builder-2.0/admin/manage-fields.php:980 #: profile-builder-2.0/admin/manage-fields.php:1137 msgid "You must select a field\n" msgstr "Você deve selecionar um campo\n" #: profile-builder-2.0/admin/manage-fields.php:990 msgid "Please choose a different field type as this one already exists in your form (must be unique)\n" msgstr "Por favor escolha um tipo de campo diferente pois já existe um desses em seu formulário (ele deve ser único)\n" #: profile-builder-2.0/admin/manage-fields.php:1001 msgid "The entered avatar size is not between 20 and 200\n" msgstr "O tamanho do avatar digitado não está entre 20 e 200\n" #: profile-builder-2.0/admin/manage-fields.php:1004 msgid "The entered avatar size is not numerical\n" msgstr "O tamanho do avatar digitado não é numérico\n" #: profile-builder-2.0/admin/manage-fields.php:1012 msgid "The entered row number is not numerical\n" msgstr "O número de linha digitado não é numérico\n" #: profile-builder-2.0/admin/manage-fields.php:1015 msgid "You must enter a value for the row number\n" msgstr "Você deve digitar um valor para o número de linha\n" #: profile-builder-2.0/admin/manage-fields.php:1036 msgid "The entered value for the Datepicker is not a valid date-format\n" msgstr "O valor digitado para o Selecionador de Datas não está em um formato válido\n" #: profile-builder-2.0/admin/manage-fields.php:1039 msgid "You must enter a value for the date-format\n" msgstr "Você deve digitar um valor para o formato de data\n" #: profile-builder-2.0/admin/manage-fields.php:1067 #: profile-builder-2.0/admin/manage-fields.php:1075 #: profile-builder-2.0/admin/manage-fields.php:1086 msgid "That meta-name is already in use\n" msgstr "O meta-name já está sendo usado\n" #: profile-builder-2.0/admin/manage-fields.php:1117 msgid "The following option(s) did not coincide with the ones in the options list: %s\n" msgstr "A(s) seguinte(s) opção(es) não coincide com as da lista de opções: %s\n" #: profile-builder-2.0/admin/manage-fields.php:1121 msgid "The following option did not coincide with the ones in the options list: %s\n" msgstr "A seguinte opção não coincide com as da lista de opções: %s\n" #: profile-builder-2.0/admin/manage-fields.php:1144 msgid "That field is already added in this form\n" msgstr "Esse campo já foi adicionado a esse formulário\n" #: profile-builder-2.0/admin/manage-fields.php:1193 msgid "
            Title
            Type
            Meta Name
            Required
            " msgstr "
            Título
            Tipo
            Meta Name
            Obrigatório
            " #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108 #: profile-builder-2.0/features/functions.php:718 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Edit" msgstr "Editar" #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217 #: profile-builder-2.0/features/functions.php:711 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "Delete" msgstr "Deletar" #: profile-builder-2.0/admin/manage-fields.php:1208 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "Use esses shortcodes nas páginas que você quer que o formulário seja mostrado:" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Your Version" msgstr "Registre sua versão" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Version" msgstr "Registre a versão" #: profile-builder-2.0/admin/register-version.php:70 msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support." msgstr "Se você registrar essa versão do Profile Builder, você receberá informações sobre upgrades, atualizações e suporte técnico." #: profile-builder-2.0/admin/register-version.php:72 msgid " Serial Number:" msgstr "Número de série:" #: profile-builder-2.0/admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "O número de série foi validado com sucesso!" #: profile-builder-2.0/admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "O número de série digitado não pôde ser validado!" #: profile-builder-2.0/admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "O número de série não pôde ser validado porque encontra-se expirado!" #: profile-builder-2.0/admin/register-version.php:85 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!" msgstr "O número de série não pôde ser validado pois o tempo foi esgotado. Isso pode ter acontecido por problemas no servidor. Por favor tente novamente mais tarde!" #: profile-builder-2.0/admin/register-version.php:87 msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "(ex: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/features/functions.php:725 msgid "Content" msgstr "Conteúdo" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 msgid "Edit this item" msgstr "Editar esse item" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 msgid "Delete this item" msgstr "Deletar esse item" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705 msgid "Please enter a value for the required field " msgstr "Por favor digite um valor para o campo obrigatório" #: pb-add-on-woocommerce/woo-checkout-field-support.php:262 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122 msgid "Select File" msgstr "Selecionar Arquivo" #: pb-add-on-woocommerce/woo-checkout-field-support.php:252 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112 msgid "Remove" msgstr "Remover" #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8 msgid "You can add the information for the %s after you add a entry" msgstr "Você pode adicionar a informação para %s depois de adicionar uma entrada" #: pb-add-on-woocommerce/woo-checkout-field-support.php:268 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128 msgid "Upload " msgstr "Upload " #: profile-builder-2.0/features/class-list-table.php:184 msgid "No items found." msgstr "Nenhum item encontrado." #: profile-builder-2.0/features/class-list-table.php:308 msgid "Bulk Actions" msgstr "Ações em massa" #: profile-builder-2.0/features/class-list-table.php:318 msgid "Apply" msgstr "Aplicar" #: profile-builder-2.0/features/class-list-table.php:402 msgid "Show all dates" msgstr "Mostrar todas as datas" #: profile-builder-2.0/features/class-list-table.php:415 msgid "%1$s %2$d" msgstr "%1$s %2$d" #: profile-builder-2.0/features/class-list-table.php:431 msgid "List View" msgstr "Visualizar Lista" #: profile-builder-2.0/features/class-list-table.php:432 msgid "Excerpt View" msgstr "Visualizar Resumo" #: profile-builder-2.0/features/class-list-table.php:458 msgid "%s pending" msgstr "%s pendente" #: profile-builder-2.0/features/class-list-table.php:566 msgid "%1$s of %2$s" msgstr "%1$s de %2$s" #: profile-builder-2.0/features/class-list-table.php:713 msgid "Select All" msgstr "Selecionar Tudo" #: profile-builder-2.0/features/functions.php:526 msgid "Strength indicator" msgstr "Indicador de força" #: profile-builder-2.0/features/admin-approval/admin-approval.php:14 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453 msgid "Admin Approval" msgstr "Aprovação do Admin" #: profile-builder-2.0/features/admin-approval/admin-approval.php:28 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "Você deseja" #: profile-builder-2.0/features/admin-approval/admin-approval.php:51 msgid "Your session has expired! Please refresh the page and try again" msgstr "Sua sessão expirou! Por favor atualize a página e tente novamente" #: profile-builder-2.0/features/admin-approval/admin-approval.php:64 msgid "User successfully approved!" msgstr "Usuário aprovado com sucesso!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:74 msgid "User successfully unapproved!" msgstr "Usuário reprovado com sucesso!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:80 msgid "User successfully deleted!" msgstr "Usuário deletado com sucesso!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:85 #: profile-builder-2.0/features/admin-approval/admin-approval.php:131 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "Houve um erro ou então você não tem permissão para essa ação!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:96 msgid "Your session has expired! Please refresh the page and try again." msgstr "Sua sessão expirou! Por favor atualize a página e tente novamente." #: profile-builder-2.0/features/admin-approval/admin-approval.php:109 msgid "Users successfully approved!" msgstr "Usuários aprovados com sucesso!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:119 msgid "Users successfully unapproved!" msgstr "Usuários reprovados com sucesso!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:127 msgid "Users successfully deleted!" msgstr "Usuários deletados com sucesso!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:147 msgid "Your account on %1$s has been approved!" msgstr "Sua conta em %1$s foi aprovada!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:148 #: profile-builder-2.0/features/admin-approval/admin-approval.php:151 msgid "approved" msgstr "aprovado" #: profile-builder-2.0/features/admin-approval/admin-approval.php:150 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "O administrador acabou de aprovar sua conta em %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:155 msgid "Your account on %1$s has been unapproved!" msgstr "Sua conta em %1$s foi reprovada!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:156 #: profile-builder-2.0/features/admin-approval/admin-approval.php:159 msgid "unapproved" msgstr "reprovado" #: profile-builder-2.0/features/admin-approval/admin-approval.php:158 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "O administrador acabou de reprovar sua conta em %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:177 msgid "ERROR: Your account has to be confirmed by an administrator before you can log in." msgstr "ERRO: Sua conta precisa ser confirmada pelo administrador antes de você fazer o login." #: profile-builder-2.0/features/admin-approval/admin-approval.php:189 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature." msgstr "Sua conta precisa ser confirmada pelo administrador antes de você poder usar a função de \"Recuperação de Password\"" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "deletar esse usuário?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "reprovar esse usuário?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr "Reprovar" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "aprovar esse usuário?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "Aprovar" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167 #: profile-builder-2.0/modules/user-listing/userlisting.php:278 #: profile-builder-2.0/modules/user-listing/userlisting.php:742 #: profile-builder-2.0/modules/user-listing/userlisting.php:2224 msgid "Firstname" msgstr "Primeiro nome" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168 #: profile-builder-2.0/modules/user-listing/userlisting.php:745 #: profile-builder-2.0/modules/user-listing/userlisting.php:2225 msgid "Lastname" msgstr "Último nome" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170 #: profile-builder-2.0/modules/user-listing/userlisting.php:149 #: profile-builder-2.0/modules/user-listing/userlisting.php:279 #: profile-builder-2.0/modules/user-listing/userlisting.php:772 #: profile-builder-2.0/modules/user-listing/userlisting.php:2229 msgid "Role" msgstr "Função" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169 msgid "Registered" msgstr "Registrado" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "Status do usuário" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "Você deseja aprovar em massa os usuários selecionados?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "Você deseja reprovar em massa os usuários selecionados?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "Você deseja deletar em massa os usuários selecionados?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278 msgid "Sorry, but you don't have permission to do that!" msgstr "Desculpe, mas você não tem permissão para fazer isso!" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339 msgid "Approved" msgstr "Aprovado" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341 msgid "Unapproved" msgstr "Reprovado" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454 msgid "All Users" msgstr "Todos os usuários" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 msgid "delete this user from the _signups table?" msgstr "deletar esse usuário da tabela _signups?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 msgid "confirm this email yourself?" msgstr "confirma esse seu email?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218 msgid "Confirm Email" msgstr "Confirmar Email" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 msgid "resend the activation link?" msgstr "reenviar o link de atiavação?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219 msgid "Resend Activation Email" msgstr "Reenviar o email de ativação" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249 msgid "%s couldn't be deleted" msgstr "%s não pôde ser deletado" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253 msgid "All users have been successfully deleted" msgstr "Todos os usuários foram deletados com sucesso" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263 msgid "The selected users have been activated" msgstr "Os usuários selecionados foram ativados" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274 msgid "The selected users have had their activation emails resent" msgstr "Os usuários selecionados tiveram seus emails de ativação reenviados" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "Usuários com endereço de email não confirmados" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "Houve um erro executando essa ação!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "O usuário selecionado não pôde ser deletado" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "Email de notificação reenviado ao usuário" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398 msgid "[%1$s] Activate %2$s" msgstr "[%1$s] Ativar %2$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442 #: profile-builder-2.0/front-end/register.php:71 msgid "Could not create user!" msgstr "Usuário não pôde ser criado!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445 msgid "That username is already activated!" msgstr "O usuário já está ativado!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468 msgid "There was an error while trying to activate the user" msgstr "Houve um erro na tentativa de ativar o usuário" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73 msgid "A new subscriber has (been) registered!" msgstr "Um novo assinante foi registrado!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "Novo assinante em %1$s.

            Usuário:%2$s
            E-mail:%3$s
            " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634 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!" msgstr "A função de \"Aprovação do Admin\" estava ativada no momento do registro então por favor lembre-se de que precisa aprovar esse usuário antes dele/dela fazer o login!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570 msgid "[%1$s] Your new account information" msgstr "[%1$s] Informações de sua nova conta" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581 msgid "Welcome to %1$s!


            Your username is:%2$s and password:%3$s" msgstr "Bemvindo ao %1$s!


            Seu usuário é::%2$s e password:%3$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642 #: profile-builder-2.0/front-end/register.php:125 msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email." msgstr "Antes de acessar sua conta, ela precisa ser aprovada pelo administrador. Você será notificado via email quando isso acontecer." #: profile-builder-2.0/features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "Esse widget de login permite adicionar um formulário de login na barra lateral." #: profile-builder-2.0/features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "Widget de Login Profile Builder" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36 #: profile-builder-2.0/front-end/class-formbuilder.php:415 #: profile-builder-2.0/front-end/login.php:250 msgid "Register" msgstr "Registrar" #: profile-builder-2.0/features/login-widget/login-widget.php:63 msgid "Title:" msgstr "Título:" #: profile-builder-2.0/features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "URL para redirecionar após login (opcional):" #: profile-builder-2.0/features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "ULR da página de registro (opcional):" #: profile-builder-2.0/features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "URL da página de recuperação de password (opcional):" #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91 #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "Os nomes de usuários não podem ser mudados." #: profile-builder-2.0/front-end/class-formbuilder.php:136 msgid "Only an administrator can add new users." msgstr "Somente o administrador pode adicionar novos usuários." #: profile-builder-2.0/front-end/class-formbuilder.php:146 msgid "Users can register themselves or you can manually create users here." msgstr "Usuários podem se registrar ou você pode criá-los manualmente aqui." #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "Users cannot currently register themselves, but you can manually create users here." msgstr "Usuários não podem atualmente se registrarem, mas você pode criá-los manualmente aqui." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "Você já está logado como %1s. Você não precisa de outra conta. %2s" #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Log out of this account." msgstr "Desconectar dessa conta." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Logout" msgstr "Desconectar" #: profile-builder-2.0/front-end/class-formbuilder.php:175 msgid "You must be logged in to edit your profile." msgstr "Você deve estar logado para editar seu perfil." #: profile-builder-2.0/features/functions.php:994 msgid "here" msgstr "aqui" #: profile-builder-2.0/features/functions.php:995 msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s" msgstr "Você será redirecionado automaticamente em instantes. Se você visualizar essa página por mais de %1$d segundos, por favor clique %2$s.%3$s" #: profile-builder-2.0/front-end/class-formbuilder.php:315 #: profile-builder-2.0/front-end/class-formbuilder.php:322 msgid "The account %1s has been successfully created!" msgstr "A conta %1s foi criada com sucesso!" #: profile-builder-2.0/front-end/class-formbuilder.php:318 #: profile-builder-2.0/front-end/class-formbuilder.php:328 msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link." msgstr "Antes de acessar sua conta %1s, você precisa confirmar seu endereço de email. Por favor cheque o seu inbox e clique no link de ativação." #: profile-builder-2.0/front-end/class-formbuilder.php:324 msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email." msgstr "Antes de acessar sua conta %1s, um administrador precisa aprová-la. Você será notificado via email quando isso acontecer." #: profile-builder-2.0/front-end/class-formbuilder.php:347 msgid "Your profile has been successfully updated!" msgstr "Seu perfil foi atualizado com sucesso!" #: profile-builder-2.0/front-end/class-formbuilder.php:358 msgid "There was an error in the submitted form" msgstr "Houve um erro no formulário enviado" #: profile-builder-2.0/front-end/class-formbuilder.php:415 msgid "Add User" msgstr "Adicionar usuário" #: profile-builder-2.0/admin/add-ons.php:170 #: profile-builder-2.0/front-end/class-formbuilder.php:418 msgid "Update" msgstr "Atualizar" #: profile-builder-2.0/front-end/class-formbuilder.php:481 msgid "Send these credentials via email." msgstr "Enviar essas credenciais via email." #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92 #: profile-builder-2.0/front-end/login.php:137 #: profile-builder-2.0/front-end/login.php:144 #: profile-builder-2.0/front-end/login.php:158 #: profile-builder-2.0/front-end/recover.php:17 #: profile-builder-2.0/front-end/recover.php:245 msgid "ERROR" msgstr "ERRO" #: profile-builder-2.0/front-end/login.php:137 msgid "The password you entered is incorrect." msgstr "O password digitado está incorreto." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Password Lost and Found." msgstr "Password Achados e Perdidos." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Lost your password" msgstr "Perdeu seu password" #: profile-builder-2.0/front-end/login.php:158 msgid "Both fields are empty." msgstr "Ambos os campos estão vazios." #: profile-builder-2.0/front-end/login.php:296 msgid "You are currently logged in as %1$s. %2$s" msgstr "Você está logado como %1$s. %2$s" #: profile-builder-2.0/front-end/login.php:295 #: profile-builder-2.0/front-end/logout.php:25 msgid "Log out of this account" msgstr "Desconectar dessa conta" #: profile-builder-2.0/front-end/login.php:295 msgid "Log out" msgstr "Desconectar" #: profile-builder-2.0/front-end/recover.php:17 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature." msgstr "Sua conta precisa ser confirmada pelo administrador antes de você poder usar a função de \"Resetar Password\"" #: profile-builder-2.0/front-end/recover.php:94 msgid "Reset Password" msgstr "Resetar Password" #: profile-builder-2.0/front-end/recover.php:121 msgid "Please enter your username or email address." msgstr "Por favor digite seu usuário ou email." #: profile-builder-2.0/front-end/recover.php:125 msgid "You will receive a link to create a new password via email." msgstr "Você receberá um link para criar um novo password via email." #: profile-builder-2.0/front-end/recover.php:122 msgid "Username or E-mail" msgstr "Usuário ou E-mail" #: profile-builder-2.0/front-end/recover.php:138 msgid "Get New Password" msgstr "Criar novo password" #: profile-builder-2.0/front-end/recover.php:185 msgid "The username entered wasn't found in the database!" msgstr "O usuário digitado não foi encontrado na base de dados!" #: profile-builder-2.0/front-end/recover.php:185 msgid "Please check that you entered the correct username." msgstr "Por favor confirme se você digitou o usuário corretamente." #: profile-builder-2.0/front-end/recover.php:200 msgid "Check your e-mail for the confirmation link." msgstr "Cheque seu e-mail para o link de confirmação." #: profile-builder-2.0/front-end/recover.php:235 msgid "Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s" msgstr "Alguém solicitou que o reset do password da seguinte conta:%1$s
            Se isso foi um erro, apenas ignore esse email e nada acontecerá.
            Para resetar seu password, visite o seguinte link:%2$s" #: profile-builder-2.0/front-end/recover.php:238 msgid "Password Reset from \"%1$s\"" msgstr "Reset do password de \"%1$s\"" #: profile-builder-2.0/front-end/recover.php:245 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "Houve um erro na tentativa de enviar o link de ativação para %1$s!" #: profile-builder-2.0/front-end/recover.php:207 msgid "The email address entered wasn't found in the database!" msgstr "O endereço de email não foi encontrado na base de dados!" #: profile-builder-2.0/front-end/recover.php:207 msgid "Please check that you entered the correct email address." msgstr "Por favor cheque se você digitou o endereço de email corretamente." #: profile-builder-2.0/front-end/recover.php:273 msgid "Your password has been successfully changed!" msgstr "Seu password foi alterado com sucesso!" #: profile-builder-2.0/front-end/recover.php:292 msgid "You have successfully reset your password to: %1$s" msgstr "Você resetou com sucesso o password de: %1$s" #: profile-builder-2.0/front-end/recover.php:295 #: profile-builder-2.0/front-end/recover.php:306 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "Password resetado com sucesso para %1$s em \"%2$s\"" #: profile-builder-2.0/front-end/recover.php:303 msgid "%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s" msgstr "%1$s solicitou uma alteração de password através da função de reset de password.
            Seu novo password é:%2$s" #: profile-builder-2.0/front-end/recover.php:320 msgid "The entered passwords don't match!" msgstr "Os passwords digitados não conferem!" #: profile-builder-2.0/front-end/recover.php:375 msgid "ERROR:" msgstr "ERRO:" #: profile-builder-2.0/front-end/recover.php:375 msgid "Invalid key!" msgstr "Chave inválida!" #: profile-builder-2.0/front-end/register.php:56 msgid "Invalid activation key!" msgstr "Chave de ativação inválida!" #: profile-builder-2.0/front-end/register.php:60 msgid "This username is now active!" msgstr "Esse usuário está ativo!" #: profile-builder-2.0/front-end/register.php:74 msgid "This username is already activated!" msgstr "Esse usuário já está ativado!" #: profile-builder-2.0/front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "Seu email foi confirmado com sucesso." #: profile-builder-2.0/front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "Houve um erro na tentativa de ativar o usuário." #: pb-add-on-woocommerce/index.php:393 #: profile-builder-2.0/front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "O email digitado não é um endereço válido." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "Esse email está reservado para ser usado em breve." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 #: profile-builder-2.0/front-end/default-fields/username/username.php:49 #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "Por favor tente um diferente!" #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "Esse email já está sendo usado." #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37 #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "Os passwords não conferem" #: profile-builder-2.0/front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "Esse usuário já existe." #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "Esse usuário está reservado para ser usado em breve." #: profile-builder-2.0/modules/user-listing/userlisting.php:276 msgid "Avatar" msgstr "Avatar" #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72 #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45 #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45 #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40 #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34 #: profile-builder-2.0/front-end/extra-fields/input/input.php:30 #: profile-builder-2.0/front-end/extra-fields/map/map.php:51 #: profile-builder-2.0/front-end/extra-fields/number/number.php:30 #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39 #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52 #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46 #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49 #: profile-builder-2.0/front-end/extra-fields/select/select.php:51 #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70 #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "obrigatório" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48 msgid "To use reCAPTCHA you must get an API key from" msgstr "Para usar o reCAPTCHA você deve ter uma chave API de" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "Por motivos de segurança, você deve passar o IP remoto para o reCAPTCHA!" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "Para usar o reCAPTCHA você deve ter uma chave API pública de:" #: profile-builder-2.0/modules/modules.php:11 #: profile-builder-2.0/modules/modules.php:58 msgid "Modules" msgstr "Módulos" #: profile-builder-2.0/modules/modules.php:59 msgid "Here you can activate / deactivate available modules for Profile Builder." msgstr "Aqui você pode ativar/desativar os módulos disponíveis para o Profile Builder." #: profile-builder-2.0/modules/modules.php:69 msgid "Name/Description" msgstr "Nome/Descrição" #: profile-builder-2.0/modules/modules.php:70 msgid "Status" msgstr "Status" #: profile-builder-2.0/modules/modules.php:77 #: profile-builder-2.0/modules/modules.php:84 #: profile-builder-2.0/modules/modules.php:91 #: profile-builder-2.0/modules/modules.php:98 #: profile-builder-2.0/modules/modules.php:105 #: profile-builder-2.0/modules/modules.php:112 #: profile-builder-2.0/modules/modules.php:119 msgid "Active" msgstr "Ativo" #: profile-builder-2.0/modules/modules.php:78 #: profile-builder-2.0/modules/modules.php:85 #: profile-builder-2.0/modules/modules.php:92 #: profile-builder-2.0/modules/modules.php:99 #: profile-builder-2.0/modules/modules.php:106 #: profile-builder-2.0/modules/modules.php:113 #: profile-builder-2.0/modules/modules.php:120 msgid "Inactive" msgstr "Inativo" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:96 msgid "Admin Email Customizer" msgstr "Customizador do Email Admin" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:103 msgid "User Email Customizer" msgstr "Customizador do Email do Usuário" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253 msgid "Save" msgstr "Salvar" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "Redireciona" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "URL" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save." msgstr "Essas configurações também são replicadas na página de configurações do \"Customizador de Emails do Usuário\" após serem salvas." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41 msgid "From (name)" msgstr "De (nome)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49 msgid "From (reply-to email)" msgstr "De (email de resposta)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57 msgid "Common Settings" msgstr "Configurações comuns" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" msgstr "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274 msgid "Email Subject" msgstr "Assunto do Email" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84 msgid "Default Registration & Registration with Email Confirmation" msgstr "Registro padrão & Registro com confirmação de email" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log in!

            \n" msgstr "" "\n" "\n" "

            Novo assinante em {{site_name}}.

            \n" "

            Usuário:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            A função de Aprovação do Admin estava ativada no momento do registro,\n" "então por favor lembre-se que você precisa aprovar esse usuário para que ele possa fazer o login!

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143 msgid "Registration with Admin Approval" msgstr "Registro com aprovação do admin" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "Tags disponíveis" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170 msgid "User Meta" msgstr "Meta User" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "URL do site" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "Nome do site" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25 #: profile-builder-2.0/modules/user-listing/userlisting.php:158 msgid "User Id" msgstr "ID do usuário" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33 msgid "Reply To" msgstr "Responder para" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40 msgid "Activation Key" msgstr "Chave de ativação" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41 msgid "Activation Url" msgstr "URL de ativação" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42 msgid "Activation Link" msgstr "Link de ativação" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" msgstr "" "\n" "\n" "

            Bemvindo ao {{site_name}}!

            \n" "

            Seu usuário é: {{username}} e password:{{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85 msgid "Default Registration" msgstr "Registro padrão" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91 msgid "" "\n" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials.

            \n" msgstr "" "\n" "\n" "

            Para ativar seu usuário, por favor clique no seguinte link:
            \n" "{{{activation_link}}}

            \n" "

            Após a ativação você receberá um email com suas credenciais.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103 msgid "[{{site_name}}] Activate {{username}}" msgstr "[{{site_name}}] Ativar {{username}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114 msgid "Registration with Email Confirmation" msgstr "Registro com confirmação de email" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n" msgstr "" "\n" "\n" "

            Bemvindo ao {{site_name}}!

            \n" "

            Seu usuário é: {{username}} e password:{{password}}

            \n" "

            Antes de acessar sua conta, o administrador precisa aprová-la. Você será notificado por email quando isso acontecer.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132 msgid "A new account has been created for you on {{site_name}}" msgstr "Uma nova conta foi criada para você em {{site_name}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148 msgid "" "\n" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "\n" "

            Boas notícias!

            \n" "

            O administrador acaba de aprovar a sua conta: {{username}} em {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159 msgid "Your account on {{site_name}} has been approved!" msgstr "Sua conta no {{site_name}} foi aprovada!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170 msgid "User Approval Notification" msgstr "Notificação de aprovação de usuário" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175 msgid "" "\n" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Olá,

            \n" "

            Infelizmente o administrador reprovou a criação de sua conta: {{username}} em {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187 msgid "Your account on {{site_name}} has been unapproved!" msgstr "Sua conta no {{site_name}} foi reprovada!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198 msgid "Unapproved User Notification" msgstr "Notificação de usuário reprovado" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "Formulário de Edição de Perfil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13 #: profile-builder-2.0/modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "Adicionar novo" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "Adicionar novo formulário de edição de perfil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "Editar os formulários de edição de perfil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "Novo formulário de edição de perfil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "Formulários de Edição de Perfil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "Visualiza o formulário de edição de perfil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "Buscar os formulários de edição de perfil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "Nenhum formulário de edição de perfil encontrado" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "Nenhum Formulário de Edição de Perdil encontrado na lixeira" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138 #: profile-builder-2.0/modules/user-listing/userlisting.php:2115 msgid "Shortcode" msgstr "Shortcode" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159 #: profile-builder-2.0/modules/user-listing/userlisting.php:2136 msgid "(no title)" msgstr "(sem título)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178 #: profile-builder-2.0/modules/user-listing/userlisting.php:2156 msgid "The shortcode will be available after you publish this form." msgstr "O shortcode estará disponível após a publicação desse formulário." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180 #: profile-builder-2.0/modules/user-listing/userlisting.php:2158 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "Use esse shortcode na página que deseja que o formulário seja mostrado:" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184 #: profile-builder-2.0/modules/user-listing/userlisting.php:2162 msgid "Note: changing the form title also changes the shortcode!" msgstr "Nota: alterar o título do formulário também altera o shortcode!" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190 #: profile-builder-2.0/modules/user-listing/userlisting.php:2195 msgid "Form Shortcode" msgstr "Shortcode do formulário" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "Se redireciona o usuário para uma página específica ou não" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "Mostrar mensagens" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "Tempo permitido para mostrar qualquer mensagem de sucesso (em segundos)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 msgid "Specify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.com" msgstr "Especificar a URL da página que os usuários serão redirecionados após atualizarem seus perfis usando esse formulário
            Use o seguinte formato: http://www.meusite.com" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "Após a atualização do perfil..." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "Adicoinar novo campo a lista" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage Title (Type)" msgstr "
            Título (Tipo)
            " #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "Você precisa especificar o título do formulário antes de criá-lo" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "Formulário de Registro" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "Adicionar novo formulário de registro" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "Editar os formulários de registro" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "Novo formulário de registro" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "Formulários de Registro" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "Visualizar o formulário de registro" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "Buscar os formulários de registro" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "Nenhum formulário de registro encontrado" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "Nenhum formulário de registro encontrado na lixeira" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "Função padrão" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "Ajustar Função" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Choose what role the user will have after (s)he registered
            If not specified, defaults to the role set in the WordPress settings" msgstr "Escolha qual função o usuário terá após registrar-se
            Se não especificado, a função padrão será a definida nas configurações do WordPress" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "Login Automático" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Whether to automatically log in the newly registered user or not
            Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work" msgstr "Se realizar automaticamente o login do usuário recém registrado ou não
            Funciona apenas em single-sites sem as funções de \"Aprovação do Admin\" e \"Confirmação de Email\" ativadas
            CUIDADO: Usar o cache do formulário de registro fará o login automático não funcionar" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "Specify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.com" msgstr "Especifique a URL da página que os usuários serão redirecionamentos após registrarem-se por esse formulário
            Use o seguinte formato: http://www.meusite.com" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "Após o registro..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1038 #: profile-builder-2.0/modules/user-listing/userlisting.php:1485 #: profile-builder-2.0/modules/user-listing/userlisting.php:1953 #: profile-builder-2.0/modules/user-listing/userlisting.php:2426 msgid "Search Users by All Fields" msgstr "Buscar usuários por todos os campos" #: profile-builder-2.0/modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "Adicionar nova listagem de usuário" #: profile-builder-2.0/modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "Editar a Listagem de Usuários" #: profile-builder-2.0/modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "Nova listagem de usuário" #: profile-builder-2.0/modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "Visualizar a Listagem de Usuários" #: profile-builder-2.0/modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "Buscar a listagem de usuários" #: profile-builder-2.0/modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "Nenhum registro de usuário encontrado" #: profile-builder-2.0/modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "Nenhum registro de usuário encontrado na lixeira" #: profile-builder-2.0/modules/user-listing/userlisting.php:105 msgid "Display name as" msgstr "Mostrar nome como" #: profile-builder-2.0/modules/user-listing/userlisting.php:150 #: profile-builder-2.0/modules/user-listing/userlisting.php:2223 msgid "Registration Date" msgstr "Data do registro" #: profile-builder-2.0/modules/user-listing/userlisting.php:151 #: profile-builder-2.0/modules/user-listing/userlisting.php:2228 msgid "Number of Posts" msgstr "Número de postagens" #: profile-builder-2.0/modules/user-listing/userlisting.php:155 msgid "More Info" msgstr "Mais Informações" #: profile-builder-2.0/modules/user-listing/userlisting.php:156 msgid "More Info Url" msgstr "URL de mais informações" #: profile-builder-2.0/modules/user-listing/userlisting.php:157 msgid "Avatar or Gravatar" msgstr "Avatar ou Gravatar" #: profile-builder-2.0/modules/user-listing/userlisting.php:196 #: profile-builder-2.0/modules/user-listing/userlisting.php:227 msgid "Extra Functions" msgstr "Funções extra" #: profile-builder-2.0/modules/user-listing/userlisting.php:199 msgid "Pagination" msgstr "Paginação" #: profile-builder-2.0/modules/user-listing/userlisting.php:200 msgid "Search all Fields" msgstr "Buscar todos os campos" #: profile-builder-2.0/modules/user-listing/userlisting.php:229 msgid "Go Back Link" msgstr "Link Voltar" #: profile-builder-2.0/modules/user-listing/userlisting.php:247 msgid "All-userlisting Template" msgstr "Template de listagem de todos usuários" #: profile-builder-2.0/modules/user-listing/userlisting.php:250 msgid "Single-userlisting Template" msgstr "Template de entrada único usuário" #: profile-builder-2.0/modules/user-listing/userlisting.php:733 msgid "First/Lastname" msgstr "Primeiro/Último nome" #: profile-builder-2.0/modules/user-listing/userlisting.php:281 #: profile-builder-2.0/modules/user-listing/userlisting.php:739 msgid "Sign-up Date" msgstr "Data de cadastro" #: profile-builder-2.0/modules/user-listing/userlisting.php:748 #: profile-builder-2.0/modules/user-listing/userlisting.php:2226 msgid "Display Name" msgstr "Mostrar nome" #: profile-builder-2.0/modules/user-listing/userlisting.php:280 #: profile-builder-2.0/modules/user-listing/userlisting.php:757 msgid "Posts" msgstr "Postagens" #: profile-builder-2.0/modules/user-listing/userlisting.php:760 #: profile-builder-2.0/modules/user-listing/userlisting.php:2233 msgid "Aim" msgstr "Aim" #: profile-builder-2.0/modules/user-listing/userlisting.php:763 #: profile-builder-2.0/modules/user-listing/userlisting.php:2234 msgid "Yim" msgstr "Yim" #: profile-builder-2.0/modules/user-listing/userlisting.php:766 #: profile-builder-2.0/modules/user-listing/userlisting.php:2235 msgid "Jabber" msgstr "Jabber" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "Click here to see more information about this user" msgstr "Clique aqui para ver mais informações sobre esse usuário" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "More..." msgstr "Mais..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1293 msgid "Click here to see more information about this user." msgstr "Clique aqui para ver mais informações sobre esse usuário." #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 #: profile-builder-2.0/modules/user-listing/userlisting.php:1442 msgid "Click here to go back" msgstr "Clique aqui para voltar" #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 msgid "Back" msgstr "Voltar" #: profile-builder-2.0/modules/user-listing/userlisting.php:1472 msgid "«« First" msgstr "«« Primeira" #: profile-builder-2.0/modules/user-listing/userlisting.php:1473 msgid "« Prev" msgstr "« Ant" #: profile-builder-2.0/modules/user-listing/userlisting.php:1474 msgid "Next » " msgstr "Próx » " #: profile-builder-2.0/modules/user-listing/userlisting.php:1475 msgid "Last »»" msgstr "Última »»" #: profile-builder-2.0/modules/user-listing/userlisting.php:1504 msgid "You don't have any pagination settings on this userlisting!" msgstr "Você não tem nenhuma configuração de paginação nessa listagem de usuários!" #: profile-builder-2.0/modules/user-listing/userlisting.php:1970 msgid "Search" msgstr "Buscar" #: profile-builder-2.0/modules/user-listing/userlisting.php:1971 msgid "Clear Results" msgstr "Limpar resultados" #: profile-builder-2.0/modules/user-listing/userlisting.php:2165 #: profile-builder-2.0/modules/user-listing/userlisting.php:2169 msgid "Extra shortcode parameters" msgstr "Parâmetros extra do shortcode" #: profile-builder-2.0/modules/user-listing/userlisting.php:2172 msgid "displays users having a certain meta-value within a certain (extra) meta-field" msgstr "mostra usuários que tem algum meta-value dentro de um determinado meta-field (extra)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2173 msgid "Example:" msgstr "Exemplo:" #: profile-builder-2.0/modules/user-listing/userlisting.php:2175 msgid "Remember though, that the field-value combination must exist in the database." msgstr "Lembre-se porém que a combinação de campo-valor deve existir na base de dados." #: profile-builder-2.0/modules/user-listing/userlisting.php:2250 msgid "Random (very slow on large databases > 10K user)" msgstr "Aleatório (muito lento em bases de dados > 10 mil usuários)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Roles to Display" msgstr "Funções para mostrar" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Restrict the userlisting to these selected roles only
            If not specified, defaults to all existing roles" msgstr "Restrinjir a listagem de usuários para apenas as funções selecionadas
            Se não especificado, o padrão são todas as funções existentes" #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Number of Users/Page" msgstr "Número de usuários/página" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Default Sorting Criteria" msgstr "Critério de ordenação padrão" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Set the default sorting criteria
            This can temporarily be changed for each new session" msgstr "Defina o critério de ordenação padrão
            Isso pode ser temporariamente mudado para cada nova sessão" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Default Sorting Order" msgstr "Prioridade da ordenação padrão" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Set the default sorting order
            This can temporarily be changed for each new session" msgstr "Defina a ordem padrão de ordenação
            Isso pode ser mudado temporariamente durante cada nova sessão" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Avatar Size (All-userlisting)" msgstr "Tamanho do avatar (toda a listagem de usuários)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Set the avatar size on the all-userlisting only" msgstr "Ajusta o tamanho do avatar apenas na listagem de todos os usuários" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Avatar Size (Single-userlisting)" msgstr "Tamanho do avatar (listagem de usuário única)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Set the avatar size on the single-userlisting only" msgstr "Defina o tamanho do avatar na entrada única de usuário" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Visible only to logged in users?" msgstr "Visível somente para usuários logados?" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "The userlisting will only be visible only to the logged in users" msgstr "A entrada de usuário será visível apenas para usuários logados" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "Visible to following Roles" msgstr "Visível às seguintes Funções" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "The userlisting will only be visible to the following roles" msgstr "A entrada de usuário só será visível para as seguintes funções" #: profile-builder-2.0/modules/user-listing/userlisting.php:2275 msgid "Userlisting Settings" msgstr "Configurações da entrada de usuário" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "Você precisa ativar a função de Listagem de Usuários dentro da aba \"Módulos\"!" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You can find it in the Profile Builder menu." msgstr "Você pode encontrar isso no menu do Profile Builder." #: profile-builder-2.0/modules/user-listing/userlisting.php:2565 msgid "No results found!" msgstr "Nenhum resultado encontrado!"translation/profile-builder-nl_NL.po000066600000662120152141651170013544 0ustar00# Translation of Profile Builder in Dutch # This file is distributed under the same license as the Profile Builder package. msgid "" msgstr "" "PO-Revision-Date: 2017-05-23 06:43:10+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: GlotPress/0.1\n" "Project-Id-Version: Profile Builder\n" #: profile-builder-2.0/admin/general-settings.php:154 msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s." msgstr "" #: profile-builder-2.0/admin/general-settings.php:146 msgid "\"Roles Editor\" Activated:" msgstr "" #: profile-builder-2.0/features/roles-editor/roles-editor.php:300 msgid "M j, Y @ G:i" msgstr "" #: profile-builder-2.0/front-end/recover.php:117 msgid "Please enter your email address." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yy" msgstr "Specificeer het datumformaat als u de datumkiezer gebruikt
            Geldige opties: 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, @
            Is standaard mm/dd/yy, indien niet gespecificeerd." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244 msgid "Individual redirects defined in shortcodes; redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects." msgstr "Individuele doorverwijzingen gedefinieerd in shortcodes; redirect_priority=\"top\" parameter kan aan elke shortcode toegevoegd worden, dan heeft deze shortcode doorverwijzing voorrang op elke andere doorverwijzing." #: profile-builder-2.0/admin/manage-fields.php:1217 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." msgstr "Als je geïnteresseerd bent in het weergeven van verschillende velden in de registratie- en profiel bewerkingsformulieren, gebruik dan de invoegtoepassing Meerdere Registraties & Profiel Bewerkingsformulieren." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "Meerdere Registratie en Profiel Bewerkingsformulieren doorverwijs instellingen" #: profile-builder-2.0/admin/register-version.php:251 msgid "

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            " msgstr "

            Uw Profile Builder licentie verloopt op %5$s.
            %1$sVernieuw uw Licentie%2$s om productdownloads, automatische updates en ondersteuning te blijven ontvangen. %3$sVernieuw nu en krijg 40% korting %4$s %6$sSluiten%7$s

            " #: profile-builder-2.0/admin/register-version.php:246 msgid "

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            " msgstr "

            Uw Profile Builder licentie is verlopen.
            %1$sVernieuw uw Licentie%2$s om productdownloads, automatische updates en ondersteuning te blijven ontvangen. %3$sVernieuw nu en krijg 40% %4$s korting. %5$sSluiten%6$s

            " #: profile-builder-2.0/front-end/recover.php:159 msgid "You are already logged in. You can change your password on the edit profile form." msgstr "U bent reeds ingelogd. Wijzig uw wachtwoord via het profiel bewerkingsformulier." #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "Uw website ziet er zo uit:
            " #: profile-builder-2.0/features/functions.php:909 msgid "

            You can visit your site at " msgstr "

            U kunt uw website bezoeken via " #: profile-builder-2.0/features/functions.php:896 msgid "

            Also, you will be able to visit your site at " msgstr "

            Ook kunt u uw website bezoeken via " #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138 msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network." msgstr "Privacy: Ik wil dat mijn website getoond wordt in zoekmachines en in publieke weergaves rond dit netwerk." #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "Website Titel" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "Website URL slug" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "Ja, ik wil een nieuwe website maken" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36 #: profile-builder-2.0/modules/user-listing/userlisting.php:118 msgid "Blog URL" msgstr "Blog URL" #: profile-builder-2.0/admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "Blog Details - worden alleen getoond op Registratie Pagina!" #: profile-builder-2.0/admin/manage-fields.php:222 msgid "Blog Details" msgstr "Blog Details" #: profile-builder-2.0/admin/pms-cross-promotion.php:239 msgid "Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "Sta je gebruikers toe om betaalde accounts met Profile Builder te hebben. %1$sLees meer >%2$s %3$sSluiten%4$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579 msgid "Welcome to %1$s!


            Your username is:%2$s" msgstr "Welkom bij %1$s!


            Je gebruikersnaam is:%2$s" #: profile-builder-2.0/modules/user-listing/userlisting.php:1320 msgid "View Map" msgstr "Bekijk plattegrond" #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267 #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367 #: pb-add-on-woocommerce/index.php:493 msgid "Address line 2" msgstr "Adresregel 2" #: pb-add-on-woocommerce/index.php:256 msgid "Billing Fields" msgstr "Factuurvelden" #: pb-add-on-woocommerce/index.php:256 msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "Selecteer welke WooCommerce factuurvelden getoond worden aan de gebruiker (versleep om te herordenen) en welke verplicht zijn" #: pb-add-on-woocommerce/index.php:257 msgid "Billing Fields Order" msgstr "Volgorde factuurvelden" #: pb-add-on-woocommerce/index.php:257 msgid "Save the billing fields order from the billing fields checkboxes" msgstr "Sla de volgorde van de factuurvelden op o.b.v. de selectievakjes voor de factuurvelden" #: pb-add-on-woocommerce/index.php:258 msgid "Billing Fields Name" msgstr "Naam factuurveld" #: pb-add-on-woocommerce/index.php:258 msgid "Save the billing fields names" msgstr "Sla de namen van de factuurvelden op" #: pb-add-on-woocommerce/index.php:275 msgid "Shipping Fields" msgstr "Bezorgvelden" #: pb-add-on-woocommerce/index.php:275 msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "Selecteer welke WooCommerce bezorgvelden getoond worden aan de gebruiker (versleep om te herordenen) en welke verplicht zijn" #: pb-add-on-woocommerce/index.php:276 msgid "Shipping Fields Order" msgstr "Volgorde bezorgvelden" #: pb-add-on-woocommerce/index.php:276 msgid "Save the shipping fields order from the billing fields checkboxes" msgstr "Sla de volgorde van de bezorgvelden op o.b.v. de selectievakjes voor de bezorgvelden" #: pb-add-on-woocommerce/index.php:277 msgid "Shipping Fields Name" msgstr "Naam bezorgveld" #: pb-add-on-woocommerce/index.php:277 msgid "Save the shipping fields names" msgstr "Sla de namen van de bezorgvelden op" #: pb-add-on-woocommerce/index.php:305 msgid "Field Name" msgstr "Veldnaam" #: pb-add-on-woocommerce/index.php:369 msgid "Click to edit " msgstr "Klik om te bewerken" #: pb-add-on-woocommerce/woo-checkout-field-support.php:368 msgid "is not a valid phone number." msgstr "is geen geldig telefoonnummer." #: pb-add-on-woocommerce/woo-checkout-field-support.php:377 msgid "is not a number." msgstr "is geen nummer." #: pb-add-on-woocommerce/woo-checkout-field-support.php:382 msgid "must be a multiplier of " msgstr "moet een veelvoud zijn van" #: pb-add-on-woocommerce/woo-checkout-field-support.php:387 msgid "must be a greater than or equal to " msgstr "moet groter dan of gelijk zijn aan" #: pb-add-on-woocommerce/woo-checkout-field-support.php:392 msgid "must be less than or equal to " msgstr "Moet kleiner dan of gelijk zijn aan" #: profile-builder-2.0/admin/add-ons.php:103 msgid "Available in Hobbyist and Pro Versions" msgstr "Beschikbaar in Hobbyist en Pro Versies" #: profile-builder-2.0/admin/add-ons.php:105 msgid "Available in All Versions" msgstr "Beschikbaar in alle versies" #: profile-builder-2.0/admin/add-ons.php:148 msgid "Learn More" msgstr "Lees meer" #: profile-builder-2.0/admin/basic-info.php:99 msgid "Timepicker" msgstr "Tijdkiezer" #: profile-builder-2.0/admin/basic-info.php:100 msgid "Colorpicker" msgstr "Kleurkiezer" #: profile-builder-2.0/admin/basic-info.php:103 msgid "Currency Select" msgstr "Selecteer valuta" #: profile-builder-2.0/admin/basic-info.php:109 msgid "Number" msgstr "Nummer" #: profile-builder-2.0/admin/basic-info.php:114 msgid "Validation" msgstr "Validatie" #: profile-builder-2.0/admin/basic-info.php:115 msgid "Map" msgstr "Plattegrond" #: profile-builder-2.0/admin/basic-info.php:116 msgid "HTML" msgstr "HTML" #: profile-builder-2.0/admin/basic-info.php:162 #: profile-builder-2.0/modules/modules.php:117 msgid "Repeater Fields" msgstr "Herhalingsvelden" #: profile-builder-2.0/admin/basic-info.php:163 msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role." msgstr "Maak een groep herhalingsvelden op profiel registratie en profiel bewerkformulieren. Begrens het aantal groepen herhalingsvelden voor iedere gebruiksrol." #: profile-builder-2.0/admin/general-settings.php:59 msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "Dit werkt alleen met front-end formulieren. Het is aan te raden om de standaard WP registratie door te verwijzen naar die van Profile Builder, met gebruik van de \"Aangepaste doorverwijzingen\" invoegtoepassing." #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count" msgstr "Gebruik dit in combinatie met de WordPress-functies om de waarde te tonen op de door u gewenste pagina
            Automatisch aangevuld maar in sommige gevallen te bewerken (in dat geval moet het uniek zijn)
            Wijzigingen kunnen lang duren als er erg veel gebruikers zijn" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Show Currency Symbol" msgstr "Toon valuta symbool" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Whether the currency symbol should be displayed after the currency name in the select option." msgstr "Of het valuta symbool na de valuta naam getoond moet worden in de keuze optie." #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Show Post Type" msgstr "Toon bericht type" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Posts from what post type will be displayed in the select." msgstr "Berichten van welk bericht type worden in de keuze optie getoond?" #: profile-builder-2.0/admin/manage-fields.php:145 msgid "Allowable Values" msgstr "Toegestane waarden" #: profile-builder-2.0/admin/manage-fields.php:145 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." msgstr "Voer een kommagescheiden lijst van mogelijke waardes in. Als de waarde die gebruiker tijdens registratie doorgeeft niet overeenkomt met 1 van deze waardes, wordt de gebruiker niet geregistreerd." #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Error Message" msgstr "Foutmelding" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Set a custom error message that will be displayed to the user." msgstr "Maak een aangepaste foutmelding die aan gebruiker getoond wordt." #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Time Format" msgstr "Tijdformaat" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Specify the time format." msgstr "Geef tijdformaat op." #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Google Maps API Key" msgstr "Google Maps API sleutel" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Enter your Google Maps API key (
            Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used." msgstr "Voer je Google Maps API sleutel in ( Haal je API sleutel op ). Als er meer dan 1 plattegrond veld aan een formulier toegevoegd is, wordt de API sleutel van de eerste plattegrond gebruikt." #: profile-builder-2.0/admin/manage-fields.php:149 msgid "Default Latitude" msgstr "Standaard breedtegraad" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "The latitude at which the map should be displayed when no pins are attached." msgstr "De breedtegraad die voor het tonen van de plattegrond gebruikt wordt als er geen pin markering is toegevoegd." #: profile-builder-2.0/admin/manage-fields.php:150 msgid "Default Longitude" msgstr "Standaard lengtegraad" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "The longitude at which the map should be displayed when no pins are attached." msgstr "De lengtegraad die voor het tonen van de plattegrond gebruikt wordt als er geen pin markering is toegevoegd." #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Default Zoom Level" msgstr "Standaard zoom niveau" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "Voer een nummer van 0 tot 19 in. Hoe hoger het nummer hoe meer zoon." #: profile-builder-2.0/admin/manage-fields.php:152 msgid "Map Height" msgstr "Hoogte plattegrond" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "The height of the map." msgstr "De hoogte van de plattegrond" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "HTML Content" msgstr "HTML inhoud" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "Add your HTML (or text) content" msgstr "Voeg je HTML (of tekst) inhoud toe" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Phone Format" msgstr "Telefoon formaat" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces." msgstr "Je kunt gebruiken: # voor nummers, haakjes ( ), - teken, + teken, punt . en spaties." #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Eg. (###) ###-####" msgstr "Voorbeeld (###) ###-####" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Empty field won't check for correct phone number." msgstr "Leeg veld zal geen controle doen voor een correct telefoonnummer." #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Heading Tag" msgstr "Heading Tag" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Change heading field size on front-end forms" msgstr "Verander grootte van heading veld in front-end formulieren" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min Number Value" msgstr "Min nummer (waarde)" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "Min toegestane nummer (0 om alleen positieve nummers toe te staan)" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Leave it empty for no min value" msgstr "Laat leeg voor geen minimale waarde" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max Number Value" msgstr "Max nummer (waarde)" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "Max toegestane nummer (0 om alleen negatieve nummers toe te staan)" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Leave it empty for no max value" msgstr "Laat leeg voor geen maximale waarde" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Number Step Value" msgstr "Stap waarde (nummer)" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal" msgstr "Stap waarde 1 om alleen gehele getallen toe te staan, 0.1 om gehele getallen en nummers met 1 decimaal toe te staan." #: profile-builder-2.0/admin/manage-fields.php:159 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "Om meerdere decimalen toe te staan gebruik bv 0.01 (voor 2 decimalen) enzovoort" #: profile-builder-2.0/admin/manage-fields.php:159 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)" msgstr "Je kunt de stap waarde ook gebruiken om toegestane intervallen in te stellen (bijvoorbeeld met stap waarde 2 zijn alleen -4, -2, 0, 2, enzovoort toegestaan)" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Leave it empty for no restriction" msgstr "Laat leeg voor geen beperking" #: profile-builder-2.0/admin/manage-fields.php:564 msgid "Albania Lek" msgstr "Albanië Lek" #: profile-builder-2.0/admin/manage-fields.php:565 msgid "Afghanistan Afghani" msgstr "Afghanistan Afghani" #: profile-builder-2.0/admin/manage-fields.php:566 msgid "Argentina Peso" msgstr "Argentinië Peso" #: profile-builder-2.0/admin/manage-fields.php:567 msgid "Aruba Guilder" msgstr "Aruba Gulden" #: profile-builder-2.0/admin/manage-fields.php:568 msgid "Australia Dollar" msgstr "Australië Dollar" #: profile-builder-2.0/admin/manage-fields.php:569 msgid "Azerbaijan New Manat" msgstr "Azerbeidzjan Manat" #: profile-builder-2.0/admin/manage-fields.php:570 msgid "Bahamas Dollar" msgstr "Bahama's Dollar" #: profile-builder-2.0/admin/manage-fields.php:571 msgid "Barbados Dollar" msgstr "Barbados Dollar" #: profile-builder-2.0/admin/manage-fields.php:572 msgid "Bangladeshi taka" msgstr "Bangladesh Taka" #: profile-builder-2.0/admin/manage-fields.php:573 msgid "Belarus Ruble" msgstr "Wit Rusland Roebel" #: profile-builder-2.0/admin/manage-fields.php:574 msgid "Belize Dollar" msgstr "Belize Dollar" #: profile-builder-2.0/admin/manage-fields.php:575 msgid "Bermuda Dollar" msgstr "Bermuda Dollar" #: profile-builder-2.0/admin/manage-fields.php:576 msgid "Bolivia Boliviano" msgstr "Bolivia Boliviano" #: profile-builder-2.0/admin/manage-fields.php:577 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "Bosnië en Herzegovina Convertibele Mark" #: profile-builder-2.0/admin/manage-fields.php:578 msgid "Botswana Pula" msgstr "Botswana Pula" #: profile-builder-2.0/admin/manage-fields.php:579 msgid "Bulgaria Lev" msgstr "Bulgarije Lev" #: profile-builder-2.0/admin/manage-fields.php:580 msgid "Brazil Real" msgstr "Brazilië Real" #: profile-builder-2.0/admin/manage-fields.php:581 msgid "Brunei Darussalam Dollar" msgstr "Brunei Bruneise Dollar" #: profile-builder-2.0/admin/manage-fields.php:582 msgid "Cambodia Riel" msgstr "Cambodja Riel" #: profile-builder-2.0/admin/manage-fields.php:583 msgid "Canada Dollar" msgstr "Canada Dollar" #: profile-builder-2.0/admin/manage-fields.php:584 msgid "Cayman Islands Dollar" msgstr "Kaaimaneilanden Dollar" #: profile-builder-2.0/admin/manage-fields.php:585 msgid "Chile Peso" msgstr "Chili Peso" #: profile-builder-2.0/admin/manage-fields.php:586 msgid "China Yuan Renminbi" msgstr "China Yuan Renminbi" #: profile-builder-2.0/admin/manage-fields.php:587 msgid "Colombia Peso" msgstr "Colombia Peso" #: profile-builder-2.0/admin/manage-fields.php:588 msgid "Costa Rica Colon" msgstr "Costa Rica Colon" #: profile-builder-2.0/admin/manage-fields.php:589 msgid "Croatia Kuna" msgstr "Kroatië Kuna" #: profile-builder-2.0/admin/manage-fields.php:590 msgid "Cuba Peso" msgstr "Cuba Peso" #: profile-builder-2.0/admin/manage-fields.php:591 msgid "Czech Republic Koruna" msgstr "Tsjechië Kroon" #: profile-builder-2.0/admin/manage-fields.php:592 msgid "Denmark Krone" msgstr "Denemarken Kroon" #: profile-builder-2.0/admin/manage-fields.php:593 msgid "Dominican Republic Peso" msgstr "Dominicaanse Republiek Peso" #: profile-builder-2.0/admin/manage-fields.php:594 msgid "East Caribbean Dollar" msgstr "Oost Caribische Dollar" #: profile-builder-2.0/admin/manage-fields.php:595 msgid "Egypt Pound" msgstr "Egypte Pond" #: profile-builder-2.0/admin/manage-fields.php:596 msgid "El Salvador Colon" msgstr "El Salvador Colon" #: profile-builder-2.0/admin/manage-fields.php:597 msgid "Estonia Kroon" msgstr "Estland Kroon" #: profile-builder-2.0/admin/manage-fields.php:598 msgid "Euro" msgstr "Euro" #: profile-builder-2.0/admin/manage-fields.php:599 msgid "Falkland Islands (Malvinas) Pound" msgstr "Falklandeilanden Pond" #: profile-builder-2.0/admin/manage-fields.php:600 msgid "Fiji Dollar" msgstr "Fiji Dollar" #: profile-builder-2.0/admin/manage-fields.php:601 msgid "Ghana Cedis" msgstr "Ghana Cedi" #: profile-builder-2.0/admin/manage-fields.php:602 msgid "Gibraltar Pound" msgstr "Gibraltar Pond" #: profile-builder-2.0/admin/manage-fields.php:603 msgid "Guatemala Quetzal" msgstr "Guatemala Quetzal" #: profile-builder-2.0/admin/manage-fields.php:604 msgid "Guernsey Pound" msgstr "Guernsey Pond" #: profile-builder-2.0/admin/manage-fields.php:605 msgid "Guyana Dollar" msgstr "Guyana Dollar" #: profile-builder-2.0/admin/manage-fields.php:606 msgid "Honduras Lempira" msgstr "Honduras Lempira" #: profile-builder-2.0/admin/manage-fields.php:607 msgid "Hong Kong Dollar" msgstr "Hong Kong Dollar" #: profile-builder-2.0/admin/manage-fields.php:608 msgid "Hungary Forint" msgstr "Hongarije Forint" #: profile-builder-2.0/admin/manage-fields.php:609 msgid "Iceland Krona" msgstr "IJsland Kroon" #: profile-builder-2.0/admin/manage-fields.php:610 msgid "India Rupee" msgstr "India Roepie" #: profile-builder-2.0/admin/manage-fields.php:611 msgid "Indonesia Rupiah" msgstr "Indonesië Roepia" #: profile-builder-2.0/admin/manage-fields.php:612 msgid "Iran Rial" msgstr "Iran Rial" #: profile-builder-2.0/admin/manage-fields.php:613 msgid "Isle of Man Pound" msgstr "Man Pond" #: profile-builder-2.0/admin/manage-fields.php:614 msgid "Israel Shekel" msgstr "Israel Shekel" #: profile-builder-2.0/admin/manage-fields.php:615 msgid "Jamaica Dollar" msgstr "Jamaica Dollar" #: profile-builder-2.0/admin/manage-fields.php:616 msgid "Japan Yen" msgstr "Japan Yen" #: profile-builder-2.0/admin/manage-fields.php:617 msgid "Jersey Pound" msgstr "Jersey Pond" #: profile-builder-2.0/admin/manage-fields.php:618 msgid "Kazakhstan Tenge" msgstr "Kazachstan Tenge" #: profile-builder-2.0/admin/manage-fields.php:619 msgid "Korea (North) Won" msgstr "Korea (Noord) Won" #: profile-builder-2.0/admin/manage-fields.php:620 msgid "Korea (South) Won" msgstr "Korea (Zuid) Won" #: profile-builder-2.0/admin/manage-fields.php:621 msgid "Kyrgyzstan Som" msgstr "Kirgizië Som" #: profile-builder-2.0/admin/manage-fields.php:622 msgid "Laos Kip" msgstr "Laos Kip" #: profile-builder-2.0/admin/manage-fields.php:623 msgid "Latvia Lat" msgstr "Letland Lat" #: profile-builder-2.0/admin/manage-fields.php:624 msgid "Lebanon Pound" msgstr "Libanon Pound" #: profile-builder-2.0/admin/manage-fields.php:625 msgid "Liberia Dollar" msgstr "Liberia Dollar" #: profile-builder-2.0/admin/manage-fields.php:626 msgid "Lithuania Litas" msgstr "Litouwen Litas" #: profile-builder-2.0/admin/manage-fields.php:627 msgid "Macedonia Denar" msgstr "Macedonië Denar" #: profile-builder-2.0/admin/manage-fields.php:628 msgid "Malaysia Ringgit" msgstr " Maleisië Ringgit" #: profile-builder-2.0/admin/manage-fields.php:629 msgid "Mauritius Rupee" msgstr "Mauritius Roepie" #: profile-builder-2.0/admin/manage-fields.php:630 msgid "Mexico Peso" msgstr "Mexico Peso" #: profile-builder-2.0/admin/manage-fields.php:631 msgid "Mongolia Tughrik" msgstr "Mongolië Tugrik" #: profile-builder-2.0/admin/manage-fields.php:632 msgid "Mozambique Metical" msgstr "Mozambique Metical" #: profile-builder-2.0/admin/manage-fields.php:633 msgid "Namibia Dollar" msgstr "Namibië Dollar" #: profile-builder-2.0/admin/manage-fields.php:634 msgid "Nepal Rupee" msgstr "Nepal Roepie" #: profile-builder-2.0/admin/manage-fields.php:635 msgid "Netherlands Antilles Guilder" msgstr "Nederlandse Antillen Gulden" #: profile-builder-2.0/admin/manage-fields.php:636 msgid "New Zealand Dollar" msgstr "Nieuw Zeeland Dollar" #: profile-builder-2.0/admin/manage-fields.php:637 msgid "Nicaragua Cordoba" msgstr "Nicaragua Cordoba" #: profile-builder-2.0/admin/manage-fields.php:638 msgid "Nigeria Naira" msgstr "Nigeria Naira" #: profile-builder-2.0/admin/manage-fields.php:639 msgid "Norway Krone" msgstr "Noorwegen Kroon" #: profile-builder-2.0/admin/manage-fields.php:640 msgid "Oman Rial" msgstr "Oman Rial" #: profile-builder-2.0/admin/manage-fields.php:641 msgid "Pakistan Rupee" msgstr "Pakistan Roepie" #: profile-builder-2.0/admin/manage-fields.php:642 msgid "Panama Balboa" msgstr "Panama Balboa" #: profile-builder-2.0/admin/manage-fields.php:643 msgid "Paraguay Guarani" msgstr "Paraguay Guarani" #: profile-builder-2.0/admin/manage-fields.php:644 msgid "Peru Nuevo Sol" msgstr "Peru Sol" #: profile-builder-2.0/admin/manage-fields.php:645 msgid "Philippines Peso" msgstr "Filipijnen Peso" #: profile-builder-2.0/admin/manage-fields.php:646 msgid "Poland Zloty" msgstr "Polen Zloty" #: profile-builder-2.0/admin/manage-fields.php:647 msgid "Qatar Riyal" msgstr "Qatar Rial" #: profile-builder-2.0/admin/manage-fields.php:648 msgid "Romania New Leu" msgstr "Roemenië Leu" #: profile-builder-2.0/admin/manage-fields.php:649 msgid "Russia Ruble" msgstr "Rusland Roebel" #: profile-builder-2.0/admin/manage-fields.php:650 msgid "Saint Helena Pound" msgstr "Sint Helena Pond" #: profile-builder-2.0/admin/manage-fields.php:651 msgid "Saudi Arabia Riyal" msgstr "Saoedi-Arabië Rial" #: profile-builder-2.0/admin/manage-fields.php:652 msgid "Serbia Dinar" msgstr "Servië Dinar" #: profile-builder-2.0/admin/manage-fields.php:653 msgid "Seychelles Rupee" msgstr "Seychellen Roepie" #: profile-builder-2.0/admin/manage-fields.php:654 msgid "Singapore Dollar" msgstr "Singapore Dollar" #: profile-builder-2.0/admin/manage-fields.php:655 msgid "Solomon Islands Dollar" msgstr "Salomonseilanden Dollar" #: profile-builder-2.0/admin/manage-fields.php:656 msgid "Somalia Shilling" msgstr "Somalië Shilling" #: profile-builder-2.0/admin/manage-fields.php:657 msgid "South Africa Rand" msgstr "Zuid Afrika Rand" #: profile-builder-2.0/admin/manage-fields.php:658 msgid "Sri Lanka Rupee" msgstr "Sri Lanka Roepie" #: profile-builder-2.0/admin/manage-fields.php:659 msgid "Sweden Krona" msgstr "Zweden Kroon" #: profile-builder-2.0/admin/manage-fields.php:660 msgid "Switzerland Franc" msgstr "Zwitserland Frank" #: profile-builder-2.0/admin/manage-fields.php:661 msgid "Suriname Dollar" msgstr "Suriname Dollar" #: profile-builder-2.0/admin/manage-fields.php:662 msgid "Syria Pound" msgstr "Syrië Pond" #: profile-builder-2.0/admin/manage-fields.php:663 msgid "Taiwan New Dollar" msgstr "Taiwan Dollar" #: profile-builder-2.0/admin/manage-fields.php:664 msgid "Thailand Baht" msgstr "Thailand Baht" #: profile-builder-2.0/admin/manage-fields.php:665 msgid "Trinidad and Tobago Dollar" msgstr "Trinidad en Tobago Dollar" #: profile-builder-2.0/admin/manage-fields.php:666 #: profile-builder-2.0/admin/manage-fields.php:667 msgid "Turkey Lira" msgstr "Turkije Lira" #: profile-builder-2.0/admin/manage-fields.php:668 msgid "Tuvalu Dollar" msgstr "Tuvalu Dollar" #: profile-builder-2.0/admin/manage-fields.php:669 msgid "Ukraine Hryvna" msgstr "Oekraïne Grivna" #: profile-builder-2.0/admin/manage-fields.php:670 msgid "United Kingdom Pound" msgstr "Verenigd Koninkrijk Pond" #: profile-builder-2.0/admin/manage-fields.php:671 msgid "Uganda Shilling" msgstr "Oeganda Shilling" #: profile-builder-2.0/admin/manage-fields.php:672 msgid "US Dollar" msgstr "US Dollar" #: profile-builder-2.0/admin/manage-fields.php:673 msgid "Uruguay Peso" msgstr "Uruguay Peso" #: profile-builder-2.0/admin/manage-fields.php:674 msgid "Uzbekistan Som" msgstr "Oezbekistan Som" #: profile-builder-2.0/admin/manage-fields.php:675 msgid "Venezuela Bolivar" msgstr "Venezuela Bolivar" #: profile-builder-2.0/admin/manage-fields.php:676 msgid "Viet Nam Dong" msgstr "Vietnam Dong" #: profile-builder-2.0/admin/manage-fields.php:677 msgid "Yemen Rial" msgstr "Jemen Rial" #: profile-builder-2.0/admin/manage-fields.php:678 msgid "Zimbabwe Dollar" msgstr "Zimbabwe Dollar" #: profile-builder-2.0/admin/manage-fields.php:1097 msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n" msgstr "De meta-naam kan alleen kleine letters, nummers, _ , - en geen spaties bevatten.\n" #: profile-builder-2.0/admin/manage-fields.php:1314 msgid "Search Location" msgstr "Zoeklocatie" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754 msgid "You are not allowed to do this." msgstr "Je mag dit niet doen." #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460 msgid "Search Users" msgstr "Zoek gebruikers" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78 msgid "Conditional Logic" msgstr "Voorwaardelijke logica" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79 msgid "Conditional Rules" msgstr "Voorwaardelijke regels" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448 msgid "This field has conditional logic enabled." msgstr "Voor dit veld is voorwaardelijk logica ingeschakeld." #: profile-builder-2.0/features/functions.php:685 msgid "Incorrect phone number" msgstr "Onjuist telefoonnummer" #: profile-builder-2.0/front-end/class-formbuilder.php:124 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." msgstr "De rol van de aangemaakte gebruiker is op de standaard rol gezet. Alleen een beheerder kan een gebruiker registreren met de rol die bij dit formulier hoort." #: profile-builder-2.0/front-end/extra-fields/map/map.php:46 #: profile-builder-2.0/front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "Voeg svp de Google Maps API sleutel toe in dit veld." #: profile-builder-2.0/front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "Iets is fout gegeaan. Probeer svp opnieuw." #: profile-builder-2.0/front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "Svp alleen nummers invoeren" #: profile-builder-2.0/front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "Waarde moet een meervoud zijn van %1$s" #: profile-builder-2.0/front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "Waarde moet groter dan of gelijk zijn aan %1$s" #: profile-builder-2.0/front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "Waarde moet kleiner dan of gelijk zijn aan %1$s" #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "Verplicht formaat telefoonnummer:" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bolivia, __( Plurinational State of" msgstr "Bolivia, __( Plurinationale Staat" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bonaire, __( Sint Eustatius and Saba" msgstr "Bonaire, __( Sint Eustatius en Saba" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cabo Verde" msgstr "Kaapverdië" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cocos (Keeling) Islands" msgstr "Cocos (Keeling) Eilanden" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo" msgstr "Congo" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo, __( the Democratic Republic of the" msgstr "Congo, __( Democratische Republiek" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cote dIvoire" msgstr "Ivoorkust" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Falkland Islands (Malvinas)" msgstr "Falklandeilanden (Malvinas)" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Holy See (Vatican City State)" msgstr "Heilige Stoel (Vaticaan)" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iran, __( Islamic Republic of" msgstr "Iran, __( Islamitische Republiek" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Democratic Peoples Republic of" msgstr "Korea, __( Democratische Volksrepubliek" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Republic of" msgstr "Korea, __( Republiek" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lao Peoples Democratic Republic" msgstr "Laos Democratische Volksrepubliek" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macedonia, __( the former Yugoslav Republic of" msgstr "Macedonië, __( Voormalige Joegoslavische Republiek" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Micronesia, __( Federated States of" msgstr "Micronesia, __( Federale Staten van" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Moldova, __( Republic of" msgstr "Moldavië, __( Republiek" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palestine, __( State of" msgstr "Palestina, __( Staat" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Russian Federation" msgstr "Russische Federatie" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Helena, __( Ascension and Tristan da Cunha" msgstr "Saint Helena, __( Ascension en Tristan da Cunha" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Martin (French part)" msgstr "Sint Maarten (Frans deel)" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sint Maarten (Dutch part)" msgstr "Sint Maarten (Nederlands deel)" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Syrian Arab Republic" msgstr "Arabische Republiek Syrië" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Taiwan, __( Province of China" msgstr "Taiwan, __( Provincie van China" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tanzania, __( United Republic of" msgstr "Tanzania, __( Verenigde Republiek" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Timor-Leste" msgstr "Timor-Leste" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Venezuela, __( Bolivarian Republic of" msgstr "Venezuela, __( Bolivariaanse Republiek" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Viet Nam" msgstr "Vietnam" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( British" msgstr "Maagdeneilanden, __( Britse" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( U.S." msgstr "Maagdeneilanden, __( U.S." #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:186 msgid "User Fields Tags" msgstr "Tags gebruikersvelden" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479 msgid "The users selected password at signup" msgstr "Het door gebruiker gekozen wachtwoord tijdens aanmelden" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278 msgid "[{{site_name}}] Notice of Email Change" msgstr "[{{site_name}}] Notificatie wijziging e-mailadres" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289 msgid "Changed Email Address Notification" msgstr "Notificatie gewijzigd e-mailadres" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Limit" msgstr "Limiet" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Enable limit to the number of fields to be generated by users in front end forms " msgstr "Schakel limiet in voor aantal velden die gebruikers in front-end formulieren kunnen aanmaken" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "General Limit" msgstr "Algemene limiet" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "Standaard limiet voor deze herhalingsgroep.
            Laat 0 voor geen limiet." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "Limit reached message" msgstr "Bericht bij bereiken limiet" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The maximum number of fields has been reached." msgstr "Het maximaal aantal velden is bereikt." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The popup message to display when the limit of repeater groups is reached." msgstr "Het popup bericht die getoond wordt als maximaal aantal herhalingsgroepen is bereikt." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Limit per Role" msgstr "Limiet per rol" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Leave 0 for unlimited." msgstr "Laat 0 voor geen limiet." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Repeated field group" msgstr "Herhalingsveld groep" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Manage field or group of fields that will be repeatable." msgstr "Beheer veld of groep velden die worden herhaald." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259 msgid "Edit field group" msgstr "Beheer veldgroep" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260 msgid "Repeatable fields saved!" msgstr "Herhalingsvelden opgeslagen!" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277 #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326 msgid "Please enter a unique field title.\n" msgstr "Voer svp een unieke veld titel in.\n" #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267 msgid "Are you sure you want to delete this?" msgstr "Weet je zeker dat je dit wilt verwijderen?" #: profile-builder-2.0/modules/user-listing/userlisting.php:192 msgid "Sort Tags" msgstr "Sorteer tags" #: profile-builder-2.0/modules/user-listing/userlisting.php:201 #: profile-builder-2.0/modules/user-listing/userlisting.php:2308 msgid "Faceted Menus" msgstr "Facet menu's" #: profile-builder-2.0/modules/user-listing/userlisting.php:202 msgid "User Count" msgstr "Gebruikerstelling" #: profile-builder-2.0/modules/user-listing/userlisting.php:1553 msgid "Show All" msgstr "Toon alle" #: profile-builder-2.0/modules/user-listing/userlisting.php:1710 msgid "No options available" msgstr "Geen opties beschikbaar" #: profile-builder-2.0/modules/user-listing/userlisting.php:1861 msgid "Remove All Filters" msgstr "Verwijder alle filters" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Label" msgstr "Label" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Choose the facet name that appears on the frontend" msgstr "Kies de facet naam die in front-end getoond wordt" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Facet Type" msgstr "Facet Type" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Choose the facet menu type" msgstr "Kies het facet menu type" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Facet Meta" msgstr "Facet Meta" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Choose the meta field for the facet menu" msgstr "Kies het meta-veld voor het facet menu" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Behaviour" msgstr "Gedrag" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Narrow the results" msgstr "Verklein de resultaten" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Expand the results" msgstr "Vergroot de resultaten" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Choose how multiple selections affect the results" msgstr "Kies hoe meerdere selecties het resultaat beïnvloeden." #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Visible choices" msgstr "Zichtbare keuzes" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "Toon een uitklap link na zo veel keuzes. Laat leeg voor alle keuzes." #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Search Fields" msgstr "Zoek Velden" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Choose the fields in which the Search Field will look in" msgstr "Kies de velden die Zoek Velden doorzoekt" #: profile-builder-2.0/modules/user-listing/userlisting.php:2330 msgid "Search Settings" msgstr "Zoekinstellingen" #: pb-add-on-woocommerce/billing-fields.php:8 #: pb-add-on-woocommerce/shipping-fields.php:8 msgid "Company Name" msgstr "Bedrijfsnaam" #: pb-add-on-woocommerce/billing-fields.php:9 #: pb-add-on-woocommerce/shipping-fields.php:9 msgid "Address" msgstr "Adres" #: pb-add-on-woocommerce/billing-fields.php:5 #: pb-add-on-woocommerce/shipping-fields.php:5 msgid "Country" msgstr "Land" #: pb-add-on-woocommerce/billing-fields.php:11 #: pb-add-on-woocommerce/shipping-fields.php:11 msgid "Town / City" msgstr "Stad" #: pb-add-on-woocommerce/billing-fields.php:12 #: pb-add-on-woocommerce/shipping-fields.php:12 msgid "State / County" msgstr "Provincie" #: pb-add-on-woocommerce/billing-fields.php:13 #: pb-add-on-woocommerce/shipping-fields.php:13 msgid "Postcode / Zip" msgstr "Postcode" #: pb-add-on-woocommerce/billing-fields.php:14 msgid "Email Address" msgstr "E-mailadres" #: pb-add-on-woocommerce/billing-fields.php:15 msgid "Phone" msgstr "Telefoonnummer" #: pb-add-on-woocommerce/billing-fields.php:278 msgid "Ship to a different address?" msgstr "Naar ander adres versturen?" #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437 msgid "Billing Address" msgstr "Factuur Adres" #: pb-add-on-woocommerce/index.php:169 msgid "Displays customer billing fields in front-end. " msgstr "Laat klant factuur velden in front-end zien." #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438 msgid "Shipping Address" msgstr "Bezorgadres" #: pb-add-on-woocommerce/index.php:173 msgid "Displays customer shipping fields in front-end. " msgstr "Laat klant bezorgvelden in front-end zien." #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Display on WooCommerce Checkout" msgstr "Toon op WooCommerce bestelpagina" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Whether the field should be added to the WooCommerce checkout form or not" msgstr "Of het veld aan de WooCommerce bestelpagina toegevoegd moet worden of niet" #: pb-add-on-woocommerce/index.php:541 msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!" msgstr "WooCommerce moet geïnstalleerd en geactiveerd zijn om Profile Builder - WooCommerce Sync invoegtoepassing te laten werken!" #: pb-add-on-woocommerce/woosync-page.php:23 #: pb-add-on-woocommerce/woosync-page.php:70 msgid "WooCommerce Sync" msgstr "WooCommerce Sync" #: pb-add-on-woocommerce/woosync-page.php:76 msgid "Choose Register form to display on My Account page:" msgstr "Kies registratieformulier om op Mijn Account pagina weer te geven:" #: pb-add-on-woocommerce/woosync-page.php:81 msgid "Default Register" msgstr "Standaard registratie" #: pb-add-on-woocommerce/woosync-page.php:103 msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce.
            This will also add the Profile Builder Login form to MyAccount page." msgstr "Kies welk Profile Builder registratieformulier op Mijn Account pagina van WooCommerce weergeven moet worden.
            Dit voegt ook het Profile Builder inlogformulier op Mijn Account pagina toe." #: pb-add-on-woocommerce/woosync-page.php:110 msgid "Choose Edit Profile form to display on My Account page:" msgstr "Kies Profiel bewerkformulier om op Mijn Account pagina weer te geven:" #: pb-add-on-woocommerce/woosync-page.php:115 msgid "Default Edit Profile" msgstr "Standaard Bewerk Profiel" #: pb-add-on-woocommerce/woosync-page.php:137 msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce." msgstr "Kies welk Profile Builder Profiel bewerkformulier op Mijn Account pagina van WooCommerce weergeven moet worden." #: profile-builder-2.0/admin/add-ons.php:190 msgid "Recommended Plugins" msgstr "Aanbevolen plugins" #: profile-builder-2.0/admin/add-ons.php:219 #: profile-builder-2.0/admin/pms-cross-promotion.php:102 msgid "Free" msgstr "Vrij" #: profile-builder-2.0/admin/add-ons.php:221 msgid "Accept user payments, create subscription plans and restrict content on your membership site." msgstr "Accepteer betalingen door gebruikers, maak abonnementsplannen en beperk inhoud op je lidmaatschap website." #: profile-builder-2.0/admin/add-ons.php:222 #: profile-builder-2.0/admin/pms-cross-promotion.php:105 msgid "More Details" msgstr "Meer Details" #: profile-builder-2.0/admin/add-ons.php:240 #: profile-builder-2.0/admin/pms-cross-promotion.php:88 #: profile-builder-2.0/admin/pms-cross-promotion.php:123 #: profile-builder-2.0/admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "Plugin is inactief" #: profile-builder-2.0/admin/add-ons.php:242 #: profile-builder-2.0/admin/pms-cross-promotion.php:87 #: profile-builder-2.0/admin/pms-cross-promotion.php:125 #: profile-builder-2.0/admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "Plugin is actief" #: profile-builder-2.0/admin/add-ons.php:256 #: profile-builder-2.0/admin/pms-cross-promotion.php:146 msgid "Could not install plugin. Retry or install manually." msgstr "Kan plugin niet registreren. Probeer opnieuw of installeer manueel." #: profile-builder-2.0/admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "Betaal Accounts" #: profile-builder-2.0/admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "Paid Member Subscriptions - een gratis WordPress plugin" #: profile-builder-2.0/admin/pms-cross-promotion.php:37 msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." msgstr "Met het nieuwe Abonnementen Veld in Profile Builder, wordt het mogelijk om gebruikers zich via het registratieformulier aan te laten melden voor betaalde accounts." #: profile-builder-2.0/admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "Betaal en gratis abonnementen" #: profile-builder-2.0/admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "Beperk Inhoud" #: profile-builder-2.0/admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "Beheer van Geregistereerde Klanten" #: profile-builder-2.0/admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "E-mail Templates" #: profile-builder-2.0/admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "Account Management" #: profile-builder-2.0/admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "Abonnementsbeheer" #: profile-builder-2.0/admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "Betalingsbeheer" #: profile-builder-2.0/admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "Plugin is Actief" #: profile-builder-2.0/admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "Plugin is geactiveerd" #: profile-builder-2.0/admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "Plugin is gedeactiveerd" #: profile-builder-2.0/admin/pms-cross-promotion.php:104 msgid "Accept user payments, create subscription plans and restrict content on your website." msgstr "Accepteer betalingen door gebruikers, maak abonnementsplannen en beperk inhoud op je website." #: profile-builder-2.0/admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "Stap voor stap snelle installatie" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401 msgid "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login." msgstr "Klik op de volgende link om de gebruiker te activeren:

            %s%s%s

            Na activering zult u nog een e-mail ontvangen met uw inloggegevens." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45 msgid "After Login" msgstr "Na Inloggen" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46 msgid "After Logout" msgstr "Na uitloggen" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47 msgid "After Registration" msgstr "Na Registratie" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48 msgid "After Edit Profile" msgstr "Na Bewerken Profiel" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Successful Email Confirmation" msgstr "Na succesvolle e-mail bevestiging" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Successful Password Reset" msgstr "Na succesvolle wachtwoord herstel" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "Dashboard (gebruikers doorverwijzen om geen toegang tot het dashboard te krijgen)" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55 msgid "User ID" msgstr "Gebruikers-ID" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61 msgid "User ID or Username" msgstr "Gebruikers-ID of gebruikersnaam" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "User ID / Username" msgstr "Gebruikers-ID / gebruikersnaam" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "Please select and enter the ID or username of your user." msgstr "Selecteer svp de ID of gebruikersnaam van je gebruiker." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131 msgid "Redirect Type" msgstr "Type doorverwijzing" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Redirect URL" msgstr "URL doorverwijzing" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" msgstr "Kan de volgende dynamische tags bevatten:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241 msgid "Individual User Redirects" msgstr "Individuele doorverwijzing gebruiker" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84 msgid "... Choose" msgstr "... Kies" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 msgid "Select a user role." msgstr "Selecteer een gebruikersrol." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242 msgid "User Role based Redirects" msgstr "Gebruikersrol gebaseerde doorverwijzingen" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243 msgid "Global Redirects" msgstr "Standaard doorverwijzingen" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133 msgid "Login ( wp_login.php )" msgstr "Inloggen ( wp_login.php )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134 msgid "Register ( wp-login.php?action=register )" msgstr "Registratie ( wp-login.php?action=register )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "Wachtwoord vergeten ( wp-login.php?action=lostpassword )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "Auteur Archief ( http://sitename.com/author/admin )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145 msgid "Redirect Default WordPress Forms and Pages" msgstr "Standaard doorverwijzing van WordPress formulieren en pagina's" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157 msgid "How does this work?" msgstr "Hoe werkt het?" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "
            Gebruikers-ID / gebruikersnaam
            Doorverwijzen
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 msgid "
            User Role
            Redirect
            URL
            " msgstr "
            Gebruikersrol
            Doorverwijzen
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "
            Redirect
            URL
            " msgstr "
            Doorverwijzen
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236 msgid "These redirects happen after a successful action, like registration or after a successful login." msgstr "Deze doorverwijzing vindt plaats na een succesvolle actie, zoals registratie of succesvol inloggen." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238 msgid "Which redirect happens depends on the following priority:" msgstr "Welke doorverwijzing plaatsvindt is afhankelijk van de volgende prioriteit:" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247 msgid "Redirect Default WordPress forms and pages" msgstr "Standaard doorverwijzing van WordPress formulieren en pagina's" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248 msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder." msgstr "Met deze kun je diverse WordPress formulieren en pagina's doorverwijzen naar pagina's die zijn gemaakt met Profile Builder." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250 msgid "Available tags for dynamic URLs" msgstr "Beschikbare tags voor dynamische URLs" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251 msgid "You use the following tags in your URLs to redirect users to various pages." msgstr "Je gebruikt de volgende tags in je URLs om gebruikers door te verwijzen naar diverse pagina's." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253 msgid "generates a url of the current website homepage." msgstr "genereert een homepage link van de huidige website." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254 msgid "in WordPress the site url can be different then the home url" msgstr "in WordPress kan de site url anders zijn dan de home url" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255 msgid "the ID of the user" msgstr "de ID van de gebruiker" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256 msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." msgstr "de voor URL opgeschoonde versie van de gebruikersnaam, de vereenvoudigde gebruikersnaam kan veilig worden gebruikt in URLs omdat het geen speciale karakters of spaties kan bevatten." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257 msgid "the URL of the previously visited page" msgstr "de URL van de hiervoor bezochte pagina" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352 msgid "You can't add duplicate redirects!" msgstr "Je kunt doorverwijzingen niet dupliceren!" #: profile-builder-2.0/admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "Toon naam publiekelijk als - wordt alleen getoond op de Profiel bewerkpagina!" #: profile-builder-2.0/admin/basic-info.php:37 msgid "Friction-less login using %s shortcode or a widget." msgstr "Probleemloos inloggen door gebruik van %s shortcode of een widget." #: profile-builder-2.0/admin/basic-info.php:41 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "Prachtige volledig aan te passen registratieformulieren door gebruik van de %s shortcode." #: profile-builder-2.0/admin/basic-info.php:45 msgid "Straight forward edit profile forms using %s shortcode." msgstr "Eenvoudige profiel bewerkingsformulieren door gebruik van de %s shortcode." #: profile-builder-2.0/admin/basic-info.php:58 msgid "Allow users to recover their password in the front-end using the %s." msgstr "Sta gebruikers toe om wachtwoord in front-end te achterhalen door gebruik van de %s." #: profile-builder-2.0/admin/basic-info.php:140 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." msgstr "Om een pagina te maken met alle geregistreerde gebruikers van deze huidige site/blog, plaats de volgende shortcode op de gewenste pagina: %s." #: profile-builder-2.0/admin/general-settings.php:115 msgid "\"Admin Approval\" on User Role:" msgstr "\"Goedkeuring Beheerder\" voor gebruikersrol:" #: profile-builder-2.0/admin/general-settings.php:134 msgid "Select on what user roles to activate Admin Approval." msgstr "Selecteer gebruikersrollen om Goedkeuring Beheerder te activeren." #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Display on PB forms" msgstr "Toon op PB formulieren" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Login" msgstr "PB inloggen" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Register" msgstr "PB registratie" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Recover Password" msgstr "PB wachtwoord herstel" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "Selecteer Profile Builder formulieren om reCAPTCHA te tonen" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Display on default WP forms" msgstr "Toon op standaard WP formulieren" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Login" msgstr "Standaard WP inloggen" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Register" msgstr "Standaard WP registratie" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Recover Password" msgstr "Standaard WP wachtwoord herstel" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "Selecteer standaard WP formulieren om reCAPTCHA te tonen" #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default option of the field" msgstr "Standaard optie van het veld" #: profile-builder-2.0/admin/manage-fields.php:282 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Afghanistan" msgstr "Afghanistan" #: profile-builder-2.0/admin/manage-fields.php:283 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aland Islands" msgstr "Aland Eilanden" #: profile-builder-2.0/admin/manage-fields.php:284 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Albania" msgstr "Albanië" #: profile-builder-2.0/admin/manage-fields.php:285 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Algeria" msgstr "Algerije" #: profile-builder-2.0/admin/manage-fields.php:286 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "American Samoa" msgstr "Amerikaans Samoa" #: profile-builder-2.0/admin/manage-fields.php:287 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Andorra" msgstr "Andorra" #: profile-builder-2.0/admin/manage-fields.php:288 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Angola" msgstr "Angola" #: profile-builder-2.0/admin/manage-fields.php:289 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Anguilla" msgstr "Anguilla" #: profile-builder-2.0/admin/manage-fields.php:290 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antarctica" msgstr "Antarctica" #: profile-builder-2.0/admin/manage-fields.php:291 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antigua and Barbuda" msgstr "Antigua en Barbuda" #: profile-builder-2.0/admin/manage-fields.php:292 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Argentina" msgstr "Argentinië" #: profile-builder-2.0/admin/manage-fields.php:293 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Armenia" msgstr "Armenië" #: profile-builder-2.0/admin/manage-fields.php:294 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aruba" msgstr "Aruba" #: profile-builder-2.0/admin/manage-fields.php:295 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Australia" msgstr "Australië" #: profile-builder-2.0/admin/manage-fields.php:296 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Austria" msgstr "Oostenrijk" #: profile-builder-2.0/admin/manage-fields.php:297 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Azerbaijan" msgstr "Azerbeidzjan" #: profile-builder-2.0/admin/manage-fields.php:298 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahamas" msgstr "Bahamas" #: profile-builder-2.0/admin/manage-fields.php:299 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahrain" msgstr "Bahrain" #: profile-builder-2.0/admin/manage-fields.php:300 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bangladesh" msgstr "Bangladesh" #: profile-builder-2.0/admin/manage-fields.php:301 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Barbados" msgstr "Barbados" #: profile-builder-2.0/admin/manage-fields.php:302 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belarus" msgstr "Wit Rusland" #: profile-builder-2.0/admin/manage-fields.php:303 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belgium" msgstr "België " #: profile-builder-2.0/admin/manage-fields.php:304 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belize" msgstr "Belize" #: profile-builder-2.0/admin/manage-fields.php:305 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Benin" msgstr "Benin" #: profile-builder-2.0/admin/manage-fields.php:306 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bermuda" msgstr "Bermuda" #: profile-builder-2.0/admin/manage-fields.php:307 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bhutan" msgstr "Bhutan" #: profile-builder-2.0/admin/manage-fields.php:308 msgid "Bolivia" msgstr "Bolivia" #: profile-builder-2.0/admin/manage-fields.php:309 msgid "Bonaire, Saint Eustatius and Saba" msgstr "Bonaire, Sint Eustatius en Saba" #: profile-builder-2.0/admin/manage-fields.php:310 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bosnia and Herzegovina" msgstr "Bosnie en Herzegovina" #: profile-builder-2.0/admin/manage-fields.php:311 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Botswana" msgstr "Botswana" #: profile-builder-2.0/admin/manage-fields.php:312 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bouvet Island" msgstr "Bouvet Eiland" #: profile-builder-2.0/admin/manage-fields.php:313 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brazil" msgstr "Brazilië" #: profile-builder-2.0/admin/manage-fields.php:314 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "British Indian Ocean Territory" msgstr "Brits Indische Oceaanterritorium" #: profile-builder-2.0/admin/manage-fields.php:315 msgid "British Virgin Islands" msgstr "Britse Maagdeneilanden" #: profile-builder-2.0/admin/manage-fields.php:316 msgid "Brunei" msgstr "Brunei" #: profile-builder-2.0/admin/manage-fields.php:317 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bulgaria" msgstr "Bulgarije" #: profile-builder-2.0/admin/manage-fields.php:318 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burkina Faso" msgstr "Burkina Faso" #: profile-builder-2.0/admin/manage-fields.php:319 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burundi" msgstr "Burundi" #: profile-builder-2.0/admin/manage-fields.php:320 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cambodia" msgstr "Cambodja" #: profile-builder-2.0/admin/manage-fields.php:321 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cameroon" msgstr "Kameroen" #: profile-builder-2.0/admin/manage-fields.php:322 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Canada" msgstr "Canada" #: profile-builder-2.0/admin/manage-fields.php:323 msgid "Cape Verde" msgstr "Kaapverdië" #: profile-builder-2.0/admin/manage-fields.php:324 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cayman Islands" msgstr "Kaaimaneilanden" #: profile-builder-2.0/admin/manage-fields.php:325 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Central African Republic" msgstr "Centraal Afrikaanse Republiek" #: profile-builder-2.0/admin/manage-fields.php:326 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chad" msgstr "Tsjaad" #: profile-builder-2.0/admin/manage-fields.php:327 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chile" msgstr "Chili" #: profile-builder-2.0/admin/manage-fields.php:328 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "China" msgstr "China" #: profile-builder-2.0/admin/manage-fields.php:329 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Christmas Island" msgstr "Kersteiland" #: profile-builder-2.0/admin/manage-fields.php:330 msgid "Cocos Islands" msgstr "Cocoseilanden" #: profile-builder-2.0/admin/manage-fields.php:331 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Colombia" msgstr "Colombia" #: profile-builder-2.0/admin/manage-fields.php:332 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Comoros" msgstr "Comoren" #: profile-builder-2.0/admin/manage-fields.php:333 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cook Islands" msgstr "Cookeilanden" #: profile-builder-2.0/admin/manage-fields.php:334 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Costa Rica" msgstr "Costa Rica" #: profile-builder-2.0/admin/manage-fields.php:335 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Croatia" msgstr "Kroatië" #: profile-builder-2.0/admin/manage-fields.php:336 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cuba" msgstr "Cuba" #: profile-builder-2.0/admin/manage-fields.php:337 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Curacao" msgstr "Curacao" #: profile-builder-2.0/admin/manage-fields.php:338 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cyprus" msgstr "Cyprus" #: profile-builder-2.0/admin/manage-fields.php:339 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Czech Republic" msgstr "Tsjechië" #: profile-builder-2.0/admin/manage-fields.php:340 msgid "Democratic Republic of the Congo" msgstr "Democratische Republiek Congo" #: profile-builder-2.0/admin/manage-fields.php:341 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Denmark" msgstr "Denemarken" #: profile-builder-2.0/admin/manage-fields.php:342 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Djibouti" msgstr "Djibouti" #: profile-builder-2.0/admin/manage-fields.php:343 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominica" msgstr "Dominica" #: profile-builder-2.0/admin/manage-fields.php:344 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominican Republic" msgstr "Dominicaanse Republiek" #: profile-builder-2.0/admin/manage-fields.php:345 msgid "East Timor" msgstr "Oost Timor" #: profile-builder-2.0/admin/manage-fields.php:346 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ecuador" msgstr "Ecuador" #: profile-builder-2.0/admin/manage-fields.php:347 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Egypt" msgstr "Egypte" #: profile-builder-2.0/admin/manage-fields.php:348 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "El Salvador" msgstr "El Salvador" #: profile-builder-2.0/admin/manage-fields.php:349 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Equatorial Guinea" msgstr "Equatoriaal Guinea" #: profile-builder-2.0/admin/manage-fields.php:350 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Eritrea" msgstr "Eritrea" #: profile-builder-2.0/admin/manage-fields.php:351 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Estonia" msgstr "Estland" #: profile-builder-2.0/admin/manage-fields.php:352 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ethiopia" msgstr "Ethiopië" #: profile-builder-2.0/admin/manage-fields.php:353 msgid "Falkland Islands" msgstr "Falklandeilanden" #: profile-builder-2.0/admin/manage-fields.php:354 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Faroe Islands" msgstr "Faeröer" #: profile-builder-2.0/admin/manage-fields.php:355 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Fiji" msgstr "Fiji" #: profile-builder-2.0/admin/manage-fields.php:356 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Finland" msgstr "Finland" #: profile-builder-2.0/admin/manage-fields.php:357 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "France" msgstr "Frankrijk" #: profile-builder-2.0/admin/manage-fields.php:358 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Guiana" msgstr "Frans Guyana" #: profile-builder-2.0/admin/manage-fields.php:359 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Polynesia" msgstr "Frans Polynesië" #: profile-builder-2.0/admin/manage-fields.php:360 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Southern Territories" msgstr " Franse Zuidelijke Gebieden" #: profile-builder-2.0/admin/manage-fields.php:361 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gabon" msgstr "Gabon" #: profile-builder-2.0/admin/manage-fields.php:362 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gambia" msgstr "Gambia" #: profile-builder-2.0/admin/manage-fields.php:363 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Georgia" msgstr "Georgië" #: profile-builder-2.0/admin/manage-fields.php:364 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Germany" msgstr "Duitsland" #: profile-builder-2.0/admin/manage-fields.php:365 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ghana" msgstr "Ghana" #: profile-builder-2.0/admin/manage-fields.php:366 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gibraltar" msgstr "Gibraltar" #: profile-builder-2.0/admin/manage-fields.php:367 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greece" msgstr "Griekenland" #: profile-builder-2.0/admin/manage-fields.php:368 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greenland" msgstr "Groenland" #: profile-builder-2.0/admin/manage-fields.php:369 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Grenada" msgstr "Grenada" #: profile-builder-2.0/admin/manage-fields.php:370 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guadeloupe" msgstr "Guadeloupe" #: profile-builder-2.0/admin/manage-fields.php:371 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guam" msgstr "Guam" #: profile-builder-2.0/admin/manage-fields.php:372 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guatemala" msgstr "Guatemala" #: profile-builder-2.0/admin/manage-fields.php:373 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guernsey" msgstr "Guernsey" #: profile-builder-2.0/admin/manage-fields.php:374 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea" msgstr "Guinea" #: profile-builder-2.0/admin/manage-fields.php:375 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: profile-builder-2.0/admin/manage-fields.php:376 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guyana" msgstr "Guyana" #: profile-builder-2.0/admin/manage-fields.php:377 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Haiti" msgstr "Haiti" #: profile-builder-2.0/admin/manage-fields.php:378 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Heard Island and McDonald Islands" msgstr "Heard en McDonaldeilanden" #: profile-builder-2.0/admin/manage-fields.php:379 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Honduras" msgstr "Honduras" #: profile-builder-2.0/admin/manage-fields.php:380 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hong Kong" msgstr "Hong Kong" #: profile-builder-2.0/admin/manage-fields.php:381 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hungary" msgstr "Hongarije" #: profile-builder-2.0/admin/manage-fields.php:382 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iceland" msgstr "IJsland" #: profile-builder-2.0/admin/manage-fields.php:383 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "India" msgstr "India" #: profile-builder-2.0/admin/manage-fields.php:384 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Indonesia" msgstr "Indonesië" #: profile-builder-2.0/admin/manage-fields.php:385 msgid "Iran" msgstr "Iran" #: profile-builder-2.0/admin/manage-fields.php:386 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iraq" msgstr "Irak" #: profile-builder-2.0/admin/manage-fields.php:387 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ireland" msgstr "Ierland" #: profile-builder-2.0/admin/manage-fields.php:388 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Isle of Man" msgstr "Man" #: profile-builder-2.0/admin/manage-fields.php:389 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Israel" msgstr "Israel" #: profile-builder-2.0/admin/manage-fields.php:390 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Italy" msgstr "Italië" #: profile-builder-2.0/admin/manage-fields.php:391 msgid "Ivory Coast" msgstr "Ivoorkust" #: profile-builder-2.0/admin/manage-fields.php:392 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jamaica" msgstr "Jamaica" #: profile-builder-2.0/admin/manage-fields.php:393 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Japan" msgstr "Japan" #: profile-builder-2.0/admin/manage-fields.php:394 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jersey" msgstr "Jersey" #: profile-builder-2.0/admin/manage-fields.php:395 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jordan" msgstr "Jordanië" #: profile-builder-2.0/admin/manage-fields.php:396 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kazakhstan" msgstr "Kazakhstan" #: profile-builder-2.0/admin/manage-fields.php:397 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kenya" msgstr "Kenia" #: profile-builder-2.0/admin/manage-fields.php:398 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kiribati" msgstr "Kiribati" #: profile-builder-2.0/admin/manage-fields.php:399 msgid "Kosovo" msgstr "Kosovo" #: profile-builder-2.0/admin/manage-fields.php:400 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kuwait" msgstr "Koeweit" #: profile-builder-2.0/admin/manage-fields.php:401 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kyrgyzstan" msgstr "Kirgizië" #: profile-builder-2.0/admin/manage-fields.php:402 msgid "Laos" msgstr "Laos" #: profile-builder-2.0/admin/manage-fields.php:403 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Latvia" msgstr "Letland" #: profile-builder-2.0/admin/manage-fields.php:404 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lebanon" msgstr "Libanon" #: profile-builder-2.0/admin/manage-fields.php:405 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lesotho" msgstr "Lesotho" #: profile-builder-2.0/admin/manage-fields.php:406 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liberia" msgstr "Liberia" #: profile-builder-2.0/admin/manage-fields.php:407 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Libya" msgstr "Libië" #: profile-builder-2.0/admin/manage-fields.php:408 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liechtenstein" msgstr "Liechtenstein" #: profile-builder-2.0/admin/manage-fields.php:409 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lithuania" msgstr "Litouwen" #: profile-builder-2.0/admin/manage-fields.php:410 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Luxembourg" msgstr "Luxemburg" #: profile-builder-2.0/admin/manage-fields.php:411 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macao" msgstr "Macao" #: profile-builder-2.0/admin/manage-fields.php:412 msgid "Macedonia" msgstr "Macedonië" #: profile-builder-2.0/admin/manage-fields.php:413 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Madagascar" msgstr "Madagascar" #: profile-builder-2.0/admin/manage-fields.php:414 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malawi" msgstr "Malawi" #: profile-builder-2.0/admin/manage-fields.php:415 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malaysia" msgstr "Maleisië" #: profile-builder-2.0/admin/manage-fields.php:416 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Maldives" msgstr "Maldiven" #: profile-builder-2.0/admin/manage-fields.php:417 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mali" msgstr "Mali" #: profile-builder-2.0/admin/manage-fields.php:418 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malta" msgstr "Malta" #: profile-builder-2.0/admin/manage-fields.php:419 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Marshall Islands" msgstr "Marshalleilanden" #: profile-builder-2.0/admin/manage-fields.php:420 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Martinique" msgstr "Martinique" #: profile-builder-2.0/admin/manage-fields.php:421 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritania" msgstr "Mauritanië" #: profile-builder-2.0/admin/manage-fields.php:422 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritius" msgstr "Mauritius" #: profile-builder-2.0/admin/manage-fields.php:423 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mayotte" msgstr "Mayotte" #: profile-builder-2.0/admin/manage-fields.php:424 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mexico" msgstr "Mexico" #: profile-builder-2.0/admin/manage-fields.php:425 msgid "Micronesia" msgstr "Micronesia" #: profile-builder-2.0/admin/manage-fields.php:426 msgid "Moldova" msgstr "Moldavië" #: profile-builder-2.0/admin/manage-fields.php:427 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Monaco" msgstr "Monaco" #: profile-builder-2.0/admin/manage-fields.php:428 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mongolia" msgstr "Mongolië" #: profile-builder-2.0/admin/manage-fields.php:429 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montenegro" msgstr "Montenegro" #: profile-builder-2.0/admin/manage-fields.php:430 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montserrat" msgstr "Montserrat" #: profile-builder-2.0/admin/manage-fields.php:431 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Morocco" msgstr "Marokko" #: profile-builder-2.0/admin/manage-fields.php:432 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mozambique" msgstr "Mozambique" #: profile-builder-2.0/admin/manage-fields.php:433 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Myanmar" msgstr "Myanmar" #: profile-builder-2.0/admin/manage-fields.php:434 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Namibia" msgstr "Namibië" #: profile-builder-2.0/admin/manage-fields.php:435 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nauru" msgstr "Nauru" #: profile-builder-2.0/admin/manage-fields.php:436 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nepal" msgstr "Nepal" #: profile-builder-2.0/admin/manage-fields.php:437 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Netherlands" msgstr "Nederland" #: profile-builder-2.0/admin/manage-fields.php:438 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Caledonia" msgstr "Nieuw Caledonië" #: profile-builder-2.0/admin/manage-fields.php:439 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Zealand" msgstr "Nieuw Zeeland" #: profile-builder-2.0/admin/manage-fields.php:440 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nicaragua" msgstr "Nicaragua" #: profile-builder-2.0/admin/manage-fields.php:441 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niger" msgstr "Niger" #: profile-builder-2.0/admin/manage-fields.php:442 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nigeria" msgstr "Nigeria" #: profile-builder-2.0/admin/manage-fields.php:443 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niue" msgstr "Niue" #: profile-builder-2.0/admin/manage-fields.php:444 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norfolk Island" msgstr "Norfolk Eiland" #: profile-builder-2.0/admin/manage-fields.php:445 msgid "North Korea" msgstr "Noord Korea" #: profile-builder-2.0/admin/manage-fields.php:446 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Northern Mariana Islands" msgstr "Noordelijke Marianen" #: profile-builder-2.0/admin/manage-fields.php:447 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norway" msgstr "Noorwegen" #: profile-builder-2.0/admin/manage-fields.php:448 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Oman" msgstr "Oman" #: profile-builder-2.0/admin/manage-fields.php:449 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pakistan" msgstr "Pakistan" #: profile-builder-2.0/admin/manage-fields.php:450 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palau" msgstr "Palau" #: profile-builder-2.0/admin/manage-fields.php:451 msgid "Palestinian Territory" msgstr "Palestijnse gebieden" #: profile-builder-2.0/admin/manage-fields.php:452 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Panama" msgstr "Panama" #: profile-builder-2.0/admin/manage-fields.php:453 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Papua New Guinea" msgstr "Papoea Nieuw Guinea" #: profile-builder-2.0/admin/manage-fields.php:454 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Paraguay" msgstr "Paraguay" #: profile-builder-2.0/admin/manage-fields.php:455 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Peru" msgstr "Peru" #: profile-builder-2.0/admin/manage-fields.php:456 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Philippines" msgstr "Filipijnen" #: profile-builder-2.0/admin/manage-fields.php:457 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pitcairn" msgstr "Pitcairn" #: profile-builder-2.0/admin/manage-fields.php:458 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Poland" msgstr "Polen" #: profile-builder-2.0/admin/manage-fields.php:459 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Portugal" msgstr "Portugal" #: profile-builder-2.0/admin/manage-fields.php:460 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Puerto Rico" msgstr "Puerto Rico" #: profile-builder-2.0/admin/manage-fields.php:461 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Qatar" msgstr "Qatar" #: profile-builder-2.0/admin/manage-fields.php:462 msgid "Republic of the Congo" msgstr "Republiek Congo" #: profile-builder-2.0/admin/manage-fields.php:463 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Reunion" msgstr "Reunion" #: profile-builder-2.0/admin/manage-fields.php:464 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Romania" msgstr "Roemenië" #: profile-builder-2.0/admin/manage-fields.php:465 msgid "Russia" msgstr "Rusland" #: profile-builder-2.0/admin/manage-fields.php:466 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Rwanda" msgstr "Rwanda" #: profile-builder-2.0/admin/manage-fields.php:467 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: profile-builder-2.0/admin/manage-fields.php:468 msgid "Saint Helena" msgstr "Sint Helena" #: profile-builder-2.0/admin/manage-fields.php:469 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts en Nevis" #: profile-builder-2.0/admin/manage-fields.php:470 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Lucia" msgstr "Saint Lucia" #: profile-builder-2.0/admin/manage-fields.php:471 msgid "Saint Martin" msgstr "Sint Maarten" #: profile-builder-2.0/admin/manage-fields.php:472 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre en Miquelon" #: profile-builder-2.0/admin/manage-fields.php:473 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent en de Grenadines" #: profile-builder-2.0/admin/manage-fields.php:474 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Samoa" msgstr "Samoa" #: profile-builder-2.0/admin/manage-fields.php:475 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "San Marino" msgstr "San Marino" #: profile-builder-2.0/admin/manage-fields.php:476 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sao Tome and Principe" msgstr "Sao Tomé en Principe" #: profile-builder-2.0/admin/manage-fields.php:477 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saudi Arabia" msgstr "Saoedi-Arabië" #: profile-builder-2.0/admin/manage-fields.php:478 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Senegal" msgstr "Senegal" #: profile-builder-2.0/admin/manage-fields.php:479 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Serbia" msgstr "Servië" #: profile-builder-2.0/admin/manage-fields.php:480 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Seychelles" msgstr "Seychellen" #: profile-builder-2.0/admin/manage-fields.php:481 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sierra Leone" msgstr "Sierra Leone" #: profile-builder-2.0/admin/manage-fields.php:482 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Singapore" msgstr "Singapore" #: profile-builder-2.0/admin/manage-fields.php:483 msgid "Sint Maarten" msgstr "Sint Maarten" #: profile-builder-2.0/admin/manage-fields.php:484 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovakia" msgstr "Slowakije" #: profile-builder-2.0/admin/manage-fields.php:485 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovenia" msgstr "Slovenië" #: profile-builder-2.0/admin/manage-fields.php:486 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Solomon Islands" msgstr "Salomonseilanden" #: profile-builder-2.0/admin/manage-fields.php:487 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Somalia" msgstr "Somalië" #: profile-builder-2.0/admin/manage-fields.php:488 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Africa" msgstr "Zuid Afrika" #: profile-builder-2.0/admin/manage-fields.php:489 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Georgia and the South Sandwich Islands" msgstr "Zuid Georgia en de Zuidelijke Sandwicheilanden" #: profile-builder-2.0/admin/manage-fields.php:490 msgid "South Korea" msgstr "Zuid Korea" #: profile-builder-2.0/admin/manage-fields.php:491 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Sudan" msgstr "Zuid Soedan" #: profile-builder-2.0/admin/manage-fields.php:492 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Spain" msgstr "Spanje" #: profile-builder-2.0/admin/manage-fields.php:493 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sri Lanka" msgstr "Sri Lanka" #: profile-builder-2.0/admin/manage-fields.php:494 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sudan" msgstr "Soedan" #: profile-builder-2.0/admin/manage-fields.php:495 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Suriname" msgstr "Suriname" #: profile-builder-2.0/admin/manage-fields.php:496 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Svalbard and Jan Mayen" msgstr "Spitsbergen en Jan Mayen" #: profile-builder-2.0/admin/manage-fields.php:497 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Swaziland" msgstr "Swaziland" #: profile-builder-2.0/admin/manage-fields.php:498 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sweden" msgstr "Zweden" #: profile-builder-2.0/admin/manage-fields.php:499 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Switzerland" msgstr "Zwitserland" #: profile-builder-2.0/admin/manage-fields.php:500 msgid "Syria" msgstr "Syrië" #: profile-builder-2.0/admin/manage-fields.php:501 msgid "Taiwan" msgstr "Taiwan" #: profile-builder-2.0/admin/manage-fields.php:502 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tajikistan" msgstr "Tajikistan" #: profile-builder-2.0/admin/manage-fields.php:503 msgid "Tanzania" msgstr "Tanzania" #: profile-builder-2.0/admin/manage-fields.php:504 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Thailand" msgstr "Thailand" #: profile-builder-2.0/admin/manage-fields.php:505 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Togo" msgstr "Togo" #: profile-builder-2.0/admin/manage-fields.php:506 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tokelau" msgstr "Tokelau" #: profile-builder-2.0/admin/manage-fields.php:507 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tonga" msgstr "Tonga" #: profile-builder-2.0/admin/manage-fields.php:508 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Trinidad and Tobago" msgstr "Trinidad en Tobago" #: profile-builder-2.0/admin/manage-fields.php:509 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tunisia" msgstr "Tunesië" #: profile-builder-2.0/admin/manage-fields.php:510 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkey" msgstr "Turkije" #: profile-builder-2.0/admin/manage-fields.php:511 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkmenistan" msgstr "Turkmenistan" #: profile-builder-2.0/admin/manage-fields.php:512 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turks and Caicos Islands" msgstr "Turks- en Caicoseilanden" #: profile-builder-2.0/admin/manage-fields.php:513 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tuvalu" msgstr "Tuvalu" #: profile-builder-2.0/admin/manage-fields.php:514 msgid "U.S. Virgin Islands" msgstr "Amerikaanse Maagdeneilanden" #: profile-builder-2.0/admin/manage-fields.php:515 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uganda" msgstr "Uganda" #: profile-builder-2.0/admin/manage-fields.php:516 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ukraine" msgstr "Oekraïne" #: profile-builder-2.0/admin/manage-fields.php:517 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Arab Emirates" msgstr "Verenigde Arabische Emiraten" #: profile-builder-2.0/admin/manage-fields.php:518 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Kingdom" msgstr "Verenigd Koninkrijk" #: profile-builder-2.0/admin/manage-fields.php:519 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States" msgstr "Verenigde Staten" #: profile-builder-2.0/admin/manage-fields.php:520 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States Minor Outlying Islands" msgstr "Kleine afgelegen eilanden van de Verenigde Staten" #: profile-builder-2.0/admin/manage-fields.php:521 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uruguay" msgstr "Uruguay" #: profile-builder-2.0/admin/manage-fields.php:522 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uzbekistan" msgstr "Oezbekistan" #: profile-builder-2.0/admin/manage-fields.php:523 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Vanuatu" msgstr "Vanuatu" #: profile-builder-2.0/admin/manage-fields.php:524 msgid "Vatican" msgstr "Vaticaanstad" #: profile-builder-2.0/admin/manage-fields.php:525 msgid "Venezuela" msgstr "Venezuela" #: profile-builder-2.0/admin/manage-fields.php:526 msgid "Vietnam" msgstr "Vietnam" #: profile-builder-2.0/admin/manage-fields.php:527 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Wallis and Futuna" msgstr "Wallis en Futuna" #: profile-builder-2.0/admin/manage-fields.php:528 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Western Sahara" msgstr "Westelijke Sahara" #: profile-builder-2.0/admin/manage-fields.php:529 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Yemen" msgstr "Jemen" #: profile-builder-2.0/admin/manage-fields.php:530 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zambia" msgstr "Zambia" #: profile-builder-2.0/admin/manage-fields.php:531 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zimbabwe" msgstr "Zimbabwe" #: profile-builder-2.0/admin/manage-fields.php:1219 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." msgstr "Met Profile Builder Pro v2 kun je verschillende velden in de registratie en profiel bewerkingsformulieren tonen, door gebruik van de Meerdere Registratie & Profiel Bewerkingsformulieren module." #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237 msgid "Your account has to be confirmed by an administrator before you can log in." msgstr "Je account moet eerst geaccepteerd worden bij een administrator voordat u kan inloggen" #: profile-builder-2.0/features/admin-approval/admin-approval.php:216 msgid "Your account has been successfully created!" msgstr "Je account is succesvol aangemaakt." #: profile-builder-2.0/features/functions.php:678 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458 msgid "Please enter a (valid) reCAPTCHA value" msgstr "Vul een (valide) reCAPTCHA waarde in" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 msgid "Click the BACK button on your browser, and try again." msgstr "Klik op de TERUG button van uw browser, en probeer opnieuw." #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78 #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87 msgid "Sorry, you cannot upload this file type for this field." msgstr "Sorry, u kunt dit bestandstype niet uploaden voor dit veld." #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94 msgid "An error occurred, please try again later." msgstr "Een fout heeft zich voorgedaan, probeer later opnieuw" #: profile-builder-2.0/modules/user-listing/userlisting.php:282 msgid "More" msgstr "Meer" #: profile-builder-2.0/modules/user-listing/userlisting.php:376 msgid "You do not have permission to view this user list." msgstr "U heeft geen permissie om de gebruikers lijst te bekijken." #: profile-builder-2.0/modules/user-listing/userlisting.php:389 msgid "You do not have the required user role to view this user list." msgstr "U heeft niet de juiste gebruikersrol om de gebruikers lijst te bekijken." #: profile-builder-2.0/modules/user-listing/userlisting.php:2253 msgid "Ascending" msgstr "Oplopend" #: profile-builder-2.0/modules/user-listing/userlisting.php:2254 msgid "Descending" msgstr "Aflopend" #: profile-builder-2.0/admin/add-ons.php:148 #: profile-builder-2.0/admin/add-ons.php:248 #: profile-builder-2.0/admin/pms-cross-promotion.php:134 #: profile-builder-2.0/admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "Nu downloaden" #: profile-builder-2.0/admin/admin-functions.php:200 msgid "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. " msgstr "Als u %1$s graag gebruikt, wilt u ons dan beoordelen op WordPress.org. Meer tevreden gebruikers betekent meer functies, minder fouten en betere ondersteuning voor iedereen. " #: profile-builder-2.0/admin/manage-fields.php:82 msgid "Choose one of the supported field types" msgstr "Kies een van de ondersteunde veldtypes" #: profile-builder-2.0/admin/manage-fields.php:84 msgid ". Extra Field Types are available in Hobbyist or PRO versions." msgstr ". Extra veldtypes zijn beschikbaar in Hobbyist of PRO versies." #: profile-builder-2.0/admin/manage-fields.php:131 msgid "Site Key" msgstr "Website sleutel" #: profile-builder-2.0/admin/manage-fields.php:131 msgid "The site key from Google, www.google.com/recaptcha" msgstr "De website sleutel van Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "Secret Key" msgstr "Geheime sleutel" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "The secret key from Google, www.google.com/recaptcha" msgstr "De geheime sleutel van Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:1023 msgid "You must enter the site key\n" msgstr "U moet de website sleutel invoeren\n" #: profile-builder-2.0/admin/manage-fields.php:1025 msgid "You must enter the secret key\n" msgstr "U moet de geheime sleutel invoeren\n" #: profile-builder-2.0/admin/add-ons.php:10 #: profile-builder-2.0/admin/add-ons.php:32 msgid "Add-Ons" msgstr "Invoegtoepassingen" #: profile-builder-2.0/admin/add-ons.php:34 #: profile-builder-2.0/admin/add-ons.php:129 #: profile-builder-2.0/admin/add-ons.php:231 #: profile-builder-2.0/admin/pms-cross-promotion.php:78 #: profile-builder-2.0/admin/pms-cross-promotion.php:114 #: profile-builder-2.0/admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "Activeren" #: profile-builder-2.0/admin/add-ons.php:36 #: profile-builder-2.0/admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "Bezig met downloaden en installeren..." #: profile-builder-2.0/admin/add-ons.php:37 #: profile-builder-2.0/admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "Installatie gereed" #: profile-builder-2.0/admin/add-ons.php:39 msgid "Add-On is Active" msgstr "Invoegtoepassing is Actief" #: profile-builder-2.0/admin/add-ons.php:40 msgid "Add-On has been activated" msgstr "Invoegtoepassing is geactiveerd" #: profile-builder-2.0/admin/add-ons.php:41 #: profile-builder-2.0/admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "Probeer de installatie opnieuw" #: profile-builder-2.0/admin/add-ons.php:43 #: profile-builder-2.0/admin/add-ons.php:140 msgid "Add-On is active" msgstr "Invoegtoepassing is actief" #: profile-builder-2.0/admin/add-ons.php:44 #: profile-builder-2.0/admin/add-ons.php:138 msgid "Add-On is inactive" msgstr "Invoegtoepassing is niet actief" #: profile-builder-2.0/admin/add-ons.php:46 #: profile-builder-2.0/admin/add-ons.php:133 #: profile-builder-2.0/admin/add-ons.php:235 #: profile-builder-2.0/admin/pms-cross-promotion.php:90 #: profile-builder-2.0/admin/pms-cross-promotion.php:118 #: profile-builder-2.0/admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "Deactiveren" #: profile-builder-2.0/admin/add-ons.php:47 msgid "Add-On has been deactivated." msgstr "Invoegtoepassing is gedeactiveerd." #: profile-builder-2.0/admin/add-ons.php:59 msgid "Something went wrong, we could not connect to the server. Please try again later." msgstr "Er is iets misgegaan, we konden geen verbinding maken met de server. Probeer het a.u.b. later opnieuw." #: profile-builder-2.0/admin/pms-cross-promotion.php:137 #: profile-builder-2.0/admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "Nu installeren" #: profile-builder-2.0/admin/add-ons.php:153 #: profile-builder-2.0/admin/add-ons.php:251 #: profile-builder-2.0/admin/pms-cross-promotion.php:141 #: profile-builder-2.0/admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "Compatibel met uw versie van Profile Builder." #: profile-builder-2.0/admin/add-ons.php:162 msgid "Upgrade Profile Builder" msgstr "Upgrade Profile Builder" #: profile-builder-2.0/admin/add-ons.php:163 msgid "Not compatible with Profile Builder" msgstr "Niet compatibel met Profile Builder" #: profile-builder-2.0/admin/add-ons.php:171 msgid "Not compatible with your version of Profile Builder." msgstr "Niet compatibel met uw versie van Profile Builder." #: profile-builder-2.0/admin/add-ons.php:172 msgid "Minimum required Profile Builder version:" msgstr "Minimaal vereiste Profile Builder versie:" #: profile-builder-2.0/admin/add-ons.php:177 msgid "Could not install add-on. Retry or install manually." msgstr "Kon invoegtoepassing niet installeren. Probeer het opnieuw of installeer handmatig." #: profile-builder-2.0/front-end/default-fields/email/email.php:51 msgid "You must enter a valid email address." msgstr "U moet een geldig e-mailadres invoeren." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "De gebruikersnaam in ongeldig omdat het niet toegestande tekens bevat." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "Voer a.u.b. een geldige gebruikersnaam in." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72 #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85 msgid "Only administrators can see this field on edit profile forms." msgstr "Alleen beheerders kunnen dit veld op profiel bewerkformulieren zien." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81 msgid "As an administrator you cannot change your role." msgstr "Als een beheerder kunt u uw rol niet wijzigen." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117 msgid "" "\n" "

            {{username}} has requested a password change via the password reset feature.

            \n" "

            His/her new password is: {{password}}

            \n" msgstr "" "\n" "

            {{username}} heeft een nieuw wachtwoord aangevraagd via de functie 'Wachtwoord Opnieuw Instellen'.

            \n" "

            Zijn/haar nieuwe wachtwoord is: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141 msgid "Admin Notification for User Password Reset" msgstr "Beheerdersmelding voor Wachtwoord Opnieuw Instellen" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46 msgid "Reset Key" msgstr "Opnieuw instellen sleutel" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47 msgid "Reset Url" msgstr "Opnieuw instellen URL" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48 msgid "Reset Link" msgstr "Opnieuw instellen link" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204 msgid "" "\n" "

            Someone requested that the password be reset for the following account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            \n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" msgstr "" "\n" "

            Iemand heeft gevraagd het wachtwoord opnieuw in te stellen voor het volgende account: {{site_name}}
            \n" "Gebruikersnaam: {{username}}

            \n" "

            Als dit niet uw bedoeling was, negeer dan gewoon deze e-mail en er wordt niets gewijzigd.

            \n" "

            Om uw wachtwoord opnieuw in te stellen, klikt u op de volgende link:
            \n" "{{{reset_link}}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218 msgid "[{{site_name}}] Password Reset" msgstr "[{{site_name}}] Wachtwoord Opnieuw Instellen" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229 msgid "Password Reset Email" msgstr "Wachtwoord Opnieuw Instellen E-mail" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235 msgid "" "\n" "

            You have successfully reset your password to: {{password}}

            \n" msgstr "" "\n" "

            U hebt uw wachtwoord opnieuw ingesteld naar: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset Successfully" msgstr "[{{site_name}}] Wachtwoord Opnieuw Ingesteld" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256 msgid "Password Reset Success Email" msgstr "Wachtwoord Opnieuw Ingesteld E-mail" #: profile-builder-2.0/modules/user-listing/userlisting.php:159 msgid "User Nicename" msgstr "Vereenvoudigde gebruikersnaam" #: pb-add-on-woocommerce/woosync-page.php:80 #: pb-add-on-woocommerce/woosync-page.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:499 msgid "None" msgstr "Geen" #: profile-builder-2.0/admin/admin-functions.php:132 msgid "ERROR: The password must have the minimum length of %s characters" msgstr "FOUT: Het wachtwoord moet een minimumlengte van %s karakters hebben" #: profile-builder-2.0/admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr "FOUT: Het wachtwoord moet een minimumsterkte van %s hebben" #: profile-builder-2.0/admin/general-settings.php:179 msgid "Username and Email" msgstr "Gebruikersnaam en e-mailadres" #: profile-builder-2.0/admin/general-settings.php:184 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "\"Gebruikersnaam en E-mailadres\" - gebruikers kunnen inloggen met zowel Gebruikersnaam als E-mailadres." #: profile-builder-2.0/admin/general-settings.php:185 msgid "\"Username\" - users can Log In only with Username." msgstr "\"Gebruikersnaam\" - gebruikers kunnen alleen inloggen met Gebruikersnaam." #: profile-builder-2.0/admin/general-settings.php:186 msgid "\"Email\" - users can Log In only with Email." msgstr "\"E-mailadres\" - gebruikers kunnen alleen inloggen met E-mailadres." #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "Specificeer de extensie(s) waartoe u de uploads wilt beperken,
            bijvoorbeeld: .ext1,.ext2,.ext3
            Indien niet gespecificeerd, is de standaardinstelling: .jpg,.jpeg,.gif,.png (.*)" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)" msgstr "Specificeer de extensie(s) waartoe u de uploads wilt beperken,
            bijvoorbeeld: .ext1,.ext2,.ext3
            Indien niet gespecificeerd, is de standaardinstelling de in WordPress toegestane extensies (.*)" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "User Roles" msgstr "Gebruikersrollen" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "Selecteer welke gebruikersrollen getoond worden aan de gebruiker (versleep om te herordenen)" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "User Roles Order" msgstr "Volgorde gebruikersrollen" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "Save the user role order from the user roles checkboxes" msgstr "Sla de volgorde van de gebruikersrollen op o.b.v. de selectievakjes voor de gebruikersrollen" #: profile-builder-2.0/admin/manage-fields.php:1128 msgid "Please select at least one user role\n" msgstr "Selecteer minstens één gebruikersrol \n" #: profile-builder-2.0/admin/register-version.php:22 msgid "Profile Builder Register" msgstr "Profile Builder registreren" #: profile-builder-2.0/admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "Het serienummer zal binnenkort verlopen!" #: profile-builder-2.0/admin/register-version.php:81 msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr "Uw serienummer is bijna verlopen, %1$s Vernieuw uw licentie %2$s." #: profile-builder-2.0/admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr "Uw serienummer is verlopen, %1$s Vernieuw uw licentie %2$s." #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 msgid "Add Entry" msgstr "Voeg toe" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 msgid "show" msgstr "tonen" #: profile-builder-2.0/features/functions.php:736 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" msgstr "Om gebruikers toe te staan zich m.b.v. Profile Builder te registreren voor uw website, moet u eerst gebruikersregistratie inschakelen. Ga naar %1$sNetwerk Instellingen%2$s en vink onder Registratie Instellingen \"Gebruikersaccounts kunnen worden geregistreerd\" aan. %3$sSluiten%4$s" #: profile-builder-2.0/front-end/class-formbuilder.php:659 msgid "User to edit:" msgstr "Te bewerken gebruiker:" #: profile-builder-2.0/front-end/default-fields/password/password.php:46 #: profile-builder-2.0/front-end/recover.php:262 msgid "The password must have the minimum length of %s characters" msgstr "Het wachtwoord moet een minimumlengte hebben van %s karakters" #: profile-builder-2.0/front-end/default-fields/password/password.php:50 #: profile-builder-2.0/front-end/recover.php:266 msgid "The password must have a minimum strength of %s" msgstr "Het wachtwoord moet een minimumsterkte hebben van %s" #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118 msgid "You cannot register this user role" msgstr "U kunt deze gebruikersrol niet registreren" #: profile-builder-2.0/front-end/login.php:153 msgid "username or email" msgstr "gebruikersnaam of e-mailadres" #: profile-builder-2.0/front-end/login.php:222 msgid "Username or Email" msgstr "Gebruikersnaam of e-mailadres" #: profile-builder-2.0/front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "U bent ingelogd als %s." #: profile-builder-2.0/front-end/logout.php:15 msgid "Log out »" msgstr "Uitloggen »" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "Gebruikersrol" #: profile-builder-2.0/modules/user-listing/userlisting.php:2167 msgid "View all extra shortcode parameters" msgstr "Bekijk alle extra shortcode-parameters" #: profile-builder-2.0/modules/user-listing/userlisting.php:2181 msgid "displays only the users that you specified the user_id for" msgstr "geeft alleen de gebruikers weer waarvoor u het user_id hebt gespecificeerd" #: profile-builder-2.0/modules/user-listing/userlisting.php:2187 msgid "displays all users except the ones you specified the user_id for" msgstr "geeft alle gebruikers weer, behalve degenen waarvoor u het user_id hebt gespecificeerd" #: profile-builder-2.0/features/functions.php:566 msgid "Minimum length of %d characters" msgstr "Minimum lengte %d tekens" #: profile-builder-2.0/front-end/class-formbuilder.php:146 #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "This message is only visible by administrators" msgstr "Dit bericht is alleen zichtbaar voor beheerders" #: profile-builder-2.0/modules/user-listing/userlisting.php:413 msgid "User not found" msgstr "Gebruiker niet gevonden" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "Geldige tags {{reply_to}} en {{site_name}}" #: profile-builder-2.0/admin/admin-bar.php:48 msgid "Choose which user roles view the admin bar in the front-end of the website." msgstr "Kies welke gebruikersrollen de beheerdersbalk in de front-end van de website te zien krijgen." #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes" msgstr "Voer een kommagescheiden lijst van waardes in
            Dit kan van alles zijn, omdat het verborgen is voor de gebruiker, maar mag geen speciale karakters of apostrofs bevatten" #: profile-builder-2.0/admin/manage-fields.php:1055 msgid "The meta-name cannot be empty\n" msgstr "De meta-naam mag niet leeg zijn\n" #: profile-builder-2.0/admin/register-version.php:69 msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received" msgstr "Nu u een exemplaar hebt van %s, moet u de tijd nemen om het te registreren met het serienummer dat u ontvangen hebt" #: profile-builder-2.0/admin/register-version.php:243 msgid "

            Your Profile Builder serial number is invalid or missing.
            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

            " msgstr "

            Uw Profile Builder serienummer is ongeldig of ontbreekt.
            %1$sRegistreer uw exemplaar%2$s om toegang te krijgen tot automatische updates en ondersteuning. Licentiesleutel nodig? %3$sKoop er nu een%4$s

            " #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17 #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60 msgid "...Choose" msgstr "...Kies" #: profile-builder-2.0/features/class-list-table.php:526 #: profile-builder-2.0/features/class-list-table.php:942 msgid "1 item" msgstr "1 item" #: profile-builder-2.0/features/functions.php:552 msgid "Very Weak" msgstr "Erg zwak" #: profile-builder-2.0/features/functions.php:640 msgid "This field is required" msgstr "Dit veld is verplicht" #: profile-builder-2.0/features/functions.php:704 msgid "Cancel" msgstr "Annuleren" #: profile-builder-2.0/features/functions.php:740 msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s" msgstr "Om gebruikers toe te staan zich m.b.v. Profile Builder voor uw website te registreren, moet u eerst gebruikersregistratie inschakelen. Ga naar de %1$sInstellingen -> Algemeen%2$s en zorg ervoor dat u onder Lidmaatschap \"Iedereen kan registreren\" aangevinkt hebt. %3$sSluiten%4$s" #: profile-builder-2.0/front-end/login.php:144 msgid "Invalid username." msgstr "Ongeldige gebruikersnaam." #: profile-builder-2.0/front-end/login.php:149 #: profile-builder-2.0/front-end/login.php:153 msgid "username" msgstr "gebruikersnaam" #: profile-builder-2.0/front-end/login.php:149 msgid "email" msgstr "e-mailadres" #: profile-builder-2.0/front-end/login.php:256 msgid "Lost your password?" msgstr "Uw wachtwoord vergeten?" #: profile-builder-2.0/index.php:34 msgid " is also activated. You need to deactivate it before activating this version of the plugin." msgstr "is ook geactiveerd. U moet deze deactiveren voordat u deze versie van de plugin activeert." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54 msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email" msgstr "Moet een geldig e-mailadres zijn of de tag {{reply_to}} die standaard het e-mailadres van de beheerder geeft" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508 msgid "Your selected password at signup" msgstr "Het door u geselecteerde wachtwoord tijdens registratie" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save." msgstr "Deze instellingen worden na het opslaan ook overgenomen in de 'Beheerders e-mail aanpassen' instellingenpagina." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "Dit formulier is leeg." #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "Alle items verwijderen" #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all" msgstr "Alles verwijderen" #: profile-builder-2.0/modules/user-listing/userlisting.php:1621 msgid "Choose..." msgstr "Kies..." #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Set the number of users to be displayed on every paginated part of the all-userlisting" msgstr "Stel het aantal gebruikers in dat getoond moet worden per pagina van de gebruikerslijst" #: profile-builder-2.0/admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "Toon/verberg de beheerdersbalk in de front-end" #: profile-builder-2.0/admin/admin-bar.php:10 #: profile-builder-2.0/admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "Instellingen beheerdersbalk" #: profile-builder-2.0/admin/admin-bar.php:57 msgid "User-Role" msgstr "Gebruikersrol" #: profile-builder-2.0/admin/admin-bar.php:58 msgid "Visibility" msgstr "Zichtbaarheid" #: profile-builder-2.0/admin/admin-bar.php:73 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "Standaard" #: profile-builder-2.0/admin/admin-bar.php:74 msgid "Show" msgstr "Tonen" #: profile-builder-2.0/admin/admin-bar.php:75 #: profile-builder-2.0/modules/user-listing/userlisting.php:1554 msgid "Hide" msgstr "Verbergen" #: pb-add-on-woocommerce/woosync-page.php:147 #: profile-builder-2.0/admin/admin-bar.php:86 #: profile-builder-2.0/admin/general-settings.php:224 #: profile-builder-2.0/admin/register-version.php:95 #: profile-builder-2.0/features/functions.php:697 #: profile-builder-2.0/modules/modules.php:127 msgid "Save Changes" msgstr "Wijzigingen opslaan" #: profile-builder-2.0/admin/admin-functions.php:37 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 )" msgstr "U moet inloggen met het e-mailadres. Dit veld is NIET zichtbaar op de front-end! (u kunt deze instellingen wijzigen op het tabblad \"%s\")" #: profile-builder-2.0/admin/admin-functions.php:37 #: profile-builder-2.0/admin/general-settings.php:10 #: profile-builder-2.0/admin/general-settings.php:35 msgid "General Settings" msgstr "Algemene Instellingen" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:210 msgid "Very weak" msgstr "Zeer zwak" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:211 #: profile-builder-2.0/features/functions.php:552 msgid "Weak" msgstr "Zwak" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:212 #: profile-builder-2.0/features/functions.php:552 msgid "Medium" msgstr "Gemiddeld" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:213 #: profile-builder-2.0/features/functions.php:552 msgid "Strong" msgstr "Sterk" #: profile-builder-2.0/admin/admin-functions.php:187 msgid "Add Field" msgstr "Veld toevoegen" #: profile-builder-2.0/admin/admin-functions.php:189 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390 msgid "Save Settings" msgstr "Instellingen opslaan" #: profile-builder-2.0/admin/basic-info.php:10 msgid "Basic Information" msgstr "Basisinformatie" #: profile-builder-2.0/admin/basic-info.php:29 msgid "Version %s" msgstr "Versie %s" #: profile-builder-2.0/admin/basic-info.php:30 msgid "Profile Builder " msgstr "Profile Builder " #: profile-builder-2.0/admin/basic-info.php:31 msgid "The best way to add front-end registration, edit profile and login forms." msgstr "De beste manier om frond-end-registratie, profielbewerking en inlogformulieren toe te voegen." #: profile-builder-2.0/admin/basic-info.php:33 msgid "For Modern User Interaction" msgstr "Voor moderne gebruikersinteractie" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25 #: profile-builder-2.0/admin/basic-info.php:36 #: profile-builder-2.0/features/login-widget/login-widget.php:59 msgid "Login" msgstr "Inloggen" #: profile-builder-2.0/admin/basic-info.php:40 msgid "Registration" msgstr "Registratie" #: profile-builder-2.0/admin/basic-info.php:44 msgid "Edit Profile" msgstr "Profiel bewerken" #: profile-builder-2.0/admin/basic-info.php:51 msgid "Extra Features" msgstr "Extra functies" #: profile-builder-2.0/admin/basic-info.php:52 msgid "Features that give you more control over your users, increased security and help you fight user registration spam." msgstr "Functies die u meer controle geven over uw gebruikers, de veiligheid verhogen en u helpen tegen spam tijdens gebruikersregistratie." #: profile-builder-2.0/admin/basic-info.php:53 msgid "Enable extra features" msgstr "Extra functies inschakelen" #: profile-builder-2.0/admin/basic-info.php:57 msgid "Recover Password" msgstr "Wachtwoord herstellen" #: profile-builder-2.0/admin/basic-info.php:61 msgid "Admin Approval (*)" msgstr "Goedkeuring beheerder (*)" #: profile-builder-2.0/admin/basic-info.php:62 msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI." msgstr "U bepaalt wie er gebruiker is op uw website. Ontvang notificaties via e-mail of keur meerdere gebruikers in één keer goed via de WordPress gebruikerspagina." #: profile-builder-2.0/admin/basic-info.php:65 msgid "Email Confirmation" msgstr "E-mailbevestiging" #: profile-builder-2.0/admin/basic-info.php:66 msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address." msgstr "Wees er zeker van dat gebruikers zich met echte e-mailadressen aanmelden. Tijdens registratie zullen gebruikers een bericht ontvangen om hun e-mailadres te bevestigen." #: profile-builder-2.0/admin/basic-info.php:69 msgid "Minimum Password Length and Strength Meter" msgstr "Minimale Wachtwoordlengte- en Sterktemeter" #: profile-builder-2.0/admin/basic-info.php:70 msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength." msgstr "Elimineer zwakke wachtwoorden meteen door een minimale wachtwoordlengte in te stellen en een bepaalde wachtwoordsterkte af te dwingen." #: profile-builder-2.0/admin/basic-info.php:73 msgid "Login with Email or Username" msgstr "Inloggen met e-mailadres of gebruikersnaam" #: profile-builder-2.0/admin/basic-info.php:74 msgid "Allow users to log in with their email or username when accessing your site." msgstr "Sta gebruikers toe in te loggen met e-mailadres of gebruikersnaam als ze uw website bezoeken." #: profile-builder-2.0/admin/basic-info.php:87 msgid "Customize Your Forms The Way You Want (*)" msgstr "Pas de formulieren aan naar uw wens (*)" #: profile-builder-2.0/admin/basic-info.php:88 msgid "With Extra Profile Fields you can create the exact registration form your project needs." msgstr "Met extra profielvelden kunt u het registratieformulier creëren dat precies voldoet aan de behoefte van uw project." #: profile-builder-2.0/admin/basic-info.php:90 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "Extra profielvelden zijn beschikbaar in Hobbyist- of Pro-versies" #: profile-builder-2.0/admin/basic-info.php:92 msgid "Get started with extra fields" msgstr "Beginnen met extra velden" #: profile-builder-2.0/admin/basic-info.php:95 msgid "Avatar Upload" msgstr "Avatar upload" #: profile-builder-2.0/admin/basic-info.php:96 msgid "Generic Uploads" msgstr "Algemene uploads" #: profile-builder-2.0/admin/basic-info.php:97 msgid "Agree To Terms Checkbox" msgstr "Akkoord met voorwaarden Selectievakje" #: profile-builder-2.0/admin/basic-info.php:98 msgid "Datepicker" msgstr "Datumkiezer" #: profile-builder-2.0/admin/basic-info.php:101 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: profile-builder-2.0/admin/basic-info.php:102 msgid "Country Select" msgstr "Landselectie" #: profile-builder-2.0/admin/basic-info.php:104 msgid "Timezone Select" msgstr "Tijdzoneselectie" #: profile-builder-2.0/admin/basic-info.php:108 msgid "Input / Hidden Input" msgstr "Invoer / Afgeschermde invoer" #: profile-builder-2.0/admin/basic-info.php:110 msgid "Checkbox" msgstr "Selectievakje" #: profile-builder-2.0/admin/basic-info.php:111 msgid "Select" msgstr "Selecteren" #: profile-builder-2.0/admin/basic-info.php:112 msgid "Radio Buttons" msgstr "Keuzerondjes" #: profile-builder-2.0/admin/basic-info.php:113 msgid "Textarea" msgstr "Tekstgebied" #: profile-builder-2.0/admin/basic-info.php:125 msgid "Powerful Modules (**)" msgstr "Krachtige modules (**)" #: profile-builder-2.0/admin/basic-info.php:126 msgid "Everything you will need to manage your users is probably already available using the Pro Modules." msgstr "Alles wat u nodig hebt om uw gebruikers te beheren is waarschijnlijk al beschikbaar bij gebruik van de Pro-modules." #: profile-builder-2.0/admin/basic-info.php:128 msgid "Enable your modules" msgstr "Uw modules inschakelen" #: profile-builder-2.0/admin/basic-info.php:131 msgid "Find out more about PRO Modules" msgstr "Leer meer over de Pro-modules" #: profile-builder-2.0/admin/basic-info.php:136 #: profile-builder-2.0/modules/modules.php:89 #: profile-builder-2.0/modules/user-listing/userlisting.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:12 #: profile-builder-2.0/modules/user-listing/userlisting.php:17 #: profile-builder-2.0/modules/user-listing/userlisting.php:23 msgid "User Listing" msgstr "Gebruikerslijsten" #: profile-builder-2.0/admin/basic-info.php:138 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." msgstr "Eenvoudig te bewerken sjablonen voor gebruikerslijsten en gebruikerspagina's. Op shortcode gebaseerd en met vele opties om de overzichten aan te passen." #: profile-builder-2.0/admin/basic-info.php:144 msgid "Email Customizer" msgstr "E-mail aanpassen" #: profile-builder-2.0/admin/basic-info.php:145 msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval." msgstr "Personaliseer alle e-mail die naar de gebruikers of beheerders wordt gestuurd. Na registratie, e-mailbevestiging, goedkeuring/afkeuring." #: profile-builder-2.0/admin/basic-info.php:148 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33 #: profile-builder-2.0/modules/modules.php:110 msgid "Custom Redirects" msgstr "Aangepaste doorverwijzingen" #: profile-builder-2.0/admin/basic-info.php:149 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." msgstr "Houd uw gebruikers weg van het WordPress-dashboard, stuur hen door naar de startpagina na inloggen of registratie, alles vereist maar een paar muisklikken." #: profile-builder-2.0/admin/basic-info.php:154 #: profile-builder-2.0/modules/modules.php:75 msgid "Multiple Registration Forms" msgstr "Meerdere registratieformulieren" #: profile-builder-2.0/admin/basic-info.php:155 msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users." msgstr "Maak meerdere registratieformulieren met verschillende velden voor bepaalde gebruikersrollen. Gebruik verschillende informatie voor verschillende gebruikerstypen." #: profile-builder-2.0/admin/basic-info.php:158 #: profile-builder-2.0/modules/modules.php:82 msgid "Multiple Edit-profile Forms" msgstr "Meerdere formulieren voor profielbewerking" #: profile-builder-2.0/admin/basic-info.php:159 msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles." msgstr "Sta verschillende gebruikersgroepen toe hun specifieke informatie te bewerken. Maak meerdere formulieren voor profielbewerking aan met verschillende velden voor bepaalde gebruikersrollen." #: profile-builder-2.0/admin/basic-info.php:187 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr "* alleen beschikbaar in de %1$sHobbyist- en Pro-versie%2$s." #: profile-builder-2.0/admin/basic-info.php:188 msgid "** only available in the %1$sPro version%2$s." msgstr "** alleen beschikbaar in de %1$sPro-versie%2$s." #: profile-builder-2.0/admin/general-settings.php:39 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "Laad het CSS-bestand van Profile Builder in front-end:" #: profile-builder-2.0/admin/general-settings.php:42 #: profile-builder-2.0/admin/general-settings.php:55 #: profile-builder-2.0/admin/general-settings.php:104 #: profile-builder-2.0/admin/general-settings.php:151 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Yes" msgstr "Ja" #: profile-builder-2.0/admin/general-settings.php:44 msgid "You can find the default file here: %1$s" msgstr "U kunt het standaardbestand hier vinden: %1$s" #: profile-builder-2.0/admin/general-settings.php:51 msgid "\"Email Confirmation\" Activated:" msgstr "\"E-mailbevestiging\" geactiveerd:" #: profile-builder-2.0/admin/general-settings.php:56 #: profile-builder-2.0/admin/general-settings.php:105 #: profile-builder-2.0/admin/general-settings.php:150 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "No" msgstr "Nee" #: profile-builder-2.0/admin/general-settings.php:61 msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s." msgstr "U kunt een lijst met niet bevestigde e-mailadressen vinden in %1$sGebruikers > Alle Gebruikers > E-mailbevestiging%2$s." #: profile-builder-2.0/admin/general-settings.php:69 msgid "\"Email Confirmation\" Landing Page:" msgstr "\"E-mailbevestiging\" startpagina:" #: profile-builder-2.0/admin/general-settings.php:74 msgid "Existing Pages" msgstr "Bestaande pagina's" #: profile-builder-2.0/admin/general-settings.php:89 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." msgstr "Specificeer de pagina waar gebruikers naar worden doorgestuurd als ze hun e-mail bevestigen. Dit kan een andere pagina zijn dan de registratiepagina(s), en kan altijd gewijzigd worden. Als er niets geselecteerd is, zal er een eenvoudige bevestigingspagina aan gebruiker getoond worden." #: profile-builder-2.0/admin/general-settings.php:100 msgid "\"Admin Approval\" Activated:" msgstr "\"Goedkeuring beheerder\" geactiveerd:" #: profile-builder-2.0/admin/general-settings.php:108 msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "U kunt een gebruikerslijst vinden bij %1$sGebruikers > Alle Gebruikers > Goedkeuring beheerder%2$s." #: profile-builder-2.0/admin/general-settings.php:165 msgid "\"Admin Approval\" Feature:" msgstr "\"Goedkeuring beheerder\" functie:" #: profile-builder-2.0/admin/general-settings.php:168 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." msgstr "U bepaalt wie gebruiker is op uw website. Ontvang een melding via e-mail of keur meerdere gebruikers in één keer goed via de WordPress UI. Zet 'Goedkeuring beheerder' aan door te upgraden naar de %1$sHobbyist- of Pro-versie%2$s." #: profile-builder-2.0/admin/general-settings.php:175 msgid "Allow Users to Log in With:" msgstr "Sta gebruikers toe in te loggen met:" #: profile-builder-2.0/admin/general-settings.php:180 #: profile-builder-2.0/admin/manage-fields.php:201 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167 #: profile-builder-2.0/front-end/login.php:85 #: profile-builder-2.0/front-end/login.php:99 #: profile-builder-2.0/front-end/login.php:218 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28 #: profile-builder-2.0/modules/user-listing/userlisting.php:102 #: profile-builder-2.0/modules/user-listing/userlisting.php:277 #: profile-builder-2.0/modules/user-listing/userlisting.php:730 #: profile-builder-2.0/modules/user-listing/userlisting.php:2219 msgid "Username" msgstr "Gebruikersnaam" #: profile-builder-2.0/admin/general-settings.php:181 #: profile-builder-2.0/front-end/login.php:215 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29 #: profile-builder-2.0/modules/user-listing/userlisting.php:736 #: profile-builder-2.0/modules/user-listing/userlisting.php:2220 msgid "Email" msgstr "E-mailadres" #: profile-builder-2.0/admin/general-settings.php:193 msgid "Minimum Password Length:" msgstr "Minimale Wachtwoordlengte:" #: profile-builder-2.0/admin/general-settings.php:198 msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit" msgstr "Voer het minimaal aantal karakters in die het wachtwoord moet hebben. Laat leeg voor geen minimaal limiet." #: profile-builder-2.0/admin/general-settings.php:205 msgid "Minimum Password Strength:" msgstr "Minimale Wachtwoordsterkte:" #: profile-builder-2.0/admin/general-settings.php:209 msgid "Disabled" msgstr "Uitgeschakeld" #: profile-builder-2.0/admin/manage-fields.php:12 msgid "Manage Fields" msgstr "Velden beheren" #: profile-builder-2.0/admin/manage-fields.php:13 msgid "Manage Default and Extra Fields" msgstr "Standaard- en extra velden beheren" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Field Title" msgstr "Veldtitel" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Title of the field" msgstr "Titel van het veld" #: profile-builder-2.0/admin/manage-fields.php:119 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "Veld" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Meta-name" msgstr "Meta-naam" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "ID" msgstr "ID" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be edited" msgstr "Een uniek, automatisch aangemaakt ID voor dit bepaalde veld
            U kunt dit gebruiken in combinatie met filters om dit element indien nodig aan te pakken
            Kan niet bewerkt worden" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Description" msgstr "Beschrijving" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Enter a (detailed) description of the option for end users to read
            Optional" msgstr "Voer een (gedetailleerde) beschrijving in van de optie, zodat gebruikers die kunnen lezen
            Optioneel" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Row Count" msgstr "Rij-telling" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5" msgstr "Specificeer het aantal rijen voor een 'Tekstgebied'-veld
            Is standaard 5, indien niet gespecificeerd." #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Allowed Image Extensions" msgstr "Toegestane afbeeldingsextensies" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Allowed Upload Extensions" msgstr "Toegestane uploadextensies" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Avatar Size" msgstr "Avatargrootte" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100" msgstr "Voer een waarde in (tussen 20 en 200) voor de grootte van de 'Avatar'
            Is standaard 100, indien niet gespecificeerd." #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Date-format" msgstr "Datum-formaat" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Terms of Agreement" msgstr "Algemene voorwaarden" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Enter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>" msgstr "Voer een (gedetailleerde) beschrijving in van de algemene voorwaarden, die gebruikers kunnen lezen.
            Links kunnen ingevoerd worden mbv standaard HTML-syntax: <a href=\"custom_url\">custom_text</a>" #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Options" msgstr "Opties" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Labels" msgstr "Labels" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "Voer een kommagescheiden lijst van labels in
            Zichtbaar voor de gebruiker" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default Value" msgstr "Standaardwaarde" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default value of the field" msgstr "Standaardwaarde van het veld" #: profile-builder-2.0/admin/manage-fields.php:138 #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default Option" msgstr "Standaardoptie" #: profile-builder-2.0/admin/manage-fields.php:138 msgid "Specify the option which should be selected by default" msgstr "Specificeer de optie die standaard geselecteerd moet worden" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Default Option(s)" msgstr "Standaardoptie(s)" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)" msgstr "Specificeer de optie die standaard geselecteerd moet worden.
            Als er meerdere waardes zijn, scheid ze dan met een ',' (komma)" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default Content" msgstr "Standaard Inhoud" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default value of the textarea" msgstr "Standaardwaarde van het tekstgebied" #: pb-add-on-woocommerce/index.php:306 #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Required" msgstr "Verplicht" #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Whether the field is required or not" msgstr "Of een veld verplicht is of niet" #: profile-builder-2.0/admin/manage-fields.php:161 msgid "Overwrite Existing" msgstr "Overschrijf bestaande" #: profile-builder-2.0/admin/manage-fields.php:161 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
            Use this at your own risk" msgstr "Als u 'Ja' selecteert zal het veld aan de lijst toegevoegd worden, maar het zal alle andere velden in database overschrijven die dezelfde meta-naam hebben
            Gebruik dit op eigen risico" #: profile-builder-2.0/admin/manage-fields.php:167 msgid "Field Properties" msgstr "Veldeigenschappen" #: profile-builder-2.0/admin/manage-fields.php:181 msgid "Registration & Edit Profile" msgstr "Registratie & profiel bewerken" #: profile-builder-2.0/admin/manage-fields.php:200 msgid "Name" msgstr "Naam" #: profile-builder-2.0/admin/manage-fields.php:201 msgid "Usernames cannot be changed." msgstr "Gebruikersnamen kunnen niet veranderd worden." #: pb-add-on-woocommerce/billing-fields.php:6 #: pb-add-on-woocommerce/shipping-fields.php:6 #: profile-builder-2.0/admin/manage-fields.php:202 msgid "First Name" msgstr "Voornaam" #: pb-add-on-woocommerce/billing-fields.php:7 #: pb-add-on-woocommerce/shipping-fields.php:7 #: profile-builder-2.0/admin/manage-fields.php:203 msgid "Last Name" msgstr "Achternaam" #: profile-builder-2.0/admin/manage-fields.php:204 #: profile-builder-2.0/modules/user-listing/userlisting.php:769 #: profile-builder-2.0/modules/user-listing/userlisting.php:2227 msgid "Nickname" msgstr "Schermnaam" #: profile-builder-2.0/admin/manage-fields.php:205 msgid "Display name publicly as" msgstr "Toon de naam publiek als" #: profile-builder-2.0/admin/manage-fields.php:206 msgid "Contact Info" msgstr "Contactinformatie" #: profile-builder-2.0/admin/manage-fields.php:207 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168 #: profile-builder-2.0/front-end/recover.php:118 #: profile-builder-2.0/modules/user-listing/userlisting.php:108 msgid "E-mail" msgstr "E-mailadres" #: profile-builder-2.0/admin/manage-fields.php:208 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32 #: profile-builder-2.0/modules/user-listing/userlisting.php:111 #: profile-builder-2.0/modules/user-listing/userlisting.php:751 #: profile-builder-2.0/modules/user-listing/userlisting.php:2221 msgid "Website" msgstr "Website" #: profile-builder-2.0/admin/manage-fields.php:212 msgid "AIM" msgstr "AIM" #: profile-builder-2.0/admin/manage-fields.php:213 msgid "Yahoo IM" msgstr "Yahoo IM" #: profile-builder-2.0/admin/manage-fields.php:214 msgid "Jabber / Google Talk" msgstr "Jabber/Google Talk" #: profile-builder-2.0/admin/manage-fields.php:217 msgid "About Yourself" msgstr "Over uzelf" #: profile-builder-2.0/admin/manage-fields.php:218 #: profile-builder-2.0/modules/user-listing/userlisting.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:754 #: profile-builder-2.0/modules/user-listing/userlisting.php:2222 msgid "Biographical Info" msgstr "Biografische informatie" #: profile-builder-2.0/admin/manage-fields.php:218 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "Vertel iets over uzelf om uw profiel aan te vullen. Dit kan voor iedereen zichtbaar zijn." #: profile-builder-2.0/admin/manage-fields.php:219 #: profile-builder-2.0/front-end/recover.php:73 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "Wachtwoord" #: profile-builder-2.0/admin/manage-fields.php:219 msgid "Type your password." msgstr "Voer uw wachtwoord in." #: profile-builder-2.0/admin/manage-fields.php:220 #: profile-builder-2.0/front-end/recover.php:74 msgid "Repeat Password" msgstr "Herhaal het wachtwoord" #: profile-builder-2.0/admin/manage-fields.php:220 msgid "Type your password again. " msgstr "Voer uw wachtwoord opnieuw in. " #: profile-builder-2.0/admin/manage-fields.php:980 #: profile-builder-2.0/admin/manage-fields.php:1137 msgid "You must select a field\n" msgstr "U moet een veld selecteren\n" #: profile-builder-2.0/admin/manage-fields.php:990 msgid "Please choose a different field type as this one already exists in your form (must be unique)\n" msgstr "Selecteer a.u.b. een ander veldtype omdat dit al in uw formulier staat (het moet uniek zijn)\n" #: profile-builder-2.0/admin/manage-fields.php:1001 msgid "The entered avatar size is not between 20 and 200\n" msgstr "De ingevoerde avatargrootte ligt niet tussen 20 en 200\n" #: profile-builder-2.0/admin/manage-fields.php:1004 msgid "The entered avatar size is not numerical\n" msgstr "De ingevoerde avatargrootte is niet numeriek\n" #: profile-builder-2.0/admin/manage-fields.php:1012 msgid "The entered row number is not numerical\n" msgstr "Het ingevoerde rijnummer is niet numeriek\n" #: profile-builder-2.0/admin/manage-fields.php:1015 msgid "You must enter a value for the row number\n" msgstr "U moet een waarde invoeren voor het rijnummer\n" #: profile-builder-2.0/admin/manage-fields.php:1036 msgid "The entered value for the Datepicker is not a valid date-format\n" msgstr "De ingevoerde waarde voor de datumkiezer heeft geen geldig datumformaat\n" #: profile-builder-2.0/admin/manage-fields.php:1039 msgid "You must enter a value for the date-format\n" msgstr "U moet een waarde voor het datumformaat invoeren\n" #: profile-builder-2.0/admin/manage-fields.php:1067 #: profile-builder-2.0/admin/manage-fields.php:1075 #: profile-builder-2.0/admin/manage-fields.php:1086 msgid "That meta-name is already in use\n" msgstr "Deze meta-naam is al in gebruik\n" #: profile-builder-2.0/admin/manage-fields.php:1117 msgid "The following option(s) did not coincide with the ones in the options list: %s\n" msgstr "De volgende optie(s) komen niet overeen met de opties in de optielijst: %s\n" #: profile-builder-2.0/admin/manage-fields.php:1121 msgid "The following option did not coincide with the ones in the options list: %s\n" msgstr "De volgende optie(s) komen niet overeen met de opties in de optielijst: %s \n" #: profile-builder-2.0/admin/manage-fields.php:1144 msgid "That field is already added in this form\n" msgstr "Dat veld is al aan dit formulier toegevoegd\n" #: profile-builder-2.0/admin/manage-fields.php:1193 msgid "
            Title
            Type
            Meta Name
            Required
            " msgstr "
            Titel
            Type
            Metanaam
            Verplicht
            " #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108 #: profile-builder-2.0/features/functions.php:718 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Edit" msgstr "Bewerken" #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217 #: profile-builder-2.0/features/functions.php:711 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "Delete" msgstr "Verwijderen" #: profile-builder-2.0/admin/manage-fields.php:1208 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "Gebruik deze shortcodes op de pagina's waarop u de formulieren wilt tonen:" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Your Version" msgstr "Registreer uw versie" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Version" msgstr "Versie registreren" #: profile-builder-2.0/admin/register-version.php:70 msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support." msgstr "Als u deze versie van Profile Builder registreert, zult u informatie ontvangen inzake updates, patches en technische support." #: profile-builder-2.0/admin/register-version.php:72 msgid " Serial Number:" msgstr "Serienummer:" #: profile-builder-2.0/admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "Het serienummer is met succes gevalideerd!" #: profile-builder-2.0/admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "Het ingevoerde serienummer kon niet gevalideerd worden!" #: profile-builder-2.0/admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "Het serienummer kon niet gevalideerd worden want het is verlopen!" #: profile-builder-2.0/admin/register-version.php:85 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!" msgstr "Het serienummer kon niet gevalideerd worden omdat het proces te lang duurde. Dit komt mogelijk doordat de server niet werkt. Probeer het later opnieuw!" #: profile-builder-2.0/admin/register-version.php:87 msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "(v.b. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/features/functions.php:725 msgid "Content" msgstr "Inhoud" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 msgid "Edit this item" msgstr "Dit item bewerken" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 msgid "Delete this item" msgstr "Dit item verwijderen" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705 msgid "Please enter a value for the required field " msgstr "Voer een waarde in voor het verplichte veld" #: pb-add-on-woocommerce/woo-checkout-field-support.php:262 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122 msgid "Select File" msgstr "Selecteer Bestand" #: pb-add-on-woocommerce/woo-checkout-field-support.php:252 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112 msgid "Remove" msgstr "Verwijderen" #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8 msgid "You can add the information for the %s after you add a entry" msgstr "U kunt informatie toevoegen aan %s nadat u een item hebt toegevoegd" #: pb-add-on-woocommerce/woo-checkout-field-support.php:268 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128 msgid "Upload " msgstr "Uploaden" #: profile-builder-2.0/features/class-list-table.php:184 msgid "No items found." msgstr "Geen items gevonden." #: profile-builder-2.0/features/class-list-table.php:308 msgid "Bulk Actions" msgstr "Bulkacties" #: profile-builder-2.0/features/class-list-table.php:318 msgid "Apply" msgstr "Toepassen" #: profile-builder-2.0/features/class-list-table.php:402 msgid "Show all dates" msgstr "Alle data tonen" #: profile-builder-2.0/features/class-list-table.php:415 msgid "%1$s %2$d" msgstr "%1$s %2$d" #: profile-builder-2.0/features/class-list-table.php:431 msgid "List View" msgstr "Lijstweergave" #: profile-builder-2.0/features/class-list-table.php:432 msgid "Excerpt View" msgstr "Samenvatting Weergave" #: profile-builder-2.0/features/class-list-table.php:458 msgid "%s pending" msgstr "%s in afwachting" #: profile-builder-2.0/features/class-list-table.php:566 msgid "%1$s of %2$s" msgstr "%1$s van %2$s" #: profile-builder-2.0/features/class-list-table.php:713 msgid "Select All" msgstr "Alles selecteren" #: profile-builder-2.0/features/functions.php:526 msgid "Strength indicator" msgstr "Sterkte-indicator" #: profile-builder-2.0/features/admin-approval/admin-approval.php:14 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453 msgid "Admin Approval" msgstr "Goedkeuring beheerder" #: profile-builder-2.0/features/admin-approval/admin-approval.php:28 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "Wilt u" #: profile-builder-2.0/features/admin-approval/admin-approval.php:51 msgid "Your session has expired! Please refresh the page and try again" msgstr "Uw sessie is verlopen! Ververs de pagina en probeer het opnieuw" #: profile-builder-2.0/features/admin-approval/admin-approval.php:64 msgid "User successfully approved!" msgstr "Gebruiker goedgekeurd!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:74 msgid "User successfully unapproved!" msgstr "Gebruiker afgekeurd!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:80 msgid "User successfully deleted!" msgstr "Gebruiker verwijderd!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:85 #: profile-builder-2.0/features/admin-approval/admin-approval.php:131 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "U hebt of niet de rechten voor deze actie of is een fout opgetreden!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:96 msgid "Your session has expired! Please refresh the page and try again." msgstr "Uw sessie is verlopen! Ververs de pagina en probeer het opnieuw." #: profile-builder-2.0/features/admin-approval/admin-approval.php:109 msgid "Users successfully approved!" msgstr "Gebruikers goedgekeurd!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:119 msgid "Users successfully unapproved!" msgstr "Gebruikers afgekeurd!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:127 msgid "Users successfully deleted!" msgstr "Gebruikers verwijderd!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:147 msgid "Your account on %1$s has been approved!" msgstr "Uw account op %1$s is goedgekeurd!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:148 #: profile-builder-2.0/features/admin-approval/admin-approval.php:151 msgid "approved" msgstr "goedgekeurd" #: profile-builder-2.0/features/admin-approval/admin-approval.php:150 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "Een beheerder heeft zojuist uw account goedgekeurd op %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:155 msgid "Your account on %1$s has been unapproved!" msgstr "Uw account op %1$s is afgekeurd!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:156 #: profile-builder-2.0/features/admin-approval/admin-approval.php:159 msgid "unapproved" msgstr "afgekeurd" #: profile-builder-2.0/features/admin-approval/admin-approval.php:158 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "Een beheerder heeft zojuist uw account afgekeurd op %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:177 msgid "ERROR: Your account has to be confirmed by an administrator before you can log in." msgstr "FOUT: Uw account moet bevestigd worden door een beheerder voordat u kunt inloggen." #: profile-builder-2.0/features/admin-approval/admin-approval.php:189 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature." msgstr "Uw account moet bevestigd worden door een beheerder voordat u de functie 'Wachtwoord herstellen' kunt gebruiken." #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "deze gebruiker verwijderen?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "deze gebruiker afkeuren?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr "Afkeuren" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "deze gebruiker goedkeuren?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "Goedkeuren" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167 #: profile-builder-2.0/modules/user-listing/userlisting.php:278 #: profile-builder-2.0/modules/user-listing/userlisting.php:742 #: profile-builder-2.0/modules/user-listing/userlisting.php:2224 msgid "Firstname" msgstr "Voornaam" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168 #: profile-builder-2.0/modules/user-listing/userlisting.php:745 #: profile-builder-2.0/modules/user-listing/userlisting.php:2225 msgid "Lastname" msgstr "Achternaam" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170 #: profile-builder-2.0/modules/user-listing/userlisting.php:149 #: profile-builder-2.0/modules/user-listing/userlisting.php:279 #: profile-builder-2.0/modules/user-listing/userlisting.php:772 #: profile-builder-2.0/modules/user-listing/userlisting.php:2229 msgid "Role" msgstr "Rol" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169 msgid "Registered" msgstr "Geregistreerd" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "Gebruikersstatus" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "Wilt u de geselecteerde gebruikers in één keer goedkeuren?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "Wilt u de geselecteerde gebruikers in één keer afkeuren?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "Wilt u de geselecteerde gebruikers in één keer verwijderen?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278 msgid "Sorry, but you don't have permission to do that!" msgstr "Sorry, u hebt niet het recht dit te doen!" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339 msgid "Approved" msgstr "Goedgekeurd" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341 msgid "Unapproved" msgstr "Afgekeurd" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454 msgid "All Users" msgstr "Alle gebruikers" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 msgid "delete this user from the _signups table?" msgstr "deze gebruiker verwijderen uit de tabel _signups?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 msgid "confirm this email yourself?" msgstr "dit e-mailadres zelf bevestigen?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218 msgid "Confirm Email" msgstr "E-mailadres bevestigen " #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 msgid "resend the activation link?" msgstr "de activeringslink opnieuw sturen?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219 msgid "Resend Activation Email" msgstr "Activeringsmail opnieuw sturen" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249 msgid "%s couldn't be deleted" msgstr "%s kon niet verwijderd worden" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253 msgid "All users have been successfully deleted" msgstr "Alle gebruikers zijn verwijderd" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263 msgid "The selected users have been activated" msgstr "De geselecteerde gebruikers zijn geactiveerd" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274 msgid "The selected users have had their activation emails resent" msgstr "De activerings e-mail is opnieuw gestuurd naar de geselecteerde gebruikers" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "Gebruikers met niet bevestigde e-mailadressen" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "Er is een fout opgetreden tijdens deze actie!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "De geselecteerde gebruiker kon niet verwijderd worden" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "E-mail notificatie opnieuw gestuurd naar gebruiker" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398 msgid "[%1$s] Activate %2$s" msgstr "[%1$s] Activeren %2$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442 #: profile-builder-2.0/front-end/register.php:71 msgid "Could not create user!" msgstr "Gebruiker kon niet aangemaakt worden!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445 msgid "That username is already activated!" msgstr "Die gebruikersnaam is al geactiveerd!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468 msgid "There was an error while trying to activate the user" msgstr "Er is een fout opgetreden tijdens het activeren van de gebruiker" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73 msgid "A new subscriber has (been) registered!" msgstr "Er is een nieuw abonnee geregistreerd!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "Nieuwe abonnee op %1$s.

            Gebruikersnaam:%2$s
            E-mailadres:%3$s
            " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634 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!" msgstr "De functie \"Goedkeuring beheerder\" is tijdens registratie geactiveerd. Vergeet dus niet dat u de gebruiker moet goedkeuren voordat hij/zij kan inloggen!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570 msgid "[%1$s] Your new account information" msgstr "[%1$s] Uw nieuwe accountinformatie" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581 msgid "Welcome to %1$s!


            Your username is:%2$s and password:%3$s" msgstr "Welkom op %1$s!


            Uw gebruikersnaam is:%2$s en het wachtwoord:%3$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642 #: profile-builder-2.0/front-end/register.php:125 msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email." msgstr "Voordat u toegang tot het account hebt, moet een beheerder dit goedkeuren. U wordt geïnformeerd via e-mail." #: profile-builder-2.0/features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "Met deze inlogwidget kunt u een inlogformulier op de zijbalk plaatsen." #: profile-builder-2.0/features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "Profile Builder inlogwidget" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36 #: profile-builder-2.0/front-end/class-formbuilder.php:415 #: profile-builder-2.0/front-end/login.php:250 msgid "Register" msgstr "Registreren" #: profile-builder-2.0/features/login-widget/login-widget.php:63 msgid "Title:" msgstr "Titel:" #: profile-builder-2.0/features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "Doorverwijs-URL na inloggen (optioneel):" #: profile-builder-2.0/features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "Registratiepagina-URL (optioneel):" #: profile-builder-2.0/features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "URL Wachtwoord-herstel pagina (optioneel):" #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91 #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "De gebruikersnaam kan niet gewijzigd worden." #: profile-builder-2.0/front-end/class-formbuilder.php:136 msgid "Only an administrator can add new users." msgstr "Alleen een beheerder kan nieuwe gebruikers toevoegen." #: profile-builder-2.0/front-end/class-formbuilder.php:146 msgid "Users can register themselves or you can manually create users here." msgstr "Gebruikers kunnen zichzelf registreren of u kunt hier handmatig gebruikers aanmaken." #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "Users cannot currently register themselves, but you can manually create users here." msgstr "Gebruikers kunnen zich momenteel niet zelf registreren, maar u kunt hier handmatig gebruikers aanmaken." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "U bent momenteel ingelogd als %1s. U hebt geen ander account nodig. %2s" #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Log out of this account." msgstr "Uitloggen van dit account." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Logout" msgstr "Uitloggen" #: profile-builder-2.0/front-end/class-formbuilder.php:175 msgid "You must be logged in to edit your profile." msgstr "U moet ingelogd zijn om uw profiel te bewerken." #: profile-builder-2.0/features/functions.php:994 msgid "here" msgstr "hier" #: profile-builder-2.0/features/functions.php:995 msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s" msgstr "U zult spoedig automatisch doorgestuurd worden. Als u deze pagina meer dan %1$d seconden ziet, klik dan op %2$s.%3$s" #: profile-builder-2.0/front-end/class-formbuilder.php:315 #: profile-builder-2.0/front-end/class-formbuilder.php:322 msgid "The account %1s has been successfully created!" msgstr "Het account %1s is aangemaakt!" #: profile-builder-2.0/front-end/class-formbuilder.php:318 #: profile-builder-2.0/front-end/class-formbuilder.php:328 msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link." msgstr "Voordat u toegang krijgt tot uw account %1s, moet u uw e-mailadres bevestigen. Kijk in uw inbox en klik op de activeringslink." #: profile-builder-2.0/front-end/class-formbuilder.php:324 msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email." msgstr "Voordat u toegang krijgt tot uw account %1s, moet een beheerder dit goedkeuren. U wordt geïnformeerd via e-mail." #: profile-builder-2.0/front-end/class-formbuilder.php:347 msgid "Your profile has been successfully updated!" msgstr "Uw profiel is bijgewerkt!" #: profile-builder-2.0/front-end/class-formbuilder.php:358 msgid "There was an error in the submitted form" msgstr "Fout tijdens versturen van het formulier" #: profile-builder-2.0/front-end/class-formbuilder.php:415 msgid "Add User" msgstr "Gebruiker toevoegen" #: profile-builder-2.0/admin/add-ons.php:170 #: profile-builder-2.0/front-end/class-formbuilder.php:418 msgid "Update" msgstr "Bijwerken" #: profile-builder-2.0/front-end/class-formbuilder.php:481 msgid "Send these credentials via email." msgstr "Stuur deze aanmeldingsgegevens via e-mail." #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92 #: profile-builder-2.0/front-end/login.php:137 #: profile-builder-2.0/front-end/login.php:144 #: profile-builder-2.0/front-end/login.php:158 #: profile-builder-2.0/front-end/recover.php:17 #: profile-builder-2.0/front-end/recover.php:245 msgid "ERROR" msgstr "FOUT" #: profile-builder-2.0/front-end/login.php:137 msgid "The password you entered is incorrect." msgstr "Het ingevoerde wachtwoord is onjuist." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Password Lost and Found." msgstr "Wachtwoord verloren en gevonden." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Lost your password" msgstr "Uw wachtwoord verloren" #: profile-builder-2.0/front-end/login.php:158 msgid "Both fields are empty." msgstr "Beide velden zijn leeg." #: profile-builder-2.0/front-end/login.php:296 msgid "You are currently logged in as %1$s. %2$s" msgstr "Je bent momenteel ingelogd als %1$s. %2$s" #: profile-builder-2.0/front-end/login.php:295 #: profile-builder-2.0/front-end/logout.php:25 msgid "Log out of this account" msgstr "Uitloggen van dit account" #: profile-builder-2.0/front-end/login.php:295 msgid "Log out" msgstr "Uitloggen" #: profile-builder-2.0/front-end/recover.php:17 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature." msgstr "Uw account moet door een beheerder worden bevestigd voordat u de functie 'Wachtwoord Opnieuw Instellen' kunt gebruiken." #: profile-builder-2.0/front-end/recover.php:94 msgid "Reset Password" msgstr "Wachtwoord Opnieuw Instellen" #: profile-builder-2.0/front-end/recover.php:121 msgid "Please enter your username or email address." msgstr "Voer uw gebruikersnaam of e-mailadres in." #: profile-builder-2.0/front-end/recover.php:125 msgid "You will receive a link to create a new password via email." msgstr "U zult een link via e-mail ontvangen om een nieuw wachtwoord aan te maken." #: profile-builder-2.0/front-end/recover.php:122 msgid "Username or E-mail" msgstr "Gebruikersnaam of e-mailadres" #: profile-builder-2.0/front-end/recover.php:138 msgid "Get New Password" msgstr "Ontvang een nieuw wachtwoord" #: profile-builder-2.0/front-end/recover.php:185 msgid "The username entered wasn't found in the database!" msgstr "De ingevoerde gebruikersnaam is niet in de database gevonden!" #: profile-builder-2.0/front-end/recover.php:185 msgid "Please check that you entered the correct username." msgstr "Controleer of u de juiste gebruikersnaam ingevoerd hebt." #: profile-builder-2.0/front-end/recover.php:200 msgid "Check your e-mail for the confirmation link." msgstr "Controleer uw e-mail voor de bevestingslink." #: profile-builder-2.0/front-end/recover.php:235 msgid "Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s" msgstr "Iemand heeft gevraagd het wachtwoord opnieuw te stellen voor het volgende account: %1$s
            Als dit niet uw bedoeling was, negeer dan deze e-mail en er zal niets veranderen.
            Klik op de volgende link om uw wachtwoord opnieuw in te stellen: %2$s" #: profile-builder-2.0/front-end/recover.php:238 msgid "Password Reset from \"%1$s\"" msgstr "Wachtwoord Opnieuw Instellen van \"%1$s\"" #: profile-builder-2.0/front-end/recover.php:245 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "Er is een fout opgetreden tijdens het verzenden van de activeringslink naar %1$s!" #: profile-builder-2.0/front-end/recover.php:207 msgid "The email address entered wasn't found in the database!" msgstr "Het ingevoerde e-mailadres is niet in de database gevonden!" #: profile-builder-2.0/front-end/recover.php:207 msgid "Please check that you entered the correct email address." msgstr "Controleer of u het juiste e-mailadres ingevoerd hebt." #: profile-builder-2.0/front-end/recover.php:273 msgid "Your password has been successfully changed!" msgstr "Uw wachtwoord is gewijzigd!" #: profile-builder-2.0/front-end/recover.php:292 msgid "You have successfully reset your password to: %1$s" msgstr "U hebt uw wachtwoord opnieuw ingesteld naar: %1$s" #: profile-builder-2.0/front-end/recover.php:295 #: profile-builder-2.0/front-end/recover.php:306 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "Wachtwoord opnieuw ingesteld voor %1$s op \"%2$s\"" #: profile-builder-2.0/front-end/recover.php:303 msgid "%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s" msgstr "%1$s heeft gevraagd het wachtwoord te wijzigen mbv de functie 'Wachtwoord Opnieuw Instellen'.
            Zijn/haar nieuwe wachtwoord is: %2$s" #: profile-builder-2.0/front-end/recover.php:320 msgid "The entered passwords don't match!" msgstr "De ingevoerde wachtwoorden komen niet overeen!" #: profile-builder-2.0/front-end/recover.php:375 msgid "ERROR:" msgstr "FOUT:" #: profile-builder-2.0/front-end/recover.php:375 msgid "Invalid key!" msgstr "Ongeldige sleutel!" #: profile-builder-2.0/front-end/register.php:56 msgid "Invalid activation key!" msgstr "Ongeldige activeringssleutel!" #: profile-builder-2.0/front-end/register.php:60 msgid "This username is now active!" msgstr "Deze gebruikersnaam is nu actief!" #: profile-builder-2.0/front-end/register.php:74 msgid "This username is already activated!" msgstr "Deze gebruikersnaam is reeds geactiveerd!" #: profile-builder-2.0/front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "Uw e-mailadres is bevestigd." #: profile-builder-2.0/front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "Er is een fout opgetreden tijdens activering van de gebruiker." #: pb-add-on-woocommerce/index.php:393 #: profile-builder-2.0/front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "Het ingevoerde e-mailadres is niet geldig." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "Dit e-mailadres is gereserveerd voor toekomstig gebruik." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 #: profile-builder-2.0/front-end/default-fields/username/username.php:49 #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "Probeer een ander!" #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "Dit e-mailadres is reeds in gebruik." #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37 #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "De wachtwoorden komen niet overeen" #: profile-builder-2.0/front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "Deze gebruikersnaam bestaat reeds." #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "Deze gebruikersnaam is gereserveerd voor toekomstig gebruik. " #: profile-builder-2.0/modules/user-listing/userlisting.php:276 msgid "Avatar" msgstr "Avatar" #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72 #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45 #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45 #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40 #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34 #: profile-builder-2.0/front-end/extra-fields/input/input.php:30 #: profile-builder-2.0/front-end/extra-fields/map/map.php:51 #: profile-builder-2.0/front-end/extra-fields/number/number.php:30 #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39 #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52 #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46 #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49 #: profile-builder-2.0/front-end/extra-fields/select/select.php:51 #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70 #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "verplicht" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48 msgid "To use reCAPTCHA you must get an API key from" msgstr "Om reCAPTCHA te gebruiken moet u een API-sleutel krijgen van" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "Om veiligheidsredenen moet u het externe IP adres doorgeven aan reCAPTCHA!" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "Om reCAPTCHA te gebruiken moet u een openbare API-sleutel krijgen van:" #: profile-builder-2.0/modules/modules.php:11 #: profile-builder-2.0/modules/modules.php:58 msgid "Modules" msgstr "Modules" #: profile-builder-2.0/modules/modules.php:59 msgid "Here you can activate / deactivate available modules for Profile Builder." msgstr "Hier kunt u alle modules van Profile Builder activeren/deactiveren." #: profile-builder-2.0/modules/modules.php:69 msgid "Name/Description" msgstr "Naam/beschrijving" #: profile-builder-2.0/modules/modules.php:70 msgid "Status" msgstr "Status" #: profile-builder-2.0/modules/modules.php:77 #: profile-builder-2.0/modules/modules.php:84 #: profile-builder-2.0/modules/modules.php:91 #: profile-builder-2.0/modules/modules.php:98 #: profile-builder-2.0/modules/modules.php:105 #: profile-builder-2.0/modules/modules.php:112 #: profile-builder-2.0/modules/modules.php:119 msgid "Active" msgstr "Actief" #: profile-builder-2.0/modules/modules.php:78 #: profile-builder-2.0/modules/modules.php:85 #: profile-builder-2.0/modules/modules.php:92 #: profile-builder-2.0/modules/modules.php:99 #: profile-builder-2.0/modules/modules.php:106 #: profile-builder-2.0/modules/modules.php:113 #: profile-builder-2.0/modules/modules.php:120 msgid "Inactive" msgstr "Niet actief" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:96 msgid "Admin Email Customizer" msgstr "Beheerders e-mail aanpassen" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:103 msgid "User Email Customizer" msgstr "Gebruikers e-mail aanpassen" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253 msgid "Save" msgstr "Opslaan" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "Doorverwijzen" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "URL" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save." msgstr "Deze instellingen worden tijdens het opslaan ook overgenomen op de instellingenpagina \"E-mailadres gebruikers aanpassen\"." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41 msgid "From (name)" msgstr "Van (naam)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49 msgid "From (reply-to email)" msgstr "Van (antwoord-aan-mailadres)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57 msgid "Common Settings" msgstr "Algemene Instellingen" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" msgstr "" "\n" "

            Nieuwe abonnee op {{site_name}}.

            \n" "

            Gebruikersnaam:{{username}}

            \n" "

            E-mailadres:{{user_email}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274 msgid "Email Subject" msgstr "Onderwerp e-mail" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84 msgid "Default Registration & Registration with Email Confirmation" msgstr "Standaardregistratie & registratie met e-mailbevestiging" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log in!

            \n" msgstr "" "\n" "

            Nieuwe abonnee op {{site_name}}.

            \n" "

            Gebruikersnaam:{{username}}

            \n" "

            E-mailadres:{{user_email}}

            \n" "

            De functie 'goedkeuring beheerder' is geactiveerd tijdens registratie,\n" "vergeet dus niet dat u deze gebruiker moet goedkeuren voordat hij/zij kan inloggen!

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143 msgid "Registration with Admin Approval" msgstr "Registratie met Goedkeuring Beheerder" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "Beschikbare tags" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170 msgid "User Meta" msgstr "Gebruikers-meta" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "Website-URL" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "Websitenaam" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25 #: profile-builder-2.0/modules/user-listing/userlisting.php:158 msgid "User Id" msgstr "Gebruikers-ID" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33 msgid "Reply To" msgstr "Antwoorden aan" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40 msgid "Activation Key" msgstr "Activeringssleutel" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41 msgid "Activation Url" msgstr "Activerings-URL" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42 msgid "Activation Link" msgstr "Activerings-link" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" msgstr "" "\n" "

            Welkom op {{site_name}}!

            \n" "

            Uw gebruikersnaam is:{{username}} en wachtwoord:{{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85 msgid "Default Registration" msgstr "Standaardregistratie" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91 msgid "" "\n" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials.

            \n" msgstr "" "\n" "

            Klik op de volgende link om de gebruiker te activeren:
            \n" "\n" "{{{activation_link}}}

            \n" "\n" "

            Na activering zult u nog een e-mail ontvangen met uw aanmeldgegevens.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103 msgid "[{{site_name}}] Activate {{username}}" msgstr "[{{site_name}}] Activeren {{username}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114 msgid "Registration with Email Confirmation" msgstr "Registratie met e-mailbevestiging" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n" msgstr "" "\n" "

            Welkom op {{site_name}}!

            \n" "

            Uw gebruikersnaam is:{{username}} en wachtwoord:{{password}}

            \n" "

            Voordat u toegang krijgt tot uw account moet een beheerder dit goedkeuren. U wordt via e-mail geïnformeerd.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132 msgid "A new account has been created for you on {{site_name}}" msgstr "Er is een nieuwe account is voor u aangemaakt op {{site_name}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148 msgid "" "\n" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Goed nieuws!

            \n" "

            Een beheerder heeft zojuist uw account goedgekeurd: {{username}} op {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159 msgid "Your account on {{site_name}} has been approved!" msgstr "Uw account op {{site_name}} is goedgekeurd!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170 msgid "User Approval Notification" msgstr "Kennisgeving goedkeuring gebruiker" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175 msgid "" "\n" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Hallo,

            \n" "

            Helaas heeft een beheerder uw account zojuist afgekeurd: {{username}} op {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187 msgid "Your account on {{site_name}} has been unapproved!" msgstr "Uw account op {{site_name}} is afgekeurd!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198 msgid "Unapproved User Notification" msgstr "Kennisgeving afgekeurde gebruiker" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "Profiel bewerkformulier" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13 #: profile-builder-2.0/modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "Nieuw toevoegen" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "Voeg nieuw Profiel bewerkformulier toe" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "Bewerk de Profiel bewerkformulieren" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "Nieuw Profiel bewerkformulier" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "Profiel bewerkformulieren" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "Bekijk het Profiel bewerkformulier" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "Zoek de Profiel bewerkformulieren" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "Geen Profiel bewerkformulier gevonden" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "Geen Profiel bewerkformulieren in prullenbak gevonden" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138 #: profile-builder-2.0/modules/user-listing/userlisting.php:2115 msgid "Shortcode" msgstr "Shortcode" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159 #: profile-builder-2.0/modules/user-listing/userlisting.php:2136 msgid "(no title)" msgstr "(geen titel)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178 #: profile-builder-2.0/modules/user-listing/userlisting.php:2156 msgid "The shortcode will be available after you publish this form." msgstr "De shortcode is beschikbaar nadat u dit formulier gepubliceerd hebt." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180 #: profile-builder-2.0/modules/user-listing/userlisting.php:2158 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "Gebruik deze shortcode op de pagina waarop u het formulier wilt weergeven:" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184 #: profile-builder-2.0/modules/user-listing/userlisting.php:2162 msgid "Note: changing the form title also changes the shortcode!" msgstr "Attentie: als u de formuliertitel wijzigt zal ook de shortcode gewijzigd worden!" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190 #: profile-builder-2.0/modules/user-listing/userlisting.php:2195 msgid "Form Shortcode" msgstr "Formulier-shortcode" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "Of u de gebruiker wilt doorverwijzen naar een bepaalde pagina of niet" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "Berichten weergeven" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "Toegestane tijd om succesberichten weer te geven (in seconden)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 msgid "Specify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.com" msgstr "Specificeer de URL van de pagina waar gebruikers naar doorverwezen worden als ze dit formulier gebruikt hebben om hun profiel te updaten
            Gebruik de volgende opmaak: http://www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "Na profiel update..." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "Voeg een nieuw veld aan de lijst toe" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage Title (Type)" msgstr "
            Titel (Type)
            " #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "U moet de titel van het formulier specificeren voordat u het aanmaakt" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "Registratieformulier" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "Nieuw registratieformulier toevoegen" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "De registratieformulieren bewerken" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "Nieuw registratieformulier" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "Registratieformulieren" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "Het registratieformulier bekijken" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "De registratieformulieren zoeken" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "Geen registratieformulier gevonden" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "Geen registratieformulieren in prullenbak gevonden" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "Standaardrol" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "Rol Instellen" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Choose what role the user will have after (s)he registered
            If not specified, defaults to the role set in the WordPress settings" msgstr "Kies welke rol de gebruiker heeft na registratie
            Indien niet gespecificeerd, wordt de rol standaard die van de WordPress-instellingen" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "Automatisch Inloggen" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Whether to automatically log in the newly registered user or not
            Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work" msgstr "Of de nieuwe gebruiker automatisch ingelogd wordt of niet
            Werkt alleen op losse websites zonder dat de functies 'Goedkeuring beheerder' en 'E-mailbevestiging' geactiveerd zijn
            WAARSCHUWING: Als het registratieformulier gecachet wordt, zal automatisch inloggen niet werken" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "Specify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.com" msgstr "Specificeer de URL van de pagina waar gebruikers naar doorverwezen worden als ze dit formulier gebruikt hebben om zich te registreren
            Gebruik de volgende opmaak: http://www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "Na registratie..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1038 #: profile-builder-2.0/modules/user-listing/userlisting.php:1485 #: profile-builder-2.0/modules/user-listing/userlisting.php:1953 #: profile-builder-2.0/modules/user-listing/userlisting.php:2426 msgid "Search Users by All Fields" msgstr "Zoek gebruikers mbv alle velden" #: profile-builder-2.0/modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "Nieuwe gebruikerslijst toevoegen" #: profile-builder-2.0/modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "Bewerk de gebruikerslijst" #: profile-builder-2.0/modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "Nieuwe gebruikerslijst" #: profile-builder-2.0/modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "Bekijk de gebruikerslijst" #: profile-builder-2.0/modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "Zoek in de gebruikerslijst" #: profile-builder-2.0/modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "Geen gebruikerslijst gevonden" #: profile-builder-2.0/modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "Geen gebruikerslijst in prullenbak gevonden" #: profile-builder-2.0/modules/user-listing/userlisting.php:105 msgid "Display name as" msgstr "Toon naam als" #: profile-builder-2.0/modules/user-listing/userlisting.php:150 #: profile-builder-2.0/modules/user-listing/userlisting.php:2223 msgid "Registration Date" msgstr "Registratiedatum" #: profile-builder-2.0/modules/user-listing/userlisting.php:151 #: profile-builder-2.0/modules/user-listing/userlisting.php:2228 msgid "Number of Posts" msgstr "Aantal berichten" #: profile-builder-2.0/modules/user-listing/userlisting.php:155 msgid "More Info" msgstr "Meer Info" #: profile-builder-2.0/modules/user-listing/userlisting.php:156 msgid "More Info Url" msgstr "Meer Info URL" #: profile-builder-2.0/modules/user-listing/userlisting.php:157 msgid "Avatar or Gravatar" msgstr "Avatar of gravatar" #: profile-builder-2.0/modules/user-listing/userlisting.php:196 #: profile-builder-2.0/modules/user-listing/userlisting.php:227 msgid "Extra Functions" msgstr "Extra functies" #: profile-builder-2.0/modules/user-listing/userlisting.php:199 msgid "Pagination" msgstr "Paginering" #: profile-builder-2.0/modules/user-listing/userlisting.php:200 msgid "Search all Fields" msgstr "Zoek alle velden" #: profile-builder-2.0/modules/user-listing/userlisting.php:229 msgid "Go Back Link" msgstr "Ga Terug Link" #: profile-builder-2.0/modules/user-listing/userlisting.php:247 msgid "All-userlisting Template" msgstr "Sjabloon voor gebruikerslijst" #: profile-builder-2.0/modules/user-listing/userlisting.php:250 msgid "Single-userlisting Template" msgstr "Sjabloon voor gebruikerspagina" #: profile-builder-2.0/modules/user-listing/userlisting.php:733 msgid "First/Lastname" msgstr "Voor-/achternaam" #: profile-builder-2.0/modules/user-listing/userlisting.php:281 #: profile-builder-2.0/modules/user-listing/userlisting.php:739 msgid "Sign-up Date" msgstr "Aanmeld-datum" #: profile-builder-2.0/modules/user-listing/userlisting.php:748 #: profile-builder-2.0/modules/user-listing/userlisting.php:2226 msgid "Display Name" msgstr "Schermnaam" #: profile-builder-2.0/modules/user-listing/userlisting.php:280 #: profile-builder-2.0/modules/user-listing/userlisting.php:757 msgid "Posts" msgstr "Berichten" #: profile-builder-2.0/modules/user-listing/userlisting.php:760 #: profile-builder-2.0/modules/user-listing/userlisting.php:2233 msgid "Aim" msgstr "Aim" #: profile-builder-2.0/modules/user-listing/userlisting.php:763 #: profile-builder-2.0/modules/user-listing/userlisting.php:2234 msgid "Yim" msgstr "Yim" #: profile-builder-2.0/modules/user-listing/userlisting.php:766 #: profile-builder-2.0/modules/user-listing/userlisting.php:2235 msgid "Jabber" msgstr "Jabber" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "Click here to see more information about this user" msgstr "Klik hier om meer informatie over deze gebruiker te bekijken" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "More..." msgstr "Meer..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1293 msgid "Click here to see more information about this user." msgstr "Klik hier om meer informatie over deze gebruiker te bekijken." #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 #: profile-builder-2.0/modules/user-listing/userlisting.php:1442 msgid "Click here to go back" msgstr "Klik hier om terug te gaan" #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 msgid "Back" msgstr "Terug" #: profile-builder-2.0/modules/user-listing/userlisting.php:1472 msgid "«« First" msgstr "«« Eerste" #: profile-builder-2.0/modules/user-listing/userlisting.php:1473 msgid "« Prev" msgstr "« Vorige" #: profile-builder-2.0/modules/user-listing/userlisting.php:1474 msgid "Next » " msgstr "Volgende »" #: profile-builder-2.0/modules/user-listing/userlisting.php:1475 msgid "Last »»" msgstr "Laatste »»" #: profile-builder-2.0/modules/user-listing/userlisting.php:1504 msgid "You don't have any pagination settings on this userlisting!" msgstr "Er zijn geen instellingen voor paginering in deze gebruikerslijst!" #: profile-builder-2.0/modules/user-listing/userlisting.php:1970 msgid "Search" msgstr "Zoek" #: profile-builder-2.0/modules/user-listing/userlisting.php:1971 msgid "Clear Results" msgstr "Resultaten wissen" #: profile-builder-2.0/modules/user-listing/userlisting.php:2165 #: profile-builder-2.0/modules/user-listing/userlisting.php:2169 msgid "Extra shortcode parameters" msgstr "Extra shortcode-parameters" #: profile-builder-2.0/modules/user-listing/userlisting.php:2172 msgid "displays users having a certain meta-value within a certain (extra) meta-field" msgstr "toont gebruikers met een bepaalde meta-waarde in een bepaald (extra) meta-veld" #: profile-builder-2.0/modules/user-listing/userlisting.php:2173 msgid "Example:" msgstr "Voorbeeld:" #: profile-builder-2.0/modules/user-listing/userlisting.php:2175 msgid "Remember though, that the field-value combination must exist in the database." msgstr "Onthoud echter dat de veldwaarde-combinatie in de database aanwezig moet zijn." #: profile-builder-2.0/modules/user-listing/userlisting.php:2250 msgid "Random (very slow on large databases > 10K user)" msgstr "Willekeurig (vertraagt grote databases > 10.000 gebruikers)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Roles to Display" msgstr "Te tonen rollen" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Restrict the userlisting to these selected roles only
            If not specified, defaults to all existing roles" msgstr "Beperk de gebruikerslijst tot deze geselecteerde rollen
            Indien niet gespecificeerd, worden standaard alle bestaande rollen weergegeven" #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Number of Users/Page" msgstr "Aantal gebruikers per pagina" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Default Sorting Criteria" msgstr "Standaard sorteercriteria" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Set the default sorting criteria
            This can temporarily be changed for each new session" msgstr "Stel de standaard sorteercriteria in
            Dit kan tijdelijk gewijzigd worden voor iedere nieuwe sessie" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Default Sorting Order" msgstr "Standaard sorteervolgorde" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Set the default sorting order
            This can temporarily be changed for each new session" msgstr "Stel de standaard sorteervolgorde in
            Dit kan tijdelijk gewijzigd worden voor iedere nieuwe sessie" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Avatar Size (All-userlisting)" msgstr "Avatargrootte (gebruikerslijst)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Set the avatar size on the all-userlisting only" msgstr "Stel de avatargrootte in voor de gebruikerslijst" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Avatar Size (Single-userlisting)" msgstr "Avatargrootte (gebruikerspagina)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Set the avatar size on the single-userlisting only" msgstr "Stel de avatargrootte in voor de gebruikerspagina" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Visible only to logged in users?" msgstr "Alleen zichtbaar voor ingelogde gebruikers?" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "The userlisting will only be visible only to the logged in users" msgstr "De gebruikerslijst is alleen zichtbaar voor ingelogde gebruikers" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "Visible to following Roles" msgstr "Zichtbaar voor de volgende rollen" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "The userlisting will only be visible to the following roles" msgstr "De gebruikerslijst is alleen zichtbaar voor de volgende rollen" #: profile-builder-2.0/modules/user-listing/userlisting.php:2275 msgid "Userlisting Settings" msgstr "Instellingen gebruikerslijst" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "U moet de gebruikerslijst functie activeren vanuit het tabblad 'Modules'!" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You can find it in the Profile Builder menu." msgstr "U kunt dit in het menu van Profile Builder vinden." #: profile-builder-2.0/modules/user-listing/userlisting.php:2565 msgid "No results found!" msgstr "Geen resultaten gevonden!"translation/profile-builder-de_DE.po000066600000670343152141651170013510 0ustar00# Translation of Profile Builder in German # This file is distributed under the same license as the Profile Builder package. msgid "" msgstr "" "PO-Revision-Date: 2017-11-13 12:34:03+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: GlotPress/0.1\n" "Project-Id-Version: Profile Builder\n" #: profile-builder-2.0/admin/general-settings.php:154 msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s." msgstr "Du kannst über %1$Benutzer > Rollen Editor %2$s Benutzerrollen hinzufügen/bearbeiten." #: profile-builder-2.0/admin/general-settings.php:146 msgid "\"Roles Editor\" Activated:" msgstr "\"Rollen Editor\" aktiviert:" #: profile-builder-2.0/features/roles-editor/roles-editor.php:300 msgid "M j, Y @ G:i" msgstr "M j, Y @ G:i" #: profile-builder-2.0/front-end/recover.php:117 msgid "Please enter your email address." msgstr "Bitte gib deine Emailadresse ein." #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yy" msgstr "Gib das Format an, das in der Datumsauswahl angezeigt werden soll. Gültige Optionen: 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, @
            Vorgabe, wenn nicht anders gewählt: mm/dd/yy" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244 msgid "Individual redirects defined in shortcodes; redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects." msgstr "Einzelne Umleitungen in Shortcodes definiert; der Redirect_priority = \"top\" Parameter kann in jedem Shortcode hinzugefügt werden, dann haben die Shortcode Umleitungen Vorrang vor allen anderen Umleitungen." #: profile-builder-2.0/admin/manage-fields.php:1217 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." msgstr "Wenn du verschiedene Felder in den Anmelde- und Profilbearbeitungs-Formularen verwenden möchtest, benutze bitte die Mehrfach-Registrierungs und Profilbearbeitungsformular Module," #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "Umleitungseinstellungen für Mehrfache Anmelde- und Profilbearbeitungsformulare" #: profile-builder-2.0/admin/register-version.php:251 msgid "

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            " msgstr "

            Deine Profil-Builder -Lizenz läuft am %5$s ab.
            Bitte %1$serneuere deine Lizenz %2$s um Zugriff auf Produkt-Downloads, automatische Updates und Support zu erhalten. %3$sJetzt erneuern und 40% Rabatt erhalten! %4$s %6$sAusblenden%7$s

            " #: profile-builder-2.0/admin/register-version.php:246 msgid "

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            " msgstr "

            Deine Profil-Builder -Lizenz ist abgelaufen.
            Bitte %1$serneuere deine Lizenz %2$s um Zugriff auf Produkt-Downloads, automatische Updates und Support zu erhalten. %3$sJetzt erneuern und 40% Rabatt erhalten! %4$s %6$sAusblenden%7$s

            " #: profile-builder-2.0/front-end/recover.php:159 msgid "You are already logged in. You can change your password on the edit profile form." msgstr "Du bist bereits angemeldet. Du kannst das Kennwort in dem \"Profil bearbeiten\" Formular ändern." #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "Dein Seiten URL wird so aussehen:
            " #: profile-builder-2.0/features/functions.php:909 msgid "

            You can visit your site at " msgstr "

            Du kannst seine Webseite hier anschauen: " #: profile-builder-2.0/features/functions.php:896 msgid "

            Also, you will be able to visit your site at " msgstr "

            Du kannst deine Webseite hier anschauen:" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138 msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network." msgstr "Datenschutz: Ich möchte, dass meine Website in Suchmaschinen und in öffentlichen Verzeichnissen rund um dieses Netzwerk angezeigt wird." #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "Webseiten Titel" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "Webseiten URL Slug" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "Ja, ich möchte eine neue Seite erstellen" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36 #: profile-builder-2.0/modules/user-listing/userlisting.php:118 msgid "Blog URL" msgstr "Blog URL" #: profile-builder-2.0/admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "Blog Details - wird ausschließlich auf der Registrierungseite angezeigt!" #: profile-builder-2.0/admin/manage-fields.php:222 msgid "Blog Details" msgstr "Blog Details" #: profile-builder-2.0/admin/pms-cross-promotion.php:239 msgid "Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "Erlaube deinen Benutzern, bezahlte Konten mit Profil Builder /strong> zu haben. %1$sFinde heraus, wie>%2$s %3$sAusblenden %4$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579 msgid "Welcome to %1$s!


            Your username is:%2$s" msgstr "Willkommen bei %1$s!


            Ihr Benutzername lautet:%2$s" #: profile-builder-2.0/modules/user-listing/userlisting.php:1320 msgid "View Map" msgstr "Karte ansehen" #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267 #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367 #: pb-add-on-woocommerce/index.php:493 msgid "Address line 2" msgstr "Adresse Linie 2" #: pb-add-on-woocommerce/index.php:256 msgid "Billing Fields" msgstr "Rechnungsfelder" #: pb-add-on-woocommerce/index.php:256 msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "Wählen Sie, welche WooCommerce Rechnungs-Felder für den Benutzer (Drag & Drop für eine neue Reihenfolge) anzuzeigen und erforderlich sein sollten" #: pb-add-on-woocommerce/index.php:257 msgid "Billing Fields Order" msgstr "Rechnungsfelder-Sortierung" #: pb-add-on-woocommerce/index.php:257 msgid "Save the billing fields order from the billing fields checkboxes" msgstr "Sichere die Rechnungsfelder-Reihenfolge von den Rechnungsfelder-Checkboxen" #: pb-add-on-woocommerce/index.php:258 msgid "Billing Fields Name" msgstr "Rechnungsfelder-Name" #: pb-add-on-woocommerce/index.php:258 msgid "Save the billing fields names" msgstr "Die Rechnungsfelder-Namen sichern" #: pb-add-on-woocommerce/index.php:275 msgid "Shipping Fields" msgstr "Versand Felder" #: pb-add-on-woocommerce/index.php:275 msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "Wählen Sie, welche WooCommerce Versand-Felder für den Benutzer (Drag & Drop für eine neue Reihenfolge) anzuzeigen und erforderlich sein sollten" #: pb-add-on-woocommerce/index.php:276 msgid "Shipping Fields Order" msgstr "Versandfelder-Sortierung" #: pb-add-on-woocommerce/index.php:276 msgid "Save the shipping fields order from the billing fields checkboxes" msgstr "Sichere die Versandfelder-Reihenfolge von den Rechnungsfelder-Checkboxen" #: pb-add-on-woocommerce/index.php:277 msgid "Shipping Fields Name" msgstr "Versandfelder-Name" #: pb-add-on-woocommerce/index.php:277 msgid "Save the shipping fields names" msgstr "DIe Verrsandfelder-Namen sichern" #: pb-add-on-woocommerce/index.php:305 msgid "Field Name" msgstr "Feldname" #: pb-add-on-woocommerce/index.php:369 msgid "Click to edit " msgstr "Bearbeiten..." #: pb-add-on-woocommerce/woo-checkout-field-support.php:368 msgid "is not a valid phone number." msgstr "ist keine gültige Telefonnummer" #: pb-add-on-woocommerce/woo-checkout-field-support.php:377 msgid "is not a number." msgstr "ist keine Zahl" #: pb-add-on-woocommerce/woo-checkout-field-support.php:382 msgid "must be a multiplier of " msgstr "muss eine Vielzahl sein von" #: pb-add-on-woocommerce/woo-checkout-field-support.php:387 msgid "must be a greater than or equal to " msgstr "Muss größer oder gleich sein als" #: pb-add-on-woocommerce/woo-checkout-field-support.php:392 msgid "must be less than or equal to " msgstr "muss weniger oder gleich sein als" #: profile-builder-2.0/admin/add-ons.php:103 msgid "Available in Hobbyist and Pro Versions" msgstr "Verfügbar in den Versionen Hobbyist und Pro" #: profile-builder-2.0/admin/add-ons.php:105 msgid "Available in All Versions" msgstr "In allen Versionen verfügbar" #: profile-builder-2.0/admin/add-ons.php:148 msgid "Learn More" msgstr "Weitere Informationen" #: profile-builder-2.0/admin/basic-info.php:99 msgid "Timepicker" msgstr "Zeit wählen" #: profile-builder-2.0/admin/basic-info.php:100 msgid "Colorpicker" msgstr "Farbe wählen" #: profile-builder-2.0/admin/basic-info.php:103 msgid "Currency Select" msgstr "Währung wählen" #: profile-builder-2.0/admin/basic-info.php:109 msgid "Number" msgstr "Nummer" #: profile-builder-2.0/admin/basic-info.php:114 msgid "Validation" msgstr "Validierung" #: profile-builder-2.0/admin/basic-info.php:115 msgid "Map" msgstr "Karte" #: profile-builder-2.0/admin/basic-info.php:116 msgid "HTML" msgstr "HTML" #: profile-builder-2.0/admin/basic-info.php:162 #: profile-builder-2.0/modules/modules.php:117 msgid "Repeater Fields" msgstr "Wiederholungsfelder" #: profile-builder-2.0/admin/basic-info.php:163 msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role." msgstr "Erstelle eine sich wiederholende Gruppe von Feldern in Registrier- und Profil-Formularen. Beschränke die Anzahl der Gruppen für jede Benutzerrolle." #: profile-builder-2.0/admin/general-settings.php:59 msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "Das funktioniert nur mit Front-end Formularen. Wird empfohlen, um Standard Wordpress Registrierungen mittels des \"Custom Redirects\" zu einer Profile Builder Registrierung umzuleiten." #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count" msgstr "Benutze dieses in Verbindung mit WordPress Funktionen, um den Wert auf der von dir gewählten Seite anzuzeigen.
            . Automatisch ausgefüllt, aber in einigen Fällen bearbeitbar (dann muss es einzigartig sein)
            Das Ändern kann bei großen Benutzerzahlen sehr lange dauern." #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Show Currency Symbol" msgstr "Währungssymbol anzeigen" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Whether the currency symbol should be displayed after the currency name in the select option." msgstr "Ob das Währungssymbol nach dem Währungsnamen in der select-Option angezeigt werden soll." #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Show Post Type" msgstr "Beitragstyp anzeigen" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Posts from what post type will be displayed in the select." msgstr "Diese Beitragstypen werden in der Auswahl angezeigt." #: profile-builder-2.0/admin/manage-fields.php:145 msgid "Allowable Values" msgstr "Erlaubte Werte" #: profile-builder-2.0/admin/manage-fields.php:145 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." msgstr "Geben Sie 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." #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Error Message" msgstr "Fehlermeldung" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Set a custom error message that will be displayed to the user." msgstr "Eigene Fehlermeldung angeben, die dem Nutzer angezeigt wird." #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Time Format" msgstr "Zeitformat" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Specify the time format." msgstr "Zeitformat festlegen." #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Google Maps API Key" msgstr "Google Maps API Schlüssel" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Enter your Google Maps API key (
            Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used." msgstr "Google Maps API Schlüssel angeben ( API Schlüssel generieren ). Falls mehr als ein Kartenfeld in einem Formular vorhanden ist, wird der API Schlüssel der ersten Karte benutzt." #: profile-builder-2.0/admin/manage-fields.php:149 msgid "Default Latitude" msgstr "Standard Breitengrad (Latitude)" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "The latitude at which the map should be displayed when no pins are attached." msgstr "Auf der Karte angezeigter Breitengrad (Latitude) falls keine Pins vorhanden sind." #: profile-builder-2.0/admin/manage-fields.php:150 msgid "Default Longitude" msgstr "Standard Längengrad (Longitude)" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "The longitude at which the map should be displayed when no pins are attached." msgstr "Auf der Karte angezeigter Längengrad (Longitude) falls keine Pins vorhanden sind." #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Default Zoom Level" msgstr "Standard Zoomstufe" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "Fügen Sie eine Zahl von 0 bis 19 hinzu. Je höher die Zahl, desto höher der Vergrößerung." #: profile-builder-2.0/admin/manage-fields.php:152 msgid "Map Height" msgstr "Kartenhöhe" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "The height of the map." msgstr "Die Höhe der anzuzeigenden Karte" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "HTML Content" msgstr "HTML Inhalt" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "Add your HTML (or text) content" msgstr "Füge Deinen HTML (oder Text) Inhalt hinzu" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Phone Format" msgstr "Format der Telefonnummer" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces." msgstr "Sie können folgendes nutzen: # für Nummern, Klammern ( ), - Zeichen, + Zeichen, Punkt . und Leerzeichen." #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Eg. (###) ###-####" msgstr "z.B. (###) ####-####" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Empty field won't check for correct phone number." msgstr "Leeres Feld kann nicht auf eine richtige Telefonnummer geprüft werden." #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Heading Tag" msgstr "Überschriften Tag" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Change heading field size on front-end forms" msgstr "Ändern der Überschrift Feldgröße auf Front-End-Formularen" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min Number Value" msgstr "Minimaler Zahlenwert" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "Minimal erlaubter Zahlenwert (0, um nur positive Zahlen zu erlauben)" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Leave it empty for no min value" msgstr "Leer lassen für keinen minimalen Wert" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max Number Value" msgstr "Maximal erlaubter Zahlenwert" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "Maximal erlaubter Zahlenwert (0, um nur negative Zahlen zu erlauben)" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Leave it empty for no max value" msgstr "Leer lassen für keinen maximalen Wert" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Number Step Value" msgstr "Zahlenschrittwert" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal" msgstr "Schrittwert 1 erlaubt nur ganze Zahlen, 0.1 erlaubt Zahlen und Nummern mit einer Dezimalstelle" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "Um mehrere Dezimalstellen zu erlauben, benutze z.B. 0.01 (für 2 Dezimalstellen) usw." #: profile-builder-2.0/admin/manage-fields.php:159 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)" msgstr "Du kannst auch den Schrittwert benutzen, um die Intervalle der erlaubten Zahlen festzulegen (z.B. Schrittwert 2 wird nur -4, -2, 0, 2 usw erlauben)" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Leave it empty for no restriction" msgstr "Leer lassen für keine Beschränkungen" #: profile-builder-2.0/admin/manage-fields.php:564 msgid "Albania Lek" msgstr "Albania Lek" #: profile-builder-2.0/admin/manage-fields.php:565 msgid "Afghanistan Afghani" msgstr "Afghanistan Afghani" #: profile-builder-2.0/admin/manage-fields.php:566 msgid "Argentina Peso" msgstr "Argentina Peso" #: profile-builder-2.0/admin/manage-fields.php:567 msgid "Aruba Guilder" msgstr "Aruba Guilder" #: profile-builder-2.0/admin/manage-fields.php:568 msgid "Australia Dollar" msgstr "Australia Dollar" #: profile-builder-2.0/admin/manage-fields.php:569 msgid "Azerbaijan New Manat" msgstr "Azerbaijan New Manat" #: profile-builder-2.0/admin/manage-fields.php:570 msgid "Bahamas Dollar" msgstr "Bahamas Dollar" #: profile-builder-2.0/admin/manage-fields.php:571 msgid "Barbados Dollar" msgstr "Barbados Dollar" #: profile-builder-2.0/admin/manage-fields.php:572 msgid "Bangladeshi taka" msgstr "Bangladeshi taka" #: profile-builder-2.0/admin/manage-fields.php:573 msgid "Belarus Ruble" msgstr "Belarus Ruble" #: profile-builder-2.0/admin/manage-fields.php:574 msgid "Belize Dollar" msgstr "Belize Dollar" #: profile-builder-2.0/admin/manage-fields.php:575 msgid "Bermuda Dollar" msgstr "Bermuda Dollar" #: profile-builder-2.0/admin/manage-fields.php:576 msgid "Bolivia Boliviano" msgstr "Bolivien Boliviano" #: profile-builder-2.0/admin/manage-fields.php:577 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "Bosnisch-Herzegowinische Konvertible Mark" #: profile-builder-2.0/admin/manage-fields.php:578 msgid "Botswana Pula" msgstr "Botswana Pula" #: profile-builder-2.0/admin/manage-fields.php:579 msgid "Bulgaria Lev" msgstr "Bulgaria Lev" #: profile-builder-2.0/admin/manage-fields.php:580 msgid "Brazil Real" msgstr "Brazil Real" #: profile-builder-2.0/admin/manage-fields.php:581 msgid "Brunei Darussalam Dollar" msgstr "Brunei Darussalam Dollar" #: profile-builder-2.0/admin/manage-fields.php:582 msgid "Cambodia Riel" msgstr "Cambodia Riel" #: profile-builder-2.0/admin/manage-fields.php:583 msgid "Canada Dollar" msgstr "Canada Dollar" #: profile-builder-2.0/admin/manage-fields.php:584 msgid "Cayman Islands Dollar" msgstr "Cayman Islands Dollar" #: profile-builder-2.0/admin/manage-fields.php:585 msgid "Chile Peso" msgstr "Chile Peso" #: profile-builder-2.0/admin/manage-fields.php:586 msgid "China Yuan Renminbi" msgstr "China Yuan Renminbi" #: profile-builder-2.0/admin/manage-fields.php:587 msgid "Colombia Peso" msgstr "Colombia Peso" #: profile-builder-2.0/admin/manage-fields.php:588 msgid "Costa Rica Colon" msgstr "Costa Rica Colon" #: profile-builder-2.0/admin/manage-fields.php:589 msgid "Croatia Kuna" msgstr "Croatia Kuna" #: profile-builder-2.0/admin/manage-fields.php:590 msgid "Cuba Peso" msgstr "Cuba Peso" #: profile-builder-2.0/admin/manage-fields.php:591 msgid "Czech Republic Koruna" msgstr "Czech Republic Koruna" #: profile-builder-2.0/admin/manage-fields.php:592 msgid "Denmark Krone" msgstr "Denmark Krone" #: profile-builder-2.0/admin/manage-fields.php:593 msgid "Dominican Republic Peso" msgstr "Dominican Republic Peso" #: profile-builder-2.0/admin/manage-fields.php:594 msgid "East Caribbean Dollar" msgstr "East Caribbean Dollar" #: profile-builder-2.0/admin/manage-fields.php:595 msgid "Egypt Pound" msgstr "Egypt Pound" #: profile-builder-2.0/admin/manage-fields.php:596 msgid "El Salvador Colon" msgstr "El Salvador Colon" #: profile-builder-2.0/admin/manage-fields.php:597 msgid "Estonia Kroon" msgstr "Estonia Kroon" #: profile-builder-2.0/admin/manage-fields.php:598 msgid "Euro" msgstr "Euro" #: profile-builder-2.0/admin/manage-fields.php:599 msgid "Falkland Islands (Malvinas) Pound" msgstr "Falkland Islands (Malvinas) Pound" #: profile-builder-2.0/admin/manage-fields.php:600 msgid "Fiji Dollar" msgstr "Fiji Dollar" #: profile-builder-2.0/admin/manage-fields.php:601 msgid "Ghana Cedis" msgstr "Ghana Cedis" #: profile-builder-2.0/admin/manage-fields.php:602 msgid "Gibraltar Pound" msgstr "Gibraltar Pound" #: profile-builder-2.0/admin/manage-fields.php:603 msgid "Guatemala Quetzal" msgstr "Guatemala Quetzal" #: profile-builder-2.0/admin/manage-fields.php:604 msgid "Guernsey Pound" msgstr "Guernsey Pound" #: profile-builder-2.0/admin/manage-fields.php:605 msgid "Guyana Dollar" msgstr "Guyana Dollar" #: profile-builder-2.0/admin/manage-fields.php:606 msgid "Honduras Lempira" msgstr "Honduras Lempira" #: profile-builder-2.0/admin/manage-fields.php:607 msgid "Hong Kong Dollar" msgstr "Hong Kong Dollar" #: profile-builder-2.0/admin/manage-fields.php:608 msgid "Hungary Forint" msgstr "Hungary Forint" #: profile-builder-2.0/admin/manage-fields.php:609 msgid "Iceland Krona" msgstr "Isländische Krone" #: profile-builder-2.0/admin/manage-fields.php:610 msgid "India Rupee" msgstr "India Rupee" #: profile-builder-2.0/admin/manage-fields.php:611 msgid "Indonesia Rupiah" msgstr "Indonesia Rupiah" #: profile-builder-2.0/admin/manage-fields.php:612 msgid "Iran Rial" msgstr "Iran Rial" #: profile-builder-2.0/admin/manage-fields.php:613 msgid "Isle of Man Pound" msgstr "Isle of Man Pound" #: profile-builder-2.0/admin/manage-fields.php:614 msgid "Israel Shekel" msgstr "Israel Shekel" #: profile-builder-2.0/admin/manage-fields.php:615 msgid "Jamaica Dollar" msgstr "Jamaica Dollar" #: profile-builder-2.0/admin/manage-fields.php:616 msgid "Japan Yen" msgstr "Japan Yen" #: profile-builder-2.0/admin/manage-fields.php:617 msgid "Jersey Pound" msgstr "Jersey Pound" #: profile-builder-2.0/admin/manage-fields.php:618 msgid "Kazakhstan Tenge" msgstr "Kazakhstan Tenge" #: profile-builder-2.0/admin/manage-fields.php:619 msgid "Korea (North) Won" msgstr "Korea (North) Won" #: profile-builder-2.0/admin/manage-fields.php:620 msgid "Korea (South) Won" msgstr "Korea (South) Won" #: profile-builder-2.0/admin/manage-fields.php:621 msgid "Kyrgyzstan Som" msgstr "Kyrgyzstan Som" #: profile-builder-2.0/admin/manage-fields.php:622 msgid "Laos Kip" msgstr "Laos Kip" #: profile-builder-2.0/admin/manage-fields.php:623 msgid "Latvia Lat" msgstr "Latvia Lat" #: profile-builder-2.0/admin/manage-fields.php:624 msgid "Lebanon Pound" msgstr "Lebanon Pound" #: profile-builder-2.0/admin/manage-fields.php:625 msgid "Liberia Dollar" msgstr "Liberia Dollar" #: profile-builder-2.0/admin/manage-fields.php:626 msgid "Lithuania Litas" msgstr "Lithuania Litas" #: profile-builder-2.0/admin/manage-fields.php:627 msgid "Macedonia Denar" msgstr "Macedonia Denar" #: profile-builder-2.0/admin/manage-fields.php:628 msgid "Malaysia Ringgit" msgstr "Malaysia Ringgit" #: profile-builder-2.0/admin/manage-fields.php:629 msgid "Mauritius Rupee" msgstr "Mauritius Rupee" #: profile-builder-2.0/admin/manage-fields.php:630 msgid "Mexico Peso" msgstr "Mexico Peso" #: profile-builder-2.0/admin/manage-fields.php:631 msgid "Mongolia Tughrik" msgstr "Mongolia Tughrik" #: profile-builder-2.0/admin/manage-fields.php:632 msgid "Mozambique Metical" msgstr "Mozambique Metical" #: profile-builder-2.0/admin/manage-fields.php:633 msgid "Namibia Dollar" msgstr "Namibia Dollar" #: profile-builder-2.0/admin/manage-fields.php:634 msgid "Nepal Rupee" msgstr "Nepal Rupee" #: profile-builder-2.0/admin/manage-fields.php:635 msgid "Netherlands Antilles Guilder" msgstr "Netherlands Antilles Guilder" #: profile-builder-2.0/admin/manage-fields.php:636 msgid "New Zealand Dollar" msgstr "New Zealand Dollar" #: profile-builder-2.0/admin/manage-fields.php:637 msgid "Nicaragua Cordoba" msgstr "Nicaragua Cordoba" #: profile-builder-2.0/admin/manage-fields.php:638 msgid "Nigeria Naira" msgstr "Nigeria Naira" #: profile-builder-2.0/admin/manage-fields.php:639 msgid "Norway Krone" msgstr "Norway Krone" #: profile-builder-2.0/admin/manage-fields.php:640 msgid "Oman Rial" msgstr "Oman Rial" #: profile-builder-2.0/admin/manage-fields.php:641 msgid "Pakistan Rupee" msgstr "Pakistan Rupee" #: profile-builder-2.0/admin/manage-fields.php:642 msgid "Panama Balboa" msgstr "Panama Balboa" #: profile-builder-2.0/admin/manage-fields.php:643 msgid "Paraguay Guarani" msgstr "Paraguay Guarani" #: profile-builder-2.0/admin/manage-fields.php:644 msgid "Peru Nuevo Sol" msgstr "Peru Nuevo Sol" #: profile-builder-2.0/admin/manage-fields.php:645 msgid "Philippines Peso" msgstr "Philippines Peso" #: profile-builder-2.0/admin/manage-fields.php:646 msgid "Poland Zloty" msgstr "Poland Zloty" #: profile-builder-2.0/admin/manage-fields.php:647 msgid "Qatar Riyal" msgstr "Qatar Riyal" #: profile-builder-2.0/admin/manage-fields.php:648 msgid "Romania New Leu" msgstr "Romania New Leu" #: profile-builder-2.0/admin/manage-fields.php:649 msgid "Russia Ruble" msgstr "Russia Ruble" #: profile-builder-2.0/admin/manage-fields.php:650 msgid "Saint Helena Pound" msgstr "Saint Helena Pound" #: profile-builder-2.0/admin/manage-fields.php:651 msgid "Saudi Arabia Riyal" msgstr "Saudi Arabia Riyal" #: profile-builder-2.0/admin/manage-fields.php:652 msgid "Serbia Dinar" msgstr "Serbia Dinar" #: profile-builder-2.0/admin/manage-fields.php:653 msgid "Seychelles Rupee" msgstr "Seychelles Rupee" #: profile-builder-2.0/admin/manage-fields.php:654 msgid "Singapore Dollar" msgstr "Singapore Dollar" #: profile-builder-2.0/admin/manage-fields.php:655 msgid "Solomon Islands Dollar" msgstr "Solomon Islands Dollar" #: profile-builder-2.0/admin/manage-fields.php:656 msgid "Somalia Shilling" msgstr "Somalia Shilling" #: profile-builder-2.0/admin/manage-fields.php:657 msgid "South Africa Rand" msgstr "South Africa Rand" #: profile-builder-2.0/admin/manage-fields.php:658 msgid "Sri Lanka Rupee" msgstr "Sri Lanka Rupee" #: profile-builder-2.0/admin/manage-fields.php:659 msgid "Sweden Krona" msgstr "Sweden Krona" #: profile-builder-2.0/admin/manage-fields.php:660 msgid "Switzerland Franc" msgstr "Switzerland Franc" #: profile-builder-2.0/admin/manage-fields.php:661 msgid "Suriname Dollar" msgstr "Suriname Dollar" #: profile-builder-2.0/admin/manage-fields.php:662 msgid "Syria Pound" msgstr "Syria Pound" #: profile-builder-2.0/admin/manage-fields.php:663 msgid "Taiwan New Dollar" msgstr "Taiwan New Dollar" #: profile-builder-2.0/admin/manage-fields.php:664 msgid "Thailand Baht" msgstr "Thailand Baht" #: profile-builder-2.0/admin/manage-fields.php:665 msgid "Trinidad and Tobago Dollar" msgstr "Trinidad and Tobago Dollar" #: profile-builder-2.0/admin/manage-fields.php:666 #: profile-builder-2.0/admin/manage-fields.php:667 msgid "Turkey Lira" msgstr "Turkey Lira" #: profile-builder-2.0/admin/manage-fields.php:668 msgid "Tuvalu Dollar" msgstr "Tuvalu Dollar" #: profile-builder-2.0/admin/manage-fields.php:669 msgid "Ukraine Hryvna" msgstr "Ukraine Hryvna" #: profile-builder-2.0/admin/manage-fields.php:670 msgid "United Kingdom Pound" msgstr "United Kingdom Pound" #: profile-builder-2.0/admin/manage-fields.php:671 msgid "Uganda Shilling" msgstr "Uganda Shilling" #: profile-builder-2.0/admin/manage-fields.php:672 msgid "US Dollar" msgstr "US Dollar" #: profile-builder-2.0/admin/manage-fields.php:673 msgid "Uruguay Peso" msgstr "Uruguay Peso" #: profile-builder-2.0/admin/manage-fields.php:674 msgid "Uzbekistan Som" msgstr "Uzbekistan Som" #: profile-builder-2.0/admin/manage-fields.php:675 msgid "Venezuela Bolivar" msgstr "Venezuela Bolivar" #: profile-builder-2.0/admin/manage-fields.php:676 msgid "Viet Nam Dong" msgstr "Viet Nam Dong" #: profile-builder-2.0/admin/manage-fields.php:677 msgid "Yemen Rial" msgstr "Yemen Rial" #: profile-builder-2.0/admin/manage-fields.php:678 msgid "Zimbabwe Dollar" msgstr "Zimbabwe Dollar" #: profile-builder-2.0/admin/manage-fields.php:1097 msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n" msgstr "Der Meta-Name kann nur Kleinbuchstaben, Zahlen, _ , - und keine Leerzeichen beinhalten.\n" #: profile-builder-2.0/admin/manage-fields.php:1314 msgid "Search Location" msgstr "Orte suchen" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754 msgid "You are not allowed to do this." msgstr "Du hast keine Berechtigung, das zu tun." #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460 msgid "Search Users" msgstr "Benutzer suchen" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78 msgid "Conditional Logic" msgstr "Bedingungslogik" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79 msgid "Conditional Rules" msgstr "Bedingungsregeln" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448 msgid "This field has conditional logic enabled." msgstr "Dieses Feld hat eine bedingte Logik aktiviert" #: profile-builder-2.0/features/functions.php:685 msgid "Incorrect phone number" msgstr "Fehlerhafte Telefonnummer" #: profile-builder-2.0/front-end/class-formbuilder.php:124 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." msgstr "Die Rolle des erstellten Benutzers ist auf die Vorgabe gesetzt. Nur ein Admin kann einen Benutzer mit der diesem Formular zugeordneten Rolle registrieren." #: profile-builder-2.0/front-end/extra-fields/map/map.php:46 #: profile-builder-2.0/front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "Bitte füge den Google Maps API Schlüssel für dieses Feld hinzu." #: profile-builder-2.0/front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "Irgendetwas ging schief. Bitte probieren Sie es erneut." #: profile-builder-2.0/front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "Bitte gib nur Zahlen ein" #: profile-builder-2.0/front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "Wert muss ein Vielfaches von %1$s sein" #: profile-builder-2.0/front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "Wert muss größer oder gleich %1$s sein" #: profile-builder-2.0/front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "Wert muss kleiner oder gleich %1$s sein" #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "Erforderliches Telefonnummernformat:" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bolivia, __( Plurinational State of" msgstr "Bolivia, __( Plurinational State of" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bonaire, __( Sint Eustatius and Saba" msgstr "Bonaire, __( Sint Eustatius and Saba" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cabo Verde" msgstr "Cabo Verde" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cocos (Keeling) Islands" msgstr "Cocos (Keeling) Islands" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo" msgstr "Kongo" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo, __( the Democratic Republic of the" msgstr "Congo, __( the Democratic Republic of the" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cote dIvoire" msgstr "Elfenbeinküste" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Falkland Islands (Malvinas)" msgstr "Falkland Islands (Malvinas)" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Holy See (Vatican City State)" msgstr "Holy See (Vatican City State)" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iran, __( Islamic Republic of" msgstr "Iran, __( Islamic Republic of" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Democratic Peoples Republic of" msgstr "Korea, __( Democratic Peoples Republic of" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Republic of" msgstr "Korea, __( Republic of" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lao Peoples Democratic Republic" msgstr "Lao Peoples Democratic Republic" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macedonia, __( the former Yugoslav Republic of" msgstr "Macedonia, __( the former Yugoslav Republic of" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Micronesia, __( Federated States of" msgstr "Micronesia, __( Federated States of" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Moldova, __( Republic of" msgstr "Moldova, __( Republic of" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palestine, __( State of" msgstr "Palestine, __( State of" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Russian Federation" msgstr "Russland" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Helena, __( Ascension and Tristan da Cunha" msgstr "Saint Helena, __( Ascension and Tristan da Cunha" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Martin (French part)" msgstr "Saint Martin (französisch)" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sint Maarten (Dutch part)" msgstr "St. Martin (Niederländischer Teil)" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Syrian Arab Republic" msgstr "Syrien" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Taiwan, __( Province of China" msgstr "Taiwan, __( Province of China" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tanzania, __( United Republic of" msgstr "Tanzania, __( United Republic of" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Timor-Leste" msgstr "Timor-Leste" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Venezuela, __( Bolivarian Republic of" msgstr "Venezuela, __( Bolivarian Republic of" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Viet Nam" msgstr "Viet Nam" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( British" msgstr "Virgin Islands, __( British" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( U.S." msgstr "Virgin Islands, __( U.S." #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:186 msgid "User Fields Tags" msgstr "Benutzerfelder-Schlagwörter" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479 msgid "The users selected password at signup" msgstr "Das vom Benutzer bei der Registrierung gewählte Kennwort" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278 msgid "[{{site_name}}] Notice of Email Change" msgstr "[{{Site_name}}] Benachrichtigung über die Änderung der eMail Adresse" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289 msgid "Changed Email Address Notification" msgstr "Geänderte E-Mail-Adresse Benachrichtigung" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Limit" msgstr "Limit" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Enable limit to the number of fields to be generated by users in front end forms " msgstr "Eine Beschränkung für von Benutzern in Frontend-Formularen generierten Feldern aktivieren" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "General Limit" msgstr "Allgemeine Grenze" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "Vorgabe-Beschränkung für diese Repeater-Gruppe.
            Für unbegrenzt bitte auf 0 lassen." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "Limit reached message" msgstr "\"Limit erreicht\" Nachricht" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The maximum number of fields has been reached." msgstr "Die maximale Anzahl von Feldern wurde erreicht." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The popup message to display when the limit of repeater groups is reached." msgstr "Die Popup-Nachricht, die beim Erreichen der Grenze für Repeater Gruppen angezeigt wird." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Limit per Role" msgstr "Limit pro Rolle" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Leave 0 for unlimited." msgstr "Für unbeschränkt auf 0 stehen lassen" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Repeated field group" msgstr "Wiederholte Feldgruppe" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Manage field or group of fields that will be repeatable." msgstr "Verwalte ein Feld oder eine Gruppe von Feldern, die wiederholbar sein wird." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259 msgid "Edit field group" msgstr "Feldgruppe bearbeiten" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260 msgid "Repeatable fields saved!" msgstr "Wiederholbare Felder gespeichert!" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277 #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326 msgid "Please enter a unique field title.\n" msgstr "Bitte gib einen eindeutigen Feldtitel ein.\n" #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267 msgid "Are you sure you want to delete this?" msgstr "Bist du sicher, dass du das löschen möchtest?" #: profile-builder-2.0/modules/user-listing/userlisting.php:192 msgid "Sort Tags" msgstr "Schlagwörter-Sortierung" #: profile-builder-2.0/modules/user-listing/userlisting.php:201 #: profile-builder-2.0/modules/user-listing/userlisting.php:2308 msgid "Faceted Menus" msgstr "Facettierte Menüs" #: profile-builder-2.0/modules/user-listing/userlisting.php:202 msgid "User Count" msgstr "Benutzeranzahl" #: profile-builder-2.0/modules/user-listing/userlisting.php:1553 msgid "Show All" msgstr "Alle zeigen" #: profile-builder-2.0/modules/user-listing/userlisting.php:1710 msgid "No options available" msgstr "Keine Einstellungen verfügbar" #: profile-builder-2.0/modules/user-listing/userlisting.php:1861 msgid "Remove All Filters" msgstr "Alle Filter entfernen" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Label" msgstr "Beschriftung" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Choose the facet name that appears on the frontend" msgstr "Wähle einen Facet Namen, der auf dem Frontend erscheint" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Facet Type" msgstr "Facet Typ" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Choose the facet menu type" msgstr "Wähle den Facet Menütyp" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Facet Meta" msgstr "Facette Meta" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Choose the meta field for the facet menu" msgstr "Wähle das Meta-Feld für das Facet Menü" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Behaviour" msgstr "Verhalten" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Narrow the results" msgstr "Ergebnisse eingrenzen" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Expand the results" msgstr "Ergebnisse ausdehnen" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Choose how multiple selections affect the results" msgstr "Wähle, wie Mehrfachauswahlen die Resultate beeinflussen" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Visible choices" msgstr "Sichtbare Auswahl" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "Zeige einen Umschalt-Link nach x Auswahlmöglichkeiten. Lasse es leer, um alle anzuzeigen" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Search Fields" msgstr "Felder suchen" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Choose the fields in which the Search Field will look in" msgstr "Wählen Sie die Felder, in denen das Suchfeld nachschauen wird" #: profile-builder-2.0/modules/user-listing/userlisting.php:2330 msgid "Search Settings" msgstr "Sucheinstellungen" #: pb-add-on-woocommerce/billing-fields.php:8 #: pb-add-on-woocommerce/shipping-fields.php:8 msgid "Company Name" msgstr "Firmenname" #: pb-add-on-woocommerce/billing-fields.php:9 #: pb-add-on-woocommerce/shipping-fields.php:9 msgid "Address" msgstr "Adresse" #: pb-add-on-woocommerce/billing-fields.php:5 #: pb-add-on-woocommerce/shipping-fields.php:5 msgid "Country" msgstr "Staat" #: pb-add-on-woocommerce/billing-fields.php:11 #: pb-add-on-woocommerce/shipping-fields.php:11 msgid "Town / City" msgstr "Ort" #: pb-add-on-woocommerce/billing-fields.php:12 #: pb-add-on-woocommerce/shipping-fields.php:12 msgid "State / County" msgstr "Bundesland" #: pb-add-on-woocommerce/billing-fields.php:13 #: pb-add-on-woocommerce/shipping-fields.php:13 msgid "Postcode / Zip" msgstr "PLZ" #: pb-add-on-woocommerce/billing-fields.php:14 msgid "Email Address" msgstr "E-Mail Adresse" #: pb-add-on-woocommerce/billing-fields.php:15 msgid "Phone" msgstr "Telefon" #: pb-add-on-woocommerce/billing-fields.php:278 msgid "Ship to a different address?" msgstr "An eine andere Adresse liefern?" #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437 msgid "Billing Address" msgstr "Rechnungsadresse" #: pb-add-on-woocommerce/index.php:169 msgid "Displays customer billing fields in front-end. " msgstr "Zeigt die Bezahldaten des Kunden auf der Seite an." #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438 msgid "Shipping Address" msgstr "Lieferadresse" #: pb-add-on-woocommerce/index.php:173 msgid "Displays customer shipping fields in front-end. " msgstr "Zeigt die Lieferadresse des Kunden auf der Seite an." #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Display on WooCommerce Checkout" msgstr "Im WooCommerce Bestellprozess anzeigen" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Whether the field should be added to the WooCommerce checkout form or not" msgstr "Ob das Feld zum WooCommerce Checkout hinzugefügt werden soll oder nicht" #: pb-add-on-woocommerce/index.php:541 msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!" msgstr "Für das Profile Builder - WooCommerce Sync Add-on muss WooCommerce installiert und aktiviert sein!" #: pb-add-on-woocommerce/woosync-page.php:23 #: pb-add-on-woocommerce/woosync-page.php:70 msgid "WooCommerce Sync" msgstr "WooCommerce Synchronisierung" #: pb-add-on-woocommerce/woosync-page.php:76 msgid "Choose Register form to display on My Account page:" msgstr "Wählen Sie das Registrierungsformular, welches im Kundenkonto (My Account) angezeigt werden soll:" #: pb-add-on-woocommerce/woosync-page.php:81 msgid "Default Register" msgstr "Standard Registrierungsformular" #: pb-add-on-woocommerce/woosync-page.php:103 msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce.
            This will also add the Profile Builder Login form to MyAccount page." msgstr "Wählen Sie das Registrierungsformular, welches im Kundenkonto (My Account) angezeigt werden soll.
            Dadurch wird auch das Profile Builder Loginformular im Kundenkonto angezeigt." #: pb-add-on-woocommerce/woosync-page.php:110 msgid "Choose Edit Profile form to display on My Account page:" msgstr "Wählen Sie das \"Profil editieren\"-Formular, welches im Kundenkonto (My Account) angezeigt werden soll:" #: pb-add-on-woocommerce/woosync-page.php:115 msgid "Default Edit Profile" msgstr "Standard \"Profil editieren\"-Formular" #: pb-add-on-woocommerce/woosync-page.php:137 msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce." msgstr "Wählen Sie das \"Profil editieren\"-Formular aus Profile Builder, welches im Kundenkonto (My Account) von WooCommerce angezeigt werden soll:" #: profile-builder-2.0/admin/add-ons.php:190 msgid "Recommended Plugins" msgstr "Empfohlene Erweiterungen" #: profile-builder-2.0/admin/add-ons.php:219 #: profile-builder-2.0/admin/pms-cross-promotion.php:102 msgid "Free" msgstr "Kostenlos" #: profile-builder-2.0/admin/add-ons.php:221 msgid "Accept user payments, create subscription plans and restrict content on your membership site." msgstr "Bezahlvorgänge, Abonnements und Inhaltsbeschränkungen für Ihre Mitgliedsseite." #: profile-builder-2.0/admin/add-ons.php:222 #: profile-builder-2.0/admin/pms-cross-promotion.php:105 msgid "More Details" msgstr "Weitere Details" #: profile-builder-2.0/admin/add-ons.php:240 #: profile-builder-2.0/admin/pms-cross-promotion.php:88 #: profile-builder-2.0/admin/pms-cross-promotion.php:123 #: profile-builder-2.0/admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "Die Erweiterung ist inaktiv" #: profile-builder-2.0/admin/add-ons.php:242 #: profile-builder-2.0/admin/pms-cross-promotion.php:87 #: profile-builder-2.0/admin/pms-cross-promotion.php:125 #: profile-builder-2.0/admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "Die Erweiterung ist aktiv" #: profile-builder-2.0/admin/add-ons.php:256 #: profile-builder-2.0/admin/pms-cross-promotion.php:146 msgid "Could not install plugin. Retry or install manually." msgstr "Die Erweiterung konnte nicht installiert werden. Versuchen Sie es noch einmal oder installieren Sie die Erweiterung manuell." #: profile-builder-2.0/admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "Bezahlte Konten" #: profile-builder-2.0/admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "Paid Member Subscriptions - eine kostenloses WordPress Erweiterung" #: profile-builder-2.0/admin/pms-cross-promotion.php:37 msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." msgstr "Mit dem neuen Abonnement-Feld im Profile Builder, können sich Benutzer im Registrierungsformular für bezahlte Konten anmelden." #: profile-builder-2.0/admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "Paid & Free Subscriptions" #: profile-builder-2.0/admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "Restrict Content" #: profile-builder-2.0/admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "Member Management" #: profile-builder-2.0/admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "Emailvorlagen" #: profile-builder-2.0/admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "Account Management" #: profile-builder-2.0/admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "Mitgliederverwaltung" #: profile-builder-2.0/admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "Payment Management" #: profile-builder-2.0/admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "Erweiterung aktiv" #: profile-builder-2.0/admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "Die Erweiterung wurde aktiviert." #: profile-builder-2.0/admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "Die Erweiterung wurde deaktiviert." #: profile-builder-2.0/admin/pms-cross-promotion.php:104 msgid "Accept user payments, create subscription plans and restrict content on your website." msgstr "Aktzeptiere Benutzerzahlungen, erstelle Abonnement-Pläne und schränke den Inhalt deiner Webseite ein." #: profile-builder-2.0/admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "Schnelle Schritt für Schritt Einrichtung" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401 msgid "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login." msgstr "Klicken Sie bitte hier, um Ihr Benutzerkonto zu aktivieren:

            %s%s%s

            Im Anschluss erhalten Sie eine weitere Email mit Ihren Logindaten." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45 msgid "After Login" msgstr "Nach dem Login" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46 msgid "After Logout" msgstr "Nach dem Logout" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47 msgid "After Registration" msgstr "Nach der Registrierung" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48 msgid "After Edit Profile" msgstr "Nach dem Editieren eines Profils" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Successful Email Confirmation" msgstr "Nach erfolgreicher Emailbestätigung" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Successful Password Reset" msgstr "Nach erfolgreichem Zurücksetzen des Passworts" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "Übersichtsseite (leitet Benutzer weiter, wenn sie auf diese Seite wollen)" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55 msgid "User ID" msgstr "Benutzer ID" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61 msgid "User ID or Username" msgstr "Benutzer ID oder Benutzername" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "User ID / Username" msgstr "Benutzer ID / Benutzername" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "Please select and enter the ID or username of your user." msgstr "Bitte gib deine Benutzer ID oder deinen Benutzernamen an." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131 msgid "Redirect Type" msgstr "Umleitungs Typ" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Redirect URL" msgstr "Umleitungs URL" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" msgstr "Kann folgende dynamische Tags enthalten: {{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241 msgid "Individual User Redirects" msgstr "Individuelle Benutzer-Weiterleitungen" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84 msgid "... Choose" msgstr "... Auswählen" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 msgid "Select a user role." msgstr "Wähle eine Benutzerrolle aus." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242 msgid "User Role based Redirects" msgstr "Benutzerrollen basierte Weiterleitungen" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243 msgid "Global Redirects" msgstr "Globale Weiterleitungen" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133 msgid "Login ( wp_login.php )" msgstr "Login ( wp_login.php )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134 msgid "Register ( wp-login.php?action=register )" msgstr "Registrierung ( wp-login.php?action=register )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "Passwort vergessen ( wp-login.php?action=lostpassword )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "Autoren Archiv ( http://seitenname.com/autor/admin )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145 msgid "Redirect Default WordPress Forms and Pages" msgstr "Standard WordPress Formulare und Seiten umleiten" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157 msgid "How does this work?" msgstr "Wie funktioniert das?" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "
            Benutzer ID / Benutzername 
            Weiterleitung
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 msgid "
            User Role
            Redirect
            URL
            " msgstr "
            Benutzer-Rolle
            Weiterleitung
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "
            Redirect
            URL
            " msgstr "
            Umleitung
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236 msgid "These redirects happen after a successful action, like registration or after a successful login." msgstr "Die Weiterleitungen werden nach einer erfolgreichen Aktion ausgelöst, wie z.B. einer Registrierung oder einem Login." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238 msgid "Which redirect happens depends on the following priority:" msgstr "Welche Weiterleitung greift kommt auf die folgende Priorität an:" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247 msgid "Redirect Default WordPress forms and pages" msgstr "Standard WordPress Formulare und Seiten umleiten" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248 msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder." msgstr "Damit kannst du verschiedene WordPress Formulare und Seiten zu den Profile Builder Äquivalenten umleiten." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250 msgid "Available tags for dynamic URLs" msgstr "Verfügbare Tags für dynamische URLs" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251 msgid "You use the following tags in your URLs to redirect users to various pages." msgstr "Sie nutzen folgende Tags in Ihren Umleitungs-URLs." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253 msgid "generates a url of the current website homepage." msgstr "Generiert eine URL der Startseite." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254 msgid "in WordPress the site url can be different then the home url" msgstr "in WordPress kann die Seiten URL von der Startseiten URL abweichen." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255 msgid "the ID of the user" msgstr "die ID des Benutzers" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256 msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." msgstr "Die saubere URL version des Benutzernamens, der Benutzer \"nicename\" kann in URLs sicher verwendet werden, da er keine Spezialzeichen oder Leerschläge beinhalten kann." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257 msgid "the URL of the previously visited page" msgstr "die URL der vorherigen besuchten Seite" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352 msgid "You can't add duplicate redirects!" msgstr "Sie können keine doppelten Weiterleitungen anlegen!" #: profile-builder-2.0/admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "Den Namen öffentlich anzeigen - erscheint nur auf der Edit Profile Seite!" #: profile-builder-2.0/admin/basic-info.php:37 msgid "Friction-less login using %s shortcode or a widget." msgstr "Reibungsloser Login, indem man %s oder ein Widget benutzt." #: profile-builder-2.0/admin/basic-info.php:41 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "Wunderschöne und voll anpassbare Registrierformulare mit der Nutzung von %s Shortcode." #: profile-builder-2.0/admin/basic-info.php:45 msgid "Straight forward edit profile forms using %s shortcode." msgstr "Direktes Profilbearbeitungsformular mit dem folgenden Shortcode: %s ." #: profile-builder-2.0/admin/basic-info.php:58 msgid "Allow users to recover their password in the front-end using the %s." msgstr "Ermöglicht dem User, sein Passwort im Front-End-Bereich unter Anwendung von %s wiederherzustellen" #: profile-builder-2.0/admin/basic-info.php:140 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." msgstr "Um eine Seite mit auf diesem Blog registrierten Benutzern zu erstellen, füge den folgenden Shortcodein in eine von dir gewählte Seite ein: %s." #: profile-builder-2.0/admin/general-settings.php:115 msgid "\"Admin Approval\" on User Role:" msgstr "\"Genehmigung durch Admin\" auf Benutzer-Rolle:" #: profile-builder-2.0/admin/general-settings.php:134 msgid "Select on what user roles to activate Admin Approval." msgstr "Benutzer-Rollen auswählen, welche durch einen Admin genehmigt werden sollen." #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Display on PB forms" msgstr "Zeige auf PB Formularen" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Login" msgstr "PB Login" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Register" msgstr "PB Registrierung" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Recover Password" msgstr "PB Passwort wiederherstellen" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "Auswählen auf welchen Profile Builder Formularen reCSelect on which Profile Builder forms reCAPTCHA angezeigt werden soll." #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Display on default WP forms" msgstr "Zeige auf standardmäßigen WP Formularen" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Login" msgstr "Standardmäßige WP Anmeldung" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Register" msgstr "Standardmäßige WP Registrierung" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Recover Password" msgstr "Standard WordPress \"Passwort wiederherstellen\"" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "Wählen Sie die Standard WordPress Formulare, auf denen ein reCAPTCHA angezeigt werden soll" #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default option of the field" msgstr "Voreinstellung des Feldes" #: profile-builder-2.0/admin/manage-fields.php:282 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Afghanistan" msgstr "Afghanistan" #: profile-builder-2.0/admin/manage-fields.php:283 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aland Islands" msgstr "Aland Islands" #: profile-builder-2.0/admin/manage-fields.php:284 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Albania" msgstr "Albanien" #: profile-builder-2.0/admin/manage-fields.php:285 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Algeria" msgstr "Algerien" #: profile-builder-2.0/admin/manage-fields.php:286 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "American Samoa" msgstr "American Samoa" #: profile-builder-2.0/admin/manage-fields.php:287 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Andorra" msgstr "Andorra" #: profile-builder-2.0/admin/manage-fields.php:288 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Angola" msgstr "Angola" #: profile-builder-2.0/admin/manage-fields.php:289 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Anguilla" msgstr "Anguilla" #: profile-builder-2.0/admin/manage-fields.php:290 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antarctica" msgstr "Antarktis" #: profile-builder-2.0/admin/manage-fields.php:291 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antigua and Barbuda" msgstr "Antigua und Barbuda" #: profile-builder-2.0/admin/manage-fields.php:292 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Argentina" msgstr "Argentinien" #: profile-builder-2.0/admin/manage-fields.php:293 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Armenia" msgstr "Armenia" #: profile-builder-2.0/admin/manage-fields.php:294 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aruba" msgstr "Aruba" #: profile-builder-2.0/admin/manage-fields.php:295 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Australia" msgstr "Australien" #: profile-builder-2.0/admin/manage-fields.php:296 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Austria" msgstr "Österreich" #: profile-builder-2.0/admin/manage-fields.php:297 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Azerbaijan" msgstr "Aserbaidschan" #: profile-builder-2.0/admin/manage-fields.php:298 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahamas" msgstr "Bahamas" #: profile-builder-2.0/admin/manage-fields.php:299 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahrain" msgstr "Bahrain" #: profile-builder-2.0/admin/manage-fields.php:300 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bangladesh" msgstr "Bangladesh" #: profile-builder-2.0/admin/manage-fields.php:301 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Barbados" msgstr "Barbados" #: profile-builder-2.0/admin/manage-fields.php:302 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belarus" msgstr "Weissrussland" #: profile-builder-2.0/admin/manage-fields.php:303 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belgium" msgstr "Belgien" #: profile-builder-2.0/admin/manage-fields.php:304 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belize" msgstr "Belize" #: profile-builder-2.0/admin/manage-fields.php:305 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Benin" msgstr "Benin" #: profile-builder-2.0/admin/manage-fields.php:306 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bermuda" msgstr "Bermuda" #: profile-builder-2.0/admin/manage-fields.php:307 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bhutan" msgstr "Bhutan" #: profile-builder-2.0/admin/manage-fields.php:308 msgid "Bolivia" msgstr "Bolivien" #: profile-builder-2.0/admin/manage-fields.php:309 msgid "Bonaire, Saint Eustatius and Saba" msgstr "Bonaire, Saint Eustatius and Saba" #: profile-builder-2.0/admin/manage-fields.php:310 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bosnia and Herzegovina" msgstr "Bosnien und Herzegowina" #: profile-builder-2.0/admin/manage-fields.php:311 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Botswana" msgstr "Botswana" #: profile-builder-2.0/admin/manage-fields.php:312 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bouvet Island" msgstr "Bouvet Insel" #: profile-builder-2.0/admin/manage-fields.php:313 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brazil" msgstr "Brasilien" #: profile-builder-2.0/admin/manage-fields.php:314 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: profile-builder-2.0/admin/manage-fields.php:315 msgid "British Virgin Islands" msgstr "British Virgin Islands" #: profile-builder-2.0/admin/manage-fields.php:316 msgid "Brunei" msgstr "Brunei" #: profile-builder-2.0/admin/manage-fields.php:317 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bulgaria" msgstr "Bulgarien" #: profile-builder-2.0/admin/manage-fields.php:318 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burkina Faso" msgstr "Burkina Faso" #: profile-builder-2.0/admin/manage-fields.php:319 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burundi" msgstr "Burundi" #: profile-builder-2.0/admin/manage-fields.php:320 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cambodia" msgstr "Kambodscha" #: profile-builder-2.0/admin/manage-fields.php:321 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cameroon" msgstr "Kamerun" #: profile-builder-2.0/admin/manage-fields.php:322 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Canada" msgstr "Kanada" #: profile-builder-2.0/admin/manage-fields.php:323 msgid "Cape Verde" msgstr "Cape Verde" #: profile-builder-2.0/admin/manage-fields.php:324 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cayman Islands" msgstr "Kaimaninseln" #: profile-builder-2.0/admin/manage-fields.php:325 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Central African Republic" msgstr "Zentralafrikanische Republik" #: profile-builder-2.0/admin/manage-fields.php:326 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chad" msgstr "Tschad" #: profile-builder-2.0/admin/manage-fields.php:327 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chile" msgstr "Chile" #: profile-builder-2.0/admin/manage-fields.php:328 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "China" msgstr "China" #: profile-builder-2.0/admin/manage-fields.php:329 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Christmas Island" msgstr "Weihnachtsinsel" #: profile-builder-2.0/admin/manage-fields.php:330 msgid "Cocos Islands" msgstr "Cocos Islands" #: profile-builder-2.0/admin/manage-fields.php:331 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Colombia" msgstr "Kolumbien" #: profile-builder-2.0/admin/manage-fields.php:332 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Comoros" msgstr "Comoros" #: profile-builder-2.0/admin/manage-fields.php:333 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cook Islands" msgstr "Cook Islands" #: profile-builder-2.0/admin/manage-fields.php:334 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Costa Rica" msgstr "Costa Rica" #: profile-builder-2.0/admin/manage-fields.php:335 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Croatia" msgstr "Kroatien" #: profile-builder-2.0/admin/manage-fields.php:336 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cuba" msgstr "Kuba" #: profile-builder-2.0/admin/manage-fields.php:337 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Curacao" msgstr "Curaçao" #: profile-builder-2.0/admin/manage-fields.php:338 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cyprus" msgstr "Zypern" #: profile-builder-2.0/admin/manage-fields.php:339 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Czech Republic" msgstr "Tschechien" #: profile-builder-2.0/admin/manage-fields.php:340 msgid "Democratic Republic of the Congo" msgstr "Demokratische Republik Kongo" #: profile-builder-2.0/admin/manage-fields.php:341 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Denmark" msgstr "Dänemark" #: profile-builder-2.0/admin/manage-fields.php:342 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Djibouti" msgstr "Djibouti" #: profile-builder-2.0/admin/manage-fields.php:343 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominica" msgstr "Dominica" #: profile-builder-2.0/admin/manage-fields.php:344 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominican Republic" msgstr "Dominikanische Republik" #: profile-builder-2.0/admin/manage-fields.php:345 msgid "East Timor" msgstr "East Timor" #: profile-builder-2.0/admin/manage-fields.php:346 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ecuador" msgstr "Ecuador" #: profile-builder-2.0/admin/manage-fields.php:347 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Egypt" msgstr "Ägypten" #: profile-builder-2.0/admin/manage-fields.php:348 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "El Salvador" msgstr "El Salvador" #: profile-builder-2.0/admin/manage-fields.php:349 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: profile-builder-2.0/admin/manage-fields.php:350 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Eritrea" msgstr "Eritrea" #: profile-builder-2.0/admin/manage-fields.php:351 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Estonia" msgstr "Estland" #: profile-builder-2.0/admin/manage-fields.php:352 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ethiopia" msgstr "Äthiopien" #: profile-builder-2.0/admin/manage-fields.php:353 msgid "Falkland Islands" msgstr "Falklandinseln" #: profile-builder-2.0/admin/manage-fields.php:354 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Faroe Islands" msgstr "Faroe Islands" #: profile-builder-2.0/admin/manage-fields.php:355 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Fiji" msgstr "Fiji" #: profile-builder-2.0/admin/manage-fields.php:356 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Finland" msgstr "Finnland" #: profile-builder-2.0/admin/manage-fields.php:357 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "France" msgstr "Frankreich" #: profile-builder-2.0/admin/manage-fields.php:358 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Guiana" msgstr "French Guiana" #: profile-builder-2.0/admin/manage-fields.php:359 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Polynesia" msgstr "French Polynesia" #: profile-builder-2.0/admin/manage-fields.php:360 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Southern Territories" msgstr "French Southern Territories" #: profile-builder-2.0/admin/manage-fields.php:361 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gabon" msgstr "Gabon" #: profile-builder-2.0/admin/manage-fields.php:362 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gambia" msgstr "Gambia" #: profile-builder-2.0/admin/manage-fields.php:363 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Georgia" msgstr "Georgien" #: profile-builder-2.0/admin/manage-fields.php:364 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Germany" msgstr "Deutschland" #: profile-builder-2.0/admin/manage-fields.php:365 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ghana" msgstr "Ghana" #: profile-builder-2.0/admin/manage-fields.php:366 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gibraltar" msgstr "Gibraltar" #: profile-builder-2.0/admin/manage-fields.php:367 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greece" msgstr "Griechenland" #: profile-builder-2.0/admin/manage-fields.php:368 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greenland" msgstr "Grönland" #: profile-builder-2.0/admin/manage-fields.php:369 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Grenada" msgstr "Grenada" #: profile-builder-2.0/admin/manage-fields.php:370 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guadeloupe" msgstr "Guadeloupe" #: profile-builder-2.0/admin/manage-fields.php:371 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guam" msgstr "Guam" #: profile-builder-2.0/admin/manage-fields.php:372 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guatemala" msgstr "Guatemala" #: profile-builder-2.0/admin/manage-fields.php:373 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guernsey" msgstr "Guernsey" #: profile-builder-2.0/admin/manage-fields.php:374 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea" msgstr "Guinea" #: profile-builder-2.0/admin/manage-fields.php:375 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: profile-builder-2.0/admin/manage-fields.php:376 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guyana" msgstr "Guyana" #: profile-builder-2.0/admin/manage-fields.php:377 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Haiti" msgstr "Haiti" #: profile-builder-2.0/admin/manage-fields.php:378 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Heard Island and McDonald Islands" msgstr "Heard Island and McDonald Islands" #: profile-builder-2.0/admin/manage-fields.php:379 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Honduras" msgstr "Honduras" #: profile-builder-2.0/admin/manage-fields.php:380 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hong Kong" msgstr "Hong Kong" #: profile-builder-2.0/admin/manage-fields.php:381 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hungary" msgstr "Ungarn" #: profile-builder-2.0/admin/manage-fields.php:382 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iceland" msgstr "Island" #: profile-builder-2.0/admin/manage-fields.php:383 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "India" msgstr "Indien" #: profile-builder-2.0/admin/manage-fields.php:384 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Indonesia" msgstr "Indonesien" #: profile-builder-2.0/admin/manage-fields.php:385 msgid "Iran" msgstr "Iran" #: profile-builder-2.0/admin/manage-fields.php:386 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iraq" msgstr "Irak" #: profile-builder-2.0/admin/manage-fields.php:387 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ireland" msgstr "Irland" #: profile-builder-2.0/admin/manage-fields.php:388 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Isle of Man" msgstr "Isle of Man" #: profile-builder-2.0/admin/manage-fields.php:389 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Israel" msgstr "Israel" #: profile-builder-2.0/admin/manage-fields.php:390 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Italy" msgstr "Italien" #: profile-builder-2.0/admin/manage-fields.php:391 msgid "Ivory Coast" msgstr "Elfenbeinküste" #: profile-builder-2.0/admin/manage-fields.php:392 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jamaica" msgstr "Jamaica" #: profile-builder-2.0/admin/manage-fields.php:393 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Japan" msgstr "Japan" #: profile-builder-2.0/admin/manage-fields.php:394 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jersey" msgstr "Jersey" #: profile-builder-2.0/admin/manage-fields.php:395 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jordan" msgstr "Jordanien" #: profile-builder-2.0/admin/manage-fields.php:396 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kazakhstan" msgstr "Kasachstan" #: profile-builder-2.0/admin/manage-fields.php:397 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kenya" msgstr "Kenia" #: profile-builder-2.0/admin/manage-fields.php:398 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kiribati" msgstr "Kiribati" #: profile-builder-2.0/admin/manage-fields.php:399 msgid "Kosovo" msgstr "Kosovo" #: profile-builder-2.0/admin/manage-fields.php:400 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kuwait" msgstr "Kuwait" #: profile-builder-2.0/admin/manage-fields.php:401 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kyrgyzstan" msgstr "Kirgisistan" #: profile-builder-2.0/admin/manage-fields.php:402 msgid "Laos" msgstr "Laos" #: profile-builder-2.0/admin/manage-fields.php:403 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Latvia" msgstr "Lettland" #: profile-builder-2.0/admin/manage-fields.php:404 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lebanon" msgstr "Libanon" #: profile-builder-2.0/admin/manage-fields.php:405 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lesotho" msgstr "Lesotho" #: profile-builder-2.0/admin/manage-fields.php:406 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liberia" msgstr "Liberia" #: profile-builder-2.0/admin/manage-fields.php:407 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Libya" msgstr "Libya" #: profile-builder-2.0/admin/manage-fields.php:408 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liechtenstein" msgstr "Liechtenstein" #: profile-builder-2.0/admin/manage-fields.php:409 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lithuania" msgstr "Litauen" #: profile-builder-2.0/admin/manage-fields.php:410 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Luxembourg" msgstr "Luxemburg" #: profile-builder-2.0/admin/manage-fields.php:411 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macao" msgstr "Macao" #: profile-builder-2.0/admin/manage-fields.php:412 msgid "Macedonia" msgstr "Macedonia" #: profile-builder-2.0/admin/manage-fields.php:413 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Madagascar" msgstr "Madagaskar" #: profile-builder-2.0/admin/manage-fields.php:414 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malawi" msgstr "Malawi" #: profile-builder-2.0/admin/manage-fields.php:415 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malaysia" msgstr "Malaysia" #: profile-builder-2.0/admin/manage-fields.php:416 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Maldives" msgstr "Maldives" #: profile-builder-2.0/admin/manage-fields.php:417 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mali" msgstr "Mali" #: profile-builder-2.0/admin/manage-fields.php:418 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malta" msgstr "Malta" #: profile-builder-2.0/admin/manage-fields.php:419 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Marshall Islands" msgstr "Marshall Islands" #: profile-builder-2.0/admin/manage-fields.php:420 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Martinique" msgstr "Martinique" #: profile-builder-2.0/admin/manage-fields.php:421 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritania" msgstr "Mauritania" #: profile-builder-2.0/admin/manage-fields.php:422 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritius" msgstr "Mauritius" #: profile-builder-2.0/admin/manage-fields.php:423 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mayotte" msgstr "Mayotte" #: profile-builder-2.0/admin/manage-fields.php:424 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mexico" msgstr "Mexiko" #: profile-builder-2.0/admin/manage-fields.php:425 msgid "Micronesia" msgstr "Micronesia" #: profile-builder-2.0/admin/manage-fields.php:426 msgid "Moldova" msgstr "Moldawien" #: profile-builder-2.0/admin/manage-fields.php:427 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Monaco" msgstr "Monaco" #: profile-builder-2.0/admin/manage-fields.php:428 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mongolia" msgstr "Mongolei" #: profile-builder-2.0/admin/manage-fields.php:429 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montenegro" msgstr "Montenegro" #: profile-builder-2.0/admin/manage-fields.php:430 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montserrat" msgstr "Montserrat" #: profile-builder-2.0/admin/manage-fields.php:431 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Morocco" msgstr "Marokko" #: profile-builder-2.0/admin/manage-fields.php:432 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mozambique" msgstr "Mozambique" #: profile-builder-2.0/admin/manage-fields.php:433 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Myanmar" msgstr "Myanmar" #: profile-builder-2.0/admin/manage-fields.php:434 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Namibia" msgstr "Namibia" #: profile-builder-2.0/admin/manage-fields.php:435 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nauru" msgstr "Nauru" #: profile-builder-2.0/admin/manage-fields.php:436 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nepal" msgstr "Nepal" #: profile-builder-2.0/admin/manage-fields.php:437 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Netherlands" msgstr "Niederlande" #: profile-builder-2.0/admin/manage-fields.php:438 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Caledonia" msgstr "Neukaledonien" #: profile-builder-2.0/admin/manage-fields.php:439 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Zealand" msgstr "Neuseeland" #: profile-builder-2.0/admin/manage-fields.php:440 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nicaragua" msgstr "Nicaragua" #: profile-builder-2.0/admin/manage-fields.php:441 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niger" msgstr "Niger" #: profile-builder-2.0/admin/manage-fields.php:442 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nigeria" msgstr "Nigeria" #: profile-builder-2.0/admin/manage-fields.php:443 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niue" msgstr "Niue" #: profile-builder-2.0/admin/manage-fields.php:444 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norfolk Island" msgstr "Norfolk Island" #: profile-builder-2.0/admin/manage-fields.php:445 msgid "North Korea" msgstr "Nordkorea" #: profile-builder-2.0/admin/manage-fields.php:446 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: profile-builder-2.0/admin/manage-fields.php:447 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norway" msgstr "Norwegen" #: profile-builder-2.0/admin/manage-fields.php:448 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Oman" msgstr "Oman" #: profile-builder-2.0/admin/manage-fields.php:449 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pakistan" msgstr "Pakistan" #: profile-builder-2.0/admin/manage-fields.php:450 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palau" msgstr "Palau" #: profile-builder-2.0/admin/manage-fields.php:451 msgid "Palestinian Territory" msgstr "Palästinensisches Territorium" #: profile-builder-2.0/admin/manage-fields.php:452 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Panama" msgstr "Panama" #: profile-builder-2.0/admin/manage-fields.php:453 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: profile-builder-2.0/admin/manage-fields.php:454 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Paraguay" msgstr "Paraguay" #: profile-builder-2.0/admin/manage-fields.php:455 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Peru" msgstr "Peru" #: profile-builder-2.0/admin/manage-fields.php:456 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Philippines" msgstr "Philippinen" #: profile-builder-2.0/admin/manage-fields.php:457 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pitcairn" msgstr "Pitcairn" #: profile-builder-2.0/admin/manage-fields.php:458 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Poland" msgstr "Polen" #: profile-builder-2.0/admin/manage-fields.php:459 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Portugal" msgstr "Portugal" #: profile-builder-2.0/admin/manage-fields.php:460 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Puerto Rico" msgstr "Puerto Rico" #: profile-builder-2.0/admin/manage-fields.php:461 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Qatar" msgstr "Katar" #: profile-builder-2.0/admin/manage-fields.php:462 msgid "Republic of the Congo" msgstr "Kongo" #: profile-builder-2.0/admin/manage-fields.php:463 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Reunion" msgstr "Reunion" #: profile-builder-2.0/admin/manage-fields.php:464 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Romania" msgstr "Rumänien" #: profile-builder-2.0/admin/manage-fields.php:465 msgid "Russia" msgstr "Russia" #: profile-builder-2.0/admin/manage-fields.php:466 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Rwanda" msgstr "Rwanda" #: profile-builder-2.0/admin/manage-fields.php:467 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: profile-builder-2.0/admin/manage-fields.php:468 msgid "Saint Helena" msgstr "Saint Helena" #: profile-builder-2.0/admin/manage-fields.php:469 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts and Nevis" #: profile-builder-2.0/admin/manage-fields.php:470 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Lucia" msgstr "Saint Lucia" #: profile-builder-2.0/admin/manage-fields.php:471 msgid "Saint Martin" msgstr "Saint Martin" #: profile-builder-2.0/admin/manage-fields.php:472 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre and Miquelon" #: profile-builder-2.0/admin/manage-fields.php:473 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Vincent and the Grenadines" msgstr "St. Vincent und die Grenadinen" #: profile-builder-2.0/admin/manage-fields.php:474 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Samoa" msgstr "Samoa" #: profile-builder-2.0/admin/manage-fields.php:475 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "San Marino" msgstr "San Marino" #: profile-builder-2.0/admin/manage-fields.php:476 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sao Tome and Principe" msgstr "Sao Tome and Principe" #: profile-builder-2.0/admin/manage-fields.php:477 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: profile-builder-2.0/admin/manage-fields.php:478 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Senegal" msgstr "Senegal" #: profile-builder-2.0/admin/manage-fields.php:479 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Serbia" msgstr "Serbia" #: profile-builder-2.0/admin/manage-fields.php:480 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Seychelles" msgstr "Seychellen" #: profile-builder-2.0/admin/manage-fields.php:481 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sierra Leone" msgstr "Sierra Leone" #: profile-builder-2.0/admin/manage-fields.php:482 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Singapore" msgstr "Singapore" #: profile-builder-2.0/admin/manage-fields.php:483 msgid "Sint Maarten" msgstr "Sint Maarten" #: profile-builder-2.0/admin/manage-fields.php:484 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovakia" msgstr "Slowakei" #: profile-builder-2.0/admin/manage-fields.php:485 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovenia" msgstr "Slowenien" #: profile-builder-2.0/admin/manage-fields.php:486 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Solomon Islands" msgstr "Solomon Islands" #: profile-builder-2.0/admin/manage-fields.php:487 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Somalia" msgstr "Somalia" #: profile-builder-2.0/admin/manage-fields.php:488 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Africa" msgstr "Südafrika" #: profile-builder-2.0/admin/manage-fields.php:489 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Georgia and the South Sandwich Islands" msgstr "South Georgia and the South Sandwich Islands" #: profile-builder-2.0/admin/manage-fields.php:490 msgid "South Korea" msgstr "Südkorea" #: profile-builder-2.0/admin/manage-fields.php:491 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Sudan" msgstr "Südsudan" #: profile-builder-2.0/admin/manage-fields.php:492 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Spain" msgstr "Spanien" #: profile-builder-2.0/admin/manage-fields.php:493 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sri Lanka" msgstr "Sri Lanka" #: profile-builder-2.0/admin/manage-fields.php:494 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sudan" msgstr "Sudan" #: profile-builder-2.0/admin/manage-fields.php:495 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Suriname" msgstr "Suriname" #: profile-builder-2.0/admin/manage-fields.php:496 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Svalbard and Jan Mayen" msgstr "Svalbard and Jan Mayen" #: profile-builder-2.0/admin/manage-fields.php:497 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Swaziland" msgstr "Swaziland" #: profile-builder-2.0/admin/manage-fields.php:498 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sweden" msgstr "Schweden" #: profile-builder-2.0/admin/manage-fields.php:499 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Switzerland" msgstr "Schweiz" #: profile-builder-2.0/admin/manage-fields.php:500 msgid "Syria" msgstr "Syrien" #: profile-builder-2.0/admin/manage-fields.php:501 msgid "Taiwan" msgstr "Taiwan" #: profile-builder-2.0/admin/manage-fields.php:502 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tajikistan" msgstr "Tadschikistan" #: profile-builder-2.0/admin/manage-fields.php:503 msgid "Tanzania" msgstr "Tanzania" #: profile-builder-2.0/admin/manage-fields.php:504 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Thailand" msgstr "Thailand" #: profile-builder-2.0/admin/manage-fields.php:505 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Togo" msgstr "Togo" #: profile-builder-2.0/admin/manage-fields.php:506 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tokelau" msgstr "Tokelau" #: profile-builder-2.0/admin/manage-fields.php:507 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tonga" msgstr "Tonga" #: profile-builder-2.0/admin/manage-fields.php:508 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Trinidad and Tobago" msgstr "Trinidad und Tobago" #: profile-builder-2.0/admin/manage-fields.php:509 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tunisia" msgstr "Tunesien" #: profile-builder-2.0/admin/manage-fields.php:510 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkey" msgstr "Türkei" #: profile-builder-2.0/admin/manage-fields.php:511 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkmenistan" msgstr "Turkmenistan" #: profile-builder-2.0/admin/manage-fields.php:512 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Islands" #: profile-builder-2.0/admin/manage-fields.php:513 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tuvalu" msgstr "Tuvalu" #: profile-builder-2.0/admin/manage-fields.php:514 msgid "U.S. Virgin Islands" msgstr "Amerikanische Jungferninseln" #: profile-builder-2.0/admin/manage-fields.php:515 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uganda" msgstr "Uganda" #: profile-builder-2.0/admin/manage-fields.php:516 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ukraine" msgstr "Ukraine" #: profile-builder-2.0/admin/manage-fields.php:517 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Arab Emirates" msgstr "Vereinigte Arabische Emirate" #: profile-builder-2.0/admin/manage-fields.php:518 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Kingdom" msgstr "Grossbritannien (Vereinigtes Königreich)" #: profile-builder-2.0/admin/manage-fields.php:519 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States" msgstr "USA" #: profile-builder-2.0/admin/manage-fields.php:520 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: profile-builder-2.0/admin/manage-fields.php:521 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uruguay" msgstr "Uruguay" #: profile-builder-2.0/admin/manage-fields.php:522 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uzbekistan" msgstr "Uzbekistan" #: profile-builder-2.0/admin/manage-fields.php:523 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Vanuatu" msgstr "Vanuatu" #: profile-builder-2.0/admin/manage-fields.php:524 msgid "Vatican" msgstr "Vatikan" #: profile-builder-2.0/admin/manage-fields.php:525 msgid "Venezuela" msgstr "Venezuela" #: profile-builder-2.0/admin/manage-fields.php:526 msgid "Vietnam" msgstr "Vietnam" #: profile-builder-2.0/admin/manage-fields.php:527 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Wallis and Futuna" msgstr "Wallis und Futuna" #: profile-builder-2.0/admin/manage-fields.php:528 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Western Sahara" msgstr "Westsahara" #: profile-builder-2.0/admin/manage-fields.php:529 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Yemen" msgstr "Jemen" #: profile-builder-2.0/admin/manage-fields.php:530 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zambia" msgstr "Sambia" #: profile-builder-2.0/admin/manage-fields.php:531 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zimbabwe" msgstr "Simbabwe" #: profile-builder-2.0/admin/manage-fields.php:1219 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." msgstr "Mit Profile Builder Pro v2 können Sie verschiedene Felder im Registrierungs- und Profilformular anzeigen. Nutzen Sie dazu das Modul Multiple Registration & Edit Profile Forms." #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237 msgid "Your account has to be confirmed by an administrator before you can log in." msgstr "Ihr Benutzerkonto muss von einem Administrator bestätigt werden, bevor Sie sich einloggen können." #: profile-builder-2.0/features/admin-approval/admin-approval.php:216 msgid "Your account has been successfully created!" msgstr "Ihr Benutzerkonto wurde erfolgreich angelegt!" #: profile-builder-2.0/features/functions.php:678 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458 msgid "Please enter a (valid) reCAPTCHA value" msgstr "Bitte gib das reCAPTCHA (korrekt) ein." #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 msgid "Click the BACK button on your browser, and try again." msgstr "Bitte klicke auf den \"Zurück\"-Button in einem Browser und versuche es erneut." #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78 #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87 msgid "Sorry, you cannot upload this file type for this field." msgstr "Dieser Dateityp ist für dieses Feld nicht erlaubt." #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94 msgid "An error occurred, please try again later." msgstr "Es ist ein Fehler aufgetreten, bitte versuchen Sie es später noch einmal." #: profile-builder-2.0/modules/user-listing/userlisting.php:282 msgid "More" msgstr "Mehr" #: profile-builder-2.0/modules/user-listing/userlisting.php:376 msgid "You do not have permission to view this user list." msgstr "Sie haben keine Berechtigung, um diese Benutzerliste einzusehen." #: profile-builder-2.0/modules/user-listing/userlisting.php:389 msgid "You do not have the required user role to view this user list." msgstr "Sie haben nicht die notwendige Benutzerrolle, um diese Benutzerliste einzusehen." #: profile-builder-2.0/modules/user-listing/userlisting.php:2253 msgid "Ascending" msgstr "Aufsteigend" #: profile-builder-2.0/modules/user-listing/userlisting.php:2254 msgid "Descending" msgstr "Absteigend" #: profile-builder-2.0/admin/add-ons.php:148 #: profile-builder-2.0/admin/add-ons.php:248 #: profile-builder-2.0/admin/pms-cross-promotion.php:134 #: profile-builder-2.0/admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "Jetzt herunterladen" #: profile-builder-2.0/admin/admin-functions.php:200 msgid "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. " msgstr "Gefällt dir %1$s, dann bewerte uns bitte auf WordPress.org. Mehr glückliche Benutzer, bedeuten mehr Features, weniger Fehler und besseren Support für jeden." #: profile-builder-2.0/admin/manage-fields.php:82 msgid "Choose one of the supported field types" msgstr "Wähle eins von den unterstützten Feldtypen." #: profile-builder-2.0/admin/manage-fields.php:84 msgid ". Extra Field Types are available in Hobbyist or PRO versions." msgstr "Extra Feldtypen stehen in der Hobbyist oder PRO Version zur Verfügung." #: profile-builder-2.0/admin/manage-fields.php:131 msgid "Site Key" msgstr "Seitenschlüssel" #: profile-builder-2.0/admin/manage-fields.php:131 msgid "The site key from Google, www.google.com/recaptcha" msgstr "Der Seitenschlüssel von Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "Secret Key" msgstr "Geheimer Schlüssel" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "The secret key from Google, www.google.com/recaptcha" msgstr "Der geheime Schlüssel von Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:1023 msgid "You must enter the site key\n" msgstr "Sie müssen den Seiten Schlüssel eingeben\n" #: profile-builder-2.0/admin/manage-fields.php:1025 msgid "You must enter the secret key\n" msgstr "Sie müssen den geheimen Schlüssel eingeben\n" #: profile-builder-2.0/admin/add-ons.php:10 #: profile-builder-2.0/admin/add-ons.php:32 msgid "Add-Ons" msgstr "Add-Ons" #: profile-builder-2.0/admin/add-ons.php:34 #: profile-builder-2.0/admin/add-ons.php:129 #: profile-builder-2.0/admin/add-ons.php:231 #: profile-builder-2.0/admin/pms-cross-promotion.php:78 #: profile-builder-2.0/admin/pms-cross-promotion.php:114 #: profile-builder-2.0/admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "Aktivieren" #: profile-builder-2.0/admin/add-ons.php:36 #: profile-builder-2.0/admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "Downloaden und installieren..." #: profile-builder-2.0/admin/add-ons.php:37 #: profile-builder-2.0/admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "Installation abgeschlossen" #: profile-builder-2.0/admin/add-ons.php:39 msgid "Add-On is Active" msgstr "Add-On ist aktiv" #: profile-builder-2.0/admin/add-ons.php:40 msgid "Add-On has been activated" msgstr "Add-On wurde aktiviert" #: profile-builder-2.0/admin/add-ons.php:41 #: profile-builder-2.0/admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "Installation erneut versuchen" #: profile-builder-2.0/admin/add-ons.php:43 #: profile-builder-2.0/admin/add-ons.php:140 msgid "Add-On is active" msgstr "Add-On ist aktiv" #: profile-builder-2.0/admin/add-ons.php:44 #: profile-builder-2.0/admin/add-ons.php:138 msgid "Add-On is inactive" msgstr "Add-On ist inaktiv" #: profile-builder-2.0/admin/add-ons.php:46 #: profile-builder-2.0/admin/add-ons.php:133 #: profile-builder-2.0/admin/add-ons.php:235 #: profile-builder-2.0/admin/pms-cross-promotion.php:90 #: profile-builder-2.0/admin/pms-cross-promotion.php:118 #: profile-builder-2.0/admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "Deaktivieren" #: profile-builder-2.0/admin/add-ons.php:47 msgid "Add-On has been deactivated." msgstr "Add-On wurde deaktiviert." #: profile-builder-2.0/admin/add-ons.php:59 msgid "Something went wrong, we could not connect to the server. Please try again later." msgstr "Etwas ist falsch gelaufen, wir konnten uns nicht mit dem Server verbinden. Bitte versuche es später erneut." #: profile-builder-2.0/admin/pms-cross-promotion.php:137 #: profile-builder-2.0/admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "Jetzt installieren" #: profile-builder-2.0/admin/add-ons.php:153 #: profile-builder-2.0/admin/add-ons.php:251 #: profile-builder-2.0/admin/pms-cross-promotion.php:141 #: profile-builder-2.0/admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "Kompatibel mit deiner Version von Profile Builder." #: profile-builder-2.0/admin/add-ons.php:162 msgid "Upgrade Profile Builder" msgstr "Profile Builder upgraden" #: profile-builder-2.0/admin/add-ons.php:163 msgid "Not compatible with Profile Builder" msgstr "Nicht kompatibel mit Profile Builder" #: profile-builder-2.0/admin/add-ons.php:171 msgid "Not compatible with your version of Profile Builder." msgstr "Nicht kompatibel mit deiner Version von Profile Builder." #: profile-builder-2.0/admin/add-ons.php:172 msgid "Minimum required Profile Builder version:" msgstr "Minimal benötigte Version von Profile Builder:" #: profile-builder-2.0/admin/add-ons.php:177 msgid "Could not install add-on. Retry or install manually." msgstr "Add-On konnte nicht installiert werden. Erneut versuchen oder manuell installieren." #: profile-builder-2.0/front-end/default-fields/email/email.php:51 msgid "You must enter a valid email address." msgstr "Sie müssen eine gültige E-Mail Adresse angeben." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "Der Benutzername ist ungültig, da dieser ungültige Zeichen enthält." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "Bitte gib einen gültigen Benutzernamen ein." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72 #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85 msgid "Only administrators can see this field on edit profile forms." msgstr "Nur Administratoren können dieses Feld beim editieren von Profilformularen sehen." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81 msgid "As an administrator you cannot change your role." msgstr "Als Administrator kannst du deine Berechtigungen nicht ändern." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117 msgid "" "\n" "

            {{username}} has requested a password change via the password reset feature.

            \n" "

            His/her new password is: {{password}}

            \n" msgstr "" "\n" "

            {{username}} hat sein Passwort geändert.

            \n" "

            Das neue Passwort ist: {{password}}

            \n" "\n" "\n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141 msgid "Admin Notification for User Password Reset" msgstr "Admin Notiz für das Zurücksetzen eines Passwortes von einem Benutzer" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46 msgid "Reset Key" msgstr "Zurücksetzungs-Key" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47 msgid "Reset Url" msgstr "Zurücksetzungs-URL" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48 msgid "Reset Link" msgstr "Zurücksetzungs-Link" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204 msgid "" "\n" "

            Someone requested that the password be reset for the following account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            \n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" msgstr "" "\n" "

            Jemand hat für das folgende Konto ein neues Kennwort angefordert: {{site_name}}
            \n" "Benutzername: {{username}}

            \n" "

            Wenn das ein Fehler war, wird nichts passieren

            \n" "

            Gehe auf folgende Seite, um das Kennwort zu erneuern:
            \n" "{{{reset_link}}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218 msgid "[{{site_name}}] Password Reset" msgstr "[{{site_name}}] Passwortzurücksetzung" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229 msgid "Password Reset Email" msgstr "E-Mail für die Passwortzurücksetzung" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235 msgid "" "\n" "

            You have successfully reset your password to: {{password}}

            \n" msgstr "" "\n" "

            Du hast dein Passwort erfolgreich zurückgesetzt: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset Successfully" msgstr "[{{site_name}}] Passwortzurücksetzung erfolgreich" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256 msgid "Password Reset Success Email" msgstr "Passwort zurücksetzen erfolgreich Email" #: profile-builder-2.0/modules/user-listing/userlisting.php:159 msgid "User Nicename" msgstr "Benutzername" #: pb-add-on-woocommerce/woosync-page.php:80 #: pb-add-on-woocommerce/woosync-page.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:499 msgid "None" msgstr "Nichts" #: profile-builder-2.0/admin/admin-functions.php:132 msgid "ERROR: The password must have the minimum length of %s characters" msgstr "FEHLER: Das Passwort muss mindestens %s Zeichen lang sein" #: profile-builder-2.0/admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr "FEHLER: Das Passwort muss eine Mindeststärke von %s haben" #: profile-builder-2.0/admin/general-settings.php:179 msgid "Username and Email" msgstr "Benutzername und E-Mail" #: profile-builder-2.0/admin/general-settings.php:184 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "\"Benutzername und E-Mail\" - Benutzer können sich mit Ihrem Benutzernamen und EMail-Adresse anmelden." #: profile-builder-2.0/admin/general-settings.php:185 msgid "\"Username\" - users can Log In only with Username." msgstr "\"Benutzername\" - Benutzer können sich nur mit Ihrem Benutzernamen anmelden" #: profile-builder-2.0/admin/general-settings.php:186 msgid "\"Email\" - users can Log In only with Email." msgstr "\"E-Mail\" - Benutzer können sich nur mit Ihrer E-Mail-Adresse anmelden." #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "" "Gib die Datei-Erweiterung(en) ein, die du für den Upload erlauben möchtest.
            \n" "z.B.: .ext1,.ext2,.ext3
            Bei keiner Eingabe werden die Standard-Erweiterungen gesetzt: .jpg,.jpeg,.gif,.png (.*)" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)" msgstr "Geben Sie die Datei-Erweiterung(en) ein, die Sie für den Upload erlauben möchten
            z. B.: .ext1,.ext2,.ext3
            Bei keiner Eingabe werden alle von WordPress erlaubten Datei-Erweiterungen gesetzt: (.*)" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "User Roles" msgstr "Benutzerrollen" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "Wähle, welche Benutzerrollen dem Benutzer gezeigt werden sollen (Drag & Drop zum Neusortieren)" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "User Roles Order" msgstr "Benutzerrollen Sortierung" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "Save the user role order from the user roles checkboxes" msgstr "Speichere die Reihenfolge der Benutzerrollen-Checkboxen" #: profile-builder-2.0/admin/manage-fields.php:1128 msgid "Please select at least one user role\n" msgstr "Bitte wählen Sie mindestens eine Benutzerrolle\n" #: profile-builder-2.0/admin/register-version.php:22 msgid "Profile Builder Register" msgstr "Profile Builder Registrierung" #: profile-builder-2.0/admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "Die Seriennummer wird bald ablaufen!" #: profile-builder-2.0/admin/register-version.php:81 msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr "Ihre Seriennummer wird bald ablaufen, bitte %1$ erneuere deine Lizenz%2$s." #: profile-builder-2.0/admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr "Ihre Seriennummer ist abgelaufen, bitte %1$serneuern Sie Ihre Lizenz%2$s." #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 msgid "Add Entry" msgstr "Eintrag hinzufügen" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 msgid "show" msgstr "anzeigen" #: profile-builder-2.0/features/functions.php:736 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" msgstr "Damit sich Benutzer auf Ihre 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" #: profile-builder-2.0/front-end/class-formbuilder.php:659 msgid "User to edit:" msgstr "Benutzer editieren" #: profile-builder-2.0/front-end/default-fields/password/password.php:46 #: profile-builder-2.0/front-end/recover.php:262 msgid "The password must have the minimum length of %s characters" msgstr "Das Passwort muss mindestes %s Zeichen haben" #: profile-builder-2.0/front-end/default-fields/password/password.php:50 #: profile-builder-2.0/front-end/recover.php:266 msgid "The password must have a minimum strength of %s" msgstr "Das Passwort muss eine Mindeststärke von %s haben" #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118 msgid "You cannot register this user role" msgstr "Sie können diese Benutzerrolle nicht registrieren" #: profile-builder-2.0/front-end/login.php:153 msgid "username or email" msgstr "Benutzername oder E-Mail-Adresse" #: profile-builder-2.0/front-end/login.php:222 msgid "Username or Email" msgstr "Benutzername oder E-Mail-Adresse" #: profile-builder-2.0/front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "Du bist eingeloggt als %s." #: profile-builder-2.0/front-end/logout.php:15 msgid "Log out »" msgstr "Ausloggen »" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "Benutzerrolle" #: profile-builder-2.0/modules/user-listing/userlisting.php:2167 msgid "View all extra shortcode parameters" msgstr "Alle zusätzlichen Shortcode-Parameter anzeigen" #: profile-builder-2.0/modules/user-listing/userlisting.php:2181 msgid "displays only the users that you specified the user_id for" msgstr "Nur die Benutzer anzeigen, denen du die user_id vergeben hast" #: profile-builder-2.0/modules/user-listing/userlisting.php:2187 msgid "displays all users except the ones you specified the user_id for" msgstr "Zeigt alle Benutzer an, außer diejenigen, denen du eine user_id gegeben hast." #: profile-builder-2.0/features/functions.php:566 msgid "Minimum length of %d characters" msgstr "Mindestlänge: %d Zeichen" #: profile-builder-2.0/front-end/class-formbuilder.php:146 #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "This message is only visible by administrators" msgstr "Diese Nachricht ist nur für Administratoren sichtbar" #: profile-builder-2.0/modules/user-listing/userlisting.php:413 msgid "User not found" msgstr "Der Benutzer wurde nicht gefunden." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "Gültige Tags {{reply_to}} und {{site_name}}" #: profile-builder-2.0/admin/admin-bar.php:48 msgid "Choose which user roles view the admin bar in the front-end of the website." msgstr "Wähle, welche Benutzerrollen du in der Admin Bar im Front-End der Website sehen möchtest." #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes" msgstr "Gib eine kommagetrennte Liste von Werten ein
            Diese kann alles mögliche enthalten, da sie vor den Benutzern verborgen ist, sollte aber keine Sonderzeichen oder Apostrophe enthalten" #: profile-builder-2.0/admin/manage-fields.php:1055 msgid "The meta-name cannot be empty\n" msgstr "Der Meta-Name darf nicht leer sein\n" #: profile-builder-2.0/admin/register-version.php:69 msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received" msgstr "Du hast eine Kopie von %s erworben. Du solltest dir die Zeit nehmen, um deine Seriennummer zu registrieren." #: profile-builder-2.0/admin/register-version.php:243 msgid "

            Your Profile Builder serial number is invalid or missing.
            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

            " msgstr "

            Deine Profil Builder Seriennummer ist ungültig oder fehlt.
            Bitte %1$s registriere deine Kopie %2$s damit du Zugang zu automatischen Updates und Support erhalten kannst. Benötigst du noch einen Lizenzschlüssel? %3$s Kaufe jetzt eine%4$s

            " #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17 #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60 msgid "...Choose" msgstr "...Wähle" #: profile-builder-2.0/features/class-list-table.php:526 #: profile-builder-2.0/features/class-list-table.php:942 msgid "1 item" msgstr "1 Artikel" #: profile-builder-2.0/features/functions.php:552 msgid "Very Weak" msgstr "Sehr schwach" #: profile-builder-2.0/features/functions.php:640 msgid "This field is required" msgstr "Dieses Feld ist erforderlich" #: profile-builder-2.0/features/functions.php:704 msgid "Cancel" msgstr "Abbrechen" #: profile-builder-2.0/features/functions.php:740 msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s" msgstr "" "Damit sich Benutzer auf deiner Website über Profile Builder registrieren können, musst du zunächst die Benutzerregistrierung ermöglichen. Gehe dazu unter %1$sEinstellungen -> Allgemein%2$s und stelle unter Mitgliedschaft sicher, dass das\n" "Kontrollkästchen \"Jeder kann sich registrieren\" angekreuzt ist . %3$sentlassen%4$s" #: profile-builder-2.0/front-end/login.php:144 msgid "Invalid username." msgstr "Ungültiger Benutzername." #: profile-builder-2.0/front-end/login.php:149 #: profile-builder-2.0/front-end/login.php:153 msgid "username" msgstr "Benutzername" #: profile-builder-2.0/front-end/login.php:149 msgid "email" msgstr "E-Mail-Adresse" #: profile-builder-2.0/front-end/login.php:256 msgid "Lost your password?" msgstr "Passwort vergessen?" #: profile-builder-2.0/index.php:34 msgid " is also activated. You need to deactivate it before activating this version of the plugin." msgstr "ist ebenfalls aktiviert. Du musst es vor der Aktivierung dieser Version des Plugins deaktivieren." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54 msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email" msgstr "Es muss eine gültige E-Mail-Adresse oder der Tag {{reply_to}} sein der die Standardeinstellung für den E-Mail des Administrators ist." #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508 msgid "Your selected password at signup" msgstr "Das von Ihnen gewählte Anmeldepasswort" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save." msgstr "Diese Einstellungen werden nach dem Abspeichern auch auf der Einstellungs-Seite \"Admin-E-Mail Anpassungen\" angezeigt." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "Dieses Formular ist leer." #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "Lösche alle Einträge" #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all" msgstr "Alles löschen" #: profile-builder-2.0/modules/user-listing/userlisting.php:1621 msgid "Choose..." msgstr "Auswählen..." #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Set the number of users to be displayed on every paginated part of the all-userlisting" msgstr "Bestimme die Anzahl der Benutzer, die pro Seite auf der Benutzerliste angezeigt werden sollen." #: profile-builder-2.0/admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "Anzeigen/Verbergen der Admin Bar auf dem Front-End" #: profile-builder-2.0/admin/admin-bar.php:10 #: profile-builder-2.0/admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "Admin Bar Einstellungen" #: profile-builder-2.0/admin/admin-bar.php:57 msgid "User-Role" msgstr "Benutzerrolle" #: profile-builder-2.0/admin/admin-bar.php:58 msgid "Visibility" msgstr "Sichtbarkeit" #: profile-builder-2.0/admin/admin-bar.php:73 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "Vorgabe" #: profile-builder-2.0/admin/admin-bar.php:74 msgid "Show" msgstr "Anzeigen" #: profile-builder-2.0/admin/admin-bar.php:75 #: profile-builder-2.0/modules/user-listing/userlisting.php:1554 msgid "Hide" msgstr "Verbergen" #: pb-add-on-woocommerce/woosync-page.php:147 #: profile-builder-2.0/admin/admin-bar.php:86 #: profile-builder-2.0/admin/general-settings.php:224 #: profile-builder-2.0/admin/register-version.php:95 #: profile-builder-2.0/features/functions.php:697 #: profile-builder-2.0/modules/modules.php:127 msgid "Save Changes" msgstr "Änderungen speichern" #: profile-builder-2.0/admin/admin-functions.php:37 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 )" msgstr "Anmeldung soll über die E-Mail-Adresse erfolgen. Dieses Feld erscheint NICHT im Front-End! (Du kannst diese Einstellungen unter der Registerkarte \"%s\" ändern)" #: profile-builder-2.0/admin/admin-functions.php:37 #: profile-builder-2.0/admin/general-settings.php:10 #: profile-builder-2.0/admin/general-settings.php:35 msgid "General Settings" msgstr "Allgemeine Einstellungen" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:210 msgid "Very weak" msgstr "Sehr unsicher" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:211 #: profile-builder-2.0/features/functions.php:552 msgid "Weak" msgstr "Unsicher" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:212 #: profile-builder-2.0/features/functions.php:552 msgid "Medium" msgstr "Durchschnittlich" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:213 #: profile-builder-2.0/features/functions.php:552 msgid "Strong" msgstr "sicher" #: profile-builder-2.0/admin/admin-functions.php:187 msgid "Add Field" msgstr "Feld hinzufügen" #: profile-builder-2.0/admin/admin-functions.php:189 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390 msgid "Save Settings" msgstr "Einstellungen speichern" #: profile-builder-2.0/admin/basic-info.php:10 msgid "Basic Information" msgstr "Grundlegende Informationen" #: profile-builder-2.0/admin/basic-info.php:29 msgid "Version %s" msgstr "Version %s" #: profile-builder-2.0/admin/basic-info.php:30 msgid "Profile Builder " msgstr "Profil Builder" #: profile-builder-2.0/admin/basic-info.php:31 msgid "The best way to add front-end registration, edit profile and login forms." msgstr "Der beste Weg, um Front-End-Registrierung hinzuzufügen, ist der, die Profil und Login-Formulare zu bearbeiten." #: profile-builder-2.0/admin/basic-info.php:33 msgid "For Modern User Interaction" msgstr "Für die moderne Benutzerinteraktion" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25 #: profile-builder-2.0/admin/basic-info.php:36 #: profile-builder-2.0/features/login-widget/login-widget.php:59 msgid "Login" msgstr "Login" #: profile-builder-2.0/admin/basic-info.php:40 msgid "Registration" msgstr "Registrierung" #: profile-builder-2.0/admin/basic-info.php:44 msgid "Edit Profile" msgstr "Profil bearbeiten" #: profile-builder-2.0/admin/basic-info.php:51 msgid "Extra Features" msgstr "Extra-Features" #: profile-builder-2.0/admin/basic-info.php:52 msgid "Features that give you more control over your users, increased security and help you fight user registration spam." msgstr "Funktionen, die Ihnen mehr Kontrolle über Ihre Benutzer und erhöhte Sicherheit bietet und gegen Registrierungs-Spam von Nutzern hilft." #: profile-builder-2.0/admin/basic-info.php:53 msgid "Enable extra features" msgstr "Zusätzliche Features aktivieren" #: profile-builder-2.0/admin/basic-info.php:57 msgid "Recover Password" msgstr "Passwort wiederherstellen" #: profile-builder-2.0/admin/basic-info.php:61 msgid "Admin Approval (*)" msgstr "Admin-Zulassung (*)" #: profile-builder-2.0/admin/basic-info.php:62 msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI." msgstr "Sie entscheiden, wer als Benutzer auf Ihrer Website freigeschaltet wird. Sie können Benachrichtigungen per E-Mail erhalten oder mehrere Benutzer gleichzeitig über das WordPress-UI genehmigen." #: profile-builder-2.0/admin/basic-info.php:65 msgid "Email Confirmation" msgstr "E-Mail-Bestätigung" #: profile-builder-2.0/admin/basic-info.php:66 msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address." msgstr "Stelle sicher, dass Benutzer sich mit echten E-Mail-Adressen anmelden. Bei der Registrierung erhalten die Benutzer eine Benachrichtigung an diese E-Mail-Adresse, welche diese bestätigen müssen." #: profile-builder-2.0/admin/basic-info.php:69 msgid "Minimum Password Length and Strength Meter" msgstr "Minimale Kennwortlänge und Feldstärke-Messgerät" #: profile-builder-2.0/admin/basic-info.php:70 msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength." msgstr "Beseitige schwache Kennwörter insgesamt, indem du eine minimale Kennwortlänge und Durchsetzung einer bestimmten Passwortstärke aktivierst." #: profile-builder-2.0/admin/basic-info.php:73 msgid "Login with Email or Username" msgstr "Login mit E-Mail oder Benutzername" #: profile-builder-2.0/admin/basic-info.php:74 msgid "Allow users to log in with their email or username when accessing your site." msgstr "Erlaube Benutzern, sich mit ihrer E-Mail-Adresse oder ihrem Benutzername anzumelden, wenn diese auf deine Seite zugreifen möchten. " #: profile-builder-2.0/admin/basic-info.php:87 msgid "Customize Your Forms The Way You Want (*)" msgstr "Passen Sie die Formulare wie Sie wollen an (*)" #: profile-builder-2.0/admin/basic-info.php:88 msgid "With Extra Profile Fields you can create the exact registration form your project needs." msgstr "Mit zusätzlichen Profil-Felder kannst du genau die Anmeldeformulare erstellen, die dein Projekt benötigt." #: profile-builder-2.0/admin/basic-info.php:90 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "Zusätzliche Profil-Felder erhälst du mit den Hobbyist oder PRO Versionen. " #: profile-builder-2.0/admin/basic-info.php:92 msgid "Get started with extra fields" msgstr "Erste Schritte mit extra Felder" #: profile-builder-2.0/admin/basic-info.php:95 msgid "Avatar Upload" msgstr "Profilbild hochladen" #: profile-builder-2.0/admin/basic-info.php:96 msgid "Generic Uploads" msgstr "Generische Uploads" #: profile-builder-2.0/admin/basic-info.php:97 msgid "Agree To Terms Checkbox" msgstr "AGB-Checkbox" #: profile-builder-2.0/admin/basic-info.php:98 msgid "Datepicker" msgstr "Datumsauswahl" #: profile-builder-2.0/admin/basic-info.php:101 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: profile-builder-2.0/admin/basic-info.php:102 msgid "Country Select" msgstr "Land auswählen" #: profile-builder-2.0/admin/basic-info.php:104 msgid "Timezone Select" msgstr "Zeitzone auswählen" #: profile-builder-2.0/admin/basic-info.php:108 msgid "Input / Hidden Input" msgstr "Eingabe / versteckte Eingabe" #: profile-builder-2.0/admin/basic-info.php:110 msgid "Checkbox" msgstr "Checkbox" #: profile-builder-2.0/admin/basic-info.php:111 msgid "Select" msgstr "Auswahl" #: profile-builder-2.0/admin/basic-info.php:112 msgid "Radio Buttons" msgstr "Optionsfelder" #: profile-builder-2.0/admin/basic-info.php:113 msgid "Textarea" msgstr "Textbereich" #: profile-builder-2.0/admin/basic-info.php:125 msgid "Powerful Modules (**)" msgstr "Leistungsstarke Module (*)" #: profile-builder-2.0/admin/basic-info.php:126 msgid "Everything you will need to manage your users is probably already available using the Pro Modules." msgstr "Alles, was du benötigst, um deine Benutzer zu verwalten ist wahrscheinlich schon über die Pro-Module verfügbar." #: profile-builder-2.0/admin/basic-info.php:128 msgid "Enable your modules" msgstr "Aktiviere deine Module" #: profile-builder-2.0/admin/basic-info.php:131 msgid "Find out more about PRO Modules" msgstr "Erfahre mehr über die PRO-Module" #: profile-builder-2.0/admin/basic-info.php:136 #: profile-builder-2.0/modules/modules.php:89 #: profile-builder-2.0/modules/user-listing/userlisting.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:12 #: profile-builder-2.0/modules/user-listing/userlisting.php:17 #: profile-builder-2.0/modules/user-listing/userlisting.php:23 msgid "User Listing" msgstr "Benutzer-Liste" #: profile-builder-2.0/admin/basic-info.php:138 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." msgstr "Einfache editierbare Vorlagen für die Auflistung Ihrer Website-Benutzer sowie für das Erstellen einzelner Benutzer-Seiten. Shortcode basiert , bietet viele Möglichkeiten, Ihre Auflistungen anzupassen." #: profile-builder-2.0/admin/basic-info.php:144 msgid "Email Customizer" msgstr "E-Mail Anpassungen" #: profile-builder-2.0/admin/basic-info.php:145 msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval." msgstr "Personalisiere alle E-Mails, die an Benutzer oder Administratoren gesendet werden. Bei der Registrierung, E-Mail-Bestätigung, Admin Genehmigung / un-Zulassung." #: profile-builder-2.0/admin/basic-info.php:148 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33 #: profile-builder-2.0/modules/modules.php:110 msgid "Custom Redirects" msgstr "Benutzerdefinierte Umleitungen" #: profile-builder-2.0/admin/basic-info.php:149 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." msgstr "Sperre deine Benutzer aus dem WordPress-Dashboard aus und leite sie nach dem Login oder nach der Registrierung auf die Startseite weiter." #: profile-builder-2.0/admin/basic-info.php:154 #: profile-builder-2.0/modules/modules.php:75 msgid "Multiple Registration Forms" msgstr "Mehrfache Anmeldeformulare" #: profile-builder-2.0/admin/basic-info.php:155 msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users." msgstr "Richten Sie mehrere Anmeldeformulare mit verschiedenen Feldern für bestimmte Benutzerrollen ein. Erfassen Sie verschiedene Informationen von verschiedene Arten von Benutzern." #: profile-builder-2.0/admin/basic-info.php:158 #: profile-builder-2.0/modules/modules.php:82 msgid "Multiple Edit-profile Forms" msgstr "Mehrfache Profilbearbeitungs-Formulare" #: profile-builder-2.0/admin/basic-info.php:159 msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles." msgstr "Ermöglichen Sie verschiedenen Benutzerrollen, ihre spezifischen Informationen zu bearbeiten. Errichten Sie mehrere Profil Bearbeitungs-Formulare mit verschiedenen Felder für bestimmte Benutzerrollen." #: profile-builder-2.0/admin/basic-info.php:187 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr "* nur verfügbar in den %1$sHobbyist und Pro-Versionen %2$s." #: profile-builder-2.0/admin/basic-info.php:188 msgid "** only available in the %1$sPro version%2$s." msgstr "** nur in der %1$sPro Version%2$s verfügbar." #: profile-builder-2.0/admin/general-settings.php:39 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "Laden Sie die CSS-Datei vom Profil-Generator in die Front-End hoch" #: profile-builder-2.0/admin/general-settings.php:42 #: profile-builder-2.0/admin/general-settings.php:55 #: profile-builder-2.0/admin/general-settings.php:104 #: profile-builder-2.0/admin/general-settings.php:151 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Yes" msgstr "Ja" #: profile-builder-2.0/admin/general-settings.php:44 msgid "You can find the default file here: %1$s" msgstr "Sie finden die Standard-Datei hier:%1$s" #: profile-builder-2.0/admin/general-settings.php:51 msgid "\"Email Confirmation\" Activated:" msgstr "\"E-Mail-Bestätigung\" aktiviert:" #: profile-builder-2.0/admin/general-settings.php:56 #: profile-builder-2.0/admin/general-settings.php:105 #: profile-builder-2.0/admin/general-settings.php:150 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "No" msgstr "Nein" #: profile-builder-2.0/admin/general-settings.php:61 msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s." msgstr "Sie können eine Liste der unbestätigten Emailadressen unter %1$sUsers > alle Benutzer > E-Mail Bestätigung%2$s finden." #: profile-builder-2.0/admin/general-settings.php:69 msgid "\"Email Confirmation\" Landing Page:" msgstr "\"E-Mail-Bestätigung\" Landeseite:" #: profile-builder-2.0/admin/general-settings.php:74 msgid "Existing Pages" msgstr "Vorhandene Seiten" #: profile-builder-2.0/admin/general-settings.php:89 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." msgstr "Geben Sie 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." #: profile-builder-2.0/admin/general-settings.php:100 msgid "\"Admin Approval\" Activated:" msgstr "\"Admin Genehmigung\" aktiviert:" #: profile-builder-2.0/admin/general-settings.php:108 msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "Sie können eine Liste mit allen Benutzer unter %1$sUsers > alle Benutzer > Admin Genehmigung%2$s finden." #: profile-builder-2.0/admin/general-settings.php:165 msgid "\"Admin Approval\" Feature:" msgstr "\"Admin Genehmigung\" Feature:" #: profile-builder-2.0/admin/general-settings.php:168 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." msgstr "Sie entscheiden, wer als Benutzer auf Ihrer Website freigeschaltet wird. Sie können Benachrichtigungen per E-Mail erhalten oder mehrere Benutzer gleichzeitig über das WordPress-UI genehmigen. Aktivieren Sie die Admin-Genehmigung mit einem Upgrade auf %1$s die Hobbyist oder PRO Version %2$s." #: profile-builder-2.0/admin/general-settings.php:175 msgid "Allow Users to Log in With:" msgstr "Benutzerberechtigungen zum Einloggen mit:" #: profile-builder-2.0/admin/general-settings.php:180 #: profile-builder-2.0/admin/manage-fields.php:201 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167 #: profile-builder-2.0/front-end/login.php:85 #: profile-builder-2.0/front-end/login.php:99 #: profile-builder-2.0/front-end/login.php:218 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28 #: profile-builder-2.0/modules/user-listing/userlisting.php:102 #: profile-builder-2.0/modules/user-listing/userlisting.php:277 #: profile-builder-2.0/modules/user-listing/userlisting.php:730 #: profile-builder-2.0/modules/user-listing/userlisting.php:2219 msgid "Username" msgstr "Benutzername" #: profile-builder-2.0/admin/general-settings.php:181 #: profile-builder-2.0/front-end/login.php:215 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29 #: profile-builder-2.0/modules/user-listing/userlisting.php:736 #: profile-builder-2.0/modules/user-listing/userlisting.php:2220 msgid "Email" msgstr "E-Mail" #: profile-builder-2.0/admin/general-settings.php:193 msgid "Minimum Password Length:" msgstr "Minimale Kennwortlänge:" #: profile-builder-2.0/admin/general-settings.php:198 msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit" msgstr "Geben Sie die minimalen Zeichen ein, die das Kennwort haben sollten. Lassen Sie es leer für keine Untergrenze" #: profile-builder-2.0/admin/general-settings.php:205 msgid "Minimum Password Strength:" msgstr "Minimale Passwortstärke:" #: profile-builder-2.0/admin/general-settings.php:209 msgid "Disabled" msgstr "Deaktiviert" #: profile-builder-2.0/admin/manage-fields.php:12 msgid "Manage Fields" msgstr "Felder verwalten" #: profile-builder-2.0/admin/manage-fields.php:13 msgid "Manage Default and Extra Fields" msgstr "Verwalten von Standard- und Extra Felder" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Field Title" msgstr "Feldtitel" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Title of the field" msgstr "Titel des Feldes" #: profile-builder-2.0/admin/manage-fields.php:119 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "Feld" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Meta-name" msgstr "Meta-name " #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "ID" msgstr "ID" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be edited" msgstr "Ein einzigartiges, automatisch generiertes ID für dieses spezielle Feld
            Sie können dies in Verbindung mit Kriterien verwenden, um dieses Element bei Bedarf aufzuziehlen
            Nicht editierbar" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Description" msgstr "Beschreibung" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Enter a (detailed) description of the option for end users to read
            Optional" msgstr "Geben Sie eine (ausführliche) Beschreibung der Option ein die die Endbenutzer lesen können
            Optional" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Row Count" msgstr "Zeilenanzahl" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5" msgstr "Geben Sie die Anzahl der Zeilen für ein Text-Feld ein
            Wenn nicht angegeben, wird dieser standardmäßig auf 5 gesetzt." #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Allowed Image Extensions" msgstr "Erlaubte Bild-Extensions" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Allowed Upload Extensions" msgstr "Zulässige Dateierweiterungen beim Hochladen" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Avatar Size" msgstr "Profilbild-Größe" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100" msgstr "Geben Sie einen Wert (zwischen 20 und 200) für die Größe des 'Profilbilds' ein.
            Falls nicht angegeben, wird er standardmäßig auf 100 gesetzt" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Date-format" msgstr "Datum-Format" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Terms of Agreement" msgstr "Nutzungsbedingungen" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Enter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>" msgstr "Geben Sie eine detaillierte Beschreibung der Bedingungen der Vereinbarung für den Benutzer zu lesen ein.
            Links können mit standard-HTML-Syntax eingefügt werden: < a href =\"custom_url\">custom_text </a>" #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Options" msgstr "Optionen" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Labels" msgstr "Beschriftung " #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "Geben Sie eine durch Kommas getrennte Liste der Beschriftungen ein.
            Sie ist für den Benutzer sichtbar." #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default Value" msgstr "Standardwert" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default value of the field" msgstr "Standardwert des Feldes" #: profile-builder-2.0/admin/manage-fields.php:138 #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default Option" msgstr "Standardoption" #: profile-builder-2.0/admin/manage-fields.php:138 msgid "Specify the option which should be selected by default" msgstr "Geben Sie die Option ein, die standardmäßig ausgewählt sein soll." #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Default Option(s)" msgstr "Standard-Option(en)" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)" msgstr "Geben Sie die Option, die standardmäßig überprüft werden sollen, ein.
            Wenn mehrere Werte vorhanden sind, trennen Sie diese mit einem Komma." #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default Content" msgstr "Standard-Inhalt" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default value of the textarea" msgstr "Standardwert der Textfeld-Komponente" #: pb-add-on-woocommerce/index.php:306 #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Required" msgstr "Erforderlich" #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Whether the field is required or not" msgstr "Ob das Feld erforderlich ist oder nicht" #: profile-builder-2.0/admin/manage-fields.php:161 msgid "Overwrite Existing" msgstr "Existierende überschreiben" #: profile-builder-2.0/admin/manage-fields.php:161 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
            Use this at your own risk" msgstr "Bei Auswahl \"Ja\", wird das Feld in der Liste eingefügt aber es werden alle anderen Felder aus der Datenbank, die den gleichen Meta Namen haben, überschrieben.
            Benutzen auf eigene Gefahr!" #: profile-builder-2.0/admin/manage-fields.php:167 msgid "Field Properties" msgstr "Feld-Eigenschaften" #: profile-builder-2.0/admin/manage-fields.php:181 msgid "Registration & Edit Profile" msgstr "Registrierung & Profil-Bearbeitung" #: profile-builder-2.0/admin/manage-fields.php:200 msgid "Name" msgstr "Name" #: profile-builder-2.0/admin/manage-fields.php:201 msgid "Usernames cannot be changed." msgstr "Benutzernamen können nicht geändert werden." #: pb-add-on-woocommerce/billing-fields.php:6 #: pb-add-on-woocommerce/shipping-fields.php:6 #: profile-builder-2.0/admin/manage-fields.php:202 msgid "First Name" msgstr "Vorname" #: pb-add-on-woocommerce/billing-fields.php:7 #: pb-add-on-woocommerce/shipping-fields.php:7 #: profile-builder-2.0/admin/manage-fields.php:203 msgid "Last Name" msgstr "Nachname" #: profile-builder-2.0/admin/manage-fields.php:204 #: profile-builder-2.0/modules/user-listing/userlisting.php:769 #: profile-builder-2.0/modules/user-listing/userlisting.php:2227 msgid "Nickname" msgstr "Spitzname" #: profile-builder-2.0/admin/manage-fields.php:205 msgid "Display name publicly as" msgstr "Name öffentlich anzeigen als" #: profile-builder-2.0/admin/manage-fields.php:206 msgid "Contact Info" msgstr "Kontaktdaten" #: profile-builder-2.0/admin/manage-fields.php:207 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168 #: profile-builder-2.0/front-end/recover.php:118 #: profile-builder-2.0/modules/user-listing/userlisting.php:108 msgid "E-mail" msgstr "E-Mail" #: profile-builder-2.0/admin/manage-fields.php:208 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32 #: profile-builder-2.0/modules/user-listing/userlisting.php:111 #: profile-builder-2.0/modules/user-listing/userlisting.php:751 #: profile-builder-2.0/modules/user-listing/userlisting.php:2221 msgid "Website" msgstr "Webseite" #: profile-builder-2.0/admin/manage-fields.php:212 msgid "AIM" msgstr "AIM" #: profile-builder-2.0/admin/manage-fields.php:213 msgid "Yahoo IM" msgstr "Yahoo IM" #: profile-builder-2.0/admin/manage-fields.php:214 msgid "Jabber / Google Talk" msgstr "Jabber / Google Talk" #: profile-builder-2.0/admin/manage-fields.php:217 msgid "About Yourself" msgstr "Über Dich" #: profile-builder-2.0/admin/manage-fields.php:218 #: profile-builder-2.0/modules/user-listing/userlisting.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:754 #: profile-builder-2.0/modules/user-listing/userlisting.php:2222 msgid "Biographical Info" msgstr "Lebenslauf" #: profile-builder-2.0/admin/manage-fields.php:218 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "Fülle ein paar biographische Informationen in deinem Profil aus. Diese können auch öffentlich angezeigt werden." #: profile-builder-2.0/admin/manage-fields.php:219 #: profile-builder-2.0/front-end/recover.php:73 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "Kennwort" #: profile-builder-2.0/admin/manage-fields.php:219 msgid "Type your password." msgstr "Bitte gib dein Passwort ein." #: profile-builder-2.0/admin/manage-fields.php:220 #: profile-builder-2.0/front-end/recover.php:74 msgid "Repeat Password" msgstr "Kennwort wiederholen" #: profile-builder-2.0/admin/manage-fields.php:220 msgid "Type your password again. " msgstr "Bitte gib dein Kennwort erneut ein." #: profile-builder-2.0/admin/manage-fields.php:980 #: profile-builder-2.0/admin/manage-fields.php:1137 msgid "You must select a field\n" msgstr "Sie müssen ein Feld auswählen.\n" #: profile-builder-2.0/admin/manage-fields.php:990 msgid "Please choose a different field type as this one already exists in your form (must be unique)\n" msgstr "Bitte wählen Sie ein anderes Feld aus. Dieses ist bereits im Formular vorhanden (muss einzigartig) sein.\n" #: profile-builder-2.0/admin/manage-fields.php:1001 msgid "The entered avatar size is not between 20 and 200\n" msgstr "Die eingegebene Profilbild-Größe ist nicht zwischen 20 und 200\n" #: profile-builder-2.0/admin/manage-fields.php:1004 msgid "The entered avatar size is not numerical\n" msgstr "Die eingegebenen Profilbild-Größe ist nicht numerisch\n" #: profile-builder-2.0/admin/manage-fields.php:1012 msgid "The entered row number is not numerical\n" msgstr "Die eingegebene Nummer der Zeile ist nicht numerisch\n" #: profile-builder-2.0/admin/manage-fields.php:1015 msgid "You must enter a value for the row number\n" msgstr "Sie müssen die Zeilennummer angeben.\n" #: profile-builder-2.0/admin/manage-fields.php:1036 msgid "The entered value for the Datepicker is not a valid date-format\n" msgstr "Der eingegebene Wert für den Datums-picker ist kein gültiges Datumsformat\n" #: profile-builder-2.0/admin/manage-fields.php:1039 msgid "You must enter a value for the date-format\n" msgstr "Sie müssen das Datumsformat angeben.\n" #: profile-builder-2.0/admin/manage-fields.php:1067 #: profile-builder-2.0/admin/manage-fields.php:1075 #: profile-builder-2.0/admin/manage-fields.php:1086 msgid "That meta-name is already in use\n" msgstr "Dieser Meta-Name wird bereits verwendet\n" #: profile-builder-2.0/admin/manage-fields.php:1117 msgid "The following option(s) did not coincide with the ones in the options list: %s\n" msgstr "Die folgende Option(en) übereinstimmen nicht mit denen aus der Optionsliste :%s\n" #: profile-builder-2.0/admin/manage-fields.php:1121 msgid "The following option did not coincide with the ones in the options list: %s\n" msgstr "Die folgende Option übereinstimmt nicht mit denen, aus der Optionsliste: %s\n" #: profile-builder-2.0/admin/manage-fields.php:1144 msgid "That field is already added in this form\n" msgstr "Dieses Feld wurde bereits in dieser Form hinzugefügt.\n" #: profile-builder-2.0/admin/manage-fields.php:1193 msgid "
            Title
            Type
            Meta Name
            Required
            " msgstr "
            Titel
            Typ
            Meta Name
             erforderlich
            " #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108 #: profile-builder-2.0/features/functions.php:718 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Edit" msgstr "Bearbeiten" #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217 #: profile-builder-2.0/features/functions.php:711 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "Delete" msgstr "Löschen" #: profile-builder-2.0/admin/manage-fields.php:1208 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "Verwenden Sie folgende Shortcodes auf den Seiten, auf denen Sie die Formulare angezeigt haben möchten:" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Your Version" msgstr "Registrieren Sie Ihre Version" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Version" msgstr "Version registrieren" #: profile-builder-2.0/admin/register-version.php:70 msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support." msgstr "Wenn Sie diese Version vom Profile Builder registrieren, erhalten Sie Informationen zu Upgrades, Patches und technischen Support." #: profile-builder-2.0/admin/register-version.php:72 msgid " Serial Number:" msgstr "Seriennummer:" #: profile-builder-2.0/admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "Die Seriennummer wurde erfolgreich überprüft!" #: profile-builder-2.0/admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "Die eingegebene Seriennummer konnte nicht überprüft werden!" #: profile-builder-2.0/admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "Die Seriennummer konnte nicht überprüft werden, da diese abgelaufen ist!" #: profile-builder-2.0/admin/register-version.php:85 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!" msgstr "Die Seriennummer konnte nicht überprüft werden, weil der Prozess einen Time-Out bekam. Dies kann passieren, wenn der Server nicht verfügbar ist. Bitte versuche es später erneut!" #: profile-builder-2.0/admin/register-version.php:87 msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "(z.B. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985) " #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/features/functions.php:725 msgid "Content" msgstr "Inhalt" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 msgid "Edit this item" msgstr "Dieses Element bearbeiten" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 msgid "Delete this item" msgstr "Dieses Element löschen" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705 msgid "Please enter a value for the required field " msgstr "Bitte gib einen Wert für das erforderliche Feld ein" #: pb-add-on-woocommerce/woo-checkout-field-support.php:262 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122 msgid "Select File" msgstr "Datei auswählen" #: pb-add-on-woocommerce/woo-checkout-field-support.php:252 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112 msgid "Remove" msgstr "Löschen" #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8 msgid "You can add the information for the %s after you add a entry" msgstr "Du kannst die Informationen für \"%s\" hinzufügen, nachdem du einen Eintrag hinzugefügt hast" #: pb-add-on-woocommerce/woo-checkout-field-support.php:268 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128 msgid "Upload " msgstr "Hochladen" #: profile-builder-2.0/features/class-list-table.php:184 msgid "No items found." msgstr "Keine Einträge wurden gefunden." #: profile-builder-2.0/features/class-list-table.php:308 msgid "Bulk Actions" msgstr "Bulk.Aktionen" #: profile-builder-2.0/features/class-list-table.php:318 msgid "Apply" msgstr "Anwenden" #: profile-builder-2.0/features/class-list-table.php:402 msgid "Show all dates" msgstr "Alle Termine anzeigen" #: profile-builder-2.0/features/class-list-table.php:415 msgid "%1$s %2$d" msgstr "%1$s %2$d " #: profile-builder-2.0/features/class-list-table.php:431 msgid "List View" msgstr "Listenansicht" #: profile-builder-2.0/features/class-list-table.php:432 msgid "Excerpt View" msgstr "Excerpt-Anzeige" #: profile-builder-2.0/features/class-list-table.php:458 msgid "%s pending" msgstr "%s ausstehend" #: profile-builder-2.0/features/class-list-table.php:566 msgid "%1$s of %2$s" msgstr "%1$s von %2$s" #: profile-builder-2.0/features/class-list-table.php:713 msgid "Select All" msgstr "Alle auswählen" #: profile-builder-2.0/features/functions.php:526 msgid "Strength indicator" msgstr "Stärkeanzeige" #: profile-builder-2.0/features/admin-approval/admin-approval.php:14 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453 msgid "Admin Approval" msgstr "Admin-Bestätigung" #: profile-builder-2.0/features/admin-approval/admin-approval.php:28 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "Möchtest du" #: profile-builder-2.0/features/admin-approval/admin-approval.php:51 msgid "Your session has expired! Please refresh the page and try again" msgstr "Ihre Sitzung ist abgelaufen! Bitte laden Sie die Seite neu und versuchen es noch einmal." #: profile-builder-2.0/features/admin-approval/admin-approval.php:64 msgid "User successfully approved!" msgstr "Benutzer erfolgreich genehmigt!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:74 msgid "User successfully unapproved!" msgstr "Benutzer erfolgreich abgelehnt!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:80 msgid "User successfully deleted!" msgstr "Benutzer erfolgreich gelöscht!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:85 #: profile-builder-2.0/features/admin-approval/admin-approval.php:131 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "Sie haben entweder keine Berechtigungen für diese Aktion oder es ist ein Fehler aufgetreten!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:96 msgid "Your session has expired! Please refresh the page and try again." msgstr "Ihre Sitzung ist abgelaufen! Bitte laden Sie die Seite neu und versuchen es noch einmal." #: profile-builder-2.0/features/admin-approval/admin-approval.php:109 msgid "Users successfully approved!" msgstr "Benutzer wurden erfolgreich genehmigt!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:119 msgid "Users successfully unapproved!" msgstr "Benutzer wurden erfolgreich verwehrt!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:127 msgid "Users successfully deleted!" msgstr "Benutzer wurden erfolgreich gelöscht!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:147 msgid "Your account on %1$s has been approved!" msgstr "Ihr Benutzerkonto auf %1$s wurde genehmigt!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:148 #: profile-builder-2.0/features/admin-approval/admin-approval.php:151 msgid "approved" msgstr "genehmigt" #: profile-builder-2.0/features/admin-approval/admin-approval.php:150 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "Ein Administrator hat gerade Ihr Konto auf %1$s (%2$s) genehmigt." #: profile-builder-2.0/features/admin-approval/admin-approval.php:155 msgid "Your account on %1$s has been unapproved!" msgstr "Ihr Benutzerkonto auf %1$s wurde nicht genehmigt!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:156 #: profile-builder-2.0/features/admin-approval/admin-approval.php:159 msgid "unapproved" msgstr "abgelehnt" #: profile-builder-2.0/features/admin-approval/admin-approval.php:158 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "Ein Administrator hat Ihr Konto auf %1$ s (%2$ s) nicht genehmigt. " #: profile-builder-2.0/features/admin-approval/admin-approval.php:177 msgid "ERROR: Your account has to be confirmed by an administrator before you can log in." msgstr "Fehler: Ihr Konto muss von einem Administrator bestätigt werden, bevor Sie sich anmelden können. " #: profile-builder-2.0/features/admin-approval/admin-approval.php:189 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature." msgstr "Ihr Benutzerkonto muss von einem Administrator bestätigt werden, bevor Sie die \"Kennwort Wiederherstellung\"-Funktion verwenden können." #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "Möchtest du diesen Benutzer löschen?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "Benutzer ablehnen?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr "Ablehnen" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "Möchtest du diesen Benutzer genehmigen?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "Genehmigen" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167 #: profile-builder-2.0/modules/user-listing/userlisting.php:278 #: profile-builder-2.0/modules/user-listing/userlisting.php:742 #: profile-builder-2.0/modules/user-listing/userlisting.php:2224 msgid "Firstname" msgstr "Vorname" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168 #: profile-builder-2.0/modules/user-listing/userlisting.php:745 #: profile-builder-2.0/modules/user-listing/userlisting.php:2225 msgid "Lastname" msgstr "Nachname" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170 #: profile-builder-2.0/modules/user-listing/userlisting.php:149 #: profile-builder-2.0/modules/user-listing/userlisting.php:279 #: profile-builder-2.0/modules/user-listing/userlisting.php:772 #: profile-builder-2.0/modules/user-listing/userlisting.php:2229 msgid "Role" msgstr "Rolle" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169 msgid "Registered" msgstr "Angemeldet" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "Benutzer-Status" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "Möchtest du alle ausgewählten Benutzer genehmigen?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "Möchtest du alle ausgewählten Benutzer verwehren?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "Möchtest du alle ausgewählten Benutzer löschen?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278 msgid "Sorry, but you don't have permission to do that!" msgstr "Tut uns leid aber du hast keine Berechtigung dazu!" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339 msgid "Approved" msgstr "Genehmigt" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341 msgid "Unapproved" msgstr "Verwehrt" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454 msgid "All Users" msgstr "Alle Benutzer" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 msgid "delete this user from the _signups table?" msgstr "Möchtest du diesen Benutzer aus der _signups-Tabelle löschen?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 msgid "confirm this email yourself?" msgstr "Bestätige diese E-Mail selbst?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218 msgid "Confirm Email" msgstr "E-Mail bestätigen" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 msgid "resend the activation link?" msgstr "Aktivierungslink erneut senden?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219 msgid "Resend Activation Email" msgstr "Aktivierungs-E-Mail erneut senden" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249 msgid "%s couldn't be deleted" msgstr "%s konnte nicht gelöscht werden" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253 msgid "All users have been successfully deleted" msgstr "Alle Benutzer wurden erfolgreich gelöscht" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263 msgid "The selected users have been activated" msgstr "Die ausgewählten Benutzer wurden aktiviert" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274 msgid "The selected users have had their activation emails resent" msgstr "Die ausgewählten Benutzer haben ihre Aktivierung E-Mails erneut gesendet bekommen. " #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "Benutzer mit unbestätigter E-Mail-Adresse" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "Es gab einen Fehler bei der Durchführung dieser Aktion!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "Der ausgewählte Benutzer konnte nicht gelöscht werden" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "Die E-Mail-Benachrichtigung wurde dem Benutzer erneut geschickt." #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398 msgid "[%1$s] Activate %2$s" msgstr "[%1$s] Aktivieren %2$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442 #: profile-builder-2.0/front-end/register.php:71 msgid "Could not create user!" msgstr "Benutzer konnte nicht erstellt werden!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445 msgid "That username is already activated!" msgstr "Dieser Benutzername ist bereits aktiviert worden!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468 msgid "There was an error while trying to activate the user" msgstr "Es ist ein Fehler aufgetreten, beim Versuch, den Benutzer zu aktivieren." #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73 msgid "A new subscriber has (been) registered!" msgstr "Ein neuer Benutzer ist (wurde) registriert!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "Neuer Abonnent auf %1$s.

            Benutzername:%2$s
            E-Mail: %3$s
            " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634 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!" msgstr "Das \"Admin Approval\" Feature war zum Zeitpunkt der Registrierung aktiv, also bitte denke daran, dass man diesen Benutzer genehmigen muss, bevor er sich anmelden kann!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570 msgid "[%1$s] Your new account information" msgstr "[%1$s] Ihre neuen Kontodaten" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581 msgid "Welcome to %1$s!


            Your username is:%2$s and password:%3$s" msgstr "Willkommen bei %1$s!


            Ihr Benutzername ist: %2$s und das Kennwort: %3$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642 #: profile-builder-2.0/front-end/register.php:125 msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email." msgstr "Bevor du auf dein Konto zugreifen kannst, muss es von einem Administrator genehmigt werden. Du wirst per E-Mail darüber benachrichtigt." #: profile-builder-2.0/features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "Mit diesem Login-Widget kannst du ein Anmeldeformular in der Sidebar hinzufügen." #: profile-builder-2.0/features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "Profile Builder Login Widget" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36 #: profile-builder-2.0/front-end/class-formbuilder.php:415 #: profile-builder-2.0/front-end/login.php:250 msgid "Register" msgstr "Registrieren" #: profile-builder-2.0/features/login-widget/login-widget.php:63 msgid "Title:" msgstr "Titel:" #: profile-builder-2.0/features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "Weiterleitungs-URL nach dem Login (optional):" #: profile-builder-2.0/features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "Registrierunggseite-URL (optional):" #: profile-builder-2.0/features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "Kennwort Wiederherstellungs-URL (optional):" #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91 #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "Benutzernamen können nicht geändert werden." #: profile-builder-2.0/front-end/class-formbuilder.php:136 msgid "Only an administrator can add new users." msgstr "Nur ein Administrator kann neue Benutzer hinzufügen." #: profile-builder-2.0/front-end/class-formbuilder.php:146 msgid "Users can register themselves or you can manually create users here." msgstr "Benutzer können sich selbst anmelden, oder du kannst Benutzer von Hand hier erstellen." #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "Users cannot currently register themselves, but you can manually create users here." msgstr "Benutzer können sich derzeit selbst nicht registrieren, aber du kannst Benutzer hier manuell erstellen." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "Du bist derzeit als %1s angemeldet. Du brauchst kein weiteres Konto. %2s" #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Log out of this account." msgstr "Aus diesem Konto ausloggen." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Logout" msgstr "Ausloggen" #: profile-builder-2.0/front-end/class-formbuilder.php:175 msgid "You must be logged in to edit your profile." msgstr "Sie müssen angemeldet sein, um Ihr Profil zu bearbeiten." #: profile-builder-2.0/features/functions.php:994 msgid "here" msgstr "hier" #: profile-builder-2.0/features/functions.php:995 msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s" msgstr "Sie werden in Kürze automatisch weitergeleitet. Wenn Sie diese Seite mehr als %1$d Sekunden sehen, klicken Sie bitte hier %2$s.%3$s" #: profile-builder-2.0/front-end/class-formbuilder.php:315 #: profile-builder-2.0/front-end/class-formbuilder.php:322 msgid "The account %1s has been successfully created!" msgstr "Das Konto %1s wurde erfolgreich erstellt!" #: profile-builder-2.0/front-end/class-formbuilder.php:318 #: profile-builder-2.0/front-end/class-formbuilder.php:328 msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link." msgstr "Bevor du auf dein Konto %1S zugreifen kannst, musst du deine E-Mail-Adresse bestätigen. Bitte überprüfe deinen Posteingang und klicke auf den Aktivierungslink." #: profile-builder-2.0/front-end/class-formbuilder.php:324 msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email." msgstr "Bevor du auf dein Konto %1S zugreifen kannst, muss es von einem Administrator genehmigt werden. Über eine Bestätigung wirst du per E-Mail benachrichtigt." #: profile-builder-2.0/front-end/class-formbuilder.php:347 msgid "Your profile has been successfully updated!" msgstr "Ihr Profil wurde aktualisiert!" #: profile-builder-2.0/front-end/class-formbuilder.php:358 msgid "There was an error in the submitted form" msgstr "Bitte alle erforderlichen Felder korrekt ausfüllen!" #: profile-builder-2.0/front-end/class-formbuilder.php:415 msgid "Add User" msgstr "Benutzer hinzufügen" #: profile-builder-2.0/admin/add-ons.php:170 #: profile-builder-2.0/front-end/class-formbuilder.php:418 msgid "Update" msgstr "Aktualisieren" #: profile-builder-2.0/front-end/class-formbuilder.php:481 msgid "Send these credentials via email." msgstr "Senden Sie mir diese Anmeldeninformationen per E-Mail." #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92 #: profile-builder-2.0/front-end/login.php:137 #: profile-builder-2.0/front-end/login.php:144 #: profile-builder-2.0/front-end/login.php:158 #: profile-builder-2.0/front-end/recover.php:17 #: profile-builder-2.0/front-end/recover.php:245 msgid "ERROR" msgstr "FEHLER" #: profile-builder-2.0/front-end/login.php:137 msgid "The password you entered is incorrect." msgstr "Das eingegebene Kennwort ist falsch." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Password Lost and Found." msgstr "Passwort-Fundgrube" #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Lost your password" msgstr "Passwort vergessen" #: profile-builder-2.0/front-end/login.php:158 msgid "Both fields are empty." msgstr "Beide Felder sind leer." #: profile-builder-2.0/front-end/login.php:296 msgid "You are currently logged in as %1$s. %2$s" msgstr "Derzeit als %1$s angemeldet. %2$s " #: profile-builder-2.0/front-end/login.php:295 #: profile-builder-2.0/front-end/logout.php:25 msgid "Log out of this account" msgstr "Aus diesem Konto ausloggen" #: profile-builder-2.0/front-end/login.php:295 msgid "Log out" msgstr "Ausloggen" #: profile-builder-2.0/front-end/recover.php:17 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature." msgstr "Ihr Benutzerkonto muss von einem Administrator bestätigt werden, bevor Sie Ihr Kennwort zurücksetzen können." #: profile-builder-2.0/front-end/recover.php:94 msgid "Reset Password" msgstr "Passwort zurücksetzen" #: profile-builder-2.0/front-end/recover.php:121 msgid "Please enter your username or email address." msgstr "Bitte gib deinen Benutzernamen oder deine E-Mail Adresse ein." #: profile-builder-2.0/front-end/recover.php:125 msgid "You will receive a link to create a new password via email." msgstr "Sie werden per E-Mail einen Link erhalten, über den Sie ein neues Passwort vergeben können." #: profile-builder-2.0/front-end/recover.php:122 msgid "Username or E-mail" msgstr "Benutzername oder E-Mail" #: profile-builder-2.0/front-end/recover.php:138 msgid "Get New Password" msgstr "Neues Passwort anfordern" #: profile-builder-2.0/front-end/recover.php:185 msgid "The username entered wasn't found in the database!" msgstr "Der eingegebene Benutzername existiert nicht!" #: profile-builder-2.0/front-end/recover.php:185 msgid "Please check that you entered the correct username." msgstr "Bitte überprüfe, ob du den richtigen Benutzernamen eingegeben hast." #: profile-builder-2.0/front-end/recover.php:200 msgid "Check your e-mail for the confirmation link." msgstr "Überprüfe dein E-Mail Postfach für den Bestätigungslink." #: profile-builder-2.0/front-end/recover.php:235 msgid "Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s" msgstr "Jemand hat angefragt, dass das Passwort für dieses Konto zurückgesetzt werden soll: %1$s
            Wenn diese Anfrage nicht von die ausgeht, bitte ignoriere diese E-Mail einfach und es geschieht nichts.
            Um dein Passwort zurückzusetzen, rufe folgenden Link auf: %2$s" #: profile-builder-2.0/front-end/recover.php:238 msgid "Password Reset from \"%1$s\"" msgstr "Zurücksetzen des Kennworts \"%1$s\"" #: profile-builder-2.0/front-end/recover.php:245 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "Es gab einen Fehler beim Versuch den Aktivierungslink zu senden%1$s!" #: profile-builder-2.0/front-end/recover.php:207 msgid "The email address entered wasn't found in the database!" msgstr "Die eingegebene E-Mail-Adresse existiert nicht!" #: profile-builder-2.0/front-end/recover.php:207 msgid "Please check that you entered the correct email address." msgstr "Bitte prüfe, ob du die richtige E-Mail Adresse angegeben hast." #: profile-builder-2.0/front-end/recover.php:273 msgid "Your password has been successfully changed!" msgstr "Ihr Passwort wurde erfolgreich geändert!" #: profile-builder-2.0/front-end/recover.php:292 msgid "You have successfully reset your password to: %1$s" msgstr "Ihr Kennwort wurde erfolgreich zurückgesetzt: %1$s" #: profile-builder-2.0/front-end/recover.php:295 #: profile-builder-2.0/front-end/recover.php:306 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "Kennwort erfolgreich zurückgesetzt für %1$s auf \"%2$s\"" #: profile-builder-2.0/front-end/recover.php:303 msgid "%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s" msgstr "%1$s hat eine Kennwortänderung über die Funktion \"Kennwort zurücksetzen\" angefordert.
            Ihr neues Passwort ist: %2$s" #: profile-builder-2.0/front-end/recover.php:320 msgid "The entered passwords don't match!" msgstr "Die eingegebenen Passwörter stimmen nicht überein!" #: profile-builder-2.0/front-end/recover.php:375 msgid "ERROR:" msgstr "FEHLER:" #: profile-builder-2.0/front-end/recover.php:375 msgid "Invalid key!" msgstr "Ungültiger Schlüssel!" #: profile-builder-2.0/front-end/register.php:56 msgid "Invalid activation key!" msgstr "Ungültiger Aktivierungsschlüssel!" #: profile-builder-2.0/front-end/register.php:60 msgid "This username is now active!" msgstr "Dieser Benutzername ist jetzt aktiv!" #: profile-builder-2.0/front-end/register.php:74 msgid "This username is already activated!" msgstr "Dieser Benutzername ist bereits aktiviert!" #: profile-builder-2.0/front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "Ihre E-Mail wurde erfolgreich bestätigt." #: profile-builder-2.0/front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "Ein Fehler ist aufgetreten, während versucht wurde, den Benutzer zu aktivieren." #: pb-add-on-woocommerce/index.php:393 #: profile-builder-2.0/front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "Die angegebene E-Mail Adresse wurde als ungültig eingestuft." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "Diese E-Mail ist bereits reserviert worden, um bald verwendet zu werden." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 #: profile-builder-2.0/front-end/default-fields/username/username.php:49 #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "Bitte versuche es mit einer anderen!" #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "Diese E-Mail-Adresse ist bereits im Einsatz." #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37 #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "Die Kennwörter stimmen nicht überein." #: profile-builder-2.0/front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "Dieser Benutzername ist bereits vorhanden." #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "Dieser Benutzername ist bereits reserviert, um bald verwendet zu werden." #: profile-builder-2.0/modules/user-listing/userlisting.php:276 msgid "Avatar" msgstr "Profil-Bild" #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72 #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45 #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45 #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40 #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34 #: profile-builder-2.0/front-end/extra-fields/input/input.php:30 #: profile-builder-2.0/front-end/extra-fields/map/map.php:51 #: profile-builder-2.0/front-end/extra-fields/number/number.php:30 #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39 #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52 #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46 #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49 #: profile-builder-2.0/front-end/extra-fields/select/select.php:51 #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70 #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "Erforderlich" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48 msgid "To use reCAPTCHA you must get an API key from" msgstr "Um ReCAPTCHA zu verwenden müssen Sie einen API-Schlüssel von hier besorgen:" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "Aus Sicherheitsgründen müssen Sie die Remote-IP eingeben um ReCAPTCHA zu benutzen!" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "Um ReCAPTCHA zu verwenden muss man einen öffentlichen API-Schlüssel von hier hohlen:" #: profile-builder-2.0/modules/modules.php:11 #: profile-builder-2.0/modules/modules.php:58 msgid "Modules" msgstr "Module" #: profile-builder-2.0/modules/modules.php:59 msgid "Here you can activate / deactivate available modules for Profile Builder." msgstr "Hier können Sie die verfügbaren Module für Profil-Generator aktivieren/deaktivieren." #: profile-builder-2.0/modules/modules.php:69 msgid "Name/Description" msgstr "Name/Beschreibung" #: profile-builder-2.0/modules/modules.php:70 msgid "Status" msgstr "Status" #: profile-builder-2.0/modules/modules.php:77 #: profile-builder-2.0/modules/modules.php:84 #: profile-builder-2.0/modules/modules.php:91 #: profile-builder-2.0/modules/modules.php:98 #: profile-builder-2.0/modules/modules.php:105 #: profile-builder-2.0/modules/modules.php:112 #: profile-builder-2.0/modules/modules.php:119 msgid "Active" msgstr "Aktiv" #: profile-builder-2.0/modules/modules.php:78 #: profile-builder-2.0/modules/modules.php:85 #: profile-builder-2.0/modules/modules.php:92 #: profile-builder-2.0/modules/modules.php:99 #: profile-builder-2.0/modules/modules.php:106 #: profile-builder-2.0/modules/modules.php:113 #: profile-builder-2.0/modules/modules.php:120 msgid "Inactive" msgstr "inaktiv" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:96 msgid "Admin Email Customizer" msgstr "Anpassen der Admin-E-Mails" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:103 msgid "User Email Customizer" msgstr "Anpassen der Benutzer-E-Mails" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253 msgid "Save" msgstr "Speichern" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "Weiterleitung" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "URL" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save." msgstr "Diese Einstellungen werden auch auf der \"Benutzer E-Mail Kustomisierung\" Einstellungs-Seite beim Speichern repliziert." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41 msgid "From (name)" msgstr "Von (Name)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49 msgid "From (reply-to email)" msgstr "Von (Antwort auf E-Mail)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57 msgid "Common Settings" msgstr "Allgemeine Einstellungen" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" msgstr "" "\n" "

            Neue Abonnenten für {{site_name}}.

            \n" "

            Benutzername:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274 msgid "Email Subject" msgstr "E-Mail Betreff" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84 msgid "Default Registration & Registration with Email Confirmation" msgstr "Standard-Anmeldung & Anmeldung mit E-Mail-Bestätigung" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log in!

            \n" msgstr "" "\n" "

            Neue Abonnenten für {{site_name}}.

            \n" "

            Benutzername: {{username}}

            \n" "

            E-Mail :{{user_email}}

            \n" "

            Die Admin Genehmigung Feature wurde zum Zeitpunkt der Registrierung aktiviert.\n" "Also bitte denken Sie daran, dass dieser Benutzer genehmigt sein muss, bevor er sich anmelden kann !

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143 msgid "Registration with Admin Approval" msgstr "Anmeldung über Admin-Freischaltung" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "Verfügbare Tags" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170 msgid "User Meta" msgstr "Benutzer-Meta" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "Webseite-URL" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "Webseite Name" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25 #: profile-builder-2.0/modules/user-listing/userlisting.php:158 msgid "User Id" msgstr "Benutzer-Id" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33 msgid "Reply To" msgstr "Antworten auf" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40 msgid "Activation Key" msgstr "Aktivierungsschlüssel" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41 msgid "Activation Url" msgstr "Aktivierungs-Url" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42 msgid "Activation Link" msgstr "Aktivierungs-Link" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" msgstr "" "\n" "

            Willkommen bei {{Site_name}}!

            Ihr Benutzername ist: {{Username}} und das Passwort ist: {{Passwort}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85 msgid "Default Registration" msgstr "Standard-Anmeldung" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91 msgid "" "\n" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials.

            \n" msgstr "" "\n" "

            Bitte klicke auf den folgenden Link, um dein Benutzerkonto zu aktivieren:
            \n" "{{{activation_link}}}

            \n" "

            Nach der Aktivierung erhälst du eine weitere E-Mail mit deinen Anmeldeinformationen.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103 msgid "[{{site_name}}] Activate {{username}}" msgstr "[{{site_name}}] Aktivieren {{username}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114 msgid "Registration with Email Confirmation" msgstr "Registrierung mit E-Mail-Bestätigung" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n" msgstr "" "\n" "

            Willkommen bei {{site_name}}!

            \n" "

            Ihr Benutzername ist: {{username}} und das Kennwort: {{password}}

            \n" "

            Bevor Sie in Ihr Konto zugreifen können, muss ein Administrator diesen Benutzer freischalten. Sie werden per E-Mail benachrichtigt, sobald dies passiert ist.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132 msgid "A new account has been created for you on {{site_name}}" msgstr "Ein neues Konto wurde für Sie auf {{Site_name}} erstellt" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148 msgid "" "\n" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Herzlich Willkommen!

            \n" "

            Der Administrator hat Ihr Konto freigeschaltet: {{username}} auf {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159 msgid "Your account on {{site_name}} has been approved!" msgstr "Ihr Benutzerkonto auf {{site_name}} wurde freigeschaltet!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170 msgid "User Approval Notification" msgstr "Benutzer Genehmigungsbenachrichtigung" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175 msgid "" "\n" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Lieber Benutzer,

            \n" "

            leider hat der Administrator Ihrem Konto soeben die Freigabe entzogen: {{username}} auf {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187 msgid "Your account on {{site_name}} has been unapproved!" msgstr "Ihr Benutzerkonto auf {{site_name}} wurde nicht freigeschaltet!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198 msgid "Unapproved User Notification" msgstr "Nicht genehmigte Benutzerbenachrichtigung" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "Profil-Bearbeiten Formular" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13 #: profile-builder-2.0/modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "Neu hinzufügen" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "Neues Profil-Bearbeiten Formular hinzufügen" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "Profil-Bearbeiten Formular bearbeiten" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "Neues Profil-Bearbeiten Formular" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "Profil-Bearbeiten Formular" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "Das Profil-Bearbeiten Formular anzeigen" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "Suchen Sie nach Profil Bearbeitungs-Formulare" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "Kein Profil Bearbeitungs-Formular wurde gefunden" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "Keine Profil-bearbeitungs Formulare wurden im Papierkorb gefunden" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138 #: profile-builder-2.0/modules/user-listing/userlisting.php:2115 msgid "Shortcode" msgstr "Shortcode" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159 #: profile-builder-2.0/modules/user-listing/userlisting.php:2136 msgid "(no title)" msgstr "(kein Titel)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178 #: profile-builder-2.0/modules/user-listing/userlisting.php:2156 msgid "The shortcode will be available after you publish this form." msgstr "Der Shortcode wird verfügbar sein, nachdem Sie dieses Formular veröffentlichen." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180 #: profile-builder-2.0/modules/user-listing/userlisting.php:2158 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "Verwenden Sie diesen Shortcode auf der Seite, wo das Formular angezeigt werden soll." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184 #: profile-builder-2.0/modules/user-listing/userlisting.php:2162 msgid "Note: changing the form title also changes the shortcode!" msgstr "Hinweis: die Änderung des Formulartitels ändert auch den Shortcode!" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190 #: profile-builder-2.0/modules/user-listing/userlisting.php:2195 msgid "Form Shortcode" msgstr "Formular-Shortcode" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "Ob der Benutzer zu einer bestimmten Seite umgeleitet werden soll oder nicht" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "Meldungen anzeigen" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "Erlaubte Zeit (in Sekunden) um Erfolgsmeldungen anzuzeigen" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 msgid "Specify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.com" msgstr "Geben Sie die URL der Seite ein, zu der die Benutzer umgeleitet werden sollten, sobald sie ihr Profil mit diesem Formular aktualisiert haben
            verwenden Sie folgendes Format: http://www.meineWebseite.com" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "Nach Profil-Änderung..." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "Neues Feld zur Liste hinzufügen" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage Title (Type)" msgstr "
            Titel (Type)
            " #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "Sie müssen dem Formular einen Titel geben, bevor Sie es anlegen können." #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "Registrierungsformular" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "Neues Registrierungsformular hinzufügen" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "Anmeldeformulare bearbeiten" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "Neues Registrierungsformular" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "Registrierungsformulare" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "Registrierungsformular ansehen" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "Registrierungsformulare durchsuchen" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "Kein Registrierungsformular gefunden" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "Keine Registrierungsformulare wurden im Papierkorb gefunden" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "Standardrolle" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "Rolle einstellen" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Choose what role the user will have after (s)he registered
            If not specified, defaults to the role set in the WordPress settings" msgstr "Wähle aus, welche Rolle ein Benutzer haben sollte, nachdem er sich registriert hat.
            Falls nicht angegeben, wird standardmäßig die Rolle aus den WordPress-Einstellungen gesetzt. " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "Automatisch einloggen" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Whether to automatically log in the newly registered user or not
            Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work" msgstr "Ob man sich direkt automatisch als den neu registrierten Benutzer anmelden soll oder nicht.
            Funktioniert nur auf einzelnen Seiten ohne dass die Features \"Admin Approval\" und \"E-Mail-Bestätigung\" aktiviert sind.
            Achtung: Caching des Registrierungsformulars bricht die automatische Anmeldung." #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "Specify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.com" msgstr "Gib die URL der Seite ein, auf der die Benutzer nach der Registrierung mit diesem Formular umgeleitet werden sollen.
            Verwende dabei folgendes Format: http://www.meineseite.com" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "Nach der Registrierung..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1038 #: profile-builder-2.0/modules/user-listing/userlisting.php:1485 #: profile-builder-2.0/modules/user-listing/userlisting.php:1953 #: profile-builder-2.0/modules/user-listing/userlisting.php:2426 msgid "Search Users by All Fields" msgstr "Suche Benutzer über alle Felder" #: profile-builder-2.0/modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "Neue Benutzerliste hinzufügen" #: profile-builder-2.0/modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "Benutzerliste bearbeiten" #: profile-builder-2.0/modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "Neue Benutzerliste" #: profile-builder-2.0/modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "Benutzerliste anzeigen" #: profile-builder-2.0/modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "Benutzerliste durchsuchen" #: profile-builder-2.0/modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "Keine Benutzereinträge gefunden" #: profile-builder-2.0/modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "Keine Benutzerliste im Papierkorb gefunden" #: profile-builder-2.0/modules/user-listing/userlisting.php:105 msgid "Display name as" msgstr "Name anzeigen als" #: profile-builder-2.0/modules/user-listing/userlisting.php:150 #: profile-builder-2.0/modules/user-listing/userlisting.php:2223 msgid "Registration Date" msgstr "Registrierungsdatum" #: profile-builder-2.0/modules/user-listing/userlisting.php:151 #: profile-builder-2.0/modules/user-listing/userlisting.php:2228 msgid "Number of Posts" msgstr "Beitragsanzahl" #: profile-builder-2.0/modules/user-listing/userlisting.php:155 msgid "More Info" msgstr "Mehr Info" #: profile-builder-2.0/modules/user-listing/userlisting.php:156 msgid "More Info Url" msgstr "Url für weitere Informationen" #: profile-builder-2.0/modules/user-listing/userlisting.php:157 msgid "Avatar or Gravatar" msgstr "Profilbild oder Gravatar" #: profile-builder-2.0/modules/user-listing/userlisting.php:196 #: profile-builder-2.0/modules/user-listing/userlisting.php:227 msgid "Extra Functions" msgstr "Zusatzfunktionen" #: profile-builder-2.0/modules/user-listing/userlisting.php:199 msgid "Pagination" msgstr "Seitennummerierung" #: profile-builder-2.0/modules/user-listing/userlisting.php:200 msgid "Search all Fields" msgstr "Alle Felder durchsuchen" #: profile-builder-2.0/modules/user-listing/userlisting.php:229 msgid "Go Back Link" msgstr "\"Zurück\"-Link" #: profile-builder-2.0/modules/user-listing/userlisting.php:247 msgid "All-userlisting Template" msgstr "Vorlage für globale Benutzerliste" #: profile-builder-2.0/modules/user-listing/userlisting.php:250 msgid "Single-userlisting Template" msgstr "Vorlage für Einzelbenutzerliste" #: profile-builder-2.0/modules/user-listing/userlisting.php:733 msgid "First/Lastname" msgstr "Vor- / Nachname" #: profile-builder-2.0/modules/user-listing/userlisting.php:281 #: profile-builder-2.0/modules/user-listing/userlisting.php:739 msgid "Sign-up Date" msgstr "Anmeldungsdatum" #: profile-builder-2.0/modules/user-listing/userlisting.php:748 #: profile-builder-2.0/modules/user-listing/userlisting.php:2226 msgid "Display Name" msgstr "Anzeigename" #: profile-builder-2.0/modules/user-listing/userlisting.php:280 #: profile-builder-2.0/modules/user-listing/userlisting.php:757 msgid "Posts" msgstr "Beiträge" #: profile-builder-2.0/modules/user-listing/userlisting.php:760 #: profile-builder-2.0/modules/user-listing/userlisting.php:2233 msgid "Aim" msgstr "Aim" #: profile-builder-2.0/modules/user-listing/userlisting.php:763 #: profile-builder-2.0/modules/user-listing/userlisting.php:2234 msgid "Yim" msgstr "Yim" #: profile-builder-2.0/modules/user-listing/userlisting.php:766 #: profile-builder-2.0/modules/user-listing/userlisting.php:2235 msgid "Jabber" msgstr "Jabber" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "Click here to see more information about this user" msgstr "Klicke hier für weitere Informationen über diesen Benutzer" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "More..." msgstr "Mehr..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1293 msgid "Click here to see more information about this user." msgstr "Klicke hier für weitere Informationen über diesen Benutzer " #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 #: profile-builder-2.0/modules/user-listing/userlisting.php:1442 msgid "Click here to go back" msgstr "Klicke hier, um zurück zu gehen" #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 msgid "Back" msgstr "Zurück" #: profile-builder-2.0/modules/user-listing/userlisting.php:1472 msgid "«« First" msgstr "«« Anfang" #: profile-builder-2.0/modules/user-listing/userlisting.php:1473 msgid "« Prev" msgstr "« Zurück" #: profile-builder-2.0/modules/user-listing/userlisting.php:1474 msgid "Next » " msgstr "Nächste Seite » " #: profile-builder-2.0/modules/user-listing/userlisting.php:1475 msgid "Last »»" msgstr "Ende »»" #: profile-builder-2.0/modules/user-listing/userlisting.php:1504 msgid "You don't have any pagination settings on this userlisting!" msgstr "Sie haben keine Paginations-Einstellungen für diese Benutzerliste getätigt!" #: profile-builder-2.0/modules/user-listing/userlisting.php:1970 msgid "Search" msgstr "Suchen" #: profile-builder-2.0/modules/user-listing/userlisting.php:1971 msgid "Clear Results" msgstr "Ergebnisse löschen" #: profile-builder-2.0/modules/user-listing/userlisting.php:2165 #: profile-builder-2.0/modules/user-listing/userlisting.php:2169 msgid "Extra shortcode parameters" msgstr "Zusätzliche Shortcode-Parameter" #: profile-builder-2.0/modules/user-listing/userlisting.php:2172 msgid "displays users having a certain meta-value within a certain (extra) meta-field" msgstr "Anzeige von Benutzer die einen bestimmten Meta-Wert innerhalb eines bestimmten (extra) Meta-Feld haben" #: profile-builder-2.0/modules/user-listing/userlisting.php:2173 msgid "Example:" msgstr "Beispiel:" #: profile-builder-2.0/modules/user-listing/userlisting.php:2175 msgid "Remember though, that the field-value combination must exist in the database." msgstr "Denke daran, dass die Feld-Wert Kombination in der Datenbank vorhanden sein muss." #: profile-builder-2.0/modules/user-listing/userlisting.php:2250 msgid "Random (very slow on large databases > 10K user)" msgstr "Zufällig (sehr langsam bei großen Datenbanken > 10K Benutzer)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Roles to Display" msgstr "Rollen anzeigen" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Restrict the userlisting to these selected roles only
            If not specified, defaults to all existing roles" msgstr "Beschränken Sie die Benutzerlisten nur für diese ausgewählten Rollen
            Wenn nicht angegeben, wird standardmäßig auf allen vorhandenen Rollen die Beschränkung gesetzt" #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Number of Users/Page" msgstr "Anzahl Benutzer/Seite" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Default Sorting Criteria" msgstr "Standard-Sortierkriterien" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Set the default sorting criteria
            This can temporarily be changed for each new session" msgstr "Festlegen der Standard-Sortierungskriterien
            Sie können temporär für jede neue Sitzung geändert werden." #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Default Sorting Order" msgstr "Standard-Sortierreihenfolge" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Set the default sorting order
            This can temporarily be changed for each new session" msgstr "Festlegen der standard Sortierungskriterien
            Dieses kann temporär für jede neue Sitzung geändert werden" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Avatar Size (All-userlisting)" msgstr "Profilbild-Größe (alle Benutzereinträge)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Set the avatar size on the all-userlisting only" msgstr "Legen Sie die Profilbildgröße für alle Benutzer-Listen fest." #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Avatar Size (Single-userlisting)" msgstr "Profilbild-Größe (Einzel-Benutzeranzeige)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Set the avatar size on the single-userlisting only" msgstr "Setzen Sie die Profilbild-Größe (nur für die Einzel-Benutzeranzeige)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Visible only to logged in users?" msgstr "Nur für angemeldete Benutzer sichtbar?" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "The userlisting will only be visible only to the logged in users" msgstr "Die Benutzeranzeigen werden nur für die angemeldeten Benutzer sichtbar sein" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "Visible to following Roles" msgstr "Für folgende Rollen sichtbar" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "The userlisting will only be visible to the following roles" msgstr " Die Benutzeranzeige wird nur für folgende Rollen sichtbar sein." #: profile-builder-2.0/modules/user-listing/userlisting.php:2275 msgid "Userlisting Settings" msgstr "Einstellungen für Benutzerliste" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "Sie müssen die Benutzerlisten-Funktion innerhalb des Tabs \"Module\" aktivieren!" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You can find it in the Profile Builder menu." msgstr "Sie finden es im Menü vom Profile Builder" #: profile-builder-2.0/modules/user-listing/userlisting.php:2565 msgid "No results found!" msgstr "Es wurden keine Ergebnisse gefunden!"translation/profile-builder-zh_TW.mo000066600000143120152141651170013564 0ustar00l,,l,y*-c-.c.A/B0;0+1;1W1q1"1 1e1 $212 H2 S2`22u2 2-22d2Y^3c3!47>4'v4495=5L5[5k5z5 555555556!646 K6W6o6$666 666 6(6707L7L7)8B89\88?8A8'9/969 ?9J9^9d9l9 u999 99999 99 9 :#: 6:A:F:N: V:a:j:k|::io;;;;;;;<<!<A<X<o< x<<<<<< < <<<<= ==(=A=,F=s=|==7==D> U>c>2y>3> >>>? ? ?*? 2? ??J?a?p?x?}??)??? ? ???@@&@;;@ w@@@ @@@@A A3A ;AGAPA aAnA~AAA/A.A1B@BIB\BcBiB pB{BC#C (C5CQCmCCCCC CsC=DCDVD gD!uDDDOD?EQEeFWnFFFFFbFTG ]GjGyGG>GGG HrHHH HHHH HH HH?ITIcI jIxII IIIIIIIIJJ4J :J DJQJ XJbJ jJuJ zJJJ JJJ!JIJK K )K3K;K>KFKKK KKK LLL#L +L7L>L DLPLWLlLtLzLL LL&M,M5MIPX `k tPnҋWA ŌҌ!ڌ  )7>]t{  ʍٍ' )/+5Ua ȎՎ*- AO Xem   Ϗ׏܏+#* 9FV ] jw ! Ð֐   0QY` g t !!֑!# 6C J T_! .ATdw K  !(J]Ap7Vx6ϕ (E1 w H "l0 *×  3+ _l sژ  !: @ JW ^h p{  !9י !+3:hB š֚ $ *6=RZ`g nzy #(>ELS[ck q  /Ɯ͜z$x  ȝ ҝ{ݝY`irw}  ž ͞מߞ  4JQY` i t   ۟    +9Rb u? Ԡޠ-I$b$šء  &0A'Fn uƢ Ϣ٢! ##jG ã3̣*^+$0 + KW ]=j  ƥӥ  , 9 FSl<¦ɦ٦ \z ǧԧ  > DO er y ̨  ,'ɩ * '8M`Dr f6q(ɫ  , 9 FS\eu}* G,T [yEub=   .8 ?KQ Xc l yİyZKu'B+,"X{7),Cbr0$س`^t'''ڴ*-F_'x*'˵B6$R?w!ж!! 6C S/]9Ƿ̷Էڷ  #*FVjqx  θ$ܸ9#N] ҹ ߹  " 8 ERelKE.DZp  Żͻ 2EW[Gbϼ$] #8Az^I2?-rs'0+#0O("8*"?MaDI4$~!0*!!@b-{-#; Q[0z:  0 F

            Good News!

            An administrator has just approved your account: {{username}} on {{site_name}}.

            Hello,

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            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!

            To activate your user, please click the following link:
            {{{activation_link}}}

            After you activate, you will receive another email with your credentials.

            * only available in the %1$sHobbyist and Pro versions%2$s. Serial Number:"Admin Approval" Activated:"Admin Approval" Feature:"Email Confirmation" Activated:"Email Confirmation" Landing Page:%1$s %2$d%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s%1$s of %2$s%s couldn't be deleted%s pending« Prev«« First(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(no title)** only available in the %1$sPro version%2$s.
            Title (Type)
            Title
            Type
            Meta Name
            Required
            Note: changing the form title also changes the shortcode!ERROR: Your account has to be confirmed by an administrator before you can log in.Profile Builder A new account has been created for you on {{site_name}}A new subscriber has (been) registered!A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be editedAIMAbout YourselfActivation KeyActivation LinkActivation UrlActiveAdd FieldAdd NewAdd New Field to the ListAdd UserAdd new Edit-profile FormAdd new Registration FormAdd new User ListingAdmin ApprovalAdmin Approval (*)Admin Bar SettingsAdmin Email CustomizerAfghanistanAfter Profile Update...After Registration...After login redirect URL (optional):Agree To Terms CheckboxAimAland IslandsAlbaniaAlgeriaAll UsersAll users have been successfully deletedAll-userlisting TemplateAllow Users to Log in With:Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.Allow users to log in with their email or username when accessing your site.Allowed Image ExtensionsAllowed Upload ExtensionsAllowed time to display any success messages (in seconds)American SamoaAn administrator has just approved your account on %1$s (%2$s).An administrator has just unapproved your account on %1$s (%2$s).AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApplyApproveApprovedArgentinaArmeniaArubaAustraliaAustriaAutomatically Log InAvailable TagsAvatarAvatar SizeAvatar Size (All-userlisting)Avatar Size (Single-userlisting)Avatar UploadAvatar or GravatarAzerbaijanBackBahamasBahrainBangladeshBarbadosBasic InformationBefore you can access your account %1s, an administrator has to approve it. You will be notified via email.Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.Before you can access your account, an administrator needs to approve it. You will be notified via email.BelarusBelgiumBelizeBeninBermudaBhutanBiographical InfoBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBoth fields are empty.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaBulk ActionsBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadCheck your e-mail for the confirmation link.CheckboxChileChinaChoose one of the supported fields you manage
            If not specified, defaults to 100Enter the minimum characters the password should have. Leave empty for no minimum limitEquatorial GuineaEritreaEstoniaEthiopiaEverything you will need to manage your users is probably already available using the Pro Modules.Example:Excerpt ViewExisting PagesExtra FeaturesExtra FunctionsExtra Profile Fields are available in Hobbyist or PRO versionsExtra shortcode parametersFalkland IslandsFaroe IslandsFeatures that give you more control over your users, increased security and help you fight user registration spam.FieldField PropertiesField TitleFijiFind out more about PRO ModulesFinlandFirst NameFirst/LastnameFirstnameFor Modern User InteractionFor security reasons, you must pass the remote ip to reCAPTCHA!Form ShortcodeFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesFrom (name)From (reply-to email)GabonGambiaGeneral SettingsGeneric UploadsGeorgiaGermanyGet New PasswordGet started with extra fieldsGhanaGibraltarGo Back LinkGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald IslandsHere you can activate / deactivate available modules for Profile Builder.HideHondurasHong KongHungaryIDIcelandIf you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.InactiveIndiaIndonesiaInput / Hidden InputInvalid activation key!Invalid key!IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanKeep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.KenyaKiribatiKosovoKuwaitKyrgyzstanLabelsLaosLast »»Last NameLastnameLatviaLebanonLesothoLiberiaLibyaLiechtensteinList ViewLithuaniaLoad Profile Builder's own CSS file in the front-end:Log outLog out of this accountLog out of this account.LoginLogin 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 )Login with Email or UsernameLogoutLost your passwordLuxembourgMacaoMacedoniaMadagascarMake sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.MalawiMalaysiaMaldivesMaliMaltaManage Default and Extra FieldsManage FieldsMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMediumMeta-nameMexicoMicronesiaMinimum Password Length and Strength MeterMinimum Password Length:Minimum Password Strength:ModulesMoldovaMonacoMongoliaMontenegroMontserratMore InfoMore Info UrlMore...MoroccoMozambiqueMultiple Edit-profile FormsMultiple Registration FormsMyanmarNameName/DescriptionNamibiaNauruNepalNetherlandsNew CaledoniaNew Edit-profile FormNew Registration FormNew User ListingNew ZealandNew subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            Next » NicaraguaNicknameNigerNigeriaNiueNoNo Edit-profile Form foundNo Edit-profile Forms found in trashNo Registration Form foundNo Registration Forms found in trashNo User Listing foundNo User Listing found in trashNo items found.No results found!Norfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNumber of PostsNumber of Users/PageOmanOnly an administrator can add new users.OptionsOverwrite ExistingPaginationPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayPasswordPassword Lost and Found.Password Recovery page URL (optional):Password Reset from "%1$s"Password Successfully Reset for %1$s on "%2$s"Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.PeruPhilippinesPitcairnPlease check that you entered the correct email address.Please check that you entered the correct username.Please choose a different field type as this one already exists in your form (must be unique) Please enter a value for the required field Please enter your username or email address.Please try a different one!PolandPortugalPostsPowerful Modules (**)Profile Builder Login WidgetPuerto RicoQatarRadio ButtonsRandom (very slow on large databases > 10K user)Recover PasswordRedirectRegisterRegister VersionRegister Your VersionRegister page URL (optional):RegisteredRegistrationRegistration & Edit ProfileRegistration DateRegistration FormRegistration FormsRegistration with Admin ApprovalRegistration with Email ConfirmationRemember though, that the field-value combination must exist in the database.RemoveRepeat PasswordReply ToRepublic of the CongoRequiredResend Activation EmailReset PasswordRestrict the userlisting to these selected roles only
            If not specified, defaults to all existing rolesReunionRoleRoles to DisplayRomaniaRow CountRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaveSave ChangesSave SettingsSearchSearch Users by All FieldsSearch all FieldsSearch the Edit-profile FormsSearch the Registration FormsSearch the User ListingSelectSelect AllSelect FileSelecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name
            Use this at your own riskSend these credentials via email.SenegalSerbiaSet RoleSet the avatar size on the all-userlisting onlySet the avatar size on the single-userlisting onlySet the default sorting criteria
            This can temporarily be changed for each new sessionSet the default sorting order
            This can temporarily be changed for each new sessionSet up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.SeychellesShare a little biographical information to fill out your profile. This may be shown publicly.ShortcodeShowShow all datesShow/Hide the Admin Bar on the Front-EndSierra LeoneSign-up DateSingaporeSingle-userlisting TemplateSint MaartenSite NameSite UrlSlovakiaSloveniaSolomon IslandsSomaliaSomeone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$sSorry, but you don't have permission to do that!South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.comSpecify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.comSpecify the number of rows for a 'Textarea' field
            If not specified, defaults to 5Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)Specify the option which should be selected by defaultSpecify 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.Sri LankaStatusStrength indicatorStrongSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaTerms of AgreementTextareaThailandThat field is already added in this form That meta-name is already in use That username is already activated!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!The account %1s has been successfully created!The best way to add front-end registration, edit profile and login forms.The email address entered wasn't found in the database!The email you entered is not a valid email address.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical The entered passwords don't match!The entered row number is not numerical The entered value for the Datepicker is not a valid date-format The following option did not coincide with the ones in the options list: %s The following option(s) did not coincide with the ones in the options list: %s The password you entered is incorrect.The passwords do not matchThe selected user couldn't be deletedThe selected users have been activatedThe selected users have had their activation emails resentThe serial number couldn't be validated because it expired!The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!The serial number entered couldn't be validated!The serial number was successfully validated!The shortcode will be available after you publish this form.The userlisting will only be visible only to the logged in usersThe userlisting will only be visible to the following rolesThe username entered wasn't found in the database!The usernames cannot be changed.There was an error in the submitted formThere was an error performing that action!There was an error while trying to activate the userThere was an error while trying to activate the user.There was an error while trying to send the activation link to %1$s!These settings are also replicated in the "User Email Customizer" settings-page upon save.This email is already in use.This email is already reserved to be used soon.This login widget lets you add a login form in the sidebar.This username already exists.This username is already activated!This username is already reserved to be used soon.This username is now active!Timezone SelectTitle of the fieldTitle:To use reCAPTCHA you must get an API key fromTo use reCAPTCHA you must get an API public key from:TogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluType your password again. Type your password.U.S. Virgin IslandsURLUgandaUkraineUnapproveUnapprovedUnapproved User NotificationUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUpdateUpload UruguayUse these shortcodes on the pages you want the forms to be displayed:Use this shortcode on the page you want the form to be displayed:User Approval NotificationUser Email CustomizerUser IdUser ListingUser MetaUser successfully approved!User successfully deleted!User successfully unapproved!User-RoleUser-statusUserlisting SettingsUsernameUsername or E-mailUsernames cannot be changed.Users can register themselves or you can manually create users here.Users cannot currently register themselves, but you can manually create users here.Users successfully approved!Users successfully deleted!Users successfully unapproved!Users with Unconfirmed Email AddressUzbekistanVanuatuVaticanVenezuelaVersion %sVery weakVietnamView the Edit-profile FormView the Registration FormView the User ListingVisibilityVisible only to logged in users?Visible to following RolesWallis and FutunaWeakWebsiteWelcome to %1$s!


            Your username is:%2$s and password:%3$sWestern SaharaWhether the field is required or notWhether to automatically log in the newly registered user or not
            Only works on single-sites without "Admin Approval" and "Email Confirmation" features activated
            WARNING: Caching the registration form will make automatic login not workWhether to redirect the user to a specific page or notWith Extra Profile Fields you can create the exact registration form your project needs.Yahoo IMYemenYesYimYou are currently logged in as %1$s. %2$sYou are currently logged in as %1s. You don't need another account. %2sYou can add the information for the %s after you add a entryYou can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.You can find it in the Profile Builder menu.You can find the default file here: %1$sYou decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.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.You don't have any pagination settings on this userlisting!You either don't have permission for that action or there was an error!You have successfully reset your password to: %1$sYou must be logged in to edit your profile.You must enter a value for the date-format You must enter a value for the row number You must select a field You need to activate the Userlisting feature from within the "Modules" tab!You need to specify the title of the form before creating itYou will receive a link to create a new password via email.You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$sYour account has to be confirmed by an administrator before you can use the "Password Recovery" feature.Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.Your account on %1$s has been approved!Your account on %1$s has been unapproved!Your account on {{site_name}} has been approved!Your account on {{site_name}} has been unapproved!Your email was successfully confirmed.Your password has been successfully changed!Your profile has been successfully updated!Your session has expired! Please refresh the page and try againYour session has expired! Please refresh the page and try again.ZambiaZimbabwe[%1$s] Activate %2$s[%1$s] Your new account information[{{site_name}}] Activate {{username}}approve this user?approvedconfirm this email yourself?delete this user from the _signups table?delete this user?displays users having a certain meta-value within a certain (extra) meta-fieldherereCAPTCHArequiredresend the activation link?unapprove this user?unapprovedPO-Revision-Date: 2015-09-29 11:54:28+0000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; X-Generator: GlotPress/0.1 Project-Id-Version: Profile Builder

            好消息 !

            管理員已經批準您的帳號: {{username}} 在 {{site_name}}.

            您好,

            抱歉,管理員未批準您的帳號: {{username}} 在 {{site_name}}.

            歡迎來到 {{site_name}}!

            您的用戶名是:{{username}} 密碼是:{{password}}

            歡迎來到 {{site_name}}!

            您的用戶名:{{username}} 密碼:{{password}}

            在您訪問您的帳號前,需要管理審批。您將會收郵件通知。

            新用戶在 {{site_name}}.

            用戶名:{{username}}

            郵箱:{{user_email}}

            新用戶在 {{site_name}}.

            用戶名:{{username}}

            郵箱:{{user_email}}

            管理審核功能已被激活, 請記住,您需要批準這個用戶,他才能登陸!

            激活您的帳戶,請點擊下面連接:
            {{{activation_link}}}

            在您激活完成後,將會收到另外壹封憑據郵件。

            * 僅獲得在 %1$sHobbyist 與專業版本 %2$s.序號:"管理員審批" 激活:"管理員審批" 功能 :"郵件確認" 激活:"郵件確認" 登陸頁面:%1$s %2$d%1$s 請求通過密碼重置功能修改密碼。
            他的密碼是:%2$s%1$s 的 %2$s%s 不能刪除%s 等待中« 上壹頁«« 首頁(例如: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(沒有標題)** 僅激活在 %1$s專業版本 %2$s.
            標題 (類型)
            標題
            類型
            Meta Name
            必須
            註意: 改變表單標題也將改變簡碼!錯誤: 您的帳號需要管理員批準後才能登陸使用。Profile Builder 壹個新的帳號在您的 {{site_name}} 上建立壹個新的用戶已經(被)註冊!壹個獨特的、為特定的字段自動生成ID
            如果需要可以使用過濾器調用這個目標
            不能編輯AIM關於您自己激活密鑰激活鏈接激活URL激活添加字段新增加添加新字段到列表所有用戶添加新的編輯資料表單增加新的註冊表單增加新的用戶列表管理員審批管理員審批 (*)管理員工具欄設置管理員郵件定制Afghanistan檔案更新後…註冊後…登錄後的重定向URL(可選):同意使用條款AimAland IslandsAlbaniaAlgeria所有用戶所有的用戶已成功刪除所有用戶列表模板允許用戶使用什麽登陸:允許不同的用戶角色去編輯他們的具體信息。設置多個編輯表單壹不同的作用字段。當用戶訪問您的網站時,允許用戶登錄他們的用戶名和電子郵件。允許的圖像擴展允許的上傳擴展允許用時間去顯示成功信息提示(秒)American Samoa管理員已經批準您在 %1$s (%2$s) 的帳號。管理員已拒絕您在 %1$s (%2$s) 的帳號。AndorraAngolaAnguillaAntarcticaAntigua and Barbuda應用允許已允許ArgentinaArmeniaArubaAustraliaAustria自動登錄可用標簽頭像頭像大小頭像大小(所有用戶列表)頭像大小(單用戶列表)頭像上傳頭像或 GravatarAzerbaijan返回BahamasBahrainBangladeshBarbados基本信息訪問您的帳號 %1s 前,需要管理員審批通過。您將收到郵件。訪問您的帳號 %1s 前,您需要確認您的郵箱地址。請檢查您的郵箱並點擊激活連接。需要管理員審核通過才能訪問您的帳戶。您將收到壹封電子郵件。BelarusBelgiumBelizeBeninBermudaBhutan個人說明BoliviaBonaire, Saint Eustatius and SabaBosnia and Herzegovina字段均空BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgaria批量動作Burkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChad檢查妳的郵件中的確認鏈接。復選框ChileChina選擇壹個支持字段去管理
            如果沒指定,默認是100輸入密碼必須最少字符。留空為沒有限制Equatorial GuineaEritreaEstoniaEthiopia使用壹切妳需要的工具,用於管理妳的用戶的模塊。例子:摘錄查看現有頁面額外字段額外功能額外個人資料字段需要激活 Hobbyist 或者 PRO 版本才可用額外簡碼參數Falkland IslandsFaroe Islands特性,讓您對您的用戶更多的控制,增強安全性,幫助用戶註冊與限制垃圾郵件。字段字段屬性字段標題Fiji了解關於專業版模塊的更多內容Finland名字名字/姓氏名子新穎的用戶交互。安全原因,您必須通過遠程IP到reCAPTCHA!表單簡碼FranceFrench GuianaFrench PolynesiaFrench Southern Territories來自(名子)來自(回復郵件)GabonGambia常規設置常規上傳GeorgiaGermany獲取新密碼開始使用額外字段GhanaGibraltar返回鏈接GreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald Islands在這裏妳可以激活/停用 Profile Builder 模塊。隱藏HondurasHong KongHungary編號Iceland如果您註冊這個版本的 Profile Builder ,您將收到有關升級,補丁,和技術支持。關閉IndiaIndonesia輸入/隱藏輸入無效的激活密鑰!無效密鑰!IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstan讓妳的用戶離開 WordPress 儀表盤,重定向到他們的前端頁面,登錄註冊壹切都只需幾個點擊。KenyaKiribatiKosovoKuwaitKyrgyzstan標簽Laos最後 »»姓氏姓氏LatviaLebanonLesothoLiberiaLibyaLiechtenstein列表查看Lithuania在前端載入 Profile Builder 的CSS文件:退出退出這個帳戶退出這個帳號。登陸登錄允許使用電子郵件。這字段不會顯示在前端! ( 妳可以改變這些設置,在 "%s" 選項卡中 )通過電子郵件或用戶名登錄退出忘記您的密碼LuxembourgMacaoMacedoniaMadagascar確保用戶註冊是使用真實的電子郵件。註冊用戶將收到壹個通知,確認他們的電子郵件地址。MalawiMalaysiaMaldivesMaliMalta管理默認與額外字段管理字段Marshall IslandsMartiniqueMauritaniaMauritiusMayotte中Meta-nameMexicoMicronesia最小密碼長度和強度表最小密碼長度:最小密碼強度:模塊MoldovaMonacoMongoliaMontenegroMontserrat更多信息更多信息網址更多...MoroccoMozambique多個編輯個人資料形式多個註冊形式Myanmar姓名名稱/描述NamibiaNauruNepalNetherlandsNew Caledonia新的編輯資料表單新註冊表單新的用戶列表New Zealand新用戶在 %1$s.

            用戶名:%2$s
            郵箱:%3$s
            下壹頁 » Nicaragua昵稱NigerNigeriaNiue不沒有編輯個人資料表單在回收站中沒有編輯個人資料表單沒有找到註冊表單在回收站沒有找到註冊表單沒有找到用戶列表沒有在回收站找到用戶列表找不到項目。無任何結果!Norfolk IslandNorth KoreaNorthern Mariana IslandsNorway帖子數用戶/頁面數Oman只有管理員可以添加新用戶。選項覆蓋現有分頁PakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguay新密碼密碼遺失。密碼恢復頁URL(可選):從 "%1$s" 密碼重置密碼成功重置 %1$s 在 "%2$s"個性化郵件發送到妳的用戶或管理員。註冊,電子郵件確認,管理員批準/拒絕。PeruPhilippinesPitcairn請檢查您輸入(正確)電子郵件地址。請檢查您已輸入正確的用戶名。請選擇壹個不同的字段類型,這個已經存在妳的表格(必須是唯壹的) 請為這個字段輸入所需的值請輸入您的用戶名或電子郵件地址。請嘗試壹個不同的!PolandPortugal帖子強大的模塊(**)Profile Builder 登陸小工具Puerto RicoQatar單選按鈕隨機 (在大於 10K 的用戶數據庫中將會很慢 )恢復密碼重定向註冊註冊版本註冊您的版本註冊頁面URL(可選):已註冊註冊註冊與編輯資料註冊日期註冊表單註冊表單註冊需管理員審批電子郵件確認註冊記住,該字段值的組合必須存在於數據庫中。移除重復新密碼回復Republic of the Congo必須發送激活郵件重置密碼限制用戶列表中的特定角色
            如果沒有指定,默認為全部現有的角色Reunion角色角色顯示:Romania行數RussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi Arabia保存保存更改保存設置搜索在所有字段中搜索用戶搜索所有字段搜索編輯資料表單搜索註冊表單搜索用戶列表選擇選擇所有選擇文件選擇“是”將增加字段到列表中,但將覆蓋在數據庫中具有相同名稱的任何其他領域的 meta-name
            使用需自己承擔風險通過電子郵件發送這些憑據。SenegalSerbia設置角色設置在所有用戶列表的頭像大小設置在單用戶列表的頭像大小設置默認的排序標準
            這可以暫時被每壹個新的會話更改設置默認排列順序
            這可以在每個新會話時被改變設置多個註冊表單為某些用戶角色不同的字段。獲取來自不同類型的用戶不同的信息。Seychelles分享關於您的壹些信息。可能會被公開。簡碼顯示顯示所有日期顯示/隱藏管理員工具欄在前端Sierra Leone註冊日期Singapore單用戶列表模板Sint Maarten網站名稱網站地址SlovakiaSloveniaSolomon IslandsSomalia有人要求以下帳號密碼進行重置: %1$s
            如果不是您自己的操作,請忽略。
            需要重置您的密碼的話,請點擊 :%2$s抱歉,您沒有相應的操作權限!South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpain指定用戶註冊頁面地址將被重定向
            使用下列格式: http://www.mysite.com指定頁面用於用戶壹旦更新他們的資料使用這個表單轉向
            使用這種格式: http://www.mysite.com指定 'Textarea' 字段的行數
            如果沒有指定,缺省為5指定選項默認是否勾選
            如果有多個值的選項,使用“,”分開(逗號)指定選項的默認選擇值指定供用戶確認郵件的轉向頁面。此頁面可不同於註冊頁面(s)並且可隨時改變。如果沒有指定,將顯示給用戶壹個簡單確認頁。Sri Lanka狀態強度指標強SudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzania協議條款文本框Thailand這個字段已經加入這個 meta-name 已在使用 用戶名已經被激活!管理員審批”的功能是註冊時激活,所以請記住,妳必須批準該用戶,他/她才能進行登錄!帳號 %1s 創建成功!最好的前端註冊、編輯個人資料與登陸表單的實現方式。郵箱地址無法在數據庫中找到您輸入的電子郵件不是壹個有效的電子郵件地址。輸入的頭像大小不是20與200之間 輸入的頭像大小不是數值 輸入的密碼不匹配!輸入的行數不是數值 日期選擇器輸入的值不是有效的日期格式 下列選項不符合的選項清單: %s 下列選項(s)不符合的選項清單: %s 妳輸入的密碼不正確。密碼不匹配所選用戶不能刪除所選的用戶已被激活所選用戶已經重新發送激活電子郵件序號無法驗證,因已過期!序號無法驗證,因為連接超時。這可能是由於服務器維護。請稍後再試!序號無法驗證!序號成功驗證!簡碼將在您發布表單後可用。用戶列表只有登錄用戶可見的用戶列表只允許以下角色可見輸入的用戶名不存在數據庫中!用戶名不可更改。在遞交表單時出錯執行操作時出錯!試圖激活用戶時出現壹個錯誤嘗試激活用戶時出現壹個錯誤。發送激活鏈接時出現錯誤 %1$s!這些設置也復制在"用戶郵件定制" 設置頁中保存。電子郵件已被使用。此郵箱地址已被保留使用。該登錄控件是允許您添加在側邊欄的登錄表單。用戶名已經存在。這個用戶名已經被激活!這個用戶名已經被保留。這個用戶名現在被激活!時區選擇字段的標題標題:使用 reCAPTCHA 妳必須獲得壹個API密鑰使用reCAPTCHA,妳必須得到壹個API公開密鑰:TogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvalu再輸入壹遍新密碼。重復新密碼U.S. Virgin Islands網址UgandaUkraine拒絕已拒絕被拒絕的用戶通知United Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying Islands更新個人資料上傳Uruguay使用這些簡碼在頁面中妳想要的形式顯示:使用這個簡碼在頁面上,將會獲得您想要的表單顯示效果:用戶批準通知用戶郵件定制用戶名稱用戶列表User Meta用戶成功批準!用戶成功刪除!用戶成功拒絕!用戶角色用戶狀態用戶列表設置姓名用戶或郵箱地址 用戶名不可更改。用戶可以註冊自己註冊,或您可以在這裏手動創建用戶。用戶無法自己註冊,但妳可以在這裏手動創建用戶。用戶成功批準!用戶成功刪除!用戶成功拒絕!沒經確認郵箱的用戶UzbekistanVanuatuVaticanVenezuela版本 %s非常弱Vietnam查看編輯資料表單查看註冊表單查看用戶列表可見只有登錄用戶可見的?以下角色可見Wallis and Futuna弱站點歡迎來到 %1$s!


            您的用戶名是:%2$s 密碼是:%3$sWestern Sahara該字段是否必須是否記錄用戶新註冊
            只使用於單網站,並且沒有開啟 "管理員審批" 與 "郵箱確認" 功能
            警告:緩存註冊表單會讓自動登錄不正常是否將用戶重定向到特定頁額外個人資料字段,根據您的項目需求妳可以創建精確的登註冊表單。雅虎通訊Yemen是Yim您當前登錄為 %1$s. %2$s您當前登陸為 %1s。您不需要其它帳號。 %2s您可以添加信息到 %s您可以找到還沒確認郵箱地址的列表 %1$s用戶 > 所有用戶 > 郵箱確認%2$s.您可以找到用戶在 %1$s用戶 > 所有用戶 > 管理員審批%2$s.妳可以在 Profile Builder 菜單中找到它。妳可以在這裏找到默認的文件: %1$s妳決定在妳的網站用戶是誰。從WordPress 界面通過電子郵件或批準的多個用戶獲得通知。您控制您的用戶在網站上的角色。獲得遊戲通知或者壹次性批量審批多用戶。啟用管理審批功能需要升級到 %1$sHobbyist 或者 專業版本%2$s。您不需在用戶列表中設置分頁妳沒有權限操作,或出現壹個錯誤!您已經成功地將密碼更改成:%1$s您必須在登陸狀態下編輯個人資料。您必須輸入壹個日期格式的值 您必須輸入壹個值的行數 妳必須選擇壹個字段 您需要激活用戶列表功能在 "模塊" 選項卡!妳需要在創建前指定表單的標題妳將收到壹封創建壹個新密碼連接的電子郵件。您很快將會自動重定向。如果妳看到這個頁面超過 %1$d 秒,請點擊 %2$s.%3$s您的帳號在管理員確認前可以使用 "密碼找回" 功能.您的帳戶需被管理員審批後才可使用 "密碼重置" 功能。您在 %1$s 的帳號成功通過!您在 %1$s 的帳號被拒絕!您在 {{site_name}} 的帳號已經被通過!您在 {{site_name}} 的帳號被拒絕!您的電子郵件已確認。您已經成功地更改密碼!個人資料已更新!您的會話已過期!請刷新頁面重試您的會話已過期!請刷新頁面重試ZambiaZimbabwe[%1$s] 激活 %2$s[%1$s] 您的新帳戶信息[{{site_name}}] 激活 {{username}}允許這個用戶?已批準確認自己的電子郵件?在 the _signups 表單中 刪除這個用戶?刪除這個用戶?顯示用戶在某壹(額外)元字段(meta-field)這裏reCAPTCHA必須重新發送激活鏈接?拒絕這個用戶?已拒絕translation/profile-builder-it_IT.po000066600000630646152141651170013562 0ustar00# Translation of Profile Builder in Italian # This file is distributed under the same license as the Profile Builder package. msgid "" msgstr "" "PO-Revision-Date: 2017-08-01 13:43:35+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: GlotPress/0.1\n" "Project-Id-Version: Profile Builder\n" #: profile-builder-2.0/admin/general-settings.php:154 msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s." msgstr "" #: profile-builder-2.0/admin/general-settings.php:146 msgid "\"Roles Editor\" Activated:" msgstr "" #: profile-builder-2.0/features/roles-editor/roles-editor.php:300 msgid "M j, Y @ G:i" msgstr "" #: profile-builder-2.0/front-end/recover.php:117 msgid "Please enter your email address." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yy" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244 msgid "Individual redirects defined in shortcodes; redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1217 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." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "" #: profile-builder-2.0/admin/register-version.php:251 msgid "

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            " msgstr "" #: profile-builder-2.0/admin/register-version.php:246 msgid "

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            " msgstr "" #: profile-builder-2.0/front-end/recover.php:159 msgid "You are already logged in. You can change your password on the edit profile form." msgstr "Sei già loggato. Puoi cambiare la tua password editando il form del tuo profilo." #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "L'url del tuo sito assomiglia a questo:
            " #: profile-builder-2.0/features/functions.php:909 msgid "

            You can visit your site at " msgstr "

            Puoi visitare il tuo sito da" #: profile-builder-2.0/features/functions.php:896 msgid "

            Also, you will be able to visit your site at " msgstr "

            Inoltre, potrai visitare il tuo sito da qui" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138 msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network." msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "Titolo del sito" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "Sì, vorrei creare un nuovo sito." #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36 #: profile-builder-2.0/modules/user-listing/userlisting.php:118 msgid "Blog URL" msgstr "URL del blog" #: profile-builder-2.0/admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:222 msgid "Blog Details" msgstr "Dettagli del blog" #: profile-builder-2.0/admin/pms-cross-promotion.php:239 msgid "Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579 msgid "Welcome to %1$s!


            Your username is:%2$s" msgstr "Benvenuto in %1$s!


            Il tuo nome utente: %2$s" #: profile-builder-2.0/modules/user-listing/userlisting.php:1320 msgid "View Map" msgstr "Vedi Mappa" #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267 #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367 #: pb-add-on-woocommerce/index.php:493 msgid "Address line 2" msgstr "Indirizzo 2" #: pb-add-on-woocommerce/index.php:256 msgid "Billing Fields" msgstr "Campi di Fatturazione" #: pb-add-on-woocommerce/index.php:256 msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "Seleziona quali campi di fatturazione di WooCommerce mostrare agli utenti (trascina per riordinare) e quali dovrebbero essere obbligatori " #: pb-add-on-woocommerce/index.php:257 msgid "Billing Fields Order" msgstr "Ordine Campi di Fatturazione" #: pb-add-on-woocommerce/index.php:257 msgid "Save the billing fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Billing Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Save the billing fields names" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Shipping Fields" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Shipping Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Save the shipping fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Shipping Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Save the shipping fields names" msgstr "" #: pb-add-on-woocommerce/index.php:305 msgid "Field Name" msgstr "" #: pb-add-on-woocommerce/index.php:369 msgid "Click to edit " msgstr "Clicca per modificare" #: pb-add-on-woocommerce/woo-checkout-field-support.php:368 msgid "is not a valid phone number." msgstr "Non è un numero di telefono valido" #: pb-add-on-woocommerce/woo-checkout-field-support.php:377 msgid "is not a number." msgstr "Non è un numero" #: pb-add-on-woocommerce/woo-checkout-field-support.php:382 msgid "must be a multiplier of " msgstr "Deve essere un multiplo di" #: pb-add-on-woocommerce/woo-checkout-field-support.php:387 msgid "must be a greater than or equal to " msgstr "Deve essere maggiore o uguale a" #: pb-add-on-woocommerce/woo-checkout-field-support.php:392 msgid "must be less than or equal to " msgstr "Deve essere minore o uguale a" #: profile-builder-2.0/admin/add-ons.php:103 msgid "Available in Hobbyist and Pro Versions" msgstr "Disponibile nella versione Hobbyist e Pro" #: profile-builder-2.0/admin/add-ons.php:105 msgid "Available in All Versions" msgstr "Disponibile in tutte le versioni" #: profile-builder-2.0/admin/add-ons.php:148 msgid "Learn More" msgstr "Scopri di più" #: profile-builder-2.0/admin/basic-info.php:99 msgid "Timepicker" msgstr "" #: profile-builder-2.0/admin/basic-info.php:100 msgid "Colorpicker" msgstr "" #: profile-builder-2.0/admin/basic-info.php:103 msgid "Currency Select" msgstr "" #: profile-builder-2.0/admin/basic-info.php:109 msgid "Number" msgstr "" #: profile-builder-2.0/admin/basic-info.php:114 msgid "Validation" msgstr "" #: profile-builder-2.0/admin/basic-info.php:115 msgid "Map" msgstr "Mappa" #: profile-builder-2.0/admin/basic-info.php:116 msgid "HTML" msgstr "HTML" #: profile-builder-2.0/admin/basic-info.php:162 #: profile-builder-2.0/modules/modules.php:117 msgid "Repeater Fields" msgstr "" #: profile-builder-2.0/admin/basic-info.php:163 msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role." msgstr "" #: profile-builder-2.0/admin/general-settings.php:59 msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Show Currency Symbol" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Whether the currency symbol should be displayed after the currency name in the select option." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Show Post Type" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Posts from what post type will be displayed in the select." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:145 msgid "Allowable Values" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:145 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." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Error Message" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Set a custom error message that will be displayed to the user." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Time Format" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Specify the time format." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Google Maps API Key" msgstr "Google Maps API Key" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Enter your Google Maps API key (
            Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "Default Latitude" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "The latitude at which the map should be displayed when no pins are attached." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "Default Longitude" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "The longitude at which the map should be displayed when no pins are attached." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Default Zoom Level" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "Map Height" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "The height of the map." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "HTML Content" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "Add your HTML (or text) content" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Phone Format" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces." msgstr "Puoi usare: # per i numeri, parentesi (), segno -, segno +. punto . e spazi." #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Eg. (###) ###-####" msgstr "Es. (###) ###-####" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Empty field won't check for correct phone number." msgstr "Il campo lasciato vuoto non verrà controllato " #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Heading Tag" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Change heading field size on front-end forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min Number Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Leave it empty for no min value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max Number Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Leave it empty for no max value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Number Step Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 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)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Leave it empty for no restriction" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:564 msgid "Albania Lek" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:565 msgid "Afghanistan Afghani" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:566 msgid "Argentina Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:567 msgid "Aruba Guilder" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:568 msgid "Australia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:569 msgid "Azerbaijan New Manat" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:570 msgid "Bahamas Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:571 msgid "Barbados Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:572 msgid "Bangladeshi taka" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:573 msgid "Belarus Ruble" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:574 msgid "Belize Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:575 msgid "Bermuda Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:576 msgid "Bolivia Boliviano" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:577 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:578 msgid "Botswana Pula" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:579 msgid "Bulgaria Lev" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:580 msgid "Brazil Real" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:581 msgid "Brunei Darussalam Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:582 msgid "Cambodia Riel" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:583 msgid "Canada Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:584 msgid "Cayman Islands Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:585 msgid "Chile Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:586 msgid "China Yuan Renminbi" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:587 msgid "Colombia Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:588 msgid "Costa Rica Colon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:589 msgid "Croatia Kuna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:590 msgid "Cuba Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:591 msgid "Czech Republic Koruna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:592 msgid "Denmark Krone" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:593 msgid "Dominican Republic Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:594 msgid "East Caribbean Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:595 msgid "Egypt Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:596 msgid "El Salvador Colon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:597 msgid "Estonia Kroon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:598 msgid "Euro" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:599 msgid "Falkland Islands (Malvinas) Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:600 msgid "Fiji Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:601 msgid "Ghana Cedis" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:602 msgid "Gibraltar Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:603 msgid "Guatemala Quetzal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:604 msgid "Guernsey Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:605 msgid "Guyana Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:606 msgid "Honduras Lempira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:607 msgid "Hong Kong Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:608 msgid "Hungary Forint" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:609 msgid "Iceland Krona" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:610 msgid "India Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:611 msgid "Indonesia Rupiah" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:612 msgid "Iran Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:613 msgid "Isle of Man Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:614 msgid "Israel Shekel" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:615 msgid "Jamaica Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:616 msgid "Japan Yen" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:617 msgid "Jersey Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:618 msgid "Kazakhstan Tenge" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:619 msgid "Korea (North) Won" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:620 msgid "Korea (South) Won" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:621 msgid "Kyrgyzstan Som" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:622 msgid "Laos Kip" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:623 msgid "Latvia Lat" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:624 msgid "Lebanon Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:625 msgid "Liberia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:626 msgid "Lithuania Litas" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:627 msgid "Macedonia Denar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:628 msgid "Malaysia Ringgit" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:629 msgid "Mauritius Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:630 msgid "Mexico Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:631 msgid "Mongolia Tughrik" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:632 msgid "Mozambique Metical" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:633 msgid "Namibia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:634 msgid "Nepal Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:635 msgid "Netherlands Antilles Guilder" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:636 msgid "New Zealand Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:637 msgid "Nicaragua Cordoba" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:638 msgid "Nigeria Naira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:639 msgid "Norway Krone" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:640 msgid "Oman Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:641 msgid "Pakistan Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:642 msgid "Panama Balboa" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:643 msgid "Paraguay Guarani" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:644 msgid "Peru Nuevo Sol" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:645 msgid "Philippines Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:646 msgid "Poland Zloty" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:647 msgid "Qatar Riyal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:648 msgid "Romania New Leu" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:649 msgid "Russia Ruble" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:650 msgid "Saint Helena Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:651 msgid "Saudi Arabia Riyal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:652 msgid "Serbia Dinar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:653 msgid "Seychelles Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:654 msgid "Singapore Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:655 msgid "Solomon Islands Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:656 msgid "Somalia Shilling" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:657 msgid "South Africa Rand" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:658 msgid "Sri Lanka Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:659 msgid "Sweden Krona" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:660 msgid "Switzerland Franc" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:661 msgid "Suriname Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:662 msgid "Syria Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:663 msgid "Taiwan New Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:664 msgid "Thailand Baht" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:665 msgid "Trinidad and Tobago Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:666 #: profile-builder-2.0/admin/manage-fields.php:667 msgid "Turkey Lira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:668 msgid "Tuvalu Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:669 msgid "Ukraine Hryvna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:670 msgid "United Kingdom Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:671 msgid "Uganda Shilling" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:672 msgid "US Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:673 msgid "Uruguay Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:674 msgid "Uzbekistan Som" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:675 msgid "Venezuela Bolivar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:676 msgid "Viet Nam Dong" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:677 msgid "Yemen Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:678 msgid "Zimbabwe Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1097 msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1314 msgid "Search Location" msgstr "" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754 msgid "You are not allowed to do this." msgstr "" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460 msgid "Search Users" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78 msgid "Conditional Logic" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79 msgid "Conditional Rules" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448 msgid "This field has conditional logic enabled." msgstr "" #: profile-builder-2.0/features/functions.php:685 msgid "Incorrect phone number" msgstr "Numero di telefono scorretto" #: profile-builder-2.0/front-end/class-formbuilder.php:124 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." msgstr "" #: profile-builder-2.0/front-end/extra-fields/map/map.php:46 #: profile-builder-2.0/front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "" #: profile-builder-2.0/front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "Qualcosa è andato storto. Per favore riprova" #: profile-builder-2.0/front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "Per favore inserisci solamente numeri" #: profile-builder-2.0/front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "I valori devono essere multipli di %1$s" #: profile-builder-2.0/front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "I valori devono essere maggiori o guali a %1$s" #: profile-builder-2.0/front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "I valori devono essere minori o guali a %1$s" #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "Formato di numero di telefono richiesto:" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bolivia, __( Plurinational State of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bonaire, __( Sint Eustatius and Saba" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brunei Darussalam" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cabo Verde" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cocos (Keeling) Islands" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo, __( the Democratic Republic of the" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cote dIvoire" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Falkland Islands (Malvinas)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Holy See (Vatican City State)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iran, __( Islamic Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Democratic Peoples Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lao Peoples Democratic Republic" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macedonia, __( the former Yugoslav Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Micronesia, __( Federated States of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Moldova, __( Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palestine, __( State of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Russian Federation" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Helena, __( Ascension and Tristan da Cunha" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Martin (French part)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sint Maarten (Dutch part)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Syrian Arab Republic" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Taiwan, __( Province of China" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tanzania, __( United Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Timor-Leste" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Venezuela, __( Bolivarian Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Viet Nam" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( British" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( U.S." msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:186 msgid "User Fields Tags" msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479 msgid "The users selected password at signup" msgstr "" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278 msgid "[{{site_name}}] Notice of Email Change" msgstr "[{{site_name}}] Avviso di cambio mail" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289 msgid "Changed Email Address Notification" msgstr "Notifica di cambio mail" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Limit" msgstr "Limite" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Enable limit to the number of fields to be generated by users in front end forms " msgstr "Abilita il limite di quanti campi devono essere generati dagli utenti nei form front end" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "General Limit" msgstr "Limite Generale" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "Limit reached message" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The maximum number of fields has been reached." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The popup message to display when the limit of repeater groups is reached." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Limit per Role" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Leave 0 for unlimited." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Repeated field group" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Manage field or group of fields that will be repeatable." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259 msgid "Edit field group" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260 msgid "Repeatable fields saved!" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277 #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326 msgid "Please enter a unique field title.\n" msgstr "" #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267 msgid "Are you sure you want to delete this?" msgstr "Sei sicuro di volerlo cancellare?" #: profile-builder-2.0/modules/user-listing/userlisting.php:192 msgid "Sort Tags" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:201 #: profile-builder-2.0/modules/user-listing/userlisting.php:2308 msgid "Faceted Menus" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:202 msgid "User Count" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1553 msgid "Show All" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1710 msgid "No options available" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1861 msgid "Remove All Filters" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Label" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Choose the facet name that appears on the frontend" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Facet Type" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Choose the facet menu type" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Facet Meta" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Choose the meta field for the facet menu" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Behaviour" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Narrow the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Expand the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Choose how multiple selections affect the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Visible choices" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Search Fields" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Choose the fields in which the Search Field will look in" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2330 msgid "Search Settings" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:8 #: pb-add-on-woocommerce/shipping-fields.php:8 msgid "Company Name" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:9 #: pb-add-on-woocommerce/shipping-fields.php:9 msgid "Address" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:5 #: pb-add-on-woocommerce/shipping-fields.php:5 msgid "Country" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:11 #: pb-add-on-woocommerce/shipping-fields.php:11 msgid "Town / City" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:12 #: pb-add-on-woocommerce/shipping-fields.php:12 msgid "State / County" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:13 #: pb-add-on-woocommerce/shipping-fields.php:13 msgid "Postcode / Zip" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:14 msgid "Email Address" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:15 msgid "Phone" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:278 msgid "Ship to a different address?" msgstr "" #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437 msgid "Billing Address" msgstr "" #: pb-add-on-woocommerce/index.php:169 msgid "Displays customer billing fields in front-end. " msgstr "" #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438 msgid "Shipping Address" msgstr "" #: pb-add-on-woocommerce/index.php:173 msgid "Displays customer shipping fields in front-end. " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Display on WooCommerce Checkout" msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Whether the field should be added to the WooCommerce checkout form or not" msgstr "" #: pb-add-on-woocommerce/index.php:541 msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:23 #: pb-add-on-woocommerce/woosync-page.php:70 msgid "WooCommerce Sync" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:76 msgid "Choose Register form to display on My Account page:" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:81 msgid "Default Register" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:103 msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce.
            This will also add the Profile Builder Login form to MyAccount page." msgstr "" #: pb-add-on-woocommerce/woosync-page.php:110 msgid "Choose Edit Profile form to display on My Account page:" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:115 msgid "Default Edit Profile" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:137 msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce." msgstr "" #: profile-builder-2.0/admin/add-ons.php:190 msgid "Recommended Plugins" msgstr "Plugin Raccomandati" #: profile-builder-2.0/admin/add-ons.php:219 #: profile-builder-2.0/admin/pms-cross-promotion.php:102 msgid "Free" msgstr "Gratis" #: profile-builder-2.0/admin/add-ons.php:221 msgid "Accept user payments, create subscription plans and restrict content on your membership site." msgstr "" #: profile-builder-2.0/admin/add-ons.php:222 #: profile-builder-2.0/admin/pms-cross-promotion.php:105 msgid "More Details" msgstr "" #: profile-builder-2.0/admin/add-ons.php:240 #: profile-builder-2.0/admin/pms-cross-promotion.php:88 #: profile-builder-2.0/admin/pms-cross-promotion.php:123 #: profile-builder-2.0/admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "Il Plugin è inattivo" #: profile-builder-2.0/admin/add-ons.php:242 #: profile-builder-2.0/admin/pms-cross-promotion.php:87 #: profile-builder-2.0/admin/pms-cross-promotion.php:125 #: profile-builder-2.0/admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "Il Plugin è attivo" #: profile-builder-2.0/admin/add-ons.php:256 #: profile-builder-2.0/admin/pms-cross-promotion.php:146 msgid "Could not install plugin. Retry or install manually." msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:37 msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:104 msgid "Accept user payments, create subscription plans and restrict content on your website." msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401 msgid "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login." msgstr "Per attivare il tuo utente, clicca il seguente link:

            %s%s%s

            Dopo l'attivazione riceverai un'altra email con i dati di accesso." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45 msgid "After Login" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46 msgid "After Logout" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47 msgid "After Registration" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48 msgid "After Edit Profile" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Successful Email Confirmation" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Successful Password Reset" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55 msgid "User ID" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61 msgid "User ID or Username" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "User ID / Username" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "Please select and enter the ID or username of your user." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131 msgid "Redirect Type" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Redirect URL" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241 msgid "Individual User Redirects" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84 msgid "... Choose" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 msgid "Select a user role." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242 msgid "User Role based Redirects" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243 msgid "Global Redirects" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133 msgid "Login ( wp_login.php )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134 msgid "Register ( wp-login.php?action=register )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145 msgid "Redirect Default WordPress Forms and Pages" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157 msgid "How does this work?" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 msgid "
            User Role
            Redirect
            URL
            " msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "
            Redirect
            URL
            " msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236 msgid "These redirects happen after a successful action, like registration or after a successful login." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238 msgid "Which redirect happens depends on the following priority:" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247 msgid "Redirect Default WordPress forms and pages" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248 msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250 msgid "Available tags for dynamic URLs" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251 msgid "You use the following tags in your URLs to redirect users to various pages." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253 msgid "generates a url of the current website homepage." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254 msgid "in WordPress the site url can be different then the home url" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255 msgid "the ID of the user" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256 msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257 msgid "the URL of the previously visited page" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352 msgid "You can't add duplicate redirects!" msgstr "" #: profile-builder-2.0/admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "" #: profile-builder-2.0/admin/basic-info.php:37 msgid "Friction-less login using %s shortcode or a widget." msgstr "" #: profile-builder-2.0/admin/basic-info.php:41 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "" #: profile-builder-2.0/admin/basic-info.php:45 msgid "Straight forward edit profile forms using %s shortcode." msgstr "" #: profile-builder-2.0/admin/basic-info.php:58 msgid "Allow users to recover their password in the front-end using the %s." msgstr "" #: profile-builder-2.0/admin/basic-info.php:140 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." msgstr "" #: profile-builder-2.0/admin/general-settings.php:115 msgid "\"Admin Approval\" on User Role:" msgstr "" #: profile-builder-2.0/admin/general-settings.php:134 msgid "Select on what user roles to activate Admin Approval." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Display on PB forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Login" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Register" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Recover Password" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Display on default WP forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Login" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Register" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Recover Password" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default option of the field" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:282 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Afghanistan" msgstr "Afghanistan" #: profile-builder-2.0/admin/manage-fields.php:283 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aland Islands" msgstr "Aland Islands" #: profile-builder-2.0/admin/manage-fields.php:284 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Albania" msgstr "Albania" #: profile-builder-2.0/admin/manage-fields.php:285 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Algeria" msgstr "Algeria" #: profile-builder-2.0/admin/manage-fields.php:286 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "American Samoa" msgstr "American Samoa" #: profile-builder-2.0/admin/manage-fields.php:287 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Andorra" msgstr "Andorra" #: profile-builder-2.0/admin/manage-fields.php:288 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Angola" msgstr "Angola" #: profile-builder-2.0/admin/manage-fields.php:289 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Anguilla" msgstr "Anguilla" #: profile-builder-2.0/admin/manage-fields.php:290 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antarctica" msgstr "Antarctica" #: profile-builder-2.0/admin/manage-fields.php:291 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" #: profile-builder-2.0/admin/manage-fields.php:292 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Argentina" msgstr "Argentina" #: profile-builder-2.0/admin/manage-fields.php:293 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Armenia" msgstr "Armenia" #: profile-builder-2.0/admin/manage-fields.php:294 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aruba" msgstr "Aruba" #: profile-builder-2.0/admin/manage-fields.php:295 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Australia" msgstr "Australia" #: profile-builder-2.0/admin/manage-fields.php:296 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Austria" msgstr "Austria" #: profile-builder-2.0/admin/manage-fields.php:297 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Azerbaijan" msgstr "Azerbaijan" #: profile-builder-2.0/admin/manage-fields.php:298 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahamas" msgstr "Bahamas" #: profile-builder-2.0/admin/manage-fields.php:299 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahrain" msgstr "Bahrain" #: profile-builder-2.0/admin/manage-fields.php:300 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bangladesh" msgstr "Bangladesh" #: profile-builder-2.0/admin/manage-fields.php:301 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Barbados" msgstr "Barbados" #: profile-builder-2.0/admin/manage-fields.php:302 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belarus" msgstr "Belarus" #: profile-builder-2.0/admin/manage-fields.php:303 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belgium" msgstr "Belgium" #: profile-builder-2.0/admin/manage-fields.php:304 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belize" msgstr "Belize" #: profile-builder-2.0/admin/manage-fields.php:305 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Benin" msgstr "Benin" #: profile-builder-2.0/admin/manage-fields.php:306 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bermuda" msgstr "Bermuda" #: profile-builder-2.0/admin/manage-fields.php:307 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bhutan" msgstr "Bhutan" #: profile-builder-2.0/admin/manage-fields.php:308 msgid "Bolivia" msgstr "Bolivia" #: profile-builder-2.0/admin/manage-fields.php:309 msgid "Bonaire, Saint Eustatius and Saba" msgstr "Bonaire, Saint Eustatius and Saba" #: profile-builder-2.0/admin/manage-fields.php:310 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bosnia and Herzegovina" msgstr "Bosnia and Herzegovina" #: profile-builder-2.0/admin/manage-fields.php:311 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Botswana" msgstr "Botswana" #: profile-builder-2.0/admin/manage-fields.php:312 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bouvet Island" msgstr "Bouvet Island" #: profile-builder-2.0/admin/manage-fields.php:313 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brazil" msgstr "Brazil" #: profile-builder-2.0/admin/manage-fields.php:314 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: profile-builder-2.0/admin/manage-fields.php:315 msgid "British Virgin Islands" msgstr "British Virgin Islands" #: profile-builder-2.0/admin/manage-fields.php:316 msgid "Brunei" msgstr "Brunei" #: profile-builder-2.0/admin/manage-fields.php:317 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bulgaria" msgstr "Bulgaria" #: profile-builder-2.0/admin/manage-fields.php:318 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burkina Faso" msgstr "Burkina Faso" #: profile-builder-2.0/admin/manage-fields.php:319 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burundi" msgstr "Burundi" #: profile-builder-2.0/admin/manage-fields.php:320 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cambodia" msgstr "Cambodia" #: profile-builder-2.0/admin/manage-fields.php:321 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cameroon" msgstr "Cameroon" #: profile-builder-2.0/admin/manage-fields.php:322 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Canada" msgstr "Canada" #: profile-builder-2.0/admin/manage-fields.php:323 msgid "Cape Verde" msgstr "Cape Verde" #: profile-builder-2.0/admin/manage-fields.php:324 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cayman Islands" msgstr "Cayman Islands" #: profile-builder-2.0/admin/manage-fields.php:325 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Central African Republic" msgstr "Central African Republic" #: profile-builder-2.0/admin/manage-fields.php:326 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chad" msgstr "Chad" #: profile-builder-2.0/admin/manage-fields.php:327 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chile" msgstr "Chile" #: profile-builder-2.0/admin/manage-fields.php:328 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "China" msgstr "China" #: profile-builder-2.0/admin/manage-fields.php:329 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Christmas Island" msgstr "Christmas Island" #: profile-builder-2.0/admin/manage-fields.php:330 msgid "Cocos Islands" msgstr "Cocos Islands" #: profile-builder-2.0/admin/manage-fields.php:331 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Colombia" msgstr "Colombia" #: profile-builder-2.0/admin/manage-fields.php:332 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Comoros" msgstr "Comoros" #: profile-builder-2.0/admin/manage-fields.php:333 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cook Islands" msgstr "Cook Islands" #: profile-builder-2.0/admin/manage-fields.php:334 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Costa Rica" msgstr "Costa Rica" #: profile-builder-2.0/admin/manage-fields.php:335 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Croatia" msgstr "Croatia" #: profile-builder-2.0/admin/manage-fields.php:336 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cuba" msgstr "Cuba" #: profile-builder-2.0/admin/manage-fields.php:337 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Curacao" msgstr "Curacao" #: profile-builder-2.0/admin/manage-fields.php:338 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cyprus" msgstr "Cyprus" #: profile-builder-2.0/admin/manage-fields.php:339 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Czech Republic" msgstr "Czech Republic" #: profile-builder-2.0/admin/manage-fields.php:340 msgid "Democratic Republic of the Congo" msgstr "Democratic Republic of the Congo" #: profile-builder-2.0/admin/manage-fields.php:341 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Denmark" msgstr "Denmark" #: profile-builder-2.0/admin/manage-fields.php:342 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Djibouti" msgstr "Djibouti" #: profile-builder-2.0/admin/manage-fields.php:343 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominica" msgstr "Dominica" #: profile-builder-2.0/admin/manage-fields.php:344 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominican Republic" msgstr "Dominican Republic" #: profile-builder-2.0/admin/manage-fields.php:345 msgid "East Timor" msgstr "East Timor" #: profile-builder-2.0/admin/manage-fields.php:346 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ecuador" msgstr "Ecuador" #: profile-builder-2.0/admin/manage-fields.php:347 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Egypt" msgstr "Egypt" #: profile-builder-2.0/admin/manage-fields.php:348 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "El Salvador" msgstr "El Salvador" #: profile-builder-2.0/admin/manage-fields.php:349 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: profile-builder-2.0/admin/manage-fields.php:350 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Eritrea" msgstr "Eritrea" #: profile-builder-2.0/admin/manage-fields.php:351 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Estonia" msgstr "Estonia" #: profile-builder-2.0/admin/manage-fields.php:352 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ethiopia" msgstr "Ethiopia" #: profile-builder-2.0/admin/manage-fields.php:353 msgid "Falkland Islands" msgstr "Falkland Islands" #: profile-builder-2.0/admin/manage-fields.php:354 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Faroe Islands" msgstr "Faroe Islands" #: profile-builder-2.0/admin/manage-fields.php:355 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Fiji" msgstr "Fiji" #: profile-builder-2.0/admin/manage-fields.php:356 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Finland" msgstr "Finland" #: profile-builder-2.0/admin/manage-fields.php:357 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "France" msgstr "France" #: profile-builder-2.0/admin/manage-fields.php:358 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Guiana" msgstr "French Guiana" #: profile-builder-2.0/admin/manage-fields.php:359 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Polynesia" msgstr "French Polynesia" #: profile-builder-2.0/admin/manage-fields.php:360 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Southern Territories" msgstr "French Southern Territories" #: profile-builder-2.0/admin/manage-fields.php:361 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gabon" msgstr "Gabon" #: profile-builder-2.0/admin/manage-fields.php:362 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gambia" msgstr "Gambia" #: profile-builder-2.0/admin/manage-fields.php:363 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Georgia" msgstr "Georgia" #: profile-builder-2.0/admin/manage-fields.php:364 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Germany" msgstr "Germany" #: profile-builder-2.0/admin/manage-fields.php:365 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ghana" msgstr "Ghana" #: profile-builder-2.0/admin/manage-fields.php:366 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gibraltar" msgstr "Gibraltar" #: profile-builder-2.0/admin/manage-fields.php:367 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greece" msgstr "Greece" #: profile-builder-2.0/admin/manage-fields.php:368 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greenland" msgstr "Greenland" #: profile-builder-2.0/admin/manage-fields.php:369 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Grenada" msgstr "Grenada" #: profile-builder-2.0/admin/manage-fields.php:370 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guadeloupe" msgstr "Guadeloupe" #: profile-builder-2.0/admin/manage-fields.php:371 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guam" msgstr "Guam" #: profile-builder-2.0/admin/manage-fields.php:372 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guatemala" msgstr "Guatemala" #: profile-builder-2.0/admin/manage-fields.php:373 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guernsey" msgstr "Guernsey" #: profile-builder-2.0/admin/manage-fields.php:374 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea" msgstr "Guinea" #: profile-builder-2.0/admin/manage-fields.php:375 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: profile-builder-2.0/admin/manage-fields.php:376 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guyana" msgstr "Guyana" #: profile-builder-2.0/admin/manage-fields.php:377 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Haiti" msgstr "Haiti" #: profile-builder-2.0/admin/manage-fields.php:378 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Heard Island and McDonald Islands" msgstr "Heard Island and McDonald Islands" #: profile-builder-2.0/admin/manage-fields.php:379 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Honduras" msgstr "Honduras" #: profile-builder-2.0/admin/manage-fields.php:380 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hong Kong" msgstr "Hong Kong" #: profile-builder-2.0/admin/manage-fields.php:381 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hungary" msgstr "Hungary" #: profile-builder-2.0/admin/manage-fields.php:382 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iceland" msgstr "Iceland" #: profile-builder-2.0/admin/manage-fields.php:383 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "India" msgstr "India" #: profile-builder-2.0/admin/manage-fields.php:384 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Indonesia" msgstr "Indonesia" #: profile-builder-2.0/admin/manage-fields.php:385 msgid "Iran" msgstr "Iran" #: profile-builder-2.0/admin/manage-fields.php:386 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iraq" msgstr "Iraq" #: profile-builder-2.0/admin/manage-fields.php:387 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ireland" msgstr "Ireland" #: profile-builder-2.0/admin/manage-fields.php:388 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Isle of Man" msgstr "Isle of Man" #: profile-builder-2.0/admin/manage-fields.php:389 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Israel" msgstr "Israel" #: profile-builder-2.0/admin/manage-fields.php:390 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Italy" msgstr "Italy" #: profile-builder-2.0/admin/manage-fields.php:391 msgid "Ivory Coast" msgstr "Ivory Coast" #: profile-builder-2.0/admin/manage-fields.php:392 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jamaica" msgstr "Jamaica" #: profile-builder-2.0/admin/manage-fields.php:393 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Japan" msgstr "Japan" #: profile-builder-2.0/admin/manage-fields.php:394 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jersey" msgstr "Jersey" #: profile-builder-2.0/admin/manage-fields.php:395 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jordan" msgstr "Jordan" #: profile-builder-2.0/admin/manage-fields.php:396 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kazakhstan" msgstr "Kazakhstan" #: profile-builder-2.0/admin/manage-fields.php:397 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kenya" msgstr "Kenya" #: profile-builder-2.0/admin/manage-fields.php:398 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kiribati" msgstr "Kiribati" #: profile-builder-2.0/admin/manage-fields.php:399 msgid "Kosovo" msgstr "Kosovo" #: profile-builder-2.0/admin/manage-fields.php:400 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kuwait" msgstr "Kuwait" #: profile-builder-2.0/admin/manage-fields.php:401 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: profile-builder-2.0/admin/manage-fields.php:402 msgid "Laos" msgstr "Laos" #: profile-builder-2.0/admin/manage-fields.php:403 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Latvia" msgstr "Latvia" #: profile-builder-2.0/admin/manage-fields.php:404 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lebanon" msgstr "Lebanon" #: profile-builder-2.0/admin/manage-fields.php:405 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lesotho" msgstr "Lesotho" #: profile-builder-2.0/admin/manage-fields.php:406 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liberia" msgstr "Liberia" #: profile-builder-2.0/admin/manage-fields.php:407 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Libya" msgstr "Libya" #: profile-builder-2.0/admin/manage-fields.php:408 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liechtenstein" msgstr "Liechtenstein" #: profile-builder-2.0/admin/manage-fields.php:409 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lithuania" msgstr "Lithuania" #: profile-builder-2.0/admin/manage-fields.php:410 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Luxembourg" msgstr "Luxembourg" #: profile-builder-2.0/admin/manage-fields.php:411 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macao" msgstr "Macao" #: profile-builder-2.0/admin/manage-fields.php:412 msgid "Macedonia" msgstr "Macedonia" #: profile-builder-2.0/admin/manage-fields.php:413 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Madagascar" msgstr "Madagascar" #: profile-builder-2.0/admin/manage-fields.php:414 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malawi" msgstr "Malawi" #: profile-builder-2.0/admin/manage-fields.php:415 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malaysia" msgstr "Malaysia" #: profile-builder-2.0/admin/manage-fields.php:416 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Maldives" msgstr "Maldives" #: profile-builder-2.0/admin/manage-fields.php:417 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mali" msgstr "Mali" #: profile-builder-2.0/admin/manage-fields.php:418 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malta" msgstr "Malta" #: profile-builder-2.0/admin/manage-fields.php:419 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Marshall Islands" msgstr "Marshall Islands" #: profile-builder-2.0/admin/manage-fields.php:420 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Martinique" msgstr "Martinique" #: profile-builder-2.0/admin/manage-fields.php:421 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritania" msgstr "Mauritania" #: profile-builder-2.0/admin/manage-fields.php:422 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritius" msgstr "Mauritius" #: profile-builder-2.0/admin/manage-fields.php:423 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mayotte" msgstr "Mayotte" #: profile-builder-2.0/admin/manage-fields.php:424 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mexico" msgstr "Mexico" #: profile-builder-2.0/admin/manage-fields.php:425 msgid "Micronesia" msgstr "Micronesia" #: profile-builder-2.0/admin/manage-fields.php:426 msgid "Moldova" msgstr "Moldova" #: profile-builder-2.0/admin/manage-fields.php:427 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Monaco" msgstr "Monaco" #: profile-builder-2.0/admin/manage-fields.php:428 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mongolia" msgstr "Mongolia" #: profile-builder-2.0/admin/manage-fields.php:429 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montenegro" msgstr "Montenegro" #: profile-builder-2.0/admin/manage-fields.php:430 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montserrat" msgstr "Montserrat" #: profile-builder-2.0/admin/manage-fields.php:431 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Morocco" msgstr "Morocco" #: profile-builder-2.0/admin/manage-fields.php:432 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mozambique" msgstr "Mozambique" #: profile-builder-2.0/admin/manage-fields.php:433 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Myanmar" msgstr "Myanmar" #: profile-builder-2.0/admin/manage-fields.php:434 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Namibia" msgstr "Namibia" #: profile-builder-2.0/admin/manage-fields.php:435 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nauru" msgstr "Nauru" #: profile-builder-2.0/admin/manage-fields.php:436 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nepal" msgstr "Nepal" #: profile-builder-2.0/admin/manage-fields.php:437 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Netherlands" msgstr "Netherlands" #: profile-builder-2.0/admin/manage-fields.php:438 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Caledonia" msgstr "New Caledonia" #: profile-builder-2.0/admin/manage-fields.php:439 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Zealand" msgstr "New Zealand" #: profile-builder-2.0/admin/manage-fields.php:440 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nicaragua" msgstr "Nicaragua" #: profile-builder-2.0/admin/manage-fields.php:441 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niger" msgstr "Niger" #: profile-builder-2.0/admin/manage-fields.php:442 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nigeria" msgstr "Nigeria" #: profile-builder-2.0/admin/manage-fields.php:443 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niue" msgstr "Niue" #: profile-builder-2.0/admin/manage-fields.php:444 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norfolk Island" msgstr "Norfolk Island" #: profile-builder-2.0/admin/manage-fields.php:445 msgid "North Korea" msgstr "North Korea" #: profile-builder-2.0/admin/manage-fields.php:446 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: profile-builder-2.0/admin/manage-fields.php:447 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norway" msgstr "Norway" #: profile-builder-2.0/admin/manage-fields.php:448 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Oman" msgstr "Oman" #: profile-builder-2.0/admin/manage-fields.php:449 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pakistan" msgstr "Pakistan" #: profile-builder-2.0/admin/manage-fields.php:450 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palau" msgstr "Palau" #: profile-builder-2.0/admin/manage-fields.php:451 msgid "Palestinian Territory" msgstr "Palestinian Territory" #: profile-builder-2.0/admin/manage-fields.php:452 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Panama" msgstr "Panama" #: profile-builder-2.0/admin/manage-fields.php:453 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: profile-builder-2.0/admin/manage-fields.php:454 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Paraguay" msgstr "Paraguay" #: profile-builder-2.0/admin/manage-fields.php:455 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Peru" msgstr "Peru" #: profile-builder-2.0/admin/manage-fields.php:456 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Philippines" msgstr "Philippines" #: profile-builder-2.0/admin/manage-fields.php:457 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pitcairn" msgstr "Pitcairn" #: profile-builder-2.0/admin/manage-fields.php:458 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Poland" msgstr "Poland" #: profile-builder-2.0/admin/manage-fields.php:459 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Portugal" msgstr "Portugal" #: profile-builder-2.0/admin/manage-fields.php:460 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Puerto Rico" msgstr "Puerto Rico" #: profile-builder-2.0/admin/manage-fields.php:461 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Qatar" msgstr "Qatar" #: profile-builder-2.0/admin/manage-fields.php:462 msgid "Republic of the Congo" msgstr "Republic of the Congo" #: profile-builder-2.0/admin/manage-fields.php:463 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Reunion" msgstr "Reunion" #: profile-builder-2.0/admin/manage-fields.php:464 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Romania" msgstr "Romania" #: profile-builder-2.0/admin/manage-fields.php:465 msgid "Russia" msgstr "Russia" #: profile-builder-2.0/admin/manage-fields.php:466 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Rwanda" msgstr "Rwanda" #: profile-builder-2.0/admin/manage-fields.php:467 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: profile-builder-2.0/admin/manage-fields.php:468 msgid "Saint Helena" msgstr "Saint Helena" #: profile-builder-2.0/admin/manage-fields.php:469 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts and Nevis" #: profile-builder-2.0/admin/manage-fields.php:470 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Lucia" msgstr "Saint Lucia" #: profile-builder-2.0/admin/manage-fields.php:471 msgid "Saint Martin" msgstr "Saint Martin" #: profile-builder-2.0/admin/manage-fields.php:472 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre and Miquelon" #: profile-builder-2.0/admin/manage-fields.php:473 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent and the Grenadines" #: profile-builder-2.0/admin/manage-fields.php:474 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Samoa" msgstr "Samoa" #: profile-builder-2.0/admin/manage-fields.php:475 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "San Marino" msgstr "San Marino" #: profile-builder-2.0/admin/manage-fields.php:476 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sao Tome and Principe" msgstr "Sao Tome and Principe" #: profile-builder-2.0/admin/manage-fields.php:477 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: profile-builder-2.0/admin/manage-fields.php:478 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Senegal" msgstr "Senegal" #: profile-builder-2.0/admin/manage-fields.php:479 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Serbia" msgstr "Serbia" #: profile-builder-2.0/admin/manage-fields.php:480 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Seychelles" msgstr "Seychelles" #: profile-builder-2.0/admin/manage-fields.php:481 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sierra Leone" msgstr "Sierra Leone" #: profile-builder-2.0/admin/manage-fields.php:482 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Singapore" msgstr "Singapore" #: profile-builder-2.0/admin/manage-fields.php:483 msgid "Sint Maarten" msgstr "Sint Maarten" #: profile-builder-2.0/admin/manage-fields.php:484 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovakia" msgstr "Slovakia" #: profile-builder-2.0/admin/manage-fields.php:485 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovenia" msgstr "Slovenia" #: profile-builder-2.0/admin/manage-fields.php:486 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Solomon Islands" msgstr "Solomon Islands" #: profile-builder-2.0/admin/manage-fields.php:487 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Somalia" msgstr "Somalia" #: profile-builder-2.0/admin/manage-fields.php:488 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Africa" msgstr "South Africa" #: profile-builder-2.0/admin/manage-fields.php:489 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Georgia and the South Sandwich Islands" msgstr "South Georgia and the South Sandwich Islands" #: profile-builder-2.0/admin/manage-fields.php:490 msgid "South Korea" msgstr "South Korea" #: profile-builder-2.0/admin/manage-fields.php:491 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Sudan" msgstr "South Sudan" #: profile-builder-2.0/admin/manage-fields.php:492 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Spain" msgstr "Spain" #: profile-builder-2.0/admin/manage-fields.php:493 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sri Lanka" msgstr "Sri Lanka" #: profile-builder-2.0/admin/manage-fields.php:494 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sudan" msgstr "Sudan" #: profile-builder-2.0/admin/manage-fields.php:495 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Suriname" msgstr "Suriname" #: profile-builder-2.0/admin/manage-fields.php:496 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Svalbard and Jan Mayen" msgstr "Svalbard and Jan Mayen" #: profile-builder-2.0/admin/manage-fields.php:497 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Swaziland" msgstr "Swaziland" #: profile-builder-2.0/admin/manage-fields.php:498 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sweden" msgstr "Sweden" #: profile-builder-2.0/admin/manage-fields.php:499 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Switzerland" msgstr "Switzerland" #: profile-builder-2.0/admin/manage-fields.php:500 msgid "Syria" msgstr "Syria" #: profile-builder-2.0/admin/manage-fields.php:501 msgid "Taiwan" msgstr "Taiwan" #: profile-builder-2.0/admin/manage-fields.php:502 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tajikistan" msgstr "Tajikistan" #: profile-builder-2.0/admin/manage-fields.php:503 msgid "Tanzania" msgstr "Tanzania" #: profile-builder-2.0/admin/manage-fields.php:504 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Thailand" msgstr "Thailand" #: profile-builder-2.0/admin/manage-fields.php:505 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Togo" msgstr "Togo" #: profile-builder-2.0/admin/manage-fields.php:506 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tokelau" msgstr "Tokelau" #: profile-builder-2.0/admin/manage-fields.php:507 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tonga" msgstr "Tonga" #: profile-builder-2.0/admin/manage-fields.php:508 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Trinidad and Tobago" msgstr "Trinidad and Tobago" #: profile-builder-2.0/admin/manage-fields.php:509 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tunisia" msgstr "Tunisia" #: profile-builder-2.0/admin/manage-fields.php:510 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkey" msgstr "Turkey" #: profile-builder-2.0/admin/manage-fields.php:511 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkmenistan" msgstr "Turkmenistan" #: profile-builder-2.0/admin/manage-fields.php:512 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Islands" #: profile-builder-2.0/admin/manage-fields.php:513 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tuvalu" msgstr "Tuvalu" #: profile-builder-2.0/admin/manage-fields.php:514 msgid "U.S. Virgin Islands" msgstr "U.S. Virgin Islands" #: profile-builder-2.0/admin/manage-fields.php:515 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uganda" msgstr "Uganda" #: profile-builder-2.0/admin/manage-fields.php:516 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ukraine" msgstr "Ukraine" #: profile-builder-2.0/admin/manage-fields.php:517 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Arab Emirates" msgstr "United Arab Emirates" #: profile-builder-2.0/admin/manage-fields.php:518 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Kingdom" msgstr "United Kingdom" #: profile-builder-2.0/admin/manage-fields.php:519 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States" msgstr "United States" #: profile-builder-2.0/admin/manage-fields.php:520 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: profile-builder-2.0/admin/manage-fields.php:521 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uruguay" msgstr "Uruguay" #: profile-builder-2.0/admin/manage-fields.php:522 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uzbekistan" msgstr "Uzbekistan" #: profile-builder-2.0/admin/manage-fields.php:523 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Vanuatu" msgstr "Vanuatu" #: profile-builder-2.0/admin/manage-fields.php:524 msgid "Vatican" msgstr "Vatican" #: profile-builder-2.0/admin/manage-fields.php:525 msgid "Venezuela" msgstr "Venezuela" #: profile-builder-2.0/admin/manage-fields.php:526 msgid "Vietnam" msgstr "Vietnam" #: profile-builder-2.0/admin/manage-fields.php:527 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Wallis and Futuna" msgstr "Wallis and Futuna" #: profile-builder-2.0/admin/manage-fields.php:528 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Western Sahara" msgstr "Western Sahara" #: profile-builder-2.0/admin/manage-fields.php:529 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Yemen" msgstr "Yemen" #: profile-builder-2.0/admin/manage-fields.php:530 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zambia" msgstr "Zambia" #: profile-builder-2.0/admin/manage-fields.php:531 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zimbabwe" msgstr "Zimbabwe" #: profile-builder-2.0/admin/manage-fields.php:1219 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." msgstr "" #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237 msgid "Your account has to be confirmed by an administrator before you can log in." msgstr "" #: profile-builder-2.0/features/admin-approval/admin-approval.php:216 msgid "Your account has been successfully created!" msgstr "" #: profile-builder-2.0/features/functions.php:678 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458 msgid "Please enter a (valid) reCAPTCHA value" msgstr "" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 msgid "Click the BACK button on your browser, and try again." msgstr "" #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78 #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87 msgid "Sorry, you cannot upload this file type for this field." msgstr "" #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94 msgid "An error occurred, please try again later." msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:282 msgid "More" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:376 msgid "You do not have permission to view this user list." msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:389 msgid "You do not have the required user role to view this user list." msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2253 msgid "Ascending" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2254 msgid "Descending" msgstr "" #: profile-builder-2.0/admin/add-ons.php:148 #: profile-builder-2.0/admin/add-ons.php:248 #: profile-builder-2.0/admin/pms-cross-promotion.php:134 #: profile-builder-2.0/admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "Scarica ora" #: profile-builder-2.0/admin/admin-functions.php:200 msgid "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. " msgstr "Se ti fa piacere usare %1$s per favore vota per noi su WordPress.org. Più utenti soddisfatti significa ancora nuove funzioni, meno bug ed un miglior supporto pre ognuno." #: profile-builder-2.0/admin/manage-fields.php:82 msgid "Choose one of the supported field types" msgstr "Scegli uno dei dei tipi di campo supportati" #: profile-builder-2.0/admin/manage-fields.php:84 msgid ". Extra Field Types are available in Hobbyist or PRO versions." msgstr ". Ulteriori campi sono disponibili su Hobbyist o nella versione PRO." #: profile-builder-2.0/admin/manage-fields.php:131 msgid "Site Key" msgstr "Chiave del sito" #: profile-builder-2.0/admin/manage-fields.php:131 msgid "The site key from Google, www.google.com/recaptcha" msgstr "Chiave del sito da Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "Secret Key" msgstr "Chiave segreta" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "The secret key from Google, www.google.com/recaptcha" msgstr "La chiave segreta da Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:1023 msgid "You must enter the site key\n" msgstr "Deve inserire la chiave del sito\n" #: profile-builder-2.0/admin/manage-fields.php:1025 msgid "You must enter the secret key\n" msgstr "Deve inserire la chiave segreta\n" #: profile-builder-2.0/admin/add-ons.php:10 #: profile-builder-2.0/admin/add-ons.php:32 msgid "Add-Ons" msgstr "Funzione aggiuntiva" #: profile-builder-2.0/admin/add-ons.php:34 #: profile-builder-2.0/admin/add-ons.php:129 #: profile-builder-2.0/admin/add-ons.php:231 #: profile-builder-2.0/admin/pms-cross-promotion.php:78 #: profile-builder-2.0/admin/pms-cross-promotion.php:114 #: profile-builder-2.0/admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "Attiva" #: profile-builder-2.0/admin/add-ons.php:36 #: profile-builder-2.0/admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "Scarica ed installa" #: profile-builder-2.0/admin/add-ons.php:37 #: profile-builder-2.0/admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "Installazione completata" #: profile-builder-2.0/admin/add-ons.php:39 msgid "Add-On is Active" msgstr "La funzione aggiuntiva è attiva" #: profile-builder-2.0/admin/add-ons.php:40 msgid "Add-On has been activated" msgstr "La funzione aggiuntiva è stata attivata" #: profile-builder-2.0/admin/add-ons.php:41 #: profile-builder-2.0/admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "Riprovare l'installazione" #: profile-builder-2.0/admin/add-ons.php:43 #: profile-builder-2.0/admin/add-ons.php:140 msgid "Add-On is active" msgstr "La funzione aggiuntiva è attiva" #: profile-builder-2.0/admin/add-ons.php:44 #: profile-builder-2.0/admin/add-ons.php:138 msgid "Add-On is inactive" msgstr "La funzione aggiuntiva non è attiva" #: profile-builder-2.0/admin/add-ons.php:46 #: profile-builder-2.0/admin/add-ons.php:133 #: profile-builder-2.0/admin/add-ons.php:235 #: profile-builder-2.0/admin/pms-cross-promotion.php:90 #: profile-builder-2.0/admin/pms-cross-promotion.php:118 #: profile-builder-2.0/admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "Non attivato" #: profile-builder-2.0/admin/add-ons.php:47 msgid "Add-On has been deactivated." msgstr "La funzione aggiuntiva è stata disattivata" #: profile-builder-2.0/admin/add-ons.php:59 msgid "Something went wrong, we could not connect to the server. Please try again later." msgstr "Qualcosa non ha funzionato, la connessione al server non è riuscita. Riprovare più tardi." #: profile-builder-2.0/admin/pms-cross-promotion.php:137 #: profile-builder-2.0/admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "Installa ora" #: profile-builder-2.0/admin/add-ons.php:153 #: profile-builder-2.0/admin/add-ons.php:251 #: profile-builder-2.0/admin/pms-cross-promotion.php:141 #: profile-builder-2.0/admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "Compatibile con la versione di Profile Builder." #: profile-builder-2.0/admin/add-ons.php:162 msgid "Upgrade Profile Builder" msgstr "Aggiorna Profile Builder" #: profile-builder-2.0/admin/add-ons.php:163 msgid "Not compatible with Profile Builder" msgstr "Non compatibile con Profile Builder" #: profile-builder-2.0/admin/add-ons.php:171 msgid "Not compatible with your version of Profile Builder." msgstr "Non compatibile con la tua versione di Profile Builder." #: profile-builder-2.0/admin/add-ons.php:172 msgid "Minimum required Profile Builder version:" msgstr "Minima versione di Profile Builder richiesta:" #: profile-builder-2.0/admin/add-ons.php:177 msgid "Could not install add-on. Retry or install manually." msgstr "Non posso installare la funzione aggiuntiva. Riprovare o installare manualmente." #: profile-builder-2.0/front-end/default-fields/email/email.php:51 msgid "You must enter a valid email address." msgstr "Deve essere inserito un indirizzo email valido." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "Questo username non è valido perchè utilizza caratteri non permessi." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "Per favore inserire un username valido." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72 #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85 msgid "Only administrators can see this field on edit profile forms." msgstr "Solo l'amministratore può visualizzare questo campo nelle form di gestione dei profili." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81 msgid "As an administrator you cannot change your role." msgstr "Come amministratore non puoi cambiare il tuo ruolo." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117 msgid "" "\n" "

            {{username}} has requested a password change via the password reset feature.

            \n" "

            His/her new password is: {{password}}

            \n" msgstr "" "\n" "

            {{username}} ha richiesto il cambio della password attraverso la funzione di reset.

            \n" "

            La sua nuova password è: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141 msgid "Admin Notification for User Password Reset" msgstr "Notifica dell'amministratore per il reset della password dell'utente" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46 msgid "Reset Key" msgstr "Ripristino della chiave" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47 msgid "Reset Url" msgstr "Ripristino dell'Url" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48 msgid "Reset Link" msgstr "Ripristino del link" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204 msgid "" "\n" "

            Someone requested that the password be reset for the following account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            \n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" msgstr "" "\n" "

            Qualcuno ha richiesto il reset della password per questo account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            Se non è stata richiesta da voi, ignorate questa mail.

            \n" "

            Per il reset della password collegarsi a questo indirizzo:
            \n" "{{{reset_link}}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218 msgid "[{{site_name}}] Password Reset" msgstr "[{{site_name}}] Ripristino della password" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229 msgid "Password Reset Email" msgstr "Email del ripristino della password" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235 msgid "" "\n" "

            You have successfully reset your password to: {{password}}

            \n" msgstr "" "\n" "

            Il processo di reset della password è andato a buon fine, la nuova password è: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset Successfully" msgstr "[{{site_name}}] Ripristino della password riuscito" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256 msgid "Password Reset Success Email" msgstr "Email di conferma del successo di ripristino della password" #: profile-builder-2.0/modules/user-listing/userlisting.php:159 msgid "User Nicename" msgstr "Utente Nicename" #: pb-add-on-woocommerce/woosync-page.php:80 #: pb-add-on-woocommerce/woosync-page.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:499 msgid "None" msgstr "Nessuno" #: profile-builder-2.0/admin/admin-functions.php:132 msgid "ERROR: The password must have the minimum length of %s characters" msgstr "ERROR: La password deve avere la lunghezza minima di %s caratteri" #: profile-builder-2.0/admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr "ERROR: La password deve avere la lunghezza minima di %s" #: profile-builder-2.0/admin/general-settings.php:179 msgid "Username and Email" msgstr "Nome utente ed indirizzo Email" #: profile-builder-2.0/admin/general-settings.php:184 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "\"Nome utente ed Email\" - gli utenti possono fare il login sia con nome il utente che con l'email" #: profile-builder-2.0/admin/general-settings.php:185 msgid "\"Username\" - users can Log In only with Username." msgstr "\"Nome utente\" - l'utente può fare il login solo con il suo nome utente" #: profile-builder-2.0/admin/general-settings.php:186 msgid "\"Email\" - users can Log In only with Email." msgstr "\"Email\" - utente può fare il log in solo con email" #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "Specificare le estensioni che si vogliono limitare in fase di carico dei file
            Ad esempio: .ext1,.ext2,.ext3
            Se non specificate, i valori di default sono: .jpg,.jpeg,.gif,.png (.*)" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)" msgstr "Specificare le esternsioni dei file che si vogliono limitare in fase di carico dei file.
            Ad esempio: .ext1,.ext2,.ext3
            Se non sepecificati, per default sono tutte le estensioni permesse da Wordpress (.*)" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "User Roles" msgstr "Regole dell'utente" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "Selezionare quali regole utente devono essere mostrate all'utente (drag-and-drop per riordinare)" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "User Roles Order" msgstr "Ordine delle regole utente" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "Save the user role order from the user roles checkboxes" msgstr "Salva la regola utente dalle checkboxes delle regole dell'utente" #: profile-builder-2.0/admin/manage-fields.php:1128 msgid "Please select at least one user role\n" msgstr "Per favore selezionare almeno una regola utente\n" #: profile-builder-2.0/admin/register-version.php:22 msgid "Profile Builder Register" msgstr "Registro del Profile Builder" #: profile-builder-2.0/admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "Il numero di serie scadrà a breve!" #: profile-builder-2.0/admin/register-version.php:81 msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr "Il suo numero di serie sta per scadere, per favore%1$s rinnova la vostra licenza%2$s." #: profile-builder-2.0/admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr "La vostra licenza è scaduta, per favore %1$s rinnovate la vostra licenza%2$s." #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 msgid "Add Entry" msgstr "Aggiungi voce" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 msgid "show" msgstr "mostra" #: profile-builder-2.0/features/functions.php:736 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" msgstr "Per permettere agli utenti di registrarsi tramite Profile Builder, devi prima abilitare la registrazione degli utenti. Vai a %1$sNetwork Settings%2$s, e sotto Registration Settings devi abilitare \"Lo user account può essere registrato\". %3$sAbbandona%4$s" #: profile-builder-2.0/front-end/class-formbuilder.php:659 msgid "User to edit:" msgstr "Utente da modificare:" #: profile-builder-2.0/front-end/default-fields/password/password.php:46 #: profile-builder-2.0/front-end/recover.php:262 msgid "The password must have the minimum length of %s characters" msgstr "La password deve avere la lunghezza minima di %s caratteri" #: profile-builder-2.0/front-end/default-fields/password/password.php:50 #: profile-builder-2.0/front-end/recover.php:266 msgid "The password must have a minimum strength of %s" msgstr "La password deve avere come minimo una robustezza uguale a %s" #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118 msgid "You cannot register this user role" msgstr "Non puoi registrare questa regola utente" #: profile-builder-2.0/front-end/login.php:153 msgid "username or email" msgstr "nome utente o email" #: profile-builder-2.0/front-end/login.php:222 msgid "Username or Email" msgstr "Nome utente o Email" #: profile-builder-2.0/front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "Ora sei loggato come %s." #: profile-builder-2.0/front-end/logout.php:15 msgid "Log out »" msgstr "Log out »" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "Regola utente" #: profile-builder-2.0/modules/user-listing/userlisting.php:2167 msgid "View all extra shortcode parameters" msgstr "Visualizza tutti i parametri delle scorciatoie" #: profile-builder-2.0/modules/user-listing/userlisting.php:2181 msgid "displays only the users that you specified the user_id for" msgstr "Visualizza solo gli utenti che specificati per lo user_id" #: profile-builder-2.0/modules/user-listing/userlisting.php:2187 msgid "displays all users except the ones you specified the user_id for" msgstr "Visualizza tutti gli utenti ad eccezione di quelli specificati nello user_id" #: profile-builder-2.0/features/functions.php:566 msgid "Minimum length of %d characters" msgstr "Lunghezza minima dei caratteri %d " #: profile-builder-2.0/front-end/class-formbuilder.php:146 #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "This message is only visible by administrators" msgstr "Questo messaggio è visibile solo dagli amministratori " #: profile-builder-2.0/modules/user-listing/userlisting.php:413 msgid "User not found" msgstr "Utente non trovato " #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "I tag validi sono {{reply_to}} e {{site_name}} " #: profile-builder-2.0/admin/admin-bar.php:48 msgid "Choose which user roles view the admin bar in the front-end of the website." msgstr "Scegli quali ruoli utente visualizzano la barra admin sul front-end del sito web. " #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes" msgstr "inserisci una lista di valori separata da virgole
            Può contenere qualsiasi cosa, in quanto è nascosta agli utenti, ma non può contenere caratteri speciali o apostrofo" #: profile-builder-2.0/admin/manage-fields.php:1055 msgid "The meta-name cannot be empty\n" msgstr "Il meta-name non può essere vuoto\\n\n" #: profile-builder-2.0/admin/register-version.php:69 msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received" msgstr "Adesso che hai acquistato una copia di %s, spendi un istante e registrala con il numero di serie che hai ricevuto. " #: profile-builder-2.0/admin/register-version.php:243 msgid "

            Your Profile Builder serial number is invalid or missing.
            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

            " msgstr "

            Il tuo numero seriale di Profile Builder è sbagliato o manca.
            Per cortesia %1$registra la tua copia%2$s così da ricevere accesso agli aggiornamenti automatici e al supporto. Hai bisogno di un numero di licenza? %3$sAcquistane uno adesso%4$s

            " #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17 #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60 msgid "...Choose" msgstr "...Scegli " #: profile-builder-2.0/features/class-list-table.php:526 #: profile-builder-2.0/features/class-list-table.php:942 msgid "1 item" msgstr "1 voce " #: profile-builder-2.0/features/functions.php:552 msgid "Very Weak" msgstr "Molto debole " #: profile-builder-2.0/features/functions.php:640 msgid "This field is required" msgstr "Questo campo è obbligatorio " #: profile-builder-2.0/features/functions.php:704 msgid "Cancel" msgstr "Annulla " #: profile-builder-2.0/features/functions.php:740 msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s" msgstr "Per permettere agli utenti di registrarsi nel tuo sito via Profile Builder, devi prima abilitare la registrazione degli utenti. Vai al menu %1$sImpostazioni -> Impostazioni generali%2$s e per l'Appartenenza seleziona \"Possono essere creati nuovi conto utente\". %3$sDismiss%4$s" #: profile-builder-2.0/front-end/login.php:144 msgid "Invalid username." msgstr "Nome utente non valido. " #: profile-builder-2.0/front-end/login.php:149 #: profile-builder-2.0/front-end/login.php:153 msgid "username" msgstr "nome utente " #: profile-builder-2.0/front-end/login.php:149 msgid "email" msgstr "email " #: profile-builder-2.0/front-end/login.php:256 msgid "Lost your password?" msgstr "Hai dimenticato la tua password? " #: profile-builder-2.0/index.php:34 msgid " is also activated. You need to deactivate it before activating this version of the plugin." msgstr "è anche attivata. Devi deattivarla prima di attivare questa versione del plugin. " #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54 msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email" msgstr "Deve essere un indirizzo di mail valido o il tag {{reply_to}} che reindirizza alla mail dell'amministratore " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508 msgid "Your selected password at signup" msgstr "La tua password scelta alla registrazione " #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save." msgstr "Queste impostazioni saranno replicate anche nella pagina d'impostazioni \\\"Admin Email Customizer\\\" dopo il salvataggio. " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "Questo modulo è vuoto. " #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "Cancella tutte le voci " #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all" msgstr "Cancella tutto " #: profile-builder-2.0/modules/user-listing/userlisting.php:1621 msgid "Choose..." msgstr "Sceglie... " #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Set the number of users to be displayed on every paginated part of the all-userlisting" msgstr "Imposta il numero di utenti da visualizzare su ogni pagina della lista di tutti gli utenti " #: profile-builder-2.0/admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "Mostra/Nascondi la Barra admin agli utenti sul Front-End " #: profile-builder-2.0/admin/admin-bar.php:10 #: profile-builder-2.0/admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "Impostazioni Barra Admin " #: profile-builder-2.0/admin/admin-bar.php:57 msgid "User-Role" msgstr "Utente-Ruolo " #: profile-builder-2.0/admin/admin-bar.php:58 msgid "Visibility" msgstr "Visibilità " #: profile-builder-2.0/admin/admin-bar.php:73 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "Default " #: profile-builder-2.0/admin/admin-bar.php:74 msgid "Show" msgstr "Mostra " #: profile-builder-2.0/admin/admin-bar.php:75 #: profile-builder-2.0/modules/user-listing/userlisting.php:1554 msgid "Hide" msgstr "Nascondi " #: pb-add-on-woocommerce/woosync-page.php:147 #: profile-builder-2.0/admin/admin-bar.php:86 #: profile-builder-2.0/admin/general-settings.php:224 #: profile-builder-2.0/admin/register-version.php:95 #: profile-builder-2.0/features/functions.php:697 #: profile-builder-2.0/modules/modules.php:127 msgid "Save Changes" msgstr "Salva i cambiamenti" #: profile-builder-2.0/admin/admin-functions.php:37 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 )" msgstr "Il login sarà fatto attraverso E-mail. Questo campo NON apparirà nel front-end! (puoi cambiare questa impostazione nel tab \\\"%s\\\") " #: profile-builder-2.0/admin/admin-functions.php:37 #: profile-builder-2.0/admin/general-settings.php:10 #: profile-builder-2.0/admin/general-settings.php:35 msgid "General Settings" msgstr "Impostazioni generali " #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:210 msgid "Very weak" msgstr "Molto debole " #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:211 #: profile-builder-2.0/features/functions.php:552 msgid "Weak" msgstr "Debole " #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:212 #: profile-builder-2.0/features/functions.php:552 msgid "Medium" msgstr "Media " #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:213 #: profile-builder-2.0/features/functions.php:552 msgid "Strong" msgstr "Forte " #: profile-builder-2.0/admin/admin-functions.php:187 msgid "Add Field" msgstr "Aggiungi Campo " #: profile-builder-2.0/admin/admin-functions.php:189 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390 msgid "Save Settings" msgstr "Salva le impostazioni " #: profile-builder-2.0/admin/basic-info.php:10 msgid "Basic Information" msgstr "Informazioni base " #: profile-builder-2.0/admin/basic-info.php:29 msgid "Version %s" msgstr "Versione %s " #: profile-builder-2.0/admin/basic-info.php:30 msgid "Profile Builder " msgstr "Profile Builder " #: profile-builder-2.0/admin/basic-info.php:31 msgid "The best way to add front-end registration, edit profile and login forms." msgstr "La migliore via per aggiungere registrazione front-end, modificare profilo e moduli login." #: profile-builder-2.0/admin/basic-info.php:33 msgid "For Modern User Interaction" msgstr "Per interazione moderna con gli utenti " #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25 #: profile-builder-2.0/admin/basic-info.php:36 #: profile-builder-2.0/features/login-widget/login-widget.php:59 msgid "Login" msgstr "Login " #: profile-builder-2.0/admin/basic-info.php:40 msgid "Registration" msgstr "Registrazione " #: profile-builder-2.0/admin/basic-info.php:44 msgid "Edit Profile" msgstr "Modifica profilo " #: profile-builder-2.0/admin/basic-info.php:51 msgid "Extra Features" msgstr "Caratteristiche aggiuntive " #: profile-builder-2.0/admin/basic-info.php:52 msgid "Features that give you more control over your users, increased security and help you fight user registration spam." msgstr "Caratteristiche che assicurano un maggior controllo sugli utenti, un maggior sicurezza ed aiuta a combattere le registrazioni spam." #: profile-builder-2.0/admin/basic-info.php:53 msgid "Enable extra features" msgstr "Abilita le caratteristiche aggiuntive " #: profile-builder-2.0/admin/basic-info.php:57 msgid "Recover Password" msgstr "Recupera Password " #: profile-builder-2.0/admin/basic-info.php:61 msgid "Admin Approval (*)" msgstr "Autorizzazione di Admin (*)" #: profile-builder-2.0/admin/basic-info.php:62 msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI." msgstr "Sei tu a decidere chi è un utente sul tuo sito web. Ricevi una notifica via e-mail o approva più utenti contemporaneamente dall'interfaccia utente WordPress." #: profile-builder-2.0/admin/basic-info.php:65 msgid "Email Confirmation" msgstr "Conferma Email " #: profile-builder-2.0/admin/basic-info.php:66 msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address." msgstr "Assicurarsi che gli utenti si registrino con email validi. Alla registrazione gli utenti riceveranno una notifica di conferma dell'indirizzo email." #: profile-builder-2.0/admin/basic-info.php:69 msgid "Minimum Password Length and Strength Meter" msgstr "Lunghezza Minima Password e Misuratore Intensità" #: profile-builder-2.0/admin/basic-info.php:70 msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength." msgstr "Elimina le password deboli impostando una lunghezza minima delle password e applicando una determinata intensità della password." #: profile-builder-2.0/admin/basic-info.php:73 msgid "Login with Email or Username" msgstr "Login con Email o Nome Utente " #: profile-builder-2.0/admin/basic-info.php:74 msgid "Allow users to log in with their email or username when accessing your site." msgstr "Permetti agli utenti di fare il login con la loro email o username quando accedono al tuo sito. " #: profile-builder-2.0/admin/basic-info.php:87 msgid "Customize Your Forms The Way You Want (*)" msgstr "Personalizza i tuoi moduli come desideri (*)" #: profile-builder-2.0/admin/basic-info.php:88 msgid "With Extra Profile Fields you can create the exact registration form your project needs." msgstr "Con i campi extra del profilo puoi creare esattamente il modulo di registrazione di cui ha bisogno il tuo progetto." #: profile-builder-2.0/admin/basic-info.php:90 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "I campi extra del profilo sono disponibili nelle versioni Hobbyist o PRO " #: profile-builder-2.0/admin/basic-info.php:92 msgid "Get started with extra fields" msgstr "Inizia con i campi extra " #: profile-builder-2.0/admin/basic-info.php:95 msgid "Avatar Upload" msgstr "Caricamento Avatar " #: profile-builder-2.0/admin/basic-info.php:96 msgid "Generic Uploads" msgstr "Caricamento generico " #: profile-builder-2.0/admin/basic-info.php:97 msgid "Agree To Terms Checkbox" msgstr "Casella Accetta i Termini di Utilizzo " #: profile-builder-2.0/admin/basic-info.php:98 msgid "Datepicker" msgstr "Datepicker " #: profile-builder-2.0/admin/basic-info.php:101 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: profile-builder-2.0/admin/basic-info.php:102 msgid "Country Select" msgstr "Seleziona Paese " #: profile-builder-2.0/admin/basic-info.php:104 msgid "Timezone Select" msgstr "Seleziona Fuso Orario " #: profile-builder-2.0/admin/basic-info.php:108 msgid "Input / Hidden Input" msgstr "Inserimento / Inserimento nascosto " #: profile-builder-2.0/admin/basic-info.php:110 msgid "Checkbox" msgstr "Casella " #: profile-builder-2.0/admin/basic-info.php:111 msgid "Select" msgstr "Seleziona " #: profile-builder-2.0/admin/basic-info.php:112 msgid "Radio Buttons" msgstr "Tasti Radio " #: profile-builder-2.0/admin/basic-info.php:113 msgid "Textarea" msgstr "Area di testo " #: profile-builder-2.0/admin/basic-info.php:125 msgid "Powerful Modules (**)" msgstr " Moduli potenti (**) " #: profile-builder-2.0/admin/basic-info.php:126 msgid "Everything you will need to manage your users is probably already available using the Pro Modules." msgstr "Tutto il necessario per gestire gli utenti è probabilmente già disponibile con i Moduli Pro. " #: profile-builder-2.0/admin/basic-info.php:128 msgid "Enable your modules" msgstr "Abilita i tuoi moduli" #: profile-builder-2.0/admin/basic-info.php:131 msgid "Find out more about PRO Modules" msgstr "Scopri di più dei moduli PRO " #: profile-builder-2.0/admin/basic-info.php:136 #: profile-builder-2.0/modules/modules.php:89 #: profile-builder-2.0/modules/user-listing/userlisting.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:12 #: profile-builder-2.0/modules/user-listing/userlisting.php:17 #: profile-builder-2.0/modules/user-listing/userlisting.php:23 msgid "User Listing" msgstr "Lista degli utenti " #: profile-builder-2.0/admin/basic-info.php:138 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." msgstr "Modelli facili da modificare per elencare gli utenti del tuo sito web, così come creare pagine per singoli utenti. Basato su shortcode, offre molte opzioni per personalizzare le tue liste. " #: profile-builder-2.0/admin/basic-info.php:144 msgid "Email Customizer" msgstr "Configuratore Email " #: profile-builder-2.0/admin/basic-info.php:145 msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval." msgstr "Personalizza tutte le email inviate ai tuoi utenti o amministratori. Alla registrazione, conferma della email, approvazione o non approvazione dell'amministratore." #: profile-builder-2.0/admin/basic-info.php:148 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33 #: profile-builder-2.0/modules/modules.php:110 msgid "Custom Redirects" msgstr "Reindirizzamenti personalizzabili " #: profile-builder-2.0/admin/basic-info.php:149 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." msgstr "Tieni lontano i tuoi utenti dalla dashboard di WordPress, reindirizzali alla pagina iniziale dopo il loro login o la loro registrazione, il tutto con pochi clicks." #: profile-builder-2.0/admin/basic-info.php:154 #: profile-builder-2.0/modules/modules.php:75 msgid "Multiple Registration Forms" msgstr "Moduli per registrazioni multiple" #: profile-builder-2.0/admin/basic-info.php:155 msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users." msgstr "Predisponi moduli per registrazioni multiple con differenti campi per particolari ruoli degli utenti. Raccogli diversi informazioni da diversi tipi d'utenti." #: profile-builder-2.0/admin/basic-info.php:158 #: profile-builder-2.0/modules/modules.php:82 msgid "Multiple Edit-profile Forms" msgstr "Moduli multipli per la modifica del profilo" #: profile-builder-2.0/admin/basic-info.php:159 msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles." msgstr "Permetti ai diversi ruoli degli utenti di modificare le loro specifiche informazioni. Predisponi moduli multipli per la modifica del profilo con differenti campi per particolari ruoli degli utenti." #: profile-builder-2.0/admin/basic-info.php:187 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr "* disponibile solo nella versione %1$sHobbyist e Pro%2$s." #: profile-builder-2.0/admin/basic-info.php:188 msgid "** only available in the %1$sPro version%2$s." msgstr "* disponibile solo nella versione %1$sPro%2$s. " #: profile-builder-2.0/admin/general-settings.php:39 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "Carica il proprio file CSS del Profile Builder nel front-end: " #: profile-builder-2.0/admin/general-settings.php:42 #: profile-builder-2.0/admin/general-settings.php:55 #: profile-builder-2.0/admin/general-settings.php:104 #: profile-builder-2.0/admin/general-settings.php:151 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Yes" msgstr "Si" #: profile-builder-2.0/admin/general-settings.php:44 msgid "You can find the default file here: %1$s" msgstr "Puoi trovare il file di default qui: %1$s" #: profile-builder-2.0/admin/general-settings.php:51 msgid "\"Email Confirmation\" Activated:" msgstr "\\\"Email di conferma\\\" Attivata: " #: profile-builder-2.0/admin/general-settings.php:56 #: profile-builder-2.0/admin/general-settings.php:105 #: profile-builder-2.0/admin/general-settings.php:150 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "No" msgstr "No " #: profile-builder-2.0/admin/general-settings.php:61 msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s." msgstr "Puoi trovare una lista degli indirizzi email non confermati qui %1$sUtenti > Tutti gli Utenti > Email di conferma%2$s" #: profile-builder-2.0/admin/general-settings.php:69 msgid "\"Email Confirmation\" Landing Page:" msgstr "\\\"Email di conferma\\\" pagina principale " #: profile-builder-2.0/admin/general-settings.php:74 msgid "Existing Pages" msgstr "Pagine esistenti" #: profile-builder-2.0/admin/general-settings.php:89 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." msgstr "Specifica la pagina dove gli utenti saranno reindirizzati alla conferma del conto email. Questa pagina può essere diversa dalla pagina(e) di registrazione e può essere cambiata in ogni momento. Se non è stata selezionata, una semplice pagina di conferma sarà visualizzata dall'utente." #: profile-builder-2.0/admin/general-settings.php:100 msgid "\"Admin Approval\" Activated:" msgstr "\\\"Approvazione dell'Admin\\\" attivata: " #: profile-builder-2.0/admin/general-settings.php:108 msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "Puoi trovare una lista degli utenti al %1$sUtenti > Tutti gli Utenti > Approvazione dell'Admin%2$s." #: profile-builder-2.0/admin/general-settings.php:165 msgid "\"Admin Approval\" Feature:" msgstr "Caratteristiche dell' \\\"Approvazione dell'Admin\\\": " #: profile-builder-2.0/admin/general-settings.php:168 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." msgstr "Sei tu a decidere chi è un utente sul tuo sito web. Ricevi una notifica via e-mail o approva più utenti contemporaneamente dall'interfaccia utente WordPress. Abilita Approvazione dell'Admin con l'upgrade ai versioni %1$sHobbyist o PRO%2$s. " #: profile-builder-2.0/admin/general-settings.php:175 msgid "Allow Users to Log in With:" msgstr "Permetti agli utenti di fare il login con: " #: profile-builder-2.0/admin/general-settings.php:180 #: profile-builder-2.0/admin/manage-fields.php:201 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167 #: profile-builder-2.0/front-end/login.php:85 #: profile-builder-2.0/front-end/login.php:99 #: profile-builder-2.0/front-end/login.php:218 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28 #: profile-builder-2.0/modules/user-listing/userlisting.php:102 #: profile-builder-2.0/modules/user-listing/userlisting.php:277 #: profile-builder-2.0/modules/user-listing/userlisting.php:730 #: profile-builder-2.0/modules/user-listing/userlisting.php:2219 msgid "Username" msgstr "Nome utente " #: profile-builder-2.0/admin/general-settings.php:181 #: profile-builder-2.0/front-end/login.php:215 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29 #: profile-builder-2.0/modules/user-listing/userlisting.php:736 #: profile-builder-2.0/modules/user-listing/userlisting.php:2220 msgid "Email" msgstr "Email " #: profile-builder-2.0/admin/general-settings.php:193 msgid "Minimum Password Length:" msgstr "Lunghezza Minima Password: " #: profile-builder-2.0/admin/general-settings.php:198 msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit" msgstr "Inserisci il numero minimo di caratteri che la password deve avere. Lascia vuoto per non avere un limite minimo" #: profile-builder-2.0/admin/general-settings.php:205 msgid "Minimum Password Strength:" msgstr "Intensità Minima Password: " #: profile-builder-2.0/admin/general-settings.php:209 msgid "Disabled" msgstr "Disabilitato " #: profile-builder-2.0/admin/manage-fields.php:12 msgid "Manage Fields" msgstr "Gestire i campi " #: profile-builder-2.0/admin/manage-fields.php:13 msgid "Manage Default and Extra Fields" msgstr "Gestire i campi di default ed i campi extra " #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Field Title" msgstr "Titolo campo " #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Title of the field" msgstr "Titolo del campo " #: profile-builder-2.0/admin/manage-fields.php:119 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "Campo " #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Meta-name" msgstr "Meta-name " #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "ID" msgstr "ID " #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be edited" msgstr "Un'ID unica, auto-generata per questo campo particolare
            La puoi usare in congiunzione con i filtri per indirizzarsi a questo elemento, se necessario
            Non può essere modificata " #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Description" msgstr "Descrizione " #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Enter a (detailed) description of the option for end users to read
            Optional" msgstr "Inserire una descrizione (dettagliata) dell'opzione da leggere per l'utente finale
            Opzionale " #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Row Count" msgstr "Conteggio righe " #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5" msgstr "Specifica il numero di righe per il campo 'Area testo'
            Se non specificato, sarà assunto per default pari a 5" #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Allowed Image Extensions" msgstr "Estensioni file immagini ammesse " #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Allowed Upload Extensions" msgstr "Estensioni ammesse per upload " #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Avatar Size" msgstr "Dimensione Avatar " #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100" msgstr "Inserire un valore (tra 20 e 200) per la dimensione dell'Avatar'
            Se non specificato, sarà impostato per default a 100" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Date-format" msgstr "Formato data " #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Terms of Agreement" msgstr "Termini dell'accordo " #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Enter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>" msgstr "Inserire una descrizione dettagliata dei termini dell'accordo per essere letta dall'utente.
            Possono essere inseriti dei link utilizzando la sintassi HTML standard: <a href=\\\"custom_url\\\">custom_text</a> " #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Options" msgstr "Opzioni " #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Labels" msgstr "Etichette " #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "Inserire una virgola di separazione nella lista delle etichette
            Visibile all'utente " #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default Value" msgstr "Valore di default " #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default value of the field" msgstr "Valore di default per il campo " #: profile-builder-2.0/admin/manage-fields.php:138 #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default Option" msgstr "Opzione di default " #: profile-builder-2.0/admin/manage-fields.php:138 msgid "Specify the option which should be selected by default" msgstr "Specificare l'opzione che sarà selezionata per default" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Default Option(s)" msgstr "Opzione/i di default " #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)" msgstr "Specificare l'opzione che sarà selezionata per default
            Se ci sono valori multipli, separarli con una \",\" (virgola)" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default Content" msgstr "Contenuto di default " #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default value of the textarea" msgstr "Valore di default per l'area testo " #: pb-add-on-woocommerce/index.php:306 #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Required" msgstr "Obbligatorio " #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Whether the field is required or not" msgstr "Indicare se il campo è obbligatorio oppure no" #: profile-builder-2.0/admin/manage-fields.php:161 msgid "Overwrite Existing" msgstr "Sovrascrivi l'esistente " #: profile-builder-2.0/admin/manage-fields.php:161 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
            Use this at your own risk" msgstr "Selezionando \"Si\" sarà aggiunto il campo alla lista, ma sarà sovrascritto ogni altro campo nel database che ha lo stesso meta-name
            L'utilizzo di questo è a proprio rischio" #: profile-builder-2.0/admin/manage-fields.php:167 msgid "Field Properties" msgstr "Proprietà del campo " #: profile-builder-2.0/admin/manage-fields.php:181 msgid "Registration & Edit Profile" msgstr "Registrazione & Modifica del profilo " #: profile-builder-2.0/admin/manage-fields.php:200 msgid "Name" msgstr "Nome " #: profile-builder-2.0/admin/manage-fields.php:201 msgid "Usernames cannot be changed." msgstr "Il Nome Utente non può essere cambiato. " #: pb-add-on-woocommerce/billing-fields.php:6 #: pb-add-on-woocommerce/shipping-fields.php:6 #: profile-builder-2.0/admin/manage-fields.php:202 msgid "First Name" msgstr "Nome " #: pb-add-on-woocommerce/billing-fields.php:7 #: pb-add-on-woocommerce/shipping-fields.php:7 #: profile-builder-2.0/admin/manage-fields.php:203 msgid "Last Name" msgstr "Cognome " #: profile-builder-2.0/admin/manage-fields.php:204 #: profile-builder-2.0/modules/user-listing/userlisting.php:769 #: profile-builder-2.0/modules/user-listing/userlisting.php:2227 msgid "Nickname" msgstr "Nickname" #: profile-builder-2.0/admin/manage-fields.php:205 msgid "Display name publicly as" msgstr "Nome pubblico visualizzato " #: profile-builder-2.0/admin/manage-fields.php:206 msgid "Contact Info" msgstr "Recapito " #: profile-builder-2.0/admin/manage-fields.php:207 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168 #: profile-builder-2.0/front-end/recover.php:118 #: profile-builder-2.0/modules/user-listing/userlisting.php:108 msgid "E-mail" msgstr "E-mail " #: profile-builder-2.0/admin/manage-fields.php:208 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32 #: profile-builder-2.0/modules/user-listing/userlisting.php:111 #: profile-builder-2.0/modules/user-listing/userlisting.php:751 #: profile-builder-2.0/modules/user-listing/userlisting.php:2221 msgid "Website" msgstr "Sito web " #: profile-builder-2.0/admin/manage-fields.php:212 msgid "AIM" msgstr "AIM " #: profile-builder-2.0/admin/manage-fields.php:213 msgid "Yahoo IM" msgstr "Yahoo IM " #: profile-builder-2.0/admin/manage-fields.php:214 msgid "Jabber / Google Talk" msgstr "Jabber / Google Talk " #: profile-builder-2.0/admin/manage-fields.php:217 msgid "About Yourself" msgstr "Descrizione person" #: profile-builder-2.0/admin/manage-fields.php:218 #: profile-builder-2.0/modules/user-listing/userlisting.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:754 #: profile-builder-2.0/modules/user-listing/userlisting.php:2222 msgid "Biographical Info" msgstr "Informazioni biografiche " #: profile-builder-2.0/admin/manage-fields.php:218 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "Condividi qualche informazione biografica per riempire il tuo profilo. Questo può essere reso pubblico. " #: profile-builder-2.0/admin/manage-fields.php:219 #: profile-builder-2.0/front-end/recover.php:73 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "Password " #: profile-builder-2.0/admin/manage-fields.php:219 msgid "Type your password." msgstr "Inserisci la tua password. " #: profile-builder-2.0/admin/manage-fields.php:220 #: profile-builder-2.0/front-end/recover.php:74 msgid "Repeat Password" msgstr "Ripeti la Password " #: profile-builder-2.0/admin/manage-fields.php:220 msgid "Type your password again. " msgstr "Inserisci di nuovo la tua password. " #: profile-builder-2.0/admin/manage-fields.php:980 #: profile-builder-2.0/admin/manage-fields.php:1137 msgid "You must select a field\n" msgstr "Devi selezionare un campo\\n\n" #: profile-builder-2.0/admin/manage-fields.php:990 msgid "Please choose a different field type as this one already exists in your form (must be unique)\n" msgstr "Per favore scegli un tipo differente per il campo perchè quello esiste già nel tuo modulo (deve essere unico)\n" #: profile-builder-2.0/admin/manage-fields.php:1001 msgid "The entered avatar size is not between 20 and 200\n" msgstr "La dimensione dell'avatar inserito non è compresa tra 20 e 200\\n\n" #: profile-builder-2.0/admin/manage-fields.php:1004 msgid "The entered avatar size is not numerical\n" msgstr "La dimensione dell'avatar inserito non è numerica\n" #: profile-builder-2.0/admin/manage-fields.php:1012 msgid "The entered row number is not numerical\n" msgstr "Il numero di riga inserito non è numerico\\n\n" #: profile-builder-2.0/admin/manage-fields.php:1015 msgid "You must enter a value for the row number\n" msgstr "È necessario inserire un numero di riga\\n\n" #: profile-builder-2.0/admin/manage-fields.php:1036 msgid "The entered value for the Datepicker is not a valid date-format\n" msgstr "Il valore inserito del Datepicker non è un formato di data valido\n" #: profile-builder-2.0/admin/manage-fields.php:1039 msgid "You must enter a value for the date-format\n" msgstr "Devi inserire un valore per il formato della data\\n\n" #: profile-builder-2.0/admin/manage-fields.php:1067 #: profile-builder-2.0/admin/manage-fields.php:1075 #: profile-builder-2.0/admin/manage-fields.php:1086 msgid "That meta-name is already in use\n" msgstr "Quel meta-name è già in uso\\n\n" #: profile-builder-2.0/admin/manage-fields.php:1117 msgid "The following option(s) did not coincide with the ones in the options list: %s\n" msgstr "Le seguenti opzioni non corrispondono a quelle nella lista delle opzioni: %s\\n\n" #: profile-builder-2.0/admin/manage-fields.php:1121 msgid "The following option did not coincide with the ones in the options list: %s\n" msgstr "La seguente opzione non corrisponde a quelle nella lista delle opzioni: %s\\n\n" #: profile-builder-2.0/admin/manage-fields.php:1144 msgid "That field is already added in this form\n" msgstr "Quel campo è già stato aggiunto in questo modulo\\n\n" #: profile-builder-2.0/admin/manage-fields.php:1193 msgid "
            Title
            Type
            Meta Name
            Required
            " msgstr "
            Title
            Type
            Meta Name
            Required
            " #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108 #: profile-builder-2.0/features/functions.php:718 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Edit" msgstr "Modifica " #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217 #: profile-builder-2.0/features/functions.php:711 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "Delete" msgstr "Cancella " #: profile-builder-2.0/admin/manage-fields.php:1208 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "Usa questi shortcodes sui pagini dove vuoi visualizzare i moduli:" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Your Version" msgstr "Registra la tua versione " #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Version" msgstr "Registra versione " #: profile-builder-2.0/admin/register-version.php:70 msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support." msgstr "Se registri questa versione di Profile Builder, riceverai informazioni riguardo aggiornamenti, patches ed assistenza tecnica." #: profile-builder-2.0/admin/register-version.php:72 msgid " Serial Number:" msgstr "Numero di serie: " #: profile-builder-2.0/admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "Il numero di serie è stato validato con successo! " #: profile-builder-2.0/admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "Il numero di serie inserito non può essere validato! " #: profile-builder-2.0/admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "Il numero di serie non è stato validato perchè è scaduto! " #: profile-builder-2.0/admin/register-version.php:85 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!" msgstr "Il numero di serie non è stato validato perchè il processo sta impiegando troppo tempo. Questo può essere dovuto al server non attivo. Per favore, riprovare più tardi!" #: profile-builder-2.0/admin/register-version.php:87 msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/features/functions.php:725 msgid "Content" msgstr "Contenuto " #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 msgid "Edit this item" msgstr "Modificare questa voce" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 msgid "Delete this item" msgstr "Eliminare questa voce " #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705 msgid "Please enter a value for the required field " msgstr "Per favore inserire un valore per il campo richiesto" #: pb-add-on-woocommerce/woo-checkout-field-support.php:262 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122 msgid "Select File" msgstr "Selezionare il file " #: pb-add-on-woocommerce/woo-checkout-field-support.php:252 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112 msgid "Remove" msgstr "Rimuovere " #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8 msgid "You can add the information for the %s after you add a entry" msgstr "Si può aggiungere l'informazione per il %s dopo aver aggiunto una voce" #: pb-add-on-woocommerce/woo-checkout-field-support.php:268 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128 msgid "Upload " msgstr "Caricare " #: profile-builder-2.0/features/class-list-table.php:184 msgid "No items found." msgstr "Nessuna voce trovata. " #: profile-builder-2.0/features/class-list-table.php:308 msgid "Bulk Actions" msgstr "Azione di blocco" #: profile-builder-2.0/features/class-list-table.php:318 msgid "Apply" msgstr "Applica " #: profile-builder-2.0/features/class-list-table.php:402 msgid "Show all dates" msgstr "Mostra tutte le date " #: profile-builder-2.0/features/class-list-table.php:415 msgid "%1$s %2$d" msgstr "%1$s %2$d " #: profile-builder-2.0/features/class-list-table.php:431 msgid "List View" msgstr "Vista in modo lista " #: profile-builder-2.0/features/class-list-table.php:432 msgid "Excerpt View" msgstr "Vista in estratto " #: profile-builder-2.0/features/class-list-table.php:458 msgid "%s pending" msgstr "%s in attesa " #: profile-builder-2.0/features/class-list-table.php:566 msgid "%1$s of %2$s" msgstr "%1$s di %2$s " #: profile-builder-2.0/features/class-list-table.php:713 msgid "Select All" msgstr "Seleziona tutto " #: profile-builder-2.0/features/functions.php:526 msgid "Strength indicator" msgstr "Indicatore intensità " #: profile-builder-2.0/features/admin-approval/admin-approval.php:14 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453 msgid "Admin Approval" msgstr "Approvazione dell' Admin " #: profile-builder-2.0/features/admin-approval/admin-approval.php:28 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "Vuoi " #: profile-builder-2.0/features/admin-approval/admin-approval.php:51 msgid "Your session has expired! Please refresh the page and try again" msgstr "La sessione è scaduta! Per favore ricarica la pagina e prova nuovamente " #: profile-builder-2.0/features/admin-approval/admin-approval.php:64 msgid "User successfully approved!" msgstr "Utente approvato con successo!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:74 msgid "User successfully unapproved!" msgstr "Utente non approvato con successo! " #: profile-builder-2.0/features/admin-approval/admin-approval.php:80 msgid "User successfully deleted!" msgstr "Utente eliminato con successo! " #: profile-builder-2.0/features/admin-approval/admin-approval.php:85 #: profile-builder-2.0/features/admin-approval/admin-approval.php:131 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "Non hai ancora il permesso per quell'azione o c'è stato un errore! " #: profile-builder-2.0/features/admin-approval/admin-approval.php:96 msgid "Your session has expired! Please refresh the page and try again." msgstr "La sessione è scaduta! Per favore ricarica la pagina e prova nuovamente" #: profile-builder-2.0/features/admin-approval/admin-approval.php:109 msgid "Users successfully approved!" msgstr "Utenti approvati con successo! " #: profile-builder-2.0/features/admin-approval/admin-approval.php:119 msgid "Users successfully unapproved!" msgstr "Utenti non approvati con successo! " #: profile-builder-2.0/features/admin-approval/admin-approval.php:127 msgid "Users successfully deleted!" msgstr "Utenti eliminati con successo! " #: profile-builder-2.0/features/admin-approval/admin-approval.php:147 msgid "Your account on %1$s has been approved!" msgstr "La tua registrazione su %1$s è stata approvata! " #: profile-builder-2.0/features/admin-approval/admin-approval.php:148 #: profile-builder-2.0/features/admin-approval/admin-approval.php:151 msgid "approved" msgstr "approvato " #: profile-builder-2.0/features/admin-approval/admin-approval.php:150 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "Un amministratore ha appena approvato la tua registrazione su %1$s (%2$s). " #: profile-builder-2.0/features/admin-approval/admin-approval.php:155 msgid "Your account on %1$s has been unapproved!" msgstr "La tua registrazione su %1$s non è stata approvata! " #: profile-builder-2.0/features/admin-approval/admin-approval.php:156 #: profile-builder-2.0/features/admin-approval/admin-approval.php:159 msgid "unapproved" msgstr "non approvato " #: profile-builder-2.0/features/admin-approval/admin-approval.php:158 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "Un amministratore ha appena approvato la tua registrazione su %1$s (%2$s). " #: profile-builder-2.0/features/admin-approval/admin-approval.php:177 msgid "ERROR: Your account has to be confirmed by an administrator before you can log in." msgstr "ERRORE: La tua registrazione deve essere confermata da un amministratore prima di fare il login. " #: profile-builder-2.0/features/admin-approval/admin-approval.php:189 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature." msgstr "Il tuo conto deve essere confermato da un amministratore prima di utilizzare la caratteristica \\\"Recupera Password\\\" . " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "eliminare questo utente? " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "non approvare questo utente? " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr "Non approvare " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "approvare questo utente? " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "Approvare " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167 #: profile-builder-2.0/modules/user-listing/userlisting.php:278 #: profile-builder-2.0/modules/user-listing/userlisting.php:742 #: profile-builder-2.0/modules/user-listing/userlisting.php:2224 msgid "Firstname" msgstr "Nome " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168 #: profile-builder-2.0/modules/user-listing/userlisting.php:745 #: profile-builder-2.0/modules/user-listing/userlisting.php:2225 msgid "Lastname" msgstr "Cognome " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170 #: profile-builder-2.0/modules/user-listing/userlisting.php:149 #: profile-builder-2.0/modules/user-listing/userlisting.php:279 #: profile-builder-2.0/modules/user-listing/userlisting.php:772 #: profile-builder-2.0/modules/user-listing/userlisting.php:2229 msgid "Role" msgstr "Ruolo " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169 msgid "Registered" msgstr "Registrato " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "Stato utente " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "Vuoi approvare in blocco gli utenti selezionati? " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "Vuoi non approvare in blocco gli utenti selezionati? " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "Vuoi eliminare in blocco gli utenti selezionati? " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278 msgid "Sorry, but you don't have permission to do that!" msgstr "Ci dispiace, ma non sei autorizzato a fare questo! " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339 msgid "Approved" msgstr "Approvato " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341 msgid "Unapproved" msgstr "Non approvato " #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454 msgid "All Users" msgstr "Tutti gli Utenti " #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 msgid "delete this user from the _signups table?" msgstr "eliminare questo utente dalla tabella _signups? " #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 msgid "confirm this email yourself?" msgstr "confermi tu stesso questa email? " #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218 msgid "Confirm Email" msgstr "Conferma Email " #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 msgid "resend the activation link?" msgstr "inviare di nuovo il link di attivazione? " #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219 msgid "Resend Activation Email" msgstr "Inviare di nuovo la Email di Attivazione " #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249 msgid "%s couldn't be deleted" msgstr "%s non può essere eliminato " #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253 msgid "All users have been successfully deleted" msgstr "Tutti gli utenti sono stati eliminati con successo " #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263 msgid "The selected users have been activated" msgstr "Gli utenti selezionati sono stati attivati " #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274 msgid "The selected users have had their activation emails resent" msgstr "Email di attivazione sono stati inviati di nuovo agli utenti selezionati " #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "Utenti con Indirizzo Email non confermato " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "C'è stato un errore nel compiere quell'azione! " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "L'utente selezionato non è stato eliminato " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "Notificazione Email inviata di nuovo all'utente " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398 msgid "[%1$s] Activate %2$s" msgstr "[%1$s] Attivare %2$s " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442 #: profile-builder-2.0/front-end/register.php:71 msgid "Could not create user!" msgstr "Non è stato possibile creare l'utente! " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445 msgid "That username is already activated!" msgstr "Questo nome utente è già attivato! " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468 msgid "There was an error while trying to activate the user" msgstr "C'è stato un errore mentre tentavi di attivare l'utente " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73 msgid "A new subscriber has (been) registered!" msgstr "Un nuovo abbonato (si) è registrato! " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "Nuovo abbonato su %1$s.

            Nome utente:%2$s
            E-mail:%3$s
            " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634 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!" msgstr "La caratteristica \"Admin Approval\" è stata attivata al momento della registrazione, quindi ricorda che devi approvare l'utente prima che lui/lei possa fare il log in." #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570 msgid "[%1$s] Your new account information" msgstr "[%1$s] Le informazioni della tua nuova registrazione " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581 msgid "Welcome to %1$s!


            Your username is:%2$s and password:%3$s" msgstr "Benvenuto su %1$s!


            Il tuo nome utente è:%2$s e la password:%3$s " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642 #: profile-builder-2.0/front-end/register.php:125 msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email." msgstr "Prima di poter accedere al tuo profilo, un amministratore deve approvarlo. Sarai notificato via email. " #: profile-builder-2.0/features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "Questo login widget ti lascia aggiungere un modulo login nella barra laterale. " #: profile-builder-2.0/features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "Profile Builder Login Widget " #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36 #: profile-builder-2.0/front-end/class-formbuilder.php:415 #: profile-builder-2.0/front-end/login.php:250 msgid "Register" msgstr "Registrati " #: profile-builder-2.0/features/login-widget/login-widget.php:63 msgid "Title:" msgstr "Titolo: " #: profile-builder-2.0/features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "Dopo il login reindirizzare URL (opzionale): " #: profile-builder-2.0/features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "Registra pagina URL (opzionale): " #: profile-builder-2.0/features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "URL della pagina Recupero Password (opzionale): " #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91 #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "I nomi utente non possono essere cambiati. " #: profile-builder-2.0/front-end/class-formbuilder.php:136 msgid "Only an administrator can add new users." msgstr "Soltanto un amministratore può aggiungere nuovi utenti. " #: profile-builder-2.0/front-end/class-formbuilder.php:146 msgid "Users can register themselves or you can manually create users here." msgstr "Gli utenti possono registrarsi da soli o puoi creare manualmente utenti qui. " #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "Users cannot currently register themselves, but you can manually create users here." msgstr "Al momento, gli utenti non possono registrarsi da soli, ma puoi creare manualmente utenti qui. " #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "Sei attualmente collegato come %1s. Non hai bisogno di un nuovo profilo. %2s " #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Log out of this account." msgstr "Fare il Log out da questo conto. " #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Logout" msgstr "Logout " #: profile-builder-2.0/front-end/class-formbuilder.php:175 msgid "You must be logged in to edit your profile." msgstr "Devi essere collegato per modificare il tuo profilo. " #: profile-builder-2.0/features/functions.php:994 msgid "here" msgstr "qui " #: profile-builder-2.0/features/functions.php:995 msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s" msgstr "Sarai reindirizzato in modo automatico in poco tempo. Se vedi questa pagina per più di %1$d secondi, clicca %2$s.%3$s " #: profile-builder-2.0/front-end/class-formbuilder.php:315 #: profile-builder-2.0/front-end/class-formbuilder.php:322 msgid "The account %1s has been successfully created!" msgstr "Il profilo %1s è stato creato con successo! " #: profile-builder-2.0/front-end/class-formbuilder.php:318 #: profile-builder-2.0/front-end/class-formbuilder.php:328 msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link." msgstr "Prima di poter accedere al tuo profilo %1s, devi confermare il tuo indirizzo email. Verifica il tuo inbox e clicca sul link di attivazione. " #: profile-builder-2.0/front-end/class-formbuilder.php:324 msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email." msgstr "Prima di poter accedere il tuo conto %1s, un amministratore deve approvarlo. Sarai notificato via email. " #: profile-builder-2.0/front-end/class-formbuilder.php:347 msgid "Your profile has been successfully updated!" msgstr "Il tuo profilo è stato aggiornato con successo! " #: profile-builder-2.0/front-end/class-formbuilder.php:358 msgid "There was an error in the submitted form" msgstr "C'è stato un errore nel modulo inviato " #: profile-builder-2.0/front-end/class-formbuilder.php:415 msgid "Add User" msgstr "Aggiungi Utente " #: profile-builder-2.0/admin/add-ons.php:170 #: profile-builder-2.0/front-end/class-formbuilder.php:418 msgid "Update" msgstr "Aggiorna" #: profile-builder-2.0/front-end/class-formbuilder.php:481 msgid "Send these credentials via email." msgstr "Invia queste credenziali via email. " #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92 #: profile-builder-2.0/front-end/login.php:137 #: profile-builder-2.0/front-end/login.php:144 #: profile-builder-2.0/front-end/login.php:158 #: profile-builder-2.0/front-end/recover.php:17 #: profile-builder-2.0/front-end/recover.php:245 msgid "ERROR" msgstr "ERRORE " #: profile-builder-2.0/front-end/login.php:137 msgid "The password you entered is incorrect." msgstr "La password inserita non è corretta. " #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Password Lost and Found." msgstr "Recupera password. " #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Lost your password" msgstr "Hai perso la tua password " #: profile-builder-2.0/front-end/login.php:158 msgid "Both fields are empty." msgstr "Entrambi i campi sono vuoti. " #: profile-builder-2.0/front-end/login.php:296 msgid "You are currently logged in as %1$s. %2$s" msgstr "Sei attualmente collegato come %1$s. %2$s " #: profile-builder-2.0/front-end/login.php:295 #: profile-builder-2.0/front-end/logout.php:25 msgid "Log out of this account" msgstr "Fare il Log out da questo profilo" #: profile-builder-2.0/front-end/login.php:295 msgid "Log out" msgstr "Log out " #: profile-builder-2.0/front-end/recover.php:17 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature." msgstr "Il tuo profilo deve essere confermato da un amministratore prima di utilizzare la funzione \\\"Reimposta la Password\\\" . " #: profile-builder-2.0/front-end/recover.php:94 msgid "Reset Password" msgstr "Reimposta la Password " #: profile-builder-2.0/front-end/recover.php:121 msgid "Please enter your username or email address." msgstr "Inserisci il tuo nome utente e la tua email. " #: profile-builder-2.0/front-end/recover.php:125 msgid "You will receive a link to create a new password via email." msgstr "Riceverai un'email con un link per generare una nuova password. " #: profile-builder-2.0/front-end/recover.php:122 msgid "Username or E-mail" msgstr "Nome Utente o Email " #: profile-builder-2.0/front-end/recover.php:138 msgid "Get New Password" msgstr "Richiedi una nuova password " #: profile-builder-2.0/front-end/recover.php:185 msgid "The username entered wasn't found in the database!" msgstr "Il nome utente inserito non è presente nel database! " #: profile-builder-2.0/front-end/recover.php:185 msgid "Please check that you entered the correct username." msgstr "Assicurati di aver inserito il corretto Nome Utente. " #: profile-builder-2.0/front-end/recover.php:200 msgid "Check your e-mail for the confirmation link." msgstr "Verifica la tua e-mail per il link di conferma. " #: profile-builder-2.0/front-end/recover.php:235 msgid "Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s" msgstr "Qualcuno ha richiesto di reimpostare la password del seguente profilo: %1$s
            In caso di errore, semplicemente ignora questa email e non succederà niente.
            Per reimpostare la tua password, visita il seguente link:%2$s " #: profile-builder-2.0/front-end/recover.php:238 msgid "Password Reset from \"%1$s\"" msgstr "Reimpostare password da \\\"%1$s\\\" " #: profile-builder-2.0/front-end/recover.php:245 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "C'è stato un errore mentre tentavi di inviare il link di attivazione al %1$s! " #: profile-builder-2.0/front-end/recover.php:207 msgid "The email address entered wasn't found in the database!" msgstr "L'indirizzo email inserito non è presente nel database! " #: profile-builder-2.0/front-end/recover.php:207 msgid "Please check that you entered the correct email address." msgstr "Assicurati di aver inserito il corretto indirizzo email. " #: profile-builder-2.0/front-end/recover.php:273 msgid "Your password has been successfully changed!" msgstr "La tua password è stata modificata con successo! " #: profile-builder-2.0/front-end/recover.php:292 msgid "You have successfully reset your password to: %1$s" msgstr "Hai reimpostato la tua password con successo a: %1$s " #: profile-builder-2.0/front-end/recover.php:295 #: profile-builder-2.0/front-end/recover.php:306 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "Password reimpostata con successo per %1$s su \\\"%2$s\\\" " #: profile-builder-2.0/front-end/recover.php:303 msgid "%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s" msgstr "%1$s ha richiesto una modifica della password via la caratteristica di reimpostazione password.
            Sua nuova password è:%2$s " #: profile-builder-2.0/front-end/recover.php:320 msgid "The entered passwords don't match!" msgstr "Le password inserite non coincidono! " #: profile-builder-2.0/front-end/recover.php:375 msgid "ERROR:" msgstr "ERRORE: " #: profile-builder-2.0/front-end/recover.php:375 msgid "Invalid key!" msgstr "Chiave non valida! " #: profile-builder-2.0/front-end/register.php:56 msgid "Invalid activation key!" msgstr "Chiave d'attivazione non valida! " #: profile-builder-2.0/front-end/register.php:60 msgid "This username is now active!" msgstr "Questo nome utente è attivo! " #: profile-builder-2.0/front-end/register.php:74 msgid "This username is already activated!" msgstr "Questo nome utente è già attivato! " #: profile-builder-2.0/front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "La tua email è stata confermata con successo. " #: profile-builder-2.0/front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "C'è stato un errore mentre tentavi di attivare l'utente. " #: pb-add-on-woocommerce/index.php:393 #: profile-builder-2.0/front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "La email inserita non è una email valida. " #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "Questa email è già riservata ad essere utilizzata fra poco tempo. " #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 #: profile-builder-2.0/front-end/default-fields/username/username.php:49 #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "Prego di provare una email diversa! " #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "Questa email è già in uso. " #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37 #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "Le password non corrispondono " #: profile-builder-2.0/front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "Questo Nome Utente già esiste. " #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "Questo nome utente è già riservato ad essere utilizzato fra poco tempo. " #: profile-builder-2.0/modules/user-listing/userlisting.php:276 msgid "Avatar" msgstr "Avatar" #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72 #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45 #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45 #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40 #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34 #: profile-builder-2.0/front-end/extra-fields/input/input.php:30 #: profile-builder-2.0/front-end/extra-fields/map/map.php:51 #: profile-builder-2.0/front-end/extra-fields/number/number.php:30 #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39 #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52 #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46 #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49 #: profile-builder-2.0/front-end/extra-fields/select/select.php:51 #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70 #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "obbligatorio " #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48 msgid "To use reCAPTCHA you must get an API key from" msgstr "Per usare reCAPTCHA devi ottenere una chiave API da " #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "Per ragioni di sicurezza, devi cambiare l'ip a distanza su reCAPTCHA! " #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "Per usare reCAPTCHA devi ottenere una chiave API pubblica da: " #: profile-builder-2.0/modules/modules.php:11 #: profile-builder-2.0/modules/modules.php:58 msgid "Modules" msgstr "Moduli " #: profile-builder-2.0/modules/modules.php:59 msgid "Here you can activate / deactivate available modules for Profile Builder." msgstr "Qui puoi abilitare / disabilitare i moduli disponibili per Profile Builder. " #: profile-builder-2.0/modules/modules.php:69 msgid "Name/Description" msgstr "Nome/Descrizione " #: profile-builder-2.0/modules/modules.php:70 msgid "Status" msgstr "Stato " #: profile-builder-2.0/modules/modules.php:77 #: profile-builder-2.0/modules/modules.php:84 #: profile-builder-2.0/modules/modules.php:91 #: profile-builder-2.0/modules/modules.php:98 #: profile-builder-2.0/modules/modules.php:105 #: profile-builder-2.0/modules/modules.php:112 #: profile-builder-2.0/modules/modules.php:119 msgid "Active" msgstr "Attivo " #: profile-builder-2.0/modules/modules.php:78 #: profile-builder-2.0/modules/modules.php:85 #: profile-builder-2.0/modules/modules.php:92 #: profile-builder-2.0/modules/modules.php:99 #: profile-builder-2.0/modules/modules.php:106 #: profile-builder-2.0/modules/modules.php:113 #: profile-builder-2.0/modules/modules.php:120 msgid "Inactive" msgstr "Inattivo " #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:96 msgid "Admin Email Customizer" msgstr "Configuratore Email Admin " #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:103 msgid "User Email Customizer" msgstr "Configuratore Email Utente " #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253 msgid "Save" msgstr "Salva " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "Reindirizza " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "URL " #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save." msgstr "Queste impostazioni saranno replicate anche nella pagina d'impostazioni \\\"User Email Customizer\\\" dopo il salvataggio. " #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41 msgid "From (name)" msgstr "Da (nome)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49 msgid "From (reply-to email)" msgstr "Da (email di risposta)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57 msgid "Common Settings" msgstr "Impostazioni comuni" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" msgstr "" "\n" "

            Nuovo iscritto a {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274 msgid "Email Subject" msgstr "Oggetto della email" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84 msgid "Default Registration & Registration with Email Confirmation" msgstr "Registrazione di default & Registrazione con email di conferma" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log in!

            \n" msgstr "" "\n" "

            Nuovo abbonato su {{site_name}}.

            \n" "

            Nome utente:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            La caratteristica Approvazione dell'Admin è stata abilitata al momento della registrazione,\n" "di conseguenza, tieni conto che devi approvare questo utente prima che esso faccia il login!

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143 msgid "Registration with Admin Approval" msgstr "Registrazione con Approvazione dell'Admin " #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "Dei tag disponibili " #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170 msgid "User Meta" msgstr "Meta Utente " #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "Url Sito " #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "Nome Sito " #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25 #: profile-builder-2.0/modules/user-listing/userlisting.php:158 msgid "User Id" msgstr "Id Utente " #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33 msgid "Reply To" msgstr "Risponde a " #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40 msgid "Activation Key" msgstr "Chiave d'attivazione " #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41 msgid "Activation Url" msgstr "Url d'attivazione " #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42 msgid "Activation Link" msgstr "Link d'attivazione " #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" msgstr "" "

            Benvenuto in {{site_name}}!

            \n" "

            Il tuo nome utente è:{{username}} e la tua password:{{password}}

            \n" "\n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85 msgid "Default Registration" msgstr "Registrazione Default " #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91 msgid "" "\n" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials.

            \n" msgstr "" "\n" "

            Per attivare il tuo utente, prego cliccare su:
            \n" "{{{activation_link}}}

            \n" "

            Dopo l'attivazione, riceverai un'altra email con le tue credenziali.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103 msgid "[{{site_name}}] Activate {{username}}" msgstr "[{{site_name}}] Attivare {{username}} " #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114 msgid "Registration with Email Confirmation" msgstr "Registrazione con email di conferma" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n" msgstr "" "

            Benvenuto in {{site_name}}!

            \n" "

            Il tuo nome utente è:{{username}} e la password:{{password}}

            \n" "

            Prima di accedere al tuo profilo, un amministratore deve approvarlo. Sarai notificato via email.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132 msgid "A new account has been created for you on {{site_name}}" msgstr "Un nuovo profilo è stato creato per te su {{site_name}} " #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148 msgid "" "\n" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Buone Notizie!

            \n" "

            Un amministratore ha appena approvato il tuo conto {{username}} su {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159 msgid "Your account on {{site_name}} has been approved!" msgstr "Il tuo profilo su {{site_name}} è stato approvato! " #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170 msgid "User Approval Notification" msgstr "Notifica approvazione utente " #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175 msgid "" "\n" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "

            Ciao,

            \n" "

            Sfortunatamente, un amministratore non ha approvato il tuo profilo: {{username}} su {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187 msgid "Your account on {{site_name}} has been unapproved!" msgstr "Il tuo profilo su {{site_name}} è stato non approvato! " #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198 msgid "Unapproved User Notification" msgstr "Notifica utente non approvato " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "Modulo modifica profilo " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13 #: profile-builder-2.0/modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "Aggiungi uno nuovo" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "Aggiungi nuovo modulo per l'editazione del profilo" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "Modifica il nuovo modulo edita profilo" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "Nuovo modulo edita profilo" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "Moduli di modifica profilo " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "Visualizza il Modulo di modifica profilo " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "Cerca i Moduli di modifica profilo " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "Nessun Modulo di modifica profilo trovato " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "Nessun Modulo di modifica profilo trovato tra i rifiuti " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138 #: profile-builder-2.0/modules/user-listing/userlisting.php:2115 msgid "Shortcode" msgstr "Shortcode " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159 #: profile-builder-2.0/modules/user-listing/userlisting.php:2136 msgid "(no title)" msgstr "(nessun titolo) " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178 #: profile-builder-2.0/modules/user-listing/userlisting.php:2156 msgid "The shortcode will be available after you publish this form." msgstr "Il shortcode sarà disponibile dopo la pubblicazione di questo modulo. " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180 #: profile-builder-2.0/modules/user-listing/userlisting.php:2158 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "Usa questo shortcode sulla pagina dove vuoi visualizzare il modulo: " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184 #: profile-builder-2.0/modules/user-listing/userlisting.php:2162 msgid "Note: changing the form title also changes the shortcode!" msgstr "Nota: il cambiamento del titolo del modulo cambia anche il shortcode! " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190 #: profile-builder-2.0/modules/user-listing/userlisting.php:2195 msgid "Form Shortcode" msgstr "Shortcode del Modulo " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "Reindirizzare o no l'utente ad una pagina specifica " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "Visualizza messaggi " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "Tempo permesso per visualizzare qualsiasi messaggio di successo (in secondi) " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 msgid "Specify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.com" msgstr "Specifica l'URL della pagina dove gli utenti saranno reindirizzati dopo che attualizzano i loro profili utilizzando questo modulo
            Usa il seguente formato: http://www.mysite.com " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "Dopo l'attualizzazione del profilo... " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "Aggiungi nuovo campo alla lista " #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage Title (Type)" msgstr "
            Titolo (Type)
            " #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "Devi specificare il titolo del modulo prima di crearlo " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "Modulo di registrazione " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "Aggiungi nuovo Modulo di registrazione " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "Modifica i Moduli di registrazione " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "Nuovo Modulo di registrazione " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "Moduli di registrazione " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "Visualizza il Modulo di registrazione " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "Cerca i Moduli di registrazione " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "Nessun Modulo di registrazione trovato " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "Nessun Modulo di registrazione trovato tra i rifiuti " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "Ruolo Default " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "Imposta regola" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Choose what role the user will have after (s)he registered
            If not specified, defaults to the role set in the WordPress settings" msgstr "Sceglie quale ruolo avrà l'utente dopo la sua registrazione
            Se non specificato, sarà impostato per default al ruolo impostato nelle impostazioni WordPress " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "Log in automatico" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Whether to automatically log in the newly registered user or not
            Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work" msgstr "Se connettere automaticamente o no gli utenti nuovi registrati
            Funziona soltanto su siti individuali senza le caratteristiche \\\"Approvazione dell'Admin\\\" e \\\"Conferma Email\\\" attivati
            AVVERTENZA: Mettere il modulo di registrazione nella cache impedisce il login automatico " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "Specify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.com" msgstr "Specifica l'URL della pagina dove gli utenti saranno reindirizzati dopo che siano registrati utilizzando questo modulo
            Usa il seguente formato: http://www.mysite.com " #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "Dopo registrazione..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1038 #: profile-builder-2.0/modules/user-listing/userlisting.php:1485 #: profile-builder-2.0/modules/user-listing/userlisting.php:1953 #: profile-builder-2.0/modules/user-listing/userlisting.php:2426 msgid "Search Users by All Fields" msgstr "Cerca utenti su tutti i campi" #: profile-builder-2.0/modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "Aggiungi nuova Lista Utenti " #: profile-builder-2.0/modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "Modifica la Lista Utenti " #: profile-builder-2.0/modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "Nuova Lista Utenti " #: profile-builder-2.0/modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "Visualizza la Lista Utenti " #: profile-builder-2.0/modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "Cerca la Lista Utenti " #: profile-builder-2.0/modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "Nessun Lista Utenti trovata " #: profile-builder-2.0/modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "Nessun Lista Utenti trovata tra i rifiuti " #: profile-builder-2.0/modules/user-listing/userlisting.php:105 msgid "Display name as" msgstr "Nome visualizzato " #: profile-builder-2.0/modules/user-listing/userlisting.php:150 #: profile-builder-2.0/modules/user-listing/userlisting.php:2223 msgid "Registration Date" msgstr "Data di registrazione " #: profile-builder-2.0/modules/user-listing/userlisting.php:151 #: profile-builder-2.0/modules/user-listing/userlisting.php:2228 msgid "Number of Posts" msgstr "Numero dei post " #: profile-builder-2.0/modules/user-listing/userlisting.php:155 msgid "More Info" msgstr "Info addizionali " #: profile-builder-2.0/modules/user-listing/userlisting.php:156 msgid "More Info Url" msgstr "Url Info addizionali " #: profile-builder-2.0/modules/user-listing/userlisting.php:157 msgid "Avatar or Gravatar" msgstr "Avatar o Gravatar " #: profile-builder-2.0/modules/user-listing/userlisting.php:196 #: profile-builder-2.0/modules/user-listing/userlisting.php:227 msgid "Extra Functions" msgstr "Funzioni extra " #: profile-builder-2.0/modules/user-listing/userlisting.php:199 msgid "Pagination" msgstr "Paginazione " #: profile-builder-2.0/modules/user-listing/userlisting.php:200 msgid "Search all Fields" msgstr "Cerca tutti i Campi " #: profile-builder-2.0/modules/user-listing/userlisting.php:229 msgid "Go Back Link" msgstr "Link di ritorno " #: profile-builder-2.0/modules/user-listing/userlisting.php:247 msgid "All-userlisting Template" msgstr "Modello lista per tutti gli utenti (All-userlisting) " #: profile-builder-2.0/modules/user-listing/userlisting.php:250 msgid "Single-userlisting Template" msgstr "Modello lista per un utente (Single-userlisting) " #: profile-builder-2.0/modules/user-listing/userlisting.php:733 msgid "First/Lastname" msgstr "Nome/Cognome " #: profile-builder-2.0/modules/user-listing/userlisting.php:281 #: profile-builder-2.0/modules/user-listing/userlisting.php:739 msgid "Sign-up Date" msgstr "Data registrazione " #: profile-builder-2.0/modules/user-listing/userlisting.php:748 #: profile-builder-2.0/modules/user-listing/userlisting.php:2226 msgid "Display Name" msgstr "Nome visualizzato " #: profile-builder-2.0/modules/user-listing/userlisting.php:280 #: profile-builder-2.0/modules/user-listing/userlisting.php:757 msgid "Posts" msgstr "Post " #: profile-builder-2.0/modules/user-listing/userlisting.php:760 #: profile-builder-2.0/modules/user-listing/userlisting.php:2233 msgid "Aim" msgstr "AIM " #: profile-builder-2.0/modules/user-listing/userlisting.php:763 #: profile-builder-2.0/modules/user-listing/userlisting.php:2234 msgid "Yim" msgstr "Yim " #: profile-builder-2.0/modules/user-listing/userlisting.php:766 #: profile-builder-2.0/modules/user-listing/userlisting.php:2235 msgid "Jabber" msgstr "Jabber " #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "Click here to see more information about this user" msgstr "Clicca qui per vedere più informazioni su questo utente " #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "More..." msgstr "Più... " #: profile-builder-2.0/modules/user-listing/userlisting.php:1293 msgid "Click here to see more information about this user." msgstr "Clicca qui per vedere più informazioni su questo utente. " #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 #: profile-builder-2.0/modules/user-listing/userlisting.php:1442 msgid "Click here to go back" msgstr "Clicca qui per ritornare " #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 msgid "Back" msgstr "Ritorna " #: profile-builder-2.0/modules/user-listing/userlisting.php:1472 msgid "«« First" msgstr "«« Primo " #: profile-builder-2.0/modules/user-listing/userlisting.php:1473 msgid "« Prev" msgstr "« Anteriore " #: profile-builder-2.0/modules/user-listing/userlisting.php:1474 msgid "Next » " msgstr "Seguente » " #: profile-builder-2.0/modules/user-listing/userlisting.php:1475 msgid "Last »»" msgstr "Ultimo »» " #: profile-builder-2.0/modules/user-listing/userlisting.php:1504 msgid "You don't have any pagination settings on this userlisting!" msgstr "Non hai delle impostazioni di paginazione per questa lista degli utenti! " #: profile-builder-2.0/modules/user-listing/userlisting.php:1970 msgid "Search" msgstr "Cerca " #: profile-builder-2.0/modules/user-listing/userlisting.php:1971 msgid "Clear Results" msgstr "Elimina Risultati " #: profile-builder-2.0/modules/user-listing/userlisting.php:2165 #: profile-builder-2.0/modules/user-listing/userlisting.php:2169 msgid "Extra shortcode parameters" msgstr "Parametri shortcode extra " #: profile-builder-2.0/modules/user-listing/userlisting.php:2172 msgid "displays users having a certain meta-value within a certain (extra) meta-field" msgstr "visualizza gli utenti che hanno una certa valore-meta entro un certa campo-meta (extra) " #: profile-builder-2.0/modules/user-listing/userlisting.php:2173 msgid "Example:" msgstr "Esempio: " #: profile-builder-2.0/modules/user-listing/userlisting.php:2175 msgid "Remember though, that the field-value combination must exist in the database." msgstr "Ricorda che la combinazione valore-campo deve esistere nel database. " #: profile-builder-2.0/modules/user-listing/userlisting.php:2250 msgid "Random (very slow on large databases > 10K user)" msgstr "Casuale (molto lento su database grandi > 10K utente) " #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Roles to Display" msgstr "Ruoli da visualizzare " #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Restrict the userlisting to these selected roles only
            If not specified, defaults to all existing roles" msgstr "Limita la lista utenti soltanto a questi ruoli
            Se non specificato, saranno ammesse per default tutti i ruoli esistenti " #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Number of Users/Page" msgstr "Numero di Utenti/Pagina " #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Default Sorting Criteria" msgstr "Criteri di classificazione default " #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Set the default sorting criteria
            This can temporarily be changed for each new session" msgstr "Imposta i criteri di classificazione default
            Questo può essere cambiato temporaneamente per ogni nuova sessione " #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Default Sorting Order" msgstr "Ordine classificazione default " #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Set the default sorting order
            This can temporarily be changed for each new session" msgstr "Imposta l'ordine di classificazione default
            Questo può essere cambiato temporaneamente per ogni nuova sessione " #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Avatar Size (All-userlisting)" msgstr "Dimensione Avatar (All-userlisting) " #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Set the avatar size on the all-userlisting only" msgstr "Imposta la dimensione dell'avatar soltanto su all-userlisting " #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Avatar Size (Single-userlisting)" msgstr "Dimensione Avatar (Single-userlisting) " #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Set the avatar size on the single-userlisting only" msgstr "Imposta la dimensione dell'avatar soltanto su single-userlisting " #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Visible only to logged in users?" msgstr "Visibile soltanto ai utenti connessi? " #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "The userlisting will only be visible only to the logged in users" msgstr "La lista utenti sarà visibile soltanto agli utenti connessi " #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "Visible to following Roles" msgstr "Visibile ai seguenti Ruoli " #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "The userlisting will only be visible to the following roles" msgstr "La lista utenti sarà visibile soltanto ai seguenti ruoli " #: profile-builder-2.0/modules/user-listing/userlisting.php:2275 msgid "Userlisting Settings" msgstr "Impostazioni della lista utenti " #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "Devi attivare la caratteristica Userlisting (lista utenti) dal tab \\\"Moduli\\\"! " #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You can find it in the Profile Builder menu." msgstr "La puoi trovare nel Profile Builder menu. " #: profile-builder-2.0/modules/user-listing/userlisting.php:2565 msgid "No results found!" msgstr "Nessun risultato trovato! "translation/profile-builder-uk.mo000066600000421260152141651170013154 0ustar00<%\J\Jl]JyJcDKKc}LLMNCOO;qPPKPC Q[MQQQQQ"R+AREmR1R ReR USbS yS SS2S S-SOT bT mTwT5~T#TTUV!WWdW>DX5XYXGYR[YcY!Z74Z'lZZ/[3[]B[U[[ \\!\1\@\ G\ Q\[\c\}\E\\\]]5]O]!l]#]]]]]]^*^ B^N^b^ u^ ^^^^#^^$_8_P_ T_b_ j_v_ ~_(____Lv`D`ta}aaa9aa? bAJb*bbbb bbbbb%c +c5cDcLc Rc0`c c ccc3ccdd&0dWdwd ~dd d dd dd eee&e .e9eJeSeceGueke)fif g$g ,g:gBg IgWg]gegtg{g g5gggg#g!h$9h^h(uhhh h hh hh i#i*i~P~ k~ v~ ~~~!~ ~r~_e v   ?;JQ Vdu3 ŀр #+3Db h t~  ǁс ف  $2 9G LY _!kIׂ܂ /CKZ] es4W`w } t~ Ɔ ކ  */ 7CU \j p|  ƇӇ ڇ) %+2RW` t~ ۉ! %3;CR Xfl{ 54:Q݋24G [f lv. ~?FO`int 8ۍ ߍ  +;<x  #;*2]v)ۏ  % 0; @ M Wem u>ː_ jrw ʑ֑ - >JC] ˒Ԓڒ $8$Sxғ  $#14Up$9 >=H(ʕӕ  3&Zcrx ̖Ֆ&/Da.|w6; JV gt2}83^&|#Ǚ,,-8Z%՚! #.Rc jw:fכ>[ t 0ќ*** U cp)yʝ .@ S$tM*?OXnw ß ҟܟj Xfns  ͠Ԡ 06 L Xe  ̡   7"Z ao ɢ ( / :F5Z:5ˣIK!  &>//n2YѥV+V~٦X ] `jox?ܨ(  ! .8I er ʩөQ'>0f7 ϫ ٫, % 1=C̬eUx߯6X Uӱ7)at{ ɲӲ ڲ  ,3E cn w )˳!#;.ӴI7L32)"(8@aLO?LVM.P q/:&"J=r %&:ͺ;D0λ*-*<Xp@;G2 %׽(*&4Q5D`[bZ/7)g;.'#E2i<  Fl-5Cy~  ,@T Xbiy  $ .5MU ]EjA $5=Pd l y   5 C MYnwDSe$ ) &"1+T( %   #19#Bf  #>PU4]F]$Fk6^9X(dO "Q)KGu#<{>bK,i(N""1yT2>;G>2+%+ *7bK<K@;r+;Kghe')02&8,_+ ?@&Z#%&'+Fr)@:(Nc0 &| 9Ga  {1NH0SM#cqRa(!u CO, :YBw;r ;xkZy9 @agcK|h,#c Fod!1)'/B\t2%Hj;?D/!t%.2<;KADY oh  # 2 F ^ 1x ! $ i 5[ P 7  # D U  s  ? ? T Yu n%IVQ%0cVh4#Xgv"AP%e #Y)>)S}>'/6A;xPR2)$8 &3!Bdu'%%r72G#Z~  # ! -]G-M7C){(6# ) !< ^ v # P : 9!#H!#l!!!!!!""'/"W"h""! #+#@##V#2z#B###Y$$]% n%y% %%X%E&ee&5&'^'C'-(%)))'*9/*i**q+!+!,<,%O,)u,/,,@,-;-:Y- -=-)- ..0.,F.s.>../(!0J0]0 }000070b 1 n1#y11c1232I2!d2,2.202,31@3+r334>>4E}424/4H&57o5A55;6B6P7S7f7*7(7:7 8888 I8T81g8 8%8689-9D9:/:JH:C:d:<;1O;';#;A;!<1<B<,T<<<V>g>%~>,>G>:?<T?,?2?2?#$@H@!W@y@/@@!A@AQA8AB2zBZBC<CC!DD7EOEGG+PH|I JuK)LL0LLM#M 4M?MM M!N3?N)sN#NcN:%O`OxOO)O)O#P#$P HP UQ`Q~Q Q#Q9QQ RR 9RHCRoRRS)S#BS)fSTSrSXTCkT TTT)T+UAUPU*eUDU UUU'V39V!mVVVVVV VV+W=W#LWpWW WWWW WW>XwGXXXX'X Y%1YWYqY!YYY!YbYC[/\I].`] ]]R]n^~_'_*_!_-`/6`f`/` ``5` aa0aFaba'saa*aaaab$b3bMb#\bbb!bb cc.d.0dL_d$dddde "e /eG[ hN )Ā32%L;rḾ%- S`u#"+8.Pg(=+UK)a˄ -,8e!x,džY؆x2u!QЈN"Rq`ĉ9%v_o֊_F7%ދ*//4_!Ì e "o5e&Ž ڎ!ԏ^^t'Ӑ$ AA)0Jޑ)HA_!!EXK'(:!c5.! !#EB]B%%C!Z|3Ǘ ڗ% (!E g!t'͘&*`;#֙;"(/K {%#Ě+9e  '&%NBt%;ݜ22Lĝ.ޝ~ kun%S:Ρy~}v<#̧~2Ȩ*&(שi'Aު ;8tԫ%45j'yg OkxZӯ4]F°/ M:Qly-2(Fo:~x)( R_%p%ѽ% 9F2f.9پ,<?|!ǿDE.St^D'l7YUVgA<g=^qvK{7^hM@M* ;\O:0kk oXyVK)au{S}fVGfKlQ_ _j{F^WV?FR*<}B@*U#( % edqx OZ k"x- +"N](w$>' 2'Ai#z@3 +=!i1"*#;_H-S0c<*'4\-z![#&4J.A9[*.!%@ >1_I3TdA9]Bo'7C{BRP&w+C0Jd"t#XC$<h8=A^s]7%DUdfuA_* `"   :B0lHrYsdD*XoX]\> R k#   j K\[@SMM?7,@e(m?J,$Nra\a1k=8=9v~/@)#@Ud3k5ZL;b4G5~t 'O ) L ] v @ : 7"F"]"3|"

            Good News!

            An administrator has just approved your account: {{username}} on {{site_name}}.

            Hello,

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            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!

            Someone requested that the password be reset for the following account: {{site_name}}
            Username: {{username}}

            If this was a mistake, just ignore this email and nothing will happen.

            To reset your password, visit the following address:
            {{{reset_link}}}

            To activate your user, please click the following link:
            {{{activation_link}}}

            After you activate, you will receive another email with your credentials.

            You have successfully reset your password to: {{password}}

            {{username}} has requested a password change via the password reset feature.

            His/her new password is: {{password}}

            * only available in the %1$sHobbyist and Pro versions%2$s. Serial Number: Your serial number is about to expire, please %1$s Renew Your License%2$s. Your serial number is expired, please %1$s Renew Your License%2$s. is also activated. You need to deactivate it before activating this version of the plugin."Admin Approval" Activated:"Admin Approval" Feature:"Admin Approval" on User Role:"Email Confirmation" Activated:"Email Confirmation" Landing Page:"Email" - users can Log In only with Email."Username and Email" - users can Log In with both Username and Email."Username" - users can Log In only with Username.%1$s %2$d%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s%1$s of %2$s%s couldn't be deleted%s pending« Prev«« First(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(no title)** only available in the %1$sPro version%2$s.. Extra Field Types are available in
            Hobbyist or PRO versions.... Choose...Choose1 item

            Also, you will be able to visit your site at

            You can visit your site at

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            Your Profile Builder serial number is invalid or missing.
            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

            Redirect
            URL
            Title (Type)
            Title
            Type
            Meta Name
            Required
            User ID / Username
            Redirect
            URL
            User Role
            Redirect
            URL
            Note: changing the form title also changes the shortcode!ERROR: The password must have a minimum strength of %sERROR: The password must have the minimum length of %s charactersERROR: Your account has to be confirmed by an administrator before you can log in.Profile Builder A new account has been created for you on {{site_name}}A new subscriber has (been) registered!A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be editedAIMAbout YourselfAccept user payments, create subscription plans and restrict content on your membership site.Accept user payments, create subscription plans and restrict content on your website.Account ManagementActivateActivation KeyActivation LinkActivation UrlActiveAdd EntryAdd FieldAdd NewAdd New Field to the ListAdd UserAdd a number from 0 to 19. The higher the number the higher the zoom.Add new Edit-profile FormAdd new Registration FormAdd new User ListingAdd your HTML (or text) contentAdd-On has been activatedAdd-On has been deactivated.Add-On is activeAdd-On is inactiveAdd-On is ActiveAdd-OnsAdmin ApprovalAdmin Approval (*)Admin Bar SettingsAdmin Email CustomizerAdmin Notification for User Password ResetAfghanistanAfghanistan AfghaniAfter Edit ProfileAfter LoginAfter LogoutAfter Profile Update...After RegistrationAfter Registration...After Successful Email ConfirmationAfter Successful Password ResetAfter login redirect URL (optional):Agree To Terms CheckboxAimAland IslandsAlbaniaAlbania LekAlgeriaAll UsersAll users have been successfully deletedAll-userlisting TemplateAllow Users to Log in With:Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.Allow users to log in with their email or username when accessing your site.Allow users to recover their password in the front-end using the %s.Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$sAllowable ValuesAllowed Image ExtensionsAllowed Upload ExtensionsAllowed time to display any success messages (in seconds)American SamoaAn administrator has just approved your account on %1$s (%2$s).An administrator has just unapproved your account on %1$s (%2$s).An error occurred, please try again later.AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApplyApproveApprovedAre you sure you want to delete this?ArgentinaArgentina PesoArmeniaArubaAruba GuilderAs an administrator you cannot change your role.AscendingAustraliaAustralia DollarAustriaAuthor Archive ( http://sitename.com/author/admin )Automatically Log InAvailable TagsAvailable in All VersionsAvailable in Hobbyist and Pro VersionsAvailable tags for dynamic URLsAvatarAvatar SizeAvatar Size (All-userlisting)Avatar Size (Single-userlisting)Avatar UploadAvatar or GravatarAzerbaijanAzerbaijan New ManatBackBahamasBahamas DollarBahrainBangladeshBangladeshi takaBarbadosBarbados DollarBasic InformationBeautiful registration forms fully customizable using the %s shortcode.Before you can access your account %1s, an administrator has to approve it. You will be notified via email.Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.Before you can access your account, an administrator needs to approve it. You will be notified via email.BehaviourBelarusBelarus RubleBelgiumBelizeBelize DollarBeninBermudaBermuda DollarBhutanBiographical InfoBlog DetailsBlog Details - only appears on the Registration page!Blog URLBoliviaBolivia BolivianoBolivia, __( Plurinational State ofBonaire, Saint Eustatius and SabaBonaire, __( Sint Eustatius and SabaBosnia and HerzegovinaBosnia and Herzegovina Convertible MarkaBoth fields are empty.BotswanaBotswana PulaBouvet IslandBrazilBrazil RealBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBrunei DarussalamBrunei Darussalam DollarBulgariaBulgaria LevBulk ActionsBurkina FasoBurundiCabo VerdeCambodiaCambodia RielCameroonCan contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}CanadaCanada DollarCancelCape VerdeCayman IslandsCayman Islands DollarCentral African RepublicChadChange heading field size on front-end formsChanged Email Address NotificationCheck your e-mail for the confirmation link.CheckboxChileChile PesoChinaChina Yuan RenminbiChoose how multiple selections affect the resultsChoose one of the supported field typesChoose one of the supported fields you manage install manually.Could not install plugin. Retry or install manually.Country SelectCroatiaCroatia KunaCubaCuba PesoCuracaoCurrency SelectCustom RedirectsCustomize Your Forms The Way You Want (*)CyprusCzech RepublicCzech Republic KorunaDashboard (redirect users from accessing the dashboard)Date-formatDatepickerDeactivateDefaultDefault ContentDefault LatitudeDefault LongitudeDefault OptionDefault Option(s)Default RegistrationDefault Registration & Registration with Email ConfirmationDefault RoleDefault Sorting CriteriaDefault Sorting OrderDefault ValueDefault WP LoginDefault WP Recover PasswordDefault WP RegisterDefault Zoom LevelDefault limit for this repeater group.
            Leave 0 for unlimited.Default option of the fieldDefault value of the fieldDefault value of the textareaDeleteDelete allDelete all itemsDelete this itemDemocratic Republic of the CongoDenmarkDenmark KroneDescendingDescriptionDisabledDisplay MessagesDisplay NameDisplay name asDisplay name publicly asDisplay name publicly as - only appears on the Edit Profile page!Display on PB formsDisplay on default WP formsDjiboutiDo you want toDo you want to bulk approve the selected users?Do you want to bulk delete the selected users?Do you want to bulk unapprove the selected users?DominicaDominican RepublicDominican Republic PesoDownload NowDownloading and installing...E-mailERRORERROR:East Caribbean DollarEast TimorEasy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings.EcuadorEditEdit ProfileEdit field groupEdit the Edit-profile FormsEdit the Registration FormsEdit the User ListingEdit this itemEdit-profile FormEdit-profile FormsEg. (###) ###-####EgyptEgypt PoundEl SalvadorEl Salvador ColonEliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.EmailEmail ConfirmationEmail CustomizerEmail SubjectEmail TemplatesEmail notification resent to userEmpty field won't check for correct phone number.Enable extra featuresEnable limit to the number of fields to be generated by users in front end forms Enable your modulesEnter a (detailed) description of the option for end users to read
            OptionalEnter a comma separated list of labels
            Visible for the userEnter 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.Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophesEnter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100Enter the minimum characters the password should have. Leave empty for no minimum limitEnter your Google Maps API key ( Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used.Equatorial GuineaEritreaError MessageEstoniaEstonia KroonEthiopiaEuroEverything you will need to manage your users is probably already available using the Pro Modules.Example:Excerpt ViewExisting PagesExpand the resultsExtra FeaturesExtra FunctionsExtra Profile Fields are available in Hobbyist or PRO versionsExtra shortcode parametersFacet MetaFacet TypeFaceted MenusFalkland IslandsFalkland Islands (Malvinas)Falkland Islands (Malvinas) PoundFaroe IslandsFeatures that give you more control over your users, increased security and help you fight user registration spam.FieldField PropertiesField TitleFijiFiji DollarFind out more about PRO ModulesFinlandFirst NameFirst/LastnameFirstnameFor Modern User InteractionFor security reasons, you must pass the remote ip to reCAPTCHA!Form ShortcodeFranceFreeFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriction-less login using %s shortcode or a widget.From (name)From (reply-to email)GabonGambiaGeneral LimitGeneral SettingsGeneric UploadsGeorgiaGermanyGet New PasswordGet started with extra fieldsGhanaGhana CedisGibraltarGibraltar PoundGlobal RedirectsGo Back LinkGoogle Maps API KeyGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuatemala QuetzalGuernseyGuernsey PoundGuineaGuinea-BissauGuyanaGuyana DollarHTMLHTML ContentHaitiHeading TagHeard Island and McDonald IslandsHere you can activate / deactivate available modules for Profile Builder.HideHoly See (Vatican City State)HondurasHonduras LempiraHong KongHong Kong DollarHow does this work?HungaryHungary ForintIDIcelandIceland KronaIf you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules.InactiveIncorrect phone numberIndiaIndia RupeeIndividual User RedirectsIndividual redirects defined in shortcodes; redirect_priority="top" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects.IndonesiaIndonesia RupiahInput / Hidden InputInstall NowInstallation completeInvalid activation key!Invalid key!Invalid username.IranIran RialIran, __( Islamic Republic ofIraqIrelandIsle of ManIsle of Man PoundIsraelIsrael ShekelItalyIvory CoastJabberJabber / Google TalkJamaicaJamaica DollarJapanJapan YenJerseyJersey PoundJordanKazakhstanKazakhstan TengeKeep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.KenyaKiribatiKorea (North) WonKorea (South) WonKorea, __( Democratic Peoples Republic ofKorea, __( Republic ofKosovoKuwaitKyrgyzstanKyrgyzstan SomLabelLabelsLao Peoples Democratic RepublicLaosLaos KipLast »»Last NameLastnameLatviaLatvia LatLearn MoreLeave 0 for unlimited.Leave it empty for no max valueLeave it empty for no min valueLeave it empty for no restrictionLebanonLebanon PoundLesothoLiberiaLiberia DollarLibyaLiechtensteinLimitLimit per RoleLimit reached messageList ViewLithuaniaLithuania LitasLoad Profile Builder's own CSS file in the front-end:Log outLog out »Log out of this accountLog out of this account.LoginLogin ( wp_login.php )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 )Login with Email or UsernameLogoutLost Password ( wp-login.php?action=lostpassword )Lost your passwordLost your password?LuxembourgMacaoMacedoniaMacedonia DenarMacedonia, __( the former Yugoslav Republic ofMadagascarMake sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.MalawiMalaysiaMalaysia RinggitMaldivesMaliMaltaManage Default and Extra FieldsManage FieldsManage field or group of fields that will be repeatable.MapMap HeightMarshall IslandsMartiniqueMauritaniaMauritiusMauritius RupeeMax Number ValueMax allowed number value (0 to allow only negative numbers)MayotteMediumMember ManagementMeta-nameMexicoMexico PesoMicronesiaMicronesia, __( Federated States ofMin Number ValueMin allowed number value (0 to allow only positive numbers)Minimum Password Length and Strength MeterMinimum Password Length:Minimum Password Strength:Minimum length of %d charactersMinimum required Profile Builder version:ModulesMoldovaMoldova, __( Republic ofMonacoMongoliaMongolia TughrikMontenegroMontserratMoreMore DetailsMore InfoMore Info UrlMore...MoroccoMozambiqueMozambique MeticalMultiple Edit-profile FormsMultiple Registration FormsMultiple Registration and Edit Profile form settings RedirectsMust be a valid email address or the tag {{reply_to}} which defaults to the administrator emailMyanmarNameName/DescriptionNamibiaNamibia DollarNarrow the resultsNauruNepalNepal RupeeNetherlandsNetherlands Antilles GuilderNew CaledoniaNew Edit-profile FormNew Registration FormNew User ListingNew ZealandNew Zealand DollarNew subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            Next » NicaraguaNicaragua CordobaNicknameNigerNigeriaNigeria NairaNiueNoNo Edit-profile Form foundNo Edit-profile Forms found in trashNo Registration Form foundNo Registration Forms found in trashNo User Listing foundNo User Listing found in trashNo items found.No options availableNo results found!NoneNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNorway KroneNot compatible with Profile BuilderNot compatible with your version of Profile Builder.Now that you acquired a copy of %s, you should take the time and register it with the serial number you receivedNumberNumber Step ValueNumber of PostsNumber of Users/PageOmanOman RialOnly administrators can see this field on edit profile forms.Only an administrator can add new users.OptionsOverwrite ExistingPB LoginPB Recover PasswordPB RegisterPaginationPaid & Free SubscriptionsPaid AccountsPaid Member Subscriptions - a free WordPress pluginPakistanPakistan RupeePalauPalestine, __( State ofPalestinian TerritoryPanamaPanama BalboaPapua New GuineaParaguayParaguay GuaraniPasswordPassword Lost and Found.Password Recovery page URL (optional):Password Reset EmailPassword Reset Success EmailPassword Reset from "%1$s"Password Successfully Reset for %1$s on "%2$s"Payment ManagementPersonalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.PeruPeru Nuevo SolPhilippinesPhilippines PesoPhone FormatPitcairnPlease add the Google Maps API key for this field.Please check that you entered the correct email address.Please check that you entered the correct username.Please choose a different field type as this one already exists in your form (must be unique) Please enter a (valid) reCAPTCHA valuePlease enter a unique field title. Please enter a valid username.Please enter a value for the required field Please enter numbers onlyPlease enter your username or email address.Please select and enter the ID or username of your user.Please select at least one user role Please try a different one!Plugin has been activatedPlugin has been deactivated.Plugin is activePlugin is inactivePlugin is ActivePolandPoland ZlotyPortugalPostsPosts from what post type will be displayed in the select.Powerful Modules (**)Privacy: I would like my site to appear in search engines, and in public listings around this network.Profile Builder Login WidgetProfile Builder RegisterPuerto RicoQatarQatar RiyalRadio ButtonsRandom (very slow on large databases > 10K user)Recommended PluginsRecover PasswordRedirectRedirect Default WordPress Forms and PagesRedirect Default WordPress forms and pagesRedirect TypeRedirect URLRegisterRegister ( wp-login.php?action=register )Register VersionRegister Your VersionRegister page URL (optional):RegisteredRegistrationRegistration & Edit ProfileRegistration DateRegistration FormRegistration FormsRegistration with Admin ApprovalRegistration with Email ConfirmationRemember though, that the field-value combination must exist in the database.RemoveRemove All FiltersRepeat PasswordRepeatable fields saved!Repeated field groupRepeater FieldsReply ToRepublic of the CongoRequiredRequired phone number format: Resend Activation EmailReset KeyReset LinkReset PasswordReset UrlRestrict ContentRestrict the userlisting to these selected roles only
            If not specified, defaults to all existing rolesRetry InstallReunionRoleRoles to DisplayRomaniaRomania New LeuRow CountRussiaRussia RubleRussian FederationRwandaSaint BarthelemySaint HelenaSaint Helena PoundSaint Helena, __( Ascension and Tristan da CunhaSaint Kitts and NevisSaint LuciaSaint MartinSaint Martin (French part)Saint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaudi Arabia RiyalSaveSave ChangesSave SettingsSave the user role order from the user roles checkboxesSearchSearch FieldsSearch LocationSearch SettingsSearch UsersSearch Users by All FieldsSearch all FieldsSearch the Edit-profile FormsSearch the Registration FormsSearch the User ListingSecret KeySelectSelect AllSelect FileSelect a user role.Select on what user roles to activate Admin Approval.Select on which Profile Builder forms to display reCAPTCHASelect on which default WP forms to display reCAPTCHASelect which user roles to show to the user ( drag and drop to re-order )Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name
            Use this at your own riskSend these credentials via email.SenegalSerbiaSerbia DinarSet RoleSet a custom error message that will be displayed to the user.Set the avatar size on the all-userlisting onlySet the avatar size on the single-userlisting onlySet the default sorting criteria
            This can temporarily be changed for each new sessionSet the default sorting order
            This can temporarily be changed for each new sessionSet the number of users to be displayed on every paginated part of the all-userlistingSet up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role.Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.SeychellesSeychelles RupeeShare a little biographical information to fill out your profile. This may be shown publicly.ShortcodeShowShow AllShow Currency SymbolShow Post TypeShow a toggle link after this many choices. Leave blank for allShow all datesShow/Hide the Admin Bar on the Front-EndSierra LeoneSign-up DateSingaporeSingapore DollarSingle-userlisting TemplateSint MaartenSint Maarten (Dutch part)Site KeySite NameSite TitleSite URL slugSite UrlSlovakiaSloveniaSolomon IslandsSolomon Islands DollarSomaliaSomalia ShillingSomeone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$sSomething went wrong, we could not connect to the server. Please try again later.Something went wrong. Please try again.Sorry, but you don't have permission to do that!Sorry, you cannot upload this file type for this field.Sort TagsSouth AfricaSouth Africa RandSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.comSpecify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.comSpecify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yySpecify the number of rows for a 'Textarea' field
            If not specified, defaults to 5Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)Specify the option which should be selected by defaultSpecify 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.Specify the time format.Sri LankaSri Lanka RupeeStatusStep by Step Quick SetupStep value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimalStraight forward edit profile forms using %s shortcode.Strength indicatorStrongSubscription ManagementSudanSurinameSuriname DollarSvalbard and Jan MayenSwazilandSwedenSweden KronaSwitzerlandSwitzerland FrancSyriaSyria PoundSyrian Arab RepublicTaiwanTaiwan New DollarTaiwan, __( Province of ChinaTajikistanTanzaniaTanzania, __( United Republic ofTerms of AgreementTextareaThailandThailand BahtThat field is already added in this form That meta-name is already in use That username is already activated!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!The account %1s has been successfully created!The best way to add front-end registration, edit profile and login forms.The email address entered wasn't found in the database!The email you entered is not a valid email address.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical The entered passwords don't match!The entered row number is not numerical The entered value for the Datepicker is not a valid date-format The following option did not coincide with the ones in the options list: %s The following option(s) did not coincide with the ones in the options list: %s The height of the map.The latitude at which the map should be displayed when no pins are attached.The longitude at which the map should be displayed when no pins are attached.The maximum number of fields has been reached.The meta-name can only contain lowercase letters, numbers, _ , - and no spaces. The meta-name cannot be empty The password must have a minimum strength of %sThe password must have the minimum length of %s charactersThe password you entered is incorrect.The passwords do not matchThe popup message to display when the limit of repeater groups is reached.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.The secret key from Google, www.google.com/recaptchaThe selected user couldn't be deletedThe selected users have been activatedThe selected users have had their activation emails resentThe serial number couldn't be validated because it expired!The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!The serial number entered couldn't be validated!The serial number is about to expire soon!The serial number was successfully validated!The shortcode will be available after you publish this form.The site key from Google, www.google.com/recaptchaThe userlisting will only be visible only to the logged in usersThe userlisting will only be visible to the following rolesThe username entered wasn't found in the database!The usernames cannot be changed.The users selected password at signupThere was an error in the submitted formThere was an error performing that action!There was an error while trying to activate the userThere was an error while trying to activate the user.There was an error while trying to send the activation link to %1$s!These redirects happen after a successful action, like registration or after a successful login.These settings are also replicated in the "Admin Email Customizer" settings-page upon save.These settings are also replicated in the "User Email Customizer" settings-page upon save.This email is already in use.This email is already reserved to be used soon.This field has conditional logic enabled.This field is requiredThis form is empty.This login widget lets you add a login form in the sidebar.This message is only visible by administratorsThis username already exists.This username is already activated!This username is already reserved to be used soon.This username is invalid because it uses illegal characters.This username is now active!This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using "Custom Redirects" module.Time FormatTimepickerTimezone SelectTimor-LesteTitle of the fieldTitle:To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login.To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so onTo 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$sTo allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$sTo create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s.To use reCAPTCHA you must get an API key fromTo use reCAPTCHA you must get an API public key from:TogoTokelauTongaTrinidad and TobagoTrinidad and Tobago DollarTunisiaTurkeyTurkey LiraTurkmenistanTurks and Caicos IslandsTuvaluTuvalu DollarType your password again. Type your password.U.S. Virgin IslandsURLUS DollarUgandaUganda ShillingUkraineUkraine HryvnaUnapproveUnapprovedUnapproved User NotificationUnited Arab EmiratesUnited KingdomUnited Kingdom PoundUnited StatesUnited States Minor Outlying IslandsUpdateUpgrade Profile BuilderUpload UruguayUruguay PesoUse these shortcodes on the pages you want the forms to be displayed:Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-countUse this shortcode on the page you want the form to be displayed:User Approval NotificationUser CountUser Email CustomizerUser Fields TagsUser IDUser ID / UsernameUser ID or UsernameUser IdUser ListingUser MetaUser NicenameUser RoleUser Role based RedirectsUser RolesUser Roles OrderUser not foundUser successfully approved!User successfully deleted!User successfully unapproved!User to edit:User-RoleUser-statusUserlisting SettingsUsernameUsername and EmailUsername or E-mailUsername or EmailUsernames cannot be changed.Users can register themselves or you can manually create users here.Users cannot currently register themselves, but you can manually create users here.Users successfully approved!Users successfully deleted!Users successfully unapproved!Users with Unconfirmed Email AddressUzbekistanUzbekistan SomValid tags {{reply_to}} and {{site_name}}ValidationValue must be a multiplier of %1$sValue must be greater than or equal to %1$sValue must be less than or equal to %1$sVanuatuVaticanVenezuelaVenezuela BolivarVenezuela, __( Bolivarian Republic ofVersion %sVery WeakVery weakViet NamViet Nam DongVietnamView MapView all extra shortcode parametersView the Edit-profile FormView the Registration FormView the User ListingVirgin Islands, __( BritishVirgin Islands, __( U.S.VisibilityVisible choicesVisible only to logged in users?Visible to following RolesWallis and FutunaWeakWebsiteWelcome to %1$s!


            Your username is:%2$sWelcome to %1$s!


            Your username is:%2$s and password:%3$sWestern SaharaWhether the currency symbol should be displayed after the currency name in the select option.Whether the field is required or notWhether to automatically log in the newly registered user or not
            Only works on single-sites without "Admin Approval" and "Email Confirmation" features activated
            WARNING: Caching the registration form will make automatic login not workWhether to redirect the user to a specific page or notWhich redirect happens depends on the following priority:With Extra Profile Fields you can create the exact registration form your project needs.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.With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts.With these you can redirect various WordPress forms and pages to pages created with profile builder.Yahoo IMYemenYemen RialYesYes, I'd like to create a new siteYimYou are already logged in. You can change your password on the edit profile form.You are currently logged in as %1$s. %2$sYou are currently logged in as %1s. You don't need another account. %2sYou are currently logged in as %s. You are not allowed to do this.You can add the information for the %s after you add a entryYou 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)You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.You can find it in the Profile Builder menu.You can find the default file here: %1$sYou can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces.You can't add duplicate redirects!You cannot register this user roleYou decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.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.You do not have permission to view this user list.You do not have the required user role to view this user list.You don't have any pagination settings on this userlisting!You either don't have permission for that action or there was an error!You have successfully reset your password to: %1$sYou must be logged in to edit your profile.You must enter a valid email address.You must enter a value for the date-format You must enter a value for the row number You must enter the secret key You must enter the site key You must select a field You need to activate the Userlisting feature from within the "Modules" tab!You need to specify the title of the form before creating itYou use the following tags in your URLs to redirect users to various pages.You will receive a link to create a new password via email.You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$sYour account has been successfully created!Your account has to be confirmed by an administrator before you can log in.Your account has to be confirmed by an administrator before you can use the "Password Recovery" feature.Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.Your account on %1$s has been approved!Your account on %1$s has been unapproved!Your account on {{site_name}} has been approved!Your account on {{site_name}} has been unapproved!Your email was successfully confirmed.Your password has been successfully changed!Your profile has been successfully updated!Your selected password at signupYour session has expired! Please refresh the page and try againYour session has expired! Please refresh the page and try again.Your site url will look like this:
            ZambiaZimbabweZimbabwe Dollar[%1$s] Activate %2$s[%1$s] Your new account information[{{site_name}}] Activate {{username}}[{{site_name}}] Notice of Email Change[{{site_name}}] Password Reset[{{site_name}}] Password Reset Successfullyapprove this user?approvedconfirm this email yourself?delete this user from the _signups table?delete this user?displays all users except the ones you specified the user_id fordisplays only the users that you specified the user_id fordisplays users having a certain meta-value within a certain (extra) meta-fieldemailgenerates a url of the current website homepage.herein WordPress the site url can be different then the home urlreCAPTCHArequiredresend the activation link?showthe ID of the userthe URL of the previously visited pagethe URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces.unapprove this user?unapprovedusernameusername or emailPO-Revision-Date: 2017-05-29 07:06:53+0000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); X-Generator: GlotPress/0.1 Project-Id-Version: Profile Builder

            Вітаємо!

            Адміністратор тільки що затвердив Ваш обліковий запис: {{username}} на {{site_name}}.

            Привіт,

            Нажаль адміністратор не підтвердив Ваш обліковий запис: {{username}} на {{site_name}}.

            Ласкаво просимо на {{site_name}}!

            Ваше ім'я користувача:{{username}} і пароль:{{password}}

            Ласкаво просимо на {{site_name}}!

            Ваше ім'я користувача:{{username}} і пароль:{{password}}

            Перш ніж Ви зможете увійти на свій акаунт, адміністратор повинен його підтвердити. Ви будете сповіщені електронною поштою.

            Новий підписник від {{site_name}}.

            Ім'я користувача:{{username}}

            Електронна пошта:{{user_email}}

            Новий підписник на {{site_name}}.

            Ім'я користувача:{{username}}

            Електронна пошта:{{user_email}}

            Функція Підтвердження Адміністратором була активована на момент реєстрації, тому будь-ласка, зверніть увагу на те що Ви повинні підтвердити цього користувача, перш ніж він/вона зможе увійти!

            Хтось запросив пароль для скидання акаунту: {{site_name}}
            Ім'я користувача: {{username}}

            Якщо лист прийшов до вас помилково, не відповідайте на нього..

            Щоб скинути пароль, перейдіть по ссилці:
            {{{reset_link}}}

            Для активації Вашого користувача, будь-ласка натисніть на наступне посилання:
            "{{{activation_link}}}

            Після активації, Ви отримаєте ще один лист з обліковими даними.

            Ви успішно змінили пароль на: {{password}}

            {{username}} запросив зміну паролю.

            Його/Її новий пароль: {{password}}

            * доступно лише у %1$sHobbyist і Pro версіях%2$s.Серійний Номер:Строк дії Вашого серійного номера завершується, будь-ласка,%1$s Продовжити Ліцензію%2$s.Строк дії вашого серійного номера завершився, будь-ласка,%1$s Обновити ліцензію%2$s.активований. Ви повинні деактивувати його, перед тим як активувати цю версію плагіна."Підтвердження Адміністратором" активовано:Функція "Підтвердження адміністратором":"Підтвердження Адміністратором" у Ролі Користувачів:Підтвердення Електронної пошти Активовано:"Підтвердження електронної пошти" Цільова Сторінка:"Електронна пошта" - можливо увійти тільки за допомогою адреси електронної пошти."Логін і Електронна пошта" - можливо увійти з іменем користувача і адресою електронної пошти."Логін" - можливо увійти тільки за допомогою імені користувача.%1$s %2$d%1$s створив запит зміни паролю шляхом скидання паролю.
            Його/її новий пароль: %2$s%1$s з %2$s%s не може бути видалено%s очікується« Попередній«« Перший(Наприклад RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(без назви)** доступно лише у %1$sPro версії%2$s..Додаткові типи полів доступні у Hobbyist або PRO версіях....Обрати...Оберіть%s предмет%s предмети%s предметів

            Ви також зможете відвідати Ваш сайт за наступним посиланням

            Ви можете відвідати Ваш сайт за наступним посиланням

            Строк дії Вашої ліцензії на Profile Builder стік.
            Будь-ласка %1$sОбновіть Вашу Ліцензію%2$s щоб продовжити отримувати доступ до скачувань продукту, автоматичних оновлень та технічної підтримки. %3$sОновіть зараз і оримайте 40% знижки %4$s %5$sВідмінити%6$s

            Строк Вашої ліцензії на Profile Builder стікає %5$s.
            Будь-ласка %1$sОбновіть Вашу Ліцензію%2$s щоб продовжити отримувати доступ до скачувань продукту, автоматичних оновлень та технічної підтримки. %3$sОновіть зараз і оримайте 40% знижки %4$s %6$sВідмінити%7$s

            Ваш серійний номер Profile Builder невірний або відсутній
            Будь-ласка %1$srзареєструйте Вашу копію%2$s щоб отримати доступ до оновлень та технічної підтримки. Вам потрібен ліцензійний ключ? %3$sПридбайте зараз%4$s

            Переспрямування
            URL
            Назва (Тип)
            Назва
            Тип
            Мета ім'я
            Обов'язково
            ID / Ім'я Користувача
            Переспрямування
            URL
            Роль Користувача
            Переспрямування
            URL
            Примітка: зміна назви форми також змінює шорткод!ПОМИЛКА: Мінімальна сила паролю повинна бути %sПОМИЛКА: Пароль повинен мати мінімальну довжину %s символівПОМИЛКА: Ваш обліковий запис повинен бути підверджений адміністратором, перед тим як ви зможете увійти.Profile Builder Новий обліковий запис був сворений для Вас на {{site_name}}Новий підписник (був) зареєстрований!Унікальний, автоматично згенерований ID для цього конкретного поля
            Ви можете використовувати його у поєднанні з фільтрами, як цільовий елемент, якщо це необхідно
            Не може бути редагованимAIMПро ВасПриймайте платежі користувачів, створюйте плани підписки і обмежуйте контент на вашому сайті.Приймайте платежі користувачів, створюйте плани підписки та обмежуйте контент вашого сайту.Управління АкаунтамиАктивуватиКлюч АктиваціїПосилання АктиваціїUrl АктиваціїАктивнийДодати записДодати ПолеДодати НовеДодати нове поле до спискуДодати КористувачаДодайте число від 0 до 19. Чим вище число, тим більша кратність зближення.Додати нову Форму Редагування ПрофілюДодати нову Реєстраційну ФормуДодати новий Список КористувачівДодайте Ваш HTML (або текстовий) вміст Аддон активованоАддон деактивованоАддон активнийАддон неактивнийАддон активнийАддониПідтвердження АдміністраторомЗатверджується адміністратором (*)Налаштування Панелі АдміністратораНалаштування електронної пошти адміністратораСповіщення Адміністратора для Скидання Паролю КористувачаАфганістанАфганський афганіПісля Редагування ПрофілюПісля ВходуПісля ВиходуПісля оновлення профілю...Після РеєстраціїПісля Реєстрації...Після успішного підтвердження адреси електронної поштиПісля Успішної Зміни ПаролюURL переспрямування після входу (вибірково):Чекбокс Погодження з УмовамиAimАландські островиАлбаніяАлбанський лекАлжирУсі КористувачіУсі користувачі успішно видаленіШаблон усіх Списків КористувачівДозволити користувачам заходити в систему з:Дозвольте різним ролям користувачам редактувати свою власну інформацію. Налаштуйте декілька форм редагування профілу з різноманітними полями для різних конкретних ролей користувачів.Дозволити вхід на сайт використовуючи адресу електронної пошти або ім'я користувача.Дозволити користувачам відновлювати пароль у користувацькому інтерфейсі, використовучи %s.Дозвольте користувачам мати платні облікові записи із Profile Builder. %1$sДізнайтесь як >%2$s %3$sВідхилити%4$sДозволені ЗначенняДопустимі розширення файлів зображеньДопустимі розширення файлів для завантаженняДопустимий час для відображення повідомлень про успішну дію (в секундах)Американське СамоаАдміністратор підтвердив Ваш обліковий запис %1$s (%2$s).Адміністратор не підтвердив Ваш обліковий запис %1$s (%2$s).Помилка! Спробуйте пізніше.АндораАнголаАнгільяАнтарктикаАнтигуа і БарбудаЗастосуватиПідтвердитиПідтвердженоВи впевнені, що хочете видалити це?АргентинаАргентинський песоВірменіяАрубаАрубський гільдерЯк адміністратор ви не можете змінити свою рольВисхіднийАвстраліяАвстралійський доларАвстріяАрхів Автора ( http://sitename.com/author/admin )Входити АвтоматичноДоступні ТегиДоступний в Усіх версіяхДоступний у версіях Hobbyist і ProДоступні теги для динамічних URLАватарРозмір АватаруРозмір Аватару (Усіх списків користувачів)Розмір Аватару (Одного списку користувачів)Завантаження АватаруАватар чи ГраватарАзербайджанАзербайджанський новий манатНазадБагамиБагамський доларБахрейнБангладешБангладешський такаБарбадосБарбадоський доларОсновна ІнформаціяКрасиві реєстраційні форми, з можливістю повного налаштування за допомогою шорткоду %s.ерш ніж Ви зможете отримати доступ до Вашого облікового запису %1s, адміністратор повинен підтвердити його. Ви будете сповіщені електронною поштою.Перш ніж Ви зможете отримати доступ до Вашого облікового запису %1s, необхідно підтвердити свою адресу електронної пошти. Будь-ласка, перевірте свою поштову скриньку і натисніть на посилання активації.Перш ніж ви зможете увійти у свій обліковий запис, адміністратор повинен його підтвердити. Ви отримаєте сповіщення електронною поштою.ПоведінкаБілорусьБілоруський рубльБельгіяБелізБелізький доларБенінБермудиБермудський доларБутанБіографічні ДаніДеталі БлогуДеталі Блогу - видимі лиша на сторінці Реєстрації!URL БлогуБолівіяБолівійський болівіаноБолі́вія, __(Багатонаціона́льна Держа́ва Бонайре, Сінт-Естатіус і СабаКарибські НідерландиБоснія і ГерцеговинаБоснійська конвертова маркаОбидва поля пусті.БотсванаБотсванська пулаОстрів БувеБразиліяБразильський реалБританська територія в Індійському океаніБританські Віргінські ОстровиБрунейБруней ДаруссаламБрунейський доларБолгаріяБолгарський левГрупові ДіїБуркіна ФасоБурундіКабо-ВердеКамбоджаКамбоджійський реалКамерунМоже містити наступні динамічні теги:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}КанадаКанадський доларВідмінитиКабо-ВердеКайманові Островидолар Кайманових островівЦентрально-Африканська РеспублікаЧадЗмініть розмір поля заголовку у формах на користувацькій частині сайтуСповіщення за адресою елетронної пошти зміненоЛист із підтверджуючим посиланням був надісланий на електронну пошту.ЧекбоксЧиліЧилійський песоКитайКитайський юаньОберіть як множинний вибір вплине на результатОберіть один із можливих типів полівОберіть одне з доступних полів, якими ви керуєте якщо роль не зазначена, налаштування WordPress будуть використані за замовчуванням Виберіть ролі користувачів, для котрих відображається адмін-панель у клієнтській частині сайту.Обрати...Острів РіздваОчистити РезультатиНатисніть тут щоб повернутисяНатисніть тут, щоб переглянути детальнішу інформацію про цього користувачаНатисніть тут, щоб переглянути детальнішу інформацію про цього користувача.Натисніть кнопку Назад у вашому браузері, и спробуйте ще раз.Кокосові островиКокосові ОстровиКолумбіяКолумбійський песоНалаштування кольоруСтандартні НалаштуванняКомориСумісний з Вашою версією Profile Builder.Умовна ЛогікаУмовні ПравилаПідтвердити електронну адресуКонгоКонго,__(Демократична РеспублікаКонтактна ІнформаціяВмістОстрови КукаКоста-РікаКоста-Ріканський колонКот-д'ІвуарНе вдалося створити користувача!Встановлення не вдалося. Перейдіть по посиланню і спробуйте встановити вручну.Неможливо встановити плагін. Спробуйте ще раз або встановіть вручну.Вибір часового поясуХорватіяХорватська кунаКубаКубинський песоКюрасаоВибір валютиНалаштовані ПереспрямуванняНалаштуйте Ваші форми шляхом найзручнішим для Вас (*)КіпрЧеська РеспублікаЧеська кронаКонсоль (обмеженння доступу до консолі користувачам)Формат ДатиВибір датиДеактивуватиЗа замовчуваннямВміст за замовчуваннямШирота за замовчуваннямДовгота за замовчуваннямОпція за замовчуваннямОпція(-ї) за замовчуваннямСтандартна РеєстраціяСтандартна Реєстрація і Реєстрація з підведженням лектронної поштиСтандартна РольСтандартний Критерій СортуванняПорядок сортування за замовчуваннямЗначення за замовчуваннямСтандартна Форма Входу WPСтандартна Форма Відновлення Паролю WPСтандартна Форма Реєстрацї WPРівень Зближення за замовчуваннямЛіміт за замовчуванням для цієї повторюваної групи.
            Залишити 0 для необмеженого.Значення поля за замовчуваннямЗначення за замовчуванням для поляЗначення текстового поля за замовчуваннямВидалитиВидалити усеВидалити усі елементиВидалити цей елементДемократична Республіка КонгоДаніяДатська кронаСпаднийОписВимкненоВідобразити ПовідомленняВідобразити Ім'яВідобразити ім'я якВідобразити ім'я публічно як"Відобразити ім'я публічно як" - лише з'являється на сторінці Редагувати ПрофільВідображати на формах PBВідображати на Стандартних Формах WPДжібутіЧи хочете виПідтвердити усіх обраних користувачів?Видалити усіх обраних користувачівВідмовити у підтвердженні усім обраним користувачам?ДомінікаДомініканська РеспублікаДомініканський песоЗавантажити заразЗавантажується і встановлюється...Електронна ПоштаПОМИЛКАПОМИЛКА:Східно-карибский доларСхідний ТиморЛегко редактувати шаблони для відображення користувачів у формі списку на Вашому сайті, а також створювати окремі сторінки користувачів. Заснований на використанні шорткодів, включаючи багато можливостей для налаштування Ваших списків.ЕквадорРедагуватиРедагувати ПрофільРедагувати групу полівРедагувати Форми Редагування ПрофілюРедагувати Реєстраційні ФормиРедагувати Список КористувачівРедагувати цей елементФорма Редагування ПрофілюФорми Редагування ПрофілюНаприклад (###) ###-####ЄгипетЄгипетський фунтЕль СальвадорЕль-Cальвадорський колонЛіквідуйте можливість використання слабких паролів, налаштувавши мінімальну довжину і складність паролю.Електронна поштаПідтвердження Електронною поштоюІнструмент налаштування електронної поштиЗаголовок Електронного ЛистаШаблони Електронної ПоштиКористувачу було надіслано повторне сповіщенняПусте поле не проходитиме перевірку на правильність введення телефонного номеру.Дозволити додаткові можливостіДозволити обмеження по кількості полів згенерованих у формах користувацької частини сайтуУвімкнути МодуліВведіть (детальний) опис опції для ознайомлення користувачем
            ВибірковоВведіть розділений комами список міток
            Ввидимий для користувачівВведіть список можливих значень розділених комоюю Під час реєстрації, якщо значення, надане користувачем не співпадатиме із жодним з цих значень, користувач не буде зареєстрований.Введіть розділений комами список значень
            Він може бути будь-чим, так як його вміст не відображається для користувачів, але не повинен містити спеціальні символи чи апострофиВведіть детальний опис умов договору для користувачів.
            Посилання можуть бути вставленими за допомогою стандартного синтаксиса HTML: <a href=\"custom_url\">custom_text</a>Вкажіть значення (між 20 і 200) для розміру 'Аватару'
            Якщо не вказано, за замовчуванням 100Введіть мінімальну кількість знаків, з якої повинен складатись пароль. Залиште пустим, щоб не встановлювати мінімальне значення.Введіть Ваш Google Maps API key ( Отримайте Ваш ключ API ). Якщо більш ніж одне поле карти додано до форми, ключ API першої відображеної карти буде використаний.Екваторіальна ГвінеяЕритреяПовідомлення про помилкуЕстоніяЕстонська кронаЕфіопіяЄвроУсе, що Вам необхідно для управління Вашими користувачами уже можливо доступно у модулях Pro.Приклад:Перегляд УривкуІснуючі СторінкиЗбільшити к-ть результатівДодаткові МожливостіДодаткові ФункціїДодаткові Поля Профілю доступні у Hobbyist або PRO версіяхДодаткові параметри шорткодівАспектна MetaТип АспектуАспектні менюФолклендські островиФолклендські ОстровиФолклендский фунтФарерські островиМожливості, що дозволяють розширити шляхи конролю над користувачами, підвищену безпеку і допомогу у боротьбі зі спам-реєстраціями користувачів.ПолеПараметри ПоляНазва ПоляФіджіФіджійський доларДізнатись більше про модулі PROФінляндіяІм'яІм'я/ПрізвищеІм'яДля сучасної взаємодії з користувачемВ цілях безпеки Ви повинні спрямувати віддалений ip на reCAPTCHA!Шорткод формиФранціяБезкоштовноФранцузька ГвіанаФранцузька ПолінезіяФранцузькі Південні і Антарктичні ТериторіїФорма входу в один клік, що використовує шорткод %s або віджет.Від (ім'я)Від (відповісти електронним листом)ГабонГамбіяЗагальний ЛімітОсновні НалаштуванняЗагальні ЗавантаженняГрузіяНімеччинаОтримати Новий ПарольПочніть роботу з додатковими полямиГанаГанський седіГібралтарГібралтарський фунтГлобальні переспрямуванняПосилання "Назад"Google Maps API KeyГреціяГренландіяГренадаГваделупаГуамГватемалаГватемальський кецальГернсіГернсійський фунтГвінеяГвінея-БісауГаянаГаянський доларHTMLВміст HTMLГаїтіТег ЗаголовкуОстрів Херд і острови МакдональдТут Ви можете активувати / деативувати доступні модулі Profile Builder.ПриховатиВатиканГондурасГондураська лемпіраГонконгГонконгський доларЯк це працює?УгорщинаУгорський форінтIDІсландіяІсландська кронаЯкщо Вам сподобалось користуватися %1$s будь-ласка оцініть нас на WordPress.org. Більше щасливих користувачів - більше можливостей, менше багів і краща підтримка для усіх. Якщо ви зареєструєте цю версію Profile Builder, вы будете отримувати інформацію, що стосується оновлень, правок і технічної підтримки.Якщо ви зацікавлені у відображенні різних полів під час реєстрації і редагуванні форм профілів будь ласка використовуйте аддон Multiple Registration & Edit Profile Forms.НеактивнийНевірний номер телефонуІндіяІндійська рупіяІндивідуальні Переспрямування КористувачаІндивідуальні редиректи, обумовлені у шорткодах; (redirect_priority=\"top\" параметр може бути доданий у будь-якому шорткоді, згодом цей редирект матиме пріорітет, найвищий серед усіх редиректів).ІндонезіяІндонезійська рупіяВвід / Прихований ВвідВстановити ЗаразВстановлення завершеноНевірний ключ активації!Невірний ключ!Невірне ім'я користувачаІранІранський реалІран,__(Ісламська РеспублікаІракІрландіяОстрів МенМенський фунтІзраїльІзраїльський шекельІталіяБерег Слонової КісткиJabberJabber / Google TalkЯмайкаЯмайський доларЯпоніяЯпонська єнаДжерсіДжерсійський фунтЙорданіяКазахстанКазахський тенгеЗабороніть користувачам переглядати панель управління WordPress, перенаправивши їх на задану сторінку після входу або реєстрації, лише у декілька кліків.КеніяКірібатіПівнічно-Корейський вонПівденно-Корейський вонКорея,__(Народно-демократична РеспублікаКорея,__(РеспублікаКосовоКувейтКиргизтанКиргизький сомМіткаМіткиНародна-демократична Республіка ЛаосЛаосЛаоський кіпОстанній »»ПрізвищеПрізвищеЛатвіяЛатвійський латДізнатись більшеЗалишити 0 для необмеженого.Залишіть пустим щоб не встановлювати максимальне числоЗалишіть пустим щоб не встановлювати мінімальне числоЗалиште пустим щоб не встановлювати жодних обмеженьЛівіяЛівійський фунтЛесотоЛіберіяЛіберійський доларЛівіяЛіхтенштейнЛімітЛіміт за РоллюПовідомлення про досягнення лімітуПерегляд СпискуЛитваЛитовський литЗавантажте власний CSS файл з користувацької частини сайту Profile Builder:ВийтиВийти »Вийти з цього акаунту.Вийти з облікового запису.ЛогінЛогін ( wp_login.php )Встановлено вхід із використанням електронної пошти. Це поле НЕ відображатиметься на користувацькій частині сайту (ви можете змінити ці налаштування у вкладці \"%s)Вхід за адресою електронної пошти або іменем користувачаВийтиВтратили пароль ( wp-login.php?action=lostpassword )Втратили парольВтратили пароль?ЛюксембургМакаоМакедоніяМакедонський денарМакедонія,__(колишня частина Республіки ЮгославіяМадагаскарВпевніться, що користувачі використовують справжні адреси електронних скриньок. Після реєстрації користувачі отримують сповіщення для підтвердження адреси електронної пошти.МалавіМалайзіяМалазійський рінггітМальдівиМаліМальтаКерувати Стандартними та Додатковими ПолямиКерувати ПолямиКерувати полем або групою полів, які будуть повторюваними.КартаВисота КартиМаршалові ОстровиМартинікаМавританіяМаврикійМаврикійська рупіяМаксимальне Значення ЧислаДозволене максимальне значення числа (0 щоб дозволити лише від'ємні числа)МайоттаСереднійУправління УчасникамиМета-ім'яМексикаМексиканський песоМікронезіяМікронезія,__(Федеративні ШтатиМінімальне Значення ЧислаДозволене мінімальне значення числа (0 щоб дозволити лише додатні числа)Мінімальна Довжина Паролю і Вимірювач СкладностіМінімальна Довжина Паролю:Мінімальна Сила Паролю:Мінімальна довжина %d символівМінімально необхідна версія Profile Builder:МодуліМолдоваМолдова,__(РеспублікаМонакоМонголіяМонгольський тугрикЧорногоріяМонтсератБільшеБільше ДеталейБільше ІнформаціїUrl Більше ІнформаціїБільше...МароккоМозамбікМозамбіцький метікалФорми Редагування Декількох ПрофілівМножинні Реєстраційні ФормиРедиректи налаштувань форм Множинної Реєстрації і Редагування ПрофілюТег або адреса електронної скриньки повинна бути діючою {{reply_to}} що веде за замовчуванням до адреси електронної скриньки адміністратораМ'янмаІм'яІм'я/ОписНамібіяНамібійський доларЗменшити к-ть результатівНауруНепалНепальска рупіяНідерландиАнтильський гільдерНова КаледоніяНова Форма Редагування ПрофілюНова Реєстраційна ФормаНовий Список КористувачівНова ЗеландіяНово-Зеландський доларНовий підписник %1$s.

            Ім'я користувача:%2$s
            Електронна пошта:%3$s
            Наступний »НікарагуаНікарагуанська кордобаПрізвиськоНігерНігеріяНігерійська найраНіуеНіНе знайдено Форм Редагування ПрофілюНе знайдено Форми Редагування Профілю в корзиніНе знайдено Реєстраційних ФормНе знайдено Реєстраційних Форм у корзиніНе знайдено Списку КористувачівНе знайдено Списку Користувачів у кошикуНе знайдено жодних елементів.Опції недоступніНічого не знайдено!ВідсутнєОстрів НорфолкПівнічна КореяПівнічні Маріанські ОстровиНорвегіяНорвезька кронаНе сумісно з Profile BuilderНе сумісно з вашою версією Profile Builder.Зареєструйте придбану копію %s за допомогою отриманого вами серійного номераЧислоЗначення Кроку ЧислаЧисло ПостівКількість Користувачів/СторінокОманОманський ріалТільки адміністратори можуть бачити це поле у формах редагування профілю.Тільки адміністратор може додавати нових користувачів.ОпціїПерезаписати ІснуючеЛогін PBФорма відновлення паролю PBРеєстрація PBНумерація СторінокПлатна та Безкоштовна ПідпискиПлатні АкаунтиPaid Member Subscriptions - безкоштовний плагін WordPressПакистанПакистанська рупіяПалауПалестинаПалестинаПанамаПанамське бальбоаПапуа Нова ГвінеяПарагвайПарагвайський гуараніПарольПароль втрачено і відновлено.URL сторінки відновлення паролю (вибірково):Лист Скидання ПаролюЛист Підтвердження Зміни ПаролюПароль Скинуто від "%1$s"Пароль було успішно встановлено для %1$s на "%2$s"Управління Платежамиерсоналізуйте усі електронні листи, що відправляються Вашим користувачам чи адміністраторам. При реєстрації, підтвердженні електронної пошти, підтвердженні або відхиленні адміністратором.ПеруПеруанський новий сольФіліпіниФіліпінське песоФормат номера телефонуПіткернБудь-ласка додайте ключ Google Maps API для цього поля.Будь-ласка, перевірте правильність введення електронної адреси.Будь-ласка перевірте правильність введення імені користувача.Будь-ласка оберіть інший тип поля, так як цей уже існує у Вашій формі (повинен бути унікальним) Будь-ласка, введіть (дійсне) значенння reCAPTCHAБудь-ласка, введіть унікальну назву поля. Будь-ласка, введіть дійсне ім'я користувача.Будь-ласка, введіть значення для обов'язкового поляБудь-ласка введіть лише цифри.Будь-ласка введіть Ваше ім'я користувача або електронну адресу.Будь-ласка, виберіть і введіть ID або ім'я вашого користувачаБудь-ласка оберіть принаймі одну роль користувача Будь-ласка, спробуйте інакшу!Плагін активованийПлагін деактивований.ПлагінактивнийПлагін неактивнийПлагін активнийПольщаПольський злотийПортугаліяПостиВстановлює який тип Поста буде відображатись у виборіПотужні Модулі (**)Налаштування приватності: Я хочу щоб мій сайт був видимий для пошукових систем і у публічних списках у цій мережі.Віджет Авторизації Profile BuilderРеєстрація Profile BuilderПуерто РікоКатарКатарський ріалПеремикачіВипадковий (повільно працює на базах данихб що містять більш ніж 10к користувачів)Назва КомпаніїВідновити ПарольПереспрямуватиПереспрямування Стандартних Форм і Сторінок WordpressПереспрямувати стандартні форми та сторінки WordPressТип переспрямуванняURL переспрямуванняЗареєструватисьЗареєструватися ( wp-login.php?action=register )Зареєструвати ВерсіюЗареєструйте Свою ВерсіюАдреса сторінки реєстрації (вибірково):ЗареєстрованийРеєстраціяРеєстрація та Редагування ПрофілюДата РеєстраціїФорма РеєстраціїФорми РеєстраціїРеєстрація за Згодою АдміністратораРеєстрація з підтвердженням електронної поштиПам'ятайте, що комбінації значень полів повинні існувати у базі даних.ПрибратиПрибрати усі фільтриПовторіть ПарольПовторювані поля збережено!Повторювана група полівПовторювані поляВідповістиРеспубліка КонгоОбов'язковоНеобхідний формат номера телефону:Повторно надіслати Лист Активації?Ключ СкиданняПосилання СкиданняСкинути ПарольUrl СкиданняОбмежити КонтентОбмежити список користувачів тільки певними ролями
            Якщо значення не визначено, використовуються значення за замовчуванням для усіх існуючих ролейСпробувати ПеревстановитиРеюньйонРольВідображення РолейРумуніяРумунський новий лейКількість РядківРосіяРосійський рубльРосійська ФедераціяРуандаСен-БартельміОстрів Святої ЄлениСейнт-Хеленський фунтОстрів Святої Єлени,__(Вознесіння і Тристан-да-КуньяСент-Кіттс і НевісСент-ЛюсіяСен-МартенСен-Мартен (Французька частина)Сен-П'єр і МікелонСент-Вінсент і ГренадиниСамоаСан МаріноСан-Томе і ПринсіпіСаудівська АравіяСаудівский ріалЗберегтиЗберегти ЗміниЗберегти НалаштуванняЗбережіть порядок обраних ролей користувачів за допомогою чекбоксівПошукПоля ПошукуМісце ПошукуНалаштування ПошукуПошук КористувачівПошук користувачів за усіма полямиПошук по усім полямПошук Форм Редагування ПрофілюШукати Реєстраційні ФормиПошук Списку КористувачівСекретний КлючВибратиОбрати усеОберіть ФайлОбрати роль користувачаВиберіть, для яких ролей активувати Підтвердження Адміністратором.Выберіть, на яких формах Profile Builder відображатиметься reCAPTCHAВиберіть, на яких стандартних формах WP відображатиметься reCAPTCHAОберіть які ролі користувачів відображатимуться користувачеві ( змініть порядок перетягуванням )Вибір 'Так' додасть поле до списку, але перезапише будь-яке інше поле у базі даних з ідентичним мета-іменем
            Використовуйте це на свій страх та ризикНадіслати облікові дані електронною поштою.СенегалСербіяСербський динарВстановити РольНалаштувати повідомлення про помилку, що відображатиметься для користувача.Встановлення розміру аватару лише для усіх списків користувачівВстановлення розміру аватару тільки на одному списку користувачівВстановлення критерія сортування за замовчуванням
            Може бути тимчасово зміненим для кожної нової сесіїВстановлення порядку сортування за замовчуванням
            Може бути тимчасово зміненим для кожної нової сесіїВстановіть кількість користувачів, яка відображатиметься на кожній сторінці списку користувачівНалаштуйте повторювану групу полів під час реєстрації та редагуванні форм. Обмежте число повторюваних груп для кожної ролі.Налаштуйте декілька реєстраційних форм з різними полями для певних ролей користувачів. Отримуйте різноманітну інформацію від різних типів користувачів.СейшелиСейшельська рупіяРозкажіть про себе, щоб заповнити профіль. Цю інформацію можуть бачити інші.ШорткодВідобразитиВідобразити усеВідобразити символ валютиВідобразити Тип ПостаПоказати перемикаючий лінк після множинного вибору. Залишити усе пустимВідобразити усі датиВідобразити/Приховати Панель Адміністратора на користувацькій частині сайтуСьєрра-ЛеонеДата РеєстраціїСингапурСінгапурський доларШаблон одного Списку КористувачівСінт-МартенСен-Мартен (Голандська частина)Ключ СайтуНазва СайтуНазва СайтуСлаг URL сайтуUrl СайтуСловаччинаСловеніяСоломонові островидолар Соломонових островівСомаліСомалійський шилінгХтось створив запит скидання паролю для наступного облікового запису: %1$s
            Якщо запит сворено не Вами - просто ігноруйте це повідомлення.
            Для скидання паролю перейдіть за цим посиланням:%2$sВиникла помилка, неможливо з'єднатися з сервером. Будь-ласка, спробуйте пізніше.Щось пішло не так. Будь-ласка спробуйте ще.Вибачте, у Вас немає достатньо прав на виконання цієї дії!Вибачте, Ви не можете завантажувати файли цого типу у цьому полі.Сортувати ТегиПівденна АфрикаПівденно-Африканський рандПівденна Джорджія та Південні Сандвічеві островиПівденна КореяПівденний СуданІспаніяВкажіть URL сторінки, куди користувачі будуть переспрямовані після реєстрації з використанням цієї форми
            Використайте наступний формат: http://www.mysite.comВкажіть URL сторінки, куди користувачі будуть переспрямовані після оновлення свого профілю, використовуючи цю форму
            Використовуйте наступний формат: http://www.mysite.comВкажіть розширення, використання завантаження яких Ви хотіли б обмежити
            Наприклад: .ext1,.ext2,.ext3
            Якщо не вказано, усі розширення файлів WordPress за замовчуванням будуть доступні (.*)Вкажіть допущені до завантаження розширення файлів
            Наприклад: .ext1, .ext2, .ext3
            Якщо не вказано за замовчуванням, будуть використані: .jpg, .jpeg, .gif, .png (.*)Вкажіть формат дати при використанні 'Вибір Дати'
            Допустимі значення: 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/dd/yyВкажіть кількість рядків елементу 'Текстова область'
            Якщо не вказано, за замовчуванням 5Вкажіть опцію, яка повинна бути вибраною за замовчуванням
            Якщо є декілька значень, розділіть їх за допомогою ',' (коми)Вкажіть опцію, яка повиннна бути обраною за замовчуваннямВкажіть сторінку, куди користувачі будуть переспрямовані при підтвердженні облікового запису електронної пошти. Ця сторінка може відрізнятися від сторінки (-ок) реєстрації і може бути зміненою у будь-який час. Якщо нічого не обрано, буде відображатися сторінка підтвердження за замовчуванням.Встановіть формат часу.Шрі ЛанкаШрі-Ланкійська рупіяСтатусШвидке Покрокове НалаштуванняЗначення кроку 1 щоб дозволити лише цілі числа, 0.1 щоб дозволити десяткові дроби з одним числом після крапкиПрямолінійні форми редагування профілю за допомогою шорткоду %s.Індикатор СилиСильнийУправління ПідпискоюСуданСурінамСурінамський доларСвальбард і Ян-МаєнСвазілендШвеціяШведська кронаШвейцаріяШвейцарський франкСиріяСирійський фунтАрабська Республіка СиріяТайваньТайванський новий доларТайвань,__(Китайська ПровінціяТаджикістанТанзаніяТанзанія,__(Об'єднана РеспублікаУмови ДоговоруТекстове полеТайландТайландський батТаке поле вже було додано в цю форму Таке мета-ім'я уже використовується Ім'я такого користувача уже було активовано!Функція "Підтвердження адміністратором" була активована під час реєстрації, тому будь-ласка, зверніть увагу на те що ви повинні підтвердити цього користувача, перш ніж він/вона зможе увійти!Обліковий запис %1s успішно створено!Найкращим способом додати реєстрацію на користувацькій частині сайту є редагування профілю та форми логіну.Введену Вами адресу електронної пошти не було знайдено у базі даних!Введена Вами адреса електронної пошти не існує.Введений розмір аватару менше 20 або більше 200 Значення розміру аватару повинне бути числом Введені Вами паролі не збігаються!Введений номер ряду не є числом Введене значення у Виборі Дати має некоректний формат Наступна опція не співпадає з опціями зі списку: %s Наступна опція(-ї) не співпадає із жодною опцією зі списку: %s Висота картиШирота на якій повинна відображатися карта, коли не прікріплені піни.Довгота на якій повинна відображатися карта, коли не прікріплені піни.Максимальне число полів було досягнуто.Мета-ім'я може містити лише малі букви, числа_ , - і жодних пробілів. Мета-ім'я не може бути пустим Мінімальна слабкість паролю повинна бути не меншою за %sПароль повинен бути не меншим за %s знаківВведений Вами пароль - помилковий.Паролі не співпадаютьСпливаюче повідомлення, коли було досягнуто ліміт повторюваних груп.Роль створеного користувача налаштована як роль за замовчуванням. Тільки адміністратор може зареєструвати користувача з роллю призначеною для цієї форми.Секретний ключ від Google, www.google.com/recaptchaОбраний користувач не може бути видаленийОбрані користувачі активованіОбраним користувачам повторно надіслано листи активаціїСерійний номер неможливо підтвердити, так як строк його використання вичерпаний!Серійний номер неможливо підтвердити, так як час перевірки вичерпано. Це можливо із-за проблем на сервері. Будь-ласка, повторіть спробу пізніше!Введений серійний номер не вдалося перевірити!Строк дії серійного номера скоро завершиться!Серійний номер був успішно перевірений!Шорткод буде доступний після публікації цієї форми.Ключ сайту від Google, www.google.com/recaptchaСписок користувачів буде відображатись лише залогованим користувачамСписок користувачів буде відображатись тільки для наступних ролейВведене ім'я користувача не було знайдено у базі даних!Ім'я користувача не може бути змінене.Користувачі обирають пароль під час створення профілюПід час валідації форми сталась помилкаПід час виконанні цієї дії сталася помилка!При спробі активувати користувача сталась помилкаПри спробі активувати користувача сталась помилкаСталась помилка при спробі відправити посилання активації для %1$s!Ці переспрямування відбуваються після успішної дії, накшталт реєстрації або успішного входуЦі налаштування будуть відтворені на сторінці налаштувань у закладці "Налаштування елетронної пошти адміністратора" після збереження.Ці налаштування також дублюються на сторінку налаштувань елементу "Інструмент налаштування електронної пошти користувача" після збереження.Ця адреса електронної пошти уже використовується.Ця адреса електронної пошти уже зарезервована для використання у найближчий час.Це поле дозволяє використання умовної логіки.Це поле обов'язкове до заповненняЦя форма пуста.Цей віджет авторизації дозволить Вам додати форму входу у бічну панель.Це повідомлення видиме лише адміністраторуТаке ім'я користувача уже існує.Це ім'я користувача уже активовано!Таке ім'я користувача уже зарезервоване для використання у найближчий час.Ім'я користувача введено некоректно, оскільки містить заборонені символи.Це ім'я користувача тепер активне!Це працює лише з формами у користувацькій частині сайту. Рекомендовано перенаправити реєстрацію WP за замовчуванням на Profile Builder використовуючи модуль "Custom Redirects".Формат ЧасуНалаштування часуВибір часового поясуСхідний ТиморНазва поляНазва:Щоб активувати вашого користувача, натисніть на ссилку:

            %s%s%s

            Після активації ви отримаєте ​​*інший email* з вашим логіном.Щоб дозволити використання десяткових дробів з двома числами після крапкиЩоб дозволити користувачам реєструватися на Вашому сайті за допомогою Profile Builder, спочатку треба увімкнути реєстрацію користувачів. Перейдіть до %1$sНалаштування мережі%2$s, під Реєстраційними Налаштуваннями поставте галочку "Профілі користувачів можуть бути зареєстровані". %3$sПрибрати%4$sЩоб у користувачів з'явилась можливість реєструватися на сайті через Profile Builder, ви повинні дозволити реєстрацію. Пройдіть %1$s Налаштування -> Загальні %2$s, і в пункті Членство поставте галочку “Будь-хто може зареєструватись”. %3$sВідмінити%4$sЩоб створити сторінку, що містить користувачів зареєстрованих на поточному сайті/блозі, вставте наступний шорткод на сторінку за Ваш вибором: %s.Для використання reCAPTCHA Ви повинні отримати API ключ відДля використання reCAPTCHA Ви повинні отримати публічний ключ API від:ТогоТокелауТонгаТрінідад і Тобагодолар Трінідад і ТобагоТунісТуреччинаТурецька ліраТуркменістанОстрови Теркс і КайкосТувалудолар ТувалуВведіть пароль зновуВведіть Ваш парольАмериканські Віргінські ОстровиURLАмериканський доларУгандаУгандійський шилінгУкраїнаУкраїнська гривняВідхилитиВідхиленоСповіщення Відмови КористувачевіОб'єднані Арабські ЕміратиСполучене КоролівствоБританський фунтСполучені ШтатиЗовнішні малі острови СШАОновитиОбновити Profile BuilderЗавантажитиУругвайУругвайський песоВикористайте ці шорткоди на сторінках, на яких повинні відображатись форми:Використовуйте це у поєднанні з функціями WordPress для відображення величини на обраній сторінці
            Автоматично-завершені, проте у деяких випадках з можливістю редагування (у цьому випадку це унікально)
            Зміна цього налаштування може зайняти багато часу у разі великої кількості користувачівВикористовуйте цей шорткод на тих сторінках, де повинна відображатись форма:Сповіщення Підтвердження КористувачаКількість КористувачівНалаштування електронної пошти користувачаКористувацькі Теги ПолівID користувачаID користувача / Ім'я користувачаID або ім'я користувачаId КористувачаСписок КористувачівMeta КористувачаПрізвисько КористувачаРоль КористувачаПереспрямування, застновані на ролі користувачаРолі КористувачівПорядок Ролей КористувачівКористувача не знайденоКористувач успішно підтверджений!Користувач успішно видалений!Користувачу успішно відмовлено у підтвердженні!Редагувати користувача:Роль КористувачаСтатус КористувачаНалаштування Списку КористувачівІм'я користувачаЛогін та Електронна поштаІм'я Користувача або Електронна АдресаЛогін або Електронна поштаІмена користувачів не можуть бути зміненими.Користувачі можуть реєструватись самостійно або Ви можете створити користувачів вручну тут.Користувачі не можуть реєструватись самостійно, але Ви можете створити користувачів вручну тут.Користувачі успішно підтверджені!Користувачі успішно видалені!Користувачам успішно відмовлено у підтвердженні!Користувачі з непідтвердженими адресами електронної поштиУзбекістанУзбецький сомВалідні теги {{reply_to}} і {{site_name}}ВалідаціяЗначення повинно бути множником %1$sЗначення повинно бути більшим або рівним %1$sЗначення повинно бути меншим або рівним %1$sВануатуВатиканВенесуелаВенесуельский боліварВенесуела,__(Боліварська РеспублікаВерсія %sДуже слабкийДуже СлабкийВ'єтнамВ'єтнамський донгВ'єтнамПереглянути КартуПереглянути усі додаткові параметри шорткодівПерегляд Форми Редагування ПрофілюПереглянути Реєстраційну ФормуПерегляд Списку КористувачівВіргінські Острови,__(БританськіВіргінські Острови,__(АмериканськіВидимістьВидимий вибірВідображати тільки для залогованих користувачів?Видимий лише наступним ролямВолліс і ФутунаСлабкийВебсайтЛаскаво просимо на%1$s!


            Ваше ім'я користувача:%2$sЛаскаво просимо %1$s!


            Ваше ім'я користувача:%2$s і пароль:%3$sЗахідна СахараЧи повинен відображатись символ валюти після назви валюти у даному виборіОбов'язкове поле чи ніВизначити чи автоматично виконувати вхід щойно зареєстрованого користувача чи ні
            Працює лише на одиночних-сайтах з неактивною функцією "Підтвердження Адміністратором" і "Підтвердження електронною поштою"
            УВАГА: Кешування реєстраційної форми робить автоматичний вхід неробочимПереспрямувати користувача на певну сторінку чи ніПереспрямування, що відбудеться, залежить від наступного пріорітету:З Додатковими Полями Профілю ви зможете створити реєстраційну форму у точній відповідності з потребами Вашого проекту.З Profile Builder Pro v2 ви можете відображати різноманітні поля в формах реєстрації і редагування профілю, використовуючи модуль Multiple Registration & Edit Profile Forms."З новим Полем Підписки у Profile Builder, ваші реєстраційні форми дозволять користувачам підписуватися на платні акаунти.За допомогою цього Ви зможете переспрямувати різноманітні форми і сторінки WordPress на сторінки, створені в Profile Builder.Yahoo IMЄменЄменський ріалТакТак, я хочу створити новий сайтYimВи уже увійшли. Ви можете змінити свій пароль у формі редагування паролю.На даний момент Ви увійшли як %1$s. %2$sНа даний момент Ви увійшли як %1s. Вам не потрібен інший обліковий запис. %2sВи увійшли в систему як %s.У вас немає прав на виконання цієї дії.Ви можете додати інформацію для %s після того як додасте записВи також можете використати значення кроку щоб встановити дозволені інтервали між числами (Наприклад: значення кроку 2 дозволить лише -4, -2, 0, 2 і так далі)Ви можете знайти список непідтверджених електронних адрес у %1$sКористувачі > Усі користувачі > Підтвердження Електронної пошти%2$s.Ви можете знайти список користувачів у %1$sКористувачі > Усі користувачі > Підтвердження Адміністратором%2$s.Ви зможете знайти це у меню Profile Builder.Ви зможете знайти файл за замовчуванням тут: %1$sВи можете використовувати: # для чисел, дужки ( ), - знак, + знак, крапку . та пробіли.Ви не можете додавати редиректи, що дублюються!Ви не можете зареєструвати дану роль користувачаВи самі вирішуєте, хто є користувачем вашого сайту. Отримайте сповіщення електронною поштою або затвердіть декількох користувачів одночасно за допомогою інтерфейсу WordPress.Ви вирішуєте кого допустити на свій сайт. Отримувати сповіщення електронною поштою або підтверджувати декілька користувачів одночасно за допомогою інтерфейсу WordPress. Увімкнути підтвердження адміністратором через оновлення до %1$s Hobbyist або PRO версії %2$s.У вас немає прав для перегляду цього списку користувачів.У Вас немає необхідної ролі для перегляду цього списку користувачів.У Вас немає жодних налаштувань розмітки сторінок в даному списку користувачів!У вас або недостатньо прав на цю дію, або сталася помилка!Ви успішно відновили свій пароль для: %1$sВи повинні увійти, щоб відредагувати Ваш профіль.Введіть дійсну електронну адресу.Вам необхідно ввести значення формата дати Ви повинні задати значення числа рядків Ви повинні ввести секретний ключ Ви повинні ввести ключ сайту Ви повинні обрати поле Ви повинні активувати функцію Список Користувачів з вкладки "Модулі"!Ви повинні вказати назву форми, перш ніж створювати їїВи використовуєте наступні теги у Ваших URL для переспрямування користувачів на різноманітні сторінки.Ви отримаєте посилання для створення нового паролю електронною поштою.Згодом Вас буде перенаправлено автоматично. Якщо Ви бачите цю сторінку більше ніж %1$d секунд, будь-ласка натисніть %2$s.%3$sВаш акаунт було успішно створено!Ваш акаунт повинен бути підтверджений адміністратором, перед тим як Ви зможете увійти.Ваш обліковий запис повинен бути підверджений адміністратором, перед тим як ви зможете скористуватися функцією "Відновлення Паролю".Ваш обліковий запис повинен бути підтверджений адміністратором перш ніж Ви зможете скористатись функцією "Відновлення паролю".Ваш обліковий запис %1$s був підтверджений!Вашому обліковому запису %1$s було відмовлено у підтвердженні!Ваш обліковий запис на {{site_name}} був підтверджений!Ваш обліковий запис на {{site_name}} не був підтверджений!Ваша адреса електронної пошти була успішно підтверджена.Ваш пароль було успішно змінено!Ваш профіль успішно оновлено!Пароль обраний при реєстраціїЧас сесії вичерпано! Будь-ласка, оновіть сторінку і спробуйте ще разЧас сеансу вичерпано! Будь-ласка, обновіть сторінку і спробуйте ще раз.URL Вашого сайту виглядатиме так:
            ЗамбіяЗімбабвеЗімбабвійський долар[%1$s] Активувати %2$s [%1$s] Інформація про Ваш новий обліковий запис"[{{site_name}}] Активувати {{username}}[{{site_name}}] Повідомлення про зміну адреси електронної поштиСкинути пароль для [{{site_name}}] Пароль було успішно змінено для [{{site_name}}]підтвердити цього користувача?підтвердженопідтвердити цю адресу електронної пошти самостійно?видалити цього користувача з _signups table?видалити цього користувача?відображаються усі користувачі, крім тих, для котрих ви вказали user_idвідображаються лише ті користувачі, для котрих ви вказали user_idвідображає користувачів, що мають певне мета-значення в межах (додаткового) мета-поляелектронна скринькагенерує URL діючої головної сторінки сайту.туту WordPress URL сайту може відрізнятися від URL головної сторінкиreCAPTCHAобов'язковоповторно надіслати посилання активації?відобразитиID користувачаURL попередньо відвіданої сторінкиопрацьована для URL версія імені користувача, нікнейм користувача може бути безпечно використаний у URL-адресах, оскільки він не може містити спеціальні символи чи пробіли.відмовити цьому користувачу?відмовленом'я користувачалогін або електронна поштаtranslation/profile-builder-es_ES.mo000066600000222723152141651170013536 0ustar00}77l7yZ8c889c :q:r;C<;c<<K<C<[?===="=+>E@>1> >e> (?5? L? W?d?2y? ?-? ??#?@@d AYqAGARBcfB!B7B'$CLCCC]CUXDDDDDDD D EEE5E>EXErEEEEEEEEE F F &F3FKF^F$tFFF FFF F(FGG;GLGH1H9KHH?HAH*IAIIIPI YIdIxI~II III0I I II3I(J=JLJfJ mJyJ J JJ JJJJ JK KkKKiL |LLLLLLLLLL!LLM,M 5MCMJMiMMM M MMMMMM MMMN, N7N@NFN7LN3N'N7NOKO OO PP2'P3ZP PPPP P P PP P PQUQrQzQQQQQ)QQQ Q Q RRR)R>RMR_RpR;R RRR R S&SDS KSVSgS xSS S SSS SSST/(T0XTTT/T.T1U2U;U NU[UyUUU UU8V@V EVRVnVVVVVV VsVZW `WnWW WW!WWWOW?LXX%YeYWBZZZZZbZ([ 1[>[M[\[>l[[[ [r[X\^\ o\{\\\ \\ \\?\(]7]>] C]Q]b] ~]]]]]]]]]] ^ ^ ^*^>^ E^O^ W^b^ g^q^z^ ^^^ ^^!^I^__ (_2_:_=_E____ __ ``,` D`Q`c`h`m` u``` ``````` ``pavaaa aaaaa aaa aab!#bEbMbUb]b cb qb {b5bbbbbc c!ccc2cdd +d6d CK Q]qy ȏ܏  5J Y$gEA+F\dx ˑڑ / = GShqDƒS _|$ ܓ) $ , 6 A KU]#f ֔ /44<Fq$ǕI66)X`:fK"Ř)G#^<bߙKB,("y;CG2ǜ+%&+L*xKٝ<%;br+K=he'X)02۠&,5+b ?@07@#U%yѢڢ)!@3:tN 8= R]fxktrjQT+ҩH?ȪUDpZ!(2"[/~8pPX z .; T am2 2Ů "12iLhRZrpͱ!>;`)Ʋy}miexŴ״ '*!R"t̵ Եߵ $ EQm(˶5 8 <JRZ9m(\  $ME79ڹ?T\c lw , 7>\!r%(Ի +2: BMVsk߼l !)0Kd!l¾ ˾پ& 9FNW`g p{2ۿNH>$AQ A,Bn   ( 5@`_2 =DSd v :Z$j! , Ab j v $%:4M 568?H [e} ^f m"{ #}/ +(!Tv`M<kd$k );OhN~( #  #(1JZ  .4;M`hp    % ,:AFU![S}  !.KPU ]ip v iox    ''(8aiqy  ;  ! 0Q,.:4o  ipy* B PX^ r~ 5!$?HPW ` kv {  )y  N* y &5! 3+"_1  $0I{PS;Z ":09?U\m v$3!#<!^o  &9/=i;d.H0w$;D 0N$ #";BKZ`+w >!6 L Z,d&N u!#\%  *@ 1> T `m   GIP$`"  #7oU\$@Ct_qXF @kK$  1. `m   S/M2} , l2=}@ !( ?I P\b it}* *"2n Ey>6.5)d.FLWQ#:B(Kt--I?8x/(/X6EGBMC/!'&+N;zMltq47G_`8+>E,#~  E M Q V ^ d k      "         ( $4 Y n  } $    X Q"'t"%:K\v&') $7Oaq/\o*&')/ C/N ~    6-F `/l ?RqI6>k^[yl%3"PV+RvCY68K,VHW<<8-S9;"U:BE~(Qz z % !(/!.X!1!+!5!3"*O"Kz"N"##%#)9#$c#%#####-#!$Y:$L$Q$3%9% ?% I%$S%x%% %%%

            Good News!

            An administrator has just approved your account: {{username}} on {{site_name}}.

            Hello,

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            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!

            To activate your user, please click the following link:
            {{{activation_link}}}

            After you activate, you will receive another email with your credentials.

            You have successfully reset your password to: {{password}}

            * only available in the %1$sHobbyist and Pro versions%2$s. Serial Number: Your serial number is about to expire, please %1$s Renew Your License%2$s. Your serial number is expired, please %1$s Renew Your License%2$s. is also activated. You need to deactivate it before activating this version of the plugin."Admin Approval" Activated:"Admin Approval" Feature:"Email Confirmation" Activated:"Email Confirmation" Landing Page:"Email" - users can Log In only with Email."Username and Email" - users can Log In with both Username and Email."Username" - users can Log In only with Username.%1$s %2$d%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s%1$s of %2$s%s couldn't be deleted%s pending« Prev«« First(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(no title)** only available in the %1$sPro version%2$s....Choose1 item

            You can visit your site at

            Your Profile Builder serial number is invalid or missing.
            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

            Title (Type)
            Title
            Type
            Meta Name
            Required
            Note: changing the form title also changes the shortcode!ERROR: The password must have a minimum strength of %sERROR: The password must have the minimum length of %s charactersERROR: Your account has to be confirmed by an administrator before you can log in.Profile Builder A new account has been created for you on {{site_name}}A new subscriber has (been) registered!A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be editedAIMAbout YourselfAccept user payments, create subscription plans and restrict content on your membership site.Accept user payments, create subscription plans and restrict content on your website.Account ManagementActivateActivation KeyActivation LinkActivation UrlActiveAdd EntryAdd FieldAdd NewAdd New Field to the ListAdd UserAdd new Edit-profile FormAdd new Registration FormAdd new User ListingAdd-On has been activatedAdd-On is ActiveAdd-OnsAddressAdmin ApprovalAdmin Approval (*)Admin Bar SettingsAdmin Email CustomizerAfghanistanAfter LoginAfter LogoutAfter Profile Update...After RegistrationAfter Registration...After login redirect URL (optional):Agree To Terms CheckboxAimAland IslandsAlbaniaAlgeriaAll UsersAll users have been successfully deletedAll-userlisting TemplateAllow Users to Log in With:Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.Allow users to log in with their email or username when accessing your site.Allowed Image ExtensionsAllowed Upload ExtensionsAllowed time to display any success messages (in seconds)American SamoaAn administrator has just approved your account on %1$s (%2$s).An administrator has just unapproved your account on %1$s (%2$s).An error occurred, please try again later.AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApplyApproveApprovedArgentinaArmeniaArubaAs an administrator you cannot change your role.AscendingAustraliaAustriaAuthor Archive ( http://sitename.com/author/admin )Automatically Log InAvailable TagsAvailable in All VersionsAvatarAvatar SizeAvatar Size (All-userlisting)Avatar Size (Single-userlisting)Avatar UploadAvatar or GravatarAzerbaijanBackBahamasBahrainBangladeshBarbadosBasic InformationBefore you can access your account %1s, an administrator has to approve it. You will be notified via email.Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.Before you can access your account, an administrator needs to approve it. You will be notified via email.BehaviourBelarusBelgiumBelizeBeninBermudaBhutanBilling AddressBiographical InfoBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBoth fields are empty.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaBulk ActionsBurkina FasoBurundiCambodiaCameroonCanadaCancelCape VerdeCayman IslandsCentral African RepublicChadCheck your e-mail for the confirmation link.CheckboxChileChinaChoose Edit Profile form to display on My Account page:Choose Register form to display on My Account page:Choose one of the supported field typesChoose one of the supported fields you manage install manually.CountryCountry SelectCroatiaCubaCuracaoCustom RedirectsCustomize Your Forms The Way You Want (*)CyprusCzech RepublicDate-formatDatepickerDeactivateDefaultDefault ContentDefault Edit ProfileDefault OptionDefault Option(s)Default RegisterDefault RegistrationDefault Registration & Registration with Email ConfirmationDefault RoleDefault Sorting CriteriaDefault Sorting OrderDefault ValueDefault value of the fieldDefault value of the textareaDeleteDelete allDelete all itemsDelete this itemDemocratic Republic of the CongoDenmarkDescendingDescriptionDisabledDisplay MessagesDisplay NameDisplay name asDisplay name publicly asDisplay on WooCommerce CheckoutDisplays customer billing fields in front-end. Displays customer shipping fields in front-end. DjiboutiDo you want toDo you want to bulk approve the selected users?Do you want to bulk delete the selected users?Do you want to bulk unapprove the selected users?DominicaDominican RepublicDownload NowDownloading and installing...E-mailERRORERROR:East TimorEasy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings.EcuadorEditEdit ProfileEdit the Edit-profile FormsEdit the Registration FormsEdit the User ListingEdit this itemEdit-profile FormEdit-profile FormsEgyptEl SalvadorEliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.EmailEmail AddressEmail ConfirmationEmail CustomizerEmail SubjectEmail TemplatesEmail notification resent to userEnable extra featuresEnable your modulesEnter a (detailed) description of the option for end users to read
            OptionalEnter a comma separated list of labels
            Visible for the userEnter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophesEnter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100Enter the minimum characters the password should have. Leave empty for no minimum limitEquatorial GuineaEritreaEstoniaEthiopiaEverything you will need to manage your users is probably already available using the Pro Modules.Example:Excerpt ViewExisting PagesExtra FeaturesExtra FunctionsExtra Profile Fields are available in Hobbyist or PRO versionsExtra shortcode parametersFalkland IslandsFaroe IslandsFeatures that give you more control over your users, increased security and help you fight user registration spam.FieldField PropertiesField TitleFijiFind out more about PRO ModulesFinlandFirst NameFirst/LastnameFirstnameFor Modern User InteractionFor security reasons, you must pass the remote ip to reCAPTCHA!Form ShortcodeFranceFreeFrench GuianaFrench PolynesiaFrench Southern TerritoriesFrom (name)From (reply-to email)GabonGambiaGeneral SettingsGeneric UploadsGeorgiaGermanyGet New PasswordGet started with extra fieldsGhanaGibraltarGo Back LinkGoogle Maps API KeyGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHTMLHTML ContentHaitiHeard Island and McDonald IslandsHere you can activate / deactivate available modules for Profile Builder.HideHondurasHong KongHungaryIDIcelandIf you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.InactiveIncorrect phone numberIndiaIndonesiaInput / Hidden InputInstall NowInstallation completeInvalid activation key!Invalid key!Invalid username.IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanKeep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.KenyaKiribatiKosovoKuwaitKyrgyzstanLabelLabelsLaosLast »»Last NameLastnameLatviaLearn MoreLeave it empty for no max valueLeave it empty for no min valueLeave it empty for no restrictionLebanonLesothoLiberiaLibyaLiechtensteinList ViewLithuaniaLoad Profile Builder's own CSS file in the front-end:Log outLog out »Log out of this accountLog out of this account.LoginLogin ( wp_login.php )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 )Login with Email or UsernameLogoutLost Password ( wp-login.php?action=lostpassword )Lost your passwordLost your password?LuxembourgMacaoMacedoniaMadagascarMake sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.MalawiMalaysiaMaldivesMaliMaltaManage Default and Extra FieldsManage FieldsMapMarshall IslandsMartiniqueMauritaniaMauritiusMax Number ValueMax allowed number value (0 to allow only negative numbers)MayotteMediumMember ManagementMeta-nameMexicoMexico PesoMicronesiaMin Number ValueMinimum Password Length and Strength MeterMinimum Password Length:Minimum Password Strength:Minimum length of %d charactersModulesMoldovaMonacoMongoliaMontenegroMontserratMoreMore DetailsMore InfoMore Info UrlMore...MoroccoMozambiqueMultiple Edit-profile FormsMultiple Registration FormsMust be a valid email address or the tag {{reply_to}} which defaults to the administrator emailMyanmarNameName/DescriptionNamibiaNauruNepalNetherlandsNew CaledoniaNew Edit-profile FormNew Registration FormNew User ListingNew ZealandNew subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            Next » NicaraguaNicknameNigerNigeriaNiueNoNo Edit-profile Form foundNo Edit-profile Forms found in trashNo Registration Form foundNo Registration Forms found in trashNo User Listing foundNo User Listing found in trashNo items found.No options availableNo results found!NoneNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNow that you acquired a copy of %s, you should take the time and register it with the serial number you receivedNumberNumber of PostsNumber of Users/PageOmanOnly administrators can see this field on edit profile forms.Only an administrator can add new users.OptionsOverwrite ExistingPaginationPaid & Free SubscriptionsPaid AccountsPaid Member Subscriptions - a free WordPress pluginPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayPasswordPassword Lost and Found.Password Recovery page URL (optional):Password Reset EmailPassword Reset from "%1$s"Password Successfully Reset for %1$s on "%2$s"Payment ManagementPersonalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.PeruPhilippinesPhonePitcairnPlease add the Google Maps API key for this field.Please check that you entered the correct email address.Please check that you entered the correct username.Please choose a different field type as this one already exists in your form (must be unique) Please enter a valid username.Please enter a value for the required field Please enter numbers onlyPlease enter your username or email address.Please select and enter the ID or username of your user.Please select at least one user role Please try a different one!Plugin has been activatedPlugin has been deactivated.Plugin is activePlugin is inactivePlugin is ActivePolandPortugalPostcode / ZipPostsPowerful Modules (**)Profile Builder Login WidgetProfile Builder RegisterPuerto RicoQatarRadio ButtonsRandom (very slow on large databases > 10K user)Recommended PluginsRecover PasswordRedirectRegisterRegister ( wp-login.php?action=register )Register VersionRegister Your VersionRegister page URL (optional):RegisteredRegistrationRegistration & Edit ProfileRegistration DateRegistration FormRegistration FormsRegistration with Admin ApprovalRegistration with Email ConfirmationRemember though, that the field-value combination must exist in the database.RemoveRemove All FiltersRepeat PasswordRepeater FieldsReply ToRepublic of the CongoRequiredResend Activation EmailReset PasswordRestrict ContentRestrict the userlisting to these selected roles only
            If not specified, defaults to all existing rolesRetry InstallReunionRoleRoles to DisplayRomaniaRow CountRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaveSave ChangesSave SettingsSave the user role order from the user roles checkboxesSearchSearch UsersSearch Users by All FieldsSearch all FieldsSearch the Edit-profile FormsSearch the Registration FormsSearch the User ListingSecret KeySelectSelect AllSelect FileSelect a user role.Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce.Select which Profile Builder Register form to display on My Account page from WooCommerce.
            This will also add the Profile Builder Login form to MyAccount page.Select which user roles to show to the user ( drag and drop to re-order )Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name
            Use this at your own riskSend these credentials via email.SenegalSerbiaSet RoleSet the avatar size on the all-userlisting onlySet the avatar size on the single-userlisting onlySet the default sorting criteria
            This can temporarily be changed for each new sessionSet the default sorting order
            This can temporarily be changed for each new sessionSet the number of users to be displayed on every paginated part of the all-userlistingSet up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.SeychellesShare a little biographical information to fill out your profile. This may be shown publicly.Ship to a different address?Shipping AddressShortcodeShowShow AllShow all datesShow/Hide the Admin Bar on the Front-EndSierra LeoneSign-up DateSingaporeSingle-userlisting TemplateSint MaartenSite KeySite NameSite TitleSite UrlSlovakiaSloveniaSolomon IslandsSomaliaSomeone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$sSomething went wrong, we could not connect to the server. Please try again later.Something went wrong. Please try again.Sorry, but you don't have permission to do that!South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.comSpecify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.comSpecify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)Specify the option which should be selected by defaultSpecify 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.Sri LankaState / CountyStatusStep by Step Quick SetupStrength indicatorStrongSubscription ManagementSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaTerms of AgreementTextareaThailandThat field is already added in this form That meta-name is already in use That username is already activated!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!The account %1s has been successfully created!The best way to add front-end registration, edit profile and login forms.The email address entered wasn't found in the database!The email you entered is not a valid email address.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical The entered passwords don't match!The entered row number is not numerical The entered value for the Datepicker is not a valid date-format The following option did not coincide with the ones in the options list: %s The following option(s) did not coincide with the ones in the options list: %s The meta-name cannot be empty The password must have a minimum strength of %sThe password must have the minimum length of %s charactersThe password you entered is incorrect.The passwords do not matchThe selected user couldn't be deletedThe selected users have been activatedThe selected users have had their activation emails resentThe serial number couldn't be validated because it expired!The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!The serial number entered couldn't be validated!The serial number is about to expire soon!The serial number was successfully validated!The shortcode will be available after you publish this form.The userlisting will only be visible only to the logged in usersThe userlisting will only be visible to the following rolesThe username entered wasn't found in the database!The usernames cannot be changed.There was an error in the submitted formThere was an error performing that action!There was an error while trying to activate the userThere was an error while trying to activate the user.There was an error while trying to send the activation link to %1$s!These settings are also replicated in the "Admin Email Customizer" settings-page upon save.These settings are also replicated in the "User Email Customizer" settings-page upon save.This email is already in use.This email is already reserved to be used soon.This field is requiredThis form is empty.This login widget lets you add a login form in the sidebar.This message is only visible by administratorsThis username already exists.This username is already activated!This username is already reserved to be used soon.This username is now active!Timezone SelectTitle of the fieldTitle:To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login.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$sTo allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$sTo use reCAPTCHA you must get an API key fromTo use reCAPTCHA you must get an API public key from:TogoTokelauTongaTown / CityTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluType your password again. Type your password.U.S. Virgin IslandsURLUgandaUkraineUnapproveUnapprovedUnapproved User NotificationUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUpdateUpload UruguayUse these shortcodes on the pages you want the forms to be displayed:Use this shortcode on the page you want the form to be displayed:User Approval NotificationUser Email CustomizerUser IDUser ID or UsernameUser IdUser ListingUser MetaUser NicenameUser RoleUser RolesUser Roles OrderUser not foundUser successfully approved!User successfully deleted!User successfully unapproved!User to edit:User-RoleUser-statusUserlisting SettingsUsernameUsername and EmailUsername or E-mailUsername or EmailUsernames cannot be changed.Users can register themselves or you can manually create users here.Users cannot currently register themselves, but you can manually create users here.Users successfully approved!Users successfully deleted!Users successfully unapproved!Users with Unconfirmed Email AddressUzbekistanValid tags {{reply_to}} and {{site_name}}ValidationVanuatuVaticanVenezuelaVersion %sVery WeakVery weakVietnamView MapView all extra shortcode parametersView the Edit-profile FormView the Registration FormView the User ListingVisibilityVisible only to logged in users?Visible to following RolesWallis and FutunaWeakWebsiteWelcome to %1$s!


            Your username is:%2$sWelcome to %1$s!


            Your username is:%2$s and password:%3$sWestern SaharaWhether the field is required or notWhether the field should be added to the WooCommerce checkout form or notWhether to automatically log in the newly registered user or not
            Only works on single-sites without "Admin Approval" and "Email Confirmation" features activated
            WARNING: Caching the registration form will make automatic login not workWhether to redirect the user to a specific page or notWith Extra Profile Fields you can create the exact registration form your project needs.With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts.WooCommerce SyncWooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!Yahoo IMYemenYesYes, I'd like to create a new siteYimYou are currently logged in as %1$s. %2$sYou are currently logged in as %1s. You don't need another account. %2sYou are currently logged in as %s. You are not allowed to do this.You can add the information for the %s after you add a entryYou can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.You can find it in the Profile Builder menu.You can find the default file here: %1$sYou cannot register this user roleYou decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.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.You don't have any pagination settings on this userlisting!You either don't have permission for that action or there was an error!You have successfully reset your password to: %1$sYou must be logged in to edit your profile.You must enter a valid email address.You must enter a value for the date-format You must enter a value for the row number You must enter the site key You must select a field You need to activate the Userlisting feature from within the "Modules" tab!You need to specify the title of the form before creating itYou will receive a link to create a new password via email.You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$sYour account has been successfully created!Your account has to be confirmed by an administrator before you can log in.Your account has to be confirmed by an administrator before you can use the "Password Recovery" feature.Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.Your account on %1$s has been approved!Your account on %1$s has been unapproved!Your account on {{site_name}} has been approved!Your account on {{site_name}} has been unapproved!Your email was successfully confirmed.Your password has been successfully changed!Your profile has been successfully updated!Your selected password at signupYour session has expired! Please refresh the page and try againYour session has expired! Please refresh the page and try again.ZambiaZimbabwe[%1$s] Activate %2$s[%1$s] Your new account information[{{site_name}}] Activate {{username}}[{{site_name}}] Password Resetapprove this user?approvedconfirm this email yourself?delete this user from the _signups table?delete this user?displays all users except the ones you specified the user_id fordisplays only the users that you specified the user_id fordisplays users having a certain meta-value within a certain (extra) meta-fieldemailherereCAPTCHArequiredresend the activation link?showunapprove this user?unapprovedusernameusername or emailPO-Revision-Date: 2017-08-11 10:55+0000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=n != 1 X-Generator: Loco - https://localise.biz/ Project-Id-Version: Profile Builder Report-Msgid-Bugs-To: POT-Creation-Date: 2017-08-11 10:54+0000 Last-Translator: bubico aa Language-Team: Spanish (Spain) Language: es-ES

            ¡Buenas Noticias!

            Un administrador ha aprobado su cuenta: {{username}} en {{site_name}}.

            Hola,

            Desafortunadamente un administrador ha desaprobado su cuenta: {{username}} en {{site_name}}.

            ¡Bienvenido a {{site_name}}!

            Su nombre de usuario es:{{username}} y su contraseña:{{password}}

            ¡Bienvenido a {{site_name}}!

            Su nombre de usuario es:{{username}} y su contraseña:{{password}}

            Antes de que pueda acceder a su cuenta, un administrador necesita aprobarla. Usted será notificado via email..

            Nuevo suscriptor en {{site_name}}.

            Nombre de Usuario:{{username}}

            Nuevo suscriptor en {{site_name}}.

            Nombre de Usuario:{{username}}

            E-mail:{{user_email}}

            La característica de Aprobación del Admin fue activada en el tiempo de registro, así que por favor recuerde que ¡necesita aprobar a este usuario antes de que pueda autenticarse!

            Para activar su usuario, por favor haga clic en el enlace siguiente:
            {{{activation_link}}}

            Luego de activar, recibirá otro email con sus credenciales.

            Tu contraseña ha sido exitosamente restaurada a: {{password}}

            * solamente disponible en las %1$sversiones Hobbyist y Pro%2$s.Número de Serie:Su número de serie está a punto de expirar, por favor %1$s Renueve Su Licencia%2$s.Su número de serie expiró, por favor %1$s Renueve Su Licencia%2$s.está también activado. Necesita desactivarlo antes de activar está versión del plugin."Aprobación del Admin" Activada:Característica "Aprobación del Admin":"Confirmación de Email" Activada:Página de llegada de "Confirmación de Email":"Email" - los usuarios pueden Autenticarse con el Email."Nombre de Usuario y Email" - los usuarios pueden Autenticarse tanto con el Nombre de Usuario como con el Email."Nombre de Usuario" - los usuarios pueden Autenticarse con el Nombre de Usuario.%1$s %2$d%1$s ha pedido un cambio de contraseña via la característica de reseteo de contraseña.
            Su nueva contraseña es:%2$s%1$s de %2$s%s no pudo ser eliminado%s pendiente« Ant«« Primero(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(sin título)* solamente disponible en la %1$sversión Pro%2$s....Escoger1 elemento

            Puedes visitar tu sitio en

            Su número de serie de Profile Builder es inválido o no se encuentra.
            Por favor %1$sregistre su copia%2$s para recibir acceso a actualizaciones automáticas y soporte. ¿Necesita una llave de licencia? %3$sCompre una ahora%4$s

            Título (Tipo)
            Título
            Tipo
            Meta Nombre
            Requerido
            Nota: ¡cambiar el título de la forma también cambia el código corto!ERROR: La contraseña tiene que tener una fortaleza mínima de %sERROR: La contraseña tiene que tener un tamaño mínimo de %s caracteresERROR: Su cuenta tiene que ser confirmada por un administrador antes de que pueda autenticarse.Profile Builder Una nueva cuenta ha sido creada para usted en {{site_name}}¡Un nuevo suscriptor ha sido registrado!Un ID único y auto-generado para este campo particular
            Usted puede usar esto en conjunción con filtros para apuntar a este elemento si se necesita
            No puede ser editadoAIMAcerca de UstedAceptar pagos de usuarios, crear planes de suscripciones y restringir el contenido en tu sitio de afiliaciónAceptar pagos de los usuarios , crear planes de suscripción y restringir el contenido de su página web.Administrar cuentaActivarLlave de ActivaciónEnlace de ActivaciónURL de ActivaciónActivoAdicionar EntradaAdicionar CampoAdicionar NuevoAdicionar Nuevo Campo a la ListaAdicionar UsuarioAdicionar nueva Forma de Editar Perfil Adicionar nueva Forma de RegistroAdicionar Nuevo Listado de UsuarioEl Add-On ha sido activadoEl Add-Ons está activadoAdd-OnsDirecciónAprobación del AdminAprobación del Admin (*)Ajustes de Admin BarPersonalizador de Email de AdminAfghanistanDespués de Iniciar sesiónDespués de Terminar sesiónLuego de la Actualización del Perfil...Después de RegistrarseLuego del Registro...URL de redirección luego de autenticarse (opcional):Casilla de Aceptar los TérminosAimAland IslandsAlbaniaAlgeriaTodos los UsuariosTodos los usuarios han sido eliminados satisfactoriamenetPlantilla All-userlistingPermitir a los Usuaios Autenticarse Con:Permite a diferentes roles de usuario editar sus informaciones específicas. Establezca las formas de edición de múltiples perfiles con diferentes campos para ciertos roles de usuario.Permite a usuarios autenticarse con su correo o nombre de usuario cuando se accede al sitio.Extensiones de Imagen PermitidasExtensiones de Subida PermitidasTiempo permitido para mostrar cualquier mensajes satisfactorios (en segundos)American SamoaUn administrador ha aprobado su cuenta el %1$s (%2$s).Un administrador ha desaprobado su cuenta el %1$s (%2$s).Ha ocurrido un error, por favor inténtalo de nuevo más tarde.AndorraAngolaAnguillaAntarcticaAntigua and BarbudaAplicarAprobarAprobadoArgentinaArmeniaArubaComo administrador, no puedes cambiar tu RolAscendenteAustraliaAustriaArchivos del autor ( http://sitename.com/author/admin )Autenticarse AutomáticamenteEtiquetas DisponiblesDisponible en todas las versionesAvatarTamaño del AvatarTamaño del Avatar (All-userlisting) Tamaño del Avatar (Single-userlisting) Subida de AvatarAvatar o GravatarAzerbaijanAtrásBahamasBahrainBangladeshBarbadosInformación BásicaAntes de que pueda acceder a su cuenta %1s, un administrador tiene que aprobarla. Usted será notificado via email.Antes de que pueda acceder a su cuenta %1s, necesita confirmar su dirección de email. Por favor chequee su bandeja de entrada y haga clic en el enlace de activación.Antes de que pueda acceder su cuenta, un administrador necesita aprobarla. Usted será notificado via email.ComportamientoBelarusBelgiumBelizeBeninBermudaBhutanDirección de FacturaciónInformación BiográficaBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaAmbos campos están vacíos.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaAcciones en BloqueBurkina FasoBurundiCambodiaCameroonCanadaCancelarCape VerdeCayman IslandsCentral African RepublicChadChequee su e-mail para el enlace de confirmación.CasillaChileChinaElige el formulario Editar Perfil para que aparezca en la pagina de Mi Cuenta:Seleccione el formulario de Registro a mostrar en la página "Mi cuenta"Escoja uno de los campos disponiblesEscoger uno de los campos soportados que usted gestiona instale manualmente.PaísSelector de PaísCroatiaCubaCuracaoRedirecciones PersonalizadasPersonalice Sus Formas De La Manera Que Quiera (*)CyprusCzech RepublicFormato de fechaSelector de FechaDesactivarValor Por DefectoContenido Por DefectoPerfil de Editar PredeterminadoOpción Por DefectoOpción(es) Por DefectoRegistro por defectoRegistro Por DefectoRegistro Por Defecto y Registro con Confirmación de EmailRol Por DefectoCriterio de Ordenamiento Por DefectoOrden de Ordenamiento Por DefectoValor Por DefectoValor por defecto del campoValor por defecto del textareaEditarBorrar todoBorrar todos los elementosBorrar este elementoDemocratic Republic of the CongoDenmarkDescendenteDescripciónDeshabilitadoMostrar MensajesNombre a MostrarMostrar nombre comoMostrar el nombre públicamente comoMostrar en el Checkout de WoocommerceMostrar campos de facturación del cliente en el front-endMostrar campos de envío del cliente en el front-endDjibouti¿Usted desea¿Desea aprobar en bloque los usuarios seleccionados?¿Desea eliminar en bloque los usuarios seleccionados?¿Desea desaprobar en bloque los usuarios seleccionados?DominicaDominican RepublicDescargarBajando e instalando...E-mailERRORERROR:East TimorPlantillas fácil de editar para listar sus usuarios del sitio web así como crear páginas de un usuario simple. Basado en código corto, ofrece muchas opciones para personalizar sus listados.EcuadorEditarEditar PerfilEditar las Formas de Editar PerfilEditar las Formas de RegistroEditar el Listado de UsuarioEditar este elementoForma de Editar PerfilFormas de Editar PerfilEgyptEl SalvadorElimine contraseñas débiles estableciendo un tamaño mínimo de contraseña y forzando una cierta fortaleza de contraseña.EmailCorreo electrónicoConfirmación de EmailPersonalizador de EmailAsunto del EmailPlantillas de Correo ElectronicoNotificación de Email reenviada al usuarioHabilitar características extrasHabilitar sus módulosEntre una descripción (detallada) de la opción para que los usuarios finales lean
            OpcionalEntrar una lista separada por coma de etiquetas
            Visible para los usuariosEntrar una lista de valores separada por coma
            Esto puede ser cualquier cosa, como está oculto al usuario, pero no debería contener caracteres especiales o apóstrofesEntrar una descripción detallada de los términos del acuerdo para que el usuario lea.
            Los enlaces pueden ser insertados usando sintaxis HTML estándar:<a href="custom_url">custom_text</a>Entrar un valor (entre 20 y 200) para el tamaño del 'Avatar'
            Si no se especifica, deja por defecto 100Entre los caracteres mínimos que la contraseña debe tener. Deje en blanco para no límite mínimo.Equatorial GuineaEritreaEstoniaEthiopiaTodo lo que necesite para gestionar sus usuarios está probablemente disponible utilizando el Pro Modules. Ejemplo:Vista de ExtractoPáginas ExistentesCaracterísticas extras.Funciones AdicionalesLos Campos Extras del Perfil están disponibles en versiones de Hobbyist o PROParámetros de código corto adicionalesFalkland IslandsFaroe IslandsCaracterísticas que le dan más control sobre sus usuarios, incrementando la seguridad y ayudándolo a evitar los registros spams de usuarios.CampoPropiedades del campoTítulo del CampoFijiDescubra más acerca de PRO ModulesFinlandPrimer NombreNombre/ApellidosPrimer NombrePara la Interacción del Usuario Moderno¡Por razones de seguridad, usted tiene que para el ip remoto a reCAPTCHA!Código Corto de la FormaFranceGratisFrench GuianaFrench PolynesiaFrench Southern TerritoriesDe (nombre)De (email de responder-a)GabonGambiaAjustes GeneralesSubidas GenéricasGeorgiaGermanyObtener Nueva ContraseñaComience con los campos extrasGhanaGibraltarEnlace de VolverClave de la API de Google MapsGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHTMLContenido HTMLHaitiHeard Island and McDonald IslandsAquí usted puede activar/desactivar los módulos disponibles para Profile Builder.OcultarHondurasHong KongHungaryIDIcelandSi usted registra esta versión de Profile Builder, recibirá información referente a actualizaciones, parches, y soporte técnico.InactivoNúmero de teléfono incorrectoIndiaIndonesiaInput / Input OcultoInstalar ahoraInstalación completada¡Llave de activación inválida!¡Llave inválida!Nombre de usuario inválido.IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanMantenga sus usuarios fuera del panel de control de WordPRess, redirecciónelos a la vista pública luego de la autenticación o registro, todo está a unos clics.KenyaKiribatiKosovoKuwaitKyrgyzstanEtiquetaEtiquetasLaosÚltimo »»ApellidosApellidosLatviaAprende másDejar vacío para ningún valor máximoDejar vacío para ningún valor mínimoDéjalo vacío para ninguna restricciónLebanonLesothoLiberiaLibyaLiechtensteinVista de ListaLithuaniaEl propio CSS de Load Profile Builder en la vista pública:SalirSalir »Salir de esta cuentaSalir de esta cuenta.AutenticaciónIniciar sesión ( wp_login.php )La Autenticación está establecida para realizarse usando el E-mail. ¡Este campo NO aparecerá en la parte pública! (usted puede cambiar estos ajustes en la pestaña "%s") Autenticación con Email o Nombre de UsuarioSalirPerdí mi contraseña ( wp-login.php?action=lostpassword )Perdió su contraseña¿Perdió su contraseña?LuxembourgMacaoMacedoniaMadagascarEsté seguro que los usuarios se autentican con emails genuinos. En el registro los usuarios recibirán una notificación para confirmar sus direcciones de email.MalawiMalaysiaMaldivesMaliMaltaGestionar Campos Por Defecto y AdicionalesGestionar CamposMapaMarshall IslandsMartiniqueMauritaniaMauritiusValor máximoValor máximo permitido (0 para permitir sólo números negativos)MayotteMediaGestion de MiembrosMeta-nombreMexicoPeso mexicanoMicronesiaValor mínimoTamaño Mínimo de Contraseña y Medidor de FortalezaTamaño Mínimo de Contraseña:Fortaleza Mínima de Contraseña:Mínimo de %d caracteres. MódulosMoldovaMonacoMongoliaMontenegroMontserratMásMas detallesMás InfoUrl de Más InfoMás...MoroccoMozambiqueFormas de Edición de Múltiples PerfilesFormas de Registro MúltipleTiene que ser una dirección de email válida o la etiqueta {{reply_to}} que tiene por defecto el email del administradorMyanmarNombreNombre/DescripciónNamibiaNauruNepalNetherlandsNew CaledoniaNueva Forma de Editar PerfilNueva Forma de RegistroNuevo Listado de UsuarioNew ZealandNuevo suscriptor el %1$s.

            Nombre de Usuario:%2$s
            E-mail:%3$s
            Sigu »NicaraguaApodoNigerNigeriaNiueNoNo se encontró Forma de Editar PerfilNo se encontró Forma de Editar Perfil en la papeleraNo se encontró Forma de RegistroNo se encontraron Formas de Registro en la papeleraNo se encontró Listado de UsuarioNo se encontró Listado de Usuario en la papeleraNo se encontraron elementos.No hay opciones disponibles¡No se encontraron resultados!NingunoNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayAhora que ha adquirido una copia de %s, usted debería tomarse un tiempo y registrarlo con el número de serie que recibióNúmeroNúmero de PostsNúmero de Usuarios/PáginaOmanSólo administradores pueden ver este campo en el editor de formularios de perfilesSolamente un administrador puede adicionar nuevos usuarios.OpcionesSobrescribir ExistentePaginaciónSuscripciones Gratuitas y de Pago.Cuentas de PagoPaid Member Subscription - un plugin gratuito de WordPressPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayContraseñaPerdido y Encontrado de Contraseña.URL de página de Recuperar Contraseña (opcional):Restaurar Contraseña vía E-mailReseteo de Contraseña desde "%1$s"Contraseña Reseteada Satisfactoriamente para %1$s el "%2$s"Administrar pagoPersonalice todos los emails enviados a sus usuarios o administradores. En el registro, la confirmación de email y la aprobación/desaprobación de admin.PeruPhilippinesTeléfonoPitcairnAñade la clave de la API de Google Maps para este campo.Por favor chequee que entró la dirección de email correcta.Por favor chequee que entró el nombre de usuario correcto.Por favor escoja un tipo de campo diferente dado que este solo existe en su forma (debe ser único) Por favor ingrese un nombre de usuario válidoPor favor entre un valor para el campo requeridoPor favor ingresa números solamentePor favor entre su nombre de usuario o dirección de email.Por favor elije e ingrese el ID o el nombre de usuario de su cuenta.Por favor seleccione al menos un rol de usuario ¡Por favor trate con uno diferente!El plugin ha sido activadoEl plugin ha sido desactivadoPlugin activadoPlugin desactivadoEl plugin está activadoPolandPortugalCódigo PostalPostsMódulos Potentes (**)Widget de Autenticación de Profile BuilderRegistro de Profile BuilderPuerto RicoQatarBotones RedondosAleatorio (muy lento en bases de datos grandes > 10k usuarios)Plugins recomendadosRecuperar contraseñaRedireccionarRegistrarRegistrarse ( wp-login.php?action=register )Registre la VersiónSi está interesado en mostrar diferentes campos en las formas de edición del perfil y el registro, por favor use El Addon Multiple Registration & Edit Profile Forms.URL de página de registro (opcional):RegistradoRegistroRegistro y Edición del PerfilFecha de RegistroForma de RegistroFormas de RegistroRegistro con Aprobación de AdminRegistro con Confirmación de EmailRecuerde sin embargo, que la combinación campo-valor tiene que existir en la base de datos.EliminarQuitar todos los filtrosRepetir contraseñaCampos repetitivosResponder aRepublic of the CongoRequeridoReenviar Email de ActivaciónResetear ContraseñaContenido restringidoRestringir la lista de usuario solamente a los roles seleccionados
            Si no se especifica, se amplía a todos los roles existentesReintentar InstalaciónReunionRolRoles a MostrarRomaniaCantidad de FilasRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSalvarSalvar CambiosSalvar AjustesSalvar el orden de roles de usuario de las casillas de roles de usuarioBuscarBuscar usuariosBuscar Usuarios por Todos los CamposBuscar todos los CamposBuscar las Formas de Editar PerfilBuscar las Formas de RegistroBuscar el Listado de UsuarioClave secretaSelectorSeleccionar TodoSeleccionar archivoSelecciona un rol de usuario.Selecciona que formulario de Editar-perfil de Profile Builder para mostrar en la pagina Mi cuenta de WooComerceSelecciona el formulario de Profile Builder para mostrar en la página "Mi cuenta" de WooCommerce.
            Esto también añadirá el formulario de Profile Builder Login a la página "Mi cuenta".Seleccionar cuáles roles de usuario mostrar al usuario (arrastre y suelte para reorganizar)Seleccionar 'Sí' adicionará el campo a la lista, pero sobrescribirá cualquier otro campo en la base de datos que tiene el mismo meta-nombre
            Usar esto bajo su propio riesgo Enviar estas credenciales via email.SenegalSerbiaEstablecer RolEstablecer el tamaño del avatar solamente en el all-userlistingEstablecer el tamaño del avatar solamente en el single-userlistingEstablecer el criterio de ordenamiento por defecto
            Esto puede temporalmente ser cambiado para cada nueva sesiónEstablecer el orden de ordenamiento por defecto
            Esto puede temporalmente ser cambiado para cada nueva sesiónEstablecer el número de usuarios a mostrarse en cada parte paginada del all-userlistingEstablecer formas de registro múltiples con diferentes campos para ciertos roles de usuario. Capturar diferentes informaciones de diferentes tipos de usuarios.SeychellesCompartir una pequeña información biográfica para llenar su perfil. Esto puede mostrarse públicamente. ¿Enviar a una dirección diferente?Dirección de envíoCódigo cortoMostrarMostrar todosMostrar todas las fechasMostrar/Ocultar el Admin Bar en la Vista PúblicaSierra LeoneFecha de RegistroSingaporePlantilla Single-userlistingSint MaartenSitio claveNombre del SitioTítulo del sitioUrl del SitioSlovakiaSloveniaSolomon IslandsSomaliaAlguien pidió que la contraseña sea reseteada para la siguiente cuenta:%1$s
            Si esto fue un error, solamente ignore este email y nada ocurrirá.
            Para resetear su contraseña, visite el siguiente enlace:%2$sAlgo salió mal, no pudimos conectarnos al servidor. Por favor inténtalo de nuevo.Algo salió mal. Por favor inténtalo de nuevo.Disculpe, ¡pero no tiene permisos para hacer eso!South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainEspecificar la URL de la página a la que los usuarios serán redirigidos una vez registrados usando esta forma
            Utilice el siguiente formato: http://www.mysite.comEspecificar la URL de la página a la que los usuarios serán redireccionados una vez que actualizaron su perfil usando esta forma
            Utilizar el siguiente formato: http://www.mysite.comEspecificar la(s) extensión(es) que desea limitar para subir
            Ejemplo:.ext1,.ext2,.ext3
            Si no se especifica, deja por defecto todas las extensiones de archivos permitidas por WordPress (.*)Especificar la(s) extensión(es) que desea limitar para subir
            Ejemplo:.ext1,.ext2,.ext3
            Si no se especifica, deja por defecto:.jpg,.jpeg,.gif,.png (.*)Especificar el número de filas para un campo 'Textarea'
            Especificar la opción que debería ser seleccionada por defecto
            Si hay valores múltiples, separarlos con una ',' (coma)Especificar la opción que debería ser seleccionada por defectoEspecificar la página donde los usuarios serán redirigidos cuando se confirma la cuenta de email. Esta página puede ser diferente a la(s) página(s) de registro y puede ser cambiada en cualquier momento.Sri LankaEstado / RegiónEstadoConfiguración Rapida Paso a PasoIndicador de FortalezaFuerteAdministrar suscripciónSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaTérminos del AcuerdoÁrea de TextoThailandEse campo ya está añadido en esta forma Ese meta nombre ya está en uso ¡Ese nombre de usuario ya está activado!La característica "Aprobación del Admin" fue activada en el tiempo de registro, ¡por favor recuerde que necesita aprobar a este usuario antes de que él/ella pueda autenticarse!¡La cuenta %1s ha sido creada satisfactoriamente!La mejor forma de adicionar el registro en la vista pública, editar el perfil y las formas de autenticación.¡La dirección de email entrada no se encontró en la base de datos!El email que ha entrado no es una dirección de email válida.El tamaño del avatar entrado no está entre 20 y 200 El tamaño del avatar entrado no es numérico ¡Las contraseñas entradas no coinciden!El número de la fila entrado no es numérico El valor entrado para el Datepicker no es un formato de fecha válido La siguiente opción no coincidió con aquellas de la lista de opciones: %s La(s) siguiente(s) opción(es) no coincide(n) con aquellas en la lista de opciones:%s El meta-nombre no puede ser vacío La contraseña tiene que tener una fortaleza mínima de %sLa contraseña tiene que tener un tamaño mínimo de %s caracteresLa contraseña que entró es incorrecta.Las contraseñas no coincidenEl usuario seleccionado no pudo ser eliminadoLos usuarios seleccionados han sido activadosLos usuarios seleccionados han tenido sus email de activación reenviados¡El número de serie no ha podido ser validado porque expiró!El número de serie no ha podido ser validado porque el proceso sobrepasó el tiempo de espera. Esto es posible debido a que el server está caido.¡ Por favor intente luego! ¡El número de serie está a punto de expirar!¡El número de serie está a punto de expirar!¡El número de serie fue validado satisfactoriamente!El código corto estará disponible luego de que publique esta forma.La lista de usuario solamente será visible a los usuarios autenticadosLa lista de usuario solamente será visible a los roles siguientes¡El nombre de usuario entrado no se encontró en la base de datos!Los nombres de usuario no pueden ser cambiados.Hubo un error en la forma enviada¡Hubo un error ejecutando esa acción!Hubo un error intentando activar el usuarioHubo un error mientras se trataba de activar el usuario. ##¡Hubo un error mientras se intentaba enviar el enlace de activación a %1$s!Estos ajustes también se replican en la página de ajustes de "Personalizador de Email de Admin" al salvar.Estos ajustes están también replicados en la página de ajustes de "Personalizador de Email de Usuario" al salvar.Este email ya está en uso.Este email ya está reservado para ser usado pronto.Campo requeridoEsta forma está vacía.El widget de autenticación le permite añadir una forma de autenticación en la barra lateral.Este mensaje está visible solamente por administradoresEl nombre de usuario ya existe.¡Este nombre de usuario está ya activado!El nombre de usuario ya está reservado para ser usado pronto.¡Este nombre de usuario está ahora activo!Selector de Zona HorariaTítulo del CampoTítulo:Para activar tu usuario, por favor haz click en el siguiente link: :

            %s%s%s

            Después de activarlo, recibirás *otro e-mail* con tu login.Para permitir a los usuarios registrarse en su sitio web via Profile Builder, usted tiene primero que habilitar el registro de usuario. Vaya a %1$sAjustes de Red%2$s, y en Ajustes de Registros esté seguro de seleccionar “Las cuentas de usuario pueden ser registradas”. %3$sDescartar%4$sPara permitir a los usuarios registrarse para su sitio web via Profile Builder, usted tiene primero que habilitar el registro de usuario. Vaya a la pestaña %1$sAjustes -> General%2$s, y en Membresía esté seguro de seleccionar “Cualquiera puede registrarse”. %3$sDescartar%4$sPara utilizar reCAPTCHA usted tiene que obtener la llave de API desdePara utilizar reCAPTCHA usted tiene que obtener una llave pública API desde:TogoTokelauTongaCiudadTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluEscriba su contraseña nuevamente.Escriba su contraseña.U.S. Virgin IslandsURLUgandaUkraineDesaprobarDesaprobadoNotificación de Usuario DesaprobadoUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsActualizarSubirUruguayUsar estos códigos cortos en las páginas en las que quiere que las formas se muestren:Utilice este código corto en la página en la que desea que la forma se muestre:Notificación de Aprobación de UsuarioPersonalizador de Email de UsuarioIdentidicación del usuarioID o Nombre de UsuarioId del UsuarioListado de UsuarioMeta del UsuarioNicename del UsuarioRole del UsuarioRoles de UsuarioOrden de Roles de UsuarioUsuario no encontrado¡Usuario aprobado satisfactoriamente!¡Usuario eliminado satisfactoriamente!¡Usuario desaprobado satisfactoriamente!Usuarios a editar:Usuario-RolEstado del usuarioAjustes de Userlisting Nombre de UsuarioUsuario o Email Nombre de Usuario o E-mailUsuario o EmailLos nombres de usuario no pueden ser cambiados.Los usuarios pueden registrarse ellos mismos o usted puede manualmente crear usuarios aquí.Los usuarios no pueden registrarse ellos mismos actualmente, pero usted puede crear usuarios manualmente aquí.¡Usuario aprobado satisfactoriamente!¡Usuario eliminado satisfactoriamente!¡Usuario desaprobado satisfactoriamente!Usuarios con Direcciones de Email Sin ConfirmarUzbekistanEtiquetas válidas {{reply_to}} y {{site_name}}ValidaciónVanuatuVaticanVenezuelaVersión %sMuy DébilMuy débilVietnamVer mapaVer todos los parámetros de código corto adicionalesVer la Forma de Editar Perfil Ver la Forma de RegistroVer el Listado de UsuarioVisibilidad¿Visible solamente a los usuario autenticados?Visible a los Roles siguientesWallis and FutunaDébilSitio Web¡Bienvenido a %1$s!


            Tu nombre de usuarui es:%2$s¡Bienvenido a %1$s!


            Su nombre de usuario es:%2$s y contraseña:%3$sWestern SaharaSi el campo es requerido o noYa sea que el campo debe ser añadido a la forma de pago WooCommerce o noCuando autenticarse automáticamente en el nuevo usuario registrado o no
            Solamente funciona en sitios simples sin las características "Aprobación de Admin" y "Confirmación por Email" activadas
            ADVERTENCIA: Hacer caché en la forma de registro va a hacer que la autenticación automática no funcioneCuando redireccionar al usuario a una página específica o noCon Campos Extras del Perfil usted puede crear la forma exacta de registro de sus necesidades del proyecto.Con el nuevo Campo de Suscripciones en Profile Builder, tus formularios de registro le permitirán a tus usuario registrarse en cuentas de paga.WooCommerce SyncWooCommerce necesita estar instalado y activado para que Profile Builder - WooCommerce Sync Add-on trabaje correctamente!Yahoo IMYemenSiSi, me gustaría crear un sitio nuevoYimUsted está autenticado actualmente como %1$s. %2$sUsted está autenticado actualmente como %1s. Usted no necesita otra cuenta. %2sUsted está autenticado actualmente como %sNo se te permite hacer esto.Usted puede adicionar la información para el %s luego de que adicione una entradaUsted puede encontrar una lista de direcciones de email no confirmadas %1$sUsers > All Users > Email Confirmation%2$s.Usted puede encontrar una lista de usuario en %1$sUsers > All Users > Admin Approval%2$s.Usted puede encontrarla en el menú de Profile BuilderUsted puede encontrar el archivo por defecto aquí: %1$sUsted no puede registrar este rol de usuarioUsted decide quién es un usuario en su sitio web. Obtenga notificación via email o apruebe usuarios múltiples a la vez desde la Interfaz de Usuario de WordPress.Usted decide quien es un usuario en su sitio web. Obtenga notificaciones a través de email o apruebe múltiples usuarios a la vez desde la Interfaz de Usuario de WordPRess. Habilite Aprobación del Amin actualizando a las %1$sversiones Hobbyist o Pro%2$s.¡Usted no tiene ningún ajuste de paginación en esta lista de usuario!¡Usted o no tiene permiso para esa acción o hubo un errorUsted ha reseteado satisfactoriamente su contraseña a: %1$sUsted tiene que estar autenticado para editar su perfil.Debe ingresar una dirección válida de emailUsted tiene que entrar un valor para el formato de fecha Usted tiene que entrar un valor para el número de la fila Debes ingresar la clave del sitio Tiene que seleccionar un campo ¡Usted necesita activar la característica de Userlisting en la pestaña "Módulos"!Usted necesita especificar el título de la forma antes de crearlaUsted recibirá un enlace para crear una nueva contraseña via email.Usted pronto será redirigido automáticamente. Si ve esta página por más de %1$d segundos, por favor haga clic en %2$s.%3$s¡Tu cuenta ha sido creada exitosamente!Tu cuenta debe ser confirmada por un administrador antes de que puedas loggearte.Su cuenta tiene que ser confirmada por un administrador antes de que pueda usar la característica "Recuperar Contraseña"Su cuenta tiene que ser confirmada por un administrador antes de que pueda usar la característica "Resetear Contraseña".¡Su cuenta el %1$s ha sido aprobada!¡Su cuenta ha sido desaprobada el %1$s!¡Su cuenta en {{site_name}} ha sido aprobada!¡Su cuenta en {{site_name}} ha sido desaprobada!Su email fue confirmado satisfactoriamente.¡Su contraseña ha sido cambiada satisfactoriamente!¡Su perfil ha sido actualizado satisfactoriamente!Su contraseña seleccionada al inscribirse¡Su sesión ha expirado! Por favor refresque la página y trate nuevamente¡Su sesión ha expirado! Por favor refresque la página e intente nuevamente.ZambiaZimbabwe[%1$s] Activar %2$s[%1$s] La información de su nueva cuenta[{{site_name}}] Activar {{username}}[{{site_name}}] Restaurar Contraseña¿Aprobar este usuario?aprobada¿confirmar este email usted mismo?¿eliminar este usuario de la tabla _signups?¿eliminar este usuario?muestra todos los usuarios excepto aquellos para los que usted ha especificado el user_idmuestra solamente los usuarios para los que usted ha especificado el user_idmuestra usuarios que tienen cierto meta valor en un cierto meta campo (adicional)emailaquíreCAPTCHArequerido¿reenviar el enlace de activación?mostrar¿desaprobar este usuario?desaprobadonombre de usuarionombre de usuario o emailtranslation/profile-builder-zh_HK.po000066600000455056152141651170013555 0ustar00# Translation of Profile Builder in Chinese (Hong Kong) # This file is distributed under the same license as the Profile Builder package. msgid "" msgstr "" "PO-Revision-Date: 2015-09-29 11:54:55+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: GlotPress/0.1\n" "Project-Id-Version: Profile Builder\n" #: admin/manage-fields.php:125 msgid "Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yy" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:244 msgid "Individual redirects defined in shortcodes; redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects." msgstr "" #: admin/manage-fields.php:1214 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." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:240 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "" #: admin/register-version.php:251 msgid "

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            " msgstr "" #: admin/register-version.php:246 msgid "

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            " msgstr "" #: front-end/recover.php:151 msgid "You are already logged in. You can change your password on the edit profile form." msgstr "" #: front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "" #: features/functions.php:909 msgid "

            You can visit your site at " msgstr "" #: features/functions.php:896 msgid "

            Also, you will be able to visit your site at " msgstr "" #: front-end/default-fields/blog-details/blog-details.php:138 msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network." msgstr "" #: front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "" #: front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "" #: front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "" #: modules/email-customizer/email-customizer.php:36 #: modules/user-listing/userlisting.php:118 msgid "Blog URL" msgstr "" #: admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "" #: admin/manage-fields.php:219 msgid "Blog Details" msgstr "" #: admin/pms-cross-promotion.php:239 msgid "Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "" #: features/email-confirmation/email-confirmation.php:578 msgid "Welcome to %1$s!


            Your username is:%2$s" msgstr "" #: modules/user-listing/userlisting.php:1303 msgid "View Map" msgstr "" #: admin/add-ons.php:103 msgid "Available in Hobbyist and Pro Versions" msgstr "" #: admin/add-ons.php:105 msgid "Available in All Versions" msgstr "" #: admin/add-ons.php:148 msgid "Learn More" msgstr "" #: admin/basic-info.php:99 msgid "Timepicker" msgstr "" #: admin/basic-info.php:100 msgid "Colorpicker" msgstr "" #: admin/basic-info.php:103 msgid "Currency Select" msgstr "" #: admin/basic-info.php:109 msgid "Number" msgstr "" #: admin/basic-info.php:114 msgid "Validation" msgstr "" #: admin/basic-info.php:115 msgid "Map" msgstr "" #: admin/basic-info.php:116 msgid "HTML" msgstr "" #: admin/basic-info.php:162 modules/modules.php:117 msgid "Repeater Fields" msgstr "" #: admin/basic-info.php:163 msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role." msgstr "" #: admin/general-settings.php:62 msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "" #: admin/manage-fields.php:118 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count" msgstr "" #: admin/manage-fields.php:141 msgid "Show Currency Symbol" msgstr "" #: admin/manage-fields.php:141 msgid "Whether the currency symbol should be displayed after the currency name in the select option." msgstr "" #: admin/manage-fields.php:142 msgid "Show Post Type" msgstr "" #: admin/manage-fields.php:142 msgid "Posts from what post type will be displayed in the select." msgstr "" #: admin/manage-fields.php:143 msgid "Allowable Values" msgstr "" #: admin/manage-fields.php:143 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." msgstr "" #: admin/manage-fields.php:144 msgid "Error Message" msgstr "" #: admin/manage-fields.php:144 msgid "Set a custom error message that will be displayed to the user." msgstr "" #: admin/manage-fields.php:145 msgid "Time Format" msgstr "" #: admin/manage-fields.php:145 msgid "Specify the time format." msgstr "" #: admin/manage-fields.php:146 msgid "Google Maps API Key" msgstr "" #: admin/manage-fields.php:146 msgid "Enter your Google Maps API key ( Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used." msgstr "" #: admin/manage-fields.php:147 msgid "Default Latitude" msgstr "" #: admin/manage-fields.php:147 msgid "The latitude at which the map should be displayed when no pins are attached." msgstr "" #: admin/manage-fields.php:148 msgid "Default Longitude" msgstr "" #: admin/manage-fields.php:148 msgid "The longitude at which the map should be displayed when no pins are attached." msgstr "" #: admin/manage-fields.php:149 msgid "Default Zoom Level" msgstr "" #: admin/manage-fields.php:149 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "" #: admin/manage-fields.php:150 msgid "Map Height" msgstr "" #: admin/manage-fields.php:150 msgid "The height of the map." msgstr "" #: admin/manage-fields.php:152 msgid "HTML Content" msgstr "" #: admin/manage-fields.php:152 msgid "Add your HTML (or text) content" msgstr "" #: admin/manage-fields.php:153 msgid "Phone Format" msgstr "" #: admin/manage-fields.php:153 msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces." msgstr "" #: admin/manage-fields.php:153 msgid "Eg. (###) ###-####" msgstr "" #: admin/manage-fields.php:153 msgid "Empty field won't check for correct phone number." msgstr "" #: admin/manage-fields.php:154 msgid "Heading Tag" msgstr "" #: admin/manage-fields.php:154 msgid "Change heading field size on front-end forms" msgstr "" #: admin/manage-fields.php:155 msgid "Min Number Value" msgstr "" #: admin/manage-fields.php:155 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "" #: admin/manage-fields.php:155 msgid "Leave it empty for no min value" msgstr "" #: admin/manage-fields.php:156 msgid "Max Number Value" msgstr "" #: admin/manage-fields.php:156 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "" #: admin/manage-fields.php:156 msgid "Leave it empty for no max value" msgstr "" #: admin/manage-fields.php:157 msgid "Number Step Value" msgstr "" #: admin/manage-fields.php:157 msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal" msgstr "" #: admin/manage-fields.php:157 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "" #: admin/manage-fields.php:157 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)" msgstr "" #: admin/manage-fields.php:157 msgid "Leave it empty for no restriction" msgstr "" #: admin/manage-fields.php:561 msgid "Albania Lek" msgstr "" #: admin/manage-fields.php:562 msgid "Afghanistan Afghani" msgstr "" #: admin/manage-fields.php:563 msgid "Argentina Peso" msgstr "" #: admin/manage-fields.php:564 msgid "Aruba Guilder" msgstr "" #: admin/manage-fields.php:565 msgid "Australia Dollar" msgstr "" #: admin/manage-fields.php:566 msgid "Azerbaijan New Manat" msgstr "" #: admin/manage-fields.php:567 msgid "Bahamas Dollar" msgstr "" #: admin/manage-fields.php:568 msgid "Barbados Dollar" msgstr "" #: admin/manage-fields.php:569 msgid "Bangladeshi taka" msgstr "" #: admin/manage-fields.php:570 msgid "Belarus Ruble" msgstr "" #: admin/manage-fields.php:571 msgid "Belize Dollar" msgstr "" #: admin/manage-fields.php:572 msgid "Bermuda Dollar" msgstr "" #: admin/manage-fields.php:573 msgid "Bolivia Boliviano" msgstr "" #: admin/manage-fields.php:574 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "" #: admin/manage-fields.php:575 msgid "Botswana Pula" msgstr "" #: admin/manage-fields.php:576 msgid "Bulgaria Lev" msgstr "" #: admin/manage-fields.php:577 msgid "Brazil Real" msgstr "" #: admin/manage-fields.php:578 msgid "Brunei Darussalam Dollar" msgstr "" #: admin/manage-fields.php:579 msgid "Cambodia Riel" msgstr "" #: admin/manage-fields.php:580 msgid "Canada Dollar" msgstr "" #: admin/manage-fields.php:581 msgid "Cayman Islands Dollar" msgstr "" #: admin/manage-fields.php:582 msgid "Chile Peso" msgstr "" #: admin/manage-fields.php:583 msgid "China Yuan Renminbi" msgstr "" #: admin/manage-fields.php:584 msgid "Colombia Peso" msgstr "" #: admin/manage-fields.php:585 msgid "Costa Rica Colon" msgstr "" #: admin/manage-fields.php:586 msgid "Croatia Kuna" msgstr "" #: admin/manage-fields.php:587 msgid "Cuba Peso" msgstr "" #: admin/manage-fields.php:588 msgid "Czech Republic Koruna" msgstr "" #: admin/manage-fields.php:589 msgid "Denmark Krone" msgstr "" #: admin/manage-fields.php:590 msgid "Dominican Republic Peso" msgstr "" #: admin/manage-fields.php:591 msgid "East Caribbean Dollar" msgstr "" #: admin/manage-fields.php:592 msgid "Egypt Pound" msgstr "" #: admin/manage-fields.php:593 msgid "El Salvador Colon" msgstr "" #: admin/manage-fields.php:594 msgid "Estonia Kroon" msgstr "" #: admin/manage-fields.php:595 msgid "Euro" msgstr "" #: admin/manage-fields.php:596 msgid "Falkland Islands (Malvinas) Pound" msgstr "" #: admin/manage-fields.php:597 msgid "Fiji Dollar" msgstr "" #: admin/manage-fields.php:598 msgid "Ghana Cedis" msgstr "" #: admin/manage-fields.php:599 msgid "Gibraltar Pound" msgstr "" #: admin/manage-fields.php:600 msgid "Guatemala Quetzal" msgstr "" #: admin/manage-fields.php:601 msgid "Guernsey Pound" msgstr "" #: admin/manage-fields.php:602 msgid "Guyana Dollar" msgstr "" #: admin/manage-fields.php:603 msgid "Honduras Lempira" msgstr "" #: admin/manage-fields.php:604 msgid "Hong Kong Dollar" msgstr "" #: admin/manage-fields.php:605 msgid "Hungary Forint" msgstr "" #: admin/manage-fields.php:606 msgid "Iceland Krona" msgstr "" #: admin/manage-fields.php:607 msgid "India Rupee" msgstr "" #: admin/manage-fields.php:608 msgid "Indonesia Rupiah" msgstr "" #: admin/manage-fields.php:609 msgid "Iran Rial" msgstr "" #: admin/manage-fields.php:610 msgid "Isle of Man Pound" msgstr "" #: admin/manage-fields.php:611 msgid "Israel Shekel" msgstr "" #: admin/manage-fields.php:612 msgid "Jamaica Dollar" msgstr "" #: admin/manage-fields.php:613 msgid "Japan Yen" msgstr "" #: admin/manage-fields.php:614 msgid "Jersey Pound" msgstr "" #: admin/manage-fields.php:615 msgid "Kazakhstan Tenge" msgstr "" #: admin/manage-fields.php:616 msgid "Korea (North) Won" msgstr "" #: admin/manage-fields.php:617 msgid "Korea (South) Won" msgstr "" #: admin/manage-fields.php:618 msgid "Kyrgyzstan Som" msgstr "" #: admin/manage-fields.php:619 msgid "Laos Kip" msgstr "" #: admin/manage-fields.php:620 msgid "Latvia Lat" msgstr "" #: admin/manage-fields.php:621 msgid "Lebanon Pound" msgstr "" #: admin/manage-fields.php:622 msgid "Liberia Dollar" msgstr "" #: admin/manage-fields.php:623 msgid "Lithuania Litas" msgstr "" #: admin/manage-fields.php:624 msgid "Macedonia Denar" msgstr "" #: admin/manage-fields.php:625 msgid "Malaysia Ringgit" msgstr "" #: admin/manage-fields.php:626 msgid "Mauritius Rupee" msgstr "" #: admin/manage-fields.php:627 msgid "Mexico Peso" msgstr "" #: admin/manage-fields.php:628 msgid "Mongolia Tughrik" msgstr "" #: admin/manage-fields.php:629 msgid "Mozambique Metical" msgstr "" #: admin/manage-fields.php:630 msgid "Namibia Dollar" msgstr "" #: admin/manage-fields.php:631 msgid "Nepal Rupee" msgstr "" #: admin/manage-fields.php:632 msgid "Netherlands Antilles Guilder" msgstr "" #: admin/manage-fields.php:633 msgid "New Zealand Dollar" msgstr "" #: admin/manage-fields.php:634 msgid "Nicaragua Cordoba" msgstr "" #: admin/manage-fields.php:635 msgid "Nigeria Naira" msgstr "" #: admin/manage-fields.php:636 msgid "Norway Krone" msgstr "" #: admin/manage-fields.php:637 msgid "Oman Rial" msgstr "" #: admin/manage-fields.php:638 msgid "Pakistan Rupee" msgstr "" #: admin/manage-fields.php:639 msgid "Panama Balboa" msgstr "" #: admin/manage-fields.php:640 msgid "Paraguay Guarani" msgstr "" #: admin/manage-fields.php:641 msgid "Peru Nuevo Sol" msgstr "" #: admin/manage-fields.php:642 msgid "Philippines Peso" msgstr "" #: admin/manage-fields.php:643 msgid "Poland Zloty" msgstr "" #: admin/manage-fields.php:644 msgid "Qatar Riyal" msgstr "" #: admin/manage-fields.php:645 msgid "Romania New Leu" msgstr "" #: admin/manage-fields.php:646 msgid "Russia Ruble" msgstr "" #: admin/manage-fields.php:647 msgid "Saint Helena Pound" msgstr "" #: admin/manage-fields.php:648 msgid "Saudi Arabia Riyal" msgstr "" #: admin/manage-fields.php:649 msgid "Serbia Dinar" msgstr "" #: admin/manage-fields.php:650 msgid "Seychelles Rupee" msgstr "" #: admin/manage-fields.php:651 msgid "Singapore Dollar" msgstr "" #: admin/manage-fields.php:652 msgid "Solomon Islands Dollar" msgstr "" #: admin/manage-fields.php:653 msgid "Somalia Shilling" msgstr "" #: admin/manage-fields.php:654 msgid "South Africa Rand" msgstr "" #: admin/manage-fields.php:655 msgid "Sri Lanka Rupee" msgstr "" #: admin/manage-fields.php:656 msgid "Sweden Krona" msgstr "" #: admin/manage-fields.php:657 msgid "Switzerland Franc" msgstr "" #: admin/manage-fields.php:658 msgid "Suriname Dollar" msgstr "" #: admin/manage-fields.php:659 msgid "Syria Pound" msgstr "" #: admin/manage-fields.php:660 msgid "Taiwan New Dollar" msgstr "" #: admin/manage-fields.php:661 msgid "Thailand Baht" msgstr "" #: admin/manage-fields.php:662 msgid "Trinidad and Tobago Dollar" msgstr "" #: admin/manage-fields.php:663 admin/manage-fields.php:664 msgid "Turkey Lira" msgstr "" #: admin/manage-fields.php:665 msgid "Tuvalu Dollar" msgstr "" #: admin/manage-fields.php:666 msgid "Ukraine Hryvna" msgstr "" #: admin/manage-fields.php:667 msgid "United Kingdom Pound" msgstr "" #: admin/manage-fields.php:668 msgid "Uganda Shilling" msgstr "" #: admin/manage-fields.php:669 msgid "US Dollar" msgstr "" #: admin/manage-fields.php:670 msgid "Uruguay Peso" msgstr "" #: admin/manage-fields.php:671 msgid "Uzbekistan Som" msgstr "" #: admin/manage-fields.php:672 msgid "Venezuela Bolivar" msgstr "" #: admin/manage-fields.php:673 msgid "Viet Nam Dong" msgstr "" #: admin/manage-fields.php:674 msgid "Yemen Rial" msgstr "" #: admin/manage-fields.php:675 msgid "Zimbabwe Dollar" msgstr "" #: admin/manage-fields.php:1094 msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n" msgstr "" #: admin/manage-fields.php:1311 msgid "Search Location" msgstr "" #: assets/lib/wck-api/wordpress-creation-kit.php:754 msgid "You are not allowed to do this." msgstr "" #: features/admin-approval/class-admin-approval.php:461 #: features/email-confirmation/class-email-confirmation.php:460 msgid "Search Users" msgstr "" #: features/conditional-fields/conditional-fields.php:78 msgid "Conditional Logic" msgstr "" #: features/conditional-fields/conditional-fields.php:79 msgid "Conditional Rules" msgstr "" #: features/conditional-fields/conditional-fields.php:448 msgid "This field has conditional logic enabled." msgstr "" #: features/functions.php:685 msgid "Incorrect phone number" msgstr "" #: front-end/class-formbuilder.php:113 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." msgstr "" #: front-end/extra-fields/map/map.php:46 front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "" #: front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "" #: front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "" #: front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "" #: front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "" #: front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "" #: front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bolivia, __( Plurinational State of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bonaire, __( Sint Eustatius and Saba" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Brunei Darussalam" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cabo Verde" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cocos (Keeling) Islands" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Congo" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Congo, __( the Democratic Republic of the" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cote dIvoire" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Falkland Islands (Malvinas)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Holy See (Vatican City State)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Iran, __( Islamic Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Democratic Peoples Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lao Peoples Democratic Republic" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Macedonia, __( the former Yugoslav Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Micronesia, __( Federated States of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Moldova, __( Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Palestine, __( State of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Russian Federation" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Helena, __( Ascension and Tristan da Cunha" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Martin (French part)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sint Maarten (Dutch part)" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Syrian Arab Republic" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Taiwan, __( Province of China" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tanzania, __( United Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Timor-Leste" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Venezuela, __( Bolivarian Republic of" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Viet Nam" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( British" msgstr "" #: front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( U.S." msgstr "" #: modules/email-customizer/email-customizer.php:11 #: modules/user-listing/userlisting.php:186 msgid "User Fields Tags" msgstr "" #: modules/email-customizer/email-customizer.php:479 msgid "The users selected password at signup" msgstr "" #: modules/email-customizer/user-email-customizer.php:278 msgid "[{{site_name}}] Notice of Email Change" msgstr "" #: modules/email-customizer/user-email-customizer.php:289 msgid "Changed Email Address Notification" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Limit" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Enable limit to the number of fields to be generated by users in front end forms " msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "General Limit" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "Limit reached message" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The maximum number of fields has been reached." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The popup message to display when the limit of repeater groups is reached." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Limit per Role" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Leave 0 for unlimited." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Repeated field group" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Manage field or group of fields that will be repeatable." msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:259 msgid "Edit field group" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:260 msgid "Repeatable fields saved!" msgstr "" #: modules/repeater-field/admin/repeater-manage-fields.php:277 #: modules/repeater-field/admin/repeater-manage-fields.php:326 msgid "Please enter a unique field title.\n" msgstr "" #: modules/repeater-field/repeater-field.php:258 msgid "Are you sure you want to delete this?" msgstr "" #: modules/user-listing/userlisting.php:192 msgid "Sort Tags" msgstr "" #: modules/user-listing/userlisting.php:201 #: modules/user-listing/userlisting.php:2237 msgid "Faceted Menus" msgstr "" #: modules/user-listing/userlisting.php:202 msgid "User Count" msgstr "" #: modules/user-listing/userlisting.php:1536 msgid "Show All" msgstr "" #: modules/user-listing/userlisting.php:1668 msgid "No options available" msgstr "" #: modules/user-listing/userlisting.php:1807 msgid "Remove All Filters" msgstr "" #: modules/user-listing/userlisting.php:2227 msgid "Label" msgstr "" #: modules/user-listing/userlisting.php:2227 msgid "Choose the facet name that appears on the frontend" msgstr "" #: modules/user-listing/userlisting.php:2228 msgid "Facet Type" msgstr "" #: modules/user-listing/userlisting.php:2228 msgid "Choose the facet menu type" msgstr "" #: modules/user-listing/userlisting.php:2229 msgid "Facet Meta" msgstr "" #: modules/user-listing/userlisting.php:2229 msgid "Choose the meta field for the facet menu" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Behaviour" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Narrow the results" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Expand the results" msgstr "" #: modules/user-listing/userlisting.php:2230 msgid "Choose how multiple selections affect the results" msgstr "" #: modules/user-listing/userlisting.php:2231 msgid "Visible choices" msgstr "" #: modules/user-listing/userlisting.php:2231 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "" #: modules/user-listing/userlisting.php:2254 msgid "Search Fields" msgstr "" #: modules/user-listing/userlisting.php:2254 msgid "Choose the fields in which the Search Field will look in" msgstr "" #: modules/user-listing/userlisting.php:2259 msgid "Search Settings" msgstr "" #: admin/add-ons.php:190 msgid "Recommended Plugins" msgstr "" #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102 msgid "Free" msgstr "" #: admin/add-ons.php:221 msgid "Accept user payments, create subscription plans and restrict content on your membership site." msgstr "" #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105 msgid "More Details" msgstr "" #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88 #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "" #: admin/add-ons.php:242 admin/pms-cross-promotion.php:87 #: admin/pms-cross-promotion.php:125 admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "" #: admin/add-ons.php:256 admin/pms-cross-promotion.php:146 msgid "Could not install plugin. Retry or install manually." msgstr "" #: admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "" #: admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "" #: admin/pms-cross-promotion.php:37 msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." msgstr "" #: admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "" #: admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "" #: admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "" #: admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "" #: admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "" #: admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "" #: admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "" #: admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "" #: admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "" #: admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "" #: admin/pms-cross-promotion.php:104 msgid "Accept user payments, create subscription plans and restrict content on your website." msgstr "" #: admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "" #: features/email-confirmation/email-confirmation.php:400 msgid "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:45 msgid "After Login" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:46 msgid "After Logout" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:47 msgid "After Registration" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:48 msgid "After Edit Profile" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Successful Email Confirmation" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Successful Password Reset" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:51 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:55 msgid "User ID" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:61 msgid "User ID or Username" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:62 msgid "User ID / Username" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:62 msgid "Please select and enter the ID or username of your user." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:63 #: modules/custom-redirects/custom_redirects_admin.php:93 #: modules/custom-redirects/custom_redirects_admin.php:112 #: modules/custom-redirects/custom_redirects_admin.php:131 msgid "Redirect Type" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:64 #: modules/custom-redirects/custom_redirects_admin.php:94 #: modules/custom-redirects/custom_redirects_admin.php:113 #: modules/custom-redirects/custom_redirects_admin.php:138 msgid "Redirect URL" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:64 #: modules/custom-redirects/custom_redirects_admin.php:94 #: modules/custom-redirects/custom_redirects_admin.php:113 #: modules/custom-redirects/custom_redirects_admin.php:138 msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:71 #: modules/custom-redirects/custom_redirects_admin.php:241 msgid "Individual User Redirects" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:84 msgid "... Choose" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:92 msgid "Select a user role." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:101 #: modules/custom-redirects/custom_redirects_admin.php:242 msgid "User Role based Redirects" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:120 #: modules/custom-redirects/custom_redirects_admin.php:243 msgid "Global Redirects" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:133 msgid "Login ( wp_login.php )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:134 msgid "Register ( wp-login.php?action=register )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:135 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:136 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:145 msgid "Redirect Default WordPress Forms and Pages" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:157 msgid "How does this work?" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:179 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:193 msgid "
            User Role
            Redirect
            URL
            " msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:207 #: modules/custom-redirects/custom_redirects_admin.php:221 msgid "
            Redirect
            URL
            " msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:236 msgid "These redirects happen after a successful action, like registration or after a successful login." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:238 msgid "Which redirect happens depends on the following priority:" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:247 msgid "Redirect Default WordPress forms and pages" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:248 msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:250 msgid "Available tags for dynamic URLs" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:251 msgid "You use the following tags in your URLs to redirect users to various pages." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:253 msgid "generates a url of the current website homepage." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:254 msgid "in WordPress the site url can be different then the home url" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:255 msgid "the ID of the user" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:256 msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:257 msgid "the URL of the previously visited page" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:340 #: modules/custom-redirects/custom_redirects_admin.php:346 #: modules/custom-redirects/custom_redirects_admin.php:352 msgid "You can't add duplicate redirects!" msgstr "" #: admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "" #: admin/basic-info.php:37 msgid "Friction-less login using %s shortcode or a widget." msgstr "" #: admin/basic-info.php:41 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "" #: admin/basic-info.php:45 msgid "Straight forward edit profile forms using %s shortcode." msgstr "" #: admin/basic-info.php:58 msgid "Allow users to recover their password in the front-end using the %s." msgstr "" #: admin/basic-info.php:140 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." msgstr "" #: admin/general-settings.php:118 msgid "\"Admin Approval\" on User Role:" msgstr "" #: admin/general-settings.php:137 msgid "Select on what user roles to activate Admin Approval." msgstr "" #: admin/manage-fields.php:131 msgid "Display on PB forms" msgstr "" #: admin/manage-fields.php:131 msgid "PB Login" msgstr "" #: admin/manage-fields.php:131 msgid "PB Register" msgstr "" #: admin/manage-fields.php:131 msgid "PB Recover Password" msgstr "" #: admin/manage-fields.php:131 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "" #: admin/manage-fields.php:132 msgid "Display on default WP forms" msgstr "" #: admin/manage-fields.php:132 msgid "Default WP Login" msgstr "" #: admin/manage-fields.php:132 msgid "Default WP Register" msgstr "" #: admin/manage-fields.php:132 msgid "Default WP Recover Password" msgstr "" #: admin/manage-fields.php:132 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "" #: admin/manage-fields.php:138 admin/manage-fields.php:139 #: admin/manage-fields.php:140 msgid "Default option of the field" msgstr "" #: admin/manage-fields.php:279 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Afghanistan" msgstr "Afghanistan" #: admin/manage-fields.php:280 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Aland Islands" msgstr "Aland Islands" #: admin/manage-fields.php:281 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Albania" msgstr "Albania" #: admin/manage-fields.php:282 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Algeria" msgstr "Algeria" #: admin/manage-fields.php:283 #: front-end/extra-fields/select-country/select-country.php:10 msgid "American Samoa" msgstr "American Samoa" #: admin/manage-fields.php:284 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Andorra" msgstr "Andorra" #: admin/manage-fields.php:285 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Angola" msgstr "Angola" #: admin/manage-fields.php:286 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Anguilla" msgstr "Anguilla" #: admin/manage-fields.php:287 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Antarctica" msgstr "Antarctica" #: admin/manage-fields.php:288 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" #: admin/manage-fields.php:289 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Argentina" msgstr "Argentina" #: admin/manage-fields.php:290 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Armenia" msgstr "Armenia" #: admin/manage-fields.php:291 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Aruba" msgstr "Aruba" #: admin/manage-fields.php:292 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Australia" msgstr "Australia" #: admin/manage-fields.php:293 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Austria" msgstr "Austria" #: admin/manage-fields.php:294 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Azerbaijan" msgstr "Azerbaijan" #: admin/manage-fields.php:295 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bahamas" msgstr "Bahamas" #: admin/manage-fields.php:296 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bahrain" msgstr "Bahrain" #: admin/manage-fields.php:297 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bangladesh" msgstr "Bangladesh" #: admin/manage-fields.php:298 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Barbados" msgstr "Barbados" #: admin/manage-fields.php:299 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Belarus" msgstr "Belarus" #: admin/manage-fields.php:300 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Belgium" msgstr "Belgium" #: admin/manage-fields.php:301 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Belize" msgstr "Belize" #: admin/manage-fields.php:302 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Benin" msgstr "Benin" #: admin/manage-fields.php:303 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bermuda" msgstr "Bermuda" #: admin/manage-fields.php:304 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bhutan" msgstr "Bhutan" #: admin/manage-fields.php:305 msgid "Bolivia" msgstr "Bolivia" #: admin/manage-fields.php:306 msgid "Bonaire, Saint Eustatius and Saba" msgstr "Bonaire, Saint Eustatius and Saba" #: admin/manage-fields.php:307 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bosnia and Herzegovina" msgstr "Bosnia and Herzegovina" #: admin/manage-fields.php:308 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Botswana" msgstr "Botswana" #: admin/manage-fields.php:309 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bouvet Island" msgstr "Bouvet Island" #: admin/manage-fields.php:310 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Brazil" msgstr "Brazil" #: admin/manage-fields.php:311 #: front-end/extra-fields/select-country/select-country.php:10 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: admin/manage-fields.php:312 msgid "British Virgin Islands" msgstr "British Virgin Islands" #: admin/manage-fields.php:313 msgid "Brunei" msgstr "Brunei" #: admin/manage-fields.php:314 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Bulgaria" msgstr "Bulgaria" #: admin/manage-fields.php:315 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Burkina Faso" msgstr "Burkina Faso" #: admin/manage-fields.php:316 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Burundi" msgstr "Burundi" #: admin/manage-fields.php:317 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cambodia" msgstr "Cambodia" #: admin/manage-fields.php:318 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cameroon" msgstr "Cameroon" #: admin/manage-fields.php:319 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Canada" msgstr "Canada" #: admin/manage-fields.php:320 msgid "Cape Verde" msgstr "Cape Verde" #: admin/manage-fields.php:321 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cayman Islands" msgstr "Cayman Islands" #: admin/manage-fields.php:322 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Central African Republic" msgstr "Central African Republic" #: admin/manage-fields.php:323 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Chad" msgstr "Chad" #: admin/manage-fields.php:324 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Chile" msgstr "Chile" #: admin/manage-fields.php:325 #: front-end/extra-fields/select-country/select-country.php:10 msgid "China" msgstr "China" #: admin/manage-fields.php:326 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Christmas Island" msgstr "Christmas Island" #: admin/manage-fields.php:327 msgid "Cocos Islands" msgstr "Cocos Islands" #: admin/manage-fields.php:328 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Colombia" msgstr "Colombia" #: admin/manage-fields.php:329 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Comoros" msgstr "Comoros" #: admin/manage-fields.php:330 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cook Islands" msgstr "Cook Islands" #: admin/manage-fields.php:331 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Costa Rica" msgstr "Costa Rica" #: admin/manage-fields.php:332 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Croatia" msgstr "Croatia" #: admin/manage-fields.php:333 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cuba" msgstr "Cuba" #: admin/manage-fields.php:334 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Curacao" msgstr "Curacao" #: admin/manage-fields.php:335 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Cyprus" msgstr "Cyprus" #: admin/manage-fields.php:336 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Czech Republic" msgstr "Czech Republic" #: admin/manage-fields.php:337 msgid "Democratic Republic of the Congo" msgstr "Democratic Republic of the Congo" #: admin/manage-fields.php:338 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Denmark" msgstr "Denmark" #: admin/manage-fields.php:339 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Djibouti" msgstr "Djibouti" #: admin/manage-fields.php:340 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Dominica" msgstr "Dominica" #: admin/manage-fields.php:341 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Dominican Republic" msgstr "Dominican Republic" #: admin/manage-fields.php:342 msgid "East Timor" msgstr "East Timor" #: admin/manage-fields.php:343 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ecuador" msgstr "Ecuador" #: admin/manage-fields.php:344 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Egypt" msgstr "Egypt" #: admin/manage-fields.php:345 #: front-end/extra-fields/select-country/select-country.php:10 msgid "El Salvador" msgstr "El Salvador" #: admin/manage-fields.php:346 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: admin/manage-fields.php:347 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Eritrea" msgstr "Eritrea" #: admin/manage-fields.php:348 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Estonia" msgstr "Estonia" #: admin/manage-fields.php:349 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ethiopia" msgstr "Ethiopia" #: admin/manage-fields.php:350 msgid "Falkland Islands" msgstr "Falkland Islands" #: admin/manage-fields.php:351 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Faroe Islands" msgstr "Faroe Islands" #: admin/manage-fields.php:352 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Fiji" msgstr "Fiji" #: admin/manage-fields.php:353 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Finland" msgstr "Finland" #: admin/manage-fields.php:354 #: front-end/extra-fields/select-country/select-country.php:10 msgid "France" msgstr "France" #: admin/manage-fields.php:355 #: front-end/extra-fields/select-country/select-country.php:10 msgid "French Guiana" msgstr "French Guiana" #: admin/manage-fields.php:356 #: front-end/extra-fields/select-country/select-country.php:10 msgid "French Polynesia" msgstr "French Polynesia" #: admin/manage-fields.php:357 #: front-end/extra-fields/select-country/select-country.php:10 msgid "French Southern Territories" msgstr "French Southern Territories" #: admin/manage-fields.php:358 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Gabon" msgstr "Gabon" #: admin/manage-fields.php:359 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Gambia" msgstr "Gambia" #: admin/manage-fields.php:360 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Georgia" msgstr "Georgia" #: admin/manage-fields.php:361 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Germany" msgstr "Germany" #: admin/manage-fields.php:362 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ghana" msgstr "Ghana" #: admin/manage-fields.php:363 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Gibraltar" msgstr "Gibraltar" #: admin/manage-fields.php:364 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Greece" msgstr "Greece" #: admin/manage-fields.php:365 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Greenland" msgstr "Greenland" #: admin/manage-fields.php:366 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Grenada" msgstr "Grenada" #: admin/manage-fields.php:367 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guadeloupe" msgstr "Guadeloupe" #: admin/manage-fields.php:368 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guam" msgstr "Guam" #: admin/manage-fields.php:369 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guatemala" msgstr "Guatemala" #: admin/manage-fields.php:370 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guernsey" msgstr "Guernsey" #: admin/manage-fields.php:371 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea" msgstr "Guinea" #: admin/manage-fields.php:372 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: admin/manage-fields.php:373 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Guyana" msgstr "Guyana" #: admin/manage-fields.php:374 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Haiti" msgstr "Haiti" #: admin/manage-fields.php:375 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Heard Island and McDonald Islands" msgstr "Heard Island and McDonald Islands" #: admin/manage-fields.php:376 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Honduras" msgstr "Honduras" #: admin/manage-fields.php:377 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Hong Kong" msgstr "Hong Kong" #: admin/manage-fields.php:378 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Hungary" msgstr "Hungary" #: admin/manage-fields.php:379 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Iceland" msgstr "Iceland" #: admin/manage-fields.php:380 #: front-end/extra-fields/select-country/select-country.php:10 msgid "India" msgstr "India" #: admin/manage-fields.php:381 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Indonesia" msgstr "Indonesia" #: admin/manage-fields.php:382 msgid "Iran" msgstr "Iran" #: admin/manage-fields.php:383 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Iraq" msgstr "Iraq" #: admin/manage-fields.php:384 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ireland" msgstr "Ireland" #: admin/manage-fields.php:385 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Isle of Man" msgstr "Isle of Man" #: admin/manage-fields.php:386 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Israel" msgstr "Israel" #: admin/manage-fields.php:387 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Italy" msgstr "Italy" #: admin/manage-fields.php:388 msgid "Ivory Coast" msgstr "Ivory Coast" #: admin/manage-fields.php:389 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Jamaica" msgstr "Jamaica" #: admin/manage-fields.php:390 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Japan" msgstr "Japan" #: admin/manage-fields.php:391 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Jersey" msgstr "Jersey" #: admin/manage-fields.php:392 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Jordan" msgstr "Jordan" #: admin/manage-fields.php:393 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kazakhstan" msgstr "Kazakhstan" #: admin/manage-fields.php:394 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kenya" msgstr "Kenya" #: admin/manage-fields.php:395 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kiribati" msgstr "Kiribati" #: admin/manage-fields.php:396 msgid "Kosovo" msgstr "Kosovo" #: admin/manage-fields.php:397 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kuwait" msgstr "Kuwait" #: admin/manage-fields.php:398 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: admin/manage-fields.php:399 msgid "Laos" msgstr "Laos" #: admin/manage-fields.php:400 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Latvia" msgstr "Latvia" #: admin/manage-fields.php:401 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lebanon" msgstr "Lebanon" #: admin/manage-fields.php:402 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lesotho" msgstr "Lesotho" #: admin/manage-fields.php:403 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Liberia" msgstr "Liberia" #: admin/manage-fields.php:404 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Libya" msgstr "Libya" #: admin/manage-fields.php:405 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Liechtenstein" msgstr "Liechtenstein" #: admin/manage-fields.php:406 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Lithuania" msgstr "Lithuania" #: admin/manage-fields.php:407 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Luxembourg" msgstr "Luxembourg" #: admin/manage-fields.php:408 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Macao" msgstr "Macao" #: admin/manage-fields.php:409 msgid "Macedonia" msgstr "Macedonia" #: admin/manage-fields.php:410 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Madagascar" msgstr "Madagascar" #: admin/manage-fields.php:411 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Malawi" msgstr "Malawi" #: admin/manage-fields.php:412 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Malaysia" msgstr "Malaysia" #: admin/manage-fields.php:413 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Maldives" msgstr "Maldives" #: admin/manage-fields.php:414 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mali" msgstr "Mali" #: admin/manage-fields.php:415 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Malta" msgstr "Malta" #: admin/manage-fields.php:416 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Marshall Islands" msgstr "Marshall Islands" #: admin/manage-fields.php:417 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Martinique" msgstr "Martinique" #: admin/manage-fields.php:418 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritania" msgstr "Mauritania" #: admin/manage-fields.php:419 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritius" msgstr "Mauritius" #: admin/manage-fields.php:420 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mayotte" msgstr "Mayotte" #: admin/manage-fields.php:421 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mexico" msgstr "Mexico" #: admin/manage-fields.php:422 msgid "Micronesia" msgstr "Micronesia" #: admin/manage-fields.php:423 msgid "Moldova" msgstr "Moldova" #: admin/manage-fields.php:424 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Monaco" msgstr "Monaco" #: admin/manage-fields.php:425 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mongolia" msgstr "Mongolia" #: admin/manage-fields.php:426 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Montenegro" msgstr "Montenegro" #: admin/manage-fields.php:427 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Montserrat" msgstr "Montserrat" #: admin/manage-fields.php:428 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Morocco" msgstr "Morocco" #: admin/manage-fields.php:429 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Mozambique" msgstr "Mozambique" #: admin/manage-fields.php:430 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Myanmar" msgstr "Myanmar" #: admin/manage-fields.php:431 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Namibia" msgstr "Namibia" #: admin/manage-fields.php:432 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nauru" msgstr "Nauru" #: admin/manage-fields.php:433 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nepal" msgstr "Nepal" #: admin/manage-fields.php:434 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Netherlands" msgstr "Netherlands" #: admin/manage-fields.php:435 #: front-end/extra-fields/select-country/select-country.php:10 msgid "New Caledonia" msgstr "New Caledonia" #: admin/manage-fields.php:436 #: front-end/extra-fields/select-country/select-country.php:10 msgid "New Zealand" msgstr "New Zealand" #: admin/manage-fields.php:437 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nicaragua" msgstr "Nicaragua" #: admin/manage-fields.php:438 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Niger" msgstr "Niger" #: admin/manage-fields.php:439 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Nigeria" msgstr "Nigeria" #: admin/manage-fields.php:440 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Niue" msgstr "Niue" #: admin/manage-fields.php:441 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Norfolk Island" msgstr "Norfolk Island" #: admin/manage-fields.php:442 msgid "North Korea" msgstr "North Korea" #: admin/manage-fields.php:443 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: admin/manage-fields.php:444 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Norway" msgstr "Norway" #: admin/manage-fields.php:445 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Oman" msgstr "Oman" #: admin/manage-fields.php:446 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Pakistan" msgstr "Pakistan" #: admin/manage-fields.php:447 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Palau" msgstr "Palau" #: admin/manage-fields.php:448 msgid "Palestinian Territory" msgstr "Palestinian Territory" #: admin/manage-fields.php:449 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Panama" msgstr "Panama" #: admin/manage-fields.php:450 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: admin/manage-fields.php:451 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Paraguay" msgstr "Paraguay" #: admin/manage-fields.php:452 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Peru" msgstr "Peru" #: admin/manage-fields.php:453 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Philippines" msgstr "Philippines" #: admin/manage-fields.php:454 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Pitcairn" msgstr "Pitcairn" #: admin/manage-fields.php:455 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Poland" msgstr "Poland" #: admin/manage-fields.php:456 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Portugal" msgstr "Portugal" #: admin/manage-fields.php:457 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Puerto Rico" msgstr "Puerto Rico" #: admin/manage-fields.php:458 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Qatar" msgstr "Qatar" #: admin/manage-fields.php:459 msgid "Republic of the Congo" msgstr "Republic of the Congo" #: admin/manage-fields.php:460 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Reunion" msgstr "Reunion" #: admin/manage-fields.php:461 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Romania" msgstr "Romania" #: admin/manage-fields.php:462 msgid "Russia" msgstr "Russia" #: admin/manage-fields.php:463 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Rwanda" msgstr "Rwanda" #: admin/manage-fields.php:464 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: admin/manage-fields.php:465 msgid "Saint Helena" msgstr "Saint Helena" #: admin/manage-fields.php:466 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts and Nevis" #: admin/manage-fields.php:467 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Lucia" msgstr "Saint Lucia" #: admin/manage-fields.php:468 msgid "Saint Martin" msgstr "Saint Martin" #: admin/manage-fields.php:469 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre and Miquelon" #: admin/manage-fields.php:470 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent and the Grenadines" #: admin/manage-fields.php:471 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Samoa" msgstr "Samoa" #: admin/manage-fields.php:472 #: front-end/extra-fields/select-country/select-country.php:10 msgid "San Marino" msgstr "San Marino" #: admin/manage-fields.php:473 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sao Tome and Principe" msgstr "Sao Tome and Principe" #: admin/manage-fields.php:474 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: admin/manage-fields.php:475 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Senegal" msgstr "Senegal" #: admin/manage-fields.php:476 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Serbia" msgstr "Serbia" #: admin/manage-fields.php:477 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Seychelles" msgstr "Seychelles" #: admin/manage-fields.php:478 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sierra Leone" msgstr "Sierra Leone" #: admin/manage-fields.php:479 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Singapore" msgstr "Singapore" #: admin/manage-fields.php:480 msgid "Sint Maarten" msgstr "Sint Maarten" #: admin/manage-fields.php:481 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Slovakia" msgstr "Slovakia" #: admin/manage-fields.php:482 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Slovenia" msgstr "Slovenia" #: admin/manage-fields.php:483 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Solomon Islands" msgstr "Solomon Islands" #: admin/manage-fields.php:484 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Somalia" msgstr "Somalia" #: admin/manage-fields.php:485 #: front-end/extra-fields/select-country/select-country.php:10 msgid "South Africa" msgstr "South Africa" #: admin/manage-fields.php:486 #: front-end/extra-fields/select-country/select-country.php:10 msgid "South Georgia and the South Sandwich Islands" msgstr "South Georgia and the South Sandwich Islands" #: admin/manage-fields.php:487 msgid "South Korea" msgstr "South Korea" #: admin/manage-fields.php:488 #: front-end/extra-fields/select-country/select-country.php:10 msgid "South Sudan" msgstr "South Sudan" #: admin/manage-fields.php:489 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Spain" msgstr "Spain" #: admin/manage-fields.php:490 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sri Lanka" msgstr "Sri Lanka" #: admin/manage-fields.php:491 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sudan" msgstr "Sudan" #: admin/manage-fields.php:492 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Suriname" msgstr "Suriname" #: admin/manage-fields.php:493 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Svalbard and Jan Mayen" msgstr "Svalbard and Jan Mayen" #: admin/manage-fields.php:494 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Swaziland" msgstr "Swaziland" #: admin/manage-fields.php:495 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Sweden" msgstr "Sweden" #: admin/manage-fields.php:496 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Switzerland" msgstr "Switzerland" #: admin/manage-fields.php:497 msgid "Syria" msgstr "Syria" #: admin/manage-fields.php:498 msgid "Taiwan" msgstr "Taiwan" #: admin/manage-fields.php:499 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tajikistan" msgstr "Tajikistan" #: admin/manage-fields.php:500 msgid "Tanzania" msgstr "Tanzania" #: admin/manage-fields.php:501 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Thailand" msgstr "Thailand" #: admin/manage-fields.php:502 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Togo" msgstr "Togo" #: admin/manage-fields.php:503 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tokelau" msgstr "Tokelau" #: admin/manage-fields.php:504 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tonga" msgstr "Tonga" #: admin/manage-fields.php:505 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Trinidad and Tobago" msgstr "Trinidad and Tobago" #: admin/manage-fields.php:506 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tunisia" msgstr "Tunisia" #: admin/manage-fields.php:507 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Turkey" msgstr "Turkey" #: admin/manage-fields.php:508 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Turkmenistan" msgstr "Turkmenistan" #: admin/manage-fields.php:509 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Islands" #: admin/manage-fields.php:510 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Tuvalu" msgstr "Tuvalu" #: admin/manage-fields.php:511 msgid "U.S. Virgin Islands" msgstr "U.S. Virgin Islands" #: admin/manage-fields.php:512 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Uganda" msgstr "Uganda" #: admin/manage-fields.php:513 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Ukraine" msgstr "Ukraine" #: admin/manage-fields.php:514 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United Arab Emirates" msgstr "United Arab Emirates" #: admin/manage-fields.php:515 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United Kingdom" msgstr "United Kingdom" #: admin/manage-fields.php:516 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United States" msgstr "United States" #: admin/manage-fields.php:517 #: front-end/extra-fields/select-country/select-country.php:10 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: admin/manage-fields.php:518 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Uruguay" msgstr "Uruguay" #: admin/manage-fields.php:519 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Uzbekistan" msgstr "Uzbekistan" #: admin/manage-fields.php:520 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Vanuatu" msgstr "Vanuatu" #: admin/manage-fields.php:521 msgid "Vatican" msgstr "Vatican" #: admin/manage-fields.php:522 msgid "Venezuela" msgstr "Venezuela" #: admin/manage-fields.php:523 msgid "Vietnam" msgstr "Vietnam" #: admin/manage-fields.php:524 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Wallis and Futuna" msgstr "Wallis and Futuna" #: admin/manage-fields.php:525 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Western Sahara" msgstr "Western Sahara" #: admin/manage-fields.php:526 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Yemen" msgstr "Yemen" #: admin/manage-fields.php:527 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Zambia" msgstr "Zambia" #: admin/manage-fields.php:528 #: front-end/extra-fields/select-country/select-country.php:10 msgid "Zimbabwe" msgstr "Zimbabwe" #: admin/manage-fields.php:1216 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." msgstr "" #: assets/misc/plugin-compatibilities.php:237 msgid "Your account has to be confirmed by an administrator before you can log in." msgstr "" #: features/admin-approval/admin-approval.php:214 msgid "Your account has been successfully created!" msgstr "" #: features/functions.php:678 #: front-end/extra-fields/recaptcha/recaptcha.php:374 #: front-end/extra-fields/recaptcha/recaptcha.php:379 #: front-end/extra-fields/recaptcha/recaptcha.php:421 #: front-end/extra-fields/recaptcha/recaptcha.php:458 msgid "Please enter a (valid) reCAPTCHA value" msgstr "" #: front-end/extra-fields/recaptcha/recaptcha.php:421 msgid "Click the BACK button on your browser, and try again." msgstr "" #: front-end/extra-fields/upload/upload_helper_functions.php:78 #: front-end/extra-fields/upload/upload_helper_functions.php:87 msgid "Sorry, you cannot upload this file type for this field." msgstr "" #: front-end/extra-fields/upload/upload_helper_functions.php:94 msgid "An error occurred, please try again later." msgstr "" #: modules/user-listing/userlisting.php:282 msgid "More" msgstr "" #: modules/user-listing/userlisting.php:376 msgid "You do not have permission to view this user list." msgstr "" #: modules/user-listing/userlisting.php:389 msgid "You do not have the required user role to view this user list." msgstr "" #: modules/user-listing/userlisting.php:2186 msgid "Ascending" msgstr "" #: modules/user-listing/userlisting.php:2187 msgid "Descending" msgstr "" #: admin/add-ons.php:148 admin/add-ons.php:248 #: admin/pms-cross-promotion.php:134 admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "" #: admin/admin-functions.php:200 msgid "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. " msgstr "" #: admin/manage-fields.php:80 msgid "Choose one of the supported field types" msgstr "" #: admin/manage-fields.php:82 msgid ". Extra Field Types are available in Hobbyist or PRO versions." msgstr "" #: admin/manage-fields.php:129 msgid "Site Key" msgstr "" #: admin/manage-fields.php:129 msgid "The site key from Google, www.google.com/recaptcha" msgstr "" #: admin/manage-fields.php:130 msgid "Secret Key" msgstr "" #: admin/manage-fields.php:130 msgid "The secret key from Google, www.google.com/recaptcha" msgstr "" #: admin/manage-fields.php:1020 msgid "You must enter the site key\n" msgstr "" #: admin/manage-fields.php:1022 msgid "You must enter the secret key\n" msgstr "" #: admin/add-ons.php:10 admin/add-ons.php:32 msgid "Add-Ons" msgstr "" #: admin/add-ons.php:34 admin/add-ons.php:129 admin/add-ons.php:231 #: admin/pms-cross-promotion.php:78 admin/pms-cross-promotion.php:114 #: admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "" #: admin/add-ons.php:36 admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "" #: admin/add-ons.php:37 admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "" #: admin/add-ons.php:39 msgid "Add-On is Active" msgstr "" #: admin/add-ons.php:40 msgid "Add-On has been activated" msgstr "" #: admin/add-ons.php:41 admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "" #: admin/add-ons.php:43 admin/add-ons.php:140 msgid "Add-On is active" msgstr "" #: admin/add-ons.php:44 admin/add-ons.php:138 msgid "Add-On is inactive" msgstr "" #: admin/add-ons.php:46 admin/add-ons.php:133 admin/add-ons.php:235 #: admin/pms-cross-promotion.php:90 admin/pms-cross-promotion.php:118 #: admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "" #: admin/add-ons.php:47 msgid "Add-On has been deactivated." msgstr "" #: admin/add-ons.php:59 msgid "Something went wrong, we could not connect to the server. Please try again later." msgstr "" #: admin/pms-cross-promotion.php:137 admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "" #: admin/add-ons.php:153 admin/add-ons.php:251 #: admin/pms-cross-promotion.php:141 admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "" #: admin/add-ons.php:162 msgid "Upgrade Profile Builder" msgstr "" #: admin/add-ons.php:163 msgid "Not compatible with Profile Builder" msgstr "" #: admin/add-ons.php:171 msgid "Not compatible with your version of Profile Builder." msgstr "" #: admin/add-ons.php:172 msgid "Minimum required Profile Builder version:" msgstr "" #: admin/add-ons.php:177 msgid "Could not install add-on. Retry or install manually." msgstr "" #: front-end/default-fields/email/email.php:51 msgid "You must enter a valid email address." msgstr "" #: front-end/default-fields/username/username.php:52 #: front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "" #: front-end/default-fields/username/username.php:52 #: front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "" #: front-end/extra-fields/user-role/user-role.php:72 #: front-end/extra-fields/user-role/user-role.php:85 msgid "Only administrators can see this field on edit profile forms." msgstr "" #: front-end/extra-fields/user-role/user-role.php:81 msgid "As an administrator you cannot change your role." msgstr "" #: modules/email-customizer/admin-email-customizer.php:117 msgid "" "\n" "

            {{username}} has requested a password change via the password reset feature.

            \n" "

            His/her new password is: {{password}}

            \n" msgstr "" #: modules/email-customizer/admin-email-customizer.php:141 msgid "Admin Notification for User Password Reset" msgstr "" #: modules/email-customizer/email-customizer.php:46 msgid "Reset Key" msgstr "" #: modules/email-customizer/email-customizer.php:47 msgid "Reset Url" msgstr "" #: modules/email-customizer/email-customizer.php:48 msgid "Reset Link" msgstr "" #: modules/email-customizer/user-email-customizer.php:204 msgid "" "\n" "

            Someone requested that the password be reset for the following account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            \n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" msgstr "" #: modules/email-customizer/user-email-customizer.php:218 msgid "[{{site_name}}] Password Reset" msgstr "" #: modules/email-customizer/user-email-customizer.php:229 msgid "Password Reset Email" msgstr "" #: modules/email-customizer/user-email-customizer.php:235 msgid "" "\n" "

            You have successfully reset your password to: {{password}}

            \n" msgstr "" #: modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset Successfully" msgstr "" #: modules/email-customizer/user-email-customizer.php:256 msgid "Password Reset Success Email" msgstr "" #: modules/user-listing/userlisting.php:159 msgid "User Nicename" msgstr "" #: modules/user-listing/userlisting.php:499 msgid "None" msgstr "" #: admin/admin-functions.php:132 msgid "ERROR: The password must have the minimum length of %s characters" msgstr "" #: admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr "" #: admin/general-settings.php:163 msgid "Username and Email" msgstr "" #: admin/general-settings.php:168 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "" #: admin/general-settings.php:169 msgid "\"Username\" - users can Log In only with Username." msgstr "" #: admin/general-settings.php:170 msgid "\"Email\" - users can Log In only with Email." msgstr "" #: admin/manage-fields.php:122 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "" #: admin/manage-fields.php:123 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)" msgstr "" #: admin/manage-fields.php:133 msgid "User Roles" msgstr "" #: admin/manage-fields.php:133 msgid "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "" #: admin/manage-fields.php:134 msgid "User Roles Order" msgstr "" #: admin/manage-fields.php:134 msgid "Save the user role order from the user roles checkboxes" msgstr "" #: admin/manage-fields.php:1125 msgid "Please select at least one user role\n" msgstr "" #: admin/register-version.php:22 msgid "Profile Builder Register" msgstr "" #: admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "" #: admin/register-version.php:81 msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr "" #: admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr "" #: assets/lib/wck-api/wordpress-creation-kit.php:334 msgid "Add Entry" msgstr "" #: features/email-confirmation/class-email-confirmation.php:91 msgid "show" msgstr "" #: features/functions.php:736 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" msgstr "" #: front-end/class-formbuilder.php:643 msgid "User to edit:" msgstr "" #: front-end/default-fields/password/password.php:46 front-end/recover.php:254 msgid "The password must have the minimum length of %s characters" msgstr "" #: front-end/default-fields/password/password.php:50 front-end/recover.php:258 msgid "The password must have a minimum strength of %s" msgstr "" #: front-end/extra-fields/user-role/user-role.php:118 msgid "You cannot register this user role" msgstr "" #: front-end/login.php:153 msgid "username or email" msgstr "" #: front-end/login.php:222 msgid "Username or Email" msgstr "" #: front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "" #: front-end/logout.php:15 msgid "Log out »" msgstr "" #: modules/custom-redirects/custom_redirects_admin.php:92 #: modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "" #: modules/user-listing/userlisting.php:2100 msgid "View all extra shortcode parameters" msgstr "" #: modules/user-listing/userlisting.php:2114 msgid "displays only the users that you specified the user_id for" msgstr "" #: modules/user-listing/userlisting.php:2120 msgid "displays all users except the ones you specified the user_id for" msgstr "" #: features/functions.php:566 msgid "Minimum length of %d characters" msgstr "" #: front-end/class-formbuilder.php:135 front-end/class-formbuilder.php:138 msgid "This message is only visible by administrators" msgstr "" #: modules/user-listing/userlisting.php:413 msgid "User not found" msgstr "" #: modules/email-customizer/admin-email-customizer.php:38 #: modules/email-customizer/user-email-customizer.php:38 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "" #: admin/admin-bar.php:48 msgid "Choose which user roles view the admin bar in the front-end of the website." msgstr "" #: admin/manage-fields.php:127 msgid "Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes" msgstr "" #: admin/manage-fields.php:1052 msgid "The meta-name cannot be empty\n" msgstr "" #: admin/register-version.php:69 msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received" msgstr "" #: admin/register-version.php:243 msgid "

            Your Profile Builder serial number is invalid or missing.
            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

            " msgstr "" #: assets/lib/wck-api/fields/country select.php:14 #: assets/lib/wck-api/fields/cpt select.php:17 #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36 #: front-end/extra-fields/select-cpt/select-cpt.php:60 msgid "...Choose" msgstr "" #: features/class-list-table.php:526 features/class-list-table.php:942 msgid "1 item" msgid_plural "%s items" msgstr[0] "" #: features/functions.php:552 msgid "Very Weak" msgstr "" #: features/functions.php:640 msgid "This field is required" msgstr "" #: features/functions.php:704 msgid "Cancel" msgstr "" #: features/functions.php:740 msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s" msgstr "" #: front-end/login.php:144 msgid "Invalid username." msgstr "" #: front-end/login.php:149 front-end/login.php:153 msgid "username" msgstr "" #: front-end/login.php:149 msgid "email" msgstr "" #: front-end/login.php:256 msgid "Lost your password?" msgstr "" #: index.php:34 msgid " is also activated. You need to deactivate it before activating this version of the plugin." msgstr "" #: modules/email-customizer/admin-email-customizer.php:54 #: modules/email-customizer/user-email-customizer.php:54 msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email" msgstr "" #: features/email-confirmation/email-confirmation.php:573 #: features/email-confirmation/email-confirmation.php:582 #: modules/email-customizer/email-customizer.php:487 #: modules/email-customizer/email-customizer.php:494 #: modules/email-customizer/email-customizer.php:508 msgid "Your selected password at signup" msgstr "" #: modules/email-customizer/user-email-customizer.php:38 msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save." msgstr "" #: modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "" #: modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "" #: modules/multiple-forms/multiple-forms.php:406 msgid "Delete all" msgstr "" #: modules/user-listing/userlisting.php:1592 msgid "Choose..." msgstr "" #: modules/user-listing/userlisting.php:2196 msgid "Set the number of users to be displayed on every paginated part of the all-userlisting" msgstr "" #: admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "顯示/隱藏管理員工具欄在前端" #: admin/admin-bar.php:10 admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "管理員工具欄設置" #: admin/admin-bar.php:57 msgid "User-Role" msgstr "用戶角色" #: admin/admin-bar.php:58 msgid "Visibility" msgstr "可見" #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "默認" #: admin/admin-bar.php:74 msgid "Show" msgstr "顯示" #: admin/admin-bar.php:75 modules/user-listing/userlisting.php:1537 msgid "Hide" msgstr "隱藏" #: admin/admin-bar.php:86 admin/general-settings.php:208 #: admin/register-version.php:95 features/functions.php:697 #: modules/modules.php:127 msgid "Save Changes" msgstr "保存更改" #: admin/admin-functions.php:37 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 )" msgstr "登錄允許使用電子郵件。這字段不會顯示在前端! ( 妳可以改變這些設置,在 \"%s\" 選項卡中 )" #: admin/admin-functions.php:37 admin/general-settings.php:10 #: admin/general-settings.php:38 msgid "General Settings" msgstr "常規設置" #: admin/admin-functions.php:137 admin/general-settings.php:194 msgid "Very weak" msgstr "非常弱" #: admin/admin-functions.php:137 admin/general-settings.php:195 #: features/functions.php:552 msgid "Weak" msgstr "弱" #: admin/admin-functions.php:137 admin/general-settings.php:196 #: features/functions.php:552 msgid "Medium" msgstr "中" #: admin/admin-functions.php:137 admin/general-settings.php:197 #: features/functions.php:552 msgid "Strong" msgstr "強" #: admin/admin-functions.php:187 msgid "Add Field" msgstr "添加字段" #: admin/admin-functions.php:189 #: modules/class-mustache-templates/class-mustache-templates.php:390 msgid "Save Settings" msgstr "保存設置" #: admin/basic-info.php:10 msgid "Basic Information" msgstr "基本信息" #: admin/basic-info.php:29 msgid "Version %s" msgstr "版本 %s" #: admin/basic-info.php:30 msgid "Profile Builder " msgstr "Profile Builder " #: admin/basic-info.php:31 msgid "The best way to add front-end registration, edit profile and login forms." msgstr "最好的前端註冊、編輯個人資料與登陸表單的實現方式。" #: admin/basic-info.php:33 msgid "For Modern User Interaction" msgstr "新穎的用戶交互。" #: admin/basic-info.php:36 features/login-widget/login-widget.php:59 msgid "Login" msgstr "登陸" #: admin/basic-info.php:40 msgid "Registration" msgstr "註冊" #: admin/basic-info.php:44 msgid "Edit Profile" msgstr "編輯個人資料" #: admin/basic-info.php:51 msgid "Extra Features" msgstr "額外字段" #: admin/basic-info.php:52 msgid "Features that give you more control over your users, increased security and help you fight user registration spam." msgstr "特性,讓您對您的用戶更多的控制,增強安全性,幫助用戶註冊與限制垃圾郵件。" #: admin/basic-info.php:53 msgid "Enable extra features" msgstr "啟用額外功能" #: admin/basic-info.php:57 msgid "Recover Password" msgstr "恢復密碼" #: admin/basic-info.php:61 msgid "Admin Approval (*)" msgstr "管理員審批 (*)" #: admin/basic-info.php:62 msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI." msgstr "妳決定在妳的網站用戶是誰。從WordPress 界面通過電子郵件或批準的多個用戶獲得通知。" #: admin/basic-info.php:65 msgid "Email Confirmation" msgstr "電子郵件確認" #: admin/basic-info.php:66 msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address." msgstr "確保用戶註冊是使用真實的電子郵件。註冊用戶將收到壹個通知,確認他們的電子郵件地址。" #: admin/basic-info.php:69 msgid "Minimum Password Length and Strength Meter" msgstr "最小密碼長度和強度表" #: admin/basic-info.php:70 msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength." msgstr "消除弱密碼最小密碼長度,並強制執行設定的密碼強度。" #: admin/basic-info.php:73 msgid "Login with Email or Username" msgstr "通過電子郵件或用戶名登錄" #: admin/basic-info.php:74 msgid "Allow users to log in with their email or username when accessing your site." msgstr "當用戶訪問您的網站時,允許用戶登錄他們的用戶名和電子郵件。" #: admin/basic-info.php:87 msgid "Customize Your Forms The Way You Want (*)" msgstr "自定義表格用妳想要的方式(*)" #: admin/basic-info.php:88 msgid "With Extra Profile Fields you can create the exact registration form your project needs." msgstr "額外個人資料字段,根據您的項目需求妳可以創建精確的登註冊表單。" #: admin/basic-info.php:90 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "額外個人資料字段需要激活 Hobbyist 或者 PRO 版本才可用" #: admin/basic-info.php:92 msgid "Get started with extra fields" msgstr "開始使用額外字段" #: admin/basic-info.php:95 msgid "Avatar Upload" msgstr "頭像上傳" #: admin/basic-info.php:96 msgid "Generic Uploads" msgstr "常規上傳" #: admin/basic-info.php:97 msgid "Agree To Terms Checkbox" msgstr "同意使用條款" #: admin/basic-info.php:98 msgid "Datepicker" msgstr "日期選擇器" #: admin/basic-info.php:101 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: admin/basic-info.php:102 msgid "Country Select" msgstr "國家選擇" #: admin/basic-info.php:104 msgid "Timezone Select" msgstr "時區選擇" #: admin/basic-info.php:108 msgid "Input / Hidden Input" msgstr "輸入/隱藏輸入" #: admin/basic-info.php:110 msgid "Checkbox" msgstr "復選框" #: admin/basic-info.php:111 msgid "Select" msgstr "選擇" #: admin/basic-info.php:112 msgid "Radio Buttons" msgstr "單選按鈕" #: admin/basic-info.php:113 msgid "Textarea" msgstr "文本框" #: admin/basic-info.php:125 msgid "Powerful Modules (**)" msgstr "強大的模塊(**)" #: admin/basic-info.php:126 msgid "Everything you will need to manage your users is probably already available using the Pro Modules." msgstr "使用壹切妳需要的工具,用於管理妳的用戶的模塊。" #: admin/basic-info.php:128 msgid "Enable your modules" msgstr "啟用妳的模塊" #: admin/basic-info.php:131 msgid "Find out more about PRO Modules" msgstr "了解關於專業版模塊的更多內容" #: admin/basic-info.php:136 modules/modules.php:89 #: modules/user-listing/userlisting.php:11 #: modules/user-listing/userlisting.php:12 #: modules/user-listing/userlisting.php:17 #: modules/user-listing/userlisting.php:23 msgid "User Listing" msgstr "用戶列表" #: admin/basic-info.php:138 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." msgstr "易於編輯模列表您的網站用戶,以及創建單用戶頁面模板。基於簡碼,提供了許多選項來定制您的列表。" #: admin/basic-info.php:144 msgid "Email Customizer" msgstr "電子郵件定制" #: admin/basic-info.php:145 msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval." msgstr "個性化郵件發送到妳的用戶或管理員。註冊,電子郵件確認,管理員批準/拒絕。" #: admin/basic-info.php:148 #: modules/custom-redirects/custom_redirects_admin.php:32 #: modules/custom-redirects/custom_redirects_admin.php:33 #: modules/modules.php:110 msgid "Custom Redirects" msgstr "自定義重定向" #: admin/basic-info.php:149 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." msgstr "讓妳的用戶離開 WordPress 儀表盤,重定向到他們的前端頁面,登錄註冊壹切都只需幾個點擊。" #: admin/basic-info.php:154 modules/modules.php:75 msgid "Multiple Registration Forms" msgstr "多個註冊形式" #: admin/basic-info.php:155 msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users." msgstr "設置多個註冊表單為某些用戶角色不同的字段。獲取來自不同類型的用戶不同的信息。" #: admin/basic-info.php:158 modules/modules.php:82 msgid "Multiple Edit-profile Forms" msgstr "多個編輯個人資料形式" #: admin/basic-info.php:159 msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles." msgstr "允許不同的用戶角色去編輯他們的具體信息。設置多個編輯表單壹不同的作用字段。" #: admin/basic-info.php:187 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr " * 僅獲得在 %1$sHobbyist 與專業版本 %2$s." #: admin/basic-info.php:188 msgid "** only available in the %1$sPro version%2$s." msgstr "** 僅激活在 %1$s專業版本 %2$s." #: admin/general-settings.php:42 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "在前端載入 Profile Builder 的CSS文件:" #: admin/general-settings.php:45 admin/general-settings.php:58 #: admin/general-settings.php:107 #: 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:2201 msgid "Yes" msgstr "是" #: admin/general-settings.php:47 msgid "You can find the default file here: %1$s" msgstr "妳可以在這裏找到默認的文件: %1$s" #: admin/general-settings.php:54 msgid "\"Email Confirmation\" Activated:" msgstr "\"郵件確認\" 激活:" #: admin/general-settings.php:59 admin/general-settings.php:108 #: modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:229 #: modules/multiple-forms/register-forms.php:230 msgid "No" msgstr "不" #: admin/general-settings.php:64 msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s." msgstr "您可以找到還沒確認郵箱地址的列表 %1$s用戶 > 所有用戶 > 郵箱確認%2$s." #: admin/general-settings.php:72 msgid "\"Email Confirmation\" Landing Page:" msgstr "\"郵件確認\" 登陸頁面:" #: admin/general-settings.php:77 msgid "Existing Pages" msgstr "現有頁面" #: admin/general-settings.php:92 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." msgstr "指定供用戶確認郵件的轉向頁面。此頁面可不同於註冊頁面(s)並且可隨時改變。如果沒有指定,將顯示給用戶壹個簡單確認頁。" #: admin/general-settings.php:103 msgid "\"Admin Approval\" Activated:" msgstr "\"管理員審批\" 激活:" #: admin/general-settings.php:111 msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "您可以找到用戶在 %1$s用戶 > 所有用戶 > 管理員審批%2$s." #: admin/general-settings.php:149 msgid "\"Admin Approval\" Feature:" msgstr "\"管理員審批\" 功能 :" #: admin/general-settings.php:152 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." msgstr "您控制您的用戶在網站上的角色。獲得遊戲通知或者壹次性批量審批多用戶。啟用管理審批功能需要升級到 %1$sHobbyist 或者 專業版本%2$s。" #: admin/general-settings.php:159 msgid "Allow Users to Log in With:" msgstr "允許用戶使用什麽登陸:" #: admin/general-settings.php:164 admin/manage-fields.php:198 #: features/admin-approval/class-admin-approval.php:166 #: features/email-confirmation/class-email-confirmation.php:167 #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218 #: modules/custom-redirects/custom_redirects_admin.php:56 #: modules/email-customizer/email-customizer.php:28 #: modules/user-listing/userlisting.php:102 #: modules/user-listing/userlisting.php:277 #: modules/user-listing/userlisting.php:730 #: modules/user-listing/userlisting.php:2152 msgid "Username" msgstr "姓名" #: admin/general-settings.php:165 front-end/login.php:215 #: modules/email-customizer/email-customizer.php:29 #: modules/user-listing/userlisting.php:736 #: modules/user-listing/userlisting.php:2153 msgid "Email" msgstr "電子郵件" #: admin/general-settings.php:177 msgid "Minimum Password Length:" msgstr "最小密碼長度:" #: admin/general-settings.php:182 msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit" msgstr "輸入密碼必須最少字符。留空為沒有限制" #: admin/general-settings.php:189 msgid "Minimum Password Strength:" msgstr "最小密碼強度:" #: admin/general-settings.php:193 msgid "Disabled" msgstr "關閉" #: admin/manage-fields.php:12 msgid "Manage Fields" msgstr "管理字段" #: admin/manage-fields.php:13 msgid "Manage Default and Extra Fields" msgstr "管理默認與額外字段" #: admin/manage-fields.php:116 msgid "Field Title" msgstr "字段標題" #: admin/manage-fields.php:116 msgid "Title of the field" msgstr "字段的標題" #: admin/manage-fields.php:117 #: modules/multiple-forms/edit-profile-forms.php:245 #: modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "字段" #: admin/manage-fields.php:118 msgid "Meta-name" msgstr "Meta-name" #: admin/manage-fields.php:119 #: modules/custom-redirects/custom_redirects_admin.php:65 #: modules/custom-redirects/custom_redirects_admin.php:95 #: modules/custom-redirects/custom_redirects_admin.php:114 #: modules/custom-redirects/custom_redirects_admin.php:139 #: modules/multiple-forms/edit-profile-forms.php:246 #: modules/multiple-forms/register-forms.php:267 msgid "ID" msgstr "編號" #: admin/manage-fields.php:119 #: modules/multiple-forms/edit-profile-forms.php:246 #: modules/multiple-forms/register-forms.php:267 msgid "A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be edited" msgstr "壹個獨特的、為特定的字段自動生成ID
            如果需要可以使用過濾器調用這個目標
            不能編輯" #: admin/manage-fields.php:120 msgid "Description" msgstr "描述" #: admin/manage-fields.php:120 msgid "Enter a (detailed) description of the option for end users to read
            Optional" msgstr "輸入(詳細)的最終用戶閱讀選項的描述
            可選" #: admin/manage-fields.php:121 msgid "Row Count" msgstr "行數" #: admin/manage-fields.php:121 msgid "Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5" msgstr "指定 'Textarea' 字段的行數
            如果沒有指定,缺省為5" #: admin/manage-fields.php:122 msgid "Allowed Image Extensions" msgstr "允許的圖像擴展" #: admin/manage-fields.php:123 msgid "Allowed Upload Extensions" msgstr "允許的上傳擴展" #: admin/manage-fields.php:124 msgid "Avatar Size" msgstr "頭像大小" #: admin/manage-fields.php:124 msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100" msgstr "輸入 '頭像' 大小數值 ( 20 與 200 之間 )
            如果沒指定,默認是100" #: admin/manage-fields.php:125 msgid "Date-format" msgstr "日期格式" #: admin/manage-fields.php:126 msgid "Terms of Agreement" msgstr "協議條款" #: admin/manage-fields.php:126 msgid "Enter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>" msgstr "輸入壹個供用戶查看的協議內容。
            連接可以使用 HTML 語法,例如:<a href=\"custom_url\">custom_text</a>" #: admin/manage-fields.php:127 msgid "Options" msgstr "選項" #: admin/manage-fields.php:128 msgid "Labels" msgstr "標簽" #: admin/manage-fields.php:128 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "輸入壹個逗號分隔標簽
            對用戶可見的" #: admin/manage-fields.php:135 msgid "Default Value" msgstr "默認值" #: admin/manage-fields.php:135 msgid "Default value of the field" msgstr "該字段的默認值" #: admin/manage-fields.php:136 admin/manage-fields.php:138 #: admin/manage-fields.php:139 admin/manage-fields.php:140 msgid "Default Option" msgstr "默認選項" #: admin/manage-fields.php:136 msgid "Specify the option which should be selected by default" msgstr "指定選項的默認選擇值" #: admin/manage-fields.php:137 msgid "Default Option(s)" msgstr "默認選項(s)" #: admin/manage-fields.php:137 msgid "Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)" msgstr "指定選項默認是否勾選
            如果有多個值的選項,使用“,”分開(逗號)" #: admin/manage-fields.php:151 msgid "Default Content" msgstr "默認內容" #: admin/manage-fields.php:151 msgid "Default value of the textarea" msgstr "文本默認值" #: admin/manage-fields.php:158 msgid "Required" msgstr "必須" #: admin/manage-fields.php:158 msgid "Whether the field is required or not" msgstr "該字段是否必須" #: admin/manage-fields.php:159 msgid "Overwrite Existing" msgstr "覆蓋現有" #: admin/manage-fields.php:159 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
            Use this at your own risk" msgstr "選擇“是”將增加字段到列表中,但將覆蓋在數據庫中具有相同名稱的任何其他領域的 meta-name
            使用需自己承擔風險" #: admin/manage-fields.php:165 msgid "Field Properties" msgstr "字段屬性" #: admin/manage-fields.php:178 msgid "Registration & Edit Profile" msgstr "註冊與編輯資料" #: admin/manage-fields.php:197 msgid "Name" msgstr "姓名" #: admin/manage-fields.php:198 msgid "Usernames cannot be changed." msgstr " 用戶名不可更改。" #: admin/manage-fields.php:199 msgid "First Name" msgstr "名字" #: admin/manage-fields.php:200 msgid "Last Name" msgstr "姓氏" #: admin/manage-fields.php:201 modules/user-listing/userlisting.php:769 #: modules/user-listing/userlisting.php:2160 msgid "Nickname" msgstr "昵稱" #: admin/manage-fields.php:202 msgid "Display name publicly as" msgstr "公開顯示為" #: admin/manage-fields.php:203 msgid "Contact Info" msgstr "聯系信息" #: admin/manage-fields.php:204 #: features/admin-approval/class-admin-approval.php:169 #: features/email-confirmation/class-email-confirmation.php:168 #: modules/user-listing/userlisting.php:108 msgid "E-mail" msgstr "電子郵件" #: admin/manage-fields.php:205 modules/email-customizer/email-customizer.php:32 #: modules/user-listing/userlisting.php:111 #: modules/user-listing/userlisting.php:751 #: modules/user-listing/userlisting.php:2154 msgid "Website" msgstr "站點" #: admin/manage-fields.php:209 msgid "AIM" msgstr "AIM" #: admin/manage-fields.php:210 msgid "Yahoo IM" msgstr "雅虎通訊" #: admin/manage-fields.php:211 msgid "Jabber / Google Talk" msgstr "Jabber / Google Talk" #: admin/manage-fields.php:214 msgid "About Yourself" msgstr "關於您自己" #: admin/manage-fields.php:215 modules/user-listing/userlisting.php:114 #: modules/user-listing/userlisting.php:754 #: modules/user-listing/userlisting.php:2155 msgid "Biographical Info" msgstr "個人說明" #: admin/manage-fields.php:215 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "分享關於您的壹些信息。可能會被公開。" #: admin/manage-fields.php:216 front-end/recover.php:73 #: modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "新密碼" #: admin/manage-fields.php:216 msgid "Type your password." msgstr "重復新密碼" #: admin/manage-fields.php:217 front-end/recover.php:74 msgid "Repeat Password" msgstr "重復新密碼" #: admin/manage-fields.php:217 msgid "Type your password again. " msgstr "再輸入壹遍新密碼。" #: admin/manage-fields.php:977 admin/manage-fields.php:1134 msgid "You must select a field\n" msgstr "妳必須選擇壹個字段\n" #: admin/manage-fields.php:987 msgid "Please choose a different field type as this one already exists in your form (must be unique)\n" msgstr "請選擇壹個不同的字段類型,這個已經存在妳的表格(必須是唯壹的)\n" #: admin/manage-fields.php:998 msgid "The entered avatar size is not between 20 and 200\n" msgstr "輸入的頭像大小不是20與200之間 \n" #: admin/manage-fields.php:1001 msgid "The entered avatar size is not numerical\n" msgstr "輸入的頭像大小不是數值\n" #: admin/manage-fields.php:1009 msgid "The entered row number is not numerical\n" msgstr "輸入的行數不是數值\n" #: admin/manage-fields.php:1012 msgid "You must enter a value for the row number\n" msgstr "您必須輸入壹個值的行數\n" #: admin/manage-fields.php:1033 msgid "The entered value for the Datepicker is not a valid date-format\n" msgstr "日期選擇器輸入的值不是有效的日期格式\n" #: admin/manage-fields.php:1036 msgid "You must enter a value for the date-format\n" msgstr "您必須輸入壹個日期格式的值\n" #: admin/manage-fields.php:1064 admin/manage-fields.php:1072 #: admin/manage-fields.php:1083 msgid "That meta-name is already in use\n" msgstr "meta-name 已在使用\n" #: admin/manage-fields.php:1114 msgid "The following option(s) did not coincide with the ones in the options list: %s\n" msgstr "下列選項(s)不符合的選項清單: %s\n" #: admin/manage-fields.php:1118 msgid "The following option did not coincide with the ones in the options list: %s\n" msgstr "下列選項不符合的選項清單: %s\n" #: admin/manage-fields.php:1141 msgid "That field is already added in this form\n" msgstr "這個字段已經加入這個\n" #: admin/manage-fields.php:1190 msgid "
            Title
            Type
            Meta Name
            Required
            " msgstr "
            標題
            類型
            Meta Name
            必須
            " #: admin/manage-fields.php:1190 #: assets/lib/wck-api/wordpress-creation-kit.php:438 #: assets/lib/wck-api/wordpress-creation-kit.php:535 #: features/admin-approval/class-admin-approval.php:108 #: features/functions.php:718 features/functions.php:725 #: modules/custom-redirects/custom_redirects_admin.php:179 #: modules/custom-redirects/custom_redirects_admin.php:193 #: modules/custom-redirects/custom_redirects_admin.php:207 #: modules/custom-redirects/custom_redirects_admin.php:221 #: modules/multiple-forms/multiple-forms.php:406 msgid "Edit" msgstr "編輯" #: admin/manage-fields.php:1190 #: assets/lib/wck-api/wordpress-creation-kit.php:438 #: assets/lib/wck-api/wordpress-creation-kit.php:536 #: features/admin-approval/class-admin-approval.php:113 #: features/admin-approval/class-admin-approval.php:224 #: features/email-confirmation/class-email-confirmation.php:120 #: features/email-confirmation/class-email-confirmation.php:217 #: features/functions.php:711 features/functions.php:725 #: modules/custom-redirects/custom_redirects_admin.php:179 #: modules/custom-redirects/custom_redirects_admin.php:193 #: modules/custom-redirects/custom_redirects_admin.php:207 #: modules/custom-redirects/custom_redirects_admin.php:221 msgid "Delete" msgstr "刪除" #: admin/manage-fields.php:1205 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "使用這些簡碼在頁面中妳想要的形式顯示:" #: admin/register-version.php:14 msgid "Register Your Version" msgstr "註冊您的版本" #: admin/register-version.php:14 msgid "Register Version" msgstr "註冊版本" #: admin/register-version.php:70 msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support." msgstr "如果您註冊這個版本的 Profile Builder ,您將收到有關升級,補丁,和技術支持。" #: admin/register-version.php:72 msgid " Serial Number:" msgstr "序號:" #: admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "序號成功驗證!" #: admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "序號無法驗證!" #: admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "序號無法驗證,因已過期!" #: admin/register-version.php:85 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!" msgstr "序號無法驗證,因為連接超時。這可能是由於服務器維護。請稍後再試!" #: admin/register-version.php:87 msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "(例如: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725 msgid "Content" msgstr "內容" #: assets/lib/wck-api/wordpress-creation-kit.php:535 msgid "Edit this item" msgstr "編輯此項目" #: assets/lib/wck-api/wordpress-creation-kit.php:536 msgid "Delete this item" msgstr "刪除此項目" #: assets/lib/wck-api/wordpress-creation-kit.php:705 msgid "Please enter a value for the required field " msgstr "請為這個字段輸入所需的值" #: front-end/extra-fields/upload/upload.php:122 msgid "Select File" msgstr "選擇文件" #: assets/lib/wck-api/fields/upload.php:43 #: front-end/extra-fields/upload/upload.php:112 msgid "Remove" msgstr "移除" #: assets/lib/wck-api/fields/nested repeater.php:8 msgid "You can add the information for the %s after you add a entry" msgstr "您可以添加信息到 %s" #: assets/lib/wck-api/fields/upload.php:75 #: front-end/extra-fields/upload/upload.php:128 msgid "Upload " msgstr "上傳" #: features/class-list-table.php:184 msgid "No items found." msgstr "找不到項目。" #: features/class-list-table.php:308 msgid "Bulk Actions" msgstr "批量動作" #: features/class-list-table.php:318 msgid "Apply" msgstr "應用" #: features/class-list-table.php:402 msgid "Show all dates" msgstr "顯示所有日期" #: features/class-list-table.php:415 msgid "%1$s %2$d" msgstr "%1$s %2$d" #: features/class-list-table.php:431 msgid "List View" msgstr "列表查看" #: features/class-list-table.php:432 msgid "Excerpt View" msgstr "摘錄查看" #: features/class-list-table.php:458 msgid "%s pending" msgstr "%s 等待中" #: features/class-list-table.php:566 msgid "%1$s of %2$s" msgstr "%1$s 的 %2$s" #: features/class-list-table.php:713 msgid "Select All" msgstr "選擇所有" #: features/functions.php:526 msgid "Strength indicator" msgstr "強度指標" #: features/admin-approval/admin-approval.php:14 #: features/admin-approval/class-admin-approval.php:453 msgid "Admin Approval" msgstr "管理員審批" #: features/admin-approval/admin-approval.php:28 #: features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "您想要" #: features/admin-approval/admin-approval.php:51 msgid "Your session has expired! Please refresh the page and try again" msgstr "您的會話已過期!請刷新頁面重試" #: features/admin-approval/admin-approval.php:64 msgid "User successfully approved!" msgstr "用戶成功批準!" #: features/admin-approval/admin-approval.php:74 msgid "User successfully unapproved!" msgstr "用戶成功拒絕!" #: features/admin-approval/admin-approval.php:80 msgid "User successfully deleted!" msgstr "用戶成功刪除!" #: features/admin-approval/admin-approval.php:85 #: features/admin-approval/admin-approval.php:129 #: features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "妳沒有權限操作,或出現壹個錯誤!" #: features/admin-approval/admin-approval.php:96 msgid "Your session has expired! Please refresh the page and try again." msgstr "您的會話已過期!請刷新頁面重試" #: features/admin-approval/admin-approval.php:108 msgid "Users successfully approved!" msgstr "用戶成功批準!" #: features/admin-approval/admin-approval.php:117 msgid "Users successfully unapproved!" msgstr "用戶成功拒絕!" #: features/admin-approval/admin-approval.php:125 msgid "Users successfully deleted!" msgstr "用戶成功刪除!" #: features/admin-approval/admin-approval.php:145 msgid "Your account on %1$s has been approved!" msgstr "您在 %1$s 的帳號成功通過!" #: features/admin-approval/admin-approval.php:146 #: features/admin-approval/admin-approval.php:149 msgid "approved" msgstr "已批準" #: features/admin-approval/admin-approval.php:148 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "管理員已經批準您在 %1$s (%2$s) 的帳號。" #: features/admin-approval/admin-approval.php:153 msgid "Your account on %1$s has been unapproved!" msgstr "您在 %1$s 的帳號被拒絕!" #: features/admin-approval/admin-approval.php:154 #: features/admin-approval/admin-approval.php:157 msgid "unapproved" msgstr "已拒絕" #: features/admin-approval/admin-approval.php:156 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "管理員已拒絕您在 %1$s (%2$s) 的帳號。" #: features/admin-approval/admin-approval.php:175 msgid "ERROR: Your account has to be confirmed by an administrator before you can log in." msgstr "錯誤: 您的帳號需要管理員批準後才能登陸使用。" #: features/admin-approval/admin-approval.php:187 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature." msgstr "您的帳號在管理員確認前可以使用 \"密碼找回\" 功能." #: features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "刪除這個用戶?" #: features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "拒絕這個用戶?" #: features/admin-approval/class-admin-approval.php:116 #: features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr "拒絕" #: features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "允許這個用戶?" #: features/admin-approval/class-admin-approval.php:118 #: features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "允許" #: features/admin-approval/class-admin-approval.php:167 #: modules/user-listing/userlisting.php:278 #: modules/user-listing/userlisting.php:742 #: modules/user-listing/userlisting.php:2157 msgid "Firstname" msgstr "名子" #: features/admin-approval/class-admin-approval.php:168 #: modules/user-listing/userlisting.php:745 #: modules/user-listing/userlisting.php:2158 msgid "Lastname" msgstr "姓氏" #: features/admin-approval/class-admin-approval.php:170 #: modules/user-listing/userlisting.php:149 #: modules/user-listing/userlisting.php:279 #: modules/user-listing/userlisting.php:772 #: modules/user-listing/userlisting.php:2162 msgid "Role" msgstr "角色" #: features/admin-approval/class-admin-approval.php:171 #: features/email-confirmation/class-email-confirmation.php:169 msgid "Registered" msgstr "已註冊" #: features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "用戶狀態" #: features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "妳想批量允許所選用戶?" #: features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "妳想批量拒絕所選用戶?" #: features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "妳想批量刪除所選用戶?" #: features/admin-approval/class-admin-approval.php:274 #: features/email-confirmation/class-email-confirmation.php:278 msgid "Sorry, but you don't have permission to do that!" msgstr "抱歉,您沒有相應的操作權限!" #: features/admin-approval/class-admin-approval.php:339 msgid "Approved" msgstr "已允許" #: features/admin-approval/class-admin-approval.php:341 msgid "Unapproved" msgstr "已拒絕" #: features/admin-approval/class-admin-approval.php:456 #: features/email-confirmation/class-email-confirmation.php:454 msgid "All Users" msgstr "所有用戶" #: features/email-confirmation/class-email-confirmation.php:120 msgid "delete this user from the _signups table?" msgstr "在 the _signups 表單中 刪除這個用戶?" #: features/email-confirmation/class-email-confirmation.php:121 msgid "confirm this email yourself?" msgstr "確認自己的電子郵件?" #: features/email-confirmation/class-email-confirmation.php:121 #: features/email-confirmation/class-email-confirmation.php:218 msgid "Confirm Email" msgstr "確認電子郵件" #: features/email-confirmation/class-email-confirmation.php:122 msgid "resend the activation link?" msgstr "重新發送激活鏈接?" #: features/email-confirmation/class-email-confirmation.php:122 #: features/email-confirmation/class-email-confirmation.php:219 msgid "Resend Activation Email" msgstr "發送激活郵件" #: features/email-confirmation/class-email-confirmation.php:249 msgid "%s couldn't be deleted" msgstr "%s 不能刪除" #: features/email-confirmation/class-email-confirmation.php:253 msgid "All users have been successfully deleted" msgstr "所有的用戶已成功刪除" #: features/email-confirmation/class-email-confirmation.php:263 msgid "The selected users have been activated" msgstr "所選的用戶已被激活" #: features/email-confirmation/class-email-confirmation.php:274 msgid "The selected users have had their activation emails resent" msgstr "所選用戶已經重新發送激活電子郵件" #: features/email-confirmation/class-email-confirmation.php:451 #: features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "沒經確認郵箱的用戶" #: features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "執行操作時出錯!" #: features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "所選用戶不能刪除" #: features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "電子郵件通知重發給用戶" #: features/email-confirmation/email-confirmation.php:397 msgid "[%1$s] Activate %2$s" msgstr "[%1$s] 激活 %2$s" #: features/email-confirmation/email-confirmation.php:441 #: front-end/register.php:71 msgid "Could not create user!" msgstr "無法創建用戶!" #: features/email-confirmation/email-confirmation.php:444 msgid "That username is already activated!" msgstr "用戶名已經被激活!" #: features/email-confirmation/email-confirmation.php:467 msgid "There was an error while trying to activate the user" msgstr "試圖激活用戶時出現壹個錯誤" #: features/email-confirmation/email-confirmation.php:515 #: modules/email-customizer/admin-email-customizer.php:73 msgid "A new subscriber has (been) registered!" msgstr "壹個新的用戶已經(被)註冊!" #: features/email-confirmation/email-confirmation.php:518 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "新用戶在 %1$s.

            用戶名:%2$s
            郵箱:%3$s
            " #: features/email-confirmation/email-confirmation.php:633 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!" msgstr "管理員審批”的功能是註冊時激活,所以請記住,妳必須批準該用戶,他/她才能進行登錄!" #: features/email-confirmation/email-confirmation.php:569 msgid "[%1$s] Your new account information" msgstr "[%1$s] 您的新帳戶信息" #: features/email-confirmation/email-confirmation.php:580 msgid "Welcome to %1$s!


            Your username is:%2$s and password:%3$s" msgstr "歡迎來到 %1$s!


            您的用戶名是:%2$s 密碼是:%3$s" #: features/email-confirmation/email-confirmation.php:641 #: front-end/register.php:125 msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email." msgstr "需要管理員審核通過才能訪問您的帳戶。您將收到壹封電子郵件。" #: features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "該登錄控件是允許您添加在側邊欄的登錄表單。" #: features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "Profile Builder 登陸小工具" #: front-end/class-formbuilder.php:399 front-end/login.php:250 msgid "Register" msgstr "註冊" #: features/login-widget/login-widget.php:63 msgid "Title:" msgstr "標題:" #: features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "登錄後的重定向URL(可選):" #: features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "註冊頁面URL(可選):" #: features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "密碼恢復頁URL(可選):" #: features/upgrades/upgrades-functions.php:91 #: features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "用戶名不可更改。" #: front-end/class-formbuilder.php:125 msgid "Only an administrator can add new users." msgstr "只有管理員可以添加新用戶。" #: front-end/class-formbuilder.php:135 msgid "Users can register themselves or you can manually create users here." msgstr "用戶可以註冊自己註冊,或您可以在這裏手動創建用戶。" #: front-end/class-formbuilder.php:138 msgid "Users cannot currently register themselves, but you can manually create users here." msgstr "用戶無法自己註冊,但妳可以在這裏手動創建用戶。" #: front-end/class-formbuilder.php:158 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "您當前登陸為 %1s。您不需要其它帳號。 %2s" #: front-end/class-formbuilder.php:158 msgid "Log out of this account." msgstr "退出這個帳號。" #: front-end/class-formbuilder.php:158 msgid "Logout" msgstr "退出" #: front-end/class-formbuilder.php:164 msgid "You must be logged in to edit your profile." msgstr "您必須在登陸狀態下編輯個人資料。" #: features/functions.php:994 msgid "here" msgstr "這裏" #: features/functions.php:995 msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s" msgstr "您很快將會自動重定向。如果妳看到這個頁面超過 %1$d 秒,請點擊 %2$s.%3$s" #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306 msgid "The account %1s has been successfully created!" msgstr "帳號 %1s 創建成功!" #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312 msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link." msgstr "訪問您的帳號 %1s 前,您需要確認您的郵箱地址。請檢查您的郵箱並點擊激活連接。" #: front-end/class-formbuilder.php:308 msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email." msgstr "訪問您的帳號 %1s 前,需要管理員審批通過。您將收到郵件。" #: front-end/class-formbuilder.php:331 msgid "Your profile has been successfully updated!" msgstr "個人資料已更新!" #: front-end/class-formbuilder.php:342 msgid "There was an error in the submitted form" msgstr "在遞交表單時出錯" #: front-end/class-formbuilder.php:399 msgid "Add User" msgstr "所有用戶" #: admin/add-ons.php:170 front-end/class-formbuilder.php:402 msgid "Update" msgstr "更新個人資料" #: front-end/class-formbuilder.php:465 msgid "Send these credentials via email." msgstr "通過電子郵件發送這些憑據。" #: front-end/extra-fields/extra-fields.php:94 front-end/login.php:137 #: front-end/login.php:144 front-end/login.php:158 front-end/recover.php:17 #: front-end/recover.php:237 msgid "ERROR" msgstr "錯誤" #: front-end/login.php:137 msgid "The password you entered is incorrect." msgstr "妳輸入的密碼不正確。" #: front-end/login.php:138 front-end/login.php:145 msgid "Password Lost and Found." msgstr "密碼遺失。" #: front-end/login.php:138 front-end/login.php:145 msgid "Lost your password" msgstr "忘記您的密碼" #: front-end/login.php:158 msgid "Both fields are empty." msgstr "字段均空" #: front-end/login.php:296 msgid "You are currently logged in as %1$s. %2$s" msgstr "您當前登錄為 %1$s. %2$s" #: front-end/login.php:295 front-end/logout.php:25 msgid "Log out of this account" msgstr "退出這個帳戶" #: front-end/login.php:295 msgid "Log out" msgstr "退出" #: front-end/recover.php:17 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature." msgstr "您的帳戶需被管理員審批後才可使用 \"密碼重置\" 功能。" #: front-end/recover.php:94 msgid "Reset Password" msgstr "重置密碼" #: front-end/recover.php:114 msgid "Please enter your username or email address." msgstr "請輸入您的用戶名或電子郵件地址。" #: front-end/recover.php:115 msgid "You will receive a link to create a new password via email." msgstr "妳將收到壹封創建壹個新密碼連接的電子郵件。" #: front-end/recover.php:120 msgid "Username or E-mail" msgstr "用戶或郵箱地址" #: front-end/recover.php:130 msgid "Get New Password" msgstr "獲取新密碼" #: front-end/recover.php:177 msgid "The username entered wasn't found in the database!" msgstr "輸入的用戶名不存在數據庫中!" #: front-end/recover.php:177 msgid "Please check that you entered the correct username." msgstr "請檢查您已輸入正確的用戶名。" #: front-end/recover.php:192 msgid "Check your e-mail for the confirmation link." msgstr "檢查妳的郵件中的確認鏈接。" #: front-end/recover.php:227 msgid "Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s" msgstr "有人要求以下帳號密碼進行重置: %1$s
            如果不是您自己的操作,請忽略。
            需要重置您的密碼的話,請點擊 :%2$s" #: front-end/recover.php:230 msgid "Password Reset from \"%1$s\"" msgstr "從 \"%1$s\" 密碼重置" #: front-end/recover.php:237 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "發送激活鏈接時出現錯誤 %1$s!" #: front-end/recover.php:199 msgid "The email address entered wasn't found in the database!" msgstr "郵箱地址無法在數據庫中找到" #: front-end/recover.php:199 msgid "Please check that you entered the correct email address." msgstr "請檢查您輸入(正確)電子郵件地址。" #: front-end/recover.php:265 msgid "Your password has been successfully changed!" msgstr "您已經成功地更改密碼!" #: front-end/recover.php:284 msgid "You have successfully reset your password to: %1$s" msgstr "您已經成功地將密碼更改成:%1$s" #: front-end/recover.php:287 front-end/recover.php:298 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "密碼成功重置 %1$s 在 \"%2$s\"" #: front-end/recover.php:295 msgid "%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s" msgstr "%1$s 請求通過密碼重置功能修改密碼。
            他的密碼是:%2$s" #: front-end/recover.php:312 msgid "The entered passwords don't match!" msgstr "輸入的密碼不匹配!" #: front-end/recover.php:367 msgid "ERROR:" msgstr "錯誤:" #: front-end/recover.php:367 msgid "Invalid key!" msgstr "無效密鑰!" #: front-end/register.php:56 msgid "Invalid activation key!" msgstr "無效的激活密鑰!" #: front-end/register.php:60 msgid "This username is now active!" msgstr "這個用戶名現在被激活!" #: front-end/register.php:74 msgid "This username is already activated!" msgstr "這個用戶名已經被激活!" #: front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "您的電子郵件已確認。" #: front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "嘗試激活用戶時出現壹個錯誤。" #: front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "您輸入的電子郵件不是壹個有效的電子郵件地址。" #: front-end/default-fields/email/email.php:60 #: front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "此郵箱地址已被保留使用。" #: front-end/default-fields/email/email.php:60 #: front-end/default-fields/email/email.php:67 #: front-end/default-fields/email/email.php:77 #: front-end/default-fields/email/email.php:95 #: front-end/default-fields/username/username.php:49 #: front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "請嘗試壹個不同的!" #: front-end/default-fields/email/email.php:77 #: front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "電子郵件已被使用。" #: front-end/default-fields/password-repeat/password-repeat.php:37 #: front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "密碼不匹配" #: front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "用戶名已經存在。" #: front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "這個用戶名已經被保留。" #: modules/user-listing/userlisting.php:276 msgid "Avatar" msgstr "頭像" #: front-end/extra-fields/avatar/avatar.php:72 #: front-end/extra-fields/checkbox/checkbox.php:45 #: front-end/extra-fields/colorpicker/colorpicker.php:45 #: front-end/extra-fields/datepicker/datepicker.php:40 #: front-end/extra-fields/input-hidden/input-hidden.php:34 #: front-end/extra-fields/input/input.php:30 #: front-end/extra-fields/map/map.php:51 #: front-end/extra-fields/number/number.php:30 #: front-end/extra-fields/phone/phone.php:39 #: front-end/extra-fields/radio/radio.php:44 #: front-end/extra-fields/select-cpt/select-cpt.php:52 #: front-end/extra-fields/select-multiple/select-multiple.php:46 #: front-end/extra-fields/select-timezone/select-timezone.php:49 #: front-end/extra-fields/select/select.php:51 #: front-end/extra-fields/textarea/textarea.php:30 #: front-end/extra-fields/upload/upload.php:70 #: front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "必須" #: front-end/extra-fields/recaptcha/recaptcha.php:48 msgid "To use reCAPTCHA you must get an API key from" msgstr "使用 reCAPTCHA 妳必須獲得壹個API密鑰" #: front-end/extra-fields/recaptcha/recaptcha.php:131 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "安全原因,您必須通過遠程IP到reCAPTCHA!" #: front-end/extra-fields/recaptcha/recaptcha.php:192 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "使用reCAPTCHA,妳必須得到壹個API公開密鑰:" #: modules/modules.php:11 modules/modules.php:58 msgid "Modules" msgstr "模塊" #: modules/modules.php:59 msgid "Here you can activate / deactivate available modules for Profile Builder." msgstr "在這裏妳可以激活/停用 Profile Builder 模塊。" #: modules/modules.php:69 msgid "Name/Description" msgstr "名稱/描述" #: modules/modules.php:70 msgid "Status" msgstr "狀態" #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91 #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112 #: modules/modules.php:119 msgid "Active" msgstr "激活" #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92 #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113 #: modules/modules.php:120 msgid "Inactive" msgstr "關閉" #: modules/email-customizer/admin-email-customizer.php:11 #: modules/email-customizer/admin-email-customizer.php:12 #: modules/modules.php:96 msgid "Admin Email Customizer" msgstr "管理員郵件定制" #: modules/email-customizer/user-email-customizer.php:11 #: modules/email-customizer/user-email-customizer.php:12 #: modules/modules.php:103 msgid "User Email Customizer" msgstr "用戶郵件定制" #: assets/lib/wck-api/wordpress-creation-kit.php:334 #: modules/class-mustache-templates/class-mustache-templates.php:253 msgid "Save" msgstr "保存" #: modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "重定向" #: modules/multiple-forms/edit-profile-forms.php:208 #: modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "網址" #: modules/email-customizer/admin-email-customizer.php:38 msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save." msgstr "這些設置也復制在\"用戶郵件定制\" 設置頁中保存。" #: modules/email-customizer/admin-email-customizer.php:41 #: modules/email-customizer/user-email-customizer.php:41 msgid "From (name)" msgstr "來自(名子)" #: modules/email-customizer/admin-email-customizer.php:49 #: modules/email-customizer/user-email-customizer.php:49 msgid "From (reply-to email)" msgstr "來自(回復郵件)" #: modules/email-customizer/admin-email-customizer.php:57 #: modules/email-customizer/user-email-customizer.php:57 msgid "Common Settings" msgstr "常用設置" #: modules/email-customizer/admin-email-customizer.php:60 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" msgstr "" "\n" "

            新用戶在 {{site_name}}.

            \n" "

            用戶名:{{username}}

            \n" "

            郵箱:{{user_email}}

            \n" #: modules/email-customizer/admin-email-customizer.php:69 #: modules/email-customizer/admin-email-customizer.php:99 #: modules/email-customizer/admin-email-customizer.php:126 #: modules/email-customizer/user-email-customizer.php:71 #: modules/email-customizer/user-email-customizer.php:99 #: modules/email-customizer/user-email-customizer.php:128 #: modules/email-customizer/user-email-customizer.php:155 #: modules/email-customizer/user-email-customizer.php:183 #: modules/email-customizer/user-email-customizer.php:214 #: modules/email-customizer/user-email-customizer.php:241 #: modules/email-customizer/user-email-customizer.php:274 msgid "Email Subject" msgstr "郵件主題" #: modules/email-customizer/admin-email-customizer.php:84 msgid "Default Registration & Registration with Email Confirmation" msgstr "默認註冊與郵件確認註冊" #: modules/email-customizer/admin-email-customizer.php:87 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log in!

            \n" msgstr "" "\n" "

            新用戶在 {{site_name}}.

            \n" "

            用戶名:{{username}}

            \n" "

            郵箱:{{user_email}}

            \n" "

            管理審核功能已被激活,\n" "請記住,您需要批準這個用戶,他才能登陸!

            \n" #: modules/email-customizer/admin-email-customizer.php:114 #: modules/email-customizer/user-email-customizer.php:143 msgid "Registration with Admin Approval" msgstr "註冊需管理員審批" #: modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "可用標簽" #: features/email-confirmation/class-email-confirmation.php:91 #: features/email-confirmation/class-email-confirmation.php:170 msgid "User Meta" msgstr "User Meta" #: modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "網站地址" #: modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "網站名稱" #: modules/email-customizer/email-customizer.php:25 #: modules/user-listing/userlisting.php:158 msgid "User Id" msgstr "用戶名稱" #: modules/email-customizer/email-customizer.php:33 msgid "Reply To" msgstr "回復" #: modules/email-customizer/email-customizer.php:40 msgid "Activation Key" msgstr "激活密鑰" #: modules/email-customizer/email-customizer.php:41 msgid "Activation Url" msgstr "激活URL" #: modules/email-customizer/email-customizer.php:42 msgid "Activation Link" msgstr "激活鏈接" #: modules/email-customizer/user-email-customizer.php:64 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" msgstr "" "\n" "

            歡迎來到 {{site_name}}!

            \n" "

            您的用戶名是:{{username}} 密碼是:{{password}}

            \n" #: modules/email-customizer/user-email-customizer.php:85 msgid "Default Registration" msgstr "默認註冊" #: modules/email-customizer/user-email-customizer.php:91 msgid "" "\n" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials.

            \n" msgstr "" "\n" "

            激活您的帳戶,請點擊下面連接:
            \n" "{{{activation_link}}}

            \n" "

            在您激活完成後,將會收到另外壹封憑據郵件。

            \n" #: modules/email-customizer/user-email-customizer.php:103 msgid "[{{site_name}}] Activate {{username}}" msgstr "[{{site_name}}] 激活 {{username}}" #: modules/email-customizer/user-email-customizer.php:114 msgid "Registration with Email Confirmation" msgstr "電子郵件確認註冊" #: modules/email-customizer/user-email-customizer.php:120 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n" msgstr "" "\n" "

            歡迎來到 {{site_name}}!

            \n" "

            您的用戶名:{{username}} 密碼:{{password}}

            \n" "

            在您訪問您的帳號前,需要管理審批。您將會收郵件通知。

            \n" #: modules/email-customizer/user-email-customizer.php:132 msgid "A new account has been created for you on {{site_name}}" msgstr "壹個新的帳號在您的 {{site_name}} 上建立" #: modules/email-customizer/user-email-customizer.php:148 msgid "" "\n" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            好消息 !

            \n" "

            管理員已經批準您的帳號: {{username}} 在 {{site_name}}.

            \n" #: modules/email-customizer/user-email-customizer.php:159 msgid "Your account on {{site_name}} has been approved!" msgstr "您在 {{site_name}} 的帳號已經被通過!" #: modules/email-customizer/user-email-customizer.php:170 msgid "User Approval Notification" msgstr "用戶批準通知" #: modules/email-customizer/user-email-customizer.php:175 msgid "" "\n" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            您好,

            \n" "

            抱歉,管理員未批準您的帳號: {{username}} 在 {{site_name}}.

            \n" #: modules/email-customizer/user-email-customizer.php:187 msgid "Your account on {{site_name}} has been unapproved!" msgstr "您在 {{site_name}} 的帳號被拒絕!" #: modules/email-customizer/user-email-customizer.php:198 msgid "Unapproved User Notification" msgstr "被拒絕的用戶通知" #: modules/multiple-forms/edit-profile-forms.php:11 #: modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "編輯資料表單" #: modules/multiple-forms/edit-profile-forms.php:13 #: modules/multiple-forms/register-forms.php:13 #: modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "新增加" #: modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "添加新的編輯資料表單" #: modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "編輯的編輯個人資料表單" #: modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "新的編輯資料表單" #: modules/multiple-forms/edit-profile-forms.php:17 #: modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "編輯資料表單" #: modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "查看編輯資料表單" #: modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "搜索編輯資料表單" #: modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "沒有編輯個人資料表單" #: modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "在回收站中沒有編輯個人資料表單" #: modules/multiple-forms/edit-profile-forms.php:135 #: modules/multiple-forms/register-forms.php:138 #: modules/user-listing/userlisting.php:2048 msgid "Shortcode" msgstr "簡碼" #: modules/multiple-forms/edit-profile-forms.php:155 #: modules/multiple-forms/register-forms.php:159 #: modules/user-listing/userlisting.php:2069 msgid "(no title)" msgstr "(沒有標題)" #: modules/multiple-forms/edit-profile-forms.php:175 #: modules/multiple-forms/register-forms.php:178 #: modules/user-listing/userlisting.php:2089 msgid "The shortcode will be available after you publish this form." msgstr "簡碼將在您發布表單後可用。" #: modules/multiple-forms/edit-profile-forms.php:177 #: modules/multiple-forms/register-forms.php:180 #: modules/user-listing/userlisting.php:2091 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "使用這個簡碼在頁面上,將會獲得您想要的表單顯示效果:" #: modules/multiple-forms/edit-profile-forms.php:181 #: modules/multiple-forms/register-forms.php:184 #: modules/user-listing/userlisting.php:2095 msgid "Note: changing the form title also changes the shortcode!" msgstr "註意: 改變表單標題也將改變簡碼!" #: modules/multiple-forms/edit-profile-forms.php:187 #: modules/multiple-forms/register-forms.php:190 #: modules/user-listing/userlisting.php:2128 msgid "Form Shortcode" msgstr "表單簡碼" #: modules/multiple-forms/edit-profile-forms.php:206 #: modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "是否將用戶重定向到特定頁" #: modules/multiple-forms/edit-profile-forms.php:207 #: modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "顯示消息" #: modules/multiple-forms/edit-profile-forms.php:207 #: modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "允許用時間去顯示成功信息提示(秒)" #: modules/multiple-forms/edit-profile-forms.php:208 msgid "Specify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.com" msgstr "指定頁面用於用戶壹旦更新他們的資料使用這個表單轉向
            使用這種格式: http://www.mysite.com" #: modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "檔案更新後…" #: modules/multiple-forms/edit-profile-forms.php:241 #: modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "添加新字段到列表" #: modules/multiple-forms/edit-profile-forms.php:245 #: modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage Title (Type)" msgstr "
            標題 (類型)
            " #: modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "妳需要在創建前指定表單的標題" #: modules/multiple-forms/register-forms.php:11 #: modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "註冊表單" #: modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "增加新的註冊表單" #: modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "編緝註冊表單" #: modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "新註冊表單" #: modules/multiple-forms/register-forms.php:17 #: modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "註冊表單" #: modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "查看註冊表單" #: modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "搜索註冊表單" #: modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "沒有找到註冊表單" #: modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "在回收站沒有找到註冊表單" #: modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "默認角色" #: modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "設置角色" #: modules/multiple-forms/register-forms.php:228 msgid "Choose what role the user will have after (s)he registered
            If not specified, defaults to the role set in the WordPress settings" msgstr "選擇用戶註冊後的角色
            如無指定,將默認使用 WordPress 的設定" #: modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "自動登錄" #: modules/multiple-forms/register-forms.php:229 msgid "Whether to automatically log in the newly registered user or not
            Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work" msgstr "是否記錄用戶新註冊
            只使用於單網站,並且沒有開啟 \"管理員審批\" 與 \"郵箱確認\" 功能
            警告:緩存註冊表單會讓自動登錄不正常" #: modules/multiple-forms/register-forms.php:232 msgid "Specify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.com" msgstr "指定用戶註冊頁面地址將被重定向
            使用下列格式: http://www.mysite.com" #: modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "註冊後…" #: modules/user-listing/userlisting.php:1021 #: modules/user-listing/userlisting.php:1468 #: modules/user-listing/userlisting.php:1886 #: modules/user-listing/userlisting.php:2355 msgid "Search Users by All Fields" msgstr "在所有字段中搜索用戶" #: modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "增加新的用戶列表" #: modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "編輯用戶列表" #: modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "新的用戶列表" #: modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "查看用戶列表" #: modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "搜索用戶列表" #: modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "沒有找到用戶列表" #: modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "沒有在回收站找到用戶列表" #: modules/user-listing/userlisting.php:105 msgid "Display name as" msgstr "顯示名稱為" #: modules/user-listing/userlisting.php:150 #: modules/user-listing/userlisting.php:2156 msgid "Registration Date" msgstr "註冊日期" #: modules/user-listing/userlisting.php:151 #: modules/user-listing/userlisting.php:2161 msgid "Number of Posts" msgstr "帖子數" #: modules/user-listing/userlisting.php:155 msgid "More Info" msgstr "更多信息" #: modules/user-listing/userlisting.php:156 msgid "More Info Url" msgstr "更多信息網址" #: modules/user-listing/userlisting.php:157 msgid "Avatar or Gravatar" msgstr "頭像或 Gravatar" #: modules/user-listing/userlisting.php:196 #: modules/user-listing/userlisting.php:227 msgid "Extra Functions" msgstr "額外功能" #: modules/user-listing/userlisting.php:199 msgid "Pagination" msgstr "分頁" #: modules/user-listing/userlisting.php:200 msgid "Search all Fields" msgstr "搜索所有字段" #: modules/user-listing/userlisting.php:229 msgid "Go Back Link" msgstr "返回鏈接" #: modules/user-listing/userlisting.php:247 msgid "All-userlisting Template" msgstr "所有用戶列表模板" #: modules/user-listing/userlisting.php:250 msgid "Single-userlisting Template" msgstr "單用戶列表模板" #: modules/user-listing/userlisting.php:733 msgid "First/Lastname" msgstr "名字/姓氏" #: modules/user-listing/userlisting.php:281 #: modules/user-listing/userlisting.php:739 msgid "Sign-up Date" msgstr "註冊日期" #: modules/user-listing/userlisting.php:748 #: modules/user-listing/userlisting.php:2159 msgid "Display Name" msgstr "顯示名稱" #: modules/user-listing/userlisting.php:280 #: modules/user-listing/userlisting.php:757 msgid "Posts" msgstr "帖子" #: modules/user-listing/userlisting.php:760 #: modules/user-listing/userlisting.php:2166 msgid "Aim" msgstr "Aim" #: modules/user-listing/userlisting.php:763 #: modules/user-listing/userlisting.php:2167 msgid "Yim" msgstr "Yim" #: modules/user-listing/userlisting.php:766 #: modules/user-listing/userlisting.php:2168 msgid "Jabber" msgstr "Jabber" #: modules/user-listing/userlisting.php:1273 msgid "Click here to see more information about this user" msgstr "點擊這裏查看此用戶的更多信息" #: modules/user-listing/userlisting.php:1273 msgid "More..." msgstr "更多..." #: modules/user-listing/userlisting.php:1276 msgid "Click here to see more information about this user." msgstr "點擊這裏查看此用戶的更多信息。" #: modules/user-listing/userlisting.php:1422 #: modules/user-listing/userlisting.php:1425 msgid "Click here to go back" msgstr "點擊這裏返回" #: modules/user-listing/userlisting.php:1422 msgid "Back" msgstr "返回" #: modules/user-listing/userlisting.php:1455 msgid "«« First" msgstr "«« 首頁" #: modules/user-listing/userlisting.php:1456 msgid "« Prev" msgstr "« 上壹頁" #: modules/user-listing/userlisting.php:1457 msgid "Next » " msgstr "下壹頁 » " #: modules/user-listing/userlisting.php:1458 msgid "Last »»" msgstr "最後 »»" #: modules/user-listing/userlisting.php:1487 msgid "You don't have any pagination settings on this userlisting!" msgstr "您不需在用戶列表中設置分頁" #: modules/user-listing/userlisting.php:1903 msgid "Search" msgstr "搜索" #: modules/user-listing/userlisting.php:1904 msgid "Clear Results" msgstr "清除結果" #: modules/user-listing/userlisting.php:2098 #: modules/user-listing/userlisting.php:2102 msgid "Extra shortcode parameters" msgstr "額外簡碼參數" #: modules/user-listing/userlisting.php:2105 msgid "displays users having a certain meta-value within a certain (extra) meta-field" msgstr "顯示用戶在某壹(額外)元字段(meta-field)" #: modules/user-listing/userlisting.php:2106 msgid "Example:" msgstr "例子:" #: modules/user-listing/userlisting.php:2108 msgid "Remember though, that the field-value combination must exist in the database." msgstr "記住,該字段值的組合必須存在於數據庫中。" #: modules/user-listing/userlisting.php:2183 msgid "Random (very slow on large databases > 10K user)" msgstr "隨機 (在大於 10K 的用戶數據庫中將會很慢 )" #: modules/user-listing/userlisting.php:2195 msgid "Roles to Display" msgstr "角色顯示:" #: modules/user-listing/userlisting.php:2195 msgid "Restrict the userlisting to these selected roles only
            If not specified, defaults to all existing roles" msgstr "限制用戶列表中的特定角色
            如果沒有指定,默認為全部現有的角色" #: modules/user-listing/userlisting.php:2196 msgid "Number of Users/Page" msgstr "用戶/頁面數" #: modules/user-listing/userlisting.php:2197 msgid "Default Sorting Criteria" msgstr "默認分類標準" #: modules/user-listing/userlisting.php:2197 msgid "Set the default sorting criteria
            This can temporarily be changed for each new session" msgstr "設置默認的排序標準
            這可以暫時被每壹個新的會話更改" #: modules/user-listing/userlisting.php:2198 msgid "Default Sorting Order" msgstr "默認排列順序" #: modules/user-listing/userlisting.php:2198 msgid "Set the default sorting order
            This can temporarily be changed for each new session" msgstr "設置默認排列順序
            這可以在每個新會話時被改變" #: modules/user-listing/userlisting.php:2199 msgid "Avatar Size (All-userlisting)" msgstr "頭像大小(所有用戶列表)" #: modules/user-listing/userlisting.php:2199 msgid "Set the avatar size on the all-userlisting only" msgstr "設置在所有用戶列表的頭像大小" #: modules/user-listing/userlisting.php:2200 msgid "Avatar Size (Single-userlisting)" msgstr "頭像大小(單用戶列表)" #: modules/user-listing/userlisting.php:2200 msgid "Set the avatar size on the single-userlisting only" msgstr "設置在單用戶列表的頭像大小" #: modules/user-listing/userlisting.php:2201 msgid "Visible only to logged in users?" msgstr "只有登錄用戶可見的?" #: modules/user-listing/userlisting.php:2201 msgid "The userlisting will only be visible only to the logged in users" msgstr "用戶列表只有登錄用戶可見的" #: modules/user-listing/userlisting.php:2202 msgid "Visible to following Roles" msgstr "以下角色可見" #: modules/user-listing/userlisting.php:2202 msgid "The userlisting will only be visible to the following roles" msgstr "用戶列表只允許以下角色可見" #: modules/user-listing/userlisting.php:2208 msgid "Userlisting Settings" msgstr "用戶列表設置" #: modules/user-listing/userlisting.php:2331 msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "您需要激活用戶列表功能在 \"模塊\" 選項卡!" #: modules/user-listing/userlisting.php:2331 msgid "You can find it in the Profile Builder menu." msgstr "妳可以在 Profile Builder 菜單中找到它。" #: modules/user-listing/userlisting.php:2494 msgid "No results found!" msgstr "無任何結果!"translation/profile-builder-nb_NO.po000066600000614525152141651170013543 0ustar00# Translation of Profile Builder in Norwegian (Bokmål) # This file is distributed under the same license as the Profile Builder package. msgid "" msgstr "" "PO-Revision-Date: 2017-05-08 09:44:04+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: GlotPress/0.1\n" "Project-Id-Version: Profile Builder\n" #: profile-builder-2.0/admin/general-settings.php:154 msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s." msgstr "" #: profile-builder-2.0/admin/general-settings.php:146 msgid "\"Roles Editor\" Activated:" msgstr "" #: profile-builder-2.0/features/roles-editor/roles-editor.php:300 msgid "M j, Y @ G:i" msgstr "" #: profile-builder-2.0/front-end/recover.php:117 msgid "Please enter your email address." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yy" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244 msgid "Individual redirects defined in shortcodes; redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1217 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." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "" #: profile-builder-2.0/admin/register-version.php:251 msgid "

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            " msgstr "" #: profile-builder-2.0/admin/register-version.php:246 msgid "

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            " msgstr "" #: profile-builder-2.0/front-end/recover.php:159 msgid "You are already logged in. You can change your password on the edit profile form." msgstr "" "\n" "Du er allerede logget inn. Du kan endre passordet ditt på redigeringsprofilskjema." #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "" #: profile-builder-2.0/features/functions.php:909 msgid "

            You can visit your site at " msgstr "" #: profile-builder-2.0/features/functions.php:896 msgid "

            Also, you will be able to visit your site at " msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138 msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network." msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36 #: profile-builder-2.0/modules/user-listing/userlisting.php:118 msgid "Blog URL" msgstr "" #: profile-builder-2.0/admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:222 msgid "Blog Details" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:239 msgid "Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579 msgid "Welcome to %1$s!


            Your username is:%2$s" msgstr "Velkommen til %1$s!


            Brukernavnet ditt er: %2$s" #: profile-builder-2.0/modules/user-listing/userlisting.php:1320 msgid "View Map" msgstr "" #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267 #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367 #: pb-add-on-woocommerce/index.php:493 msgid "Address line 2" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "Billing Fields" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Billing Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Save the billing fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Billing Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Save the billing fields names" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Shipping Fields" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Shipping Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Save the shipping fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Shipping Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Save the shipping fields names" msgstr "" #: pb-add-on-woocommerce/index.php:305 msgid "Field Name" msgstr "" #: pb-add-on-woocommerce/index.php:369 msgid "Click to edit " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:368 msgid "is not a valid phone number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:377 msgid "is not a number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:382 msgid "must be a multiplier of " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:387 msgid "must be a greater than or equal to " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:392 msgid "must be less than or equal to " msgstr "" #: profile-builder-2.0/admin/add-ons.php:103 msgid "Available in Hobbyist and Pro Versions" msgstr "" #: profile-builder-2.0/admin/add-ons.php:105 msgid "Available in All Versions" msgstr "" #: profile-builder-2.0/admin/add-ons.php:148 msgid "Learn More" msgstr "" #: profile-builder-2.0/admin/basic-info.php:99 msgid "Timepicker" msgstr "" #: profile-builder-2.0/admin/basic-info.php:100 msgid "Colorpicker" msgstr "" #: profile-builder-2.0/admin/basic-info.php:103 msgid "Currency Select" msgstr "" #: profile-builder-2.0/admin/basic-info.php:109 msgid "Number" msgstr "" #: profile-builder-2.0/admin/basic-info.php:114 msgid "Validation" msgstr "" #: profile-builder-2.0/admin/basic-info.php:115 msgid "Map" msgstr "" #: profile-builder-2.0/admin/basic-info.php:116 msgid "HTML" msgstr "" #: profile-builder-2.0/admin/basic-info.php:162 #: profile-builder-2.0/modules/modules.php:117 msgid "Repeater Fields" msgstr "" #: profile-builder-2.0/admin/basic-info.php:163 msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role." msgstr "" #: profile-builder-2.0/admin/general-settings.php:59 msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Show Currency Symbol" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Whether the currency symbol should be displayed after the currency name in the select option." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Show Post Type" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Posts from what post type will be displayed in the select." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:145 msgid "Allowable Values" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:145 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." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Error Message" msgstr "Feilmelding" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Set a custom error message that will be displayed to the user." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Time Format" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Specify the time format." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Google Maps API Key" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Enter your Google Maps API key (
            Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "Default Latitude" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "The latitude at which the map should be displayed when no pins are attached." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "Default Longitude" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "The longitude at which the map should be displayed when no pins are attached." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Default Zoom Level" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "Map Height" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "The height of the map." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "HTML Content" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "Add your HTML (or text) content" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Phone Format" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces." msgstr "" "\n" "Du kan bruke: # for tall, parenteser (), - tegn, + tegn, punktum. og mellomrom." #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Eg. (###) ###-####" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Empty field won't check for correct phone number." msgstr "Tomt felt vil ikke se etter riktig telefonnummer." #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Heading Tag" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Change heading field size on front-end forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min Number Value" msgstr "Min tallverdi" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "Minimum antall tillatte verdi (0 for å tillate bare positive tall)" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Leave it empty for no min value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max Number Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Leave it empty for no max value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Number Step Value" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 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)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Leave it empty for no restriction" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:564 msgid "Albania Lek" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:565 msgid "Afghanistan Afghani" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:566 msgid "Argentina Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:567 msgid "Aruba Guilder" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:568 msgid "Australia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:569 msgid "Azerbaijan New Manat" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:570 msgid "Bahamas Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:571 msgid "Barbados Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:572 msgid "Bangladeshi taka" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:573 msgid "Belarus Ruble" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:574 msgid "Belize Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:575 msgid "Bermuda Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:576 msgid "Bolivia Boliviano" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:577 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:578 msgid "Botswana Pula" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:579 msgid "Bulgaria Lev" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:580 msgid "Brazil Real" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:581 msgid "Brunei Darussalam Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:582 msgid "Cambodia Riel" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:583 msgid "Canada Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:584 msgid "Cayman Islands Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:585 msgid "Chile Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:586 msgid "China Yuan Renminbi" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:587 msgid "Colombia Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:588 msgid "Costa Rica Colon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:589 msgid "Croatia Kuna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:590 msgid "Cuba Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:591 msgid "Czech Republic Koruna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:592 msgid "Denmark Krone" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:593 msgid "Dominican Republic Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:594 msgid "East Caribbean Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:595 msgid "Egypt Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:596 msgid "El Salvador Colon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:597 msgid "Estonia Kroon" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:598 msgid "Euro" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:599 msgid "Falkland Islands (Malvinas) Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:600 msgid "Fiji Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:601 msgid "Ghana Cedis" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:602 msgid "Gibraltar Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:603 msgid "Guatemala Quetzal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:604 msgid "Guernsey Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:605 msgid "Guyana Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:606 msgid "Honduras Lempira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:607 msgid "Hong Kong Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:608 msgid "Hungary Forint" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:609 msgid "Iceland Krona" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:610 msgid "India Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:611 msgid "Indonesia Rupiah" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:612 msgid "Iran Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:613 msgid "Isle of Man Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:614 msgid "Israel Shekel" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:615 msgid "Jamaica Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:616 msgid "Japan Yen" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:617 msgid "Jersey Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:618 msgid "Kazakhstan Tenge" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:619 msgid "Korea (North) Won" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:620 msgid "Korea (South) Won" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:621 msgid "Kyrgyzstan Som" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:622 msgid "Laos Kip" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:623 msgid "Latvia Lat" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:624 msgid "Lebanon Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:625 msgid "Liberia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:626 msgid "Lithuania Litas" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:627 msgid "Macedonia Denar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:628 msgid "Malaysia Ringgit" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:629 msgid "Mauritius Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:630 msgid "Mexico Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:631 msgid "Mongolia Tughrik" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:632 msgid "Mozambique Metical" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:633 msgid "Namibia Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:634 msgid "Nepal Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:635 msgid "Netherlands Antilles Guilder" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:636 msgid "New Zealand Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:637 msgid "Nicaragua Cordoba" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:638 msgid "Nigeria Naira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:639 msgid "Norway Krone" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:640 msgid "Oman Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:641 msgid "Pakistan Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:642 msgid "Panama Balboa" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:643 msgid "Paraguay Guarani" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:644 msgid "Peru Nuevo Sol" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:645 msgid "Philippines Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:646 msgid "Poland Zloty" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:647 msgid "Qatar Riyal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:648 msgid "Romania New Leu" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:649 msgid "Russia Ruble" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:650 msgid "Saint Helena Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:651 msgid "Saudi Arabia Riyal" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:652 msgid "Serbia Dinar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:653 msgid "Seychelles Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:654 msgid "Singapore Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:655 msgid "Solomon Islands Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:656 msgid "Somalia Shilling" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:657 msgid "South Africa Rand" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:658 msgid "Sri Lanka Rupee" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:659 msgid "Sweden Krona" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:660 msgid "Switzerland Franc" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:661 msgid "Suriname Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:662 msgid "Syria Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:663 msgid "Taiwan New Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:664 msgid "Thailand Baht" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:665 msgid "Trinidad and Tobago Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:666 #: profile-builder-2.0/admin/manage-fields.php:667 msgid "Turkey Lira" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:668 msgid "Tuvalu Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:669 msgid "Ukraine Hryvna" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:670 msgid "United Kingdom Pound" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:671 msgid "Uganda Shilling" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:672 msgid "US Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:673 msgid "Uruguay Peso" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:674 msgid "Uzbekistan Som" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:675 msgid "Venezuela Bolivar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:676 msgid "Viet Nam Dong" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:677 msgid "Yemen Rial" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:678 msgid "Zimbabwe Dollar" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1097 msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1314 msgid "Search Location" msgstr "" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754 msgid "You are not allowed to do this." msgstr "Du har ikke lov til å gjøre dette." #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460 msgid "Search Users" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78 msgid "Conditional Logic" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79 msgid "Conditional Rules" msgstr "" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448 msgid "This field has conditional logic enabled." msgstr "" #: profile-builder-2.0/features/functions.php:685 msgid "Incorrect phone number" msgstr "Feil telefonnummer" #: profile-builder-2.0/front-end/class-formbuilder.php:124 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." msgstr "" #: profile-builder-2.0/front-end/extra-fields/map/map.php:46 #: profile-builder-2.0/front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "" #: profile-builder-2.0/front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "" #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bolivia, __( Plurinational State of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bonaire, __( Sint Eustatius and Saba" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brunei Darussalam" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cabo Verde" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cocos (Keeling) Islands" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo, __( the Democratic Republic of the" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cote dIvoire" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Falkland Islands (Malvinas)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Holy See (Vatican City State)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iran, __( Islamic Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Democratic Peoples Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lao Peoples Democratic Republic" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macedonia, __( the former Yugoslav Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Micronesia, __( Federated States of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Moldova, __( Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palestine, __( State of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Russian Federation" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Helena, __( Ascension and Tristan da Cunha" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Martin (French part)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sint Maarten (Dutch part)" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Syrian Arab Republic" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Taiwan, __( Province of China" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tanzania, __( United Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Timor-Leste" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Venezuela, __( Bolivarian Republic of" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Viet Nam" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( British" msgstr "" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( U.S." msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:186 msgid "User Fields Tags" msgstr "" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479 msgid "The users selected password at signup" msgstr "" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278 msgid "[{{site_name}}] Notice of Email Change" msgstr "" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289 msgid "Changed Email Address Notification" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Limit" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Enable limit to the number of fields to be generated by users in front end forms " msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "General Limit" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "Limit reached message" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The maximum number of fields has been reached." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The popup message to display when the limit of repeater groups is reached." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Limit per Role" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Leave 0 for unlimited." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Repeated field group" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Manage field or group of fields that will be repeatable." msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259 msgid "Edit field group" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260 msgid "Repeatable fields saved!" msgstr "" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277 #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326 msgid "Please enter a unique field title.\n" msgstr "" #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267 msgid "Are you sure you want to delete this?" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:192 msgid "Sort Tags" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:201 #: profile-builder-2.0/modules/user-listing/userlisting.php:2308 msgid "Faceted Menus" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:202 msgid "User Count" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1553 msgid "Show All" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1710 msgid "No options available" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:1861 msgid "Remove All Filters" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Label" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Choose the facet name that appears on the frontend" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Facet Type" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Choose the facet menu type" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Facet Meta" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Choose the meta field for the facet menu" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Behaviour" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Narrow the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Expand the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Choose how multiple selections affect the results" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Visible choices" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Search Fields" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Choose the fields in which the Search Field will look in" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2330 msgid "Search Settings" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:8 #: pb-add-on-woocommerce/shipping-fields.php:8 msgid "Company Name" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:9 #: pb-add-on-woocommerce/shipping-fields.php:9 msgid "Address" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:5 #: pb-add-on-woocommerce/shipping-fields.php:5 msgid "Country" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:11 #: pb-add-on-woocommerce/shipping-fields.php:11 msgid "Town / City" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:12 #: pb-add-on-woocommerce/shipping-fields.php:12 msgid "State / County" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:13 #: pb-add-on-woocommerce/shipping-fields.php:13 msgid "Postcode / Zip" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:14 msgid "Email Address" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:15 msgid "Phone" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:278 msgid "Ship to a different address?" msgstr "" #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437 msgid "Billing Address" msgstr "" #: pb-add-on-woocommerce/index.php:169 msgid "Displays customer billing fields in front-end. " msgstr "" #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438 msgid "Shipping Address" msgstr "" #: pb-add-on-woocommerce/index.php:173 msgid "Displays customer shipping fields in front-end. " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Display on WooCommerce Checkout" msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Whether the field should be added to the WooCommerce checkout form or not" msgstr "" #: pb-add-on-woocommerce/index.php:541 msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:23 #: pb-add-on-woocommerce/woosync-page.php:70 msgid "WooCommerce Sync" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:76 msgid "Choose Register form to display on My Account page:" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:81 msgid "Default Register" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:103 msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce.
            This will also add the Profile Builder Login form to MyAccount page." msgstr "" #: pb-add-on-woocommerce/woosync-page.php:110 msgid "Choose Edit Profile form to display on My Account page:" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:115 msgid "Default Edit Profile" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:137 msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce." msgstr "" #: profile-builder-2.0/admin/add-ons.php:190 msgid "Recommended Plugins" msgstr "" #: profile-builder-2.0/admin/add-ons.php:219 #: profile-builder-2.0/admin/pms-cross-promotion.php:102 msgid "Free" msgstr "" #: profile-builder-2.0/admin/add-ons.php:221 msgid "Accept user payments, create subscription plans and restrict content on your membership site." msgstr "" #: profile-builder-2.0/admin/add-ons.php:222 #: profile-builder-2.0/admin/pms-cross-promotion.php:105 msgid "More Details" msgstr "" #: profile-builder-2.0/admin/add-ons.php:240 #: profile-builder-2.0/admin/pms-cross-promotion.php:88 #: profile-builder-2.0/admin/pms-cross-promotion.php:123 #: profile-builder-2.0/admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "" #: profile-builder-2.0/admin/add-ons.php:242 #: profile-builder-2.0/admin/pms-cross-promotion.php:87 #: profile-builder-2.0/admin/pms-cross-promotion.php:125 #: profile-builder-2.0/admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "" #: profile-builder-2.0/admin/add-ons.php:256 #: profile-builder-2.0/admin/pms-cross-promotion.php:146 msgid "Could not install plugin. Retry or install manually." msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:37 msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:104 msgid "Accept user payments, create subscription plans and restrict content on your website." msgstr "" #: profile-builder-2.0/admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401 msgid "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45 msgid "After Login" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46 msgid "After Logout" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47 msgid "After Registration" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48 msgid "After Edit Profile" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Successful Email Confirmation" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Successful Password Reset" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55 msgid "User ID" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61 msgid "User ID or Username" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "User ID / Username" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "Please select and enter the ID or username of your user." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131 msgid "Redirect Type" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Redirect URL" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241 msgid "Individual User Redirects" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84 msgid "... Choose" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 msgid "Select a user role." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242 msgid "User Role based Redirects" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243 msgid "Global Redirects" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133 msgid "Login ( wp_login.php )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134 msgid "Register ( wp-login.php?action=register )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145 msgid "Redirect Default WordPress Forms and Pages" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157 msgid "How does this work?" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 msgid "
            User Role
            Redirect
            URL
            " msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "
            Redirect
            URL
            " msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236 msgid "These redirects happen after a successful action, like registration or after a successful login." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238 msgid "Which redirect happens depends on the following priority:" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247 msgid "Redirect Default WordPress forms and pages" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248 msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250 msgid "Available tags for dynamic URLs" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251 msgid "You use the following tags in your URLs to redirect users to various pages." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253 msgid "generates a url of the current website homepage." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254 msgid "in WordPress the site url can be different then the home url" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255 msgid "the ID of the user" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256 msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257 msgid "the URL of the previously visited page" msgstr "" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352 msgid "You can't add duplicate redirects!" msgstr "" #: profile-builder-2.0/admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "" #: profile-builder-2.0/admin/basic-info.php:37 msgid "Friction-less login using %s shortcode or a widget." msgstr "" #: profile-builder-2.0/admin/basic-info.php:41 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "" #: profile-builder-2.0/admin/basic-info.php:45 msgid "Straight forward edit profile forms using %s shortcode." msgstr "" #: profile-builder-2.0/admin/basic-info.php:58 msgid "Allow users to recover their password in the front-end using the %s." msgstr "" #: profile-builder-2.0/admin/basic-info.php:140 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." msgstr "" #: profile-builder-2.0/admin/general-settings.php:115 msgid "\"Admin Approval\" on User Role:" msgstr "" #: profile-builder-2.0/admin/general-settings.php:134 msgid "Select on what user roles to activate Admin Approval." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Display on PB forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Login" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Register" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Recover Password" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Display on default WP forms" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Login" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Register" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Recover Password" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default option of the field" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:282 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Afghanistan" msgstr "Afghanistan" #: profile-builder-2.0/admin/manage-fields.php:283 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aland Islands" msgstr "Aland Islands" #: profile-builder-2.0/admin/manage-fields.php:284 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Albania" msgstr "Albania" #: profile-builder-2.0/admin/manage-fields.php:285 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Algeria" msgstr "Algeria" #: profile-builder-2.0/admin/manage-fields.php:286 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "American Samoa" msgstr "American Samoa" #: profile-builder-2.0/admin/manage-fields.php:287 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Andorra" msgstr "Andorra" #: profile-builder-2.0/admin/manage-fields.php:288 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Angola" msgstr "Angola" #: profile-builder-2.0/admin/manage-fields.php:289 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Anguilla" msgstr "Anguilla" #: profile-builder-2.0/admin/manage-fields.php:290 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antarctica" msgstr "Antarctica" #: profile-builder-2.0/admin/manage-fields.php:291 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" #: profile-builder-2.0/admin/manage-fields.php:292 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Argentina" msgstr "Argentina" #: profile-builder-2.0/admin/manage-fields.php:293 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Armenia" msgstr "Armenia" #: profile-builder-2.0/admin/manage-fields.php:294 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aruba" msgstr "Aruba" #: profile-builder-2.0/admin/manage-fields.php:295 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Australia" msgstr "Australia" #: profile-builder-2.0/admin/manage-fields.php:296 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Austria" msgstr "Austria" #: profile-builder-2.0/admin/manage-fields.php:297 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Azerbaijan" msgstr "Azerbaijan" #: profile-builder-2.0/admin/manage-fields.php:298 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahamas" msgstr "Bahamas" #: profile-builder-2.0/admin/manage-fields.php:299 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahrain" msgstr "Bahrain" #: profile-builder-2.0/admin/manage-fields.php:300 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bangladesh" msgstr "Bangladesh" #: profile-builder-2.0/admin/manage-fields.php:301 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Barbados" msgstr "Barbados" #: profile-builder-2.0/admin/manage-fields.php:302 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belarus" msgstr "Belarus" #: profile-builder-2.0/admin/manage-fields.php:303 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belgium" msgstr "Belgium" #: profile-builder-2.0/admin/manage-fields.php:304 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belize" msgstr "Belize" #: profile-builder-2.0/admin/manage-fields.php:305 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Benin" msgstr "Benin" #: profile-builder-2.0/admin/manage-fields.php:306 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bermuda" msgstr "Bermuda" #: profile-builder-2.0/admin/manage-fields.php:307 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bhutan" msgstr "Bhutan" #: profile-builder-2.0/admin/manage-fields.php:308 msgid "Bolivia" msgstr "Bolivia" #: profile-builder-2.0/admin/manage-fields.php:309 msgid "Bonaire, Saint Eustatius and Saba" msgstr "Bonaire, Saint Eustatius and Saba" #: profile-builder-2.0/admin/manage-fields.php:310 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bosnia and Herzegovina" msgstr "Bosnia and Herzegovina" #: profile-builder-2.0/admin/manage-fields.php:311 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Botswana" msgstr "Botswana" #: profile-builder-2.0/admin/manage-fields.php:312 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bouvet Island" msgstr "Bouvet Island" #: profile-builder-2.0/admin/manage-fields.php:313 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brazil" msgstr "Brazil" #: profile-builder-2.0/admin/manage-fields.php:314 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: profile-builder-2.0/admin/manage-fields.php:315 msgid "British Virgin Islands" msgstr "British Virgin Islands" #: profile-builder-2.0/admin/manage-fields.php:316 msgid "Brunei" msgstr "Brunei" #: profile-builder-2.0/admin/manage-fields.php:317 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bulgaria" msgstr "Bulgaria" #: profile-builder-2.0/admin/manage-fields.php:318 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burkina Faso" msgstr "Burkina Faso" #: profile-builder-2.0/admin/manage-fields.php:319 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burundi" msgstr "Burundi" #: profile-builder-2.0/admin/manage-fields.php:320 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cambodia" msgstr "Cambodia" #: profile-builder-2.0/admin/manage-fields.php:321 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cameroon" msgstr "Cameroon" #: profile-builder-2.0/admin/manage-fields.php:322 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Canada" msgstr "Canada" #: profile-builder-2.0/admin/manage-fields.php:323 msgid "Cape Verde" msgstr "Cape Verde" #: profile-builder-2.0/admin/manage-fields.php:324 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cayman Islands" msgstr "Cayman Islands" #: profile-builder-2.0/admin/manage-fields.php:325 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Central African Republic" msgstr "Central African Republic" #: profile-builder-2.0/admin/manage-fields.php:326 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chad" msgstr "Chad" #: profile-builder-2.0/admin/manage-fields.php:327 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chile" msgstr "Chile" #: profile-builder-2.0/admin/manage-fields.php:328 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "China" msgstr "China" #: profile-builder-2.0/admin/manage-fields.php:329 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Christmas Island" msgstr "Christmas Island" #: profile-builder-2.0/admin/manage-fields.php:330 msgid "Cocos Islands" msgstr "Cocos Islands" #: profile-builder-2.0/admin/manage-fields.php:331 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Colombia" msgstr "Colombia" #: profile-builder-2.0/admin/manage-fields.php:332 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Comoros" msgstr "Comoros" #: profile-builder-2.0/admin/manage-fields.php:333 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cook Islands" msgstr "Cook Islands" #: profile-builder-2.0/admin/manage-fields.php:334 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Costa Rica" msgstr "Costa Rica" #: profile-builder-2.0/admin/manage-fields.php:335 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Croatia" msgstr "Croatia" #: profile-builder-2.0/admin/manage-fields.php:336 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cuba" msgstr "Cuba" #: profile-builder-2.0/admin/manage-fields.php:337 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Curacao" msgstr "Curacao" #: profile-builder-2.0/admin/manage-fields.php:338 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cyprus" msgstr "Cyprus" #: profile-builder-2.0/admin/manage-fields.php:339 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Czech Republic" msgstr "Czech Republic" #: profile-builder-2.0/admin/manage-fields.php:340 msgid "Democratic Republic of the Congo" msgstr "Democratic Republic of the Congo" #: profile-builder-2.0/admin/manage-fields.php:341 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Denmark" msgstr "Denmark" #: profile-builder-2.0/admin/manage-fields.php:342 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Djibouti" msgstr "Djibouti" #: profile-builder-2.0/admin/manage-fields.php:343 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominica" msgstr "Dominica" #: profile-builder-2.0/admin/manage-fields.php:344 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominican Republic" msgstr "Dominican Republic" #: profile-builder-2.0/admin/manage-fields.php:345 msgid "East Timor" msgstr "East Timor" #: profile-builder-2.0/admin/manage-fields.php:346 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ecuador" msgstr "Ecuador" #: profile-builder-2.0/admin/manage-fields.php:347 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Egypt" msgstr "Egypt" #: profile-builder-2.0/admin/manage-fields.php:348 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "El Salvador" msgstr "El Salvador" #: profile-builder-2.0/admin/manage-fields.php:349 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: profile-builder-2.0/admin/manage-fields.php:350 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Eritrea" msgstr "Eritrea" #: profile-builder-2.0/admin/manage-fields.php:351 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Estonia" msgstr "Estonia" #: profile-builder-2.0/admin/manage-fields.php:352 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ethiopia" msgstr "Ethiopia" #: profile-builder-2.0/admin/manage-fields.php:353 msgid "Falkland Islands" msgstr "Falkland Islands" #: profile-builder-2.0/admin/manage-fields.php:354 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Faroe Islands" msgstr "Faroe Islands" #: profile-builder-2.0/admin/manage-fields.php:355 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Fiji" msgstr "Fiji" #: profile-builder-2.0/admin/manage-fields.php:356 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Finland" msgstr "Finland" #: profile-builder-2.0/admin/manage-fields.php:357 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "France" msgstr "France" #: profile-builder-2.0/admin/manage-fields.php:358 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Guiana" msgstr "French Guiana" #: profile-builder-2.0/admin/manage-fields.php:359 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Polynesia" msgstr "French Polynesia" #: profile-builder-2.0/admin/manage-fields.php:360 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Southern Territories" msgstr "French Southern Territories" #: profile-builder-2.0/admin/manage-fields.php:361 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gabon" msgstr "Gabon" #: profile-builder-2.0/admin/manage-fields.php:362 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gambia" msgstr "Gambia" #: profile-builder-2.0/admin/manage-fields.php:363 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Georgia" msgstr "Georgia" #: profile-builder-2.0/admin/manage-fields.php:364 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Germany" msgstr "Germany" #: profile-builder-2.0/admin/manage-fields.php:365 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ghana" msgstr "Ghana" #: profile-builder-2.0/admin/manage-fields.php:366 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gibraltar" msgstr "Gibraltar" #: profile-builder-2.0/admin/manage-fields.php:367 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greece" msgstr "Greece" #: profile-builder-2.0/admin/manage-fields.php:368 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greenland" msgstr "Greenland" #: profile-builder-2.0/admin/manage-fields.php:369 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Grenada" msgstr "Grenada" #: profile-builder-2.0/admin/manage-fields.php:370 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guadeloupe" msgstr "Guadeloupe" #: profile-builder-2.0/admin/manage-fields.php:371 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guam" msgstr "Guam" #: profile-builder-2.0/admin/manage-fields.php:372 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guatemala" msgstr "Guatemala" #: profile-builder-2.0/admin/manage-fields.php:373 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guernsey" msgstr "Guernsey" #: profile-builder-2.0/admin/manage-fields.php:374 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea" msgstr "Guinea" #: profile-builder-2.0/admin/manage-fields.php:375 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: profile-builder-2.0/admin/manage-fields.php:376 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guyana" msgstr "Guyana" #: profile-builder-2.0/admin/manage-fields.php:377 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Haiti" msgstr "Haiti" #: profile-builder-2.0/admin/manage-fields.php:378 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Heard Island and McDonald Islands" msgstr "Heard Island and McDonald Islands" #: profile-builder-2.0/admin/manage-fields.php:379 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Honduras" msgstr "Honduras" #: profile-builder-2.0/admin/manage-fields.php:380 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hong Kong" msgstr "Hong Kong" #: profile-builder-2.0/admin/manage-fields.php:381 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hungary" msgstr "Hungary" #: profile-builder-2.0/admin/manage-fields.php:382 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iceland" msgstr "Iceland" #: profile-builder-2.0/admin/manage-fields.php:383 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "India" msgstr "India" #: profile-builder-2.0/admin/manage-fields.php:384 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Indonesia" msgstr "Indonesia" #: profile-builder-2.0/admin/manage-fields.php:385 msgid "Iran" msgstr "Iran" #: profile-builder-2.0/admin/manage-fields.php:386 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iraq" msgstr "Iraq" #: profile-builder-2.0/admin/manage-fields.php:387 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ireland" msgstr "Ireland" #: profile-builder-2.0/admin/manage-fields.php:388 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Isle of Man" msgstr "Isle of Man" #: profile-builder-2.0/admin/manage-fields.php:389 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Israel" msgstr "Israel" #: profile-builder-2.0/admin/manage-fields.php:390 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Italy" msgstr "Italy" #: profile-builder-2.0/admin/manage-fields.php:391 msgid "Ivory Coast" msgstr "Ivory Coast" #: profile-builder-2.0/admin/manage-fields.php:392 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jamaica" msgstr "Jamaica" #: profile-builder-2.0/admin/manage-fields.php:393 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Japan" msgstr "Japan" #: profile-builder-2.0/admin/manage-fields.php:394 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jersey" msgstr "Jersey" #: profile-builder-2.0/admin/manage-fields.php:395 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jordan" msgstr "Jordan" #: profile-builder-2.0/admin/manage-fields.php:396 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kazakhstan" msgstr "Kazakhstan" #: profile-builder-2.0/admin/manage-fields.php:397 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kenya" msgstr "Kenya" #: profile-builder-2.0/admin/manage-fields.php:398 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kiribati" msgstr "Kiribati" #: profile-builder-2.0/admin/manage-fields.php:399 msgid "Kosovo" msgstr "Kosovo" #: profile-builder-2.0/admin/manage-fields.php:400 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kuwait" msgstr "Kuwait" #: profile-builder-2.0/admin/manage-fields.php:401 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: profile-builder-2.0/admin/manage-fields.php:402 msgid "Laos" msgstr "Laos" #: profile-builder-2.0/admin/manage-fields.php:403 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Latvia" msgstr "Latvia" #: profile-builder-2.0/admin/manage-fields.php:404 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lebanon" msgstr "Lebanon" #: profile-builder-2.0/admin/manage-fields.php:405 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lesotho" msgstr "Lesotho" #: profile-builder-2.0/admin/manage-fields.php:406 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liberia" msgstr "Liberia" #: profile-builder-2.0/admin/manage-fields.php:407 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Libya" msgstr "Libya" #: profile-builder-2.0/admin/manage-fields.php:408 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liechtenstein" msgstr "Liechtenstein" #: profile-builder-2.0/admin/manage-fields.php:409 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lithuania" msgstr "Lithuania" #: profile-builder-2.0/admin/manage-fields.php:410 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Luxembourg" msgstr "Luxembourg" #: profile-builder-2.0/admin/manage-fields.php:411 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macao" msgstr "Macao" #: profile-builder-2.0/admin/manage-fields.php:412 msgid "Macedonia" msgstr "Macedonia" #: profile-builder-2.0/admin/manage-fields.php:413 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Madagascar" msgstr "Madagascar" #: profile-builder-2.0/admin/manage-fields.php:414 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malawi" msgstr "Malawi" #: profile-builder-2.0/admin/manage-fields.php:415 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malaysia" msgstr "Malaysia" #: profile-builder-2.0/admin/manage-fields.php:416 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Maldives" msgstr "Maldives" #: profile-builder-2.0/admin/manage-fields.php:417 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mali" msgstr "Mali" #: profile-builder-2.0/admin/manage-fields.php:418 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malta" msgstr "Malta" #: profile-builder-2.0/admin/manage-fields.php:419 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Marshall Islands" msgstr "Marshall Islands" #: profile-builder-2.0/admin/manage-fields.php:420 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Martinique" msgstr "Martinique" #: profile-builder-2.0/admin/manage-fields.php:421 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritania" msgstr "Mauritania" #: profile-builder-2.0/admin/manage-fields.php:422 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritius" msgstr "Mauritius" #: profile-builder-2.0/admin/manage-fields.php:423 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mayotte" msgstr "Mayotte" #: profile-builder-2.0/admin/manage-fields.php:424 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mexico" msgstr "Mexico" #: profile-builder-2.0/admin/manage-fields.php:425 msgid "Micronesia" msgstr "Micronesia" #: profile-builder-2.0/admin/manage-fields.php:426 msgid "Moldova" msgstr "Moldova" #: profile-builder-2.0/admin/manage-fields.php:427 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Monaco" msgstr "Monaco" #: profile-builder-2.0/admin/manage-fields.php:428 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mongolia" msgstr "Mongolia" #: profile-builder-2.0/admin/manage-fields.php:429 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montenegro" msgstr "Montenegro" #: profile-builder-2.0/admin/manage-fields.php:430 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montserrat" msgstr "Montserrat" #: profile-builder-2.0/admin/manage-fields.php:431 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Morocco" msgstr "Morocco" #: profile-builder-2.0/admin/manage-fields.php:432 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mozambique" msgstr "Mozambique" #: profile-builder-2.0/admin/manage-fields.php:433 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Myanmar" msgstr "Myanmar" #: profile-builder-2.0/admin/manage-fields.php:434 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Namibia" msgstr "Namibia" #: profile-builder-2.0/admin/manage-fields.php:435 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nauru" msgstr "Nauru" #: profile-builder-2.0/admin/manage-fields.php:436 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nepal" msgstr "Nepal" #: profile-builder-2.0/admin/manage-fields.php:437 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Netherlands" msgstr "Netherlands" #: profile-builder-2.0/admin/manage-fields.php:438 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Caledonia" msgstr "New Caledonia" #: profile-builder-2.0/admin/manage-fields.php:439 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Zealand" msgstr "New Zealand" #: profile-builder-2.0/admin/manage-fields.php:440 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nicaragua" msgstr "Nicaragua" #: profile-builder-2.0/admin/manage-fields.php:441 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niger" msgstr "Niger" #: profile-builder-2.0/admin/manage-fields.php:442 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nigeria" msgstr "Nigeria" #: profile-builder-2.0/admin/manage-fields.php:443 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niue" msgstr "Niue" #: profile-builder-2.0/admin/manage-fields.php:444 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norfolk Island" msgstr "Norfolk Island" #: profile-builder-2.0/admin/manage-fields.php:445 msgid "North Korea" msgstr "North Korea" #: profile-builder-2.0/admin/manage-fields.php:446 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: profile-builder-2.0/admin/manage-fields.php:447 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norway" msgstr "Norway" #: profile-builder-2.0/admin/manage-fields.php:448 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Oman" msgstr "Oman" #: profile-builder-2.0/admin/manage-fields.php:449 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pakistan" msgstr "Pakistan" #: profile-builder-2.0/admin/manage-fields.php:450 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palau" msgstr "Palau" #: profile-builder-2.0/admin/manage-fields.php:451 msgid "Palestinian Territory" msgstr "Palestinian Territory" #: profile-builder-2.0/admin/manage-fields.php:452 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Panama" msgstr "Panama" #: profile-builder-2.0/admin/manage-fields.php:453 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: profile-builder-2.0/admin/manage-fields.php:454 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Paraguay" msgstr "Paraguay" #: profile-builder-2.0/admin/manage-fields.php:455 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Peru" msgstr "Peru" #: profile-builder-2.0/admin/manage-fields.php:456 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Philippines" msgstr "Philippines" #: profile-builder-2.0/admin/manage-fields.php:457 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pitcairn" msgstr "Pitcairn" #: profile-builder-2.0/admin/manage-fields.php:458 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Poland" msgstr "Poland" #: profile-builder-2.0/admin/manage-fields.php:459 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Portugal" msgstr "Portugal" #: profile-builder-2.0/admin/manage-fields.php:460 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Puerto Rico" msgstr "Puerto Rico" #: profile-builder-2.0/admin/manage-fields.php:461 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Qatar" msgstr "Qatar" #: profile-builder-2.0/admin/manage-fields.php:462 msgid "Republic of the Congo" msgstr "Republic of the Congo" #: profile-builder-2.0/admin/manage-fields.php:463 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Reunion" msgstr "Reunion" #: profile-builder-2.0/admin/manage-fields.php:464 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Romania" msgstr "Romania" #: profile-builder-2.0/admin/manage-fields.php:465 msgid "Russia" msgstr "Russia" #: profile-builder-2.0/admin/manage-fields.php:466 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Rwanda" msgstr "Rwanda" #: profile-builder-2.0/admin/manage-fields.php:467 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: profile-builder-2.0/admin/manage-fields.php:468 msgid "Saint Helena" msgstr "Saint Helena" #: profile-builder-2.0/admin/manage-fields.php:469 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts and Nevis" #: profile-builder-2.0/admin/manage-fields.php:470 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Lucia" msgstr "Saint Lucia" #: profile-builder-2.0/admin/manage-fields.php:471 msgid "Saint Martin" msgstr "Saint Martin" #: profile-builder-2.0/admin/manage-fields.php:472 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre and Miquelon" #: profile-builder-2.0/admin/manage-fields.php:473 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent and the Grenadines" #: profile-builder-2.0/admin/manage-fields.php:474 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Samoa" msgstr "Samoa" #: profile-builder-2.0/admin/manage-fields.php:475 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "San Marino" msgstr "San Marino" #: profile-builder-2.0/admin/manage-fields.php:476 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sao Tome and Principe" msgstr "Sao Tome and Principe" #: profile-builder-2.0/admin/manage-fields.php:477 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: profile-builder-2.0/admin/manage-fields.php:478 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Senegal" msgstr "Senegal" #: profile-builder-2.0/admin/manage-fields.php:479 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Serbia" msgstr "Serbia" #: profile-builder-2.0/admin/manage-fields.php:480 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Seychelles" msgstr "Seychelles" #: profile-builder-2.0/admin/manage-fields.php:481 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sierra Leone" msgstr "Sierra Leone" #: profile-builder-2.0/admin/manage-fields.php:482 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Singapore" msgstr "Singapore" #: profile-builder-2.0/admin/manage-fields.php:483 msgid "Sint Maarten" msgstr "Sint Maarten" #: profile-builder-2.0/admin/manage-fields.php:484 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovakia" msgstr "Slovakia" #: profile-builder-2.0/admin/manage-fields.php:485 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovenia" msgstr "Slovenia" #: profile-builder-2.0/admin/manage-fields.php:486 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Solomon Islands" msgstr "Solomon Islands" #: profile-builder-2.0/admin/manage-fields.php:487 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Somalia" msgstr "Somalia" #: profile-builder-2.0/admin/manage-fields.php:488 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Africa" msgstr "South Africa" #: profile-builder-2.0/admin/manage-fields.php:489 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Georgia and the South Sandwich Islands" msgstr "South Georgia and the South Sandwich Islands" #: profile-builder-2.0/admin/manage-fields.php:490 msgid "South Korea" msgstr "South Korea" #: profile-builder-2.0/admin/manage-fields.php:491 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Sudan" msgstr "South Sudan" #: profile-builder-2.0/admin/manage-fields.php:492 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Spain" msgstr "Spain" #: profile-builder-2.0/admin/manage-fields.php:493 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sri Lanka" msgstr "Sri Lanka" #: profile-builder-2.0/admin/manage-fields.php:494 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sudan" msgstr "Sudan" #: profile-builder-2.0/admin/manage-fields.php:495 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Suriname" msgstr "Suriname" #: profile-builder-2.0/admin/manage-fields.php:496 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Svalbard and Jan Mayen" msgstr "Svalbard and Jan Mayen" #: profile-builder-2.0/admin/manage-fields.php:497 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Swaziland" msgstr "Swaziland" #: profile-builder-2.0/admin/manage-fields.php:498 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sweden" msgstr "Sweden" #: profile-builder-2.0/admin/manage-fields.php:499 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Switzerland" msgstr "Switzerland" #: profile-builder-2.0/admin/manage-fields.php:500 msgid "Syria" msgstr "Syria" #: profile-builder-2.0/admin/manage-fields.php:501 msgid "Taiwan" msgstr "Taiwan" #: profile-builder-2.0/admin/manage-fields.php:502 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tajikistan" msgstr "Tajikistan" #: profile-builder-2.0/admin/manage-fields.php:503 msgid "Tanzania" msgstr "Tanzania" #: profile-builder-2.0/admin/manage-fields.php:504 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Thailand" msgstr "Thailand" #: profile-builder-2.0/admin/manage-fields.php:505 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Togo" msgstr "Togo" #: profile-builder-2.0/admin/manage-fields.php:506 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tokelau" msgstr "Tokelau" #: profile-builder-2.0/admin/manage-fields.php:507 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tonga" msgstr "Tonga" #: profile-builder-2.0/admin/manage-fields.php:508 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Trinidad and Tobago" msgstr "Trinidad and Tobago" #: profile-builder-2.0/admin/manage-fields.php:509 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tunisia" msgstr "Tunisia" #: profile-builder-2.0/admin/manage-fields.php:510 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkey" msgstr "Turkey" #: profile-builder-2.0/admin/manage-fields.php:511 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkmenistan" msgstr "Turkmenistan" #: profile-builder-2.0/admin/manage-fields.php:512 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Islands" #: profile-builder-2.0/admin/manage-fields.php:513 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tuvalu" msgstr "Tuvalu" #: profile-builder-2.0/admin/manage-fields.php:514 msgid "U.S. Virgin Islands" msgstr "U.S. Virgin Islands" #: profile-builder-2.0/admin/manage-fields.php:515 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uganda" msgstr "Uganda" #: profile-builder-2.0/admin/manage-fields.php:516 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ukraine" msgstr "Ukraine" #: profile-builder-2.0/admin/manage-fields.php:517 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Arab Emirates" msgstr "United Arab Emirates" #: profile-builder-2.0/admin/manage-fields.php:518 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Kingdom" msgstr "United Kingdom" #: profile-builder-2.0/admin/manage-fields.php:519 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States" msgstr "United States" #: profile-builder-2.0/admin/manage-fields.php:520 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: profile-builder-2.0/admin/manage-fields.php:521 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uruguay" msgstr "Uruguay" #: profile-builder-2.0/admin/manage-fields.php:522 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uzbekistan" msgstr "Uzbekistan" #: profile-builder-2.0/admin/manage-fields.php:523 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Vanuatu" msgstr "Vanuatu" #: profile-builder-2.0/admin/manage-fields.php:524 msgid "Vatican" msgstr "Vatican" #: profile-builder-2.0/admin/manage-fields.php:525 msgid "Venezuela" msgstr "Venezuela" #: profile-builder-2.0/admin/manage-fields.php:526 msgid "Vietnam" msgstr "Vietnam" #: profile-builder-2.0/admin/manage-fields.php:527 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Wallis and Futuna" msgstr "Wallis and Futuna" #: profile-builder-2.0/admin/manage-fields.php:528 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Western Sahara" msgstr "Western Sahara" #: profile-builder-2.0/admin/manage-fields.php:529 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Yemen" msgstr "Yemen" #: profile-builder-2.0/admin/manage-fields.php:530 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zambia" msgstr "Zambia" #: profile-builder-2.0/admin/manage-fields.php:531 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zimbabwe" msgstr "Zimbabwe" #: profile-builder-2.0/admin/manage-fields.php:1219 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." msgstr "" #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237 msgid "Your account has to be confirmed by an administrator before you can log in." msgstr "" #: profile-builder-2.0/features/admin-approval/admin-approval.php:216 msgid "Your account has been successfully created!" msgstr "" #: profile-builder-2.0/features/functions.php:678 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458 msgid "Please enter a (valid) reCAPTCHA value" msgstr "" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 msgid "Click the BACK button on your browser, and try again." msgstr "" #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78 #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87 msgid "Sorry, you cannot upload this file type for this field." msgstr "" #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94 msgid "An error occurred, please try again later." msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:282 msgid "More" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:376 msgid "You do not have permission to view this user list." msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:389 msgid "You do not have the required user role to view this user list." msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2253 msgid "Ascending" msgstr "" #: profile-builder-2.0/modules/user-listing/userlisting.php:2254 msgid "Descending" msgstr "" #: profile-builder-2.0/admin/add-ons.php:148 #: profile-builder-2.0/admin/add-ons.php:248 #: profile-builder-2.0/admin/pms-cross-promotion.php:134 #: profile-builder-2.0/admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "Last ned nå" #: profile-builder-2.0/admin/admin-functions.php:200 msgid "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. " msgstr "Liker du %1$s ? I så fall: spre ordet og gi oss en rating WordPress.org. Jo flere fornøyde brukere vi har, jo flere features kan vi utvikle, flere bugs kan utraderes og alle får bedre support." #: profile-builder-2.0/admin/manage-fields.php:82 msgid "Choose one of the supported field types" msgstr "Velg en type felt" #: profile-builder-2.0/admin/manage-fields.php:84 msgid ". Extra Field Types are available in Hobbyist or PRO versions." msgstr ". Flere typer felt finnes i Hobbyist og PRO versjonen." #: profile-builder-2.0/admin/manage-fields.php:131 msgid "Site Key" msgstr "Site Key" #: profile-builder-2.0/admin/manage-fields.php:131 msgid "The site key from Google, www.google.com/recaptcha" msgstr "\"Site Key\" fra Google, www.google.com/recaptcha" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "Secret Key" msgstr "Secret Key" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "The secret key from Google, www.google.com/recaptcha" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1023 msgid "You must enter the site key\n" msgstr "Du må legge inn \"site key\"\n" #: profile-builder-2.0/admin/manage-fields.php:1025 msgid "You must enter the secret key\n" msgstr "Du må legge inn \"Secret Key\"\n" #: profile-builder-2.0/admin/add-ons.php:10 #: profile-builder-2.0/admin/add-ons.php:32 msgid "Add-Ons" msgstr "Tillegg" #: profile-builder-2.0/admin/add-ons.php:34 #: profile-builder-2.0/admin/add-ons.php:129 #: profile-builder-2.0/admin/add-ons.php:231 #: profile-builder-2.0/admin/pms-cross-promotion.php:78 #: profile-builder-2.0/admin/pms-cross-promotion.php:114 #: profile-builder-2.0/admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "Aktiver" #: profile-builder-2.0/admin/add-ons.php:36 #: profile-builder-2.0/admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "Nedlasting og installering..." #: profile-builder-2.0/admin/add-ons.php:37 #: profile-builder-2.0/admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "Nedlasting og installering..." #: profile-builder-2.0/admin/add-ons.php:39 msgid "Add-On is Active" msgstr "Add-On er aktiv" #: profile-builder-2.0/admin/add-ons.php:40 msgid "Add-On has been activated" msgstr "Tillegg er akivert" #: profile-builder-2.0/admin/add-ons.php:41 #: profile-builder-2.0/admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "Gjenta installering" #: profile-builder-2.0/admin/add-ons.php:43 #: profile-builder-2.0/admin/add-ons.php:140 msgid "Add-On is active" msgstr "Tillegg er aktiv" #: profile-builder-2.0/admin/add-ons.php:44 #: profile-builder-2.0/admin/add-ons.php:138 msgid "Add-On is inactive" msgstr "Add-On er innaktiv" #: profile-builder-2.0/admin/add-ons.php:46 #: profile-builder-2.0/admin/add-ons.php:133 #: profile-builder-2.0/admin/add-ons.php:235 #: profile-builder-2.0/admin/pms-cross-promotion.php:90 #: profile-builder-2.0/admin/pms-cross-promotion.php:118 #: profile-builder-2.0/admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "Deaktivert" #: profile-builder-2.0/admin/add-ons.php:47 msgid "Add-On has been deactivated." msgstr "Add-On er blitt deaktivert." #: profile-builder-2.0/admin/add-ons.php:59 msgid "Something went wrong, we could not connect to the server. Please try again later." msgstr "Noe gikk galt, vi kunne ikke koble til serveren. Vennligst forsøk igjen senere." #: profile-builder-2.0/admin/pms-cross-promotion.php:137 #: profile-builder-2.0/admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "Installer nå" #: profile-builder-2.0/admin/add-ons.php:153 #: profile-builder-2.0/admin/add-ons.php:251 #: profile-builder-2.0/admin/pms-cross-promotion.php:141 #: profile-builder-2.0/admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "Kompatibel med din versjon av Profile Builder." #: profile-builder-2.0/admin/add-ons.php:162 msgid "Upgrade Profile Builder" msgstr "Oppgrader Profile Builder" #: profile-builder-2.0/admin/add-ons.php:163 msgid "Not compatible with Profile Builder" msgstr "Ikke kompatibel med Profile Builder" #: profile-builder-2.0/admin/add-ons.php:171 msgid "Not compatible with your version of Profile Builder." msgstr "Ikke kompatibel med din versjon av Profile Builder" #: profile-builder-2.0/admin/add-ons.php:172 msgid "Minimum required Profile Builder version:" msgstr "Minimum påkrevd versjon av Profile Builder:" #: profile-builder-2.0/admin/add-ons.php:177 msgid "Could not install add-on. Retry or install manually." msgstr "Kunne ikke installere add-on. Prøv igjen eller installer manuelt." #: profile-builder-2.0/front-end/default-fields/email/email.php:51 msgid "You must enter a valid email address." msgstr "Du må oppgi en gyldig epost adresse." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "Dette brukernavnet er ugyldig fordi det inneholder ugyldige tegn." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "Vennligst oppgi med ett gyldig brukernavn" #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72 #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85 msgid "Only administrators can see this field on edit profile forms." msgstr "Kun administratorer kan se dette feltet på rediger profil skjema." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81 msgid "As an administrator you cannot change your role." msgstr "Som en administrator kan du ikke endre din rolle." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117 msgid "" "\n" "

            {{username}} has requested a password change via the password reset feature.

            \n" "

            His/her new password is: {{password}}

            \n" msgstr "" "\n" "

            {{username}} har forespurt ett passord bytte via passord resett funksjonen.

            \n" "

            Hans/hennes nye passord er: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141 msgid "Admin Notification for User Password Reset" msgstr "Admin forespørsel for bruker passord resett" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46 msgid "Reset Key" msgstr "Resett nøkkel" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47 msgid "Reset Url" msgstr "Resett Url" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48 msgid "Reset Link" msgstr "Tilbakestill link" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204 msgid "" "\n" "

            Someone requested that the password be reset for the following account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            \n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" msgstr "" "\n" "

            Noen har forespurt resetting av passord for følgende bruker konto: {{site_name}}
            \n" "Brukernavn: {{username}}

            \n" "

            Hvis dette ikke er tilfelle, vennligst overse denne meldingen og ingenting vil endre seg.

            \n" "

            For å resette ditt passord, besøk følgende adresse:
            \n" "{{{reset_link}}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218 msgid "[{{site_name}}] Password Reset" msgstr "[{{site_name}}] Passord Resett" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229 msgid "Password Reset Email" msgstr "Mail om gjenoppretting av passord" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235 msgid "" "\n" "

            You have successfully reset your password to: {{password}}

            \n" msgstr "" "\n" "

            Du har resatt ditt passord med suksess til: {{password}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset Successfully" msgstr "[{{site_name}}] Passord resatt med suksess" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256 msgid "Password Reset Success Email" msgstr "Suksessfull tilbakestilling av passord mail" #: profile-builder-2.0/modules/user-listing/userlisting.php:159 msgid "User Nicename" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:80 #: pb-add-on-woocommerce/woosync-page.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:499 msgid "None" msgstr "Ingen" #: profile-builder-2.0/admin/admin-functions.php:132 msgid "ERROR: The password must have the minimum length of %s characters" msgstr "FEIL: Passordet må minimum inneholde %s tegn." #: profile-builder-2.0/admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr "FEIL: Passordet må minimum ha en styrke på %s" #: profile-builder-2.0/admin/general-settings.php:179 msgid "Username and Email" msgstr "Brukernavn og Epost" #: profile-builder-2.0/admin/general-settings.php:184 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "\"Brukernavn og E-post\" - brukere kan logge inn med både brukernavn og e-post." #: profile-builder-2.0/admin/general-settings.php:185 msgid "\"Username\" - users can Log In only with Username." msgstr "\"Brukernavn\" - brukere kan kun logge inn med brukernavn" #: profile-builder-2.0/admin/general-settings.php:186 msgid "\"Email\" - users can Log In only with Email." msgstr "\"E-post\" - brukere kan kun logge inn med e-post." #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)" msgstr "Angi tillegg(et) du vil begrense for opplasting
            Eksempel: .ext1,.ext2,.ext3
            Hvis ikke spesifisert, settes standard til alle WordPress tillatte fil endelser(.*)" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "User Roles" msgstr "Bruker roller" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "Velg hvilken bruker rolle å vise til bruker ( dra og slipp for å sortere )" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "User Roles Order" msgstr "Bruker rolle rekkefølge" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "Save the user role order from the user roles checkboxes" msgstr "Lagre bruker rolle rekkefølgen fra bruker rolle valgene" #: profile-builder-2.0/admin/manage-fields.php:1128 msgid "Please select at least one user role\n" msgstr "" "Vennligst velg minst en bruker rolle\n" "\n" #: profile-builder-2.0/admin/register-version.php:22 msgid "Profile Builder Register" msgstr "Profile Builder Registrer" #: profile-builder-2.0/admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "Serie nummeret vil snart utløpe!" #: profile-builder-2.0/admin/register-version.php:81 msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr " Ditt serie nummer vil snart utløpe, vennligst %1$s forny din lisens%2$s." #: profile-builder-2.0/admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr " Ditt serie nummer er utgått, vennligst %1$s forny din lisens%2$s." #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 msgid "Add Entry" msgstr "Legg til" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 msgid "show" msgstr "Vis" #: profile-builder-2.0/features/functions.php:736 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" msgstr "For å gi brukere mulighet til å registrere seg til ditt websted via Profile Builder, må du først aktivere bruker registering. Gå til %1$sNettverk Instillinger%2$s, og under Registrerings Instillinger sjekk “Bruker konto kan registreres”. %3$sAvvis%4$s" #: profile-builder-2.0/front-end/class-formbuilder.php:659 msgid "User to edit:" msgstr "Bruker å endre:" #: profile-builder-2.0/front-end/default-fields/password/password.php:46 #: profile-builder-2.0/front-end/recover.php:262 msgid "The password must have the minimum length of %s characters" msgstr "Passordet må minimum ha en lengde på %s tegn" #: profile-builder-2.0/front-end/default-fields/password/password.php:50 #: profile-builder-2.0/front-end/recover.php:266 msgid "The password must have a minimum strength of %s" msgstr "Passordet må ha en minimum styrke på %s" #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118 msgid "You cannot register this user role" msgstr "Du kan ikke registrere denne bruker rollen" #: profile-builder-2.0/front-end/login.php:153 msgid "username or email" msgstr "brukernavn eller epost" #: profile-builder-2.0/front-end/login.php:222 msgid "Username or Email" msgstr "Brukernavn eller Epost" #: profile-builder-2.0/front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "Du er nå innlogget som %s." #: profile-builder-2.0/front-end/logout.php:15 msgid "Log out »" msgstr "Logg ut »" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "Bruker Rolle" #: profile-builder-2.0/modules/user-listing/userlisting.php:2167 msgid "View all extra shortcode parameters" msgstr "Vis alle ekstra shortcode parametre" #: profile-builder-2.0/modules/user-listing/userlisting.php:2181 msgid "displays only the users that you specified the user_id for" msgstr "vis kun brukere som du spesifiserte user_id for" #: profile-builder-2.0/modules/user-listing/userlisting.php:2187 msgid "displays all users except the ones you specified the user_id for" msgstr "vis alle brukere unntatt de du spesifiserte user_id for" #: profile-builder-2.0/features/functions.php:566 msgid "Minimum length of %d characters" msgstr "Minimum lengde på %d tegn" #: profile-builder-2.0/front-end/class-formbuilder.php:146 #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "This message is only visible by administrators" msgstr "Denne meldingen er kun synlig for administratorer" #: profile-builder-2.0/modules/user-listing/userlisting.php:413 msgid "User not found" msgstr "Bruker ikke funnet" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "Gyldige tagger {{reply_to}} og {{site_name}}" #: profile-builder-2.0/admin/admin-bar.php:48 msgid "Choose which user roles view the admin bar in the front-end of the website." msgstr "Velg hvilken brukerrolle som skal vises i admin panelet i front-end på nettsiden. " #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes" msgstr "" #: profile-builder-2.0/admin/manage-fields.php:1055 msgid "The meta-name cannot be empty\n" msgstr "Meta-Navnet kan ikke være tomt \n" #: profile-builder-2.0/admin/register-version.php:69 msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received" msgstr "" #: profile-builder-2.0/admin/register-version.php:243 msgid "

            Your Profile Builder serial number is invalid or missing.
            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

            " msgstr "" #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17 #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60 msgid "...Choose" msgstr "...velg" #: profile-builder-2.0/features/class-list-table.php:526 #: profile-builder-2.0/features/class-list-table.php:942 msgid "1 item" msgstr "" #: profile-builder-2.0/features/functions.php:552 msgid "Very Weak" msgstr "Veldig svakt" #: profile-builder-2.0/features/functions.php:640 msgid "This field is required" msgstr "Dette feltet er obligatorisk" #: profile-builder-2.0/features/functions.php:704 msgid "Cancel" msgstr "Avbryt" #: profile-builder-2.0/features/functions.php:740 msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s" msgstr "" #: profile-builder-2.0/front-end/login.php:144 msgid "Invalid username." msgstr "Ugyldig brukernavn" #: profile-builder-2.0/front-end/login.php:149 #: profile-builder-2.0/front-end/login.php:153 msgid "username" msgstr "brukernavn" #: profile-builder-2.0/front-end/login.php:149 msgid "email" msgstr "e-post" #: profile-builder-2.0/front-end/login.php:256 msgid "Lost your password?" msgstr "Mistet ditt passord?" #: profile-builder-2.0/index.php:34 msgid " is also activated. You need to deactivate it before activating this version of the plugin." msgstr "aktiveres også. Må du deaktivere den før du aktiverer denne versjonen av plugin." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54 msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email" msgstr "Må være en gyldig e-postadresse eller taggen {{reply_to}} som mislighold av administrator epost" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508 msgid "Your selected password at signup" msgstr "" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save." msgstr "" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "Denne skjemaet er tomt." #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "Slett alt" #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all" msgstr "Slett alle" #: profile-builder-2.0/modules/user-listing/userlisting.php:1621 msgid "Choose..." msgstr "Velg..." #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Set the number of users to be displayed on every paginated part of the all-userlisting" msgstr "" #: profile-builder-2.0/admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "Vis/Skjul admin bar" #: profile-builder-2.0/admin/admin-bar.php:10 #: profile-builder-2.0/admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "Admin bar instillinger" #: profile-builder-2.0/admin/admin-bar.php:57 msgid "User-Role" msgstr "Bruker-Rolle" #: profile-builder-2.0/admin/admin-bar.php:58 msgid "Visibility" msgstr "Synlighet" #: profile-builder-2.0/admin/admin-bar.php:73 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "Standard" #: profile-builder-2.0/admin/admin-bar.php:74 msgid "Show" msgstr "Vis" #: profile-builder-2.0/admin/admin-bar.php:75 #: profile-builder-2.0/modules/user-listing/userlisting.php:1554 msgid "Hide" msgstr "Skjul" #: pb-add-on-woocommerce/woosync-page.php:147 #: profile-builder-2.0/admin/admin-bar.php:86 #: profile-builder-2.0/admin/general-settings.php:224 #: profile-builder-2.0/admin/register-version.php:95 #: profile-builder-2.0/features/functions.php:697 #: profile-builder-2.0/modules/modules.php:127 msgid "Save Changes" msgstr "Langre endringer" #: profile-builder-2.0/admin/admin-functions.php:37 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 )" msgstr "Pålogging er satt til å gjøres ved hjelp av e - post . Dette feltet vil ikke vises i front-end ! (Du kan endre disse innstillingene under \"%s\" tab )" #: profile-builder-2.0/admin/admin-functions.php:37 #: profile-builder-2.0/admin/general-settings.php:10 #: profile-builder-2.0/admin/general-settings.php:35 msgid "General Settings" msgstr "Generelle innstillinger" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:210 msgid "Very weak" msgstr "Veldig Svakt" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:211 #: profile-builder-2.0/features/functions.php:552 msgid "Weak" msgstr "Svakt" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:212 #: profile-builder-2.0/features/functions.php:552 msgid "Medium" msgstr "Medium" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:213 #: profile-builder-2.0/features/functions.php:552 msgid "Strong" msgstr "Sterk" #: profile-builder-2.0/admin/admin-functions.php:187 msgid "Add Field" msgstr "Legg til felt" #: profile-builder-2.0/admin/admin-functions.php:189 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390 msgid "Save Settings" msgstr "Lagre innstillinger" #: profile-builder-2.0/admin/basic-info.php:10 msgid "Basic Information" msgstr "Grunnleggende informasjon" #: profile-builder-2.0/admin/basic-info.php:29 msgid "Version %s" msgstr "Version %s" #: profile-builder-2.0/admin/basic-info.php:30 msgid "Profile Builder " msgstr "Profile Builder " #: profile-builder-2.0/admin/basic-info.php:31 msgid "The best way to add front-end registration, edit profile and login forms." msgstr "Den beste måten å legge til front-end registrering , redigere profil og login skjemaer." #: profile-builder-2.0/admin/basic-info.php:33 msgid "For Modern User Interaction" msgstr "For Moderne brukermedvirkning" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25 #: profile-builder-2.0/admin/basic-info.php:36 #: profile-builder-2.0/features/login-widget/login-widget.php:59 msgid "Login" msgstr "innlogging" #: profile-builder-2.0/admin/basic-info.php:40 msgid "Registration" msgstr "Registrering" #: profile-builder-2.0/admin/basic-info.php:44 msgid "Edit Profile" msgstr "Rediger profil" #: profile-builder-2.0/admin/basic-info.php:51 msgid "Extra Features" msgstr "Ekstra Funksjoner" #: profile-builder-2.0/admin/basic-info.php:52 msgid "Features that give you more control over your users, increased security and help you fight user registration spam." msgstr "Funksjoner som gir deg mer kontroll over brukerne, økt sikkerhet og hjelpe deg å bekjempe brukerregistrerings spam." #: profile-builder-2.0/admin/basic-info.php:53 msgid "Enable extra features" msgstr "Aktiver ekstra funksjoner" #: profile-builder-2.0/admin/basic-info.php:57 msgid "Recover Password" msgstr "Gjenopprett passord (*)" #: profile-builder-2.0/admin/basic-info.php:61 msgid "Admin Approval (*)" msgstr "Administratorgodkjenning (*)" #: profile-builder-2.0/admin/basic-info.php:62 msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI." msgstr "Du bestemmer hvem som er en bruker på nettstedet ditt. Bli varslet via e-post eller godkjenn flere brukere på en gang via WordPress UI." #: profile-builder-2.0/admin/basic-info.php:65 msgid "Email Confirmation" msgstr "e-post bekreftelse" #: profile-builder-2.0/admin/basic-info.php:66 msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address." msgstr "Sørg for at brukerne registrere seg med gyldig e-postadresse. Ved registrering vil brukere motta en melding for å bekrefte sin e-postadresse." #: profile-builder-2.0/admin/basic-info.php:69 msgid "Minimum Password Length and Strength Meter" msgstr "Minimum Password Lengde og styrkemåler" #: profile-builder-2.0/admin/basic-info.php:70 msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength." msgstr "Eliminere svake passord helt ved å sette en minimum passordlengde og håndhev en viss passord styrke." #: profile-builder-2.0/admin/basic-info.php:73 msgid "Login with Email or Username" msgstr "Logg inn med e-post eller brukernavn" #: profile-builder-2.0/admin/basic-info.php:74 msgid "Allow users to log in with their email or username when accessing your site." msgstr "Tillat brukere å logge inn med sin e-post eller brukernavn for tilgang til nettstedet." #: profile-builder-2.0/admin/basic-info.php:87 msgid "Customize Your Forms The Way You Want (*)" msgstr "Tilpass skjemaene slik du ønsker (*)" #: profile-builder-2.0/admin/basic-info.php:88 msgid "With Extra Profile Fields you can create the exact registration form your project needs." msgstr "Med ekstra profilfelter kan du opprette nøyaktig det registreringsskjemaet prosjektet ditt behøver." #: profile-builder-2.0/admin/basic-info.php:90 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "Ekstra profilfelter er tilgjengelige i Hobbyist eller PRO-versjonene" #: profile-builder-2.0/admin/basic-info.php:92 msgid "Get started with extra fields" msgstr "Get started with extra fields" #: profile-builder-2.0/admin/basic-info.php:95 msgid "Avatar Upload" msgstr "Avatar Last opp" #: profile-builder-2.0/admin/basic-info.php:96 msgid "Generic Uploads" msgstr "Generiske opplastninger" #: profile-builder-2.0/admin/basic-info.php:97 msgid "Agree To Terms Checkbox" msgstr "Du må godta vilkårene." #: profile-builder-2.0/admin/basic-info.php:98 msgid "Datepicker" msgstr "Datovelger" #: profile-builder-2.0/admin/basic-info.php:101 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: profile-builder-2.0/admin/basic-info.php:102 msgid "Country Select" msgstr "Velg Land" #: profile-builder-2.0/admin/basic-info.php:104 msgid "Timezone Select" msgstr "Velg Tidssone" #: profile-builder-2.0/admin/basic-info.php:108 msgid "Input / Hidden Input" msgstr "Input / Skjult Input" #: profile-builder-2.0/admin/basic-info.php:110 msgid "Checkbox" msgstr "Avkryssingsboks" #: profile-builder-2.0/admin/basic-info.php:111 msgid "Select" msgstr "Velg" #: profile-builder-2.0/admin/basic-info.php:112 msgid "Radio Buttons" msgstr "Radio-knapper" #: profile-builder-2.0/admin/basic-info.php:113 msgid "Textarea" msgstr "Tekstfelt" #: profile-builder-2.0/admin/basic-info.php:125 msgid "Powerful Modules (**)" msgstr "Kraftige Moduler (**)" #: profile-builder-2.0/admin/basic-info.php:126 msgid "Everything you will need to manage your users is probably already available using the Pro Modules." msgstr "Alt du trenger for å administrere dine brukere er sannsynligvis allerede tilgjengelig ved hjelp av Pro moduler." #: profile-builder-2.0/admin/basic-info.php:128 msgid "Enable your modules" msgstr "Aktiver moduler" #: profile-builder-2.0/admin/basic-info.php:131 msgid "Find out more about PRO Modules" msgstr "Finn ut mer om PRO moduler" #: profile-builder-2.0/admin/basic-info.php:136 #: profile-builder-2.0/modules/modules.php:89 #: profile-builder-2.0/modules/user-listing/userlisting.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:12 #: profile-builder-2.0/modules/user-listing/userlisting.php:17 #: profile-builder-2.0/modules/user-listing/userlisting.php:23 msgid "User Listing" msgstr "Brukerliste" #: profile-builder-2.0/admin/basic-info.php:138 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." msgstr "Enkelt å redigere maler for å liste nettstedets brukere samt å skape enkle brukersider. Shortcode-basert, og tilbyr mange muligheter til å tilpasse dine oppføringer." #: profile-builder-2.0/admin/basic-info.php:144 msgid "Email Customizer" msgstr "Tilpass E-postmeldinger" #: profile-builder-2.0/admin/basic-info.php:145 msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval." msgstr "Tilpasse alle e-poster som sendes til brukere eller administratorer. Ved registrering, e-postbekreftelse, admin-godkjenning / ikke-godkjenning." #: profile-builder-2.0/admin/basic-info.php:148 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33 #: profile-builder-2.0/modules/modules.php:110 msgid "Custom Redirects" msgstr "Tilpassede Omdirigeringer" #: profile-builder-2.0/admin/basic-info.php:149 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." msgstr "Hold brukerne ut av WordPress-dashbordet, omdiriger dem til forsiden etter innlogging eller registrering, alt er bare et par klikk unna." #: profile-builder-2.0/admin/basic-info.php:154 #: profile-builder-2.0/modules/modules.php:75 msgid "Multiple Registration Forms" msgstr "Flere Registreringsskjemaer" #: profile-builder-2.0/admin/basic-info.php:155 msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users." msgstr "Sette opp flere registreringsskjemaer med ulike felt for visse brukerroller. Fange opp ulik informasjon fra forskjellige typer brukere." #: profile-builder-2.0/admin/basic-info.php:158 #: profile-builder-2.0/modules/modules.php:82 msgid "Multiple Edit-profile Forms" msgstr "Flere Rediger profil-skjemaer" #: profile-builder-2.0/admin/basic-info.php:159 msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles." msgstr "Tillate ulike brukerroller å redigere sin informasjon. Sett opp flere redigering profil-skjemaer med ulike felt for bestemte brukerroller." #: profile-builder-2.0/admin/basic-info.php:187 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr "* Bare tilgjengelig i %1$sHobbyist og Pro versjoner%2$s." #: profile-builder-2.0/admin/basic-info.php:188 msgid "** only available in the %1$sPro version%2$s." msgstr "** Kun tilgjengelig i %1$spro versjon%2$s." #: profile-builder-2.0/admin/general-settings.php:39 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "Laste Profile Builders egen CSS-fil i front-end:" #: profile-builder-2.0/admin/general-settings.php:42 #: profile-builder-2.0/admin/general-settings.php:55 #: profile-builder-2.0/admin/general-settings.php:104 #: profile-builder-2.0/admin/general-settings.php:151 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Yes" msgstr "Ja" #: profile-builder-2.0/admin/general-settings.php:44 msgid "You can find the default file here: %1$s" msgstr "Du kan finne standard fil her: %1$s" #: profile-builder-2.0/admin/general-settings.php:51 msgid "\"Email Confirmation\" Activated:" msgstr "\"Epost bekreftelse\" Aktivert:" #: profile-builder-2.0/admin/general-settings.php:56 #: profile-builder-2.0/admin/general-settings.php:105 #: profile-builder-2.0/admin/general-settings.php:150 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "No" msgstr "Nei" #: profile-builder-2.0/admin/general-settings.php:61 msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s." msgstr "Du kan finne en liste over brukere på %1$sUsers > All Users > Email Confirmation%2$s." #: profile-builder-2.0/admin/general-settings.php:69 msgid "\"Email Confirmation\" Landing Page:" msgstr "\"Epost bekreftelse\" Landings-side:" #: profile-builder-2.0/admin/general-settings.php:74 msgid "Existing Pages" msgstr "Eksisterende Sider" #: profile-builder-2.0/admin/general-settings.php:89 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." msgstr "Spesifisere siden brukerne vil bli sendt til når de bekrefter e-postadressen. Denne siden kan avvike fra registrér-siden(e) og kan endres når som helst. Hvis ikke spesifisert, vil en enkel bekreftelsesside vises for brukeren." #: profile-builder-2.0/admin/general-settings.php:100 msgid "\"Admin Approval\" Activated:" msgstr "\"Administrator godkjennelse\" Aktivert:" #: profile-builder-2.0/admin/general-settings.php:108 msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "Du kan finne en liste med brukere i %1$sUsers > All Users > Admin Approval%2$s." #: profile-builder-2.0/admin/general-settings.php:165 msgid "\"Admin Approval\" Feature:" msgstr "\"Administrator godkjennelse\" Funksjon:" #: profile-builder-2.0/admin/general-settings.php:168 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." msgstr "Du bestemmer hvem som er en bruker på nettstedet ditt. Bli varslet via e-post eller godkjenn flere brukere på én gang via WordPress UI. Aktiver administratorgodkjenning ved å oppgradere til %1$sHobbyist or PRO versions%2$s." #: profile-builder-2.0/admin/general-settings.php:175 msgid "Allow Users to Log in With:" msgstr "Tillat brukere å logge inn med:" #: profile-builder-2.0/admin/general-settings.php:180 #: profile-builder-2.0/admin/manage-fields.php:201 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167 #: profile-builder-2.0/front-end/login.php:85 #: profile-builder-2.0/front-end/login.php:99 #: profile-builder-2.0/front-end/login.php:218 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28 #: profile-builder-2.0/modules/user-listing/userlisting.php:102 #: profile-builder-2.0/modules/user-listing/userlisting.php:277 #: profile-builder-2.0/modules/user-listing/userlisting.php:730 #: profile-builder-2.0/modules/user-listing/userlisting.php:2219 msgid "Username" msgstr "Brukernavn" #: profile-builder-2.0/admin/general-settings.php:181 #: profile-builder-2.0/front-end/login.php:215 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29 #: profile-builder-2.0/modules/user-listing/userlisting.php:736 #: profile-builder-2.0/modules/user-listing/userlisting.php:2220 msgid "Email" msgstr "Epost" #: profile-builder-2.0/admin/general-settings.php:193 msgid "Minimum Password Length:" msgstr "Minimum passord lengde:" #: profile-builder-2.0/admin/general-settings.php:198 msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit" msgstr "Skriv inn minimums tegn passordet bør ha. La stå tomt for ingen minimumsgrense" #: profile-builder-2.0/admin/general-settings.php:205 msgid "Minimum Password Strength:" msgstr "Minimum passord styrke" #: profile-builder-2.0/admin/general-settings.php:209 msgid "Disabled" msgstr "Deaktivert" #: profile-builder-2.0/admin/manage-fields.php:12 msgid "Manage Fields" msgstr "Administrer felt" #: profile-builder-2.0/admin/manage-fields.php:13 msgid "Manage Default and Extra Fields" msgstr "Administrere standard og ekstra felt" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Field Title" msgstr "Felttittel" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Title of the field" msgstr "Tittel på feltet" #: profile-builder-2.0/admin/manage-fields.php:119 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "Felt" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Meta-name" msgstr "Meta-navn" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "ID" msgstr "ID" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be edited" msgstr "En unik, automatisk generert ID for dette feltet
            Du kan bruke dette i sammen med filtre for å målrette dette elementet hvis nødvendig
            Kan ikke redigeres" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Description" msgstr "Beskrivelse" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Enter a (detailed) description of the option for end users to read
            Optional" msgstr "Skriv inn en (detaljert) beskrivelse av alternativene for sluttbrukerne å lese
            Valgfritt" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Row Count" msgstr "Antall rader" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5" msgstr "Spesifiser antal linjer for 'Tekst' felt
            Hvis ikke spesifisert , settes standard til 5" #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Allowed Image Extensions" msgstr "Tillatte bildefiler" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Allowed Upload Extensions" msgstr "Tillatt Last opp utvidelser" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Avatar Size" msgstr "Avatarstørrelse" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100" msgstr "Skriv inn en verdi (mellom 20 og 200) for størrelsen på 'Avatar'
            Hvis ingenting er spesifisert, settes standard til 100" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Date-format" msgstr "Dato-format" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Terms of Agreement" msgstr "Avtalebetingelser" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Enter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>" msgstr "Angi en detaljert beskrivelse av temrs i avtalen for brukeren å lese.
            Koblinger kan settes ved hjelp av standard HTML syntaks: <a href=\"custom_url\">custom_text</a>" #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Options" msgstr "Innstillinger" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Labels" msgstr "Etiketter" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "Angi en kommadelt liste over etiketter
            Synlig for brukeren" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default Value" msgstr "Standardverdi" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default value of the field" msgstr "Standardverdi for feltet" #: profile-builder-2.0/admin/manage-fields.php:138 #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default Option" msgstr "Standard alternativ" #: profile-builder-2.0/admin/manage-fields.php:138 msgid "Specify the option which should be selected by default" msgstr "Angi alternativet som bør være valgt som standard" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Default Option(s)" msgstr "Standard alternativ(er)" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)" msgstr "Angi alternativet som bør kontrolleres som standard
            Hvis det er flere verdier, skiller du dem med en ',' (komma)" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default Content" msgstr "Standardinnhold" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default value of the textarea" msgstr "Standardverdien for tekstområdet" #: pb-add-on-woocommerce/index.php:306 #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Required" msgstr "Påkrevd" #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Whether the field is required or not" msgstr "Om feltet er påkrevd eller ikke" #: profile-builder-2.0/admin/manage-fields.php:161 msgid "Overwrite Existing" msgstr "Overskriv eksisterende" #: profile-builder-2.0/admin/manage-fields.php:161 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
            Use this at your own risk" msgstr "Velge 'Ja' vil legge til feltet i listen, men overskriver alle andre felt i databasen som har samme meta navn
            Bruk dette på eget ansvar" #: profile-builder-2.0/admin/manage-fields.php:167 msgid "Field Properties" msgstr "Feltegenskaper" #: profile-builder-2.0/admin/manage-fields.php:181 msgid "Registration & Edit Profile" msgstr "Registrering & Rediger profil" #: profile-builder-2.0/admin/manage-fields.php:200 msgid "Name" msgstr "Navn" #: profile-builder-2.0/admin/manage-fields.php:201 msgid "Usernames cannot be changed." msgstr "Brukernavn kan ikke forandres" #: pb-add-on-woocommerce/billing-fields.php:6 #: pb-add-on-woocommerce/shipping-fields.php:6 #: profile-builder-2.0/admin/manage-fields.php:202 msgid "First Name" msgstr "Fornavn" #: pb-add-on-woocommerce/billing-fields.php:7 #: pb-add-on-woocommerce/shipping-fields.php:7 #: profile-builder-2.0/admin/manage-fields.php:203 msgid "Last Name" msgstr "Etternavn" #: profile-builder-2.0/admin/manage-fields.php:204 #: profile-builder-2.0/modules/user-listing/userlisting.php:769 #: profile-builder-2.0/modules/user-listing/userlisting.php:2227 msgid "Nickname" msgstr "Kallenavn" #: profile-builder-2.0/admin/manage-fields.php:205 msgid "Display name publicly as" msgstr "Visningsnavn offentlig som" #: profile-builder-2.0/admin/manage-fields.php:206 msgid "Contact Info" msgstr "Kontaktinfo" #: profile-builder-2.0/admin/manage-fields.php:207 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168 #: profile-builder-2.0/front-end/recover.php:118 #: profile-builder-2.0/modules/user-listing/userlisting.php:108 msgid "E-mail" msgstr "E-post" #: profile-builder-2.0/admin/manage-fields.php:208 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32 #: profile-builder-2.0/modules/user-listing/userlisting.php:111 #: profile-builder-2.0/modules/user-listing/userlisting.php:751 #: profile-builder-2.0/modules/user-listing/userlisting.php:2221 msgid "Website" msgstr "Nettsted" #: profile-builder-2.0/admin/manage-fields.php:212 msgid "AIM" msgstr "AIM" #: profile-builder-2.0/admin/manage-fields.php:213 msgid "Yahoo IM" msgstr "Yahoo IM" #: profile-builder-2.0/admin/manage-fields.php:214 msgid "Jabber / Google Talk" msgstr "Jabber / Google Talk" #: profile-builder-2.0/admin/manage-fields.php:217 msgid "About Yourself" msgstr "Om deg selv!" #: profile-builder-2.0/admin/manage-fields.php:218 #: profile-builder-2.0/modules/user-listing/userlisting.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:754 #: profile-builder-2.0/modules/user-listing/userlisting.php:2222 msgid "Biographical Info" msgstr "Biographical Info" #: profile-builder-2.0/admin/manage-fields.php:218 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "Share a little biographical information to fill out your profile. This may be shown publicly." #: profile-builder-2.0/admin/manage-fields.php:219 #: profile-builder-2.0/front-end/recover.php:73 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "Passord" #: profile-builder-2.0/admin/manage-fields.php:219 msgid "Type your password." msgstr "Skriv inn passordet ditt ." #: profile-builder-2.0/admin/manage-fields.php:220 #: profile-builder-2.0/front-end/recover.php:74 msgid "Repeat Password" msgstr "Gjenta Passord" #: profile-builder-2.0/admin/manage-fields.php:220 msgid "Type your password again. " msgstr "Skriv inn passordet på nytt" #: profile-builder-2.0/admin/manage-fields.php:980 #: profile-builder-2.0/admin/manage-fields.php:1137 msgid "You must select a field\n" msgstr "Du må velge et felt\n" #: profile-builder-2.0/admin/manage-fields.php:990 msgid "Please choose a different field type as this one already exists in your form (must be unique)\n" msgstr "Velg en annen felttype som denne finnes allerede i skjemaet (må være unikt)\n" #: profile-builder-2.0/admin/manage-fields.php:1001 msgid "The entered avatar size is not between 20 and 200\n" msgstr "The entered avatar size is not between 20 and 200\n" #: profile-builder-2.0/admin/manage-fields.php:1004 msgid "The entered avatar size is not numerical\n" msgstr "The entered avatar size is not numerical\n" #: profile-builder-2.0/admin/manage-fields.php:1012 msgid "The entered row number is not numerical\n" msgstr "The entered row number is not numerical\n" #: profile-builder-2.0/admin/manage-fields.php:1015 msgid "You must enter a value for the row number\n" msgstr "You must enter a value for the row number\n" #: profile-builder-2.0/admin/manage-fields.php:1036 msgid "The entered value for the Datepicker is not a valid date-format\n" msgstr "The entered value for the Datepicker is not a valid date-format\n" #: profile-builder-2.0/admin/manage-fields.php:1039 msgid "You must enter a value for the date-format\n" msgstr "You must enter a value for the date-format\n" #: profile-builder-2.0/admin/manage-fields.php:1067 #: profile-builder-2.0/admin/manage-fields.php:1075 #: profile-builder-2.0/admin/manage-fields.php:1086 msgid "That meta-name is already in use\n" msgstr "That meta-name is already in use\n" #: profile-builder-2.0/admin/manage-fields.php:1117 msgid "The following option(s) did not coincide with the ones in the options list: %s\n" msgstr "The following option(s) did not coincide with the ones in the options list: %s\n" #: profile-builder-2.0/admin/manage-fields.php:1121 msgid "The following option did not coincide with the ones in the options list: %s\n" msgstr "The following option did not coincide with the ones in the options list: %s\n" #: profile-builder-2.0/admin/manage-fields.php:1144 msgid "That field is already added in this form\n" msgstr "That field is already added in this form\n" #: profile-builder-2.0/admin/manage-fields.php:1193 msgid "
            Title
            Type
            Meta Name
            Required
            " msgstr "
            Title
            Type
            Meta Name
            Required
            " #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108 #: profile-builder-2.0/features/functions.php:718 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Edit" msgstr "Rediger" #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217 #: profile-builder-2.0/features/functions.php:711 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "Delete" msgstr "Slett" #: profile-builder-2.0/admin/manage-fields.php:1208 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "Bruk disse koder på sidene du vil skjemaene vises:" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Your Version" msgstr "Registrer Deg" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Version" msgstr "Registrer versjon" #: profile-builder-2.0/admin/register-version.php:70 msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support." msgstr "Hvis du registrerer denne versjonen av profil Builder, får du informasjon om oppgraderinger, oppdateringer og teknisk støtte." #: profile-builder-2.0/admin/register-version.php:72 msgid " Serial Number:" msgstr "Maskinens serienummer" #: profile-builder-2.0/admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "Serienummeret ble validert!" #: profile-builder-2.0/admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "Serienummeret oppga kunne ikke valideres!" #: profile-builder-2.0/admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "Serienummeret kunne ikke valideres fordi den opphøre!" #: profile-builder-2.0/admin/register-version.php:85 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!" msgstr "Serienummeret kunne ikke valideres fordi prosessen ble tidsavbrutt. Dette er mulig fordi serveren er nede. Prøv igjen senere!" #: profile-builder-2.0/admin/register-version.php:87 msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "(f.eks RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/features/functions.php:725 msgid "Content" msgstr "Innhold" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 msgid "Edit this item" msgstr "Rediger dette elementet" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 msgid "Delete this item" msgstr "Slett dette elementet" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705 msgid "Please enter a value for the required field " msgstr "Angi en verdi for feltet nødvendig" #: pb-add-on-woocommerce/woo-checkout-field-support.php:262 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122 msgid "Select File" msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:252 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112 msgid "Remove" msgstr "Fjern" #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8 msgid "You can add the information for the %s after you add a entry" msgstr "Du kan legge til informasjon for %s når du legger til en oppføring" #: pb-add-on-woocommerce/woo-checkout-field-support.php:268 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128 msgid "Upload " msgstr "Last opp" #: profile-builder-2.0/features/class-list-table.php:184 msgid "No items found." msgstr "Ingen element funnet." #: profile-builder-2.0/features/class-list-table.php:308 msgid "Bulk Actions" msgstr "Massehandlinger" #: profile-builder-2.0/features/class-list-table.php:318 msgid "Apply" msgstr "Bruk" #: profile-builder-2.0/features/class-list-table.php:402 msgid "Show all dates" msgstr "Vis alle datoer" #: profile-builder-2.0/features/class-list-table.php:415 msgid "%1$s %2$d" msgstr "%1$s %2$d" #: profile-builder-2.0/features/class-list-table.php:431 msgid "List View" msgstr "Listevisning" #: profile-builder-2.0/features/class-list-table.php:432 msgid "Excerpt View" msgstr "Utdrag" #: profile-builder-2.0/features/class-list-table.php:458 msgid "%s pending" msgstr "%s venter" #: profile-builder-2.0/features/class-list-table.php:566 msgid "%1$s of %2$s" msgstr "%1$s de %2$s" #: profile-builder-2.0/features/class-list-table.php:713 msgid "Select All" msgstr "Merk alle" #: profile-builder-2.0/features/functions.php:526 msgid "Strength indicator" msgstr "Styrke indikator" #: profile-builder-2.0/features/admin-approval/admin-approval.php:14 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453 msgid "Admin Approval" msgstr "Admin Approval (*)" #: profile-builder-2.0/features/admin-approval/admin-approval.php:28 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "Ønsker du å" #: profile-builder-2.0/features/admin-approval/admin-approval.php:51 msgid "Your session has expired! Please refresh the page and try again" msgstr "Økten er utløpt! Oppdater siden og prøv igjen" #: profile-builder-2.0/features/admin-approval/admin-approval.php:64 msgid "User successfully approved!" msgstr "Brukeren er godkjent!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:74 msgid "User successfully unapproved!" msgstr "Bruker ble utestengt" #: profile-builder-2.0/features/admin-approval/admin-approval.php:80 msgid "User successfully deleted!" msgstr "Bruker slettet!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:85 #: profile-builder-2.0/features/admin-approval/admin-approval.php:131 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "Du enten ikke har tillatelse for handlingen, eller det var en feil!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:96 msgid "Your session has expired! Please refresh the page and try again." msgstr "Økten er utløpt! Oppdater siden og prøv på nytt." #: profile-builder-2.0/features/admin-approval/admin-approval.php:109 msgid "Users successfully approved!" msgstr "Brukere er godkjent!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:119 msgid "Users successfully unapproved!" msgstr "Bruker ble utestengt" #: profile-builder-2.0/features/admin-approval/admin-approval.php:127 msgid "Users successfully deleted!" msgstr "Bruker slettet!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:147 msgid "Your account on %1$s has been approved!" msgstr "Kontoen %1$s har blitt godkjent!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:148 #: profile-builder-2.0/features/admin-approval/admin-approval.php:151 msgid "approved" msgstr "Godkjent" #: profile-builder-2.0/features/admin-approval/admin-approval.php:150 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "En administrator har nettopp godkjent kontoen %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:155 msgid "Your account on %1$s has been unapproved!" msgstr "Kontoen%1$s er blokkert." #: profile-builder-2.0/features/admin-approval/admin-approval.php:156 #: profile-builder-2.0/features/admin-approval/admin-approval.php:159 msgid "unapproved" msgstr "Ikke godkjent" #: profile-builder-2.0/features/admin-approval/admin-approval.php:158 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "En administrator har akkuratt blokkert din konto %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:177 msgid "ERROR: Your account has to be confirmed by an administrator before you can log in." msgstr "FEIL: Kontoen må være bekreftet av en administrator før du kan logge inn." #: profile-builder-2.0/features/admin-approval/admin-approval.php:189 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature." msgstr "Kontoen din må bekreftes av en administrator før du kan bruke "Password Recovery" -funksjonen." #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "slette denne brukeren?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "Blokkere denne brukeren?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr "Blokkere" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "godkjenne denne brukeren?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "Godkjenne" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167 #: profile-builder-2.0/modules/user-listing/userlisting.php:278 #: profile-builder-2.0/modules/user-listing/userlisting.php:742 #: profile-builder-2.0/modules/user-listing/userlisting.php:2224 msgid "Firstname" msgstr "Fornavn" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168 #: profile-builder-2.0/modules/user-listing/userlisting.php:745 #: profile-builder-2.0/modules/user-listing/userlisting.php:2225 msgid "Lastname" msgstr "Etternavn" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170 #: profile-builder-2.0/modules/user-listing/userlisting.php:149 #: profile-builder-2.0/modules/user-listing/userlisting.php:279 #: profile-builder-2.0/modules/user-listing/userlisting.php:772 #: profile-builder-2.0/modules/user-listing/userlisting.php:2229 msgid "Role" msgstr "Rolle" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169 msgid "Registered" msgstr "Registrert" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "Bruker-status" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "Vil du godkjenne valgte brukere?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "Vil du blokkere valgte brukere?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "Vil du slette valgte brukere?" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278 msgid "Sorry, but you don't have permission to do that!" msgstr "Beklager, men du har ikke tillatelse til å gjøre det!" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339 msgid "Approved" msgstr "Godkjent" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341 msgid "Unapproved" msgstr "Ikke godkjent" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454 msgid "All Users" msgstr "Alle Brukere" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 msgid "delete this user from the _signups table?" msgstr "slette denne brukeren fra tabellen _signups?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 msgid "confirm this email yourself?" msgstr "Bekrefte denne epost selv?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218 msgid "Confirm Email" msgstr "Bekreft epost" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 msgid "resend the activation link?" msgstr "Sende aktiverings lenke på ny?" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219 msgid "Resend Activation Email" msgstr "Sende aktivering e-post på ny" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249 msgid "%s couldn't be deleted" msgstr "%s kunne ikke slettes" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253 msgid "All users have been successfully deleted" msgstr "Alle brukere ble slettet" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263 msgid "The selected users have been activated" msgstr "Valgte brukere er aktivert" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274 msgid "The selected users have had their activation emails resent" msgstr "Valgte brukere har fått aktiveringsepost på nytt" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "Brukere med Ubekreftet e-postadresse" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "Det oppsto en feil da denne handlingen ble utført!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "Den valgte brukeren kunne ikke slettes" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "E-postvarsling sendt på nytt til brukeren" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398 msgid "[%1$s] Activate %2$s" msgstr "[%1$s] Aktivere %2$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442 #: profile-builder-2.0/front-end/register.php:71 msgid "Could not create user!" msgstr "Kan ikke opprette brukeren." #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445 msgid "That username is already activated!" msgstr "Brukernavnet er allerede aktivert." #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468 msgid "There was an error while trying to activate the user" msgstr "Det oppstod en feil under forsøket på å aktivere bruker" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73 msgid "A new subscriber has (been) registered!" msgstr "Ny abonnent (er) registrert!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "Ny abonnent på %1$s.

            Username:%2$s
            E-mail: %3$s
            " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634 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!" msgstr "Funksjonen \"Administratorgodkjenning\" ble aktivert ved registrering, så husk at du må godkjenne denne brukeren før han/hun kan logge inn!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570 msgid "[%1$s] Your new account information" msgstr "[%1$s] Din nye kontoinformasjon" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581 msgid "Welcome to %1$s!


            Your username is:%2$s and password:%3$s" msgstr "Velkommen til %1$s!


            Brukernavnet ditt er: %2$s og passord: %3$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642 #: profile-builder-2.0/front-end/register.php:125 msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email." msgstr "Før du kan få tilgang til kontoen din, må en administrator godkjenne den. Du vil bli varslet via e-post." #: profile-builder-2.0/features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "Denne loginn widgeten lar deg legge til en påloggingsskjema i sidepanelet." #: profile-builder-2.0/features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "Logg inn-widget" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36 #: profile-builder-2.0/front-end/class-formbuilder.php:415 #: profile-builder-2.0/front-end/login.php:250 msgid "Register" msgstr "Registrer" #: profile-builder-2.0/features/login-widget/login-widget.php:63 msgid "Title:" msgstr "Tittel:" #: profile-builder-2.0/features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "Etter innlogging omdirigere URL (valgfritt):" #: profile-builder-2.0/features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "Registrere Nettadresse (valgfritt):" #: profile-builder-2.0/features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "Password Recovery side URL (valgfritt):" #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91 #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "Brukernavnene kan ikke endres." #: profile-builder-2.0/front-end/class-formbuilder.php:136 msgid "Only an administrator can add new users." msgstr "Bare en administrator kan legge til nye brukere." #: profile-builder-2.0/front-end/class-formbuilder.php:146 msgid "Users can register themselves or you can manually create users here." msgstr "Brukere kan registrere seg selv, eller du kan manuelt opprette brukere her." #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "Users cannot currently register themselves, but you can manually create users here." msgstr "Brukere kan ikke registrere seg, men du kan manuelt opprette brukere her." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "Du er logget som %1s. Du trenger ikke en annen konto. %2s" #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Log out of this account." msgstr "Logg ut av denne kontoen" #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Logout" msgstr "Logg ut" #: profile-builder-2.0/front-end/class-formbuilder.php:175 msgid "You must be logged in to edit your profile." msgstr "Du må være pålogget for å redigere din profil." #: profile-builder-2.0/features/functions.php:994 msgid "here" msgstr "her" #: profile-builder-2.0/features/functions.php:995 msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s" msgstr "Du vil snart bli omdirigert automatisk. Hvis du ser denne siden for mer enn %1$ d sekunder, vennligst klikk %2$s.%3$s" #: profile-builder-2.0/front-end/class-formbuilder.php:315 #: profile-builder-2.0/front-end/class-formbuilder.php:322 msgid "The account %1s has been successfully created!" msgstr "Kontoen %1s ble opprettet!" #: profile-builder-2.0/front-end/class-formbuilder.php:318 #: profile-builder-2.0/front-end/class-formbuilder.php:328 msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link." msgstr "Før du kan få tilgang til dine konto% 1s, må du bekrefte din e-postadresse. Vennligst sjekk innboksen din og klikk på koblingen aktivering." #: profile-builder-2.0/front-end/class-formbuilder.php:324 msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email." msgstr "Før du kan få tilgang til dine konto% 1s, må en administrator godkjenne den. Du vil bli varslet via e-post." #: profile-builder-2.0/front-end/class-formbuilder.php:347 msgid "Your profile has been successfully updated!" msgstr "Profilen din ble oppdatert!" #: profile-builder-2.0/front-end/class-formbuilder.php:358 msgid "There was an error in the submitted form" msgstr "Det er en feil i skjemaet som ble sendt" #: profile-builder-2.0/front-end/class-formbuilder.php:415 msgid "Add User" msgstr "Legg til bruker" #: profile-builder-2.0/admin/add-ons.php:170 #: profile-builder-2.0/front-end/class-formbuilder.php:418 msgid "Update" msgstr "Oppdater" #: profile-builder-2.0/front-end/class-formbuilder.php:481 msgid "Send these credentials via email." msgstr "Send denne informasjonen på e-post." #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92 #: profile-builder-2.0/front-end/login.php:137 #: profile-builder-2.0/front-end/login.php:144 #: profile-builder-2.0/front-end/login.php:158 #: profile-builder-2.0/front-end/recover.php:17 #: profile-builder-2.0/front-end/recover.php:245 msgid "ERROR" msgstr "FEIL" #: profile-builder-2.0/front-end/login.php:137 msgid "The password you entered is incorrect." msgstr "Passordet du oppga er feil." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Password Lost and Found." msgstr "Passord Tapt og Funnet" #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Lost your password" msgstr "Mistet ditt passord?" #: profile-builder-2.0/front-end/login.php:158 msgid "Both fields are empty." msgstr "Begge felter er tomme." #: profile-builder-2.0/front-end/login.php:296 msgid "You are currently logged in as %1$s. %2$s" msgstr "Du er logget inn som %1$s. %2$s" #: profile-builder-2.0/front-end/login.php:295 #: profile-builder-2.0/front-end/logout.php:25 msgid "Log out of this account" msgstr "Logg ut av denne kontoen" #: profile-builder-2.0/front-end/login.php:295 msgid "Log out" msgstr "Logg ut" #: profile-builder-2.0/front-end/recover.php:17 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature." msgstr "Kontoen din må bekreftes av en administrator før du kan bruke "Password Reset" -funksjonen." #: profile-builder-2.0/front-end/recover.php:94 msgid "Reset Password" msgstr "Tilbakestill passord" #: profile-builder-2.0/front-end/recover.php:121 msgid "Please enter your username or email address." msgstr "Skriv inn brukernavn eller e-postadresse." #: profile-builder-2.0/front-end/recover.php:125 msgid "You will receive a link to create a new password via email." msgstr "Du vil motta en lenke på e-post for å opprette nytt passord." #: profile-builder-2.0/front-end/recover.php:122 msgid "Username or E-mail" msgstr "Brukernavn eller E-post" #: profile-builder-2.0/front-end/recover.php:138 msgid "Get New Password" msgstr "Få nytt passord" #: profile-builder-2.0/front-end/recover.php:185 msgid "The username entered wasn't found in the database!" msgstr "Brukernavn angitt finnes ikke i databasen!" #: profile-builder-2.0/front-end/recover.php:185 msgid "Please check that you entered the correct username." msgstr "Kontroller at du har angitt riktig brukernavn." #: profile-builder-2.0/front-end/recover.php:200 msgid "Check your e-mail for the confirmation link." msgstr "Sjekk e-posten din for bekreftelseslenke." #: profile-builder-2.0/front-end/recover.php:235 msgid "Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s" msgstr "Noen har bedt om at passordet tilbakestilles for følgende konto:%1$s
            Hvis dette var en feil, bare ignorere denne e-posten, og ingenting vil skje.
            For å tilbakestille passordet ditt, kan du gå til følgende link:%2$s" #: profile-builder-2.0/front-end/recover.php:238 msgid "Password Reset from \"%1$s\"" msgstr "tilbakestill passord fra \"%1$s\"" #: profile-builder-2.0/front-end/recover.php:245 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "Det oppstod en feil ved forsøk på å sende linken aktivisering til%1$s!" #: profile-builder-2.0/front-end/recover.php:207 msgid "The email address entered wasn't found in the database!" msgstr "Den angitte e-postadressen ble ikke funnet i databasen!" #: profile-builder-2.0/front-end/recover.php:207 msgid "Please check that you entered the correct email address." msgstr "Vennligst sjekk at du skrev inn riktig e-postadresse." #: profile-builder-2.0/front-end/recover.php:273 msgid "Your password has been successfully changed!" msgstr "Ditt passord har blitt endret!" #: profile-builder-2.0/front-end/recover.php:292 msgid "You have successfully reset your password to: %1$s" msgstr "Du har nå tilbakestille passordet ditt til:%1$s" #: profile-builder-2.0/front-end/recover.php:295 #: profile-builder-2.0/front-end/recover.php:306 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "Passord Vellykket Tilbakestilt for %1$s på \"%2$s\"" #: profile-builder-2.0/front-end/recover.php:303 msgid "%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s" msgstr "%1$s har bedt om en passordendring via funksjonen Tilbakestill.
            Det nye passordet er:%2$s" #: profile-builder-2.0/front-end/recover.php:320 msgid "The entered passwords don't match!" msgstr "Passordene samsvarer ikke." #: profile-builder-2.0/front-end/recover.php:375 msgid "ERROR:" msgstr "FEIL:" #: profile-builder-2.0/front-end/recover.php:375 msgid "Invalid key!" msgstr "Ugyldig nøkkel!" #: profile-builder-2.0/front-end/register.php:56 msgid "Invalid activation key!" msgstr "Ugyldig aktiveringsnøkkel" #: profile-builder-2.0/front-end/register.php:60 msgid "This username is now active!" msgstr "Dette brukernavnet er nå aktiv!" #: profile-builder-2.0/front-end/register.php:74 msgid "This username is already activated!" msgstr "Brukernavnet er allerede aktivert." #: profile-builder-2.0/front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "Din e-post ble bekreftet." #: profile-builder-2.0/front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "Det oppstod en feil under forsøket på å aktivere brukeren." #: pb-add-on-woocommerce/index.php:393 #: profile-builder-2.0/front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "E-posten du skrev inn er ikke en gyldig e-postadresse." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "Denne e-posten er allerede reservert til bruk snart." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 #: profile-builder-2.0/front-end/default-fields/username/username.php:49 #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "Prøv en annen!" #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "Denne e-posten er allerede i bruk." #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37 #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "Passordene samsvarer ikke." #: profile-builder-2.0/front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "Dette brukernavnet finnes allerede." #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "Dette brukernavnet er allerede reservert for bruk snart." #: profile-builder-2.0/modules/user-listing/userlisting.php:276 msgid "Avatar" msgstr "Avatar" #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72 #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45 #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45 #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40 #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34 #: profile-builder-2.0/front-end/extra-fields/input/input.php:30 #: profile-builder-2.0/front-end/extra-fields/map/map.php:51 #: profile-builder-2.0/front-end/extra-fields/number/number.php:30 #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39 #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52 #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46 #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49 #: profile-builder-2.0/front-end/extra-fields/select/select.php:51 #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70 #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "påkrevd" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48 msgid "To use reCAPTCHA you must get an API key from" msgstr "Du må få en API-nøkkel fra å bruke reCAPTCHA" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "Av sikkerhetsgrunner må du passere eksterne ip til reCAPTCHA!" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "Du må få en API fellesnøkkel fra å bruke reCAPTCHA:" #: profile-builder-2.0/modules/modules.php:11 #: profile-builder-2.0/modules/modules.php:58 msgid "Modules" msgstr "Moduler" #: profile-builder-2.0/modules/modules.php:59 msgid "Here you can activate / deactivate available modules for Profile Builder." msgstr "Her kan du aktivere / deaktivere tilgjengelige moduler for Profile Builder." #: profile-builder-2.0/modules/modules.php:69 msgid "Name/Description" msgstr "Navn/beskrivelse" #: profile-builder-2.0/modules/modules.php:70 msgid "Status" msgstr "Status" #: profile-builder-2.0/modules/modules.php:77 #: profile-builder-2.0/modules/modules.php:84 #: profile-builder-2.0/modules/modules.php:91 #: profile-builder-2.0/modules/modules.php:98 #: profile-builder-2.0/modules/modules.php:105 #: profile-builder-2.0/modules/modules.php:112 #: profile-builder-2.0/modules/modules.php:119 msgid "Active" msgstr "Aktiv" #: profile-builder-2.0/modules/modules.php:78 #: profile-builder-2.0/modules/modules.php:85 #: profile-builder-2.0/modules/modules.php:92 #: profile-builder-2.0/modules/modules.php:99 #: profile-builder-2.0/modules/modules.php:106 #: profile-builder-2.0/modules/modules.php:113 #: profile-builder-2.0/modules/modules.php:120 msgid "Inactive" msgstr "Inaktiv" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:96 msgid "Admin Email Customizer" msgstr "Admin Epost tilpasser" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:103 msgid "User Email Customizer" msgstr "Bruker Epost tilpasser" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253 msgid "Save" msgstr "Lagre" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "Omdirigere" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "Nettadresse" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save." msgstr "Disse innstillingene er også gjenskapt i \"User Email Customizer\" innstillinger-siden ved lagring." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41 msgid "From (name)" msgstr "Fra (navn)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49 msgid "From (reply-to email)" msgstr "Fra (svarer til e-post)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57 msgid "Common Settings" msgstr "Generelle innstillinger" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" msgstr "" "\n" "

            Ny abonnent på {{site_name}}.

            \n" "

            Brukernavn :{{brukernavn}}

            \n" "

            E-post:{{user_email}}

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274 msgid "Email Subject" msgstr "E-post emne" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84 msgid "Default Registration & Registration with Email Confirmation" msgstr "Standard registrering og registrering med e-post Bekreftelse" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log in!

            \n" msgstr "" "\n" "

            Ny abonnent på {{site_name}}.

            \n" "

            Brukernavn :{{brukernavn}}

            \n" "

            E-:{{user_email}}

            \n" "

            Administratorgodkjenning funksjonen ble aktivert på registrering, \n" "so Husk at du må godkjenne denne brukeren før han/hun kan logge inn!

            \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143 msgid "Registration with Admin Approval" msgstr "Registrering med administratorgodkjenning" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "Tilgjengelige Tags" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170 msgid "User Meta" msgstr "Bruker Meta" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "URL til siden" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "Side navn" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25 #: profile-builder-2.0/modules/user-listing/userlisting.php:158 msgid "User Id" msgstr "Bruker ID" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33 msgid "Reply To" msgstr "Svar til" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40 msgid "Activation Key" msgstr "Aktiveringsnøkkel" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41 msgid "Activation Url" msgstr "Aktivering Url" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42 msgid "Activation Link" msgstr "Aktivisering Link" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" msgstr "" "\n" "

            Velkommen til {{site_name}}!

            \n" "

            Ditt brukernavn er :{{brukernavn}} og passord: {{passord}}

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85 msgid "Default Registration" msgstr "Standard registrering" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91 msgid "" "\n" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials.

            \n" msgstr "" "\n" "

            For å aktivere bruker venligst trykk på følgende lenke:
            \n" "{{{activation_link}}}

            \n" "

            Etter aktivering vil du få en ny epost med din påloggingsinformasjon.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103 msgid "[{{site_name}}] Activate {{username}}" msgstr "[{{Side_navn}}] Aktiver {{brukernavn}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114 msgid "Registration with Email Confirmation" msgstr "Registrering med e-post Bekreftelse" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n" msgstr "" "\n" "

            Velkommen til {{site_name}}!

            \n" "

            Ditt brukernavn er:{{username}} og passord:{{password}}

            \n" "

            Før du kan få tilgang til kontoen din, må en administrator godkjenne den. Du vil bli varslet via e-post.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132 msgid "A new account has been created for you on {{site_name}}" msgstr "En ny konto er opprettet for deg på {{site_name}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148 msgid "" "\n" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            Gode nyheter!

            \n" "

            En administrator har nettopp godkjent kontoen: {{brukernavn}} på {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159 msgid "Your account on {{site_name}} has been approved!" msgstr "Din konto på {{site_name}} er godkjent!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170 msgid "User Approval Notification" msgstr "Brukeren godkjenningsvarslet" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175 msgid "" "\n" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            hallo

            \n" "

            Beklageligvis har en administrator nettopp avvist kontoen: {{brukernavn}} på {{site_name}}.

            \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187 msgid "Your account on {{site_name}} has been unapproved!" msgstr "Din konto på {{site_name}} har blitt avvist!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198 msgid "Unapproved User Notification" msgstr "Ikke godkjent brukervarsling" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "Rediger profil-skjemaet" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13 #: profile-builder-2.0/modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "Legg til" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "Legge til nye Rediger profil skjema" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "Redigere skjemaene Rediger profil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "Legge til nye Rediger profil skjema" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "Rediger profil skjemaer" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "Vise skjemaet Rediger profil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "Søk skjemaene Rediger profil" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "Ingen Rediger profil skjema funnet" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "Ingen Rediger profil skjemaer i papirkurven" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138 #: profile-builder-2.0/modules/user-listing/userlisting.php:2115 msgid "Shortcode" msgstr "Kortkode" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159 #: profile-builder-2.0/modules/user-listing/userlisting.php:2136 msgid "(no title)" msgstr "(ingen tittel)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178 #: profile-builder-2.0/modules/user-listing/userlisting.php:2156 msgid "The shortcode will be available after you publish this form." msgstr "Shortcode blir tilgjengelig etter at du publiserer dette skjemaet." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180 #: profile-builder-2.0/modules/user-listing/userlisting.php:2158 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "Bruk denne kortkodenl på siden du vil at skjemaet skal vises:" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184 #: profile-builder-2.0/modules/user-listing/userlisting.php:2162 msgid "Note: changing the form title also changes the shortcode!" msgstr "Note: endring av skjema tittelen endrer også kortkoden!" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190 #: profile-builder-2.0/modules/user-listing/userlisting.php:2195 msgid "Form Shortcode" msgstr "Skjema kortkode" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "Enten å omdirigere brukeren til en bestemt side eller ikke" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "Vise meldinger" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "Tillatt tid vise suksess meldinger (i sekunder)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 msgid "Specify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.com" msgstr "Angi nettadressen til siden brukerne vil bli omdirigert når de oppdatert profilen ved hjelp av dette skjemaet
            Bruk følgende format: http://www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "Etter Profiloppdatering..." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "Legg til nytt felt i listen" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage Title (Type)" msgstr "
            Tittel (Type)
            " #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "Du må angi tittelen på skjemaet før du oppretter den" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "Registreringsskjema" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "Legge til nytt registreringsskjema" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "Redigere registreringsskjemaene" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "Nytt registreringsskjema" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "Registrerings skjemaer" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "Se registreringsskjemaet" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "Søk i registreringsskjemaer" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "Ingen registreringsskjemaet funnet" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "Ingen registreringsskjemaer funnet i papirkurven" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "Standardrolle" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "Angi rolle" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Choose what role the user will have after (s)he registered
            If not specified, defaults to the role set in the WordPress settings" msgstr "Velg hvilken rolle brukeren vil ha etter (s)registrering
            Hvis det ikke er spesifisert vil det bli satt standardrolle fra WordPress innstillinger" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "Automatisk Logg inn" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Whether to automatically log in the newly registered user or not
            Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work" msgstr "Enten å automatisk logge på den nylig registrert bruker eller ikke
            Fungerer bare på single-sider uten \"Administrator godkjennelse\" og \"Epost bekreftelse\" funksjoner aktivert
            ADVARSEL: cache påmeldingsskjema vil gjøre at automatisk pålogging ikke fungerer" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "Specify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.com" msgstr "Angi nettadressen til siden brukerne vil bli omdirigert når registrerte bruker dette skjemaet
            Bruk følgende format: http://www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "Etter registrering..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1038 #: profile-builder-2.0/modules/user-listing/userlisting.php:1485 #: profile-builder-2.0/modules/user-listing/userlisting.php:1953 #: profile-builder-2.0/modules/user-listing/userlisting.php:2426 msgid "Search Users by All Fields" msgstr "Søk etter bruker i alle felt" #: profile-builder-2.0/modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "Legg til ny bruker oppføring" #: profile-builder-2.0/modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "Rediger bruker oppføringen" #: profile-builder-2.0/modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "Ny bruker oppføring" #: profile-builder-2.0/modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "Vis bruker-liste" #: profile-builder-2.0/modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "Søk i brukerliste" #: profile-builder-2.0/modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "Ingen bruker oppføring funnet" #: profile-builder-2.0/modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "Ingen Bruker Oppføring funnet i papirkurv" #: profile-builder-2.0/modules/user-listing/userlisting.php:105 msgid "Display name as" msgstr "Navn som vises" #: profile-builder-2.0/modules/user-listing/userlisting.php:150 #: profile-builder-2.0/modules/user-listing/userlisting.php:2223 msgid "Registration Date" msgstr "Registreringsdato" #: profile-builder-2.0/modules/user-listing/userlisting.php:151 #: profile-builder-2.0/modules/user-listing/userlisting.php:2228 msgid "Number of Posts" msgstr "Antall innlegg" #: profile-builder-2.0/modules/user-listing/userlisting.php:155 msgid "More Info" msgstr "Mer info" #: profile-builder-2.0/modules/user-listing/userlisting.php:156 msgid "More Info Url" msgstr "Mer Info Url" #: profile-builder-2.0/modules/user-listing/userlisting.php:157 msgid "Avatar or Gravatar" msgstr "Avatar eller Gravatar" #: profile-builder-2.0/modules/user-listing/userlisting.php:196 #: profile-builder-2.0/modules/user-listing/userlisting.php:227 msgid "Extra Functions" msgstr "Ekstra funksjoner" #: profile-builder-2.0/modules/user-listing/userlisting.php:199 msgid "Pagination" msgstr "Paginering" #: profile-builder-2.0/modules/user-listing/userlisting.php:200 msgid "Search all Fields" msgstr "Søke alle felter" #: profile-builder-2.0/modules/user-listing/userlisting.php:229 msgid "Go Back Link" msgstr "Gå tilbake Link" #: profile-builder-2.0/modules/user-listing/userlisting.php:247 msgid "All-userlisting Template" msgstr "Alle brukerlister Mal" #: profile-builder-2.0/modules/user-listing/userlisting.php:250 msgid "Single-userlisting Template" msgstr "Brukerliste Mal" #: profile-builder-2.0/modules/user-listing/userlisting.php:733 msgid "First/Lastname" msgstr "Fornavn/Etternavn" #: profile-builder-2.0/modules/user-listing/userlisting.php:281 #: profile-builder-2.0/modules/user-listing/userlisting.php:739 msgid "Sign-up Date" msgstr "Registrering dato" #: profile-builder-2.0/modules/user-listing/userlisting.php:748 #: profile-builder-2.0/modules/user-listing/userlisting.php:2226 msgid "Display Name" msgstr "Navn som vises" #: profile-builder-2.0/modules/user-listing/userlisting.php:280 #: profile-builder-2.0/modules/user-listing/userlisting.php:757 msgid "Posts" msgstr "Innlegg" #: profile-builder-2.0/modules/user-listing/userlisting.php:760 #: profile-builder-2.0/modules/user-listing/userlisting.php:2233 msgid "Aim" msgstr "AIM" #: profile-builder-2.0/modules/user-listing/userlisting.php:763 #: profile-builder-2.0/modules/user-listing/userlisting.php:2234 msgid "Yim" msgstr "YIM" #: profile-builder-2.0/modules/user-listing/userlisting.php:766 #: profile-builder-2.0/modules/user-listing/userlisting.php:2235 msgid "Jabber" msgstr "Jabber" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "Click here to see more information about this user" msgstr "Klikk her for mer informasjon om denne brukeren" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "More..." msgstr "Mer.." #: profile-builder-2.0/modules/user-listing/userlisting.php:1293 msgid "Click here to see more information about this user." msgstr "Klikk her for å se mer informasjon om denne brukeren." #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 #: profile-builder-2.0/modules/user-listing/userlisting.php:1442 msgid "Click here to go back" msgstr "Klikk her for å gå tilbake" #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 msgid "Back" msgstr "Tilbake" #: profile-builder-2.0/modules/user-listing/userlisting.php:1472 msgid "«« First" msgstr "«« Først" #: profile-builder-2.0/modules/user-listing/userlisting.php:1473 msgid "« Prev" msgstr "« Forige" #: profile-builder-2.0/modules/user-listing/userlisting.php:1474 msgid "Next » " msgstr "Neste » " #: profile-builder-2.0/modules/user-listing/userlisting.php:1475 msgid "Last »»" msgstr "Siste »»" #: profile-builder-2.0/modules/user-listing/userlisting.php:1504 msgid "You don't have any pagination settings on this userlisting!" msgstr "Du trenger ikke paginering innstillinger på denne brukerlisten!" #: profile-builder-2.0/modules/user-listing/userlisting.php:1970 msgid "Search" msgstr "Søk" #: profile-builder-2.0/modules/user-listing/userlisting.php:1971 msgid "Clear Results" msgstr "Tøm" #: profile-builder-2.0/modules/user-listing/userlisting.php:2165 #: profile-builder-2.0/modules/user-listing/userlisting.php:2169 msgid "Extra shortcode parameters" msgstr "Ekstra kortkode parametere" #: profile-builder-2.0/modules/user-listing/userlisting.php:2172 msgid "displays users having a certain meta-value within a certain (extra) meta-field" msgstr "viser brukere som har en bestemt meta-verdi i et bestemt (ekstra) meta felt" #: profile-builder-2.0/modules/user-listing/userlisting.php:2173 msgid "Example:" msgstr "Eksempel:" #: profile-builder-2.0/modules/user-listing/userlisting.php:2175 msgid "Remember though, that the field-value combination must exist in the database." msgstr "Husk imidlertid at feltverdien kombinasjonen må finnes i databasen." #: profile-builder-2.0/modules/user-listing/userlisting.php:2250 msgid "Random (very slow on large databases > 10K user)" msgstr "Tilfeldig (svært sakte på store databaser > 10K bruker)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Roles to Display" msgstr "Brukerroller å vise" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Restrict the userlisting to these selected roles only
            If not specified, defaults to all existing roles" msgstr "Begrense userlisting til disse valgte rollene bare
            Hvis det ikke er valgt vil standardrolle settes" #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Number of Users/Page" msgstr "Antall brukere/side" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Default Sorting Criteria" msgstr "Standard sorteringskriterier" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Set the default sorting criteria
            This can temporarily be changed for each new session" msgstr "Definere sorteringskriterier
            Dette kan midlertidig endres for hver nye økt" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Default Sorting Order" msgstr "Standard sorteringsrekkefølge" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Set the default sorting order
            This can temporarily be changed for each new session" msgstr "Angi standard sorteringsrekkefølge
            Dette kan midlertidig endres for hver nye økt" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Avatar Size (All-userlisting)" msgstr "Avatar størrelse (alle brukerlister)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Set the avatar size on the all-userlisting only" msgstr "Angi avatar på alle brukerlister" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Avatar Size (Single-userlisting)" msgstr "Avatar størrelse (enkelt bruker liste)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Set the avatar size on the single-userlisting only" msgstr "Angi størrelse på enkelt bruker liste" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Visible only to logged in users?" msgstr "Vises bare for påloggede brukere?" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "The userlisting will only be visible only to the logged in users" msgstr "Brukerlister vil bare være synlig bare for påloggede brukere" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "Visible to following Roles" msgstr "Synlig for følgende roller" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "The userlisting will only be visible to the following roles" msgstr "Brukerlistene vil bare være synlig for følgende roller" #: profile-builder-2.0/modules/user-listing/userlisting.php:2275 msgid "Userlisting Settings" msgstr "Brukerliste innstillinger" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "Du må aktivere funksjonen Userlisting fra fanen \"Moduler\"!" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You can find it in the Profile Builder menu." msgstr "Du finner den i Profile Builder menyen." #: profile-builder-2.0/modules/user-listing/userlisting.php:2565 msgid "No results found!" msgstr "Ingen resultater funnet!"translation/profile-builder-fr_FR.mo000066600000300400152141651170013523 0ustar00 !BBlByBcChCc=DDEFCjGG;1HmHK}HCH[ IiIIII"I+JE-J1sJ JeJ K"K 9K DKQK2fK K-KOK "L -L7L5>L#tLL!rMMdM>N5PNYNGNR(Oc{O!O7P'9PaPPQ]QUmQQQQQQ R R R(R0RJRESRRRRRSS!9S#[SSSSSSSSS*S &T2T ET QT^TvTT#TT$TU U $U2U :UFU NU(XUUUULFVDVtVMW^WwW9WW?WAX*\XXXX XXXXX%X XY Y0Y DY NYXY3`YYYY&YYZ Z,Z JZ kZyZ ZZZZ ZZZGZk[[i \ w\\\\\\\\\\\\ ]5]J]S]![]}]]] ]]]]]^ ^ ^)^1^:^qC^^^ ^^^^"^,_K_T_Z_7`_3_1_'_7&`^`2y`8`(`aKa aa ab2b3Pb5bb bb bbb c0c Bc Pc]c ec rc}cUcUc@dHdWd_dddld|d)ddd7d e e e'e/e?eTeeeweeee;e ef f 6fDfUfqffffff ffg !gBg Jg Ugagjg {gggAggh'h/Ch0shhh/h.h1iMiVi iiviiii iiSj[j `jmj~jjjjjjk kskk kkk kk!kkQlflOzl?l mmMneoWjoopp pppbpaq jqwqqqq>qq r r (r6r GrrUrr rr rrrs #s.s =sGs?cssss sss3s -t9tOtUt \tjt{tttttt tt tt u uu %u0u 5u?uHu Ou]udu iuvu!|uIuuu uvvvv'vvhwqwww ww www xx x%x*x 2x>xEx KxWx^xsx{xxx xx-y3y T `m   ώ܎ 74 ;IY ivߏ   54:j5^ې:yIZ!Ackr>{/2YVwVΔ% ]9J Zdir?֖(   (2 N[ d n yQ'0 7> v , ƙҙؙaU,x62# <FU\Uu7˞5;D [e lx~ )!# ..ƠI7?3w2)ޡ"(+@TLO2LIM.Pd/:&r0%&ɥ:;+g0*"-M<{p@);j2 ٨%( *I4t5Dߩ`$[Z</Z;. #>2b<Ҭ )0ɭ-+5Y °ʰ Ѱް-AEL T ^i $ݱE AR в  % / =G al}ó #6I[DxS.J$i ) õ"ε+(FN V ` k u#϶  <Win4vF$I&p6c9XԹ-ӺdTfʻ1:@"DgQk)G#/S<sbK,_(""ؾyu27>j;G2-+`%+* (EK^<K;3ro+KhZe'))Q0{2&,+3 _?@&(/8#M%q&+ %)Bl@~:NI0O)#Fj & z}@?FK6KTeD PieZZ*$+<$B8N{ybD GUt27^* ;+%4gM^Fc[LN }["=,:g*/At7LUh{%L8[,*&",%O%u!' "5YX %+?1V:2/&+: CPY0p+/_k^"p+DBAW@   ! ,+7 cnw>~ 4/$A+f,30@[ o { \#k &.FcE ""+Nf     "z, +H iyMN9$ ^@&A>)&hkX %? ?`G /DM1b" (jl&<:ZN , 9F[zS[n+:W't !  & 3@Wh \$ #/"SMv ==;W -  ".'/C3`'#%&E LlY($=P>c.g9iNS      u  ] i z  "  Y *= h w     m t         ) V)       D  -7IPXk#0  1Ql t    "T a j t @!Jl(s "+JPV _lt {   2/2b B Yg} I 8#7 LX _ jv= E OY_=f   Hajq  F;$8#]$,    '5LU ^0j$u6?DU^z -! R!t  3E'29Z%6 % @ G  W d ~ % 3  n!v!!!!U!>"^"g"{""" " ""<" :#D#K#b#j# |# #!#C#(#2#$'V$7~$$$% % %!% %8%L &Fm&r&6''+^','4'('G(e](?(!)%)@)$_)$))) ) ))B)4*P*** +++N-+|++ +0+6+%,:, K,0W,,,+,, ,%,#-7-Q-#l-9-_- *.5.O.m... .. .."/2/O/ k////n000000000 00 1 1,1!G1i1 p1|1 1 111L1 72C2X2k2202!2:2.13'`33333%3U3DT4D4i4H56h67%778 8P8Pn8H8m9iv9]9>: :r;#{;;; ; ;;!;<P0<<@< << <) = 4=B=R=c= r== = ====C>H?=L?M?? ?-? +@ 8@E@L@@ABHC}CAMDRDE F FF(#FtLF<FFGG6G =GGG _GjG rGGG G GGG G2G!H**HUH'I{=IQIZ J:fJ7J-J6KX>KLKaKFLY_LZL,MhAM%M:MC N8ON#NsN7 O1XOPOAOP7P:P,5QEbQ}QR&RJyR[R6 SFWS0S?S;T>KTDTtTvDUU2DVNwVVVkV6eW$W*WIWS6X,XXXXX YYDY%[\;\F\-]3]<]C]J]_]h] p]~]]]]]]]]^ ^,^C^Y^i^%x^^^^^X^T?_4__(_( `2`.K`/z```#``a1"aTamaa'a'a%ab7bJb&cbbb,bb8b?.cenc-c-d+0d;\d d+d d)d3e4:eoexe e e e eee:e- f!8fZf zff1f!fff gAgRgg#gH#helhGi4j|Ojjkx7lll Ymcmjm'ommsm9nZJn2n*nNoRoyo5rp5p8p6qNqq?r?sMVsYs=s7Good News!

            An administrator has just approved your account: {{username}} on {{site_name}}.

            Hello,

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            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!

            Someone requested that the password be reset for the following account: {{site_name}}
            Username: {{username}}

            If this was a mistake, just ignore this email and nothing will happen.

            To reset your password, visit the following address:
            {{{reset_link}}}

            To activate your user, please click the following link:
            {{{activation_link}}}

            After you activate, you will receive another email with your credentials.

            You have successfully reset your password to: {{password}}

            {{username}} has requested a password change via the password reset feature.

            His/her new password is: {{password}}

            * only available in the %1$sHobbyist and Pro versions%2$s. Serial Number: Your serial number is about to expire, please %1$s Renew Your License%2$s. Your serial number is expired, please %1$s Renew Your License%2$s. is also activated. You need to deactivate it before activating this version of the plugin."Admin Approval" Activated:"Admin Approval" Feature:"Admin Approval" on User Role:"Email Confirmation" Activated:"Email Confirmation" Landing Page:"Email" - users can Log In only with Email."Username and Email" - users can Log In with both Username and Email."Username" - users can Log In only with Username.%1$s %2$d%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s%1$s of %2$s%s couldn't be deleted%s pending« Prev«« First(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(no title)** only available in the %1$sPro version%2$s.. Extra Field Types are available in
            Hobbyist or PRO versions.... Choose...Choose1 item

            Also, you will be able to visit your site at

            You can visit your site at

            Your Profile Builder serial number is invalid or missing.
            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

            Redirect
            URL
            Title (Type)
            Title
            Type
            Meta Name
            Required
            User ID / Username
            Redirect
            URL
            User Role
            Redirect
            URL
            Note: changing the form title also changes the shortcode!ERROR: The password must have a minimum strength of %sERROR: The password must have the minimum length of %s charactersERROR: Your account has to be confirmed by an administrator before you can log in.Profile Builder A new account has been created for you on {{site_name}}A new subscriber has (been) registered!A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be editedAIMAbout YourselfAccept user payments, create subscription plans and restrict content on your membership site.Accept user payments, create subscription plans and restrict content on your website.Account ManagementActivateActivation KeyActivation LinkActivation UrlActiveAdd EntryAdd FieldAdd NewAdd New Field to the ListAdd UserAdd a number from 0 to 19. The higher the number the higher the zoom.Add new Edit-profile FormAdd new Registration FormAdd new User ListingAdd your HTML (or text) contentAdd-On has been activatedAdd-On has been deactivated.Add-On is activeAdd-On is inactiveAdd-On is ActiveAdd-OnsAddressAddress line 2Admin ApprovalAdmin Approval (*)Admin Bar SettingsAdmin Email CustomizerAdmin Notification for User Password ResetAfghanistanAfter Edit ProfileAfter LoginAfter LogoutAfter Profile Update...After RegistrationAfter Registration...After Successful Email ConfirmationAfter Successful Password ResetAfter login redirect URL (optional):Agree To Terms CheckboxAimAland IslandsAlbaniaAlbania LekAlgeriaAll UsersAll users have been successfully deletedAll-userlisting TemplateAllow Users to Log in With:Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.Allow users to log in with their email or username when accessing your site.Allow users to recover their password in the front-end using the %s.Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$sAllowable ValuesAllowed Image ExtensionsAllowed Upload ExtensionsAllowed time to display any success messages (in seconds)American SamoaAn administrator has just approved your account on %1$s (%2$s).An administrator has just unapproved your account on %1$s (%2$s).An error occurred, please try again later.AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApplyApproveApprovedAre you sure you want to delete this?ArgentinaArmeniaArubaAs an administrator you cannot change your role.AscendingAustraliaAustriaAuthor Archive ( http://sitename.com/author/admin )Automatically Log InAvailable TagsAvailable in All VersionsAvailable in Hobbyist and Pro VersionsAvailable tags for dynamic URLsAvatarAvatar SizeAvatar Size (All-userlisting)Avatar Size (Single-userlisting)Avatar UploadAvatar or GravatarAzerbaijanBackBahamasBahrainBangladeshBarbadosBasic InformationBeautiful registration forms fully customizable using the %s shortcode.Before you can access your account %1s, an administrator has to approve it. You will be notified via email.Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.Before you can access your account, an administrator needs to approve it. You will be notified via email.BehaviourBelarusBelgiumBelizeBeninBermudaBhutanBilling AddressBilling FieldsBilling Fields NameBilling Fields OrderBiographical InfoBlog DetailsBlog Details - only appears on the Registration page!Blog URLBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBoth fields are empty.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaBulk ActionsBurkina FasoBurundiCambodiaCameroonCan contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}CanadaCancelCape VerdeCayman IslandsCentral African RepublicChadChanged Email Address NotificationCheck your e-mail for the confirmation link.CheckboxChileChinaChoose Edit Profile form to display on My Account page:Choose Register form to display on My Account page:Choose how multiple selections affect the resultsChoose one of the supported field typesChoose one of the supported fields you manage install manually.Could not install plugin. Retry or install manually.CountryCountry SelectCroatiaCubaCuracaoCurrency SelectCustom RedirectsCustomize Your Forms The Way You Want (*)CyprusCzech RepublicDashboard (redirect users from accessing the dashboard)Date-formatDatepickerDeactivateDefaultDefault ContentDefault Edit ProfileDefault LatitudeDefault LongitudeDefault OptionDefault Option(s)Default RegisterDefault RegistrationDefault Registration & Registration with Email ConfirmationDefault RoleDefault Sorting CriteriaDefault Sorting OrderDefault ValueDefault WP LoginDefault WP Recover PasswordDefault WP RegisterDefault Zoom LevelDefault option of the fieldDefault value of the fieldDefault value of the textareaDeleteDelete allDelete all itemsDelete this itemDemocratic Republic of the CongoDenmarkDescendingDescriptionDisabledDisplay MessagesDisplay NameDisplay name asDisplay name publicly asDisplay name publicly as - only appears on the Edit Profile page!Display on PB formsDisplay on WooCommerce CheckoutDisplay on default WP formsDisplays customer billing fields in front-end. Displays customer shipping fields in front-end. DjiboutiDo you want toDo you want to bulk approve the selected users?Do you want to bulk delete the selected users?Do you want to bulk unapprove the selected users?DominicaDominican RepublicDownload NowDownloading and installing...E-mailERRORERROR:East TimorEasy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings.EcuadorEditEdit ProfileEdit field groupEdit the Edit-profile FormsEdit the Registration FormsEdit the User ListingEdit this itemEdit-profile FormEdit-profile FormsEgyptEl SalvadorEliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.EmailEmail AddressEmail ConfirmationEmail CustomizerEmail SubjectEmail TemplatesEmail notification resent to userEnable extra featuresEnable limit to the number of fields to be generated by users in front end forms Enable your modulesEnter a (detailed) description of the option for end users to read
            OptionalEnter a comma separated list of labels
            Visible for the userEnter 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.Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophesEnter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100Enter the minimum characters the password should have. Leave empty for no minimum limitEnter your Google Maps API key ( Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used.Equatorial GuineaEritreaError MessageEstoniaEthiopiaEverything you will need to manage your users is probably already available using the Pro Modules.Example:Excerpt ViewExisting PagesExpand the resultsExtra FeaturesExtra FunctionsExtra Profile Fields are available in Hobbyist or PRO versionsExtra shortcode parametersFacet MetaFacet TypeFaceted MenusFalkland IslandsFaroe IslandsFeatures that give you more control over your users, increased security and help you fight user registration spam.FieldField NameField PropertiesField TitleFijiFind out more about PRO ModulesFinlandFirst NameFirst/LastnameFirstnameFor Modern User InteractionFor security reasons, you must pass the remote ip to reCAPTCHA!Form ShortcodeFranceFreeFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriction-less login using %s shortcode or a widget.From (name)From (reply-to email)GabonGambiaGeneral LimitGeneral SettingsGeneric UploadsGeorgiaGermanyGet New PasswordGet started with extra fieldsGhanaGibraltarGlobal RedirectsGo Back LinkGoogle Maps API KeyGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHTMLHTML ContentHaitiHeard Island and McDonald IslandsHere you can activate / deactivate available modules for Profile Builder.HideHondurasHong KongHow does this work?HungaryIDIcelandIf you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.InactiveIncorrect phone numberIndiaIndividual User RedirectsIndonesiaInput / Hidden InputInstall NowInstallation completeInvalid activation key!Invalid key!Invalid username.IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanKeep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.KenyaKiribatiKosovoKuwaitKyrgyzstanLabelLabelsLaosLast »»Last NameLastnameLatviaLearn MoreLeave 0 for unlimited.Leave it empty for no max valueLeave it empty for no min valueLebanonLesothoLiberiaLibyaLiechtensteinLimitLimit per RoleLimit reached messageList ViewLithuaniaLoad Profile Builder's own CSS file in the front-end:Log outLog out »Log out of this accountLog out of this account.LoginLogin ( wp_login.php )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 )Login with Email or UsernameLogoutLost Password ( wp-login.php?action=lostpassword )Lost your passwordLost your password?LuxembourgMacaoMacedoniaMadagascarMake sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.MalawiMalaysiaMaldivesMaliMaltaManage Default and Extra FieldsManage FieldsMapMap HeightMarshall IslandsMartiniqueMauritaniaMauritiusMax Number ValueMax allowed number value (0 to allow only negative numbers)MayotteMediumMember ManagementMeta-nameMexicoMicronesiaMin Number ValueMin allowed number value (0 to allow only positive numbers)Minimum Password Length and Strength MeterMinimum Password Length:Minimum Password Strength:Minimum length of %d charactersMinimum required Profile Builder version:ModulesMoldovaMonacoMongoliaMontenegroMontserratMoreMore DetailsMore InfoMore Info UrlMore...MoroccoMozambiqueMultiple Edit-profile FormsMultiple Registration FormsMust be a valid email address or the tag {{reply_to}} which defaults to the administrator emailMyanmarNameName/DescriptionNamibiaNarrow the resultsNauruNepalNetherlandsNew CaledoniaNew Edit-profile FormNew Registration FormNew User ListingNew ZealandNew subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            Next » NicaraguaNicknameNigerNigeriaNiueNoNo Edit-profile Form foundNo Edit-profile Forms found in trashNo Registration Form foundNo Registration Forms found in trashNo User Listing foundNo User Listing found in trashNo items found.No options availableNo results found!NoneNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNot compatible with Profile BuilderNot compatible with your version of Profile Builder.Now that you acquired a copy of %s, you should take the time and register it with the serial number you receivedNumberNumber Step ValueNumber of PostsNumber of Users/PageOmanOnly administrators can see this field on edit profile forms.Only an administrator can add new users.OptionsOverwrite ExistingPB LoginPB Recover PasswordPB RegisterPaginationPaid & Free SubscriptionsPaid AccountsPaid Member Subscriptions - a free WordPress pluginPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayPasswordPassword Lost and Found.Password Recovery page URL (optional):Password Reset EmailPassword Reset Success EmailPassword Reset from "%1$s"Password Successfully Reset for %1$s on "%2$s"Payment ManagementPersonalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.PeruPhilippinesPhonePhone FormatPitcairnPlease add the Google Maps API key for this field.Please check that you entered the correct email address.Please check that you entered the correct username.Please choose a different field type as this one already exists in your form (must be unique) Please enter a (valid) reCAPTCHA valuePlease enter a unique field title. Please enter a valid username.Please enter a value for the required field Please enter numbers onlyPlease enter your username or email address.Please select and enter the ID or username of your user.Please select at least one user role Please try a different one!Plugin has been activatedPlugin has been deactivated.Plugin is activePlugin is inactivePlugin is ActivePolandPortugalPostcode / ZipPostsPosts from what post type will be displayed in the select.Powerful Modules (**)Privacy: I would like my site to appear in search engines, and in public listings around this network.Profile Builder Login WidgetProfile Builder RegisterPuerto RicoQatarRadio ButtonsRandom (very slow on large databases > 10K user)Recommended PluginsRecover PasswordRedirectRedirect Default WordPress Forms and PagesRedirect Default WordPress forms and pagesRedirect TypeRedirect URLRegisterRegister ( wp-login.php?action=register )Register VersionRegister Your VersionRegister page URL (optional):RegisteredRegistrationRegistration & Edit ProfileRegistration DateRegistration FormRegistration FormsRegistration with Admin ApprovalRegistration with Email ConfirmationRemember though, that the field-value combination must exist in the database.RemoveRemove All FiltersRepeat PasswordRepeatable fields saved!Repeated field groupRepeater FieldsReply ToRepublic of the CongoRequiredRequired phone number format: Resend Activation EmailReset KeyReset LinkReset PasswordReset UrlRestrict ContentRestrict the userlisting to these selected roles only
            If not specified, defaults to all existing rolesRetry InstallReunionRoleRoles to DisplayRomaniaRow CountRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaveSave ChangesSave SettingsSave the user role order from the user roles checkboxesSearchSearch FieldsSearch LocationSearch SettingsSearch UsersSearch Users by All FieldsSearch all FieldsSearch the Edit-profile FormsSearch the Registration FormsSearch the User ListingSecret KeySelectSelect AllSelect FileSelect a user role.Select on what user roles to activate Admin Approval.Select on which Profile Builder forms to display reCAPTCHASelect on which default WP forms to display reCAPTCHASelect which Profile Builder Edit-profile form to display on My Account page from WooCommerce.Select which Profile Builder Register form to display on My Account page from WooCommerce.
            This will also add the Profile Builder Login form to MyAccount page.Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be requiredSelect which user roles to show to the user ( drag and drop to re-order )Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name
            Use this at your own riskSend these credentials via email.SenegalSerbiaSet RoleSet a custom error message that will be displayed to the user.Set the avatar size on the all-userlisting onlySet the avatar size on the single-userlisting onlySet the default sorting criteria
            This can temporarily be changed for each new sessionSet the default sorting order
            This can temporarily be changed for each new sessionSet the number of users to be displayed on every paginated part of the all-userlistingSet up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.SeychellesShare a little biographical information to fill out your profile. This may be shown publicly.Ship to a different address?Shipping AddressShipping FieldsShortcodeShowShow AllShow Currency SymbolShow Post TypeShow a toggle link after this many choices. Leave blank for allShow all datesShow/Hide the Admin Bar on the Front-EndSierra LeoneSign-up DateSingaporeSingle-userlisting TemplateSint MaartenSite KeySite NameSite TitleSite URL slugSite UrlSlovakiaSloveniaSolomon IslandsSomaliaSomeone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$sSomething went wrong, we could not connect to the server. Please try again later.Something went wrong. Please try again.Sorry, but you don't have permission to do that!Sorry, you cannot upload this file type for this field.Sort TagsSouth AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.comSpecify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.comSpecify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)Specify the option which should be selected by defaultSpecify 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.Specify the time format.Sri LankaState / CountyStatusStep by Step Quick SetupStep value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimalStraight forward edit profile forms using %s shortcode.Strength indicatorStrongSubscription ManagementSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaTerms of AgreementTextareaThailandThat field is already added in this form That meta-name is already in use That username is already activated!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!The account %1s has been successfully created!The best way to add front-end registration, edit profile and login forms.The email address entered wasn't found in the database!The email you entered is not a valid email address.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical The entered passwords don't match!The entered row number is not numerical The entered value for the Datepicker is not a valid date-format The following option did not coincide with the ones in the options list: %s The following option(s) did not coincide with the ones in the options list: %s The height of the map.The latitude at which the map should be displayed when no pins are attached.The longitude at which the map should be displayed when no pins are attached.The maximum number of fields has been reached.The meta-name can only contain lowercase letters, numbers, _ , - and no spaces. The meta-name cannot be empty The password must have a minimum strength of %sThe password must have the minimum length of %s charactersThe password you entered is incorrect.The passwords do not matchThe secret key from Google, www.google.com/recaptchaThe selected user couldn't be deletedThe selected users have been activatedThe selected users have had their activation emails resentThe serial number couldn't be validated because it expired!The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!The serial number entered couldn't be validated!The serial number is about to expire soon!The serial number was successfully validated!The shortcode will be available after you publish this form.The site key from Google, www.google.com/recaptchaThe userlisting will only be visible only to the logged in usersThe userlisting will only be visible to the following rolesThe username entered wasn't found in the database!The usernames cannot be changed.The users selected password at signupThere was an error in the submitted formThere was an error performing that action!There was an error while trying to activate the userThere was an error while trying to activate the user.There was an error while trying to send the activation link to %1$s!These redirects happen after a successful action, like registration or after a successful login.These settings are also replicated in the "Admin Email Customizer" settings-page upon save.These settings are also replicated in the "User Email Customizer" settings-page upon save.This email is already in use.This email is already reserved to be used soon.This field is requiredThis form is empty.This login widget lets you add a login form in the sidebar.This message is only visible by administratorsThis username already exists.This username is already activated!This username is already reserved to be used soon.This username is invalid because it uses illegal characters.This username is now active!Time FormatTimepickerTimezone SelectTitle of the fieldTitle:To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login.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$sTo allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$sTo create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s.To use reCAPTCHA you must get an API key fromTo use reCAPTCHA you must get an API public key from:TogoTokelauTongaTown / CityTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluType your password again. Type your password.U.S. Virgin IslandsURLUgandaUkraineUnapproveUnapprovedUnapproved User NotificationUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUpdateUpgrade Profile BuilderUpload UruguayUse these shortcodes on the pages you want the forms to be displayed:Use this shortcode on the page you want the form to be displayed:User Approval NotificationUser CountUser Email CustomizerUser Fields TagsUser IDUser ID / UsernameUser ID or UsernameUser IdUser ListingUser MetaUser NicenameUser RoleUser Role based RedirectsUser RolesUser Roles OrderUser not foundUser successfully approved!User successfully deleted!User successfully unapproved!User to edit:User-RoleUser-statusUserlisting SettingsUsernameUsername and EmailUsername or E-mailUsername or EmailUsernames cannot be changed.Users can register themselves or you can manually create users here.Users cannot currently register themselves, but you can manually create users here.Users successfully approved!Users successfully deleted!Users successfully unapproved!Users with Unconfirmed Email AddressUzbekistanValid tags {{reply_to}} and {{site_name}}ValidationValue must be a multiplier of %1$sValue must be greater than or equal to %1$sValue must be less than or equal to %1$sVanuatuVaticanVenezuelaVersion %sVery WeakVery weakVietnamView MapView all extra shortcode parametersView the Edit-profile FormView the Registration FormView the User ListingVisibilityVisible choicesVisible only to logged in users?Visible to following RolesWallis and FutunaWeakWebsiteWelcome to %1$s!


            Your username is:%2$sWelcome to %1$s!


            Your username is:%2$s and password:%3$sWestern SaharaWhether the field is required or notWhether the field should be added to the WooCommerce checkout form or notWhether to automatically log in the newly registered user or not
            Only works on single-sites without "Admin Approval" and "Email Confirmation" features activated
            WARNING: Caching the registration form will make automatic login not workWhether to redirect the user to a specific page or notWhich redirect happens depends on the following priority:With Extra Profile Fields you can create the exact registration form your project needs.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.With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts.With these you can redirect various WordPress forms and pages to pages created with profile builder.WooCommerce SyncWooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!Yahoo IMYemenYesYes, I'd like to create a new siteYimYou are already logged in. You can change your password on the edit profile form.You are currently logged in as %1$s. %2$sYou are currently logged in as %1s. You don't need another account. %2sYou are currently logged in as %s. You are not allowed to do this.You can add the information for the %s after you add a entryYou can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.You can find it in the Profile Builder menu.You can find the default file here: %1$sYou can't add duplicate redirects!You cannot register this user roleYou decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.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.You do not have permission to view this user list.You do not have the required user role to view this user list.You don't have any pagination settings on this userlisting!You either don't have permission for that action or there was an error!You have successfully reset your password to: %1$sYou must be logged in to edit your profile.You must enter a valid email address.You must enter a value for the date-format You must enter a value for the row number You must enter the secret key You must enter the site key You must select a field You need to activate the Userlisting feature from within the "Modules" tab!You need to specify the title of the form before creating itYou use the following tags in your URLs to redirect users to various pages.You will receive a link to create a new password via email.You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$sYour account has been successfully created!Your account has to be confirmed by an administrator before you can log in.Your account has to be confirmed by an administrator before you can use the "Password Recovery" feature.Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.Your account on %1$s has been approved!Your account on %1$s has been unapproved!Your account on {{site_name}} has been approved!Your account on {{site_name}} has been unapproved!Your email was successfully confirmed.Your password has been successfully changed!Your profile has been successfully updated!Your selected password at signupYour session has expired! Please refresh the page and try againYour session has expired! Please refresh the page and try again.Your site url will look like this:
            ZambiaZimbabwe[%1$s] Activate %2$s[%1$s] Your new account information[{{site_name}}] Activate {{username}}[{{site_name}}] Notice of Email Change[{{site_name}}] Password Reset[{{site_name}}] Password Reset Successfullyapprove this user?approvedconfirm this email yourself?delete this user from the _signups table?delete this user?displays all users except the ones you specified the user_id fordisplays only the users that you specified the user_id fordisplays users having a certain meta-value within a certain (extra) meta-fieldemailgenerates a url of the current website homepage.herein WordPress the site url can be different then the home urlis not a number.is not a valid phone number.must be a greater than or equal to must be a multiplier of must be less than or equal to reCAPTCHArequiredresend the activation link?showthe ID of the userthe URL of the previously visited pagethe URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces.unapprove this user?unapprovedusernameusername or emailPO-Revision-Date: 2017-08-01 13:43:07+0000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=n > 1; X-Generator: GlotPress/0.1 Project-Id-Version: Profile Builder

            Bonne nouvelle !

            Un administrateur vient juste d'approuver votre compte {{username}} sur {{site_name}}.

            Bonjour,

            Un administrateur vient malheureusement de refuser votre compte : {{username}} sur {{site_name}}.

            Bienvenu(e) sur {{site_name}} !

            Votre nom d'utilisateur est :{{username}} et votre mot de passe :{{password}}

            Bienvenu(e) sur {{site_name}}!

            Votre nom d'utilisateur est :{{username}} et votre mot de passe :{{password}}

            Avant que vous ne puissiez accéder à votre compte, un administrateur doit d'abord l'approuver. Vous serez informé par E-mail.

            Nouvel adhérent sur {{site_name}}.

            Nom d'utilisateu r:{{username}}

            Adresse de messagerie :{{user_email}}

            Nouvel adhérent sur {{site_name}}.

            Nom d'utilisateur:{{username}}

            Adresse de messagerie:{{user_email}}

            La fonctionnalité Approbation Admin était activée au moment de l'inscription, donc merci de vous souvenir qu'il faut que vous approuviez cet utilisateur avant qu'il/elle ne puisse se connecter!

            Quelqu'un a demandé que le mot de passe soit réinitialisé pour le compte suivant: {{site_name}}
            Nom utilisateur: {{username}}

            Si c'est une erreur, ignorez cet Email et rien ne se produira.

            Pour réinitialiser votre mot de passe visitez l'adresse suivante:
            {{{reset_link}}}

            Pour activer votre compte, merci de cliquer sur le lien suivant :
            {{{activation_link}}}

            Une fois l'activation réalisée, vous recevrez une autre E-mail avec vos identifiants

            Votre mot de passe à été réinitialisé avec succès pour: {{password}}

            {{username}} demandé un changement de mot de passe via la fonction de réinitialisation de mot de passe.

            Son nouveau mot de passe est: {{password}}

            * disponible uniquement dans les versions %1$sHobbyist et Pro %2$s.Numéro de Série :Votre numéro de série est sur le point d'expirer, s'il vous plaît %1$s Renouvelez votre licence %2$s.Votre numéro de série est expiré, s'il vous plaît %1$s Renouvelez votre licence %2$s.est aussi activé. Vous devez le désactiver avec d'activer cette version de l'extension."Approbation par l'Admin" Activée:Fonctionnalité "Approbation par l'Admin":"Approbation Administrateur" sur le rôle de l'utilisateur:"Confirmation par e-mail" Activée:Page d'arrivée après "Confirmation de l'adresse de messagerie":"E-mail" - les utilisateurs peuvent se connecter uniquement avec leur E-mail.«Nom d'utilisateur et E-mail" - les utilisateurs peuvent s'identifier à la fois avec le Nom d'utilisateur et l'E-mail."Nom utilisateur" - les utilisateurs peuvent se connecter uniquement avec leur Nom d'utilisateur.%1$s %2$d%1$s a demandé un changement de mot de passe via la fonctionnalité de ré-initialisation du mot de passe.
            Son nouveau mot de passe est :%2$s%1$s de %2$s%s n'a pas pu être supprimé%s en attente« Précédent«« Premier(ex. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(aucun titre)** disponible uniquement dans la version %1$sPro %2$s.Des champs additionnels sont disponibles dans les versions Hobbyist et PRO .Choisir...Choisir1 élément

            Aussi, vous serez capable de visite votre site sur

            Vous pouvez visiter votre site sur

            Votre numéro de série de Profile Builder est invalide ou manquant.
            Merci d' %1$s enregistrer votre copie%2$s pour recevoir automatiquement mises à jour et supports. Besoin d'une licence ? %3$sAchetez la maintenant%4$s

            Redirection
            URL
            Titre (Type)
            Titre
            Type
            Meta-nom
            Obligatoire
            Identification utilisateur / Nom d'utilisateur
            Redirection
            URL
            Rôle de l'utilisateur
            Redirection
            URL
            Note : modifier le titre du formulaire change aussi le shortcode !ERREUR: Le mot de passe doit avoir une force minimum de %sERREUR: Le mot de passe doit avoir au minimum %s caractèresERREUR : Votre compte doit être confirmé par un administrateur avant que vous ne puissiez vous connecter.Profile Builder Un nouveau compte a été créé pour vous sur {{site_name}}Un nouvel adhérent a (été) enregistré !Un identifiant unique, généré automatiquement, pour ce champ particulier
            Vous pouvez utiliser ceci en lien avec les filtres pour cibler cet élément si besoin
            Ne peut être modifiéAIMA propos de vousAccepter les paiements des utilisateurs, créer des plans de souscription et restreindre le contenu sur votre site d'adhésion.Accepter les paiements des utilisateurs, créer des plans de souscription et restreindre le contenu sur votre site.Gestion des comptesActiverClé d'activationLien d'activationURL d'activationActiveAjouter une entréeAjouter un ChampAjouter un nouveauAjouter un nouveau champ à la listeAjouter un UtilisateurAjoute un nombre de 0 à 19. Plus le nombre est haut, plus le zoom le sera.Ajouter un nouveau formulaire de modification de profilAjouter un nouveau formulaire d'inscriptionAjouter un nouveau listing d'utilisateursAjouter votre contenu HTML (ou texte)Add-On a été activé.Les Add-On ont été désactivésAdd-On est active. Add-On est inactiveAdd-On est active.Add-onsAdresseAdresse ligne 2Approbation par l'AdminApprobation par l'AdministrateurParamètres de la barre AdministrationE-mails personnalisés à l'AdminAutorisation Administrateur pour faire une réinitialisation du mot de passe utilisateurAfghanistanAprès Modification du profilAprès ConnexionAprès déconnexionAprès une mise à jour de profil...Après inscriptionAprès inscription...Après avoir réussi la confirmation de l'Email Après avoir réussi la réinitialisation du mot de passeURL de redirection après connexion (optionnel) :Accepter les conditions par une case à cocherAimAland IslandsAlbaniaAlbania LekAlgeriaTous les UtilisateursTous les utilisateurs ont bien été supprimésModèle de tous les listing d'utilisateursPermet aux utilisateurs à se connecter avec :Autorisez différents rôles-utilisateur à modifier les informations qui leur sont spécifiques. Mettez en place des formulaires multiples de modification de profil avec des champs différents suivant les rôles utilisateurs.Autoriser les utilisateurs à se connecter avec leur adresse de messagerie ou leur nom d'utilisateur lorsqu'ils accèdent à votre site.Permet aux utilisateurs de récupérer leur mot de passe dans le front-end en utilisant le %s.Permettre à vos utilisateurs d'avoir un compte abonnement payant avec Profile Builder. %1$sEn savoir plus>%2$s %3$sEffacer%4$sValeurs permisesExtensions Autorisées des ImagesExtensions Autorisées au TéléchargementTemps autorisé pour afficher tout message de succès (en secondes)American SamoaUn administrateur vient d'approuver votre compte sur %1$s (%2$s).Un administrateur vient de refuser votre compte sur %1$s (%2$s).Une erreur est survenue, s'il vous plaît réessayer plus tard.AndorraAngolaAnguillaAntarcticaAntigua and BarbudaAppliquerApprouverApprouvéÊtes-vous sûr de vouloir supprimer ceci?ArgentinaArmeniaArubaComme administrateur, vous ne pouvez pas changer votre rôle.AscendantAustraliaAustriaArchive Auteur ( http://sitename.com/author/admin )Se connecter automatiquementTags disponiblesDisponible dans toutes les versionsDisponible dans la version Hobbyist ou ProBalises disponibles pour les URL dynamiquesAvatarTaille de l'AvatarTaille d'avatar (listing de tous les utilisateurs)Taille d'avatar (listing d'un seul utilisateur)Téléchargement d'avatarAvatar ou GravatarAzerbaijanPrécédentBahamasBahrainBangladeshBarbadosInformations de baseBeaux formulaires d'inscription entièrement personnalisables en utilisant le shortcode %s.Votre compte %1s doit d'abord être approuvé par un administrateur avant que ne ne puissiez y accéder. Un E-mail vous sera envoyé.Avant que vous ne puissiez accéder à votre compte %1s, vous devez confirmer votre adresse de messagerie. Merci de consulter votre boite de réception et de cliquer sur le lien d'activation.Votre compte doit d'abord être approuvé par un administrateur avant que ne ne puissiez y accéder. Un E-mail vous sera envoyé.ComportementBelarusBelgiumBelizeBeninBermudaBhutanAdresse de facturationInformations de facturationNom des champs de facturationChamps de facturation CommandeInformations biographiquesDetails du blogDetails du blog - Apparaîtra uniquement sur la page d'inscription! URL du blogBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaLes deux champs sont vides.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaActions GroupéesBurkina FasoBurundiCambodiaCameroonPeut contenir les balises dynamiques suivantes:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}CanadaAnnulerCape VerdeCayman IslandsCentral African RepublicChadNotification de changement d'adresse emailMerci de consulter votre boite de réception pour le lien d'activation.Case à cocherChileChinaChoisissez la forme d'édition de profil à afficher sur la page Mon compte:Choisissez le formulaire d'inscription à afficher sur la page de mon compte:Choisir combien de selections vont affecter le résultatChoisir un des champs supportéChoisissez l'un des champs supportés que vous gérez installer le manuellement.Ne peut installer le plugin. Essayer à nouveau ou installer manuellement.PaysSélection du PaysCroatiaCubaCuracaoSélecteur de deviseRedirections personnaliséesPersonnaliser Vos Formulaires Comme Vous Le Souhaitez (*)CyprusCzech RepublicTableau de bord (rediriger les utilisateurs pour accéder au tableau de bord)Format de la dateOutil de sélection de dateDésactiverPar défautContenu Par DéfautEdition de profil par défautLatitude par défautLongitude par défautOption Par DéfautOption(s) Par DéfautEnregistrement par défautInscription par défautInscription par défaut & inscription avec confirmation de l'adresse de messagerieRôle par défautCritère de tri par défautOrdre de tri par défautValeur Par DéfautConnexion WP par défautRécupération mot de passe WP par défautEnregistrement WP par défautNiveau de zoom par défautOption par défaut du champValeur par défaut du champValeur par défaut de la zone de texteSupprimerTout supprimerSupprimer tous les élémentsSupprimer cet élémentDemocratic Republic of the CongoDenmarkDescendantDescriptionDésactivéAfficher les messagesAfficher le nomAfficher le nom commeNom publiqueAffichage nom public comme - apparaissant uniquement sur la page de modification de profil!Affichage sur les formes de PBAfficher la facture sur WooCommerceAfficher les formes WP par défautAfficher le champ de facturation Afficher les champs pour adresse d'expédition du client sur le "Front-End".DjiboutiVoulez-vousVoulez-vous approuver tous les utilisateurs sélectionnés ?Voulez-vous supprimer tous les utilisateurs sélectionnés ?Voulez-vous refuser tous les utilisateurs sélectionnés ?DominicaDominican RepublicTéléchargez maintenantTéléchargement et Installation en cours…Adresse de messagerieERREURERREUR :East TimorFacile pour modifier les modèles permettant de lister les utilisateurs de votre site web tout comme créer des formulaires pour un seul utilisateur. Basé sur des shortcodes, offrant de nombreuses options pour personnaliser vos listings.EcuadorEditerModifier le ProfilModifier le groupe du champModifier les formulaires de modification de profilModifier les formulaires d'inscriptionModifier le listing d'utilisateursModifier cet élémentFormulaire de modification de profilFormulaires de modification de profilEgyptEl SalvadorEliminer les mots de passe trop faibles en imposant une longueur minimale et un niveau de sûreté minimum.Adresse de messagerieAdresse courrielConfirmation de l'adresse de messagerieOutil de personnalisation d'e-mailsSujet de l'E-mailModèles d'EmailsL'e-mail de notification a été ré-envoyé à l'utilisateurActiver les fonctionnalités supplémentairesAutoriser la limite du nombre de champs générés par des utilisateurs dans les formulaires frontend.Activer vos modulesEntrez une description (détaillée) de l'option que les utilisateurs finaux pourront lire
            OptionnelEntrez une liste de labels séparés par une virgule
            Visible par l'utilisateurEntrer une liste des valeurs possibles séparées par des virgules. A l'inscription, si la valeur fournie par l'utilisateur ne correspond à aucune de ces valeurs, l'utilisateur ne sera pas inscrit.Entrez une liste de valeurs séparées par une virgule.
            Cela peut être n'importe quoi, puisque c'est masqué pour l'utilisateur, mais ça ne devrait pas contenir de caractères spéciaux ni d'apostrophes.Entrez une description détaillée des conditions générales que l'utilisateur pourra lire.
            Vous pouvez utiliser des liens via la syntaxe standard HTML: <a href="url_personnalisee">texte_personnalise</a>Entrez une valeur (entre 20 et 200) pour la taille de l'Avatar
            Si aucune valeur n'est spécifiée, la valeur par défaut sera de 100Entrez le nombre minimum de caractères que le mot de passe doit avoir. Laissez ce champ vide si vous ne voulez aucune limite minimaleEntrez la clé API de Google Maps ( Get your API key ). Si plus d'un champ carte est ajouté au formulaire, la clé API de la première map affichée sera utilisée.Equatorial GuineaEritreaMessage d'erreurEstoniaEthiopiaTout ce dont vous aurez besoin pour gérer vos utilisateurs est probablement déjà disponible dans les Modules Pro.Exemple : Vue par extraitPages existantesEtendre les résultatsFonctionnalités supplémentairesFonctions supplémentairesLes champs supplémentaires de profil sont disponibles dans les version Hobbyist ou PRO.Paramètres supplémentaires du shortcodeMéta facetteType de facetteMenus facettésFalkland IslandsFaroe IslandsDes fonctionnalités qui vous donnent plus de contrôle sur vos utilisateurs, une sécurité renforcée et qui vous aident à lutter contre le spam d'inscription d'utilisateurs.ChampNom du champsPropriétés du ChampTitre du champFijiDécouvrez les Modules PROFinlandPrénomPrénom/Nom de famillePrénomPour une Interaction Utilisateur ModernePour des raisons de sécurité, vous devez donner l'adresse ip distante au reCAPTCHA!Shortcode du formulaireFranceGratuitFrench GuianaFrench PolynesiaFrench Southern TerritoriesConnexion sans problème en utilisant %s un shortcode ou un widget.De (nom)De (réponse à)GabonGambiaLimite généraleParamètres GénérauxTéléchargements GénériquesGeorgiaGermanyRé-initialiser votre mot de passeBien commencer avec les champs supplémentairesGhanaGibraltarRedirection globaleLien vers la page précédenteClé de l'API Google MapsGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHTMLContenu HTMLHaitiHeard Island and McDonald IslandsIci vous pouvez activer / désactiver les modules disponibles pour Profile Builder.MasquerHondurasHong KongComment cela marche-t-il?HungaryIDIcelandSi vous aimez utiliser %1$s veuillez nous évaluer sur WordPress.org. Plus d'utilisateurs heureux résulte en plus de fonctionnalités, moins de bogues et un meilleur support pour tous.Si vous enregistrez cette version de Profile Builder, vous recevrez des informations concernant les mises à jours, les correctifs et le support technique.InactiveNuméro de téléphone incorrectIndiaRedirections d'utilisateurs individuelsIndonesiaEntrée visible / Entrée cachéeInstaller maintenantInstallation terminéeClé d'activation incorrecte !Clé incorrecte !Nom d'utilisateur non-valide.IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanLaissez vos utilisateurs hors du tableau de bord WordPress, redirigez-les sur la page d'accueil après qu'ils se sont identifiés ou inscrits, tout en quelques quelques clics.KenyaKiribatiKosovoKuwaitKyrgyzstanLabelLabelsLaosDernier »»Nom de familleNom de familleLatviaEn savoir plusLaisser 0 pour illimitéLaisser vide pour ne pas avoir de valeur maximaleLaisser vide pour ne pas avoir de valeur minimaleLebanonLesothoLiberiaLibyaLiechtensteinLimiteLimite par rôleLimite atteinte du messageVue par listeLithuaniaCharge le fichier CSS de Profile Builder sur l'interface cliente:DéconnexionDéconnexion »Se déconnecter de ce compteSe déconnecter de ce compte.IdentificationIdentification ( wp_login.php )La connexion se fera avec votre adresse de messagerie. Ce champ n'apparaîtra PAS sur l'interface client ! ( vous pouvez changer ces paramètres dans l'onglet "%s" )Se connecter avec une adresse de messagerie ou avec le nom d'utilisateurDéconnexionMot de passe perdu ( wp-login.php?action=lostpassword )Mot de passe perduMot de passe perdu?LuxembourgMacaoMacedoniaMadagascarS'assurer que les utilisateurs s'incrivent avec des adresses de messagerie authentiques. Lors de l'inscription, un e-mail sera envoyé aux utilisateurs afin de confirmer leur adresse de messagerie.MalawiMalaysiaMaldivesMaliMaltaGérez les Champs par défaut et les Champs supplémentairesGérez les ChampsPlanHauteur de la carteMarshall IslandsMartiniqueMauritaniaMauritiusValeur maximaleValeur maximale permise (0 pour n'autoriser que les nombres négatifs) MayotteMoyenGestion des membresMeta-nomMexicoMicronesiaValeur minimaleValeur minimale permise (0 pour n'autoriser que les nombres positifs)Longueur Minimale du Mot De Masse et Métrique de SûretéLongueur minimale du Mot de Passe :Sûreté minimale du Mot de Passe:Longueur minimale de %d caractèresVersion minimum de Profil Builder requise :ModulesMoldovaMonacoMongoliaMontenegroMontserratPlusPlus de détailsPlus d'infosURL vers plus d'infosPlus...MoroccoMozambiqueFormulaires Multiples de Modification de ProfilFormulaires Multiples d'InscriptionCe doit être une adresse Mail valide ou bien le tag {{reply_to}} par défaut de l'adresse Mail de l'administrateur.MyanmarNomNom/DescriptionNamibiaRestreindre les résultatsNauruNepalNetherlandsNew CaledoniaNouveau formulaire de modification de profilNouveau formulaire d'inscriptionNouveau listing d'utilisateursNew ZealandNouvel adhérent sur %1$s.

            Nom d'utilisateur :%2$s
            E-mail :%3$s
            Suivant » NicaraguaPseudonymeNigerNigeriaNiueNonAucun formulaire de modification de profil trouvéAucun formulaire de modification de profil trouvé dans la corbeilleAucun formulaire d'inscription trouvéAucun formulaire d'inscription trouvé dans la corbeilleAucun listing d'utilisateurs trouvéAucun listing d'utilisateur trouvé dans la corbeilleAucun élément trouvé.Aucune option disponibleAucun résultat trouvé !AucunNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNon compatible avec Profile Builder.Incompatible avec votre version de Profile BuilderMaintenant que vous possédez une copie de %s, vous devriez prendre le temps de l'enregistrer avec le numéro de série que vous avez reçu.NombreNuméro de l'étapeNombre de messages postésNombre d'utilisateurs/pageOmanSeuls les administrateurs peuvent voir ce domaine sur les formes modifier de profil.Seul un administrateur peut ajouter de nouveaux utilisateurs.OptionsEcraser l'existantConnexion PB Récupération Mot de passe PBEnregistrement PBPaginationAbonnements payants et gratuitsPayé ces comptesPayer les abonnements membres - un plugin WordPress gratuitPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayMot de passeMot de passe perdu et retrouvé.URL de la page de ré-initialisation du mot de passe (optionnel) :Email de Réinitialisation Mot de passeEmail de Mot de passe réinitialisé avec succèsMot de passe ré-initialisé de "%1$s"Mot de passe bien ré-initialisé pour %1$s sur "%2$s"Gestion des paiementsPersonnalisez tous les e-mails envoyés à vos utilisateurs ou administrateurs. Au moment de l'inscription, de la confirmation de l'adresse de messagerie, de l'approbation / rejet par les administrateurs.PeruPhilippinesTéléphoneFormat du numéro de téléphonePitcairnVeuillez ajouter la clé API Google Maps pour ce champ.Merci de vérifier que vous avez entré une adresse de messagerie correcte.Merci de vérifier que vous avez entré un nom d'utilisateur correct.Merci de choisir un champ différent, car celui-ci existe déjà dans votre formulaire (et il doit être unique) S'il vous plaît entrer une valeur reCAPTCHA (valide)Veuillez entrer un titre unique au champ. Merci d'entrer un nom d'utilisateur valide.Merci d'entrer une valeur pour le champ obligatoireVeuillez entrer uniquement des nombres.Merci d'entrer votre nom d'utilisateur ou votre adresse de messagerie.S'il vous plaît sélectionner et entrer l'idantifiant ou le nom d'utilisateur de votre utilisateur.S'il vous plaît sélectionner au moins un rôle utilisateur Merci d'en essayer un(e) autre !Le plugin a été activéLe plugin a été désactivéPlugin désactivéPlugin désactivéLe plugin est activéPolandPortugalCode PostalMessages postésType de posts dont les posts seront affichés dans la sélection.Des Modules Puissants (**)Sécurité : J'aimerais que mon site apparaisse dans les moteurs de recherche, dans les listes publiques autour de ce réseau.Profile Builder Login WidgetInscription Profil BuilderPuerto RicoQatarBoutons RadioAléatoire (très lent sur les énormes bases de données > 10K utilisateurs)Plugins recommandésRécupérer le Mot De PasseRedirectionsRediriger formes et Pages WordPress par défautRedirection par défaut des formes et pages WordPressType de redirectionRediriger l'URLS'inscrireEnregistrement ( wp-login.php?action=register )Enregistrez la VersionEnregistrez Votre VersionURL de la page d'inscription (optionnel) :InscritInscriptionInscription & Modification de ProfilDate d'inscriptionFormulaire d'inscriptionFormulaires d'inscriptionInscription avec Approbation AdminInscription avec confirmation de l'adresse de messagerieRappelez-vous cependant que la combinaison champ-valeur doit exister dans la base de données.SupprimerRetirer tout les filtresRépétez votre mot de passeChamps répétables sauvés!Groupe de champs répétablesChamps répétablesRéponse àRepublic of the CongoObligatoireNuméro de téléphone requisRé-envoyer l'e-mail d'activationTouche de réinitialisationLien de réinitialisation Ré-initialiser le mot de passeRéinitialisation UrlRestreindre le contenuRestreint le listing d'utilisateurs aux groupes sélectionnés uniquement
            Si aucune valeur n'est spécifiée, la valeur par défaut sera pour tous les groupes d'utilisateursRé-essayer l'installationReunionRôleGroupes à afficherRomaniaNombre de LignesRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaEnregistrerEnregistrer les modificationsEnregistrer les ParamètresEnregistrer l'ordre des rôles d'utilisateurs à partir des cases à cocherRechercherChamps de rechercheLieu de rechercheParamètres de rechercheUtilisateurs de la rechercheRechercher des utilisateurs par tous les champsRechercher parmi tous les champsRechercher dans les formulaires de modification de profilRechercher dans les formulaires d'inscriptionRechercher des listings d'utilisateursClé secrèteListe déroulanteTout SélectionnerSélectionner un fichiersélectionner un rôle d'utilisateurSélectionnez les rôles utilisateur pour activer l'approbation de l'administrateur.Sélectionner sur quelles formes Profil Builder, afficher reCAPTCHASélectionner sur quelles formes WP par défaut, afficher reCAPTCHASélectionnez quelle forme d'édition Profile Builder à afficher sur la page Mon compte de WooCommerce.Sélectionnez le formulaire d'enregistrement Profile Builder à afficher sur la page Mon compte de WooCommerce.
            Cela ajoutera également le formulaire de connexion Profile Builder à la page de Mon compte.Sélectionnez les champs de facturation WooCommerce à afficher à l'utilisateur (glisser-déplacer pour réorganiser) et lesquels sont requisSélectionnez quels rôles utilisateur à montrer à l'utilisateur (glisser-déposer pour réorganiser)Sélectionner 'Oui' ajoutera le champ à la liste, mais écrasera n'importe quel autre champ dans la base de données qui aurait le même méta-nom
            A utiliser à vos risques et périlsEnvoyer ces identifiants par E-mail.SenegalSerbiaFixer le rôleDéfinir un message d'erreur personnalisée qui sera affiché à l'utilisateur.Fixer la taille de l'avatar uniquement sur le listing de tous les utilisateurs.Fixer la taille de l'avatar du listing d'un seul utilisateur uniquementFixer le critère de tri par défaut.
            Ceci peut être temporairement modifié à chaque nouvelle sessionFixez l'ordre de tri par défaut.
            Ceci peut être temporairement modifié à chaque nouvelle sessionPréciser le nombre d'utilisateurs à afficher sur chaque page de la liste des utilisateurs.Mettez en place des formulaires multiples d'inscription avec différents champs suivant les rôles utilisateur. Capturez des informations variées à partir de divers types d'utilisateurs.SeychellesPartagez quelques informations biographiques pour compléter votre profil. Ceci peut être affiché publiquement.Envoyé à une adresse différenteAdresse de livraisonInformations de livraisonShortcodeAfficherAfficher toutAffiche le symbole de la monnaieAfficher le type du postAfficher un lien de redirection après autant de choix. Laisser blanc pour toutAfficher toutes les datesAfficher/masquer la barre Administration sur l'interface clientSierra LeoneDate d'inscriptionSingaporeModèle d'un seul listing d'utilisateursSint MaartenClé pour siteNom du site webTitre du siteURL du siteURL du site webSlovakiaSloveniaSolomon IslandsSomaliaQuelqu'un a demandé que le mot de passe soit ré-initialisé sur le compte suivant: %1$s
            Si c'est une erreur, ignorez simplement cet e-mail et il ne se passera rien.
            Pour ré-initialiser votre mot de passe, cliquez sur le lien suivant:%2$sProblème de connection au serveur. Merci de réessayer plus tard.Quelque chose ne s'est pas déroulé correctement. Veuillez réessayer.Désolé, mais vous n'avez pas la permission de faire cela !Désolé, vous ne pouvez pas télécharger ce type de fichier pour ce champ.Trier les étiquettesSouth AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpécifiez l'URL de la page vers laquelle les utilisateurs seront redirigés une fois inscrits via ce formulaire
            Utilisez le format suivant : http://www.monsite.comSpécifiez l'URL de la page où les utilisateurs seront redirigés lorsqu'ils mettent à jour leur profil en utilisant ce formulaire
            Utilisez le format suivant : http://www.monsite.comSpécifiez l'extension(s) que vous souhaitez limiter au téléchargement
            Exemple: .ext1, .ext2, .ext3
            Si non spécifié, toutes les extensions de fichiers WordPress sont autorisées par défaut(.*)Spécifiez l'extension(s) que vous souhaitez limiter en téléchargement
            Example: .ext1,.ext2,.ext3
            Si non spécifié, par défaut les extensions suivantes: .jpg,.jpeg,.gif,.png (.*)Spécifiez les nombre de lignes pour un champ 'Zone de Texte'
            Si vous ne spécifiez pas de champ, la valeur par défaut sera de 5Spécifiez l'option qui devrait être cochée par défaut
            S'il y a plusieurs valeurs, séparez-les par une ',' (virgule)Spécifiez l'option qui devrait être sélectionnée par défautSpécifie la page vers laquelle les utilisateurs seront redirigés après avoir confirmé leur adresse de messagerie. Cette page peut être différente suivant la ou les page(s) d'inscription et peut être changée à n'importe quel moment. Si aucune n'est sélectionnée, une page de confirmation simple sera affichée à l'utilisateur.Spécifier le format du tempsSri LankaRegion / PaysStatutConfiguration rapide étape par étape Valeur d'étape 1 pour permettre uniquement les entiers, 0.1 pour autorise les entiers et les nombre à 1 décimal.Simple modification du profil en utilisant le shortcode %s.Indicateur de sûretéFortGestion des inscriptionsSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaConditions GénéralesZone de TexteThailandCe champ a déjà été ajouté à ce formulaire Le meta-nom est déjà utilisé Ce nom d'utilisateur est déjà activé !La fonctionnalité "Approbation Admin" était activée au moment de l'inscription, donc merci de vous souvenir que vous devez approuver cet utilisateur avant qu'il/elle puisse se connecter !Votre compte %1s a bien été créé !Le meilleur moyen d'ajouter une inscription via l'interface client, de modifier un profil et des formulaires de connexion.L'adresse de messagerie saisie n'a pas été trouvée dans la base de données !L'adresse de messagerie que vous avez entrée n'est pas une adresse de messagerie valide.La taille de l'avatar n'est pas comprise entre 20 et 200 La taille de l'avatar n'est pas une valeur numérique Les mots de passe entrés sont différents !Le numéro entré pour la ligne n'est pas numérique La valeur entrée pour l'outil de sélection de date ne respecte pas le format de date L'option suivante n'a pas coïncidé avec celles de la liste d'options: %s Le(s) options(s) suivante(s) n'a(ont) pas coïncidé pas avec celles de la liste d'options : %s La hauteur de la carte.La latitude à laquelle la carte sera affichée quand il n'y a aucune punaise attachée.La longitude à laquelle la carte sera affichée quand il n'y a aucune punaise attachée.Le nombre maximum de champs a été atteintLe nom de la méta peut seulement contenir des lettres minuscules, des nombres, _ , - et aucun espace. Le méta-nom ne peut pas être vide Le mot de passe doit avoir une résistance minimale de %sLe mot de passe doit avoir une longueur minimale de %s caractèresLe mot de passe que vous avez entré n'est pas correct.Les mots de passe sont différentsLa clé secrète de Google, www.google.com/recaptchaL'utilisateur sélectionné n'a pas pu être suppriméL'utilisateur sélectionné a bien été activéLes e-mails d'activation ont été ré-envoyés aux utilisateurs sélectionnésLe numéro de série n'a pas pu être validé car il a expiré !Le numéro de série n'a pas pu être validé car le processus a dépassé le délai. Ceci peut être dû à une panne du serveur. Merci de ré-essayer plus tard !Le numéro de série entré n'a pas pu être validé !Le numéro de série est bientôt sur le point d'expirer!Le numéro de série a bien été validé !Le shortcode sera disponible après la publication de ce formulaire.La clé du site donné par Google est www.google.com/recaptchaLe listing d'utilisateurs sera visible uniquement par les utilisateurs connectésLe listing d'utilisateurs sera visible uniquement par les rôles suivantsLe nom d'utilisateur que vous avez entré n'a pas été trouvé dans la base de données !Les noms d'utilisateur ne peuvent pas être changés.Les mots de passe des utilisateurs sélectionnés à l'enregistrementIl y avait une erreur dans le formulaire soumisIl y a eu une erreur lors de la réalisation de cette action !Il y a eu une erreur lors de l'activation de l'utilisateurIl y a eu une erreur lors de l'activation de cet utilisateur.Il y a eu une erreur lors de l'envoi du lien d'activation à %1$s !Ces redirections se produisent après une action réussie, comme l'enregistrement ou après une connexion réussie.Ces réglages sont également sauvegardés dans la page des réglages de "Customisation du Mail de l'Administrateur".Ces paramètres sont aussi répliqués dans la page de paramètres des "E-mails personnalisés aux utilisateurs" lors de la sauvegarde.Cette adresse de messagerie est déjà utilisée.Cette adresse de messagerie est déjà réservée et sera bientôt utilisée.Ce champ est obligatoireCe formulaire est vide.Cette widget d'identification vous permet d'ajouter un formulaire d'identification sur la barre latérale.Ce message n'est visible que par les administrateurs.Ce nom d'utilisateur existe déjà.Ce nom d'utilisateur est déjà activé !Ce nom d'utilisateur est déjà réservé et va bientôt être utilisé.Ce nom d'utilisateur est invalide parce qu'elle utilise des caractères illégaux.Ce nom d'utilisateur est désormais actif !Format du tempsSélecteur d'heureSélection du Fuseau HoraireTitre du champTitre :Pour activer votre inscription, cliquez s'il vous plaît, sur le lien suivant :

            %s%s%s

            Après l'avoir activée, vous allez recevoir * un autre courriel * avec votre procédure de connexion.Pour permettre aux utilisateurs de s'enregistrer sur votre site via Profile Builder, vous devez d'abord activer l'enregistrement des utilisateurs. Aller à %1$s Paramètres Network %2$s, et sous Paramètres d'enregistrement assurez-vous de vérifier "Les comptes utilisateur peuvent être enregistrés». %3$s Renvoyer %4$sPour autoriser les utilisateurs de s'inscrire sur le site via Profile Builder, vous devez permettre l'enregistrement des utilisateurs. Allez à %1$sSettings -> General%2$s et cocher la case " Tout le monde peut s'enregistrer". %3$sEffacer%4$sPour créer une page contenant les utilisateurs enregistrés à ce site/blog, insérer le shortcode suivant dans une page de votre choix: %s.Pour utiliser reCAPTCHA vous devez avoir une clé d'API dePour utiliser reCAPTCHA vous devez avoir une clé publique d'API de :TogoTokelauTongaVilleTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluRe-tapez votre mot de passe.Tapez votre mot de passe.U.S. Virgin IslandsURLUgandaUkraineRefuserRefuséNotification lors du refus d'un utilisateurUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsMettre à jourMettre à jour Profile BuilderTéléchargerUruguayUtilisez ces shortcodes sur les pages où vous voulez que les formulaires s'affichent :Utilisez ce shortcode sur la page où vous voulez que le formulaire soit affiché :Notification lors de l'approbation d'un utilisateurNombre d'utilisateursE-mails personnalisés à l'utilisateurLes étiquettes des champs utilisateursIdentifiant utilisateurIdentifiant d'utilisateur / Nom d'utilisateurIdentifiant d'utilisateur ou Nom d'utilisateurID de l'utilisateurListing d'utilisateursMéta-information de l'utilisateurPseudo utilisateurRôle utilisateurRedirection basée sur le rôle de l'utilisateurRôles de l'utilisateurOrdre des Rôles utilisateur Utilisateur introuvable.L'utilisateur a bien été approuvé !L'utilisateur a bien été supprimé !L'utilisateur a bien été refusé !Utilisateur à modifier :Rôle-UtilisateurStatut de l'utilisateurParamètres du listing d'utilisateursNom d'utilisateurNom utilisateur et EmailNom d'utilisateur ou adresse de messagerie.Pseudo ou EmailLes noms d'utillisateur ne peuvent pas être modifiés.Merci de ne pas re-créer de compte si vous en avez déjà un.Les utilisateurs ne peuvent pas s'inscrire eux-mêmes, mais vous pouvez les créer manuellement ici.Les utilisateurs ont bien été approuvés !Les utilisateurs ont bien été supprimés !Les utilisateurs ont bien été refusés !Utilisateurs avec une adresse de messagerie non-confirméeUzbekistanTags valides {{reply_to}} et {{site_name}}ValidationLa valeur doit être un multiple de %1$sLa valeur doit être plus grande ou égale à %1$sLa valeur doit être plus petite ou égale à %1$s VanuatuVaticanVenezuelaVersion %sTrès faibleTrès faibleVietnamVoir sur le planVoir tous les paramètres des shortcodes supplémentairesVoir le formulaire de modification de profilVoir le formulaire d'inscriptionVoir le listing d'utilisateursVisibilitéChoix visiblesVisible uniquement aux utilisateurs connectés ?Visible pour les rôles suivantsWallis and FutunaFaibleSite webBienvenu sur %1$s !


            Votre identifiant est : %2$sBienvenue sur %1$s!


            Votre nom d'utilisateur est :%2$s

            Votre mot de passe est celui que vous avez choisi lors de votre inscription. Western SaharaSi le champ est obligatoire ou pasLe champ facture doit être ajouté ou non au formulaire de WooCommerceSi un utilisateur nouvellement inscrit sera connecté automatiquement ou pas
            Ne fonctionne que sur les sites ayant un nom de domaine unique et ayant désactivé les paramètres "Approbation Admin" et "Confirmation de l'adresse de messagerie"
            ATTENTION: La mise en cache du formulaire d'inscription empêchera la connexion automatique de fonctionnerSi l'utilisateur doit être redirigé vers une page spécifique ou pasCette redirection dépend de la priorité suivante:Avec les champs supplémentaires de profil vous pouvez créer le formulaire exact d'inscription dont votre projet a besoin.Avec Profile Builder Pro v2, vous pouvez afficher différents champs dans les formulaires d'inscription et modifier les profils, en utilisant l'enregistrement multiple et Modifier le module Profil Forms.Avec le nouveau champ abonnements dans Profile Builder, vos formulaires d'inscription permettront à vos utilisateurs de s'inscrire pour les comptes payés.Avec ceux-ci, vous pouvez rediriger différentes formes et pages WordPress vers des pages créées avec profil builder.Synchronisation WooCommerceWooCommerce doit être installé et activé pour Profile Builder - Le module WooCommerce doit être synchronisé pour être opérationnel!Yahoo IMYemenOuiOui, j'aimerais créer un nouveau siteYimVous êtes déjà connecté. Vous pouvez changer votre mot de passe dans le formulaire de modification de profile.Vous êtes actuellement connecté en tant que %1$s. %2$sVous êtes actuellement connecté comme %1s.Vous n'avez pas besoin d'un autre compte. %2sVous êtes actuellement connecté en tant que %s.Vous n'êtes pas autorisé à faire cela.Vous pouvez ajouter l'information pour le %s après avoir ajouté une entréeVous pouvez trouver une liste d'adresses de messagerie non-confirmées sous %1$sUtilisateurs > Tous les Utilisateurs > Confirmation de l'adresse de messagerie %2$s.Vous pouvez trouver une liste d'utilisateurs à %1$sUtilisateurs > Tous les Utilisateurs > Approbation par l'Admin %2$s.Vous pouvez le trouver dans le menu Profile Builder.Vous pouvez trouver le fichier par défaut ici: %1$sVous ne pouvez pas ajouter des redirections dupliqués!Vous ne pouvez pas enregistrer ce rôle d'utilisateurVous décidez qui est un utilisateur sur votre site. Soyez informé par e-mail ou approuvez plusieurs utilisateurs d'un coup à partir de l'IU WordPress.Vous décidez qui est utilisateur sur votre site. Soyez informé par e-mail ou approuvez plusieurs utilisateurs d'un coup à partir de l'IU WordPress. Activer l'approbation Admin en évoluant vers les versions %1$sHobbyist ou PRO %2$s.Vous n'êtes pas autorisé à voir cette liste d'utilisateurs.Vous n'êtes pas autorisé à voir cette liste d'utilisateurs.Vous n'avez pas de paramètres de pagination sur ce listing d'utilisateurs !Soit vous n'avez pas la permission de réaliser cette action soit il y a eu une erreur !Vous avec bien ré-initialisé votre mot de passe pour: %1$sVous devez être connecté pour modifier votre profil.Vous devez entrer une adresse mail valide.Vous devez entrer une valeur de formattage de date Vous devez entrer une valeur pour le numéro de la ligne Vous devez entrer la clé secrète Vous devez saisir la clé du site. Vous devez sélectionner un champ Vous devez activer le listing d'utilisateurs à partir de l'onglet "Modules" !Vous devez spécifier le titre du formulaire avant de le créerVous utilisez les balises suivantes dans vos URL pour rediriger les utilisateurs vers différentes pages.Vous recevrez un lien par E-mail pour créer un nouveau mot de passe.Vous serez bientôt redirigé automatiquement. Si vous voyez cette page pendant plus de %1$d secondes, merci de cliquer sur %2$s.%3$sVotre compte à été créé avec succès!Votre compte doit être confirmé par un administrateur avant de pouvoir vous connecter.Un administrateur doit approuver votre compte avant que vous ne puissiez utiliser la fonctionnalité "Mot de passe perdu".Votre compte doit être confirmé par un administrateur avant que vous ne puissiez utiliser la fonctionnalité "Ré-initialisation du mot de passe".Votre compte sur %1$s a été approuvé !Votre compte sur %1$s a été refusé !Votre compte sur {{site_name}} a été approuvé !Votre compte sur {{site_name}} a été refusé !Votre adresse de messagerie a bien été confirmée.Votre mot de passe a bien été changé !Votre profil a bien été mis à jour !Votre mot de passe sélectionné lors de l'inscriptionVotre session a expiré ! Merci de rafraîchir la page et de ré-essayerVotre session a expiré ! Merci de rafraîchir la page et de ré-essayer.Votre site va ressembler à ceci :
            ZambiaZimbabwe[%1$s] Activer %2$s[%1$s] Nouvelles informations à propos de votre compte[{{site_name}}] Activer {{username}}[{{site_name}}] Notification du changement d'email[{{site_name}}] Réinitialisation Mot de passe[{{site_name}}] Mot de passe réinitialisé avec succèsapprouver cet utilisateur ?approuvéconfirmer cette adresse de messagerie vous-même ?supprimer cet utilisateur de la table _signups ?supprimer cet utilisateur ?affiche tous les utilisateurs, sauf ceux dont vous avez spécifié l'IDaffiche uniquement les utilisateurs dont vous avez spécifié l'ID utilisateuraffiche les utilisateurs ayant une certaine méta-valeur dans un certain méta-champemailgénère une URL de la page d'accueil du site actuel.icidans WordPress l'URL du site peut être différente de l'url principalen'est pas un nombre.n'est pas un numéro de téléphone valide.doit être plus grand ou égal à doit être un multiple dedoit être inférieur ou égal à reCAPTCHAobligatoireré-envoyer le lien d'activation ?Montrerl'identifiant de l'utilisateurl'URL de la page visitée précédemmentl'URL version aseptisée du nom d'utilisateur, le véritable nom utilisateur peut être utilisé en toute sécurité dans les URL, car il ne peut pas contenir des caractères spéciaux ou des espaces.refuser cet utilisateur ?refusénom d'utilisateurPseudo ou Emailtranslation/profile-builder-pl_PL.mo000066600000216221152141651170013542 0ustar00GT44l4y4ct55c678-9C9:;::K:C9;[};;;<"/<+R<E~<1< <e= f=s= = ==2= =-=O#> s> ~>>>i?d?Y?G@@R@c@!?A7aA'AA\B`BoBxBBBB B BBBBBC C5COC!lC#CCCCCCCD*D JDVDnD$DDD DDD D(DE/EKELE(FAF9[FF?FAF&G.G5G >GIG]GcGkG tG~GG0G G GGGGG HH .H OH]H pH{HHH HHHkH"IiIJJ#J*J0J8J?JOJaJ!iJJJJ JJJJ KK K *K7K?KHKQKXK _KjKyKK,KKKK'K7L9LKL MM $M2M2HM3{M MMMM M0M N *N7N ?N LNWNUnNNNNNNN)O+O2O AO MO XOcOkO{OOO;O OOP )P7PRPpP wPPP PP P PPP P QQ4Q=Q/LQ.|Q1QQQ QR$R+R1R 8RCRRR RRS5SKSZSlSS SsST TT,T =T!KTmTTOT?T'UUewVWV5WGWOWWWb`WW WWWW>XFXaX rXrXXX YYY;Y CYNY ]YgY?YYY YYY Z Z6ZC˴ 4 A K U _ lw'Ͷ U _ir z #ڷ ' 0Qj s~ Ÿ θ۸E Tbj-rBt 24E@zA  - 74Ez  )˼tjq  3    +7OasFҾ &<*R}"ſ  +@Z s ~=6; <G \f \fo!+ 3A  9$$^RQA$oui | E&:at .;#B fpx+J!*:M k x) '= EQb k w  #SN V a mw | ) 1%=ct##  $2; R\dm v9 ALU ^ kv}   D KUl%Fl{   0  + 8 D N Ye nB{!, E OY b m z  (%'jM   0M iQw   *2;'n/%-#7[b s#3vt"C7+3 I U`h "- <!Tv: A O Y<d?fHd,|9#%E NYhp" B4 FSf{% &-?+mS .39m~F [el   "'J R_w7,!#= a oM" '1:BIGab6i Y1 AMV?n 1 +: M Xc u]VA. 4 BPXpC;=<y    ( 1?G P ]hx -.++zA{(E=,$j;,B@;*|I0"@oY0)M$:r1D#v0<rY{d6:.q12C8I=s^4*)V9s-,-/6'f  <1BM  ,E[a j t ~/& & D P^ZR, -9gy" "(K%k)  $( M 0l [ h "b  % 1  /  3  =  G  S _ o   8 $   % 74 &l    P  ( 5B 9xx +6>D"JDm&3 -'B7jR8YC?8!O!qX<Y=|eQk7#*[594"+&N.uHI7 @K(a&/!".1,`g^ls  %-6U gr

            Good News!

            An administrator has just approved your account: {{username}} on {{site_name}}.

            Hello,

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            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!

            Someone requested that the password be reset for the following account: {{site_name}}
            Username: {{username}}

            If this was a mistake, just ignore this email and nothing will happen.

            To reset your password, visit the following address:
            {{{reset_link}}}

            To activate your user, please click the following link:
            {{{activation_link}}}

            After you activate, you will receive another email with your credentials.

            You have successfully reset your password to: {{password}}

            {{username}} has requested a password change via the password reset feature.

            His/her new password is: {{password}}

            * only available in the %1$sHobbyist and Pro versions%2$s. Serial Number: Your serial number is about to expire, please %1$s Renew Your License%2$s. Your serial number is expired, please %1$s Renew Your License%2$s. is also activated. You need to deactivate it before activating this version of the plugin."Admin Approval" Activated:"Admin Approval" Feature:"Email Confirmation" Activated:"Email Confirmation" Landing Page:"Email" - users can Log In only with Email."Username and Email" - users can Log In with both Username and Email."Username" - users can Log In only with Username.%1$s %2$d%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s%1$s of %2$s%s couldn't be deleted%s pending« Prev«« First(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(no title)** only available in the %1$sPro version%2$s.. Extra Field Types are available in Hobbyist or PRO versions.... Choose...Choose1 item

            Your Profile Builder serial number is invalid or missing.
            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

            Title (Type)
            Title
            Type
            Meta Name
            Required
            Note: changing the form title also changes the shortcode!ERROR: The password must have a minimum strength of %sERROR: The password must have the minimum length of %s charactersERROR: Your account has to be confirmed by an administrator before you can log in.Profile Builder A new account has been created for you on {{site_name}}A new subscriber has (been) registered!A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be editedAIMAbout YourselfActivateActivation KeyActivation LinkActivation UrlActiveAdd EntryAdd FieldAdd NewAdd New Field to the ListAdd UserAdd new Edit-profile FormAdd new Registration FormAdd new User ListingAdd-On has been activatedAdd-On has been deactivated.Add-On is activeAdd-On is inactiveAdd-On is ActiveAdd-OnsAddressAdmin ApprovalAdmin Approval (*)Admin Bar SettingsAdmin Email CustomizerAdmin Notification for User Password ResetAfghanistanAfter Profile Update...After Registration...After login redirect URL (optional):Agree To Terms CheckboxAimAland IslandsAlbaniaAlgeriaAll UsersAll users have been successfully deletedAll-userlisting TemplateAllow Users to Log in With:Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.Allow users to log in with their email or username when accessing your site.Allowed Image ExtensionsAllowed Upload ExtensionsAllowed time to display any success messages (in seconds)American SamoaAn administrator has just approved your account on %1$s (%2$s).An administrator has just unapproved your account on %1$s (%2$s).AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApplyApproveApprovedArgentinaArmeniaArubaAs an administrator you cannot change your role.AscendingAustraliaAustriaAutomatically Log InAvailable TagsAvatarAvatar SizeAvatar Size (All-userlisting)Avatar Size (Single-userlisting)Avatar UploadAvatar or GravatarAzerbaijanBackBahamasBahrainBangladeshBarbadosBasic InformationBefore you can access your account %1s, an administrator has to approve it. You will be notified via email.Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.Before you can access your account, an administrator needs to approve it. You will be notified via email.BelarusBelgiumBelizeBeninBermudaBhutanBilling AddressBiographical InfoBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBoth fields are empty.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaBulk ActionsBurkina FasoBurundiCambodiaCameroonCanadaCancelCape VerdeCayman IslandsCentral African RepublicChadCheck your e-mail for the confirmation link.CheckboxChileChinaChoose one of the supported field typesChoose one of the supported fields you manage install manually.CountryCountry SelectCroatiaCubaCuracaoCustom RedirectsCustomize Your Forms The Way You Want (*)CyprusCzech RepublicDate-formatDatepickerDeactivateDefaultDefault ContentDefault OptionDefault Option(s)Default RegistrationDefault Registration & Registration with Email ConfirmationDefault RoleDefault Sorting CriteriaDefault Sorting OrderDefault ValueDefault value of the fieldDefault value of the textareaDeleteDelete allDelete all itemsDelete this itemDemocratic Republic of the CongoDenmarkDescendingDescriptionDisabledDisplay MessagesDisplay NameDisplay name asDisplay name publicly asDjiboutiDo you want toDo you want to bulk approve the selected users?Do you want to bulk delete the selected users?Do you want to bulk unapprove the selected users?DominicaDominican RepublicDownload NowDownloading and installing...E-mailERRORERROR:East TimorEasy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings.EcuadorEditEdit ProfileEdit the Edit-profile FormsEdit the Registration FormsEdit the User ListingEdit this itemEdit-profile FormEdit-profile FormsEgyptEl SalvadorEliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.EmailEmail AddressEmail ConfirmationEmail CustomizerEmail SubjectEmail notification resent to userEnable extra featuresEnable your modulesEnter a (detailed) description of the option for end users to read
            OptionalEnter a comma separated list of labels
            Visible for the userEnter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophesEnter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100Enter the minimum characters the password should have. Leave empty for no minimum limitEquatorial GuineaEritreaEstoniaEthiopiaEverything you will need to manage your users is probably already available using the Pro Modules.Example:Excerpt ViewExisting PagesExtra FeaturesExtra FunctionsExtra Profile Fields are available in Hobbyist or PRO versionsExtra shortcode parametersFalkland IslandsFaroe IslandsFeatures that give you more control over your users, increased security and help you fight user registration spam.FieldField PropertiesField TitleFijiFind out more about PRO ModulesFinlandFirst NameFirst/LastnameFirstnameFor Modern User InteractionFor security reasons, you must pass the remote ip to reCAPTCHA!Form ShortcodeFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesFrom (name)From (reply-to email)GabonGambiaGeneral SettingsGeneric UploadsGeorgiaGermanyGet New PasswordGet started with extra fieldsGhanaGibraltarGo Back LinkGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald IslandsHere you can activate / deactivate available modules for Profile Builder.HideHondurasHong KongHungaryIDIcelandIf you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.InactiveIndiaIndonesiaInput / Hidden InputInstall NowInstallation completeInvalid activation key!Invalid key!Invalid username.IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanKeep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.KenyaKiribatiKosovoKuwaitKyrgyzstanLabelsLaosLast »»Last NameLastnameLatviaLebanonLesothoLiberiaLibyaLiechtensteinList ViewLithuaniaLoad Profile Builder's own CSS file in the front-end:Log outLog out »Log out of this accountLog out of this account.LoginLogin 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 )Login with Email or UsernameLogoutLost your passwordLost your password?LuxembourgMacaoMacedoniaMadagascarMake sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.MalawiMalaysiaMaldivesMaliMaltaManage Default and Extra FieldsManage FieldsMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMediumMeta-nameMexicoMicronesiaMinimum Password Length and Strength MeterMinimum Password Length:Minimum Password Strength:Minimum length of %d charactersMinimum required Profile Builder version:ModulesMoldovaMonacoMongoliaMontenegroMontserratMoreMore DetailsMore InfoMore Info UrlMore...MoroccoMozambiqueMultiple Edit-profile FormsMultiple Registration FormsMust be a valid email address or the tag {{reply_to}} which defaults to the administrator emailMyanmarNameName/DescriptionNamibiaNauruNepalNetherlandsNew CaledoniaNew Edit-profile FormNew Registration FormNew User ListingNew ZealandNew subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            Next » NicaraguaNicknameNigerNigeriaNiueNoNo Edit-profile Form foundNo Edit-profile Forms found in trashNo Registration Form foundNo Registration Forms found in trashNo User Listing foundNo User Listing found in trashNo items found.No results found!NoneNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNot compatible with Profile BuilderNot compatible with your version of Profile Builder.Now that you acquired a copy of %s, you should take the time and register it with the serial number you receivedNumber of PostsNumber of Users/PageOmanOnly administrators can see this field on edit profile forms.Only an administrator can add new users.OptionsOverwrite ExistingPaginationPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayPasswordPassword Lost and Found.Password Recovery page URL (optional):Password Reset EmailPassword Reset Success EmailPassword Reset from "%1$s"Password Successfully Reset for %1$s on "%2$s"Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.PeruPhilippinesPhonePitcairnPlease check that you entered the correct email address.Please check that you entered the correct username.Please choose a different field type as this one already exists in your form (must be unique) Please enter a valid username.Please enter a value for the required field Please enter your username or email address.Please select at least one user role Please try a different one!Plugin has been activatedPlugin has been deactivated.PolandPortugalPostcode / ZipPostsPowerful Modules (**)Profile Builder Login WidgetProfile Builder RegisterPuerto RicoQatarRadio ButtonsRandom (very slow on large databases > 10K user)Recover PasswordRedirectRegisterRegister VersionRegister Your VersionRegister page URL (optional):RegisteredRegistrationRegistration & Edit ProfileRegistration DateRegistration FormRegistration FormsRegistration with Admin ApprovalRegistration with Email ConfirmationRemember though, that the field-value combination must exist in the database.RemoveRepeat PasswordReply ToRepublic of the CongoRequiredResend Activation EmailReset KeyReset LinkReset PasswordReset UrlRestrict the userlisting to these selected roles only
            If not specified, defaults to all existing rolesRetry InstallReunionRoleRoles to DisplayRomaniaRow CountRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaveSave ChangesSave SettingsSave the user role order from the user roles checkboxesSearchSearch Users by All FieldsSearch all FieldsSearch the Edit-profile FormsSearch the Registration FormsSearch the User ListingSecret KeySelectSelect AllSelect FileSelect which user roles to show to the user ( drag and drop to re-order )Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name
            Use this at your own riskSend these credentials via email.SenegalSerbiaSet RoleSet the avatar size on the all-userlisting onlySet the avatar size on the single-userlisting onlySet the default sorting criteria
            This can temporarily be changed for each new sessionSet the default sorting order
            This can temporarily be changed for each new sessionSet the number of users to be displayed on every paginated part of the all-userlistingSet up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.SeychellesShare a little biographical information to fill out your profile. This may be shown publicly.Ship to a different address?Shipping AddressShortcodeShowShow all datesShow/Hide the Admin Bar on the Front-EndSierra LeoneSign-up DateSingaporeSingle-userlisting TemplateSint MaartenSite KeySite NameSite UrlSlovakiaSloveniaSolomon IslandsSomaliaSomeone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$sSomething went wrong, we could not connect to the server. Please try again later.Sorry, but you don't have permission to do that!South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.comSpecify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.comSpecify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)Specify the option which should be selected by defaultSpecify 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.Sri LankaState / CountyStatusStrength indicatorStrongSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaTerms of AgreementTextareaThailandThat field is already added in this form That meta-name is already in use That username is already activated!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!The account %1s has been successfully created!The best way to add front-end registration, edit profile and login forms.The email address entered wasn't found in the database!The email you entered is not a valid email address.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical The entered passwords don't match!The entered row number is not numerical The entered value for the Datepicker is not a valid date-format The following option did not coincide with the ones in the options list: %s The following option(s) did not coincide with the ones in the options list: %s The meta-name cannot be empty The password must have a minimum strength of %sThe password must have the minimum length of %s charactersThe password you entered is incorrect.The passwords do not matchThe secret key from Google, www.google.com/recaptchaThe selected user couldn't be deletedThe selected users have been activatedThe selected users have had their activation emails resentThe serial number couldn't be validated because it expired!The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!The serial number entered couldn't be validated!The serial number is about to expire soon!The serial number was successfully validated!The shortcode will be available after you publish this form.The site key from Google, www.google.com/recaptchaThe userlisting will only be visible only to the logged in usersThe userlisting will only be visible to the following rolesThe username entered wasn't found in the database!The usernames cannot be changed.There was an error in the submitted formThere was an error performing that action!There was an error while trying to activate the userThere was an error while trying to activate the user.There was an error while trying to send the activation link to %1$s!These settings are also replicated in the "Admin Email Customizer" settings-page upon save.These settings are also replicated in the "User Email Customizer" settings-page upon save.This email is already in use.This email is already reserved to be used soon.This field is requiredThis form is empty.This login widget lets you add a login form in the sidebar.This message is only visible by administratorsThis username already exists.This username is already activated!This username is already reserved to be used soon.This username is invalid because it uses illegal characters.This username is now active!Timezone SelectTitle of the fieldTitle: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$sTo allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$sTo use reCAPTCHA you must get an API key fromTo use reCAPTCHA you must get an API public key from:TogoTokelauTongaTown / CityTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluType your password again. Type your password.U.S. Virgin IslandsURLUgandaUkraineUnapproveUnapprovedUnapproved User NotificationUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUpdateUpgrade Profile BuilderUpload UruguayUse these shortcodes on the pages you want the forms to be displayed:Use this shortcode on the page you want the form to be displayed:User Approval NotificationUser Email CustomizerUser IdUser ListingUser MetaUser NicenameUser RoleUser RolesUser Roles OrderUser not foundUser successfully approved!User successfully deleted!User successfully unapproved!User to edit:User-RoleUser-statusUserlisting SettingsUsernameUsername and EmailUsername or E-mailUsername or EmailUsernames cannot be changed.Users can register themselves or you can manually create users here.Users cannot currently register themselves, but you can manually create users here.Users successfully approved!Users successfully deleted!Users successfully unapproved!Users with Unconfirmed Email AddressUzbekistanValid tags {{reply_to}} and {{site_name}}VanuatuVaticanVenezuelaVersion %sVery WeakVery weakVietnamView all extra shortcode parametersView the Edit-profile FormView the Registration FormView the User ListingVisibilityVisible only to logged in users?Visible to following RolesWallis and FutunaWeakWebsiteWelcome to %1$s!


            Your username is:%2$s and password:%3$sWestern SaharaWhether the field is required or notWhether to automatically log in the newly registered user or not
            Only works on single-sites without "Admin Approval" and "Email Confirmation" features activated
            WARNING: Caching the registration form will make automatic login not workWhether to redirect the user to a specific page or notWith Extra Profile Fields you can create the exact registration form your project needs.Yahoo IMYemenYesYimYou are currently logged in as %1$s. %2$sYou are currently logged in as %1s. You don't need another account. %2sYou are currently logged in as %s. You can add the information for the %s after you add a entryYou can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.You can find it in the Profile Builder menu.You can find the default file here: %1$sYou cannot register this user roleYou decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.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.You don't have any pagination settings on this userlisting!You either don't have permission for that action or there was an error!You have successfully reset your password to: %1$sYou must be logged in to edit your profile.You must enter a valid email address.You must enter a value for the date-format You must enter a value for the row number You must enter the secret key You must enter the site key You must select a field You need to activate the Userlisting feature from within the "Modules" tab!You need to specify the title of the form before creating itYou will receive a link to create a new password via email.You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$sYour account has to be confirmed by an administrator before you can use the "Password Recovery" feature.Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.Your account on %1$s has been approved!Your account on %1$s has been unapproved!Your account on {{site_name}} has been approved!Your account on {{site_name}} has been unapproved!Your email was successfully confirmed.Your password has been successfully changed!Your profile has been successfully updated!Your selected password at signupYour session has expired! Please refresh the page and try againYour session has expired! Please refresh the page and try again.ZambiaZimbabwe[%1$s] Activate %2$s[%1$s] Your new account information[{{site_name}}] Activate {{username}}[{{site_name}}] Password Reset[{{site_name}}] Password Reset Successfullyapprove this user?approvedconfirm this email yourself?delete this user from the _signups table?delete this user?displays all users except the ones you specified the user_id fordisplays only the users that you specified the user_id fordisplays users having a certain meta-value within a certain (extra) meta-fieldemailherereCAPTCHArequiredresend the activation link?showunapprove this user?unapprovedusernameusername or emailPO-Revision-Date: 2016-11-28 13:11:48+0000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); X-Generator: GlotPress/0.1 Project-Id-Version: Profile Builder

            Dobre Wieści!

            Administrator właśnie potwierdził Twoje konto: {{username}} na {{site_name}}.

            Witaj,

            Niestety administrator właśnie zawiesił Twoje konto: {{username}} na {{site_name}}.

            Witaj na {{site_name}}!

            Twój login to:{{username}} oraz hasło:{{password}}

            Witaj na {{site_name}}!

            Twoja nazwa użytkownika to:{{username}} oraz hasło:{{password}}

            Zanim będziesz mógł zalogować się na swoje konto, administrator musi potwierdzić Twoją rejestrację. Otrzymasz powiadomienie na Twoją skrzynkę email.

            Nowy subskrybent na {{site_name}}.

            Nazwa Użytkownika:{{username}}

            E-mail:{{user_email}}

            Nowy sybskrybent na {{site_name}}.

            Nazwa Użytkownika:{{username}}

            E-mail:{{user_email}}

            Funkcjonalność Zatwierdzania Administrtora była aktywna w trakcie rejestracji, więc pamiętaj proszę, że musisz zatwierdzić to konto, zanim użytkownik będzie mógł się zalogować!

            Poproszono o reset hasła dla następującego konta: {{site_name}}
            Nazwa użytkownika: {{username}}

            Jeśli jest to pomyłka, proszę zingoruj ten email, a nic się nie stanie.

            Aby zresetować hasło przejdź pod następujący adres:
            {{{reset_link}}}

            W celu aktywacji konta kliknij na następujący link:
            {{{activation_link}}}

            Po aktywacji otrzymasz kolejną wiadomość zawierającą Twój login oraz hasło

            Udało Ci się poprawnie zresetować hasło. Twoje nowe hasło to: {{password}}

            {{username}} poprosił(a) o zmianę hasła poprzez narzędzie resetu hasła.

            Jej/jego nowe hasło to: {{password}}

            * dostępne tylko %1$sw wersjach Hobbyist oraz Pro%2$s.Numer Seryjny:Twój numer seryjny wkrótce wygaśnie, proszę %1$s Odnów Swoją Licencję%2$s. Twój numer seryjny wygasł, proszę %1$s Odnów Swoją Licencję%2$s.jest także aktywny. Musisz dezaktywować go przed aktywacją tej wersji wtyczki."Potwierdzenie Administratora" aktywowane:Funkcjonalność "Potwierdzenia administratora":"Potwierdzenie Email" Aktywne:Strona otwierana podczas Potwierdzenia adresu Email:"Email" - użytkownicy mogą zalogować się tylko przez podanie adresu email."Nazwa użytkownika lub email" - użytkownicy mogą zalogować się korzystając z nazwy użytkownika lub adresu email."Nazwa użytkownika" - użytkownicy mogą zalogować się tylko przez podanie nazwy użytkownika.%1$s %2$d%1$s poprosił(a) o reset hasła.
            Jej/jego nowe hasło to:%2$s%1$s z %2$s%s nie mógł być usunięty%s oczekuje« Poprz.«« Pierwsza(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(bez nazwy)** dostępne tylko w %1$s wersji Pro%2$s.. Dodatkowe pola są dostępne w wersjach Hobbyist i PRO.... Wybierz...Wybierz1 element

            Twój numer seryjny Profile Builder jest niepoprawny lub niepełny.
            Proszę %1$szarejestruj swoją kopię%2$s, aby otrzymać dostęp do automatycznych aktualizacji oraz wsparcia. Potrzebujesz klucza licencyjnego? %3$sKup go teraz%4$s

            Nazwa (Typ)
            Nazwa
            Typ
            Parametr Meta Name
            Wymagane
            Uwaga: zmiana nazwy formularza wpłynie na zmianę krótkiego kodu!BŁĄD: Minimalna siłahasła to: %sBŁĄD: Hasło musi mieć minimum %s znaków.BŁĄD: Twoje konto musi zostać zatwierdzone przez administratora, zanim będziesz mógł się zalogować.Profile Builder Stworzono dla Ciebie konto na {{site_name}}Nowy użytkownik został zarejestrowany!Unikatowe, generowane automatycznie ID dla tego pola
            Możesz je wykorzystać w połączeniu z filtrem w celu wyboru określonego elementu
            Nie może być edytowaneAIMO TobieAktwyujKlucz AktywacyjnyLink aktywacyjnyLink aktywacyjnyAktywnyDodaj wpisDodaj poleDodaj NowyDodaj Nowe Pole do ListyDodaj użytkownikaDodaj nowy Formularz Edycji ProfiluDodaj nowy formularz rejestracjiDodaj nową Listę UżytkownikówWtyczka została aktywowana.Wtyczka została zdezaktywowanaWtyczka jest aktywnaWtyczka jest nieaktywnaWtyczka aktywna.WtyczkiAdresPotwierdzenie AdministratoraZatwierdzanie przez administratora (*)Ustawienia paska narzędziowegoDostosowanie Wiadomości Email AdministratoraPowiadomienia administratora o resecie hasła użytkownika.AfghanistanPo aktualizacji profilu...Po zarejestrowaniu...Przekieruj pod następujący adres URL po zalogowaniu (opcjonalne):Pole zgody na warunki użytkowania stronyAimAland IslandsAlbaniaAlgeriaWszyscy użytkownicyUsunięto wszystkich użytkownikówSzablon wyświetlania wszystkich użytkownikówZezwalaj użytkownikom na logowanie za pomocą:Zezwól użytkownikom o różnych profilach na edycję tylko określonych składników profilu. Zdefiniuj odmienne formularze edycji profilu w zależności od profilu użytkownikaWszyscy użytkownicy mogą logować się swoim adresem email lub nazwą użytkownika.Dozwolone rozszerzenia obrazkówDozwolone rozszerzenia do przesłania na stronęCzas wyświetlenia dowolnej pomyślnej wiadomości (w sekundach)American SamoaAdministrator przed chwilą zatwierdził Twoje konto na %1$s (%2$s).Administrator przed chwilą zawiesił Twoje konto na %1$s (%2$s).AndorraAngolaAnguillaAntarcticaAntigua and BarbudaZatwierdźZatwierdźZatwierdzoneArgentinaArmeniaArubaJako administrator nie możesz zmienić swojej roli.RosnącoAustraliaAustriaAutomatyczne logowanieDostępne TagiAvatarRozmiar avataraRozmiar Awatara (podczas wyświetlania listy użytkowników)Rozmiar Awatara (podczas wyświetlania pojedynczego użytkownika)Dodaj awatarAwatar lub GrawatarAzerbaijanPowrótBahamasBahrainBangladeshBarbadosInformacje podstawoweZanim będziesz mógł się zalogować na swoje kontu %1s, administrator musi zatwierdzić Twoje konto. Otrzymasz powiadomienie na Twój adres email.Zanim będziesz mógł się zalogować na swoje kontu %1s, musisz potwierdzić swój adres email. Proszę sprawdź swoją skrzynkę oraz kliknij link aktywacyjny. Zanim będziesz mógł zalogować się na swoje konto, administrator musi je zatwierdzić. Zostaniesz o tym powiadomiony przez email.BelarusBelgiumBelizeBeninBermudaBhutanAdres do fakturyBiografiaBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaObydwa pola są puste.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaAkcje masoweBurkina FasoBurundiCambodiaCameroonCanadaAnulujCape VerdeCayman IslandsCentral African RepublicChadSprawdź swoją pocztę e-mail oraz kliknij w link potwierdzający.Pole wyboruChileChinaWybierz jeden ze wspieranych typów plikówWybierz jedno ze wspieranych pól którymi zarządzasz zainstaluj ręcznie.KrajWybór krajuCroatiaCubaCuracaoWłasne przekierowaniaKonfiguruj Twoje formularze w dowolny sposób (*)CyprusCzech RepublicFormat datyWybór datyDezakwytujDomyślneDomyślna zawartośćDomyślna opcjaDomyślne OpcjeDomyślna RejestracjaDomyślna Rejestracja oraz Rejestracja z Potwierdzeniem Adresu EmailDomyślny ProfilDomyślne kryteria sortowaniaDomyślny Porządek SortowaniaDomyślna wartośćDomyślna wartośćDomyślna wartość pola typu "textarea"UsuńUsuń wszystkoUsuń wszystkie elementyUsuń ten elementDemocratic Republic of the CongoDenmarkMalejącoOpisWyłączoneWyświetl WiadomościNazwa WyświetlanaWyświetlaj nazwę jakoPrzedstawiaj mnie jakoDjiboutiCzy chceszCzy chcesz zatwierdzić konta dla wybranych użytkowników?Czy chcesz usunąć konta wybranych użytkowników? Czy chcesz zawiesić konta dla wybranych użytkowników? DominicaDominican RepublicPobierzPobieranie i instalowanieE-mailBŁĄDBŁĄD:East TimorŁatwe do edycji szablony list użytkowników oraz tworzenie stron dla każdego z użytkowników. Oparte na krótkich kodach, które oferują wiele możliwości konfiguracji.EcuadorEdytujEdytuj profilEdytuj Formularz Edycji ProfiluEdytuj formularz rejestracjiEdytuj Listę UżytkownikówEdytuj ten elementFormularz edycji profiluFormularze Edycji ProfiluEgyptEl SalvadorWyeliminuj słabe hasła poprzez ustawienie minimalnej długości hasła oraz wymuszenie określonego poziomu skomplikowania hasłaEmailAdres emailPotwierdzenie e-mailKonfiguracja EmailTytuł Wiadomości EmailPowiadomienie email przesłane ponownie do użytkownikaAktywuj dodatkowe funkcjonalnościPrzejdź do wersji PROWprowadź (szczegółowy) opis opcji dla użytkowniów końcowych
            OpcjonalneWprowadź listę etykiet oddzielonych przecinkami
            Widoczne dla użytkownikaWprowadź listę elementów oddzielając poszczególne elementy przecinkami
            Może to być cokolwiek, ponieważ jest to niewidoczne dla użytkownika, ale nie powinno zawierać żadnych znaków specjalnych lub apostrofów.Wprowadź szczegółowy opis warunków umowy do zatwierdzenia dla użytkownika.
            Linki mogą być dodane z wykorzystaniem strandardowego kodu HTML. Składnia: <a href="custom_url">custom_text</a>Określ rozmiar Awatara (pomiędzy 20 a 200)
            Jeśli nie zostanie zdefiniowany, domyślna wartość to 100Wprowadź minimalną liczbę znaków jakie powinno posiadać hasło. Zostaw pole puste żeby nie ustalać limitów.Equatorial GuineaEritreaEstoniaEthiopiaWszystko, czego potrzebujesz, aby zarządzać swoimi użytkownikami, jest jest najprawdopodobniej dostępne w wersji PRO. Przykład:Widok SkróconyIstniejące stronyDodatkowe FunkcjonalnościDodatkowe FunkcjeDodatkowe Pola w profilu są dostępne w wersjach Hobbyist oraz PRODodatkowe parametry krótkich kodówFalkland IslandsFaroe IslandsFunkcjonalności, które dają Ci więcej kontroli nad Twoimi użytkownikami, zwiększone bezpieczeństwo oraz wsparcie w walce ze spamem.PoleWłaściwości polaNazwa polaFijiDowiedz się więcej o wersji PROFinlandImięImię/NazwiskoImięDla Nowoczesnej Interakcji UżytkownikówW celach bezpieczeństwa musisz przekazać zdalny adres IP do reCAPTCHA!Krótki kod FormularzaFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesOd (nazwa)Od (adres email do odpowiedzi)GabonGambiaUstawienia ogólneOgólne ustawienia przesyłania plikówGeorgiaGermanyZdobądź nowe hasłoZacznij korzystać z dodatkowych pólGhanaGibraltarLink "Powrót"GreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald IslandsTutaj może aktywować / dezaktywować dostępne moduły dodatku Profile Builder.UkryjHondurasHong KongHungaryIDIcelandJeśli jesteś zadowolony z korzystania z %1$s oceń nas proszę na WordPress.org. Więcej zadowolonych użytkowników oznacza więcej funkcjonalności, mniej błędów oraz lepsze wsparcie dla wszystkich.Jeśli zarejestrujesz swoją kopię Profile Builder, będziesz otrzymywał infromację o aktualizacjach, poprawkach oraz wsparcie techniczne.NieaktywnyIndiaIndonesiaPole tekstowe / Ukryte pole testoweInstaluj terazInstalacja zakończonaNieprawidłowy klucz aktywacyjny!Nieprawidłowy klucz!Nieprawidłowa nazwa użytkownikaIranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanZablokuj swoim użytkownikom dostępu do panelu Wordpress dashboard, przekieruj ich do strony głównej po zalogowaniu lub rejestracji, z wykorzystaniem zaledwie kilku kliknięć.KenyaKiribatiKosovoKuwaitKyrgyzstanEtykietyLaosOstatnia »»NazwiskoNazwiskoLatviaLebanonLesothoLiberiaLibyaLiechtensteinWidok listyLithuaniaZaładuj wewnętrzne pliki CSS (szablony styli) od Profile BuilderWylogujWyloguj się »Wyloguj się z tego kontaWyloguj się z konta.LoginUstawione zostało logowanie z wykorzystaniem adresu e-mail. To pole NIE pojawi się na Twojej stronie! ( możesz zmienić to ustawienie w zakładce "%s" )Adres e-mail lub nazwa użytkownikaWyloguj sięZgubiłeś swoje hasłoZapomniałeś hasła?LuxembourgMacaoMacedoniaMadagascarUpewnij się, że użytkownicy rejestrują się z poprawnymi adresami email. W trakcie rejestracji użytkownicy otrzymają powiadomienie na email w celu potwierdzenia swojej rejestracji.MalawiMalaysiaMaldivesMaliMaltaZarządzaj polami domyślnymi oraz dodatkowymiZarządzaj polamiMarshall IslandsMartiniqueMauritaniaMauritiusMayotteŚrednieMeta-nameMexicoMicronesiaMinimalna długość hasła oraz wskaźnik skomplikowania hasłaMinimalna długość hasłaMinimalna siła hasła:Minimalna długość %d znakówMinimalna wymagana wersja Profile Buidler:ModułyMoldovaMonacoMongoliaMontenegroMontserratWięcejWięcej szczegółówWięcej InformacjiLink "Więcej Informacji"Więcej...MoroccoMozambiqueRóżnorodne Formularze Edycji ProfiluRóżnorodne Formularze RejestracjiMusi być poprawnym adresem email lub tagiem {{reply_to}}, który wskazuje na adres email administratoraMyanmarPodpisNazwa/OpisNamibiaNauruNepalNetherlandsNew CaledoniaNowy Formularz Edycji ProfiluNowy formularz rejestracjiNowa Lista UżytkownikówNew ZealandNowy subskrybent na %1$s.

            Nazwa Użytkownika:%2$s
            E-mail:%3$s
            Nast. »NicaraguaPseudonimNigerNigeriaNiueNieNie znaleziono Formularza Edycji ProfiluNie znaleziono Formularza Edycji Profilu w koszuNie znaleziono Formularza RejestracjiNie znaleziono Formularza Rejestracji w koszuNie znaleziono Listy UżytkownikówNie znaleziono Listy Użytkowników w koszuNie znaleziono elementów.Nie znaleziono żadnych wyników!BrakNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNiekompatybilne z Profile BuilderNiekompatybilne z twoją wersją Profile BuilderaW związku z nabyciem kopii %s, powinieneś zarejestrować ją wykorzystaniem numeru seryjnego, który otrzymałeś.Liczba postówLiczba użytkowników na stronęOmanTylko administratorzy widzą te pole w formularzy edycji profilu.Tylko administrator może dodać nowego użytkownika.OpcjeZastąp istniejącePaginacjaPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayHasłoHasło Zgubione oraz Znalezione.Adres URL Odzyskiwania Hasła (opcjonalny):Email do zresetowania hasłaReset hasła Sukces EmailReset Hasła z "%1$s"Reset Hasła dla %1$s na "%2$s"Personalizuj wszystkie wiadomości email wysyłane do użytkowników lub administratorów. Podczas rejstracji, potwierdzenia adresu email, potwierdzenia dodania nowego konta dla administratora.PeruPhilippinesTelefonPitcairnSprawdź proszę, czy wprowadziłeś poprawny adres email.Sprawdź czy wprowadziłeś prawidłową nazwę użytkownika.Proszę wybierz inny typ pola, ponieważ ten już istnieje w Twoim formularzu (musi być unikatowy) Wprowadź poprawny login.To pole jest wymaganeWpisz nazwę użytkownika lub adres email.Wybierz proszę, co najmniej jeden profil użytkownika Proszę spróbuj inną wartość!Wtyczka została aktywowanaWtyczka została wyłączona.PolandPortugalKod pocztowyPostyModuły Powerful (**)Widżet Logowania Profile BulderRejestracja Profile BuilderPuerto RicoQatarPrzyciski opcjiLosowo (bardzo wolne dla dużych baz danych >10k użytkowników)Odzyskaj hasłoPrzekierujZarejestruj sięZarejestruj kopięZarejestruj swoją kopięAdres URL Rejestracji (opcjonalne):ZarejestrowanyRejestracjaRejestracja i edycja profiluData RejestracjiFormularz RejestracjiFormularze rejestracjiRejestracja z Potwierdzeniem AdministratoraRejestracja z Potwierdzeniem Adresu EmailPamiętaj, że określona kombinacja pole-wartość musi istnieć w bazie danych.UsuńPowtórz hasłoOdpowiedz DoRepublic of the CongoWymaganePrześlij Ponownie Aktywacyjną Wiadomość EmailKlucz restartuLink restartuZresetuj HasłoURL restartuOgranicz wyświetlanie użytkowników do zdefiniowanych profili
            Jeśli nic nie zostanie zdefiniowane, domyślne ustawienie to wszystkie profile.Ponów instalacjęReunionRolaProfile do wyświetleniaRomaniaLiczba wierszyRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaZapiszZapisz zmianyZapisz ustawieniaZapisz kolejność profili użytkownika z pól wyboruSzukajSzukaj Użytkowników po Wszystkich PolachPrzeszukaj wszystkie PolaWyszukaj Formularz Edycji ProfiluWyszukaj Formularz RejestracjiWyszukaj Listę UżytkownikówTajny kluczWybierzZaznacz wszystkoWybierz plikWybierz profile użytkowników, które mają być widoczne dla użytkownika ( przeciągnij, aby posortować )Wybór "Tak" spowoduje dodanie tego pola do listy, ale nadpisze każde inne pole w bazie danych, które ma taką samą nazwę "meta-name"
            Wybierasz tę opcję na własne ryzykoWyślij te dane na adres e-mail.SenegalSerbiaUstaw ProfilUstaw rozmiar awatara podczas wyświetlania listy użytkownikówUstaw rozmiar awatara podczas wyświetlania pojedynczego użytkownikaUstaw domyślne kryteria sortowania
            Ustawienie może być zmienione dla każdej nowej sesjiUstaw domyślny porządek sortowania
            Ustawienie może być zmienione dla każdej nowej sesjiWybierz liczbę użytkowników do wyświetlenia na jednej stronie zestawienia z kontami użytkowników.Zdefiniuj różne formularze rejestracji z odmiennymi polami dla użytkowników o określonych profilach. Zbieraj inne informacje od wielu różnych typów użytkowników.SeychellesPodziel się ze światem szczyptą informacji o sobie. Mogą one zostać upublicznione.Dostawa na inny adres?Adres dostawyShortcodePokażPokaż wszystkie datyPokaż/Ukryj pasek narzędziowy podczas przeglądania witrynySierra LeoneData PodpisaniaSingaporeSzablon wyświetlania pojedynczego użytkownikaSint MaartenKlucz stronyNazwa StronyAdres URL stronySlovakiaSloveniaSolomon IslandsSomaliaPoproszono o reset hasła dla następującego konta użytkownika: %1$s
            Jeśli to pomyłka, proszę zignoruj ten email, a nic się nie stanie.
            W celu resetu hasła, kliknij w następujący link:%2$sCoś poszło nie tak. Nie możemy połączyć się z serwerem. Spróbuj ponownie później.Przepraszam, ale nie masz uprawnień do wykonania tej operacji!South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainOkreśl adres URL, na który użytkownicy będą przekierowani po zarejestrowaniu z wykorzystaniem tego formularza
            Użyj następującego formatu: http://www.mysite.comOkreśl adres URL strony, na którą użytkownicy zostaną przekierowani po aktualizacji profilu poprzez ten formularz
            Użyj następującego formatu: http://www.mysite.comWybierz rozszerzenie/rozszerzenia, do których chcesz ograniczyć przesyłanie.
            Przykład: .ext1,.ext2,.ext3
            Jeśli nie dokonano wyboru, wszystkie wspierane przez Wordpress rozszerzenia będą dozwolone (.*)Wybierz rozszerzenie/rozszedzenia, które użytkownicy mogą przesyłać.
            Przykład: .ext1,.ext2,.ext3
            Jeśli nic nie wybrano, domyślne to: .jpg,.jpeg,.gif,.png (.*)Określ liczbę wierszy dla pola typu 'Textarea'
            W przypadku braku zdefiniowania, domyślna wartość to 5Wybierz wartość, która powinna być wybrana domyślnie
            Jeśli chcesz wybrać wiele wartości oddziel je znakiem "," (przecinek)Wybierz wartość, która powinna być wybrana domyślnieZdefiniuj stronę, na którą będą przekierowywani użytkownicy potwierdzający rejestrację swojego konta. Ta strona może być różna od strony rejestracji oraz może być zmieniona w dowolnym momencie. Jeśli żadna nie zostanie wybrana, proste potwierdzenie rejestracji zostanie wyświetlone użytkownikowi.Sri LankaWojewództwoStatusSiłomierzTrudneSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaWarunki umowyPole tekstoweThailandTo pole zostało już dodane do formularza Parametr meta-name jest już wykorzystywany Kont tego użytkownika jest już aktywne!Funkcjonalność Zatwierdzenia Administratora była aktywna w czasie rejestacji, więc pamiętaj, że musisz zatwierdzić tego użytkownika, zanim będzie on mógł się zalogować!Konto %1s zostało pomyślnie założone!Najlepszy sposób, aby dodać możliwość rejestracji użytkowników, edycję ich profili oraz formularze do logowania.Wprowadzony adres email nie został odnaleziony w bazie danych!Format adresu email nie jest poprawny.Wprowadzony rozmiar awatara nie mieści się w przedziale 20 - 200 Wprowadzony rozmiar awatara nie jest wartością liczbową Wprowadzone hasła nie są zgodne!Wprowadzony numer wiersza nie jest wartością liczbową Wprowadzony format daty nie jest poprawny Następująca opcja nie jest zgodna z ustawieniami z listy: %s Następujące opcje nie są zgodne z ustawieniami z listy: %s Parametr meta-name nie może być pusty Hasło musi posiadać następujący minimalny poziom skomplikowania: %sHasło musi składać się z minimum %s znaku.Hasło jest nieprawidłowe.Hasło się nie zgadzaTajny klucz od Google, www.google.com/recaptchaWybrany użytkownik nie mógł być usunięty!Wybrani użytkownicy zostali aktywowaniPonownie wysłano aktywacyjne wiadomości email do wybranych użytkownikówNumer seryjny został zweryfikowany, ponieważ wygasł! Numer seryjny został zweryfikowany, nie otrzymano odpowiedzi z serwera! Najprawdopodobniej serwer jest niedostępny. Proszę spróbować później!Numer seryjny nie mógł zostać zweryfikowany!Numer seryjny wkrótce wygaśnie!Numer seryjny został zweryfikowany poprawnie!Krótki kod będzie dostępny po opublikowaniu formularza.The site key from Google, www.google.com/recaptchaWyświetlanie listy użytkowników widoczne jedynie dla zarejestrowanych użytkownikówWyświetlanie listy użytkowników widoczne jedynie dla użytkowników o następujących profilachWprowadzona nazwa użytkownika nie istnieje w bazie!Nazwa użytkownika nie może być zmieniona.Pojawiły się błędy w przesłanym formularzuWystąpił błąd podczas wykonywania tej akcji!Wystąpił błąd podczas aktywowania konta dla tego użytkownikaWystąpił błąd podczas aktywacji konta użytkownikaPrzesłanie linku aktywacyjnego do %1$s nie powiodło się!Te ustawienia są także powielane w narzędziu "Dostosowywania adresu Email Administratora" podczas zapisywania.Te ustawienia są także powielone na stronie "Dostosowania Wiadomości Email" po zapisaniu.Ten adres email jest już zarezerwowany.Ten adres email jest już zarezerwowanyTo pole jest wymaganeTen formularz jest pusty.Ten widżet logowania pozwala Tobie na dodanie formularza logowania w belce bocznej,Ta wiadomość jest widoczna tylko dla administratorówNazwa Użytkownika jest już zarezerwowana.Konto tego użytkownika jest już aktywne!Nazwa Użytkownika jest już zarezerwowana.Proponowany login zawiera niedozwolone znaki.Konto tego użytkownika jest aktywne!Wybór strefy czasowejNazwa polaNazwa:Aby zezwolić użytkownikom na logowanie na Twojej stronie poprzez Profile Builder, musisz najpierw zezwolić na rejestrację użytkowników. Idź do %1$sUstawień Sieciowych%2$s, oraz upewnij się, że pole "Możliwość rejestracji kont użytowników" jest zaznaczone. %3$sAnuluj%4$sAby zezwolić użytkownikom na rejestrację na Twojej stronie poprzez Profile Builder, musisz najpierw umożliwić rejestrację użytkowników. Idź do zakładki %1$sUstawienia -> Ogólne%2$s oraz upewnij się, że w sekcji Członkowstwo pole “Każdy może się zarejestrować” jest zaznaczone. %3$sOdrzuć%4$sAby użyć reCAPTCHA musisz pobrać klucz API zAby korzystać z reCAPTCHA musisz pobrać klucz publiczny API z:TogoTokelauTongaMiastoTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluWpisz swoje hasło ponownieWprowadź swoje hasłoU.S. Virgin IslandsURLUgandaUkraineOdrzućOdrzuconePowiadomienie o Niezatwierdzeniu UżytkownikaUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsAktualizujZaktualizuj Profile BuilderPrześlijUruguayUmieść następujące krótkie kody na stronach na których chcesz wyświetlić formularze:Użyj tego krótkiego kodu na stronie, na której chcesz wyświetlić formularz:Powiadomienie o Zatwierdzeniu UżytkownikaDostosowanie Wiadomości Email UżytkownikaID UżytkownikaLista użytkownikówMeta dane UżytkownikaPrzezwisko (Nick)Rola użytkownikaProfile użytkownikaKolejność profili użytkownikaUżytkownik nie znalezionyKonto użytkownika potwierdzone!Konto użytkownika usunięte!Konto użytkownika niepotwierdzone!Użytkownik do edycji:Rola użytkownikaStatus użytkownikaUstawienia wyświetlania użytkownikówUsernameNazwa użytkownika lub emailNazwa użytkownika lub adres emailNazwa użytkownika lub EmailNazwy użytkowników nie mogą być zmieniane.Tutaj użytkownicy mogą się rejestrować. Możesz też stworzyć ręcznie użytkownika.Obecnie Użytkownicy nie mogą się rejestrować, ale tutaj możesz stworzyć dla nich konta ręcznie.Konto użytkownika potwierdzone!Użytkownik usunięty!Konto użytkownika niepotwierdzone!Użytkownicy z niepotwierdzonymi adresami EmailUzbekistanPoprawne tagi {{reply_to}} oraz {{site_name}}VanuatuVaticanVenezuelaWersja %sBardzo łatweBardzo słabeVietnamPokaż wszystkie dodatkowe parametry krótkich kodów.Wyświetl Formularz Edycji ProfiluZobacz formularz rejestracjiZobacz Listę UżytkownikówWidocznośćWidoczne jedynie dla zarejestrowanych użytkowników?Widoczne dla następujących profiliWallis and FutunasłabeWitryna internetowaWitaj na %1$s!


            Twoja nazwa użytkownika to:%2$s oraz hasło:%3$sWestern SaharaCzy pole jest wymagane?Zalogować automatycznie nowo-zarejestrowanego użytkownika czy nie
            Działa tylko na pojedynczych stronach bez aktywnych "Zatwierdzenia Administratora" oraz "Potwierdzenia Email"
            UWAGA: Buforowanie (ang. caching) formularza rejestracji może skutkować brakiem możliwości automatycznego logowaniaCzy przekierować użytkownika na zdefiniowaną stronęZ wykorzystanie dodatkowych pól w profilu możesz stworzyć formularz rejestracji, którego potrzebuje Twój projekt.Yahoo IMYemenTakYimJesteś zalogowany jako %1s. %2sJesteś zalogowany jako %1s. Nie potrzebujesz kolejnego konta. %2sJesteś obecnie zalogowany jako %s. Możesz dodać informację do %s po dodaniu wpisuListę niepotwierdzonych adresów email mozesz znaleźć w %1$sUżytkownicy > Wszyscy Użytkownicy > Potwierdzenie Email%2$s.Możesz znaleźć listę użytkowników przechodząć do %1$sUżytkownicy > Wszyscy Użytkownicy > Potwierdzenie Administratora%2$s.Możesz to znaleźć w menu Profile BiulderDomyślny plik znajdziesz tutaj: %1$sNie możesz zarejestrować tego profilu użytkownika.Ty decydujesz, kto jest użytkownikiem na Twojej stronie. Otrzymuj powiadomienia na email oraz zezwalaj na logowanie do Twojej strony wielu użytkownikom w tym samym czasie.Ty decydujesz, kto jest użytkownikiem na Twojej stronie. Otrzymuj potwierdzenia poprzez email lub akceptuj wielu użytkowników na raz poprzez panel Wordpress. Odblokuj "Potwierdzenie Administratora" poprzez aktualizację do %1$s wersji Hobbyist lub PRO %2$s.Nie masz ustawień stron dla tej listy użytkowników!Nie masz uprawnień do wykonania tej akcji lub wystąpił błąd!Udało Ci się zresetować hasło. Twoje nowe hasło to: %1$sMusisz być zalogowany, aby zmodyfikować swój profilWprowadź poprawny adres email.Musisz wprowadzić format daty Wprowadź numer wiersza Musisz podać tajny klucz Musisz podać klucz strony Musisz wybrać pole Musisz aktywować funkcjonalność wyświetlania użytkowników w zakładce "Moduły"!Musisz określić nazwę formularza przez jego stworzeniemDrogą mailową otrzymasz link do utworzenia nowego hasła.Niedługo zostaniesz przekierowany. Jeśli oglądasz tę stronę przez więcej niż %1$d sekund, proszę kliknij %2$s.%3$sTwoje konto musi zostać zatwierdzone przez administratora, zanim będziesz odzyskać swoje hasło.Twoje konto musi zostać zatwierdzone przez administratora zanim będziesz mógł odzyskać swoje hasło.Twoje konto na %1$s zostało poprawnie zweryfikowane!Twoje konto na %1$s zostało zawieszone!Twoje konto na {{site_name}} zostało zatwierdzone!Twoje konto na {{site_name}} nie zostało zatwierdzone!Twój adres email został zweryfikowany poprawnie.Twoje hasło zostało zmienione!Twój profil został zaktualizowany!Hasło, które podałeś podczas rejestracjiTwoja sesja wygasła! Proszę odśwież stronę oraz spróbuj ponownieTwoja sesja wygasła! Proszę odśwież stronę oraz spróbuj ponownie.ZambiaZimbabwe[%1$s] Aktywuj %2$s[%1$s] Informacje o Twoim nowym koncie[{{site_name}}] Aktywuj {{username}}[{{site_name}}] Reset hasła[{{site_name}}] Hasło zostało zresetowanie.zatwierdzić tego użytkownika?zatwierdzoneCzy sam chcesz potwierdzić ten adres email?Usunąć użytkowników z tabeli _signups?skasować tego użytkownika?wyświetla wszystkich użytkowników poza tymi, dla których wyspecyfikowany został parametr uder_idwyświetla tylko tych użytkowników, dla których wyspecyfikowany został parametr user_id wyświetla użytkowników posiadających określone wartości w ramach określonych parametrów meta-fieldemailtutajreCAPTCHAwymaganewysłać ponownie link aktywacyjny?pokażodrzucić tego użytkownika?niezatwierdzoneusernamenazwa użytkownika lub emailtranslation/profile-builder.catalog.php000066600000373462152141651170014336 0ustar00 Learn more about importing BuddyPress fields.", "profile-builder"); ?> Registration emails will now be managed in Profile Builder -> User Email Customizer", "profile-builder"); ?> The template used will be the one selected above.", "profile-builder"); ?> Import BuddyPress Fields to Profile Builder", "profile-builder"); ?>
            ", "profile-builder"); ?>
            ", "profile-builder"); ?> Note:
            This action is not reversible. All modifications to this template will be lost!", "profile-builder"); ?> Admin Only field is visible only for administrators. User Locked field is visible for both administrators and users, but only administrators have the capability to edit it.", "profile-builder"); ?> Title
            Type
            Meta Name
            Required
            ", "profile-builder"); ?>
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            Social Connect will still automatically register users on other forms.", "profile-builder"); ?>
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
             Do you want to connect it?", "profile-builder"); ?>
            
            
            
            
            
            ERROR
            : You need to confirm your email address before you can log in.", "profile-builder"); ?> ERROR: Your account has to be confirmed by an administrator before you can log in.", "profile-builder"); ?> You can only login with social accounts, not register!
            Please link your social account to an existing user account first.", "profile-builder"); ?> Register with your social account on the register form.", "profile-builder"); ?> This will also add the Profile Builder Login form to MyAccount page.", "profile-builder"); ?> here.", "profile-builder"); ?> You must also enable GDPR on the list from mailchimp", "profile-builder"); ?> here.", "profile-builder"); ?> inactive", "profile-builder"); ?> active", "profile-builder"); ?> install manually.", "profile-builder"); ?> active", "profile-builder"); ?> inactive", "profile-builder"); ?> install manually.", "profile-builder"); ?> ERROR: The password must have the minimum length of %s characters", "profile-builder"); ?> ERROR: The password must have a minimum strength of %s", "profile-builder"); ?> %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. ", "profile-builder"); ?> Profile Builder %s", "profile-builder"); ?> All Users > Email Confirmation%2$s.", "profile-builder"); ?> All Users > Admin Approval%2$s.", "profile-builder"); ?> Roles Editor%2$s.", "profile-builder"); ?> Hobbyist or PRO versions.", "profile-builder"); ?> Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count", "profile-builder"); ?> Auto-completed but in some cases editable (in which case it must be unique)
            Changing this will only affect subsequent entries", "profile-builder"); ?> You can use this in conjuction with filters to target this element if needed
            Can't be edited", "profile-builder"); ?> Optional", "profile-builder"); ?> If not specified, defaults to 5", "profile-builder"); ?> Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)", "profile-builder"); ?> Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)", "profile-builder"); ?> If not specified, defaults to 100", "profile-builder"); ?> 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, @
            If not specified, defaults to mm/dd/yy", "profile-builder"); ?> Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>", "profile-builder"); ?> This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes", "profile-builder"); ?> Visible for the user", "profile-builder"); ?> type of reCAPTCHA you wish to add to this site.", "profile-builder"); ?> www.google.com/recaptcha", "profile-builder"); ?> www.google.com/recaptcha", "profile-builder"); ?> If there are multiple values, separate them with a ',' (comma)", "profile-builder"); ?> Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used.", "profile-builder"); ?> Use this at your own risk", "profile-builder"); ?>
            Please adjust this value to your hosting capabilities, and make sure that the value you set is the best for performance. We recommend a maximum value of 300.", "profile-builder"); ?> Title
            Type
            Meta Name
            Required
            ", "profile-builder"); ?> paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s", "profile-builder"); ?> Custom Profile Menus\" addon if you need different menu items for logged in / logged out users.", "profile-builder"); ?> Your Profile Builder serial number is invalid or missing.
            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

            ", "profile-builder"); ?> Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s

            ", "profile-builder"); ?> Your Profile Builder license has expired.
            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

            ", "profile-builder"); ?> Your Profile Builder license is about to expire on %5$s.
            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

            ", "profile-builder"); ?>
            Also, you will be able to visit your site at ", "profile-builder"); ?>
            You can visit your site at ", "profile-builder"); ?> homepage!", "profile-builder"); ?> %1$s

            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s", "profile-builder"); ?> His/her new password is:%2$s", "profile-builder"); ?> Hidden and checked option, the field won't be shown and the message will always be sent to the user.", "profile-builder"); ?> Display Name that is already used by another account.", "profile-builder"); ?> John Doe instead of john doe", "profile-builder"); ?> 'After Registration' redirect to happen.", "profile-builder"); ?> wppb_approval_status meta name.", "profile-builder"); ?> last_login_date.", "profile-builder"); ?> create a field with this meta name in Profile Builder to display it in the Userlisting or Edit Profile forms.", "profile-builder"); ?> last_profile_update_date.", "profile-builder"); ?> this url.", "profile-builder"); ?> this url.", "profile-builder"); ?> this url.", "profile-builder"); ?> this url.", "profile-builder"); ?> {{{extra_search_all_fields}}} tag.", "profile-builder"); ?> Search Users by All Fields, use this option to change it to something else. Leave empty if you do not want to change it.", "profile-builder"); ?> user. eg.: ", "profile-builder"); ?> user to something else. Leave empty if you do not want to change it.", "profile-builder"); ?> nicename.", "profile-builder"); ?> log in to approve the user manually. ", "profile-builder"); ?> Settings -> Content Restriction, a custom message or an Elementor Template.", "profile-builder"); ?>
            %s%s%s

            After you activate it you will receive yet *another email* with your login.", "profile-builder"); ?>
            Username:%2$s
            E-mail:%3$s
            ", "profile-builder"); ?>

            Your username is: %2$s and your password is the one that you have selected during registration.

            Access your account: %3$s ", "profile-builder"); ?>

            Your username is: %2$s and the password: %3$s.

            Access your account: %4$s ", "profile-builder"); ?> %1$s", "profile-builder"); ?> User ID / Username
            Redirect
            URL
            ", "profile-builder"); ?> User Role
            Redirect
            URL
            ", "profile-builder"); ?> Redirect
            URL
            ", "profile-builder"); ?> redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects.", "profile-builder"); ?> site url can be different then the home url", "profile-builder"); ?> New subscriber on {{site_name}}.

            \n

            Username:{{username}}

            \n

            E-mail:{{user_email}}

            \n", "profile-builder"); ?> New subscriber on {{site_name}}.

            \n

            Username:{{username}}

            \n

            E-mail:{{user_email}}

            \n

            The Admin Approval feature was activated at the time of registration,\nso please remember that you need to approve this user before he/she can log in!

            ", "profile-builder"); ?> {{username}} has requested a password change via the password reset feature.

            \n

            His/her new password is: {{password}}

            \n", "profile-builder"); ?> Welcome to {{site_name}}!\n

            Your username is: {{username}} and password:{{password}}

            \n", "profile-builder"); ?> To activate your user, please click the following link:
            \n{{{activation_link}}}

            \n

            After you activate, you will receive another email with your credentials.

            \n", "profile-builder"); ?> Welcome to {{site_name}}!\n

            Your username is: {{username}} and password:{{password}}

            \n

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n", "profile-builder"); ?> Good News!\n

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n", "profile-builder"); ?> Hello,\n

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n", "profile-builder"); ?> Someone requested that the password be reset for the following account: {{site_name}}
            \nUsername: {{username}}

            \n

            If this was a mistake, just ignore this email and nothing will happen.

            \n

            To reset your password, visit the following address:
            \n{{{reset_link}}}

            \n", "profile-builder"); ?> You have successfully reset your password.

            \n", "profile-builder"); ?> Hi {{username}},\n

            This notice confirms that your email was changed on {{site_name}}.

            \n

            If you did not change your email, please contact the Site Administrator at %s

            \n

            This email has been sent to {{user_email}}

            \n

            Regards,
            \nAll at {{site_name}}
            \n{{site_url}}

            ", "profile-builder"); ?> Note: changing the form title also changes the shortcode!", "profile-builder"); ?> Use the following format: http://www.mysite.com", "profile-builder"); ?> here", "profile-builder"); ?> Title (Type)", "profile-builder"); ?> If not specified, defaults to the role set in the WordPress settings", "profile-builder"); ?> Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work", "profile-builder"); ?> Use the following format: http://www.mysite.com", "profile-builder"); ?> 10K user)", "profile-builder"); ?> If not specified, defaults to all existing roles", "profile-builder"); ?> This can temporarily be changed for each new session", "profile-builder"); ?> This can temporarily be changed for each new session", "profile-builder"); ?> ", "profile-builder"); ?> Leave 0 for unlimited.", "profile-builder"); ?> translation/profile-builder-ar.po000066600000732106152141651170013146 0ustar00# Translation of Profile Builder in Arabic # This file is distributed under the same license as the Profile Builder package. msgid "" msgstr "" "PO-Revision-Date: 2017-08-01 13:42:23+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" "X-Generator: GlotPress/0.1\n" "Project-Id-Version: Profile Builder\n" #: profile-builder-2.0/admin/general-settings.php:154 msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s." msgstr "" #: profile-builder-2.0/admin/general-settings.php:146 msgid "\"Roles Editor\" Activated:" msgstr "" #: profile-builder-2.0/features/roles-editor/roles-editor.php:300 msgid "M j, Y @ G:i" msgstr "" #: profile-builder-2.0/front-end/recover.php:117 msgid "Please enter your email address." msgstr "" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Specify the format of the date when using Datepicker
            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, @
            If not specified, defaults to mm/dd/yy" msgstr "حدد تنسيق التاريخ عند استخدام منسق التاريخ
            الخيارات الصحيحة: 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, @
            If إذا لم يتم تحديد mm/dd/yy" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244 msgid "Individual redirects defined in shortcodes; redirect_priority=\"top\" parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects." msgstr "عمليات إعادة التوجيه الفردية المعرفة في الرموز القصيرة; redirect_priority=\"top\" يمكن إضافة المعاملات في أي رمز قصير، فستكون أولوية إعادة توجيه الرمز القصير هذه على جميع عمليات إعادة التوجيه الأخرى." #: profile-builder-2.0/admin/manage-fields.php:1217 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." msgstr "إذا كنت مهتما بعرض حقول مختلفة في نماذج تسجيل الملف الشخصي وتعديلها، يرجى استخدام وحدات النماذج المتعددة للتسجيل والتعديل الشخصي للملفات الشخصية." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240 msgid "Multiple Registration and Edit Profile form settings Redirects" msgstr "إعدادات متعددة لإعادة التوجيه لنموذج تسجيل وتحرير الملف الشخصي" #: profile-builder-2.0/admin/register-version.php:251 msgid "

            Your Profile Builder license is about to expire on %5$s.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s

            " msgstr "

            إن ترخيص Profile Builder على وشك الانتهاء في %5$s.
            الرجاء %1$s تجديد الترخيص %2$s لمتابعة تلقي إمكانية الوصول |إلى تحميل المنتجات والتحديثات التلقائية والدعم. %3$s جدد الآن واحصل على خصم 40% %4$s %6$s تجاهل %7$s

            " #: profile-builder-2.0/admin/register-version.php:246 msgid "

            Your Profile Builder license has expired.
            Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s

            " msgstr "

            إن ترخيص Profile Builder قد انتهى.
            الرجاء %1$s تجديد الترخيص %2$s لمتابعة تلقي إمكانية الوصول |إلى تحميل المنتجات والتحديثات التلقائية والدعم. %3$s جدد الآن واحصل على خصم 40% %4$s %6$s تجاهل %7$s

            " #: profile-builder-2.0/front-end/recover.php:159 msgid "You are already logged in. You can change your password on the edit profile form." msgstr "لقد قمت بالفعل بتسجيل الدخول. يمكنك تغيير كلمة المرور الخاصة بك في نموذج تحرير الملف الشخصي." #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70 msgid "Your site url will look like this:
            " msgstr "سيبدو عنوان موقعك على هذا النحو:
            " #: profile-builder-2.0/features/functions.php:909 msgid "

            You can visit your site at " msgstr "

            يمكنك زيارة موقعك على" #: profile-builder-2.0/features/functions.php:896 msgid "

            Also, you will be able to visit your site at " msgstr "

            كما ستتمكن من زيارة موقعك على" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138 msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network." msgstr "الخصوصية: أرغب في ظهور موقعي في محركات البحث، وفي القوائم العامة حول هذه الشبكة." #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116 msgid "Site Title" msgstr "عنوان الموقع" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93 msgid "Site URL slug" msgstr "عنوان الموقع" #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63 msgid "Yes, I'd like to create a new site" msgstr "نعم، أريد إنشاء موقع جديد" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36 #: profile-builder-2.0/modules/user-listing/userlisting.php:118 msgid "Blog URL" msgstr "عنوان المدونة" #: profile-builder-2.0/admin/admin-functions.php:44 msgid "Blog Details - only appears on the Registration page!" msgstr "تفاصيل المدونة - يظهر فقط على صفحة التسجيل!" #: profile-builder-2.0/admin/manage-fields.php:222 msgid "Blog Details" msgstr "تفاصيل المدونة" #: profile-builder-2.0/admin/pms-cross-promotion.php:239 msgid "Allow your users to have paid accounts with Profile Builder. %1$sFind out how >%2$s %3$sDismiss%4$s" msgstr "السماح للمستخدمين بالحصول على حسابات مدفوعة باستخدام أداةProfile Builder. %1$sمعرفة المزيد >%2$s %3$sتجاهل%4$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579 msgid "Welcome to %1$s!


            Your username is:%2$s" msgstr "مرحبا بك في %1$s!


            اسم المستخدم الخاص بك هو: %2$s" #: profile-builder-2.0/modules/user-listing/userlisting.php:1320 msgid "View Map" msgstr "معاينة الخريطة" #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267 #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367 #: pb-add-on-woocommerce/index.php:493 msgid "Address line 2" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "Billing Fields" msgstr "" #: pb-add-on-woocommerce/index.php:256 msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Billing Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:257 msgid "Save the billing fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Billing Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:258 msgid "Save the billing fields names" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Shipping Fields" msgstr "" #: pb-add-on-woocommerce/index.php:275 msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Shipping Fields Order" msgstr "" #: pb-add-on-woocommerce/index.php:276 msgid "Save the shipping fields order from the billing fields checkboxes" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Shipping Fields Name" msgstr "" #: pb-add-on-woocommerce/index.php:277 msgid "Save the shipping fields names" msgstr "" #: pb-add-on-woocommerce/index.php:305 msgid "Field Name" msgstr "" #: pb-add-on-woocommerce/index.php:369 msgid "Click to edit " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:368 msgid "is not a valid phone number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:377 msgid "is not a number." msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:382 msgid "must be a multiplier of " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:387 msgid "must be a greater than or equal to " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:392 msgid "must be less than or equal to " msgstr "" #: profile-builder-2.0/admin/add-ons.php:103 msgid "Available in Hobbyist and Pro Versions" msgstr "متوفر في اصدارات Hobbyist و Pro" #: profile-builder-2.0/admin/add-ons.php:105 msgid "Available in All Versions" msgstr "متوفر في جميع الإصدارات" #: profile-builder-2.0/admin/add-ons.php:148 msgid "Learn More" msgstr "تعلم المزيد" #: profile-builder-2.0/admin/basic-info.php:99 msgid "Timepicker" msgstr "منتقي الوقت" #: profile-builder-2.0/admin/basic-info.php:100 msgid "Colorpicker" msgstr "منتقي اللون" #: profile-builder-2.0/admin/basic-info.php:103 msgid "Currency Select" msgstr "تحديد العملة" #: profile-builder-2.0/admin/basic-info.php:109 msgid "Number" msgstr "رقم" #: profile-builder-2.0/admin/basic-info.php:114 msgid "Validation" msgstr "التحقق" #: profile-builder-2.0/admin/basic-info.php:115 msgid "Map" msgstr "خريطة" #: profile-builder-2.0/admin/basic-info.php:116 msgid "HTML" msgstr "HTML" #: profile-builder-2.0/admin/basic-info.php:162 #: profile-builder-2.0/modules/modules.php:117 msgid "Repeater Fields" msgstr "حقول التكرار" #: profile-builder-2.0/admin/basic-info.php:163 msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role." msgstr "إعداد مجموعة متكررة من الحقول على نماذج التسجيل وتعديل الملف الشخصي. قم بتحديد عدد المجموعات المتكررة لكل دور مستخدم." #: profile-builder-2.0/admin/general-settings.php:59 msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module." msgstr "يعمل مع نماذج الواجهة الأمامية فقط. يوصى بإعادة توجيه تسجيل الافتراضي ل WP إلى نموذج Profile Builder يستخدم وحدة \"إعادة توجيه مخصص\"." #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing
            Auto-completed but in some cases editable (in which case it must be unique)
            Changing this might take long in case of a very big user-count" msgstr "استخدم هذا مع وظائف ووردبريس لعرض القيمة في الصفحة التي تختارها
            الإكمال التلقائي ولكن في بعض الحالات قابل للتعديل (وفي هذه الحالة يجب أن تكون فريدة من نوعها)
            قد يستغرق تغيير هذا الأمر وقتا طويلا في حالة وجود عدد كبير من المستخدمين" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Show Currency Symbol" msgstr "إظهار رمز العملة" #: profile-builder-2.0/admin/manage-fields.php:143 msgid "Whether the currency symbol should be displayed after the currency name in the select option." msgstr "ما إذا كان يجب عرض رمز العملة بعد اسم العملة في الخيار المحدد." #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Show Post Type" msgstr "عرض نوع المقال" #: profile-builder-2.0/admin/manage-fields.php:144 msgid "Posts from what post type will be displayed in the select." msgstr "سيتم عرض المقالات من نوع المقال في التحديد." #: profile-builder-2.0/admin/manage-fields.php:145 msgid "Allowable Values" msgstr "القيم المسموح بها" #: profile-builder-2.0/admin/manage-fields.php:145 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." msgstr "أدخل قائمة مفصولة بفواصل للقيم المحتملة. عند التسجيل إذا كانت القيمة المقدمة من قبل المستخدم لا تتطابق مع إحدى هذه القيم، لن يتم تسجيل المستخدم." #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Error Message" msgstr "رسالة خطأ" #: profile-builder-2.0/admin/manage-fields.php:146 msgid "Set a custom error message that will be displayed to the user." msgstr "قم بتعيين رسالة خطأ مخصصة ليتم عرضها للمستخدم." #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Time Format" msgstr "صيغة الوقت" #: profile-builder-2.0/admin/manage-fields.php:147 msgid "Specify the time format." msgstr "تحديد صيغة الوقت" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Google Maps API Key" msgstr "مفتاح API لخرائط Google" #: profile-builder-2.0/admin/manage-fields.php:148 msgid "Enter your Google Maps API key ( Get your API key ). If more than one map fields are added to a form the API key from the first map displayed will be used." msgstr "أدخل مفتاح واجهة برمجة تطبيقات خرائط Google ( احصل على مفتاح واجهة برمجة التطبيقات ). إذا تم إضافة أكثر من حقل خريطة إلى نموذج سيتم استخدام مفتاح API من الخريطة الأولى المعروضة." #: profile-builder-2.0/admin/manage-fields.php:149 msgid "Default Latitude" msgstr "خط العرض الافتراضي" #: profile-builder-2.0/admin/manage-fields.php:149 msgid "The latitude at which the map should be displayed when no pins are attached." msgstr "خط العرض الذي يجب أن يتم عرضه في الخريطة عند عدم ربط أي دبابيس." #: profile-builder-2.0/admin/manage-fields.php:150 msgid "Default Longitude" msgstr "الطول الافتراضي" #: profile-builder-2.0/admin/manage-fields.php:150 msgid "The longitude at which the map should be displayed when no pins are attached." msgstr "خط الطول الذي يجب أن يتم عرضه في الخريطة عند عدم ربط أي دبابيس." #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Default Zoom Level" msgstr "مستوى التكبير الافتراضي" #: profile-builder-2.0/admin/manage-fields.php:151 msgid "Add a number from 0 to 19. The higher the number the higher the zoom." msgstr "إضافة رقم من 0 إلى 19. كل ما زاد الرقم زاد التكبير." #: profile-builder-2.0/admin/manage-fields.php:152 msgid "Map Height" msgstr "ارتفاع الخريطة" #: profile-builder-2.0/admin/manage-fields.php:152 msgid "The height of the map." msgstr "ارتفاع الخريطة." #: profile-builder-2.0/admin/manage-fields.php:154 msgid "HTML Content" msgstr "محتوى HTML" #: profile-builder-2.0/admin/manage-fields.php:154 msgid "Add your HTML (or text) content" msgstr "أضف محتوى HTML (أو نص)" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Phone Format" msgstr "تنسيق الهاتف" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces." msgstr "يمكنك استخدام: # للأرقام، الأقواس ()، - علامة، + علامة، نقطة. والمساحات." #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Eg. (###) ###-####" msgstr "مثال. (###) ###-####" #: profile-builder-2.0/admin/manage-fields.php:155 msgid "Empty field won't check for correct phone number." msgstr "لن يقوم الحقل الفارغ بالتحقق من رقم الهاتف الصحيح." #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Heading Tag" msgstr "عنوان العلامة" #: profile-builder-2.0/admin/manage-fields.php:156 msgid "Change heading field size on front-end forms" msgstr "تغيير حجم حقل العنوان في نماذج الواجهة الأمامية" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min Number Value" msgstr "الحد الأدنى لقيمة الرقم" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Min allowed number value (0 to allow only positive numbers)" msgstr "الحد الأدنى المسموح به لقيمة الرقم (0 للسماح للأرقام الإيجابية فقط)" #: profile-builder-2.0/admin/manage-fields.php:157 msgid "Leave it empty for no min value" msgstr "اتركه فارغا لعدم تحديد الحد الأدنى" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max Number Value" msgstr "الحد الأعلى لقيمة الرقم" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Max allowed number value (0 to allow only negative numbers)" msgstr "الحد الأعلى المسموح به لقيمة الرقم (0 للسماح للأرقام الإيجابية فقط)" #: profile-builder-2.0/admin/manage-fields.php:158 msgid "Leave it empty for no max value" msgstr "اتركه فارغا لعدم تحديد الحد الأعلى" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Number Step Value" msgstr "قيمة خطوة الرقم" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal" msgstr "قيمة الخطوة 1 للسماح الأعداد الصحيحة فقط، 0.1 للسماح الأعداد الصحيحة والأرقام مع رقم عشري واحد" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on" msgstr "للسماح للعديد من الكسور العشرية المستخدمة على سبيل المثال. 0.01 (ل 2 عشري) وما إلى ذلك" #: profile-builder-2.0/admin/manage-fields.php:159 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)" msgstr "يمكنك أيضا استخدام قيمة الخطوة لتحديد فترات الرقم القانوني (على سبيل المثال الخطوة 2 سوف تسمح فقط -4، -2، 0، 2 وما إلى ذلك)" #: profile-builder-2.0/admin/manage-fields.php:159 msgid "Leave it empty for no restriction" msgstr "اتركه فارغا بدون قيود" #: profile-builder-2.0/admin/manage-fields.php:564 msgid "Albania Lek" msgstr "ليك ألبانيا" #: profile-builder-2.0/admin/manage-fields.php:565 msgid "Afghanistan Afghani" msgstr "أفغانستان الأفغاني" #: profile-builder-2.0/admin/manage-fields.php:566 msgid "Argentina Peso" msgstr "البيزو الأرجنتيني" #: profile-builder-2.0/admin/manage-fields.php:567 msgid "Aruba Guilder" msgstr "أروبا غيلدر" #: profile-builder-2.0/admin/manage-fields.php:568 msgid "Australia Dollar" msgstr "دولار استرالي" #: profile-builder-2.0/admin/manage-fields.php:569 msgid "Azerbaijan New Manat" msgstr "أذربيجان الجديدة مانات" #: profile-builder-2.0/admin/manage-fields.php:570 msgid "Bahamas Dollar" msgstr "الدولار الباهاما" #: profile-builder-2.0/admin/manage-fields.php:571 msgid "Barbados Dollar" msgstr "دولار بربادوس" #: profile-builder-2.0/admin/manage-fields.php:572 msgid "Bangladeshi taka" msgstr "تاكا بنغلاديشية" #: profile-builder-2.0/admin/manage-fields.php:573 msgid "Belarus Ruble" msgstr "روبل روسيا البيضاء" #: profile-builder-2.0/admin/manage-fields.php:574 msgid "Belize Dollar" msgstr "دولار بليز" #: profile-builder-2.0/admin/manage-fields.php:575 msgid "Bermuda Dollar" msgstr "دولار برمودا" #: profile-builder-2.0/admin/manage-fields.php:576 msgid "Bolivia Boliviano" msgstr "بوليفيا بوليفيانو" #: profile-builder-2.0/admin/manage-fields.php:577 msgid "Bosnia and Herzegovina Convertible Marka" msgstr "ماركا للتحويل البوسنة والهرسك" #: profile-builder-2.0/admin/manage-fields.php:578 msgid "Botswana Pula" msgstr "بوتسوانا، بولا" #: profile-builder-2.0/admin/manage-fields.php:579 msgid "Bulgaria Lev" msgstr "بلغاريا ليف" #: profile-builder-2.0/admin/manage-fields.php:580 msgid "Brazil Real" msgstr "ريال برازيلي" #: profile-builder-2.0/admin/manage-fields.php:581 msgid "Brunei Darussalam Dollar" msgstr "دولار بروناى دار السلام" #: profile-builder-2.0/admin/manage-fields.php:582 msgid "Cambodia Riel" msgstr "ريال كمبودي" #: profile-builder-2.0/admin/manage-fields.php:583 msgid "Canada Dollar" msgstr "دولار كندي" #: profile-builder-2.0/admin/manage-fields.php:584 msgid "Cayman Islands Dollar" msgstr "دولار جزر كايمان" #: profile-builder-2.0/admin/manage-fields.php:585 msgid "Chile Peso" msgstr "شيلي بيزو" #: profile-builder-2.0/admin/manage-fields.php:586 msgid "China Yuan Renminbi" msgstr "الصين يوان رينمينبي" #: profile-builder-2.0/admin/manage-fields.php:587 msgid "Colombia Peso" msgstr "بيزو كولومبيا" #: profile-builder-2.0/admin/manage-fields.php:588 msgid "Costa Rica Colon" msgstr "كوستاريكا كولون" #: profile-builder-2.0/admin/manage-fields.php:589 msgid "Croatia Kuna" msgstr "كونا كرواتية" #: profile-builder-2.0/admin/manage-fields.php:590 msgid "Cuba Peso" msgstr "كوبا بيزو" #: profile-builder-2.0/admin/manage-fields.php:591 msgid "Czech Republic Koruna" msgstr "الجمهورية التشيكية كورونا" #: profile-builder-2.0/admin/manage-fields.php:592 msgid "Denmark Krone" msgstr "كرون دنماركي" #: profile-builder-2.0/admin/manage-fields.php:593 msgid "Dominican Republic Peso" msgstr "بيزو جمهورية الدومينيكان" #: profile-builder-2.0/admin/manage-fields.php:594 msgid "East Caribbean Dollar" msgstr "دولار شرق الكاريبي" #: profile-builder-2.0/admin/manage-fields.php:595 msgid "Egypt Pound" msgstr "جنيه مصري" #: profile-builder-2.0/admin/manage-fields.php:596 msgid "El Salvador Colon" msgstr "السلفادور، الكولون" #: profile-builder-2.0/admin/manage-fields.php:597 msgid "Estonia Kroon" msgstr "إستونيا كرون" #: profile-builder-2.0/admin/manage-fields.php:598 msgid "Euro" msgstr "يورو" #: profile-builder-2.0/admin/manage-fields.php:599 msgid "Falkland Islands (Malvinas) Pound" msgstr "جزر فوكلاند (مالفيناس) جنيه" #: profile-builder-2.0/admin/manage-fields.php:600 msgid "Fiji Dollar" msgstr "دولار فيجى" #: profile-builder-2.0/admin/manage-fields.php:601 msgid "Ghana Cedis" msgstr "غانا سيديس" #: profile-builder-2.0/admin/manage-fields.php:602 msgid "Gibraltar Pound" msgstr "جنيه جبل طارق" #: profile-builder-2.0/admin/manage-fields.php:603 msgid "Guatemala Quetzal" msgstr "غواتيمالا كيتزال" #: profile-builder-2.0/admin/manage-fields.php:604 msgid "Guernsey Pound" msgstr "جنيه غيرنسي" #: profile-builder-2.0/admin/manage-fields.php:605 msgid "Guyana Dollar" msgstr "دولار غيانا" #: profile-builder-2.0/admin/manage-fields.php:606 msgid "Honduras Lempira" msgstr "هندوراس ليمبيرا" #: profile-builder-2.0/admin/manage-fields.php:607 msgid "Hong Kong Dollar" msgstr "دولار هونج كونج" #: profile-builder-2.0/admin/manage-fields.php:608 msgid "Hungary Forint" msgstr "فورينت مجري" #: profile-builder-2.0/admin/manage-fields.php:609 msgid "Iceland Krona" msgstr "كرونا آيسلندي" #: profile-builder-2.0/admin/manage-fields.php:610 msgid "India Rupee" msgstr "روبية هندية" #: profile-builder-2.0/admin/manage-fields.php:611 msgid "Indonesia Rupiah" msgstr "روبية إندونيسية" #: profile-builder-2.0/admin/manage-fields.php:612 msgid "Iran Rial" msgstr "ريال إيراني" #: profile-builder-2.0/admin/manage-fields.php:613 msgid "Isle of Man Pound" msgstr "جنيه جزيرة آيل أوف مان" #: profile-builder-2.0/admin/manage-fields.php:614 msgid "Israel Shekel" msgstr "شيكل الكيان الصهيوني" #: profile-builder-2.0/admin/manage-fields.php:615 msgid "Jamaica Dollar" msgstr "دولار جامايكي" #: profile-builder-2.0/admin/manage-fields.php:616 msgid "Japan Yen" msgstr "الين الياباني" #: profile-builder-2.0/admin/manage-fields.php:617 msgid "Jersey Pound" msgstr "جنيه جيرزي" #: profile-builder-2.0/admin/manage-fields.php:618 msgid "Kazakhstan Tenge" msgstr "كازاخستان تنغي" #: profile-builder-2.0/admin/manage-fields.php:619 msgid "Korea (North) Won" msgstr "كوريا (الشمالية) وون" #: profile-builder-2.0/admin/manage-fields.php:620 msgid "Korea (South) Won" msgstr "كوريا (الجنوبية) وون" #: profile-builder-2.0/admin/manage-fields.php:621 msgid "Kyrgyzstan Som" msgstr "قيرغيزستان سوم" #: profile-builder-2.0/admin/manage-fields.php:622 msgid "Laos Kip" msgstr "لاوس كيب" #: profile-builder-2.0/admin/manage-fields.php:623 msgid "Latvia Lat" msgstr "لاتفيا لات" #: profile-builder-2.0/admin/manage-fields.php:624 msgid "Lebanon Pound" msgstr "جنيه لبناني" #: profile-builder-2.0/admin/manage-fields.php:625 msgid "Liberia Dollar" msgstr "دولار الليبيري" #: profile-builder-2.0/admin/manage-fields.php:626 msgid "Lithuania Litas" msgstr "ليتوانيا الليتاس" #: profile-builder-2.0/admin/manage-fields.php:627 msgid "Macedonia Denar" msgstr "دينار مقدوني" #: profile-builder-2.0/admin/manage-fields.php:628 msgid "Malaysia Ringgit" msgstr "رينغيت ماليزيا" #: profile-builder-2.0/admin/manage-fields.php:629 msgid "Mauritius Rupee" msgstr "روبي موريشيوس" #: profile-builder-2.0/admin/manage-fields.php:630 msgid "Mexico Peso" msgstr "بيزو مكسيكي" #: profile-builder-2.0/admin/manage-fields.php:631 msgid "Mongolia Tughrik" msgstr "منغوليا توغريك" #: profile-builder-2.0/admin/manage-fields.php:632 msgid "Mozambique Metical" msgstr "موزمبيق ميتيكال" #: profile-builder-2.0/admin/manage-fields.php:633 msgid "Namibia Dollar" msgstr "دولار ناميبي" #: profile-builder-2.0/admin/manage-fields.php:634 msgid "Nepal Rupee" msgstr "روبية نيبال" #: profile-builder-2.0/admin/manage-fields.php:635 msgid "Netherlands Antilles Guilder" msgstr "هولندا أنتيليان غيلدر" #: profile-builder-2.0/admin/manage-fields.php:636 msgid "New Zealand Dollar" msgstr "دولار نيوزيلندي" #: profile-builder-2.0/admin/manage-fields.php:637 msgid "Nicaragua Cordoba" msgstr "نيكاراغوا قرطبة" #: profile-builder-2.0/admin/manage-fields.php:638 msgid "Nigeria Naira" msgstr "نيرة نيجيرية" #: profile-builder-2.0/admin/manage-fields.php:639 msgid "Norway Krone" msgstr "كرون نرويجي" #: profile-builder-2.0/admin/manage-fields.php:640 msgid "Oman Rial" msgstr "ريال عماني" #: profile-builder-2.0/admin/manage-fields.php:641 msgid "Pakistan Rupee" msgstr "روبية باكستانية" #: profile-builder-2.0/admin/manage-fields.php:642 msgid "Panama Balboa" msgstr "بنما بالبوا" #: profile-builder-2.0/admin/manage-fields.php:643 msgid "Paraguay Guarani" msgstr "جواراني باراجواي" #: profile-builder-2.0/admin/manage-fields.php:644 msgid "Peru Nuevo Sol" msgstr "بيرو نويفو سول" #: profile-builder-2.0/admin/manage-fields.php:645 msgid "Philippines Peso" msgstr "بيسو فلبيني" #: profile-builder-2.0/admin/manage-fields.php:646 msgid "Poland Zloty" msgstr "بولندا زلوتي" #: profile-builder-2.0/admin/manage-fields.php:647 msgid "Qatar Riyal" msgstr "ريال قطري" #: profile-builder-2.0/admin/manage-fields.php:648 msgid "Romania New Leu" msgstr "ليو روماني جديد" #: profile-builder-2.0/admin/manage-fields.php:649 msgid "Russia Ruble" msgstr "روبل روسي" #: profile-builder-2.0/admin/manage-fields.php:650 msgid "Saint Helena Pound" msgstr "جنيه سانت هيلانا" #: profile-builder-2.0/admin/manage-fields.php:651 msgid "Saudi Arabia Riyal" msgstr "ريال سعودي" #: profile-builder-2.0/admin/manage-fields.php:652 msgid "Serbia Dinar" msgstr "دينار صربي" #: profile-builder-2.0/admin/manage-fields.php:653 msgid "Seychelles Rupee" msgstr "روبية سيشيلية" #: profile-builder-2.0/admin/manage-fields.php:654 msgid "Singapore Dollar" msgstr "دولار سينغافوري" #: profile-builder-2.0/admin/manage-fields.php:655 msgid "Solomon Islands Dollar" msgstr "دولار جزر سليمان" #: profile-builder-2.0/admin/manage-fields.php:656 msgid "Somalia Shilling" msgstr "شلن صومالي" #: profile-builder-2.0/admin/manage-fields.php:657 msgid "South Africa Rand" msgstr "راند جنوب أفريقيا" #: profile-builder-2.0/admin/manage-fields.php:658 msgid "Sri Lanka Rupee" msgstr "روبية سريلانكا" #: profile-builder-2.0/admin/manage-fields.php:659 msgid "Sweden Krona" msgstr "كرونا سويدية" #: profile-builder-2.0/admin/manage-fields.php:660 msgid "Switzerland Franc" msgstr "فرنك سويسري" #: profile-builder-2.0/admin/manage-fields.php:661 msgid "Suriname Dollar" msgstr "دولار سورينام" #: profile-builder-2.0/admin/manage-fields.php:662 msgid "Syria Pound" msgstr "ليرة سورية" #: profile-builder-2.0/admin/manage-fields.php:663 msgid "Taiwan New Dollar" msgstr "تايوان الدولار الجديد" #: profile-builder-2.0/admin/manage-fields.php:664 msgid "Thailand Baht" msgstr "باهت تايلاندي" #: profile-builder-2.0/admin/manage-fields.php:665 msgid "Trinidad and Tobago Dollar" msgstr "دولار ترينيداد وتوباغو" #: profile-builder-2.0/admin/manage-fields.php:666 #: profile-builder-2.0/admin/manage-fields.php:667 msgid "Turkey Lira" msgstr "ليرا تركية" #: profile-builder-2.0/admin/manage-fields.php:668 msgid "Tuvalu Dollar" msgstr "دولار توفالو" #: profile-builder-2.0/admin/manage-fields.php:669 msgid "Ukraine Hryvna" msgstr "أوكرانيا هريفنيا" #: profile-builder-2.0/admin/manage-fields.php:670 msgid "United Kingdom Pound" msgstr "جنيه استرليني" #: profile-builder-2.0/admin/manage-fields.php:671 msgid "Uganda Shilling" msgstr "شلن أوغندي" #: profile-builder-2.0/admin/manage-fields.php:672 msgid "US Dollar" msgstr "دولار أمريكي" #: profile-builder-2.0/admin/manage-fields.php:673 msgid "Uruguay Peso" msgstr "بيسو أوروغواي" #: profile-builder-2.0/admin/manage-fields.php:674 msgid "Uzbekistan Som" msgstr "أوزبكستان سوم" #: profile-builder-2.0/admin/manage-fields.php:675 msgid "Venezuela Bolivar" msgstr "بوليفار فنزويلا" #: profile-builder-2.0/admin/manage-fields.php:676 msgid "Viet Nam Dong" msgstr "فيتنام دونغ" #: profile-builder-2.0/admin/manage-fields.php:677 msgid "Yemen Rial" msgstr "ريال يمني" #: profile-builder-2.0/admin/manage-fields.php:678 msgid "Zimbabwe Dollar" msgstr "دولار زمبابوي" #: profile-builder-2.0/admin/manage-fields.php:1097 msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n" msgstr "يمكن أن يحتوي الاسم الوصفي فقط على أحرف صغيرة وأرقام و _ و - وليس مسافات.\n" #: profile-builder-2.0/admin/manage-fields.php:1314 msgid "Search Location" msgstr "موقع البحث" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754 msgid "You are not allowed to do this." msgstr "لا يسمح لك بذلك." #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460 msgid "Search Users" msgstr "البحث عن المستخدمين" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78 msgid "Conditional Logic" msgstr "المنطق الشرطي" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79 msgid "Conditional Rules" msgstr "القواعد المشروطة" #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448 msgid "This field has conditional logic enabled." msgstr "هذا الحقل لديه منطق شرطي مفعل." #: profile-builder-2.0/features/functions.php:685 msgid "Incorrect phone number" msgstr "رقم الهاتف غير صحيح" #: profile-builder-2.0/front-end/class-formbuilder.php:124 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." msgstr "تم تعيين دور المستخدم الذي تم إنشاؤه إلى الدور الافتراضي. لا يمكن تسجيل مستخدم له الدور المعين لهذا النموذج إلا من قبل المشرف." #: profile-builder-2.0/front-end/extra-fields/map/map.php:46 #: profile-builder-2.0/front-end/extra-fields/map/map.php:69 msgid "Please add the Google Maps API key for this field." msgstr "الرجاء إضافة مفتاح واجهة برمجة التطبيقات لخرائط غوغل لهذا الحقل." #: profile-builder-2.0/front-end/extra-fields/map/map.php:134 msgid "Something went wrong. Please try again." msgstr "هناك خطأ ما. حاول مرة اخرى." #: profile-builder-2.0/front-end/extra-fields/number/number.php:69 msgid "Please enter numbers only" msgstr "برجاء إدخال أرقام فقط" #: profile-builder-2.0/front-end/extra-fields/number/number.php:73 msgid "Value must be a multiplier of %1$s" msgstr "يجب أن تكون القيمة مضاعفا ل %1$s" #: profile-builder-2.0/front-end/extra-fields/number/number.php:77 msgid "Value must be greater than or equal to %1$s" msgstr "يجب أن تكون القيمة أكبر من أو تساوي %1$s" #: profile-builder-2.0/front-end/extra-fields/number/number.php:81 msgid "Value must be less than or equal to %1$s" msgstr "يجب أن تكون القيمة أكبر من أو تساوي %1$s" #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22 msgid "Required phone number format: " msgstr "تنسيق رقم الهاتف المطلوب:" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bolivia, __( Plurinational State of" msgstr "بوليفيا، __ (دولة - المتعددة القوميات" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bonaire, __( Sint Eustatius and Saba" msgstr "بونير، __ (سينت أوستاتيوس وسابا" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brunei Darussalam" msgstr "دولار بروناى دار السلام" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cabo Verde" msgstr "الرأس الأخضر" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cocos (Keeling) Islands" msgstr "جزر كوكوس" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo" msgstr "جمهورية الكونغو" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Congo, __( the Democratic Republic of the" msgstr "جمهورية الكونغو الديموقراطية" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cote dIvoire" msgstr "ساحل العاج" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Falkland Islands (Malvinas)" msgstr "جزر فوكلاند (مالفيناس)" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Holy See (Vatican City State)" msgstr "الكرسي الرسولي (دولة الفاتيكان)" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iran, __( Islamic Republic of" msgstr "إيران (جمهورية - الإسلامية)" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Democratic Peoples Republic of" msgstr "كوريا، الجمهورية الشعبية الديمقراطية" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Korea, __( Republic of" msgstr "جمهورية كوريا" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lao Peoples Democratic Republic" msgstr "جمهورية لاو الديمقراطية الشعبية" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macedonia, __( the former Yugoslav Republic of" msgstr "مقدونيا، __ (جمهورية يوغوسلافيا السابقة" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Micronesia, __( Federated States of" msgstr "ميكرونيزيا، __ (ولايات - الموحدة" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Moldova, __( Republic of" msgstr "مولدوفا، __ (جمهورية" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palestine, __( State of" msgstr "فلسطين" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Russian Federation" msgstr "الاتحاد الروسي" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Helena, __( Ascension and Tristan da Cunha" msgstr "سانت هيلينا، __ (أسينسيون وتريستان دا كونها" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Martin (French part)" msgstr "سانت مارتن (الجزء الفرنسي)" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sint Maarten (Dutch part)" msgstr "سانت مارتن (الجزء الهولندي)" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Syrian Arab Republic" msgstr "الجمهورية العربية السورية" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Taiwan, __( Province of China" msgstr "تايوان، __ (مقاطعة الصين" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tanzania, __( United Republic of" msgstr "تنزانيا، __ (جمهورية - المتحدة" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Timor-Leste" msgstr "تيمور الشرقية" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Venezuela, __( Bolivarian Republic of" msgstr "فنزويلا، __ (جمهورية - البوليفارية" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Viet Nam" msgstr "فيتنام" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( British" msgstr "جزر فيرجن، __ (البريطانية" #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Virgin Islands, __( U.S." msgstr "جزر فيرجن، __ (الأمريكية." #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:186 msgid "User Fields Tags" msgstr "وسوم حقول المستخدم" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479 msgid "The users selected password at signup" msgstr "قام المستخدمين باختيار كلمة المرور عند الاشتراك" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278 msgid "[{{site_name}}] Notice of Email Change" msgstr "[{{site_name}}] إشعار بتغيير البريد الإلكتروني" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289 msgid "Changed Email Address Notification" msgstr "إشعار تغيير عنوان البريد الإلكتروني" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Limit" msgstr "حد" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190 msgid "Enable limit to the number of fields to be generated by users in front end forms " msgstr "تمكين الحد لعدد الحقول التي سيتم إنشاؤها بواسطة المستخدمين في نماذج الواجهة الأمامية" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "General Limit" msgstr "الحد العام" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191 msgid "Default limit for this repeater group.
            Leave 0 for unlimited." msgstr "الحد الافتراضي لهذه المجموعة المكرره.
            اترك 0 بدون تحديد." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "Limit reached message" msgstr "رسالة الوصول للحد الأقصى" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The maximum number of fields has been reached." msgstr "تم الوصول إلى الحد الأقصى لعدد الحقول." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192 msgid "The popup message to display when the limit of repeater groups is reached." msgstr "الرسالة المنبثقة تعرض عندما يتم الوصول إلى الحد الأقصى من المجموعات المكررة." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Limit per Role" msgstr "يوجد حد لكل دور" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193 msgid "Leave 0 for unlimited." msgstr "اترك 0 لغير محدود." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Repeated field group" msgstr "مجموعة الحقول المتكررة" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194 msgid "Manage field or group of fields that will be repeatable." msgstr "إدارة الحقل أو مجموعة الحقول التي سيتم تكرارها." #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259 msgid "Edit field group" msgstr "تعديل مجموعة الحقول" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260 msgid "Repeatable fields saved!" msgstr "تم حفظ الحقول القابلة للتكرار!" #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277 #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326 msgid "Please enter a unique field title.\n" msgstr "الرجاء إدخال عنوان حقل فريد.\n" #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267 msgid "Are you sure you want to delete this?" msgstr "هل أنت متأكد أنك تريد حذف هذا؟" #: profile-builder-2.0/modules/user-listing/userlisting.php:192 msgid "Sort Tags" msgstr "فرز الوسوم" #: profile-builder-2.0/modules/user-listing/userlisting.php:201 #: profile-builder-2.0/modules/user-listing/userlisting.php:2308 msgid "Faceted Menus" msgstr "قوائم الأوجه" #: profile-builder-2.0/modules/user-listing/userlisting.php:202 msgid "User Count" msgstr "عدد المستخدمين" #: profile-builder-2.0/modules/user-listing/userlisting.php:1553 msgid "Show All" msgstr "إظهار الكل" #: profile-builder-2.0/modules/user-listing/userlisting.php:1710 msgid "No options available" msgstr "لاتوجد خيارات" #: profile-builder-2.0/modules/user-listing/userlisting.php:1861 msgid "Remove All Filters" msgstr "إزالة جميع معايير البحث" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Label" msgstr "ملصق" #: profile-builder-2.0/modules/user-listing/userlisting.php:2298 msgid "Choose the facet name that appears on the frontend" msgstr "اختر اسم الواجهة الذي يظهر على الواجهة الأمامية" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Facet Type" msgstr "نوع الواجهه" #: profile-builder-2.0/modules/user-listing/userlisting.php:2299 msgid "Choose the facet menu type" msgstr "اختر نوع قائمة الواجهه" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Facet Meta" msgstr "واجهة ميتا" #: profile-builder-2.0/modules/user-listing/userlisting.php:2300 msgid "Choose the meta field for the facet menu" msgstr "اختر حقل ميتا لقائمة الواجهه" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Behaviour" msgstr "سلوك" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Narrow the results" msgstr "تضييق النتائج" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Expand the results" msgstr "توسيع النتائج" #: profile-builder-2.0/modules/user-listing/userlisting.php:2301 msgid "Choose how multiple selections affect the results" msgstr "اختر كيفية تأثير التحديدات المتعددة على النتائج" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Visible choices" msgstr "الخيارات المرئية" #: profile-builder-2.0/modules/user-listing/userlisting.php:2302 msgid "Show a toggle link after this many choices. Leave blank for all" msgstr "عرض رابط تبديل بعد هذه الخيارات المتعددة. اتركه فارغا للجميع" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Search Fields" msgstr "ابحث في الحقول" #: profile-builder-2.0/modules/user-listing/userlisting.php:2325 msgid "Choose the fields in which the Search Field will look in" msgstr "اختر الحقول التي سيتم البحث فيها" #: profile-builder-2.0/modules/user-listing/userlisting.php:2330 msgid "Search Settings" msgstr "ابحث في الإعدادات" #: pb-add-on-woocommerce/billing-fields.php:8 #: pb-add-on-woocommerce/shipping-fields.php:8 msgid "Company Name" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:9 #: pb-add-on-woocommerce/shipping-fields.php:9 msgid "Address" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:5 #: pb-add-on-woocommerce/shipping-fields.php:5 msgid "Country" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:11 #: pb-add-on-woocommerce/shipping-fields.php:11 msgid "Town / City" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:12 #: pb-add-on-woocommerce/shipping-fields.php:12 msgid "State / County" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:13 #: pb-add-on-woocommerce/shipping-fields.php:13 msgid "Postcode / Zip" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:14 msgid "Email Address" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:15 msgid "Phone" msgstr "" #: pb-add-on-woocommerce/billing-fields.php:278 msgid "Ship to a different address?" msgstr "" #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437 msgid "Billing Address" msgstr "" #: pb-add-on-woocommerce/index.php:169 msgid "Displays customer billing fields in front-end. " msgstr "" #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438 msgid "Shipping Address" msgstr "" #: pb-add-on-woocommerce/index.php:173 msgid "Displays customer shipping fields in front-end. " msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Display on WooCommerce Checkout" msgstr "" #: pb-add-on-woocommerce/woo-checkout-field-support.php:96 msgid "Whether the field should be added to the WooCommerce checkout form or not" msgstr "" #: pb-add-on-woocommerce/index.php:541 msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:23 #: pb-add-on-woocommerce/woosync-page.php:70 msgid "WooCommerce Sync" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:76 msgid "Choose Register form to display on My Account page:" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:81 msgid "Default Register" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:103 msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce.
            This will also add the Profile Builder Login form to MyAccount page." msgstr "" #: pb-add-on-woocommerce/woosync-page.php:110 msgid "Choose Edit Profile form to display on My Account page:" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:115 msgid "Default Edit Profile" msgstr "" #: pb-add-on-woocommerce/woosync-page.php:137 msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce." msgstr "" #: profile-builder-2.0/admin/add-ons.php:190 msgid "Recommended Plugins" msgstr "الإضافات الموصى بها" #: profile-builder-2.0/admin/add-ons.php:219 #: profile-builder-2.0/admin/pms-cross-promotion.php:102 msgid "Free" msgstr "مجاني" #: profile-builder-2.0/admin/add-ons.php:221 msgid "Accept user payments, create subscription plans and restrict content on your membership site." msgstr "قبول دفعات المستخدم، إنشاء خطط الاشتراك وتقييد المحتوى على موقعك." #: profile-builder-2.0/admin/add-ons.php:222 #: profile-builder-2.0/admin/pms-cross-promotion.php:105 msgid "More Details" msgstr "معلومات أكثر" #: profile-builder-2.0/admin/add-ons.php:240 #: profile-builder-2.0/admin/pms-cross-promotion.php:88 #: profile-builder-2.0/admin/pms-cross-promotion.php:123 #: profile-builder-2.0/admin/pms-cross-promotion.php:202 msgid "Plugin is inactive" msgstr "الإضافة غير مفعلة" #: profile-builder-2.0/admin/add-ons.php:242 #: profile-builder-2.0/admin/pms-cross-promotion.php:87 #: profile-builder-2.0/admin/pms-cross-promotion.php:125 #: profile-builder-2.0/admin/pms-cross-promotion.php:204 msgid "Plugin is active" msgstr "الإضافة مفعلة" #: profile-builder-2.0/admin/add-ons.php:256 #: profile-builder-2.0/admin/pms-cross-promotion.php:146 msgid "Could not install plugin. Retry or install manually." msgstr "تعذر تثبيت الإضافة. أعد المحاولة أو ثبت يدويا ." #: profile-builder-2.0/admin/pms-cross-promotion.php:10 msgid "Paid Accounts" msgstr "الحسابات المدفوعة" #: profile-builder-2.0/admin/pms-cross-promotion.php:33 msgid "Paid Member Subscriptions - a free WordPress plugin" msgstr "العضوية مدفوعة الاشتراك - إضافة ووردبريس مجانية" #: profile-builder-2.0/admin/pms-cross-promotion.php:37 msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts." msgstr "باستخدام حقل الاشتراكات الجديد في Profile Builder، ستسمح استمارات التسجيل لمستخدميك بالاشتراك في الحسابات المدفوعة." #: profile-builder-2.0/admin/pms-cross-promotion.php:40 msgid "Paid & Free Subscriptions" msgstr "الاشتراكات المدفوعة والمجانية" #: profile-builder-2.0/admin/pms-cross-promotion.php:41 msgid "Restrict Content" msgstr "تقييد المحتوى" #: profile-builder-2.0/admin/pms-cross-promotion.php:42 msgid "Member Management" msgstr "إدارة الأعضاء" #: profile-builder-2.0/admin/pms-cross-promotion.php:43 msgid "Email Templates" msgstr "قوالب البريد الإلكتروني" #: profile-builder-2.0/admin/pms-cross-promotion.php:44 msgid "Account Management" msgstr "إدارة الحساب" #: profile-builder-2.0/admin/pms-cross-promotion.php:45 msgid "Subscription Management" msgstr "إدارة الاشتراكات" #: profile-builder-2.0/admin/pms-cross-promotion.php:46 msgid "Payment Management" msgstr "إدارة الدفع" #: profile-builder-2.0/admin/pms-cross-promotion.php:83 msgid "Plugin is Active" msgstr "الإضافة مفعلة" #: profile-builder-2.0/admin/pms-cross-promotion.php:84 msgid "Plugin has been activated" msgstr "تم تفعيل الإضافة" #: profile-builder-2.0/admin/pms-cross-promotion.php:91 msgid "Plugin has been deactivated." msgstr "تم تعطيل الإضافة." #: profile-builder-2.0/admin/pms-cross-promotion.php:104 msgid "Accept user payments, create subscription plans and restrict content on your website." msgstr "قبول دفعات المستخدم، إنشاء خطط الاشتراك وتقييد المحتوى على موقعك." #: profile-builder-2.0/admin/pms-cross-promotion.php:155 msgid "Step by Step Quick Setup" msgstr "الإعداد السريع خطوة بخطوة" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401 msgid "To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login." msgstr "لتفعيل المستخدم، يرجى النقر على الرابط التالي:

            %s%s%s

            بعد التفعيل، ستتلقى رسالة إلكترونية أخرى * مع تسجيل الدخول." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45 msgid "After Login" msgstr "بعد تسجيل الدخول" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46 msgid "After Logout" msgstr "بعد تسجيل الخروج" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47 msgid "After Registration" msgstr "بعد التسجيل" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48 msgid "After Edit Profile" msgstr "بعد تعديل الملف الشخصي" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49 msgid "After Successful Email Confirmation" msgstr "بعد تأكيد البريد الإلكتروني بنجاح" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50 msgid "After Successful Password Reset" msgstr "بعد إعادة كلمة المرور بنجاح" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51 msgid "Dashboard (redirect users from accessing the dashboard)" msgstr "لوحة التحكم (إعادة توجيه المستخدمين من الدخول إلى لوحة التحكم)" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55 msgid "User ID" msgstr "معرف المستخدم" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61 msgid "User ID or Username" msgstr "معرف المستخدم أو اسم المستخدم" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "User ID / Username" msgstr "معرف المستخدم / اسم المستخدم" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62 msgid "Please select and enter the ID or username of your user." msgstr "يرجى تحديد وإدخال الرقم التعريفي للمستخدم أو اسم المستخدم الخاص به." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131 msgid "Redirect Type" msgstr "نوع إعادة التوجيه" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Redirect URL" msgstr "URL إعادة التوجيه" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138 msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" msgstr "يمكن أن يحتوي على الوسوم الديناميكية التالية:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241 msgid "Individual User Redirects" msgstr "عمليات إعادة توجيه المستخدمين الفرديين" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84 msgid "... Choose" msgstr "... اختر" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 msgid "Select a user role." msgstr "حدد دور المستخدم." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242 msgid "User Role based Redirects" msgstr "عمليات إعادة التوجيه استنادا إلى دور المستخدم" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243 msgid "Global Redirects" msgstr "عمليات إعادة التوجيه العالمية" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133 msgid "Login ( wp_login.php )" msgstr "تسجيل الدخول ( wp_login.php )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134 msgid "Register ( wp-login.php?action=register )" msgstr "التسجيل ( wp-login.php?action=register )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135 msgid "Lost Password ( wp-login.php?action=lostpassword )" msgstr "فقدت كلمة المرور ( wp-login.php?action=lostpassword )" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136 msgid "Author Archive ( http://sitename.com/author/admin )" msgstr "أرشيف المؤلف (http://sitename.com/author/admin)" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145 msgid "Redirect Default WordPress Forms and Pages" msgstr "إعادة توجيه نماذج ووردبريس الافتراضية والصفحات" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157 msgid "How does this work?" msgstr "كيف يعمل هذا؟" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 msgid "
            User ID / Username
            Redirect
            URL
            " msgstr "
            معرف المستخدم / اسم المستخدم
            إعادة توجيه
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 msgid "
            User Role
            Redirect
            URL
            " msgstr "
            دور المستخدم
            إعادة توجيه
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "
            Redirect
            URL
            " msgstr "
            إعادة توجيه
            URL
            " #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236 msgid "These redirects happen after a successful action, like registration or after a successful login." msgstr "تحدث عمليات إعادة التوجيه هذه بعد إجراء ناجح، مثل التسجيل أو بعد تسجيل دخول ناجح." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238 msgid "Which redirect happens depends on the following priority:" msgstr "تعتمد عملية إعادة التوجيه على الأولوية التالية:" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247 msgid "Redirect Default WordPress forms and pages" msgstr "إعادة توجيه نماذج ووردبريس الافتراضية والصفحات" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248 msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder." msgstr "مع هذه يمكنك إعادة توجيه نماذج وورد مختلفة وصفحات إلى صفحات تم إنشاؤها باستخدام profile builder." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250 msgid "Available tags for dynamic URLs" msgstr "الوسوم المتاحة لعناوين URL الديناميكية" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251 msgid "You use the following tags in your URLs to redirect users to various pages." msgstr "يمكنك استخدام الوسوم التالية في عناوين URL لإعادة توجيه المستخدمين إلى صفحات مختلفة." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253 msgid "generates a url of the current website homepage." msgstr "يولد عنوان url للصفحة الرئيسية الحالية." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254 msgid "in WordPress the site url can be different then the home url" msgstr "في ووردبريس يمكن أن يكون عنوان الموقع مختلفا عن عنوان url الرئيسي" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255 msgid "the ID of the user" msgstr "معرف المستخدم" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256 msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces." msgstr "النسخة المعقمة لعنوان URL لاسم المستخدم، يمكن استخدام اسم المستخدم اللطيف بأمان في عناوين URL نظرا لأنه لا يمكن أن يحتوي على أحرف خاصة أو مسافات." #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257 msgid "the URL of the previously visited page" msgstr "عنوان URL للصفحة التي تمت زيارتها سابقا" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352 msgid "You can't add duplicate redirects!" msgstr "لا يمكنك إضافة عمليات إعادة توجيه مكررة!" #: profile-builder-2.0/admin/admin-functions.php:41 msgid "Display name publicly as - only appears on the Edit Profile page!" msgstr "عرض الاسم بشكل عام - يظهر فقط في صفحة تعديل الملف الشخصي!" #: profile-builder-2.0/admin/basic-info.php:37 msgid "Friction-less login using %s shortcode or a widget." msgstr "الاحتكاك أقل في تسجيل الدخول باستخدام %s الرمز القصير أو ودجت." #: profile-builder-2.0/admin/basic-info.php:41 msgid "Beautiful registration forms fully customizable using the %s shortcode." msgstr "أشكال تسجيل جميلة للتخصيص بشكل كامل باستخدام %s الرمز القصير." #: profile-builder-2.0/admin/basic-info.php:45 msgid "Straight forward edit profile forms using %s shortcode." msgstr "تحرير نماذج الملف الشخصي بشكل بسيط باستخدام %s الرمز القصير." #: profile-builder-2.0/admin/basic-info.php:58 msgid "Allow users to recover their password in the front-end using the %s." msgstr "السماح للمستخدمين باستعادة كلمة المرور في الواجهة الأمامية باستخدام %s." #: profile-builder-2.0/admin/basic-info.php:140 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." msgstr "لإنشاء صفحة تحتوي على المستخدمين المسجلين في هذا الموقع / المدونة الحالية، أدخل الرمز القصير التالي في صفحة من اختيارك: %s." #: profile-builder-2.0/admin/general-settings.php:115 msgid "\"Admin Approval\" on User Role:" msgstr "\"موافقة المشرف\" على دور المستخدم:" #: profile-builder-2.0/admin/general-settings.php:134 msgid "Select on what user roles to activate Admin Approval." msgstr "حدد ما أدوار المستخدم لتنشيط موافقة المشرف." #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Display on PB forms" msgstr "عرض على نماذج PB" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Login" msgstr "تسجيل الدخول PB" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Register" msgstr "تسجيل PB" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "PB Recover Password" msgstr "إستعادة كلمة المرور PB" #: profile-builder-2.0/admin/manage-fields.php:133 msgid "Select on which Profile Builder forms to display reCAPTCHA" msgstr "حدد على أي نموذج Profile Builder يتم عرض reCAPTCHA" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Display on default WP forms" msgstr "عرض على نماذج WP الإفتراضية" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Login" msgstr "تسجيل الدخول الإفتراضي ل WP" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Register" msgstr "التسجيل الإفتراضي ل WP" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Default WP Recover Password" msgstr "إستعادة كلمة المرور الإفتراضي ل WP" #: profile-builder-2.0/admin/manage-fields.php:134 msgid "Select on which default WP forms to display reCAPTCHA" msgstr "حدد على أي نموذج WP الإفتراضي يتم عرض reCAPTCHA" #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default option of the field" msgstr "الخيار الافتراضي للحقل" #: profile-builder-2.0/admin/manage-fields.php:282 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Afghanistan" msgstr "أفغانستان" #: profile-builder-2.0/admin/manage-fields.php:283 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aland Islands" msgstr "جزر آلاند" #: profile-builder-2.0/admin/manage-fields.php:284 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Albania" msgstr "ألبانيا" #: profile-builder-2.0/admin/manage-fields.php:285 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Algeria" msgstr "الجزائر" #: profile-builder-2.0/admin/manage-fields.php:286 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "American Samoa" msgstr "ساموا الأمريكية" #: profile-builder-2.0/admin/manage-fields.php:287 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Andorra" msgstr "أندورا" #: profile-builder-2.0/admin/manage-fields.php:288 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Angola" msgstr "أنغولا" #: profile-builder-2.0/admin/manage-fields.php:289 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Anguilla" msgstr "أنغيلا" #: profile-builder-2.0/admin/manage-fields.php:290 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antarctica" msgstr "القارة القطبية الجنوبية" #: profile-builder-2.0/admin/manage-fields.php:291 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Antigua and Barbuda" msgstr "أنتيغوا وبربودا" #: profile-builder-2.0/admin/manage-fields.php:292 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Argentina" msgstr "الأرجنتين" #: profile-builder-2.0/admin/manage-fields.php:293 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Armenia" msgstr "أرمينيا" #: profile-builder-2.0/admin/manage-fields.php:294 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Aruba" msgstr "أروبا" #: profile-builder-2.0/admin/manage-fields.php:295 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Australia" msgstr "أستراليا" #: profile-builder-2.0/admin/manage-fields.php:296 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Austria" msgstr "النمسا" #: profile-builder-2.0/admin/manage-fields.php:297 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Azerbaijan" msgstr "أزربيجان" #: profile-builder-2.0/admin/manage-fields.php:298 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahamas" msgstr "البهاماس" #: profile-builder-2.0/admin/manage-fields.php:299 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bahrain" msgstr "البحرين" #: profile-builder-2.0/admin/manage-fields.php:300 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bangladesh" msgstr "بنغلاديش" #: profile-builder-2.0/admin/manage-fields.php:301 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Barbados" msgstr "بربادوس" #: profile-builder-2.0/admin/manage-fields.php:302 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belarus" msgstr "بيلاروس" #: profile-builder-2.0/admin/manage-fields.php:303 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belgium" msgstr "البلجيك" #: profile-builder-2.0/admin/manage-fields.php:304 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Belize" msgstr "بليز" #: profile-builder-2.0/admin/manage-fields.php:305 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Benin" msgstr "بنين" #: profile-builder-2.0/admin/manage-fields.php:306 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bermuda" msgstr "برمودا" #: profile-builder-2.0/admin/manage-fields.php:307 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bhutan" msgstr "بوتان" #: profile-builder-2.0/admin/manage-fields.php:308 msgid "Bolivia" msgstr "بوليفيا" #: profile-builder-2.0/admin/manage-fields.php:309 msgid "Bonaire, Saint Eustatius and Saba" msgstr "بونير، سينت أوستاتيوس وسابا" #: profile-builder-2.0/admin/manage-fields.php:310 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bosnia and Herzegovina" msgstr "البوسنة والهرسك" #: profile-builder-2.0/admin/manage-fields.php:311 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Botswana" msgstr "بوتسوانا" #: profile-builder-2.0/admin/manage-fields.php:312 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bouvet Island" msgstr "جزيرة بوفيت" #: profile-builder-2.0/admin/manage-fields.php:313 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Brazil" msgstr "البرازيل" #: profile-builder-2.0/admin/manage-fields.php:314 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "British Indian Ocean Territory" msgstr "إقليم المحيط البريطاني الهندي" #: profile-builder-2.0/admin/manage-fields.php:315 msgid "British Virgin Islands" msgstr "جزر فيرجن البريطانية" #: profile-builder-2.0/admin/manage-fields.php:316 msgid "Brunei" msgstr "بروناي" #: profile-builder-2.0/admin/manage-fields.php:317 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Bulgaria" msgstr "بلغاريا" #: profile-builder-2.0/admin/manage-fields.php:318 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burkina Faso" msgstr "بوركينا فاسو" #: profile-builder-2.0/admin/manage-fields.php:319 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Burundi" msgstr "بوروندي" #: profile-builder-2.0/admin/manage-fields.php:320 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cambodia" msgstr "كمبوديا" #: profile-builder-2.0/admin/manage-fields.php:321 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cameroon" msgstr "الكاميرون" #: profile-builder-2.0/admin/manage-fields.php:322 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Canada" msgstr "كندا" #: profile-builder-2.0/admin/manage-fields.php:323 msgid "Cape Verde" msgstr "الرأس الأخضر" #: profile-builder-2.0/admin/manage-fields.php:324 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cayman Islands" msgstr "جزر الكايمان" #: profile-builder-2.0/admin/manage-fields.php:325 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Central African Republic" msgstr "جمهورية افريقيا الوسطى" #: profile-builder-2.0/admin/manage-fields.php:326 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chad" msgstr "تشاد" #: profile-builder-2.0/admin/manage-fields.php:327 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Chile" msgstr "تشيلي" #: profile-builder-2.0/admin/manage-fields.php:328 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "China" msgstr "الصين" #: profile-builder-2.0/admin/manage-fields.php:329 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Christmas Island" msgstr "جزيرة الكريسماس" #: profile-builder-2.0/admin/manage-fields.php:330 msgid "Cocos Islands" msgstr "جزر كوكوس" #: profile-builder-2.0/admin/manage-fields.php:331 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Colombia" msgstr "كولومبيا" #: profile-builder-2.0/admin/manage-fields.php:332 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Comoros" msgstr "جزر القمر" #: profile-builder-2.0/admin/manage-fields.php:333 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cook Islands" msgstr "جزر كوك" #: profile-builder-2.0/admin/manage-fields.php:334 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Costa Rica" msgstr "كوستا ريكا" #: profile-builder-2.0/admin/manage-fields.php:335 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Croatia" msgstr "كرواتيا" #: profile-builder-2.0/admin/manage-fields.php:336 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cuba" msgstr "كوبا" #: profile-builder-2.0/admin/manage-fields.php:337 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Curacao" msgstr "كوراكاو" #: profile-builder-2.0/admin/manage-fields.php:338 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Cyprus" msgstr "قبرص" #: profile-builder-2.0/admin/manage-fields.php:339 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Czech Republic" msgstr "جمهورية التشيك" #: profile-builder-2.0/admin/manage-fields.php:340 msgid "Democratic Republic of the Congo" msgstr "جمهورية الكونغو الديموقراطية" #: profile-builder-2.0/admin/manage-fields.php:341 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Denmark" msgstr "الدنمارك" #: profile-builder-2.0/admin/manage-fields.php:342 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Djibouti" msgstr "جيبوتي" #: profile-builder-2.0/admin/manage-fields.php:343 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominica" msgstr "دومينيكا" #: profile-builder-2.0/admin/manage-fields.php:344 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Dominican Republic" msgstr "جمهورية الدومنيكان" #: profile-builder-2.0/admin/manage-fields.php:345 msgid "East Timor" msgstr "تيمور الشرقية" #: profile-builder-2.0/admin/manage-fields.php:346 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ecuador" msgstr "إكوادور" #: profile-builder-2.0/admin/manage-fields.php:347 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Egypt" msgstr "مصر" #: profile-builder-2.0/admin/manage-fields.php:348 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "El Salvador" msgstr "السلفادور" #: profile-builder-2.0/admin/manage-fields.php:349 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Equatorial Guinea" msgstr "غينيا الإستوائية" #: profile-builder-2.0/admin/manage-fields.php:350 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Eritrea" msgstr "إريتريا" #: profile-builder-2.0/admin/manage-fields.php:351 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Estonia" msgstr "إستونيا" #: profile-builder-2.0/admin/manage-fields.php:352 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ethiopia" msgstr "إثيوبيا" #: profile-builder-2.0/admin/manage-fields.php:353 msgid "Falkland Islands" msgstr "جزر فوكلاند" #: profile-builder-2.0/admin/manage-fields.php:354 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Faroe Islands" msgstr "جزر صناعية" #: profile-builder-2.0/admin/manage-fields.php:355 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Fiji" msgstr "فيجي" #: profile-builder-2.0/admin/manage-fields.php:356 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Finland" msgstr "فنلندا" #: profile-builder-2.0/admin/manage-fields.php:357 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "France" msgstr "فرنسا" #: profile-builder-2.0/admin/manage-fields.php:358 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Guiana" msgstr "غيانا الفرنسية" #: profile-builder-2.0/admin/manage-fields.php:359 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Polynesia" msgstr "بولينيزيا الفرنسية" #: profile-builder-2.0/admin/manage-fields.php:360 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "French Southern Territories" msgstr "المناطق الجنوبية لفرنسا" #: profile-builder-2.0/admin/manage-fields.php:361 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gabon" msgstr "الغابون" #: profile-builder-2.0/admin/manage-fields.php:362 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gambia" msgstr "غامبيا" #: profile-builder-2.0/admin/manage-fields.php:363 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Georgia" msgstr "جورجيا" #: profile-builder-2.0/admin/manage-fields.php:364 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Germany" msgstr "ألمانيا" #: profile-builder-2.0/admin/manage-fields.php:365 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ghana" msgstr "غانا" #: profile-builder-2.0/admin/manage-fields.php:366 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Gibraltar" msgstr "جبل طارق" #: profile-builder-2.0/admin/manage-fields.php:367 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greece" msgstr "اليونان" #: profile-builder-2.0/admin/manage-fields.php:368 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Greenland" msgstr "الأرض الخضراء" #: profile-builder-2.0/admin/manage-fields.php:369 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Grenada" msgstr "غرناطة" #: profile-builder-2.0/admin/manage-fields.php:370 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guadeloupe" msgstr "جوادلوب" #: profile-builder-2.0/admin/manage-fields.php:371 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guam" msgstr "غوام" #: profile-builder-2.0/admin/manage-fields.php:372 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guatemala" msgstr "غواتيمالا" #: profile-builder-2.0/admin/manage-fields.php:373 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guernsey" msgstr "غيرنسي" #: profile-builder-2.0/admin/manage-fields.php:374 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea" msgstr "غينيا" #: profile-builder-2.0/admin/manage-fields.php:375 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guinea-Bissau" msgstr "غينيا بيساو" #: profile-builder-2.0/admin/manage-fields.php:376 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Guyana" msgstr "غيانا" #: profile-builder-2.0/admin/manage-fields.php:377 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Haiti" msgstr "هايتي" #: profile-builder-2.0/admin/manage-fields.php:378 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Heard Island and McDonald Islands" msgstr "جزيرة هيرد وجزر ماكدونالد" #: profile-builder-2.0/admin/manage-fields.php:379 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Honduras" msgstr "هندوراس" #: profile-builder-2.0/admin/manage-fields.php:380 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hong Kong" msgstr "هونج كونج" #: profile-builder-2.0/admin/manage-fields.php:381 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Hungary" msgstr "هنغاريا" #: profile-builder-2.0/admin/manage-fields.php:382 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iceland" msgstr "آيسلندا" #: profile-builder-2.0/admin/manage-fields.php:383 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "India" msgstr "الهند" #: profile-builder-2.0/admin/manage-fields.php:384 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Indonesia" msgstr "إندونيسيا" #: profile-builder-2.0/admin/manage-fields.php:385 msgid "Iran" msgstr "إيران" #: profile-builder-2.0/admin/manage-fields.php:386 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Iraq" msgstr "العراق" #: profile-builder-2.0/admin/manage-fields.php:387 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ireland" msgstr "إيرلندا" #: profile-builder-2.0/admin/manage-fields.php:388 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Isle of Man" msgstr "جزيرة آيل أوف مان" #: profile-builder-2.0/admin/manage-fields.php:389 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Israel" msgstr "الكيان الصهيوني" #: profile-builder-2.0/admin/manage-fields.php:390 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Italy" msgstr "إيطاليا" #: profile-builder-2.0/admin/manage-fields.php:391 msgid "Ivory Coast" msgstr "ساحل العاج" #: profile-builder-2.0/admin/manage-fields.php:392 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jamaica" msgstr "جامايكا" #: profile-builder-2.0/admin/manage-fields.php:393 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Japan" msgstr "اليابان" #: profile-builder-2.0/admin/manage-fields.php:394 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jersey" msgstr "جيرسي" #: profile-builder-2.0/admin/manage-fields.php:395 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Jordan" msgstr "الأردن" #: profile-builder-2.0/admin/manage-fields.php:396 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kazakhstan" msgstr "كازاخستان" #: profile-builder-2.0/admin/manage-fields.php:397 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kenya" msgstr "كينيا" #: profile-builder-2.0/admin/manage-fields.php:398 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kiribati" msgstr "كيريباس" #: profile-builder-2.0/admin/manage-fields.php:399 msgid "Kosovo" msgstr "كوسوفو" #: profile-builder-2.0/admin/manage-fields.php:400 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kuwait" msgstr "الكويت" #: profile-builder-2.0/admin/manage-fields.php:401 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Kyrgyzstan" msgstr "كرغيزستان" #: profile-builder-2.0/admin/manage-fields.php:402 msgid "Laos" msgstr "لاوس" #: profile-builder-2.0/admin/manage-fields.php:403 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Latvia" msgstr "لاتفيا" #: profile-builder-2.0/admin/manage-fields.php:404 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lebanon" msgstr "لبنان" #: profile-builder-2.0/admin/manage-fields.php:405 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lesotho" msgstr "ليسوتو" #: profile-builder-2.0/admin/manage-fields.php:406 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liberia" msgstr "ليبيريا" #: profile-builder-2.0/admin/manage-fields.php:407 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Libya" msgstr "ليبيا" #: profile-builder-2.0/admin/manage-fields.php:408 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Liechtenstein" msgstr "ليختنشتاين" #: profile-builder-2.0/admin/manage-fields.php:409 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Lithuania" msgstr "ليتوانيا" #: profile-builder-2.0/admin/manage-fields.php:410 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Luxembourg" msgstr "لوكسمبورغ" #: profile-builder-2.0/admin/manage-fields.php:411 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Macao" msgstr "ماكاو" #: profile-builder-2.0/admin/manage-fields.php:412 msgid "Macedonia" msgstr "مقدونيا" #: profile-builder-2.0/admin/manage-fields.php:413 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Madagascar" msgstr "مدغشقر" #: profile-builder-2.0/admin/manage-fields.php:414 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malawi" msgstr "ملاوي" #: profile-builder-2.0/admin/manage-fields.php:415 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malaysia" msgstr "ماليزيا" #: profile-builder-2.0/admin/manage-fields.php:416 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Maldives" msgstr "المالديف" #: profile-builder-2.0/admin/manage-fields.php:417 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mali" msgstr "مالي" #: profile-builder-2.0/admin/manage-fields.php:418 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Malta" msgstr "مالطا" #: profile-builder-2.0/admin/manage-fields.php:419 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Marshall Islands" msgstr "جزر مارشال" #: profile-builder-2.0/admin/manage-fields.php:420 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Martinique" msgstr "مارتينيك" #: profile-builder-2.0/admin/manage-fields.php:421 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritania" msgstr "موريتانيا" #: profile-builder-2.0/admin/manage-fields.php:422 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mauritius" msgstr "موريشيوس" #: profile-builder-2.0/admin/manage-fields.php:423 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mayotte" msgstr "مايوت" #: profile-builder-2.0/admin/manage-fields.php:424 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mexico" msgstr "المكسيك" #: profile-builder-2.0/admin/manage-fields.php:425 msgid "Micronesia" msgstr "ميكرونيزيا" #: profile-builder-2.0/admin/manage-fields.php:426 msgid "Moldova" msgstr "مولدوفا" #: profile-builder-2.0/admin/manage-fields.php:427 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Monaco" msgstr "موناكو" #: profile-builder-2.0/admin/manage-fields.php:428 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mongolia" msgstr "منغوليا" #: profile-builder-2.0/admin/manage-fields.php:429 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montenegro" msgstr "مونتنيغرو" #: profile-builder-2.0/admin/manage-fields.php:430 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Montserrat" msgstr "مونتسيرات" #: profile-builder-2.0/admin/manage-fields.php:431 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Morocco" msgstr "المغرب" #: profile-builder-2.0/admin/manage-fields.php:432 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Mozambique" msgstr "موزمبيق" #: profile-builder-2.0/admin/manage-fields.php:433 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Myanmar" msgstr "ميانمار" #: profile-builder-2.0/admin/manage-fields.php:434 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Namibia" msgstr "ناميبيا" #: profile-builder-2.0/admin/manage-fields.php:435 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nauru" msgstr "ناورو" #: profile-builder-2.0/admin/manage-fields.php:436 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nepal" msgstr "نيبال" #: profile-builder-2.0/admin/manage-fields.php:437 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Netherlands" msgstr "هولندا" #: profile-builder-2.0/admin/manage-fields.php:438 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Caledonia" msgstr "كاليدونيا الجديدة" #: profile-builder-2.0/admin/manage-fields.php:439 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "New Zealand" msgstr "نيوزيلندا" #: profile-builder-2.0/admin/manage-fields.php:440 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nicaragua" msgstr "نيكاراغوا" #: profile-builder-2.0/admin/manage-fields.php:441 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niger" msgstr "النيجر" #: profile-builder-2.0/admin/manage-fields.php:442 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Nigeria" msgstr "نيجيريا" #: profile-builder-2.0/admin/manage-fields.php:443 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Niue" msgstr "نيوي" #: profile-builder-2.0/admin/manage-fields.php:444 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norfolk Island" msgstr "جزيرة نورفولك" #: profile-builder-2.0/admin/manage-fields.php:445 msgid "North Korea" msgstr "كوريا الشمالية" #: profile-builder-2.0/admin/manage-fields.php:446 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Northern Mariana Islands" msgstr "جزر مريانا الشمالية" #: profile-builder-2.0/admin/manage-fields.php:447 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Norway" msgstr "النرويج" #: profile-builder-2.0/admin/manage-fields.php:448 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Oman" msgstr "عمان" #: profile-builder-2.0/admin/manage-fields.php:449 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pakistan" msgstr "باكستان" #: profile-builder-2.0/admin/manage-fields.php:450 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Palau" msgstr "بالاو" #: profile-builder-2.0/admin/manage-fields.php:451 msgid "Palestinian Territory" msgstr "فلسطين" #: profile-builder-2.0/admin/manage-fields.php:452 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Panama" msgstr "بنما" #: profile-builder-2.0/admin/manage-fields.php:453 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Papua New Guinea" msgstr "بابوا غينيا الجديدة" #: profile-builder-2.0/admin/manage-fields.php:454 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Paraguay" msgstr "باراغواي" #: profile-builder-2.0/admin/manage-fields.php:455 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Peru" msgstr "بيرو" #: profile-builder-2.0/admin/manage-fields.php:456 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Philippines" msgstr "الفلبين" #: profile-builder-2.0/admin/manage-fields.php:457 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Pitcairn" msgstr "بيتكيرن" #: profile-builder-2.0/admin/manage-fields.php:458 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Poland" msgstr "بولندا" #: profile-builder-2.0/admin/manage-fields.php:459 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Portugal" msgstr "البرتغال" #: profile-builder-2.0/admin/manage-fields.php:460 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Puerto Rico" msgstr "بورتوريكو" #: profile-builder-2.0/admin/manage-fields.php:461 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Qatar" msgstr "قطر" #: profile-builder-2.0/admin/manage-fields.php:462 msgid "Republic of the Congo" msgstr "جمهورية الكونغو" #: profile-builder-2.0/admin/manage-fields.php:463 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Reunion" msgstr "جمع شمل" #: profile-builder-2.0/admin/manage-fields.php:464 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Romania" msgstr "رومانيا" #: profile-builder-2.0/admin/manage-fields.php:465 msgid "Russia" msgstr "روسيا" #: profile-builder-2.0/admin/manage-fields.php:466 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Rwanda" msgstr "رواندا" #: profile-builder-2.0/admin/manage-fields.php:467 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Barthelemy" msgstr "سانت بارتيليمي" #: profile-builder-2.0/admin/manage-fields.php:468 msgid "Saint Helena" msgstr "سانت هيلانة" #: profile-builder-2.0/admin/manage-fields.php:469 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Kitts and Nevis" msgstr "سانت كيتس ونيفيس" #: profile-builder-2.0/admin/manage-fields.php:470 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Lucia" msgstr "القديسة لوسيا" #: profile-builder-2.0/admin/manage-fields.php:471 msgid "Saint Martin" msgstr "القديس مارتن" #: profile-builder-2.0/admin/manage-fields.php:472 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Pierre and Miquelon" msgstr "سانت بيير وميكلون" #: profile-builder-2.0/admin/manage-fields.php:473 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saint Vincent and the Grenadines" msgstr "سانت فنسنت وجزر غرينادين" #: profile-builder-2.0/admin/manage-fields.php:474 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Samoa" msgstr "ساموا" #: profile-builder-2.0/admin/manage-fields.php:475 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "San Marino" msgstr "سان مارينو" #: profile-builder-2.0/admin/manage-fields.php:476 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sao Tome and Principe" msgstr "ساو تومي وبرينسيبي" #: profile-builder-2.0/admin/manage-fields.php:477 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Saudi Arabia" msgstr "المملكة العربية السعودية" #: profile-builder-2.0/admin/manage-fields.php:478 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Senegal" msgstr "السنغال" #: profile-builder-2.0/admin/manage-fields.php:479 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Serbia" msgstr "صربيا" #: profile-builder-2.0/admin/manage-fields.php:480 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Seychelles" msgstr "سيشيل" #: profile-builder-2.0/admin/manage-fields.php:481 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sierra Leone" msgstr "سيراليون" #: profile-builder-2.0/admin/manage-fields.php:482 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Singapore" msgstr "سنغافورة" #: profile-builder-2.0/admin/manage-fields.php:483 msgid "Sint Maarten" msgstr "سانت مارتن" #: profile-builder-2.0/admin/manage-fields.php:484 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovakia" msgstr "سلوفاكيا" #: profile-builder-2.0/admin/manage-fields.php:485 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Slovenia" msgstr "سلوفينيا" #: profile-builder-2.0/admin/manage-fields.php:486 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Solomon Islands" msgstr "جزر سليمان" #: profile-builder-2.0/admin/manage-fields.php:487 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Somalia" msgstr "الصومال" #: profile-builder-2.0/admin/manage-fields.php:488 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Africa" msgstr "جنوب أفريقيا" #: profile-builder-2.0/admin/manage-fields.php:489 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Georgia and the South Sandwich Islands" msgstr "جورجيا الجنوبية وجزر ساندويتش الجنوبية" #: profile-builder-2.0/admin/manage-fields.php:490 msgid "South Korea" msgstr "كوريا الجنوبية" #: profile-builder-2.0/admin/manage-fields.php:491 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "South Sudan" msgstr "جنوب السودان" #: profile-builder-2.0/admin/manage-fields.php:492 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Spain" msgstr "إسبانيا" #: profile-builder-2.0/admin/manage-fields.php:493 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sri Lanka" msgstr "سريلانكا" #: profile-builder-2.0/admin/manage-fields.php:494 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sudan" msgstr "السودان" #: profile-builder-2.0/admin/manage-fields.php:495 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Suriname" msgstr "سورينام" #: profile-builder-2.0/admin/manage-fields.php:496 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Svalbard and Jan Mayen" msgstr "سفالبارد وجان ماين" #: profile-builder-2.0/admin/manage-fields.php:497 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Swaziland" msgstr "سوازيلاند" #: profile-builder-2.0/admin/manage-fields.php:498 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Sweden" msgstr "السويد" #: profile-builder-2.0/admin/manage-fields.php:499 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Switzerland" msgstr "سويسرا" #: profile-builder-2.0/admin/manage-fields.php:500 msgid "Syria" msgstr "سوريا" #: profile-builder-2.0/admin/manage-fields.php:501 msgid "Taiwan" msgstr "تايوان" #: profile-builder-2.0/admin/manage-fields.php:502 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tajikistan" msgstr "طاجاكستان" #: profile-builder-2.0/admin/manage-fields.php:503 msgid "Tanzania" msgstr "تنزانيا" #: profile-builder-2.0/admin/manage-fields.php:504 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Thailand" msgstr "تايلند" #: profile-builder-2.0/admin/manage-fields.php:505 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Togo" msgstr "توغو" #: profile-builder-2.0/admin/manage-fields.php:506 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tokelau" msgstr "توكيلاو" #: profile-builder-2.0/admin/manage-fields.php:507 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tonga" msgstr "تونغا" #: profile-builder-2.0/admin/manage-fields.php:508 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Trinidad and Tobago" msgstr "ترينداد وتوباغو" #: profile-builder-2.0/admin/manage-fields.php:509 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tunisia" msgstr "تونس" #: profile-builder-2.0/admin/manage-fields.php:510 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkey" msgstr "تركيا" #: profile-builder-2.0/admin/manage-fields.php:511 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turkmenistan" msgstr "تركمانستان" #: profile-builder-2.0/admin/manage-fields.php:512 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Turks and Caicos Islands" msgstr "جزر تركس وكايكوس" #: profile-builder-2.0/admin/manage-fields.php:513 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Tuvalu" msgstr "توفالو" #: profile-builder-2.0/admin/manage-fields.php:514 msgid "U.S. Virgin Islands" msgstr "جزر فيرجن الأمريكية" #: profile-builder-2.0/admin/manage-fields.php:515 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uganda" msgstr "أوغندا" #: profile-builder-2.0/admin/manage-fields.php:516 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Ukraine" msgstr "أوكرانيا" #: profile-builder-2.0/admin/manage-fields.php:517 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Arab Emirates" msgstr "الإمارات العربية المتحدة" #: profile-builder-2.0/admin/manage-fields.php:518 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United Kingdom" msgstr "المملكة المتحدة" #: profile-builder-2.0/admin/manage-fields.php:519 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States" msgstr "الولايات المتحدة الأمريكية" #: profile-builder-2.0/admin/manage-fields.php:520 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "United States Minor Outlying Islands" msgstr "جزر الولايات المتحدة البعيدة الصغرى" #: profile-builder-2.0/admin/manage-fields.php:521 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uruguay" msgstr "أوروغواي" #: profile-builder-2.0/admin/manage-fields.php:522 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Uzbekistan" msgstr "أوزبكستان" #: profile-builder-2.0/admin/manage-fields.php:523 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Vanuatu" msgstr "فانواتو" #: profile-builder-2.0/admin/manage-fields.php:524 msgid "Vatican" msgstr "فاتيكان" #: profile-builder-2.0/admin/manage-fields.php:525 msgid "Venezuela" msgstr "فنزويلا" #: profile-builder-2.0/admin/manage-fields.php:526 msgid "Vietnam" msgstr "فيتنام" #: profile-builder-2.0/admin/manage-fields.php:527 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Wallis and Futuna" msgstr "واليس وفوتونا" #: profile-builder-2.0/admin/manage-fields.php:528 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Western Sahara" msgstr "الصحراء الغربية" #: profile-builder-2.0/admin/manage-fields.php:529 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Yemen" msgstr "اليمن" #: profile-builder-2.0/admin/manage-fields.php:530 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zambia" msgstr "زامبيا" #: profile-builder-2.0/admin/manage-fields.php:531 #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10 msgid "Zimbabwe" msgstr "زمبابوي" #: profile-builder-2.0/admin/manage-fields.php:1219 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." msgstr "مع Profile Builder Pro v2 يمكنك عرض حقول مختلفة في تسجيل وتعديل نماذج الملف الشخصي، وذلك باستخدام نماذج الوحدة النمطية المتعددة تسجيل وتحرير ملف ." #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237 msgid "Your account has to be confirmed by an administrator before you can log in." msgstr "يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من تسجيل الدخول." #: profile-builder-2.0/features/admin-approval/admin-approval.php:216 msgid "Your account has been successfully created!" msgstr "تم إنشاء حسابك بنجاح!" #: profile-builder-2.0/features/functions.php:678 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458 msgid "Please enter a (valid) reCAPTCHA value" msgstr "الرجاء إدخال قيمة ريكابتشا (صالحة)" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421 msgid "Click the BACK button on your browser, and try again." msgstr "انقر على زر الرجوع في المتصفح، ثم أعد المحاولة." #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78 #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87 msgid "Sorry, you cannot upload this file type for this field." msgstr "عذرا، لا يمكنك تحميل هذا النوع من الملفات لهذا الحقل." #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94 msgid "An error occurred, please try again later." msgstr "لقد حدث خطأ، رجاء أعد المحاولة لاحقا." #: profile-builder-2.0/modules/user-listing/userlisting.php:282 msgid "More" msgstr "المزيد" #: profile-builder-2.0/modules/user-listing/userlisting.php:376 msgid "You do not have permission to view this user list." msgstr "ليس لديك الصلاحيات لعرض قائمة المستخدمين هذه." #: profile-builder-2.0/modules/user-listing/userlisting.php:389 msgid "You do not have the required user role to view this user list." msgstr "ليس لديك دور المستخدم المطلوب لعرض قائمة المستخدمين هذه." #: profile-builder-2.0/modules/user-listing/userlisting.php:2253 msgid "Ascending" msgstr "تصاعدي" #: profile-builder-2.0/modules/user-listing/userlisting.php:2254 msgid "Descending" msgstr "تنازلي" #: profile-builder-2.0/admin/add-ons.php:148 #: profile-builder-2.0/admin/add-ons.php:248 #: profile-builder-2.0/admin/pms-cross-promotion.php:134 #: profile-builder-2.0/admin/pms-cross-promotion.php:213 msgid "Download Now" msgstr "تحميل الآن" #: profile-builder-2.0/admin/admin-functions.php:200 msgid "If you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. " msgstr "إذا كنت تستمتع باستخدام %1$s فالرجاء تقييمنا على WordPress.org . المزيد من المستخدمين السعداء يعني المزيد من الميزات، مشاكل أقل ودعم أفضل للجميع." #: profile-builder-2.0/admin/manage-fields.php:82 msgid "Choose one of the supported field types" msgstr "اختر أحد أنواع الحقول المدعومة" #: profile-builder-2.0/admin/manage-fields.php:84 msgid ". Extra Field Types are available in Hobbyist or PRO versions." msgstr ". تتوفر أنواع الحقول الإضافية في إصدارات Hobbyist أو PRO." #: profile-builder-2.0/admin/manage-fields.php:131 msgid "Site Key" msgstr "مفتاح الموقع" #: profile-builder-2.0/admin/manage-fields.php:131 msgid "The site key from Google, www.google.com/recaptcha" msgstr "مفتاح الموقع من Google، www.google.com/recaptcha " #: profile-builder-2.0/admin/manage-fields.php:132 msgid "Secret Key" msgstr "المفتاح السري" #: profile-builder-2.0/admin/manage-fields.php:132 msgid "The secret key from Google, www.google.com/recaptcha" msgstr "المفتاح السري من Google، www.google.com/recaptcha " #: profile-builder-2.0/admin/manage-fields.php:1023 msgid "You must enter the site key\n" msgstr "يجب إدخال مفتاح الموقع\n" #: profile-builder-2.0/admin/manage-fields.php:1025 msgid "You must enter the secret key\n" msgstr "يجب إدخال المفتاح السري\n" #: profile-builder-2.0/admin/add-ons.php:10 #: profile-builder-2.0/admin/add-ons.php:32 msgid "Add-Ons" msgstr "إضافات" #: profile-builder-2.0/admin/add-ons.php:34 #: profile-builder-2.0/admin/add-ons.php:129 #: profile-builder-2.0/admin/add-ons.php:231 #: profile-builder-2.0/admin/pms-cross-promotion.php:78 #: profile-builder-2.0/admin/pms-cross-promotion.php:114 #: profile-builder-2.0/admin/pms-cross-promotion.php:193 msgid "Activate" msgstr "تفعيل" #: profile-builder-2.0/admin/add-ons.php:36 #: profile-builder-2.0/admin/pms-cross-promotion.php:80 msgid "Downloading and installing..." msgstr "جار التحميل والتثبيت ..." #: profile-builder-2.0/admin/add-ons.php:37 #: profile-builder-2.0/admin/pms-cross-promotion.php:81 msgid "Installation complete" msgstr "اكتمل التثبيت" #: profile-builder-2.0/admin/add-ons.php:39 msgid "Add-On is Active" msgstr "الإضافة مفعلة" #: profile-builder-2.0/admin/add-ons.php:40 msgid "Add-On has been activated" msgstr "تم تفعيل الإضافة" #: profile-builder-2.0/admin/add-ons.php:41 #: profile-builder-2.0/admin/pms-cross-promotion.php:85 msgid "Retry Install" msgstr "إعادة التثبيت" #: profile-builder-2.0/admin/add-ons.php:43 #: profile-builder-2.0/admin/add-ons.php:140 msgid "Add-On is active" msgstr "الإضافة مفعلة" #: profile-builder-2.0/admin/add-ons.php:44 #: profile-builder-2.0/admin/add-ons.php:138 msgid "Add-On is inactive" msgstr "الإضافة غير مفعلة" #: profile-builder-2.0/admin/add-ons.php:46 #: profile-builder-2.0/admin/add-ons.php:133 #: profile-builder-2.0/admin/add-ons.php:235 #: profile-builder-2.0/admin/pms-cross-promotion.php:90 #: profile-builder-2.0/admin/pms-cross-promotion.php:118 #: profile-builder-2.0/admin/pms-cross-promotion.php:197 msgid "Deactivate" msgstr "تعطيل" #: profile-builder-2.0/admin/add-ons.php:47 msgid "Add-On has been deactivated." msgstr "تم تعطيل الإضافة." #: profile-builder-2.0/admin/add-ons.php:59 msgid "Something went wrong, we could not connect to the server. Please try again later." msgstr "حدث خطأ ما، لم نتمكن من الاتصال بالخادم. الرجاء معاودة المحاولة في وقت لاحق." #: profile-builder-2.0/admin/pms-cross-promotion.php:137 #: profile-builder-2.0/admin/pms-cross-promotion.php:216 msgid "Install Now" msgstr "تثبيت الآن" #: profile-builder-2.0/admin/add-ons.php:153 #: profile-builder-2.0/admin/add-ons.php:251 #: profile-builder-2.0/admin/pms-cross-promotion.php:141 #: profile-builder-2.0/admin/pms-cross-promotion.php:220 msgid "Compatible with your version of Profile Builder." msgstr "متوافق مع الإصدار الخاص بك من Profile Builder." #: profile-builder-2.0/admin/add-ons.php:162 msgid "Upgrade Profile Builder" msgstr "ترقية Profile Builder" #: profile-builder-2.0/admin/add-ons.php:163 msgid "Not compatible with Profile Builder" msgstr "غير متوافق مع Profile Builder" #: profile-builder-2.0/admin/add-ons.php:171 msgid "Not compatible with your version of Profile Builder." msgstr "متوافق مع الإصدار الخاص بك من Profile Builder." #: profile-builder-2.0/admin/add-ons.php:172 msgid "Minimum required Profile Builder version:" msgstr "إصدار Profile Builder الأدنى المطلوب:" #: profile-builder-2.0/admin/add-ons.php:177 msgid "Could not install add-on. Retry or install manually." msgstr "تعذر تثبيت الإضافة. أعد المحاولة أو ثبت يدويا ." #: profile-builder-2.0/front-end/default-fields/email/email.php:51 msgid "You must enter a valid email address." msgstr "ينبغي إدخال بريد الكتروني صالح." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "This username is invalid because it uses illegal characters." msgstr "اسم المستخدم هذا غير صالح لأنه يستخدم أحرفا غير قانونية." #: profile-builder-2.0/front-end/default-fields/username/username.php:52 #: profile-builder-2.0/front-end/default-fields/username/username.php:60 msgid "Please enter a valid username." msgstr "الرجاءادخال اسم مستخدم صحيح." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72 #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85 msgid "Only administrators can see this field on edit profile forms." msgstr "يمكن للمشرفين فقط مشاهدة هذا الحقل في نماذج الملف الشخصي للتعديل." #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81 msgid "As an administrator you cannot change your role." msgstr "بصفتك مشرفا، لا يمكنك تغيير دورك." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117 msgid "" "\n" "

            {{username}} has requested a password change via the password reset feature.

            \n" "

            His/her new password is: {{password}}

            \n" msgstr "" "\n" "

            {{username}} قام بطلب تغيير كلمة المرور عبر ميزة إعادة تعيين كلمة المرور. \n" "

            كلمة المرور الجديدة هي: {{password}} \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141 msgid "Admin Notification for User Password Reset" msgstr "إعلام المشرف للمستخدم عند إعادة تعيين كلمة المرور" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46 msgid "Reset Key" msgstr "مفتاح إعادة التعيين" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47 msgid "Reset Url" msgstr "إعادة تعيين Url" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48 msgid "Reset Link" msgstr "رابط إعادة التعيين" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204 msgid "" "\n" "

            Someone requested that the password be reset for the following account: {{site_name}}
            \n" "Username: {{username}}

            \n" "

            If this was a mistake, just ignore this email and nothing will happen.

            \n" "

            To reset your password, visit the following address:
            \n" "{{{reset_link}}}

            \n" msgstr "" "\n" "

            طلب شخص ما إعادة تعيين كلمة المرور للحساب التالي: {{site_name}}
            \n" "اسم المستخدم: {{username}} \n" "

            إذا كان هذا خطأ، فتجاهل هذا البريد الإلكتروني ولن يحدث أي شيء. \n" "

            لإعادة تعيين كلمة المرور، انتقل إلى العنوان التالي:
            \n" "{{{reset_link}}} \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218 msgid "[{{site_name}}] Password Reset" msgstr "[{{site_name}}] إعادة تعيين كلمة المرور" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229 msgid "Password Reset Email" msgstr "بريد إعادة كلمة المرور" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235 msgid "" "\n" "

            You have successfully reset your password to: {{password}}

            \n" msgstr "" "\n" "

            لقد أعدت تعيين كلمة المرور بنجاح إلى: {{password}} \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245 msgid "[{{site_name}}] Password Reset Successfully" msgstr "[{{site_name}}] إعادة تعيين كلمة المرور بنجاح" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256 msgid "Password Reset Success Email" msgstr "بريد نجاح إعادة تعيين كلمة المرور" #: profile-builder-2.0/modules/user-listing/userlisting.php:159 msgid "User Nicename" msgstr "اسم مستخدم لطيف" #: pb-add-on-woocommerce/woosync-page.php:80 #: pb-add-on-woocommerce/woosync-page.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:499 msgid "None" msgstr "لا شيء" #: profile-builder-2.0/admin/admin-functions.php:132 msgid "ERROR: The password must have the minimum length of %s characters" msgstr " خطأ : يجب أن يكون الحد الأدنى لعدد أحرف كلمة المرور %s" #: profile-builder-2.0/admin/admin-functions.php:148 msgid "ERROR: The password must have a minimum strength of %s" msgstr " خطأ : يجب أن يكون الحد الأدنى من القوة لكلمة المرور %s" #: profile-builder-2.0/admin/general-settings.php:179 msgid "Username and Email" msgstr "اسم المستخدم و البريد الإلكتروني" #: profile-builder-2.0/admin/general-settings.php:184 msgid "\"Username and Email\" - users can Log In with both Username and Email." msgstr "\"اسم المستخدم والبريد الإلكتروني\" - يمكن للمستخدمين تسجيل الدخول بكل من اسم المستخدم والبريد الإلكتروني." #: profile-builder-2.0/admin/general-settings.php:185 msgid "\"Username\" - users can Log In only with Username." msgstr "\"اسم المستخدم\" - يمكن للمستخدمين تسجيل الدخول باسم المستخدم فقط." #: profile-builder-2.0/admin/general-settings.php:186 msgid "\"Email\" - users can Log In only with Email." msgstr "\"البريد الإلكتروني\" - يمكن للمستخدمين تسجيل الدخول بالبريد الإلكتروني فقط." #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)" msgstr "حدد الإضافة (الإضافات) التي تريد تقييدها
            مثال: .ext1، .ext2، .ext3
            إذا لم يتم تحديد، الإعدادات الافتراضية تكون: .jpg، .jpeg، .gif، .png (. *)" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)" msgstr "حدد الإضافة (الإضافات) التي تريد تقييدها
            مثال: .ext1، .ext2، .ext3
            إذا لم يتم تحديدها، الإعدادات الافتراضية ستكون كل الامتدادات المسموحة في ووردبريس (. *)" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "User Roles" msgstr "أدوار المستخدمين" #: profile-builder-2.0/admin/manage-fields.php:135 msgid "Select which user roles to show to the user ( drag and drop to re-order )" msgstr "حدد أدوار المستخدم المراد عرضها للمستخدم (السحب والإفلات للترتيب)" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "User Roles Order" msgstr "ترتيب أدوار المستخدمين" #: profile-builder-2.0/admin/manage-fields.php:136 msgid "Save the user role order from the user roles checkboxes" msgstr "احفظ ترتيب دور المستخدم من مربعات اختيار أدوار المستخدم" #: profile-builder-2.0/admin/manage-fields.php:1128 msgid "Please select at least one user role\n" msgstr "يرجى تحديد دور مستخدم واحد على الأقل\n" #: profile-builder-2.0/admin/register-version.php:22 msgid "Profile Builder Register" msgstr "تسجيل Profile Builder" #: profile-builder-2.0/admin/register-version.php:81 msgid "The serial number is about to expire soon!" msgstr "الرقم التسلسلي على وشك الانتهاء قريبا!" #: profile-builder-2.0/admin/register-version.php:81 msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s." msgstr "الرقم التسلسلي الخاص بك على وشك الانتهاء، يرجى %1$s تجديد الترخيص الخاص بك%2$s." #: profile-builder-2.0/admin/register-version.php:83 msgid " Your serial number is expired, please %1$s Renew Your License%2$s." msgstr "انتهت صلاحية الرقم التسلسلي، يرجى %1$s تجديد الترخيص%2$s." #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 msgid "Add Entry" msgstr "إضافة إدخال" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 msgid "show" msgstr "إظهار" #: profile-builder-2.0/features/functions.php:736 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" msgstr "للسماح للمستخدمين بالتسجيل في موقع الويب الخاص بك عن طريق Profile Builder، يجب أولا تمكين تسجيل المستخدم. انتقل إلى %1$sاعدادات الشبكة%2$s, وتحت إعدادات التسجيل تأكد من التحقق من \"حسابات المستخدم قد تكون مسجلة”. %3$sتجاهل%4$s" #: profile-builder-2.0/front-end/class-formbuilder.php:659 msgid "User to edit:" msgstr "تعديل بيانات المستخدم:" #: profile-builder-2.0/front-end/default-fields/password/password.php:46 #: profile-builder-2.0/front-end/recover.php:262 msgid "The password must have the minimum length of %s characters" msgstr "يجب أن يكون الحد الأدنى لعدد أحرف كلمة المرور %s" #: profile-builder-2.0/front-end/default-fields/password/password.php:50 #: profile-builder-2.0/front-end/recover.php:266 msgid "The password must have a minimum strength of %s" msgstr "يجب أن يكون لكلمة المرور الحد الأدنى من قوة %s" #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118 msgid "You cannot register this user role" msgstr "لا يمكنك تسجيل دور المستخدم هذا" #: profile-builder-2.0/front-end/login.php:153 msgid "username or email" msgstr "اسم المستخدم أو البريد الإلكتروني" #: profile-builder-2.0/front-end/login.php:222 msgid "Username or Email" msgstr "اسم المستخدم أو البريد الإلكتروني" #: profile-builder-2.0/front-end/logout.php:15 msgid "You are currently logged in as %s. " msgstr "أنت الآن مسجل الدخول بالمستخدم %s. " #: profile-builder-2.0/front-end/logout.php:15 msgid "Log out »" msgstr "تسجيل الخروج »" #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31 msgid "User Role" msgstr "دور المستخدم" #: profile-builder-2.0/modules/user-listing/userlisting.php:2167 msgid "View all extra shortcode parameters" msgstr "عرض جميع معلمات الاختصارات الإضافية" #: profile-builder-2.0/modules/user-listing/userlisting.php:2181 msgid "displays only the users that you specified the user_id for" msgstr "عرض المستخدمين الذين حددتهم user_id فقط ل" #: profile-builder-2.0/modules/user-listing/userlisting.php:2187 msgid "displays all users except the ones you specified the user_id for" msgstr "عرض جميع المستخدمين باستثناء المستخدمين الذين حددتهم user_id ل" #: profile-builder-2.0/features/functions.php:566 msgid "Minimum length of %d characters" msgstr "الحد الأدنى هو %d أحرف" #: profile-builder-2.0/front-end/class-formbuilder.php:146 #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "This message is only visible by administrators" msgstr "هذه الرسالة مرئية فقط من قبل المشرفين" #: profile-builder-2.0/modules/user-listing/userlisting.php:413 msgid "User not found" msgstr "المستخدم غير موجود" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "Valid tags {{reply_to}} and {{site_name}}" msgstr "الوسوم الصالحة {{reply_to}} و {{site_name}}" #: profile-builder-2.0/admin/admin-bar.php:48 msgid "Choose which user roles view the admin bar in the front-end of the website." msgstr "اختر أدوار المستخدم التي تعرض شريط المشرف في الواجهة الأمامية للموقع." #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Enter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes" msgstr "أدخل قائمة قيم مفصولة بفاصلات
            يمكن أن يكون أي شيء، لأنه مخفي عن المستخدم، ولكن يجب ألا يحتوي على أحرف خاصة أو الفواصل العليا" #: profile-builder-2.0/admin/manage-fields.php:1055 msgid "The meta-name cannot be empty\n" msgstr "لا يمكن أن يكون الاسم الوصفي فارغا\n" #: profile-builder-2.0/admin/register-version.php:69 msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received" msgstr "الآن بعد أن حصلت على نسخة من %s، يجب أن تأخذ قليلاً من الوقت وتسجيله مع الرقم التسلسلي الذي تلقيته" #: profile-builder-2.0/admin/register-version.php:243 msgid "

            Your Profile Builder serial number is invalid or missing.
            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

            " msgstr "

            الرقم التسلسلي Profile Builder غير صالح أو مفقود.
            يرجى%1$s تسجيل نسختك%2$s لتلقي إمكانية الوصول إلى التحديثات التلقائية والدعم. هل تحتاج إلى مفتاح ترخيص؟ %3$sاشتري واحد الآن%4$s " #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17 #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14 #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60 msgid "...Choose" msgstr "...اختر" #: profile-builder-2.0/features/class-list-table.php:526 #: profile-builder-2.0/features/class-list-table.php:942 msgid "1 item" msgstr "عنصر %s" #: profile-builder-2.0/features/functions.php:552 msgid "Very Weak" msgstr "ضعيف جدا" #: profile-builder-2.0/features/functions.php:640 msgid "This field is required" msgstr "هذا الحقل مطلوب" #: profile-builder-2.0/features/functions.php:704 msgid "Cancel" msgstr "إلغاء" #: profile-builder-2.0/features/functions.php:740 msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s" msgstr "للسماح للمستخدمين بالتسجيل في موقع الويب الخاص بك عن طريق Profile Builder، يجب أولا تمكين تسجيل المستخدم. انتقل إلى %1$sاعدادات -> علامة التبويب عام%2$s, وتحت العضوية تأكد من تحقق \"يمكن لأي شخص التسجيل. %3$sتجاهل%4$s" #: profile-builder-2.0/front-end/login.php:144 msgid "Invalid username." msgstr "اسم المستخدم غير صحيح" #: profile-builder-2.0/front-end/login.php:149 #: profile-builder-2.0/front-end/login.php:153 msgid "username" msgstr "اسم المستخدم" #: profile-builder-2.0/front-end/login.php:149 msgid "email" msgstr "البريد الإلكتروني" #: profile-builder-2.0/front-end/login.php:256 msgid "Lost your password?" msgstr "نسيت كلمة المرور؟" #: profile-builder-2.0/index.php:34 msgid " is also activated. You need to deactivate it before activating this version of the plugin." msgstr "يتم التفعيل أيضا. تحتاج إلى إلغاء تفعيله قبل تفعيل هذا الإصدار من الإضافة." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54 msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email" msgstr "يجب أن يكون عنوان بريد إلكتروني صالحا أو الوسم {{reply_to}} التي تكون افتراضية إلى البريد الإلكتروني للمشرف" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508 msgid "Your selected password at signup" msgstr "قمت باختيار كلمة المرور عند الاشتراك" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38 msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save." msgstr "يتم نسخ هذه الإعدادات أيضا في إعدادات \"مخصص البريد الإلكترونيللمسؤول\" عند الحفظ." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274 msgid "This form is empty." msgstr "هذا النموذج فارغ." #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all items" msgstr "حذف جميع العناصر" #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Delete all" msgstr "حذف الكل" #: profile-builder-2.0/modules/user-listing/userlisting.php:1621 msgid "Choose..." msgstr "اختر..." #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Set the number of users to be displayed on every paginated part of the all-userlisting" msgstr "تعيين عدد المستخدمين ليتم عرضهم على كل جزء مرقم لكل المستخدمين" #: profile-builder-2.0/admin/admin-bar.php:10 msgid "Show/Hide the Admin Bar on the Front-End" msgstr "إظهار / إخفاء شريط المشرف على الواجهة الأمامية" #: profile-builder-2.0/admin/admin-bar.php:10 #: profile-builder-2.0/admin/admin-bar.php:47 msgid "Admin Bar Settings" msgstr "إعدادات شريط المشرف" #: profile-builder-2.0/admin/admin-bar.php:57 msgid "User-Role" msgstr "دور المستخدم" #: profile-builder-2.0/admin/admin-bar.php:58 msgid "Visibility" msgstr "الوضوح" #: profile-builder-2.0/admin/admin-bar.php:73 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Default" msgstr "الإفتراضي" #: profile-builder-2.0/admin/admin-bar.php:74 msgid "Show" msgstr "إظهار" #: profile-builder-2.0/admin/admin-bar.php:75 #: profile-builder-2.0/modules/user-listing/userlisting.php:1554 msgid "Hide" msgstr "إخفاء" #: pb-add-on-woocommerce/woosync-page.php:147 #: profile-builder-2.0/admin/admin-bar.php:86 #: profile-builder-2.0/admin/general-settings.php:224 #: profile-builder-2.0/admin/register-version.php:95 #: profile-builder-2.0/features/functions.php:697 #: profile-builder-2.0/modules/modules.php:127 msgid "Save Changes" msgstr "حفظ التغييرات" #: profile-builder-2.0/admin/admin-functions.php:37 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 )" msgstr "يتم تعيين تسجيل باستخدام البريد الإلكتروني. لن يظهر هذا الحقل في الواجهة الأمامية! (يمكنك تغيير هذه الإعدادات ضمن علامة التبويب \"%s\")" #: profile-builder-2.0/admin/admin-functions.php:37 #: profile-builder-2.0/admin/general-settings.php:10 #: profile-builder-2.0/admin/general-settings.php:35 msgid "General Settings" msgstr "الإعدادات العامة" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:210 msgid "Very weak" msgstr "ضعيف جدا" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:211 #: profile-builder-2.0/features/functions.php:552 msgid "Weak" msgstr "ضعيف" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:212 #: profile-builder-2.0/features/functions.php:552 msgid "Medium" msgstr "متوسط" #: profile-builder-2.0/admin/admin-functions.php:137 #: profile-builder-2.0/admin/general-settings.php:213 #: profile-builder-2.0/features/functions.php:552 msgid "Strong" msgstr "قوي" #: profile-builder-2.0/admin/admin-functions.php:187 msgid "Add Field" msgstr "إضافة حقل" #: profile-builder-2.0/admin/admin-functions.php:189 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390 msgid "Save Settings" msgstr "حفظ الإعدادات" #: profile-builder-2.0/admin/basic-info.php:10 msgid "Basic Information" msgstr "معلومات اساسية" #: profile-builder-2.0/admin/basic-info.php:29 msgid "Version %s" msgstr "الاصدار %s" #: profile-builder-2.0/admin/basic-info.php:30 msgid "Profile Builder " msgstr "Profile Builder " #: profile-builder-2.0/admin/basic-info.php:31 msgid "The best way to add front-end registration, edit profile and login forms." msgstr "أفضل طريقة لإضافة تسجيل الواجهة الأمامية, تعديل الملف الشخصي واستمارات تسجيل الدخول." #: profile-builder-2.0/admin/basic-info.php:33 msgid "For Modern User Interaction" msgstr "لتفاعل المستخدم الحديث" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25 #: profile-builder-2.0/admin/basic-info.php:36 #: profile-builder-2.0/features/login-widget/login-widget.php:59 msgid "Login" msgstr "تسجيل الدخول" #: profile-builder-2.0/admin/basic-info.php:40 msgid "Registration" msgstr "التسجيل" #: profile-builder-2.0/admin/basic-info.php:44 msgid "Edit Profile" msgstr "تعديل الملف الشخصي" #: profile-builder-2.0/admin/basic-info.php:51 msgid "Extra Features" msgstr "ميزات اضافية" #: profile-builder-2.0/admin/basic-info.php:52 msgid "Features that give you more control over your users, increased security and help you fight user registration spam." msgstr "الميزات التي تمنحك مزيدا من التحكم في المستخدمين ,زيادة الأمان وتساعدك على محاربة الرسائل غير المرغوب فيها لتسجيل المستخدمين." #: profile-builder-2.0/admin/basic-info.php:53 msgid "Enable extra features" msgstr "تمكين ميزات إضافية" #: profile-builder-2.0/admin/basic-info.php:57 msgid "Recover Password" msgstr "إستعادة كلمة المرور" #: profile-builder-2.0/admin/basic-info.php:61 msgid "Admin Approval (*)" msgstr "موافقة المشرف (*)" #: profile-builder-2.0/admin/basic-info.php:62 msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI." msgstr "عليك أن تقرر من هو المستخدم على موقع الويب الخاص بك. الحصول على إخطار عبر البريد الإلكتروني أو الموافقة على عدة مستخدمين في وقت واحد من واجهة المستخدم ووردبريس." #: profile-builder-2.0/admin/basic-info.php:65 msgid "Email Confirmation" msgstr "تأكيد البريد الإلكتروني" #: profile-builder-2.0/admin/basic-info.php:66 msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address." msgstr "تأكد من تسجيل المستخدمين من خلال عناوين بريد إلكتروني حقيقية. عند التسجيل سوف يتلقى المستخدمين إخطارا لتأكيد عنوان بريدهم الإلكتروني." #: profile-builder-2.0/admin/basic-info.php:69 msgid "Minimum Password Length and Strength Meter" msgstr "الحد الأدنى لطول كلمة المرور وقوتها" #: profile-builder-2.0/admin/basic-info.php:70 msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength." msgstr "القضاء على كلمات المرور الضعيفة تماما عن طريق وضع الحد الأدنى لطول كلمة المرور وإنفاذ قوة كلمة مرور معينة." #: profile-builder-2.0/admin/basic-info.php:73 msgid "Login with Email or Username" msgstr "تسجيل الدخول عن طريق اسم المستخدم أو البريد الإلكتروني" #: profile-builder-2.0/admin/basic-info.php:74 msgid "Allow users to log in with their email or username when accessing your site." msgstr "السماح للمستخدمين بتسجيل الدخول باستخدام البريد الإلكتروني أو اسم المستخدم عند الدخول إلى موقعك." #: profile-builder-2.0/admin/basic-info.php:87 msgid "Customize Your Forms The Way You Want (*)" msgstr "تخصيص النماذج بالطريقة التي تريدها (*)" #: profile-builder-2.0/admin/basic-info.php:88 msgid "With Extra Profile Fields you can create the exact registration form your project needs." msgstr "مع حقول الملف الشخصي الإضافية يمكنك إنشاء نموذج التسجيل الدقيق الذي يحتاجه المشروع الخاص بك." #: profile-builder-2.0/admin/basic-info.php:90 msgid "Extra Profile Fields are available in Hobbyist or PRO versions" msgstr "حقول الملف الشخصي إضافية متوفرة في إصدارات Hobbyist أو PRO" #: profile-builder-2.0/admin/basic-info.php:92 msgid "Get started with extra fields" msgstr "بدء استخدام حقول إضافية" #: profile-builder-2.0/admin/basic-info.php:95 msgid "Avatar Upload" msgstr "رفع الصورة الرمزية" #: profile-builder-2.0/admin/basic-info.php:96 msgid "Generic Uploads" msgstr "رفع ملفات عامة" #: profile-builder-2.0/admin/basic-info.php:97 msgid "Agree To Terms Checkbox" msgstr "موافق على مربع الشروط" #: profile-builder-2.0/admin/basic-info.php:98 msgid "Datepicker" msgstr "منتقي التاريخ" #: profile-builder-2.0/admin/basic-info.php:101 msgid "reCAPTCHA" msgstr "اختبار reCAPTCHA" #: profile-builder-2.0/admin/basic-info.php:102 msgid "Country Select" msgstr "تحديد البلد" #: profile-builder-2.0/admin/basic-info.php:104 msgid "Timezone Select" msgstr "تحديد المنطقة الزمنية" #: profile-builder-2.0/admin/basic-info.php:108 msgid "Input / Hidden Input" msgstr "الإدخال / الإدخال الخفي" #: profile-builder-2.0/admin/basic-info.php:110 msgid "Checkbox" msgstr "مربع اختيار" #: profile-builder-2.0/admin/basic-info.php:111 msgid "Select" msgstr "تحديد" #: profile-builder-2.0/admin/basic-info.php:112 msgid "Radio Buttons" msgstr "أزرار الراديو" #: profile-builder-2.0/admin/basic-info.php:113 msgid "Textarea" msgstr "مساحة النص" #: profile-builder-2.0/admin/basic-info.php:125 msgid "Powerful Modules (**)" msgstr "وحدات قوية (**)" #: profile-builder-2.0/admin/basic-info.php:126 msgid "Everything you will need to manage your users is probably already available using the Pro Modules." msgstr "كل ما تحتاجه لإدارة المستخدمين الخاص بك هو على الأرجح متاح بالفعل باستخدام وحدات Pro." #: profile-builder-2.0/admin/basic-info.php:128 msgid "Enable your modules" msgstr "تمكين الوحدات الخاصة بك" #: profile-builder-2.0/admin/basic-info.php:131 msgid "Find out more about PRO Modules" msgstr "معرفة المزيد عن وحدات PRO" #: profile-builder-2.0/admin/basic-info.php:136 #: profile-builder-2.0/modules/modules.php:89 #: profile-builder-2.0/modules/user-listing/userlisting.php:11 #: profile-builder-2.0/modules/user-listing/userlisting.php:12 #: profile-builder-2.0/modules/user-listing/userlisting.php:17 #: profile-builder-2.0/modules/user-listing/userlisting.php:23 msgid "User Listing" msgstr "قائمة المستخدمين" #: profile-builder-2.0/admin/basic-info.php:138 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." msgstr "من السهل تعديل النماذج لإدراج مستخدمي موقعك على الويب بالإضافة إلى إنشاء صفحات مستخدم واحد. يعتمد على الرمز القصير، ويقدم العديد من الخيارات لتخصيص القوائم الخاصة بك." #: profile-builder-2.0/admin/basic-info.php:144 msgid "Email Customizer" msgstr "مخصص البريد الإلكتروني" #: profile-builder-2.0/admin/basic-info.php:145 msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval." msgstr "تخصيص جميع الرسائل الإلكترونية المرسلة إلى المستخدمين أو المشرفين. على التسجيل، تأكيد البريد الإلكتروني، موافقة المشرف / أو إلغاء الموافقة." #: profile-builder-2.0/admin/basic-info.php:148 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33 #: profile-builder-2.0/modules/modules.php:110 msgid "Custom Redirects" msgstr "عمليات إعادة التوجيه المخصصة" #: profile-builder-2.0/admin/basic-info.php:149 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." msgstr "حافظ على المستخدمين خارج لوحة معلومات وردبريس, إعادة توجيههم إلى الصفحة الأولى بعد تسجيل الدخول أو التسجيل, كل شيء على بعد نقرات قليلة." #: profile-builder-2.0/admin/basic-info.php:154 #: profile-builder-2.0/modules/modules.php:75 msgid "Multiple Registration Forms" msgstr "نماذج التسجيل المتعددة" #: profile-builder-2.0/admin/basic-info.php:155 msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users." msgstr "إعداد نماذج تسجيل متعددة مع حقول مختلفة لأدوار معينة للمستخدم. التقاط معلومات مختلفة من أنواع مختلفة من المستخدمين." #: profile-builder-2.0/admin/basic-info.php:158 #: profile-builder-2.0/modules/modules.php:82 msgid "Multiple Edit-profile Forms" msgstr "نماذج تحرير الملف الشخصي المتعددة" #: profile-builder-2.0/admin/basic-info.php:159 msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles." msgstr "السماح لأدوار المستخدمين المختلفة بتعديل معلوماتهم الخاصة. إعداد نماذج تعديل الملف الشخصي متعددة مع حقول مختلفة لبعض أدوار المستخدم." #: profile-builder-2.0/admin/basic-info.php:187 msgid " * only available in the %1$sHobbyist and Pro versions%2$s." msgstr "* متوفر فقط في إصدارات %1$sHobbyist و Pro%2$s." #: profile-builder-2.0/admin/basic-info.php:188 msgid "** only available in the %1$sPro version%2$s." msgstr "* متوفر فقط في %1$sإصدارات Pro%2$s." #: profile-builder-2.0/admin/general-settings.php:39 msgid "Load Profile Builder's own CSS file in the front-end:" msgstr "تحميل ملف CSS ل Profile Builder الخاص بك في الواجهة الأمامية:" #: profile-builder-2.0/admin/general-settings.php:42 #: profile-builder-2.0/admin/general-settings.php:55 #: profile-builder-2.0/admin/general-settings.php:104 #: profile-builder-2.0/admin/general-settings.php:151 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Yes" msgstr "نعم" #: profile-builder-2.0/admin/general-settings.php:44 msgid "You can find the default file here: %1$s" msgstr "يمكنك العثور على الملف الافتراضي هنا: %1$s" #: profile-builder-2.0/admin/general-settings.php:51 msgid "\"Email Confirmation\" Activated:" msgstr "\"تأكيد البريد الإلكتروني\" مفعل:" #: profile-builder-2.0/admin/general-settings.php:56 #: profile-builder-2.0/admin/general-settings.php:105 #: profile-builder-2.0/admin/general-settings.php:150 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "No" msgstr "لا" #: profile-builder-2.0/admin/general-settings.php:61 msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s." msgstr "يمكنك العثور على قائمة بعناوين البريد الإلكتروني غير المؤكدة %1$sالمستخدمين > كل المستخدمين > تأكيد البريد الإلكتروني%2$s." #: profile-builder-2.0/admin/general-settings.php:69 msgid "\"Email Confirmation\" Landing Page:" msgstr "صفحة هبوط \"تأكيد البريد الإلكتروني\":" #: profile-builder-2.0/admin/general-settings.php:74 msgid "Existing Pages" msgstr "الصفحات الحالية" #: profile-builder-2.0/admin/general-settings.php:89 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." msgstr "حدد الصفحة التي سيتم توجيه المستخدمين إليها عند تأكيد حساب البريد الإلكتروني. قد تختلف هذه الصفحة عن صفحة (صفحات) التسجيل ويمكن تغييرها في أي وقت. إذا لم يتم تحديد أي شيء، سيتم عرض صفحة تأكيد بسيطة للمستخدم." #: profile-builder-2.0/admin/general-settings.php:100 msgid "\"Admin Approval\" Activated:" msgstr "\"موافقة المشرف\" مفعلة" #: profile-builder-2.0/admin/general-settings.php:108 msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s." msgstr "يمكنك العثور على قائمة المستخدمين في %1$sالمستخدمين > كل المستخدمين > موافقة المشرف%2$s." #: profile-builder-2.0/admin/general-settings.php:165 msgid "\"Admin Approval\" Feature:" msgstr "ميزة \"موافقة المشرف\":" #: profile-builder-2.0/admin/general-settings.php:168 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." msgstr "يمكنك أن تقرر من هو المستخدم على موقع الويب الخاص بك. الحصول على إخطار عبر البريد الإلكتروني أو الموافقة على عدة مستخدمين في وقت واحد من واجهة المستخدم ووردبريس. تمكين موافقة المشرف من خلال الترقية إلى %1$sاصدارات Hobbyist أو PRO %2$s." #: profile-builder-2.0/admin/general-settings.php:175 msgid "Allow Users to Log in With:" msgstr "السماح للمستخدمين بتسجيل الدخول باستخدام:" #: profile-builder-2.0/admin/general-settings.php:180 #: profile-builder-2.0/admin/manage-fields.php:201 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167 #: profile-builder-2.0/front-end/login.php:85 #: profile-builder-2.0/front-end/login.php:99 #: profile-builder-2.0/front-end/login.php:218 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28 #: profile-builder-2.0/modules/user-listing/userlisting.php:102 #: profile-builder-2.0/modules/user-listing/userlisting.php:277 #: profile-builder-2.0/modules/user-listing/userlisting.php:730 #: profile-builder-2.0/modules/user-listing/userlisting.php:2219 msgid "Username" msgstr "اسم المستخدم" #: profile-builder-2.0/admin/general-settings.php:181 #: profile-builder-2.0/front-end/login.php:215 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29 #: profile-builder-2.0/modules/user-listing/userlisting.php:736 #: profile-builder-2.0/modules/user-listing/userlisting.php:2220 msgid "Email" msgstr "البريد الإلكتروني" #: profile-builder-2.0/admin/general-settings.php:193 msgid "Minimum Password Length:" msgstr "الحد الأدنى لطول كلمة المرور:" #: profile-builder-2.0/admin/general-settings.php:198 msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit" msgstr "أدخل الحد الأدنى من الحروف التي يجب أن تحتوي عليها كلمة المرور. اتركه فارغا لعدم تحديد الحد الأدنى" #: profile-builder-2.0/admin/general-settings.php:205 msgid "Minimum Password Strength:" msgstr "الحد الأدنى لقوة كلمة المرور:" #: profile-builder-2.0/admin/general-settings.php:209 msgid "Disabled" msgstr "تعطيل" #: profile-builder-2.0/admin/manage-fields.php:12 msgid "Manage Fields" msgstr "إدارة الحقول" #: profile-builder-2.0/admin/manage-fields.php:13 msgid "Manage Default and Extra Fields" msgstr "إدارة الحقول الافتراضية والإضافية" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Field Title" msgstr "عنوان الحقل" #: profile-builder-2.0/admin/manage-fields.php:118 msgid "Title of the field" msgstr "عنوان الحقل" #: profile-builder-2.0/admin/manage-fields.php:119 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Field" msgstr "حقل" #: profile-builder-2.0/admin/manage-fields.php:120 msgid "Meta-name" msgstr "اسم ميتا" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "ID" msgstr "معرف فريد" #: profile-builder-2.0/admin/manage-fields.php:121 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267 msgid "A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be edited" msgstr "معرف فريد يتم إنشاؤه تلقائيا لهذا الحقل بالذات
            يمكنك استخدام هذا الخيار مع فلاتر لاستهداف هذا العنصر إذا لزم الأمر
            لا يمكن تعديله" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Description" msgstr "وصف" #: profile-builder-2.0/admin/manage-fields.php:122 msgid "Enter a (detailed) description of the option for end users to read
            Optional" msgstr "أدخل وصفا (مفصلا) للخيار لكي يقرأه المستخدمين النهائيين
            اختياري" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Row Count" msgstr "عدد الصفوف" #: profile-builder-2.0/admin/manage-fields.php:123 msgid "Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5" msgstr "حدد عدد الصفوف لحقل 'مساحة النص'
            إذا لم يتم تحديدها، فسيكون الإعداد الافتراضي هو 5" #: profile-builder-2.0/admin/manage-fields.php:124 msgid "Allowed Image Extensions" msgstr "صيغ الصور المسموح بها" #: profile-builder-2.0/admin/manage-fields.php:125 msgid "Allowed Upload Extensions" msgstr "الصيغ المسموح رفعها" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Avatar Size" msgstr "حجم الصورة الرمزية" #: profile-builder-2.0/admin/manage-fields.php:126 msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100" msgstr "أدخل قيمة (بين 20 و 200) لحجم \"الصورة الرمزية\"
            إذا لم يتم تحديدها، فسيكون الإعداد الافتراضي هو 100" #: profile-builder-2.0/admin/manage-fields.php:127 msgid "Date-format" msgstr "صيغة التاريخ" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Terms of Agreement" msgstr "شروط الاتفاق" #: profile-builder-2.0/admin/manage-fields.php:128 msgid "Enter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>" msgstr "أدخل وصفا تفصيليا لشروط الاتفاق ليتمكن المستخدم من قراءته.
            يمكن إدراج الروابط باستخدام بنية HTML القياسية: <a href=\"custom_url\">custom_text</a>" #: profile-builder-2.0/admin/manage-fields.php:129 msgid "Options" msgstr "خيارات" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Labels" msgstr "تسميات" #: profile-builder-2.0/admin/manage-fields.php:130 msgid "Enter a comma separated list of labels
            Visible for the user" msgstr "أدخل قائمة تسميات مفصولة بفواصل
            مرئية للمستخدم" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default Value" msgstr "القيمة الافتراضية" #: profile-builder-2.0/admin/manage-fields.php:137 msgid "Default value of the field" msgstr "القيمة الافتراضية للحقل" #: profile-builder-2.0/admin/manage-fields.php:138 #: profile-builder-2.0/admin/manage-fields.php:140 #: profile-builder-2.0/admin/manage-fields.php:141 #: profile-builder-2.0/admin/manage-fields.php:142 msgid "Default Option" msgstr "الخيار الافتراضي" #: profile-builder-2.0/admin/manage-fields.php:138 msgid "Specify the option which should be selected by default" msgstr "حدد الخيار الذي يجب تحديده بشكل افتراضي" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Default Option(s)" msgstr "الخيار الافتراضي (الخيارات)" #: profile-builder-2.0/admin/manage-fields.php:139 msgid "Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)" msgstr "حدد الخيار الذي يجب تحديده افتراضيا
            إذا كانت هناك قيم متعددة، فقم بفصلها مع '،' (فاصلة)" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default Content" msgstr "المحتوى الافتراضي" #: profile-builder-2.0/admin/manage-fields.php:153 msgid "Default value of the textarea" msgstr "القيمة الافتراضية لمساحة النص" #: pb-add-on-woocommerce/index.php:306 #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Required" msgstr "مطلوب" #: profile-builder-2.0/admin/manage-fields.php:160 msgid "Whether the field is required or not" msgstr "ما إذا كان الحقل مطلوب أم لا" #: profile-builder-2.0/admin/manage-fields.php:161 msgid "Overwrite Existing" msgstr "استبدال الحالي" #: profile-builder-2.0/admin/manage-fields.php:161 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
            Use this at your own risk" msgstr "سيؤدي تحديد \"نعم\" إلى إضافة الحقل إلى القائمة، ولكن سيتم استبدال أي حقل آخر في قاعدة البيانات التي تحتوي على الاسم الوصفي نفسه
            استخدم هذا على مسؤوليتك الخاصة" #: profile-builder-2.0/admin/manage-fields.php:167 msgid "Field Properties" msgstr "خصائص الحقل" #: profile-builder-2.0/admin/manage-fields.php:181 msgid "Registration & Edit Profile" msgstr "تسجيل وتحرير الملف الشخصي" #: profile-builder-2.0/admin/manage-fields.php:200 msgid "Name" msgstr "الاسم" #: profile-builder-2.0/admin/manage-fields.php:201 msgid "Usernames cannot be changed." msgstr "اسم المستخدم لا يمكن تغييره." #: pb-add-on-woocommerce/billing-fields.php:6 #: pb-add-on-woocommerce/shipping-fields.php:6 #: profile-builder-2.0/admin/manage-fields.php:202 msgid "First Name" msgstr "الاسم الأول" #: pb-add-on-woocommerce/billing-fields.php:7 #: pb-add-on-woocommerce/shipping-fields.php:7 #: profile-builder-2.0/admin/manage-fields.php:203 msgid "Last Name" msgstr "الاسم الأخير" #: profile-builder-2.0/admin/manage-fields.php:204 #: profile-builder-2.0/modules/user-listing/userlisting.php:769 #: profile-builder-2.0/modules/user-listing/userlisting.php:2227 msgid "Nickname" msgstr "الكنية" #: profile-builder-2.0/admin/manage-fields.php:205 msgid "Display name publicly as" msgstr "عرض الاسم بشكل عام ك" #: profile-builder-2.0/admin/manage-fields.php:206 msgid "Contact Info" msgstr "بيانات التواصل" #: profile-builder-2.0/admin/manage-fields.php:207 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168 #: profile-builder-2.0/front-end/recover.php:118 #: profile-builder-2.0/modules/user-listing/userlisting.php:108 msgid "E-mail" msgstr "البريد الإلكتروني" #: profile-builder-2.0/admin/manage-fields.php:208 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32 #: profile-builder-2.0/modules/user-listing/userlisting.php:111 #: profile-builder-2.0/modules/user-listing/userlisting.php:751 #: profile-builder-2.0/modules/user-listing/userlisting.php:2221 msgid "Website" msgstr "الموقع" #: profile-builder-2.0/admin/manage-fields.php:212 msgid "AIM" msgstr "AIM" #: profile-builder-2.0/admin/manage-fields.php:213 msgid "Yahoo IM" msgstr "Yahoo IM" #: profile-builder-2.0/admin/manage-fields.php:214 msgid "Jabber / Google Talk" msgstr "Jabber / Google Talk" #: profile-builder-2.0/admin/manage-fields.php:217 msgid "About Yourself" msgstr "عن الكاتب" #: profile-builder-2.0/admin/manage-fields.php:218 #: profile-builder-2.0/modules/user-listing/userlisting.php:114 #: profile-builder-2.0/modules/user-listing/userlisting.php:754 #: profile-builder-2.0/modules/user-listing/userlisting.php:2222 msgid "Biographical Info" msgstr "السيرة الذاتية" #: profile-builder-2.0/admin/manage-fields.php:218 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "مشاركة معلومات عن السيرة الذاتية لملء ملفك الشخصي. قد تظهر ذلك علنا." #: profile-builder-2.0/admin/manage-fields.php:219 #: profile-builder-2.0/front-end/recover.php:73 #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30 msgid "Password" msgstr "كلمة المرور" #: profile-builder-2.0/admin/manage-fields.php:219 msgid "Type your password." msgstr "قم بكتابة كلمة المرور." #: profile-builder-2.0/admin/manage-fields.php:220 #: profile-builder-2.0/front-end/recover.php:74 msgid "Repeat Password" msgstr "إعادة كلمة المرور" #: profile-builder-2.0/admin/manage-fields.php:220 msgid "Type your password again. " msgstr "أعد كتابة كلمة المرور مرة أخرى." #: profile-builder-2.0/admin/manage-fields.php:980 #: profile-builder-2.0/admin/manage-fields.php:1137 msgid "You must select a field\n" msgstr "يجب تحديد حقل\n" #: profile-builder-2.0/admin/manage-fields.php:990 msgid "Please choose a different field type as this one already exists in your form (must be unique)\n" msgstr "يرجى اختيار نوع حقل مختلف لأن هذا الحقل موجود بالفعل في النموذج (يجب أن يكون فريدا)\n" #: profile-builder-2.0/admin/manage-fields.php:1001 msgid "The entered avatar size is not between 20 and 200\n" msgstr "حجم الصورة الرمزية الذي تم إدخاله لا يتراوح بين 20 و 200\n" #: profile-builder-2.0/admin/manage-fields.php:1004 msgid "The entered avatar size is not numerical\n" msgstr "حجم الصورة الرمزية المدخلة ليست رقمية\n" #: profile-builder-2.0/admin/manage-fields.php:1012 msgid "The entered row number is not numerical\n" msgstr "رقم الصف الذي تم إدخاله غير رقمي\n" #: profile-builder-2.0/admin/manage-fields.php:1015 msgid "You must enter a value for the row number\n" msgstr "يجب إدخال قيمة لرقم الصف\n" #: profile-builder-2.0/admin/manage-fields.php:1036 msgid "The entered value for the Datepicker is not a valid date-format\n" msgstr "القيمة المدخلة لمنسق التاريخ ليست تنسيق تاريخ صالح\n" #: profile-builder-2.0/admin/manage-fields.php:1039 msgid "You must enter a value for the date-format\n" msgstr "يجب إدخال قيمة لتنسيق التاريخ\n" #: profile-builder-2.0/admin/manage-fields.php:1067 #: profile-builder-2.0/admin/manage-fields.php:1075 #: profile-builder-2.0/admin/manage-fields.php:1086 msgid "That meta-name is already in use\n" msgstr "هذا الاسم الوصفي قيد الاستخدام \n" #: profile-builder-2.0/admin/manage-fields.php:1117 msgid "The following option(s) did not coincide with the ones in the options list: %s\n" msgstr "لم يتطابق الخيار (الخيارات) التالي مع الخيارات الموجودة في قائمة الخيارات:%s\n" #: profile-builder-2.0/admin/manage-fields.php:1121 msgid "The following option did not coincide with the ones in the options list: %s\n" msgstr "لم يتطابق الخيار التالي مع تلك الموجودة في قائمة الخيارات: %s\n" #: profile-builder-2.0/admin/manage-fields.php:1144 msgid "That field is already added in this form\n" msgstr "تمت إضافة هذا الحقل مسبقا في هذا النموذج\n" #: profile-builder-2.0/admin/manage-fields.php:1193 msgid "

            Title
            Type
            Meta Name
            Required
            " msgstr "
            العنوان
            النوع
            الاسم الوصفي
            مطلوب
            " #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108 #: profile-builder-2.0/features/functions.php:718 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406 msgid "Edit" msgstr "تعديل" #: profile-builder-2.0/admin/manage-fields.php:1193 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217 #: profile-builder-2.0/features/functions.php:711 #: profile-builder-2.0/features/functions.php:725 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207 #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221 msgid "Delete" msgstr "حذف" #: profile-builder-2.0/admin/manage-fields.php:1208 msgid "Use these shortcodes on the pages you want the forms to be displayed:" msgstr "استخدم هذه الرموز القصيرة على الصفحات التي تريد عرض النماذج عليها:" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Your Version" msgstr "تسجيل الإصدار الخاص بك" #: profile-builder-2.0/admin/register-version.php:14 msgid "Register Version" msgstr "تسجيل الإصدار" #: profile-builder-2.0/admin/register-version.php:70 msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support." msgstr "إذا قمت بتسجيل هذا الإصدار من Profile Builder، فستتلقى معلومات بشأن عمليات الترقية والتصحيحات والدعم الفني." #: profile-builder-2.0/admin/register-version.php:72 msgid " Serial Number:" msgstr "الرقم التسلسلي" #: profile-builder-2.0/admin/register-version.php:77 msgid "The serial number was successfully validated!" msgstr "تم التحقق من صحة الرقم التسلسلي!" #: profile-builder-2.0/admin/register-version.php:79 msgid "The serial number entered couldn't be validated!" msgstr "تعذر التحقق من الرقم التسلسلي الذي تم إدخاله!" #: profile-builder-2.0/admin/register-version.php:83 msgid "The serial number couldn't be validated because it expired!" msgstr "تعذر التحقق من الرقم التسلسلي لأنه منتهي!" #: profile-builder-2.0/admin/register-version.php:85 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!" msgstr "تعذر التحقق من الرقم التسلسلي بسبب انتهاء مهلة العملية. من ممكن أن يكون بسبب مشكلة في الخادم. الرجاء معاودة المحاولة في وقت لاحق!" #: profile-builder-2.0/admin/register-version.php:87 msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" msgstr "(مثال. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438 #: profile-builder-2.0/features/functions.php:725 msgid "Content" msgstr "محتوى" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535 msgid "Edit this item" msgstr "تعديل هذا العنصر" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536 msgid "Delete this item" msgstr "حذف هذا العنصر" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705 msgid "Please enter a value for the required field " msgstr "الرجاء إدخال قيمة للحقل المطلوب" #: pb-add-on-woocommerce/woo-checkout-field-support.php:262 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122 msgid "Select File" msgstr "حدد ملف" #: pb-add-on-woocommerce/woo-checkout-field-support.php:252 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112 msgid "Remove" msgstr "إزالة" #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8 msgid "You can add the information for the %s after you add a entry" msgstr "يمكنك إضافة المعلومات ل %s بعد إضافة إدخال" #: pb-add-on-woocommerce/woo-checkout-field-support.php:268 #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128 msgid "Upload " msgstr "رفع" #: profile-builder-2.0/features/class-list-table.php:184 msgid "No items found." msgstr "لاتوجد نتائج." #: profile-builder-2.0/features/class-list-table.php:308 msgid "Bulk Actions" msgstr "إجراءات جملة" #: profile-builder-2.0/features/class-list-table.php:318 msgid "Apply" msgstr "تطبيق" #: profile-builder-2.0/features/class-list-table.php:402 msgid "Show all dates" msgstr "إظهار كل التواريخ" #: profile-builder-2.0/features/class-list-table.php:415 msgid "%1$s %2$d" msgstr "%1$s %2$d" #: profile-builder-2.0/features/class-list-table.php:431 msgid "List View" msgstr "عرض القائمة" #: profile-builder-2.0/features/class-list-table.php:432 msgid "Excerpt View" msgstr "عرض مقتطف" #: profile-builder-2.0/features/class-list-table.php:458 msgid "%s pending" msgstr "%s معلقة" #: profile-builder-2.0/features/class-list-table.php:566 msgid "%1$s of %2$s" msgstr "%1$s من %2$s" #: profile-builder-2.0/features/class-list-table.php:713 msgid "Select All" msgstr "تحديد الكل" #: profile-builder-2.0/features/functions.php:526 msgid "Strength indicator" msgstr "مؤشر القوة" #: profile-builder-2.0/features/admin-approval/admin-approval.php:14 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453 msgid "Admin Approval" msgstr "موافقة المشرف" #: profile-builder-2.0/features/admin-approval/admin-approval.php:28 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58 msgid "Do you want to" msgstr "هل تريد أن" #: profile-builder-2.0/features/admin-approval/admin-approval.php:51 msgid "Your session has expired! Please refresh the page and try again" msgstr "انتهت صلاحية جلسة العمل الخاصة بك! يرجى تحديث الصفحة وحاول مرة أخرى" #: profile-builder-2.0/features/admin-approval/admin-approval.php:64 msgid "User successfully approved!" msgstr "تمت الموافقة على المستخدم بنجاح" #: profile-builder-2.0/features/admin-approval/admin-approval.php:74 msgid "User successfully unapproved!" msgstr "تم إلغاء الموافقة للمستخدم بنجاح!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:80 msgid "User successfully deleted!" msgstr "تم حذف المستخدم بنجاح!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:85 #: profile-builder-2.0/features/admin-approval/admin-approval.php:131 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132 msgid "You either don't have permission for that action or there was an error!" msgstr "إما لم يكن لديك صلاحية لهذا الإجراء أو كان هناك خطأ!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:96 msgid "Your session has expired! Please refresh the page and try again." msgstr "انتهت صلاحية جلسة العمل الخاصة بك! يرجى تحديث الصفحة وحاول مرة أخرى." #: profile-builder-2.0/features/admin-approval/admin-approval.php:109 msgid "Users successfully approved!" msgstr "تمت الموافقة على المستخدمين بنجاح!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:119 msgid "Users successfully unapproved!" msgstr "تم إلغاء الموافقة للمستخدمين بنجاح!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:127 msgid "Users successfully deleted!" msgstr "تم حذف المستخدمين بنجاح!" #: profile-builder-2.0/features/admin-approval/admin-approval.php:147 msgid "Your account on %1$s has been approved!" msgstr "تمت الموافقة على حسابك في%1$s !" #: profile-builder-2.0/features/admin-approval/admin-approval.php:148 #: profile-builder-2.0/features/admin-approval/admin-approval.php:151 msgid "approved" msgstr "موافقة" #: profile-builder-2.0/features/admin-approval/admin-approval.php:150 msgid "An administrator has just approved your account on %1$s (%2$s)." msgstr "لقد وافق المشرف على حسابك للتو على %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:155 msgid "Your account on %1$s has been unapproved!" msgstr "لم يتم اعتماد حسابك على %1$s" #: profile-builder-2.0/features/admin-approval/admin-approval.php:156 #: profile-builder-2.0/features/admin-approval/admin-approval.php:159 msgid "unapproved" msgstr "إلغاء الموافقة" #: profile-builder-2.0/features/admin-approval/admin-approval.php:158 msgid "An administrator has just unapproved your account on %1$s (%2$s)." msgstr "لم يوافق المشرف سوى على حسابك في %1$s (%2$s)." #: profile-builder-2.0/features/admin-approval/admin-approval.php:177 msgid "ERROR: Your account has to be confirmed by an administrator before you can log in." msgstr " خطأ : يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من تسجيل الدخول." #: profile-builder-2.0/features/admin-approval/admin-approval.php:189 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature." msgstr "يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من استخدام ميزة \"استعادة كلمة المرور\"." #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113 msgid "delete this user?" msgstr "حذف هذا المستخدم؟" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 msgid "unapprove this user?" msgstr "إلغاء الموافقة على هذا المستخدم؟" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223 msgid "Unapprove" msgstr "إلغاء الموافقة" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 msgid "approve this user?" msgstr "الموافقة على هذا المستخدم؟" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118 #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222 msgid "Approve" msgstr "موافقة" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167 #: profile-builder-2.0/modules/user-listing/userlisting.php:278 #: profile-builder-2.0/modules/user-listing/userlisting.php:742 #: profile-builder-2.0/modules/user-listing/userlisting.php:2224 msgid "Firstname" msgstr "الاسم الأول" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168 #: profile-builder-2.0/modules/user-listing/userlisting.php:745 #: profile-builder-2.0/modules/user-listing/userlisting.php:2225 msgid "Lastname" msgstr "الاسم الأخير" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170 #: profile-builder-2.0/modules/user-listing/userlisting.php:149 #: profile-builder-2.0/modules/user-listing/userlisting.php:279 #: profile-builder-2.0/modules/user-listing/userlisting.php:772 #: profile-builder-2.0/modules/user-listing/userlisting.php:2229 msgid "Role" msgstr "دور" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169 msgid "Registered" msgstr "مسجل" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172 msgid "User-status" msgstr "خالة المستخدم" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252 msgid "Do you want to bulk approve the selected users?" msgstr "هل تريد الموافقة على مجموعة المستخدمين المحددين؟" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260 msgid "Do you want to bulk unapprove the selected users?" msgstr "هل تريد إلغاء الموافقة على مجموعة المستخدمين المحددين؟" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266 msgid "Do you want to bulk delete the selected users?" msgstr "هل تريد الحذف على مجموعة المستخدمين المحددين؟" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278 msgid "Sorry, but you don't have permission to do that!" msgstr "نأسف, ليس لديك الصلاحيات لفعل ذلك." #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339 msgid "Approved" msgstr "موافقة" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341 msgid "Unapproved" msgstr "إلغاء الموافقة" #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454 msgid "All Users" msgstr "كل المستخدمين" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120 msgid "delete this user from the _signups table?" msgstr "هل تريد حذف هذا المستخدم من جدول _signups؟" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 msgid "confirm this email yourself?" msgstr "تأكيد البريد الإلكتروني بنفسك؟" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218 msgid "Confirm Email" msgstr "تأكيد البريد الإلكتروني" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 msgid "resend the activation link?" msgstr "إعادة إرسال رابط التفعيل؟" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219 msgid "Resend Activation Email" msgstr "إعادة إرسال بريد التفعيل" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249 msgid "%s couldn't be deleted" msgstr "%s لا يمكن حذفها" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253 msgid "All users have been successfully deleted" msgstr "تم حذف جميع المستخدمين بنجاح" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263 msgid "The selected users have been activated" msgstr "تم تنشيط المستخدمين المحددين" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274 msgid "The selected users have had their activation emails resent" msgstr "تمت إعادة توجيه رسائل البريد الإلكتروني للتفعيل" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451 #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47 msgid "Users with Unconfirmed Email Address" msgstr "المستخدمون الذين لديهم عنوان بريد إلكتروني غير مؤكد" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107 msgid "There was an error performing that action!" msgstr "حدث خطأ أثناء تنفيذ هذا الإجراء!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115 msgid "The selected user couldn't be deleted" msgstr "تعذر حذف المستخدم المحدد" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126 msgid "Email notification resent to user" msgstr "تم إعادة إرسال إشعار البريد الإلكتروني للمستخدم" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398 msgid "[%1$s] Activate %2$s" msgstr "[%1$s] تفعيل %2$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442 #: profile-builder-2.0/front-end/register.php:71 msgid "Could not create user!" msgstr "تعذر إنشاء المستخدم!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445 msgid "That username is already activated!" msgstr "تم تفعيل هذا المستخدم مسبقاً!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468 msgid "There was an error while trying to activate the user" msgstr "حدث خطأ أثناء محاولة تفعيل المستخدم" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73 msgid "A new subscriber has (been) registered!" msgstr "قد تم تسجيل مشترك جديد (تم)!" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519 msgid "New subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            " msgstr "مشترك جديد في %1$s.

            اسم المستخدم:%2$s
            البريد الإلكتروني:%3$s
            " #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634 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!" msgstr "تم تفعيل ميزة \"موافقة المشرف\" في وقت التسجيل، لذا يرجى تذكر أنك بحاجة إلى الموافقة على هذا المستخدم قبل أن يتمكن من تسجيل الدخول." #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570 msgid "[%1$s] Your new account information" msgstr "[%1$s] معلومات حسابك الجديد" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581 msgid "Welcome to %1$s!


            Your username is:%2$s and password:%3$s" msgstr "مرحبا بك في %1$s!


            اسم المستخدم الخاص بك هو: %2$s وكلمة المرور: %3$s" #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642 #: profile-builder-2.0/front-end/register.php:125 msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email." msgstr "قبل أن تتمكن من الدخول إلى حسابك، يحتاج المشرف إلى الموافقة عليه. سيتم إعلامك عبر البريد الإلكتروني." #: profile-builder-2.0/features/login-widget/login-widget.php:10 msgid "This login widget lets you add a login form in the sidebar." msgstr "هذه الودجت تتيح لك إضافة نموذج تسجيل الدخول في الشريط الجانبي." #: profile-builder-2.0/features/login-widget/login-widget.php:15 msgid "Profile Builder Login Widget" msgstr "ودجت تسجيل الدخول Profile Builder" #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36 #: profile-builder-2.0/front-end/class-formbuilder.php:415 #: profile-builder-2.0/front-end/login.php:250 msgid "Register" msgstr "تسجيل عضو جديد" #: profile-builder-2.0/features/login-widget/login-widget.php:63 msgid "Title:" msgstr "العنوان:" #: profile-builder-2.0/features/login-widget/login-widget.php:68 msgid "After login redirect URL (optional):" msgstr "URL إعادة توجيه تسجيل الدخول (اختياري):" #: profile-builder-2.0/features/login-widget/login-widget.php:73 msgid "Register page URL (optional):" msgstr "URL التسجيل (اختياري):" #: profile-builder-2.0/features/login-widget/login-widget.php:78 msgid "Password Recovery page URL (optional):" msgstr "URL استعادة كلمة المرور (اختياري):" #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91 #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134 msgid "The usernames cannot be changed." msgstr "اسم المستخدم لا يمكن تغييره." #: profile-builder-2.0/front-end/class-formbuilder.php:136 msgid "Only an administrator can add new users." msgstr "يمكن للمشرف فقط إضافة مستخدمين جدد." #: profile-builder-2.0/front-end/class-formbuilder.php:146 msgid "Users can register themselves or you can manually create users here." msgstr "بإمكان المستخدمين تسجيل عضويتهم أو بإمكانك إضافة أعضاء جدد في هذه الشاشة." #: profile-builder-2.0/front-end/class-formbuilder.php:149 msgid "Users cannot currently register themselves, but you can manually create users here." msgstr "لا يمكن للمستخدمين تسجيل أنفسهم حاليا، ولكن يمكنك إنشاء المستخدمين يدويا هنا." #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "You are currently logged in as %1s. You don't need another account. %2s" msgstr "أنت الآن مسجل الدخول بالمستخدم %1s. لا تحتاج إلى حساب آخر. %2s" #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Log out of this account." msgstr "تسجيل الخروج من هذا الحساب" #: profile-builder-2.0/front-end/class-formbuilder.php:169 msgid "Logout" msgstr "تسجيل الخروج" #: profile-builder-2.0/front-end/class-formbuilder.php:175 msgid "You must be logged in to edit your profile." msgstr "يجب تسجيل الدخول لتعديل ملفك الشخصي." #: profile-builder-2.0/features/functions.php:994 msgid "here" msgstr "هنا" #: profile-builder-2.0/features/functions.php:995 msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s" msgstr "سيتم قريبا إعادة توجيهك تلقائيا. إذا رأيت هذه الصفحة لأكثر من %1$d ثانية، يرجى النقر %2$s.%3$s" #: profile-builder-2.0/front-end/class-formbuilder.php:315 #: profile-builder-2.0/front-end/class-formbuilder.php:322 msgid "The account %1s has been successfully created!" msgstr "تم إنشاء الحساب %1s بنجاح!" #: profile-builder-2.0/front-end/class-formbuilder.php:318 #: profile-builder-2.0/front-end/class-formbuilder.php:328 msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link." msgstr "قبل أن تتمكن من الدخول إلى حسابك %1s، يجب تأكيد عنوان بريدك الإلكتروني. يرجى التحقق من البريد الوارد والنقر على رابط التفعيل." #: profile-builder-2.0/front-end/class-formbuilder.php:324 msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email." msgstr "قبل أن تتمكن من الدخول إلى حسابك %1s، يحتاج المشرف إلى الموافقة عليه. سيتم إعلامك عبر البريد الإلكتروني." #: profile-builder-2.0/front-end/class-formbuilder.php:347 msgid "Your profile has been successfully updated!" msgstr "تم تحديث ملفك الشخصي بنجاح!" #: profile-builder-2.0/front-end/class-formbuilder.php:358 msgid "There was an error in the submitted form" msgstr "حدث خطأ في النموذج المقدم" #: profile-builder-2.0/front-end/class-formbuilder.php:415 msgid "Add User" msgstr "أضف مستخدم جديد" #: profile-builder-2.0/admin/add-ons.php:170 #: profile-builder-2.0/front-end/class-formbuilder.php:418 msgid "Update" msgstr "تحديث" #: profile-builder-2.0/front-end/class-formbuilder.php:481 msgid "Send these credentials via email." msgstr "إرسال كلمة المرور عن طريق البريد الإلكتروني" #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92 #: profile-builder-2.0/front-end/login.php:137 #: profile-builder-2.0/front-end/login.php:144 #: profile-builder-2.0/front-end/login.php:158 #: profile-builder-2.0/front-end/recover.php:17 #: profile-builder-2.0/front-end/recover.php:245 msgid "ERROR" msgstr "خطأ" #: profile-builder-2.0/front-end/login.php:137 msgid "The password you entered is incorrect." msgstr "كلمة المرور التي أدخلتها غير صحيحة." #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Password Lost and Found." msgstr "تم فقدان كلمة المرور واسترجاعها" #: profile-builder-2.0/front-end/login.php:138 #: profile-builder-2.0/front-end/login.php:145 msgid "Lost your password" msgstr "نسيت كلمة المرور" #: profile-builder-2.0/front-end/login.php:158 msgid "Both fields are empty." msgstr "كلا الحقلين فارغين" #: profile-builder-2.0/front-end/login.php:296 msgid "You are currently logged in as %1$s. %2$s" msgstr "أنت الآن مسجل الدخول بالمستخدم %1$s. %2$s" #: profile-builder-2.0/front-end/login.php:295 #: profile-builder-2.0/front-end/logout.php:25 msgid "Log out of this account" msgstr "تسجيل الخروج من هذا الحساب" #: profile-builder-2.0/front-end/login.php:295 msgid "Log out" msgstr "تسجيل الخروج" #: profile-builder-2.0/front-end/recover.php:17 msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature." msgstr "يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من استخدام ميزة \"استعادة كلمة المرور\"." #: profile-builder-2.0/front-end/recover.php:94 msgid "Reset Password" msgstr "إعادة كلمة المرور" #: profile-builder-2.0/front-end/recover.php:121 msgid "Please enter your username or email address." msgstr "الرجاء إدخال اسم المستخدم أو عنوان البريد الإلكتروني." #: profile-builder-2.0/front-end/recover.php:125 msgid "You will receive a link to create a new password via email." msgstr "ستتلقى رابطا لإنشاء كلمة مرور جديدة عبر البريد الإلكتروني." #: profile-builder-2.0/front-end/recover.php:122 msgid "Username or E-mail" msgstr "أسم المستخدم او البريد الإلكتروني" #: profile-builder-2.0/front-end/recover.php:138 msgid "Get New Password" msgstr "احصل على كلمة سر جديدة" #: profile-builder-2.0/front-end/recover.php:185 msgid "The username entered wasn't found in the database!" msgstr "لم يتم العثور على اسم المستخدم الذي تم إدخاله في قاعدة البيانات!" #: profile-builder-2.0/front-end/recover.php:185 msgid "Please check that you entered the correct username." msgstr "يرجى التحقق من إدخال اسم المستخدم الصحيح." #: profile-builder-2.0/front-end/recover.php:200 msgid "Check your e-mail for the confirmation link." msgstr "تحقق من بريدك الإلكتروني للحصول على رابط التأكيد." #: profile-builder-2.0/front-end/recover.php:235 msgid "Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s" msgstr "طلب أحد الأشخاص إعادة تعيين كلمة المرور للحساب التالي: %1$s
            إذا كان هذا خطأ، فتجاهل هذه الرسالة الإلكترونية ولن يحدث أي شيء.
            لإعادة تعيين كلمة المرور ، انتقل إلى الرابط التالي:%2$s" #: profile-builder-2.0/front-end/recover.php:238 msgid "Password Reset from \"%1$s\"" msgstr "إعادة تعيين كلمة المرور من \"%1$s\"" #: profile-builder-2.0/front-end/recover.php:245 msgid "There was an error while trying to send the activation link to %1$s!" msgstr "حدث خطأ أثناء محاولة إرسال رابط التفعيل إلى %1$s!" #: profile-builder-2.0/front-end/recover.php:207 msgid "The email address entered wasn't found in the database!" msgstr "لم يتم العثور على عنوان البريد الإلكتروني الذي تم إدخاله في قاعدة البيانات!" #: profile-builder-2.0/front-end/recover.php:207 msgid "Please check that you entered the correct email address." msgstr "يرجى التحقق من إدخال البريد الإلكتروني الصحيح." #: profile-builder-2.0/front-end/recover.php:273 msgid "Your password has been successfully changed!" msgstr "كلمة السر الخاصة بك تم تغييرها بنجاح!" #: profile-builder-2.0/front-end/recover.php:292 msgid "You have successfully reset your password to: %1$s" msgstr "لقد أعدت تعيين كلمة المرور بنجاح إلى: %1$s" #: profile-builder-2.0/front-end/recover.php:295 #: profile-builder-2.0/front-end/recover.php:306 msgid "Password Successfully Reset for %1$s on \"%2$s\"" msgstr "تم بنجاح إعادة تعيين كلمة المرور ل %1$s على \"%2$s\"" #: profile-builder-2.0/front-end/recover.php:303 msgid "%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s" msgstr "%1$s قام بطلب تغيير كلمة المرور عبر ميزة إعادة تعيين كلمة المرور.
            كلمة المرور الجديدة هي:%2$s" #: profile-builder-2.0/front-end/recover.php:320 msgid "The entered passwords don't match!" msgstr "لا تتطابق كلمات المرور المدخلة!" #: profile-builder-2.0/front-end/recover.php:375 msgid "ERROR:" msgstr "خطأ:" #: profile-builder-2.0/front-end/recover.php:375 msgid "Invalid key!" msgstr "مفتاح غير صالح!" #: profile-builder-2.0/front-end/register.php:56 msgid "Invalid activation key!" msgstr "مفتاح التنشيط غير صالح!" #: profile-builder-2.0/front-end/register.php:60 msgid "This username is now active!" msgstr "اسم المستخدم مفعل الآن!" #: profile-builder-2.0/front-end/register.php:74 msgid "This username is already activated!" msgstr "تم تفعيل هذا المستخدم مسبقاً!" #: profile-builder-2.0/front-end/register.php:124 msgid "Your email was successfully confirmed." msgstr "تم تأكيد بريدك الإلكتروني بنجاح." #: profile-builder-2.0/front-end/register.php:153 msgid "There was an error while trying to activate the user." msgstr "حدث خطأ أثناء محاولة تفعيل المستخدم." #: pb-add-on-woocommerce/index.php:393 #: profile-builder-2.0/front-end/default-fields/email/email.php:47 msgid "The email you entered is not a valid email address." msgstr "البريد الإلكتروني الذي أدخلته ليس عنوان بريد إلكتروني صالح." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 msgid "This email is already reserved to be used soon." msgstr "هذه الرسالة الإلكترونية محفوظة بالفعل لاستخدامها قريبا." #: profile-builder-2.0/front-end/default-fields/email/email.php:60 #: profile-builder-2.0/front-end/default-fields/email/email.php:67 #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 #: profile-builder-2.0/front-end/default-fields/username/username.php:49 #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "Please try a different one!" msgstr "الرجاء محاولة واحدة مختلفة!" #: profile-builder-2.0/front-end/default-fields/email/email.php:77 #: profile-builder-2.0/front-end/default-fields/email/email.php:95 msgid "This email is already in use." msgstr "هذا البريد استخدم من قبل." #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37 #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41 msgid "The passwords do not match" msgstr "كلمات السر لا تتطابق" #: profile-builder-2.0/front-end/default-fields/username/username.php:49 msgid "This username already exists." msgstr "اسم المستخدم هذا موجود بالفعل." #: profile-builder-2.0/front-end/default-fields/username/username.php:65 msgid "This username is already reserved to be used soon." msgstr "اسم المستخدم هذا محفوظ مسبقا لاستخدامه قريبا." #: profile-builder-2.0/modules/user-listing/userlisting.php:276 msgid "Avatar" msgstr "الصورة الرمزية" #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72 #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45 #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45 #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40 #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34 #: profile-builder-2.0/front-end/extra-fields/input/input.php:30 #: profile-builder-2.0/front-end/extra-fields/map/map.php:51 #: profile-builder-2.0/front-end/extra-fields/number/number.php:30 #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39 #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44 #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52 #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46 #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49 #: profile-builder-2.0/front-end/extra-fields/select/select.php:51 #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30 #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70 #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33 msgid "required" msgstr "مطلوب" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48 msgid "To use reCAPTCHA you must get an API key from" msgstr "لاستخدام ريكابتشا يجب أن تحصل على مفتاح عام لواجهة برمجة التطبيقات من" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131 msgid "For security reasons, you must pass the remote ip to reCAPTCHA!" msgstr "لأسباب أمنية، يجب تمرير عنوان بروتوكول الإنترنت عن بعد ل ريكابتشا!" #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192 msgid "To use reCAPTCHA you must get an API public key from:" msgstr "لاستخدام ريكابتشا يجب أن تحصل على مفتاح عام لواجهة برمجة التطبيقات من:" #: profile-builder-2.0/modules/modules.php:11 #: profile-builder-2.0/modules/modules.php:58 msgid "Modules" msgstr "وحدات" #: profile-builder-2.0/modules/modules.php:59 msgid "Here you can activate / deactivate available modules for Profile Builder." msgstr "هنا يمكنك تفعيل / إلغاء تفعيل الوحدات النمطية المتاحة ل Profile Builder." #: profile-builder-2.0/modules/modules.php:69 msgid "Name/Description" msgstr "اسم / الوصف" #: profile-builder-2.0/modules/modules.php:70 msgid "Status" msgstr "الحالة" #: profile-builder-2.0/modules/modules.php:77 #: profile-builder-2.0/modules/modules.php:84 #: profile-builder-2.0/modules/modules.php:91 #: profile-builder-2.0/modules/modules.php:98 #: profile-builder-2.0/modules/modules.php:105 #: profile-builder-2.0/modules/modules.php:112 #: profile-builder-2.0/modules/modules.php:119 msgid "Active" msgstr "مفعّل" #: profile-builder-2.0/modules/modules.php:78 #: profile-builder-2.0/modules/modules.php:85 #: profile-builder-2.0/modules/modules.php:92 #: profile-builder-2.0/modules/modules.php:99 #: profile-builder-2.0/modules/modules.php:106 #: profile-builder-2.0/modules/modules.php:113 #: profile-builder-2.0/modules/modules.php:120 msgid "Inactive" msgstr "غير مفعّل" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:96 msgid "Admin Email Customizer" msgstr "مخصص البريد الإلكتروني للمشرف" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12 #: profile-builder-2.0/modules/modules.php:103 msgid "User Email Customizer" msgstr "مخصص البريد الإلكتروني" #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334 #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253 msgid "Save" msgstr "حفظ" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Redirect" msgstr "إعادة توجيه" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "URL" msgstr "URL" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38 msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save." msgstr "يتم نسخ هذه الإعدادات أيضا في إعدادات \"مخصص البريد الإلكتروني للمستخدم\" عند الحفظ." #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41 msgid "From (name)" msgstr "من (الاسم)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49 msgid "From (reply-to email)" msgstr "من (الرد إلى البريد الإلكتروني)" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57 msgid "Common Settings" msgstr "الإعدادات العامة" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" msgstr "" "\n" "

            مشترك جديد في {{site_name}}. \n" "

            اسم المستخدم: {{username}} \n" "

            البريد الالكتروني: {{user_email}} \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274 msgid "Email Subject" msgstr "موضوع البريد الإلكتروني" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84 msgid "Default Registration & Registration with Email Confirmation" msgstr "التسجيل الافتراضي والتسجيل مع تأكيد البريد الإلكتروني" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87 msgid "" "\n" "

            New subscriber on {{site_name}}.

            \n" "

            Username:{{username}}

            \n" "

            E-mail:{{user_email}}

            \n" "

            The Admin Approval feature was activated at the time of registration,\n" "so please remember that you need to approve this user before he/she can log in!

            \n" msgstr "" "\n" "

            مشترك جديد في {{site_name}}. \n" "

            اسم المستخدم: {{username}} \n" "

            البريد الالكتروني: {{user_email}} \n" "

            تم تنشيط ميزة الموافقة على المشرف في وقت التسجيل،\n" "لذا يرجى تذكر أنك تحتاج إلى الموافقة على هذا المستخدم قبل أن يتمكن من تسجيل الدخول! \n" #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114 #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143 msgid "Registration with Admin Approval" msgstr "التسجيل باستخدام موافقة المشرف" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7 msgid "Available Tags" msgstr "الوسوم المتاحة" #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91 #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170 msgid "User Meta" msgstr "ميتا المستخدم" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21 msgid "Site Url" msgstr "رابط الموقع" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22 msgid "Site Name" msgstr "اسم الموقع" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25 #: profile-builder-2.0/modules/user-listing/userlisting.php:158 msgid "User Id" msgstr "معرف المستخدم" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33 msgid "Reply To" msgstr "الرد على" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40 msgid "Activation Key" msgstr "مفتاح التفعيل" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41 msgid "Activation Url" msgstr "Url التفعيل" #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42 msgid "Activation Link" msgstr "رابط التفعيل" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" msgstr "" "\n" "

            مرحبا بك في {{site_name}}! \n" "

            اسم المستخدم هو: {{username}} وكلمة المرور: {{password}} \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85 msgid "Default Registration" msgstr "التسجيل الافتراضي" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91 msgid "" "\n" "

            To activate your user, please click the following link:
            \n" "{{{activation_link}}}

            \n" "

            After you activate, you will receive another email with your credentials.

            \n" msgstr "" "\n" "

            لتنشيط المستخدم، يرجى النقر على الرابط التالي:
            \n" "{{{activation_link}}} \n" "

            بعد التنشيط، ستتلقى رسالة بريد إلكتروني أخرى تتضمن بيانات اعتمادك. \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103 msgid "[{{site_name}}] Activate {{username}}" msgstr "[{{site_name}}] تفعيل {{username}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114 msgid "Registration with Email Confirmation" msgstr "التسجيل مع تأكيد البريد الإلكتروني" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120 msgid "" "\n" "

            Welcome to {{site_name}}!

            \n" "

            Your username is:{{username}} and password:{{password}}

            \n" "

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            \n" msgstr "" "\n" "

            مرحبا بك في {{site_name}}! \n" "

            اسم المستخدم هو: {{username}} وكلمة المرور: {{password}} \n" "

            قبل أن تتمكن من الدخول إلى حسابك، يجب على المشرف الموافقة عليه. سيتم إعلامك عبر البريد الإلكتروني. \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132 msgid "A new account has been created for you on {{site_name}}" msgstr "تم إنشاء حساب جديد لك على {{site_name}}" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148 msgid "" "\n" "

            Good News!

            \n" "

            An administrator has just approved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            أخبار جيدة! \n" "

            وافق المشرف على حسابك: {{username}} على {{site_name}}. \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159 msgid "Your account on {{site_name}} has been approved!" msgstr "تمت الموافقة على حسابك في {{site_name}}!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170 msgid "User Approval Notification" msgstr "إشعار الموافقة على المستخدم" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175 msgid "" "\n" "

            Hello,

            \n" "

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            \n" msgstr "" "\n" "

            مرحبا، \n" "

            للأسف، لم قام المشرف بعدم الموافقة على حسابك: {{username}} على {{site_name}}. \n" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187 msgid "Your account on {{site_name}} has been unapproved!" msgstr "لم تتم الموافقة على حسابك في {{site_name}}!" #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198 msgid "Unapproved User Notification" msgstr "إشعار مستخدم غير موافق عليه" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12 msgid "Edit-profile Form" msgstr "استمارة تعديل الملف الشخصي" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13 #: profile-builder-2.0/modules/user-listing/userlisting.php:13 msgid "Add New" msgstr "إضافة جديد" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14 msgid "Add new Edit-profile Form" msgstr "إضافة استمارة جديدة لتعديل الملف الشخصي" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15 msgid "Edit the Edit-profile Forms" msgstr "تعديل استمارات تعديل الملف الشخصي" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16 msgid "New Edit-profile Form" msgstr "استمارة تعديل الملف الشخصي جديدة" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23 msgid "Edit-profile Forms" msgstr "استمارات تعديل الملف الشخصي" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18 msgid "View the Edit-profile Form" msgstr "عرض نموذج تعديل الملف الشخصي" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19 msgid "Search the Edit-profile Forms" msgstr "ابحث في نماذج تعديل الملف الشخصي" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20 msgid "No Edit-profile Form found" msgstr "لم يتم العثور على نموذج تعديل الملف الشخصي" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21 msgid "No Edit-profile Forms found in trash" msgstr "لم يتم العثور على نماذج تعديل الملف الشخصي في المهملات" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138 #: profile-builder-2.0/modules/user-listing/userlisting.php:2115 msgid "Shortcode" msgstr "رمز قصير" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159 #: profile-builder-2.0/modules/user-listing/userlisting.php:2136 msgid "(no title)" msgstr "(لايوجد عنوان)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178 #: profile-builder-2.0/modules/user-listing/userlisting.php:2156 msgid "The shortcode will be available after you publish this form." msgstr "سيكون الرمز القصير متاحا بعد نشر هذا النموذج." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180 #: profile-builder-2.0/modules/user-listing/userlisting.php:2158 msgid "Use this shortcode on the page you want the form to be displayed:" msgstr "استخدم هذا الرمز القصير في الصفحة التي تريد عرض النموذج عليها:" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184 #: profile-builder-2.0/modules/user-listing/userlisting.php:2162 msgid "Note: changing the form title also changes the shortcode!" msgstr "ملاحظة: يؤدي تغيير عنوان النموذج أيضا إلى تغيير الرمز القصير!!" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190 #: profile-builder-2.0/modules/user-listing/userlisting.php:2195 msgid "Form Shortcode" msgstr "شكل رمز قصير" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230 msgid "Whether to redirect the user to a specific page or not" msgstr "سواء لإعادة توجيه المستخدم إلى صفحة معينة أم لا" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Display Messages" msgstr "عرض الرسائل" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231 msgid "Allowed time to display any success messages (in seconds)" msgstr "الوقت المسموح به لعرض أية رسائل نجاح (بالثواني)" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208 msgid "Specify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.com" msgstr "حدد عنوان URL للصفحة التي سيتم إعادة توجيه المستخدمين إليها بعد تحديث ملفهم الشخصي باستخدام هذا النموذج
            استخدم التنسيق التالي: http://www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215 msgid "After Profile Update..." msgstr "بعد تعديل الملف الشخصي..." #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262 msgid "Add New Field to the List" msgstr "Add New Field to the List" #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266 msgid "Choose one of the supported fields you manage Title (Type)" msgstr "

            العنوان (نوع)
            " #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222 msgid "You need to specify the title of the form before creating it" msgstr "يجب تحديد عنوان النموذج قبل إنشائه" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12 msgid "Registration Form" msgstr "استمارة تسجيل" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14 msgid "Add new Registration Form" msgstr "إضافة استمارة تسجيل جديده" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15 msgid "Edit the Registration Forms" msgstr "تعديل نماذج التسجيل" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16 msgid "New Registration Form" msgstr "استمارة تسجيل جديده" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17 #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23 msgid "Registration Forms" msgstr "نماذج التسجيل" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18 msgid "View the Registration Form" msgstr "عرض نموذج التسجيل" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19 msgid "Search the Registration Forms" msgstr "ابحث في نماذج التسجيل" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20 msgid "No Registration Form found" msgstr "لم يتم العثور على نموذج تسجيل" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21 msgid "No Registration Forms found in trash" msgstr "لم يتم العثور على نماذج تسجيل في المهملات" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219 msgid "Default Role" msgstr "الدور الافتراضي" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Set Role" msgstr "تعيين الدور" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228 msgid "Choose what role the user will have after (s)he registered
            If not specified, defaults to the role set in the WordPress settings" msgstr "اختر الدور الذي سيحصل عليه المستخدم بعد تسجيله
            إذا لم يتم تحديده، فسيتم تعيين الإعدادات الافتراضية على الدور المحدد في إعدادات ووردبريس" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Automatically Log In" msgstr "تسجيل الدخول تلقائيا" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229 msgid "Whether to automatically log in the newly registered user or not
            Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated
            WARNING: Caching the registration form will make automatic login not work" msgstr "ما إذا كان سيتم تسجيل الدخول تلقائيا إلى المستخدم المسجل حديثا أم لا
            يعمل فقط على مواقع فردية بدون تفعيل ميزة \"موافقة المشرف\" و \"تأكيد البريد الإلكتروني\"
            تحذير: يؤدي التخزين المؤقت لنموذج التسجيل إلى عدم تسجيل الدخول التلقائي" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232 msgid "Specify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.com" msgstr "حدد عنوان Url للصفحة التي سيتم إعادة توجيه المستخدمين إليها بمجرد تسجيلهم باستخدام هذا النموذج
            استخدم التنسيق التالي: http://www.mysite.com" #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238 msgid "After Registration..." msgstr "بعد التسجيل..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1038 #: profile-builder-2.0/modules/user-listing/userlisting.php:1485 #: profile-builder-2.0/modules/user-listing/userlisting.php:1953 #: profile-builder-2.0/modules/user-listing/userlisting.php:2426 msgid "Search Users by All Fields" msgstr "البحث عن المستخدمين من قبل جميع الحقول" #: profile-builder-2.0/modules/user-listing/userlisting.php:14 msgid "Add new User Listing" msgstr "إضافة قائمة مستخدم جديدة" #: profile-builder-2.0/modules/user-listing/userlisting.php:15 msgid "Edit the User Listing" msgstr "تعديل قائمة المستخدم" #: profile-builder-2.0/modules/user-listing/userlisting.php:16 msgid "New User Listing" msgstr "قائمة مستخدم جديدة" #: profile-builder-2.0/modules/user-listing/userlisting.php:18 msgid "View the User Listing" msgstr "عرض قائمة المستخدم" #: profile-builder-2.0/modules/user-listing/userlisting.php:19 msgid "Search the User Listing" msgstr "ابحث في قائمة المستخدم" #: profile-builder-2.0/modules/user-listing/userlisting.php:20 msgid "No User Listing found" msgstr "لم يتم العثور على قائمة مستخدمين" #: profile-builder-2.0/modules/user-listing/userlisting.php:21 msgid "No User Listing found in trash" msgstr "لم يتم العثور على قائمة مستخدمين في المهملات" #: profile-builder-2.0/modules/user-listing/userlisting.php:105 msgid "Display name as" msgstr "إظهار الاسم ك" #: profile-builder-2.0/modules/user-listing/userlisting.php:150 #: profile-builder-2.0/modules/user-listing/userlisting.php:2223 msgid "Registration Date" msgstr "تاريخ التسجيل" #: profile-builder-2.0/modules/user-listing/userlisting.php:151 #: profile-builder-2.0/modules/user-listing/userlisting.php:2228 msgid "Number of Posts" msgstr "عدد المقالات" #: profile-builder-2.0/modules/user-listing/userlisting.php:155 msgid "More Info" msgstr "معلومات أكثر" #: profile-builder-2.0/modules/user-listing/userlisting.php:156 msgid "More Info Url" msgstr "مزيد من المعلومات Url" #: profile-builder-2.0/modules/user-listing/userlisting.php:157 msgid "Avatar or Gravatar" msgstr "صورة رمزية أو Gravatar" #: profile-builder-2.0/modules/user-listing/userlisting.php:196 #: profile-builder-2.0/modules/user-listing/userlisting.php:227 msgid "Extra Functions" msgstr "وظائف إضافية" #: profile-builder-2.0/modules/user-listing/userlisting.php:199 msgid "Pagination" msgstr "ترقيم الصفحات" #: profile-builder-2.0/modules/user-listing/userlisting.php:200 msgid "Search all Fields" msgstr "بحث كل الحقول" #: profile-builder-2.0/modules/user-listing/userlisting.php:229 msgid "Go Back Link" msgstr "رابط الرجوع للخلف" #: profile-builder-2.0/modules/user-listing/userlisting.php:247 msgid "All-userlisting Template" msgstr "قالب قائمة جميع المستخدمين" #: profile-builder-2.0/modules/user-listing/userlisting.php:250 msgid "Single-userlisting Template" msgstr "نموذج قائمة مستخدم واحد" #: profile-builder-2.0/modules/user-listing/userlisting.php:733 msgid "First/Lastname" msgstr "الاسم الأول/الأخير" #: profile-builder-2.0/modules/user-listing/userlisting.php:281 #: profile-builder-2.0/modules/user-listing/userlisting.php:739 msgid "Sign-up Date" msgstr "تاريخ التسجيل" #: profile-builder-2.0/modules/user-listing/userlisting.php:748 #: profile-builder-2.0/modules/user-listing/userlisting.php:2226 msgid "Display Name" msgstr "اسم العرض" #: profile-builder-2.0/modules/user-listing/userlisting.php:280 #: profile-builder-2.0/modules/user-listing/userlisting.php:757 msgid "Posts" msgstr "المقالات" #: profile-builder-2.0/modules/user-listing/userlisting.php:760 #: profile-builder-2.0/modules/user-listing/userlisting.php:2233 msgid "Aim" msgstr "Aim" #: profile-builder-2.0/modules/user-listing/userlisting.php:763 #: profile-builder-2.0/modules/user-listing/userlisting.php:2234 msgid "Yim" msgstr "Yim" #: profile-builder-2.0/modules/user-listing/userlisting.php:766 #: profile-builder-2.0/modules/user-listing/userlisting.php:2235 msgid "Jabber" msgstr "Jabber" #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "Click here to see more information about this user" msgstr "انقر هنا للاطلاع على مزيد من المعلومات حول هذا المستخدم." #: profile-builder-2.0/modules/user-listing/userlisting.php:1290 msgid "More..." msgstr "المزيد..." #: profile-builder-2.0/modules/user-listing/userlisting.php:1293 msgid "Click here to see more information about this user." msgstr "انقر هنا للاطلاع على مزيد من المعلومات حول هذا المستخدم." #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 #: profile-builder-2.0/modules/user-listing/userlisting.php:1442 msgid "Click here to go back" msgstr "اضغط هنا للرجوع للخلف" #: profile-builder-2.0/modules/user-listing/userlisting.php:1439 msgid "Back" msgstr "رجوع" #: profile-builder-2.0/modules/user-listing/userlisting.php:1472 msgid "«« First" msgstr "«« الأول" #: profile-builder-2.0/modules/user-listing/userlisting.php:1473 msgid "« Prev" msgstr "« السابق" #: profile-builder-2.0/modules/user-listing/userlisting.php:1474 msgid "Next » " msgstr "التالي » " #: profile-builder-2.0/modules/user-listing/userlisting.php:1475 msgid "Last »»" msgstr "آخر »»" #: profile-builder-2.0/modules/user-listing/userlisting.php:1504 msgid "You don't have any pagination settings on this userlisting!" msgstr "ليس لديك أي إعدادات ترقيم صفحات في قائمة المستخدمين!" #: profile-builder-2.0/modules/user-listing/userlisting.php:1970 msgid "Search" msgstr "بحث" #: profile-builder-2.0/modules/user-listing/userlisting.php:1971 msgid "Clear Results" msgstr "حذف النتائج" #: profile-builder-2.0/modules/user-listing/userlisting.php:2165 #: profile-builder-2.0/modules/user-listing/userlisting.php:2169 msgid "Extra shortcode parameters" msgstr "معلمات اختصارات إضافية" #: profile-builder-2.0/modules/user-listing/userlisting.php:2172 msgid "displays users having a certain meta-value within a certain (extra) meta-field" msgstr "يعرض المستخدمين الذين لديهم قيمة وصفية معينة ضمن حقل ميتا (إضافي) معين" #: profile-builder-2.0/modules/user-listing/userlisting.php:2173 msgid "Example:" msgstr "مثال:" #: profile-builder-2.0/modules/user-listing/userlisting.php:2175 msgid "Remember though, that the field-value combination must exist in the database." msgstr "تذكر, أن مزيج قيمة الحقل يجب أن تكون موجودة في قاعدة البيانات." #: profile-builder-2.0/modules/user-listing/userlisting.php:2250 msgid "Random (very slow on large databases > 10K user)" msgstr "عشوائي (بطيء جدا على قواعد البيانات الكبيرة> 10 آلاف مستخدم)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Roles to Display" msgstr "الأدوار التي يتم عرضها" #: profile-builder-2.0/modules/user-listing/userlisting.php:2262 msgid "Restrict the userlisting to these selected roles only
            If not specified, defaults to all existing roles" msgstr "قصر قائمة المستخدمين على هذه الأدوار المحددة فقط
            إذا لم يتم تحديدها، فسيكون افتراضيا لجميع الأدوار الحالية" #: profile-builder-2.0/modules/user-listing/userlisting.php:2263 msgid "Number of Users/Page" msgstr "عدد المستخدمين / الصفحة" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Default Sorting Criteria" msgstr "معايير الفرز الإفتراضية" #: profile-builder-2.0/modules/user-listing/userlisting.php:2264 msgid "Set the default sorting criteria
            This can temporarily be changed for each new session" msgstr "تعيين معايير الفرز الافتراضية
            يمكن تغيير هذا مؤقتا لكل جلسة جديدة" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Default Sorting Order" msgstr "ترتيب الفرز الإفتراضي" #: profile-builder-2.0/modules/user-listing/userlisting.php:2265 msgid "Set the default sorting order
            This can temporarily be changed for each new session" msgstr "تعيين ترتيب الفرز الافتراضي
            يمكن تغيير هذا مؤقتا لكل جلسة جديدة" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Avatar Size (All-userlisting)" msgstr "حجم الصورة الرمزية (كل المستخدمين)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2266 msgid "Set the avatar size on the all-userlisting only" msgstr "تعيين حجم الصورة الرمزية على جميع-المستخدمين فقط" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Avatar Size (Single-userlisting)" msgstr "حجم الصورة الرمزية (قائمة مستخدم واحد)" #: profile-builder-2.0/modules/user-listing/userlisting.php:2267 msgid "Set the avatar size on the single-userlisting only" msgstr "اضبط حجم الصورة الرمزية على قائمة المستخدمين الفردية فقط" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "Visible only to logged in users?" msgstr "مرئية فقط للمستخدمين الذين سجلوا دخولهم؟" #: profile-builder-2.0/modules/user-listing/userlisting.php:2268 msgid "The userlisting will only be visible only to the logged in users" msgstr "لن تكون قائمة المستخدمين مرئية إلا للمستخدمين المسجلين دخولهم" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "Visible to following Roles" msgstr "مرئية للأدوار التالية" #: profile-builder-2.0/modules/user-listing/userlisting.php:2269 msgid "The userlisting will only be visible to the following roles" msgstr "لن تكون قائمة المستخدمين مرئية إلا للأدوار التالية" #: profile-builder-2.0/modules/user-listing/userlisting.php:2275 msgid "Userlisting Settings" msgstr "إعدادات قائمة المستخدم" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!" msgstr "تحتاج إلى تفعيل ميزة عرض المستخدمين من داخل \"وحدات\" علامة التبويب!" #: profile-builder-2.0/modules/user-listing/userlisting.php:2402 msgid "You can find it in the Profile Builder menu." msgstr "بإمكانك إيجادها في قائمة Profile Builder" #: profile-builder-2.0/modules/user-listing/userlisting.php:2565 msgid "No results found!" msgstr "لاتوجد نتائج!"translation/profile-builder-ru_RU.mo000066600000332124152141651170013571 0ustar00l::l:y*;c;<c<A=B>]?C @N@;@ AKACiA[A B%B?B^B"~B+BEB1C ECeOC CC C CC2D 9D-DDOrD D DDD!EEdE>WF5FYFG&GRnGcG!%H7GH'HHBIFI]UIUI JJ%J4JDJSJ ZJ dJnJvJJJJJJJ!K#;K_KpKxKKKKK*K KL L "L/LGLZL#pLL$LLL LM M M(MFM_M{ML NDXNNN9N O?OAYO*OOOO OOOP P PP&P0,P ]P gPqP3yPPPPP PQ "Q CQQQ dQoQtQ|Q QQQGQkQ^RiROSWS_SfSlStS{SSS!SSSS S TT2TITPT YT fTsT{TTqTTU UU'U@U,EUrU{UU7U3U'U7VSVKV #W-W >WLW2bW3W5W W XX&X .X0;X lX zXX X XXUXUYjYrYYYYY)YYY7Y Z +Z 6ZAZIZYZnZ}ZZZ;Z ZZ[ -[;[L[h[|[[[[ [[[ \&\ .\ 9\E\N\ _\l\|\A\\\ ]/']0W]]]/].]1]1^:^ M^Z^x^^^ ^^7_?_ D_Q_m______ _s_Y` _`m`` ``!```O`?Kaa$bebWAcccccbc'd 0d=dLd[d>kddd drdWe]e nezeee ee ee?e'f6f=f BfPfaf3}f ffffffg gg"g@g FgPg agng ugg gg ggg ggg!gIg8h=h FhPhdhlhohwh8iiii ii j j"j :jGjYj^jcj kjwj~j jjjjjjj jjfklkuk|k kkkk kkkkkkk k k k5l>lFlVlnllll0mMm2Tmmm mm m m~mSnZncnlnqnwn nn n n nnnn no o*o>oWoro)ooooo o oo o p pp$p ,p7pSp_oppppppp q qq1qGq XqCdq q qqqqqqq$qr$:r_rurrrrr rrr#r4spOssss=s((tQtYtltut t tt t3ttu u!u(u9uBuKu&duuuu.uvwvv vvv8v3v^w&~ww,w,w8x%Wx}xxx!x#xy'y.y7yFyLybyy yy y0yyyz*z*Bz mz {zz)zzzz { {{4{F{X{ k{${M{{|||5|>| V| `|k| z||j| }}}},} 4}>}E}L} ]}j} } }} }} }} }~ ~ ~7(~`~g~~~~~ ~~ ~ 5%:[5^+Iр!ځ/2"YUVV] ]Tq ( Ʉ ք   )2;DT\Q507 , * 6BHчj Ux6k 7̋6<E \f my )!# /.ǍI7@3x2)ߎ" (,@ULO3/R:&r%r&:;60*-<Jp@;92u (ɔ*45RD`͕[.Z/3J;^.ɗ#2 <>{˜[O3-5!&. 4@T\ cpӜלޜ - <$JovEA&AW_r  מ9 W e o{џDS3$ߠ )9A I S ^ hr#zԡ 1CHFP$Iˢ69?XyҤxd^fo֦ߦ)G#_<bK#,o("Ũ"y 2G>z;G2=+p%+«*8UKn<K;Cr+KhjeӮ'9)a02&,+C o?@а!#6%Z+˱ޱ).@@:N 0BG ڳ &!Hմ 9JWڹh/MziM2QjBOM4__fBS_ * 4(]?y~8Mcr9V&hAe]{y#BafDm { K+ 9T!r6+QT}GE/`36;%7] t39>U.n8 C[3u#&@95Vo5#& 7!D?fAT\=OBO/y%]d}G*;J["r s{>'L;RT!] #%A];3 D Q%^ 5( 6TgN:+#>b|Q`oA =S~p*!@'b:\q fs#AK+g?r ;I P [rh .8Eg*,006g"?=\*1P=H3:H>O(g$@ +%@!f$$n+AEmBGE>d`i{1!*5L#tZk!SFDE088-<Q#<CE80 F(3 /T$ + B S d u / !? +a 5 - p Db ) #   5 Q8^\q3+X"m{: 4A%Pv*L .9)N1x %4N ]>j1@S!d~.+ CJP"'/B:_  2AP_r&   #?Pa p}  s dq67  i3 @$%6 MZo1     j!#r!%!!!!! "%"C"U"f"X}"3"/ #9:#Mt#####$$4$C$a$v$$$$?$<%B%1&!@&%b&& & &&&C&6.'4e'''8(V(k( (( ((L(^(?^)Q)=)O.*8~*#***+6#+Z+.m+I++),G, ,,n--3.F.9a.&.#.9.! /IB// ///$//0A0[Y0)0>0'1NF1)1`1 3+3@3Q3q3w3n4`.5^5b5Q6q6bG7:7%7) 8-582c88888889(99b9 z999/*:+Z: :a:\ ;f;;;G;%;0"<HS<&<<G<!$=+F=+r=O=_=N>>!>?!3?U?Rp??"?+@*1@%\@@'yAA A%AA!AB%B4BPB!pBBB#B/B CC%5C#[CC'C'CMC 2D@?D%DAD4D4EREpEEE2E|E_cFiF-G2G$I6I_JOK`KoKyK{ LL>MM1N'O P2PP QQ"1QsTQQ!QRCR[RqRRRRR%RSSTbHUrUVM'VuVVVV%WXZZ[jm\\^^ _6_lP___+_ `%`*6`a`v`` ````%` a(aE9a>aQaNbI_ccmcdedY7eBe:e>fqNfmfp.g8g7gEh:Vh&hhS:iFikiuAjj\kP'l>xlalymml nbnLnL=oZoiojOpwp2qqrXs t:t!tuRuIuI3v}vwEw(w" x-xAx<:yw{%}b?~v~ $ 5 B"O r5' %3Y_nQ: Ed1m"ՁL3Q҃?+0\)z#!Ȅ#Q%`4,97"FZ6'؆'<(!eUL Z 9 7EF}sĊ8AOȋڋIIi<:+k@7 xG?w9Dԕ 1 <IPFVP!prǙBP̚Z[xԛu v~Qb9M\S=85v,٢km٣;8Ѧ˧FŨO T\Yc ;o??+<K&^R7ج)<:7w]­I 5jyq#cU ݰ Fα(@F3@!:

            Good News!

            An administrator has just approved your account: {{username}} on {{site_name}}.

            Hello,

            Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Welcome to {{site_name}}!

            Your username is:{{username}} and password:{{password}}

            Before you can access your account, an administrator needs to approve it. You will be notified via email.

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            New subscriber on {{site_name}}.

            Username:{{username}}

            E-mail:{{user_email}}

            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!

            Someone requested that the password be reset for the following account: {{site_name}}
            Username: {{username}}

            If this was a mistake, just ignore this email and nothing will happen.

            To reset your password, visit the following address:
            {{{reset_link}}}

            To activate your user, please click the following link:
            {{{activation_link}}}

            After you activate, you will receive another email with your credentials.

            You have successfully reset your password to: {{password}}

            {{username}} has requested a password change via the password reset feature.

            His/her new password is: {{password}}

            * only available in the %1$sHobbyist and Pro versions%2$s. Serial Number: Your serial number is about to expire, please %1$s Renew Your License%2$s. Your serial number is expired, please %1$s Renew Your License%2$s. is also activated. You need to deactivate it before activating this version of the plugin."Admin Approval" Activated:"Admin Approval" Feature:"Admin Approval" on User Role:"Email Confirmation" Activated:"Email Confirmation" Landing Page:"Email" - users can Log In only with Email."Username and Email" - users can Log In with both Username and Email."Username" - users can Log In only with Username.%1$s %2$d%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s%1$s of %2$s%s couldn't be deleted%s pending« Prev«« First(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(no title)** only available in the %1$sPro version%2$s.. Extra Field Types are available in
            Hobbyist or PRO versions.... Choose...Choose1 item

            Your Profile Builder serial number is invalid or missing.
            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

            Redirect
            URL
            Title (Type)
            Title
            Type
            Meta Name
            Required
            User ID / Username
            Redirect
            URL
            User Role
            Redirect
            URL
            Note: changing the form title also changes the shortcode!ERROR: The password must have a minimum strength of %sERROR: The password must have the minimum length of %s charactersERROR: Your account has to be confirmed by an administrator before you can log in.Profile Builder A new account has been created for you on {{site_name}}A new subscriber has (been) registered!A unique, auto-generated ID for this particular field
            You can use this in conjuction with filters to target this element if needed
            Can't be editedAIMAbout YourselfAccept user payments, create subscription plans and restrict content on your membership site.Accept user payments, create subscription plans and restrict content on your website.Account ManagementActivateActivation KeyActivation LinkActivation UrlActiveAdd EntryAdd FieldAdd NewAdd New Field to the ListAdd UserAdd new Edit-profile FormAdd new Registration FormAdd new User ListingAdd-On has been activatedAdd-On has been deactivated.Add-On is activeAdd-On is inactiveAdd-On is ActiveAdd-OnsAddressAdmin ApprovalAdmin Approval (*)Admin Bar SettingsAdmin Email CustomizerAdmin Notification for User Password ResetAfghanistanAfter Edit ProfileAfter LoginAfter LogoutAfter Profile Update...After RegistrationAfter Registration...After Successful Email ConfirmationAfter Successful Password ResetAfter login redirect URL (optional):Agree To Terms CheckboxAimAland IslandsAlbaniaAlgeriaAll UsersAll users have been successfully deletedAll-userlisting TemplateAllow Users to Log in With:Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.Allow users to log in with their email or username when accessing your site.Allow users to recover their password in the front-end using the %s.Allowed Image ExtensionsAllowed Upload ExtensionsAllowed time to display any success messages (in seconds)American SamoaAn administrator has just approved your account on %1$s (%2$s).An administrator has just unapproved your account on %1$s (%2$s).An error occurred, please try again later.AndorraAngolaAnguillaAntarcticaAntigua and BarbudaApplyApproveApprovedArgentinaArmeniaArubaAs an administrator you cannot change your role.AscendingAustraliaAustriaAuthor Archive ( http://sitename.com/author/admin )Automatically Log InAvailable TagsAvailable tags for dynamic URLsAvatarAvatar SizeAvatar Size (All-userlisting)Avatar Size (Single-userlisting)Avatar UploadAvatar or GravatarAzerbaijanBackBahamasBahrainBangladeshBarbadosBasic InformationBeautiful registration forms fully customizable using the %s shortcode.Before you can access your account %1s, an administrator has to approve it. You will be notified via email.Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.Before you can access your account, an administrator needs to approve it. You will be notified via email.BelarusBelgiumBelizeBeninBermudaBhutanBilling AddressBiographical InfoBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBoth fields are empty.BotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBritish Virgin IslandsBruneiBulgariaBulk ActionsBurkina FasoBurundiCambodiaCameroonCan contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}CanadaCancelCape VerdeCayman IslandsCentral African RepublicChadCheck your e-mail for the confirmation link.CheckboxChileChinaChoose Edit Profile form to display on My Account page:Choose Register form to display on My Account page:Choose one of the supported field typesChoose one of the supported fields you manage install manually.Could not install plugin. Retry or install manually.CountryCountry SelectCroatiaCubaCuracaoCustom RedirectsCustomize Your Forms The Way You Want (*)CyprusCzech RepublicDashboard (redirect users from accessing the dashboard)Date-formatDatepickerDeactivateDefaultDefault ContentDefault Edit ProfileDefault OptionDefault Option(s)Default RegisterDefault RegistrationDefault Registration & Registration with Email ConfirmationDefault RoleDefault Sorting CriteriaDefault Sorting OrderDefault ValueDefault WP LoginDefault WP Recover PasswordDefault WP RegisterDefault option of the fieldDefault value of the fieldDefault value of the textareaDeleteDelete allDelete all itemsDelete this itemDemocratic Republic of the CongoDenmarkDescendingDescriptionDisabledDisplay MessagesDisplay NameDisplay name asDisplay name publicly asDisplay name publicly as - only appears on the Edit Profile page!Display on PB formsDisplay on WooCommerce CheckoutDisplay on default WP formsDisplays customer billing fields in front-end. Displays customer shipping fields in front-end. DjiboutiDo you want toDo you want to bulk approve the selected users?Do you want to bulk delete the selected users?Do you want to bulk unapprove the selected users?DominicaDominican RepublicDownload NowDownloading and installing...E-mailERRORERROR:East TimorEasy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings.EcuadorEditEdit ProfileEdit the Edit-profile FormsEdit the Registration FormsEdit the User ListingEdit this itemEdit-profile FormEdit-profile FormsEgyptEl SalvadorEliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.EmailEmail AddressEmail ConfirmationEmail CustomizerEmail SubjectEmail TemplatesEmail notification resent to userEnable extra featuresEnable your modulesEnter a (detailed) description of the option for end users to read
            OptionalEnter a comma separated list of labels
            Visible for the userEnter a comma separated list of values
            This can be anything, as it is hidden from the user, but should not contain special characters or apostrophesEnter a detailed description of the temrs of agreement for the user to read.
            Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>Enter a value (between 20 and 200) for the size of the 'Avatar'
            If not specified, defaults to 100Enter the minimum characters the password should have. Leave empty for no minimum limitEquatorial GuineaEritreaEstoniaEthiopiaEverything you will need to manage your users is probably already available using the Pro Modules.Example:Excerpt ViewExisting PagesExtra FeaturesExtra FunctionsExtra Profile Fields are available in Hobbyist or PRO versionsExtra shortcode parametersFalkland IslandsFaroe IslandsFeatures that give you more control over your users, increased security and help you fight user registration spam.FieldField PropertiesField TitleFijiFind out more about PRO ModulesFinlandFirst NameFirst/LastnameFirstnameFor Modern User InteractionFor security reasons, you must pass the remote ip to reCAPTCHA!Form ShortcodeFranceFreeFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriction-less login using %s shortcode or a widget.From (name)From (reply-to email)GabonGambiaGeneral SettingsGeneric UploadsGeorgiaGermanyGet New PasswordGet started with extra fieldsGhanaGibraltarGlobal RedirectsGo Back LinkGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard Island and McDonald IslandsHere you can activate / deactivate available modules for Profile Builder.HideHondurasHong KongHow does this work?HungaryIDIcelandIf you enjoy using %1$s please rate us on WordPress.org. More happy users means more features, less bugs and better support for everyone. If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.InactiveIndiaIndividual User RedirectsIndonesiaInput / Hidden InputInstall NowInstallation completeInvalid activation key!Invalid key!Invalid username.IranIraqIrelandIsle of ManIsraelItalyIvory CoastJabberJabber / Google TalkJamaicaJapanJerseyJordanKazakhstanKeep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.KenyaKiribatiKosovoKuwaitKyrgyzstanLabelsLaosLast »»Last NameLastnameLatviaLebanonLesothoLiberiaLibyaLiechtensteinList ViewLithuaniaLoad Profile Builder's own CSS file in the front-end:Log outLog out »Log out of this accountLog out of this account.LoginLogin ( wp_login.php )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 )Login with Email or UsernameLogoutLost Password ( wp-login.php?action=lostpassword )Lost your passwordLost your password?LuxembourgMacaoMacedoniaMadagascarMake sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.MalawiMalaysiaMaldivesMaliMaltaManage Default and Extra FieldsManage FieldsMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMediumMember ManagementMeta-nameMexicoMicronesiaMinimum Password Length and Strength MeterMinimum Password Length:Minimum Password Strength:Minimum length of %d charactersMinimum required Profile Builder version:ModulesMoldovaMonacoMongoliaMontenegroMontserratMoreMore DetailsMore InfoMore Info UrlMore...MoroccoMozambiqueMultiple Edit-profile FormsMultiple Registration FormsMust be a valid email address or the tag {{reply_to}} which defaults to the administrator emailMyanmarNameName/DescriptionNamibiaNauruNepalNetherlandsNew CaledoniaNew Edit-profile FormNew Registration FormNew User ListingNew ZealandNew subscriber on %1$s.

            Username:%2$s
            E-mail:%3$s
            Next » NicaraguaNicknameNigerNigeriaNiueNoNo Edit-profile Form foundNo Edit-profile Forms found in trashNo Registration Form foundNo Registration Forms found in trashNo User Listing foundNo User Listing found in trashNo items found.No results found!NoneNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayNot compatible with Profile BuilderNot compatible with your version of Profile Builder.Now that you acquired a copy of %s, you should take the time and register it with the serial number you receivedNumber of PostsNumber of Users/PageOmanOnly administrators can see this field on edit profile forms.Only an administrator can add new users.OptionsOverwrite ExistingPB LoginPB Recover PasswordPB RegisterPaginationPaid & Free SubscriptionsPaid AccountsPaid Member Subscriptions - a free WordPress pluginPakistanPalauPalestinian TerritoryPanamaPapua New GuineaParaguayPasswordPassword Lost and Found.Password Recovery page URL (optional):Password Reset EmailPassword Reset Success EmailPassword Reset from "%1$s"Password Successfully Reset for %1$s on "%2$s"Payment ManagementPersonalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.PeruPhilippinesPhonePitcairnPlease check that you entered the correct email address.Please check that you entered the correct username.Please choose a different field type as this one already exists in your form (must be unique) Please enter a (valid) reCAPTCHA valuePlease enter a valid username.Please enter a value for the required field Please enter your username or email address.Please select and enter the ID or username of your user.Please select at least one user role Please try a different one!Plugin has been activatedPlugin has been deactivated.Plugin is activePlugin is inactivePlugin is ActivePolandPortugalPostcode / ZipPostsPowerful Modules (**)Profile Builder Login WidgetProfile Builder RegisterPuerto RicoQatarRadio ButtonsRandom (very slow on large databases > 10K user)Recommended PluginsRecover PasswordRedirectRedirect Default WordPress Forms and PagesRedirect Default WordPress forms and pagesRedirect TypeRedirect URLRegisterRegister ( wp-login.php?action=register )Register VersionRegister Your VersionRegister page URL (optional):RegisteredRegistrationRegistration & Edit ProfileRegistration DateRegistration FormRegistration FormsRegistration with Admin ApprovalRegistration with Email ConfirmationRemember though, that the field-value combination must exist in the database.RemoveRepeat PasswordReply ToRepublic of the CongoRequiredResend Activation EmailReset KeyReset LinkReset PasswordReset UrlRestrict ContentRestrict the userlisting to these selected roles only
            If not specified, defaults to all existing rolesRetry InstallReunionRoleRoles to DisplayRomaniaRow CountRussiaRwandaSaint BarthelemySaint HelenaSaint Kitts and NevisSaint LuciaSaint MartinSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSaudi ArabiaSaveSave ChangesSave SettingsSave the user role order from the user roles checkboxesSearchSearch Users by All FieldsSearch all FieldsSearch the Edit-profile FormsSearch the Registration FormsSearch the User ListingSecret KeySelectSelect AllSelect FileSelect a user role.Select on what user roles to activate Admin Approval.Select on which Profile Builder forms to display reCAPTCHASelect on which default WP forms to display reCAPTCHASelect which Profile Builder Edit-profile form to display on My Account page from WooCommerce.Select which Profile Builder Register form to display on My Account page from WooCommerce.
            This will also add the Profile Builder Login form to MyAccount page.Select which user roles to show to the user ( drag and drop to re-order )Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name
            Use this at your own riskSend these credentials via email.SenegalSerbiaSet RoleSet the avatar size on the all-userlisting onlySet the avatar size on the single-userlisting onlySet the default sorting criteria
            This can temporarily be changed for each new sessionSet the default sorting order
            This can temporarily be changed for each new sessionSet the number of users to be displayed on every paginated part of the all-userlistingSet up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.SeychellesShare a little biographical information to fill out your profile. This may be shown publicly.Ship to a different address?Shipping AddressShortcodeShowShow all datesShow/Hide the Admin Bar on the Front-EndSierra LeoneSign-up DateSingaporeSingle-userlisting TemplateSint MaartenSite KeySite NameSite UrlSlovakiaSloveniaSolomon IslandsSomaliaSomeone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$sSomething went wrong, we could not connect to the server. Please try again later.Sorry, but you don't have permission to do that!Sorry, you cannot upload this file type for this field.South AfricaSouth Georgia and the South Sandwich IslandsSouth KoreaSouth SudanSpainSpecify the URL of the page users will be redirected once registered using this form
            Use the following format: http://www.mysite.comSpecify the URL of the page users will be redirected once they updated their profile using this form
            Use the following format: http://www.mysite.comSpecify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to all WordPress allowed file extensions (.*)Specify the extension(s) you want to limit to upload
            Example: .ext1,.ext2,.ext3
            If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)Specify the number of rows for a 'Textarea' field
            If not specified, defaults to 5Specify the option which should be checked by default
            If there are multiple values, separate them with a ',' (comma)Specify the option which should be selected by defaultSpecify 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.Sri LankaState / CountyStatusStep by Step Quick SetupStraight forward edit profile forms using %s shortcode.Strength indicatorStrongSubscription ManagementSudanSurinameSvalbard and Jan MayenSwazilandSwedenSwitzerlandSyriaTaiwanTajikistanTanzaniaTerms of AgreementTextareaThailandThat field is already added in this form That meta-name is already in use That username is already activated!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!The account %1s has been successfully created!The best way to add front-end registration, edit profile and login forms.The email address entered wasn't found in the database!The email you entered is not a valid email address.The entered avatar size is not between 20 and 200 The entered avatar size is not numerical The entered passwords don't match!The entered row number is not numerical The entered value for the Datepicker is not a valid date-format The following option did not coincide with the ones in the options list: %s The following option(s) did not coincide with the ones in the options list: %s The meta-name cannot be empty The password must have a minimum strength of %sThe password must have the minimum length of %s charactersThe password you entered is incorrect.The passwords do not matchThe secret key from Google, www.google.com/recaptchaThe selected user couldn't be deletedThe selected users have been activatedThe selected users have had their activation emails resentThe serial number couldn't be validated because it expired!The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!The serial number entered couldn't be validated!The serial number is about to expire soon!The serial number was successfully validated!The shortcode will be available after you publish this form.The site key from Google, www.google.com/recaptchaThe userlisting will only be visible only to the logged in usersThe userlisting will only be visible to the following rolesThe username entered wasn't found in the database!The usernames cannot be changed.There was an error in the submitted formThere was an error performing that action!There was an error while trying to activate the userThere was an error while trying to activate the user.There was an error while trying to send the activation link to %1$s!These redirects happen after a successful action, like registration or after a successful login.These settings are also replicated in the "Admin Email Customizer" settings-page upon save.These settings are also replicated in the "User Email Customizer" settings-page upon save.This email is already in use.This email is already reserved to be used soon.This field is requiredThis form is empty.This login widget lets you add a login form in the sidebar.This message is only visible by administratorsThis username already exists.This username is already activated!This username is already reserved to be used soon.This username is invalid because it uses illegal characters.This username is now active!Timezone SelectTitle of the fieldTitle:To activate your user, please click the following link:

            %s%s%s

            After you activate it you will receive yet *another email* with your login.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$sTo allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$sTo create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s.To use reCAPTCHA you must get an API key fromTo use reCAPTCHA you must get an API public key from:TogoTokelauTongaTown / CityTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluType your password again. Type your password.U.S. Virgin IslandsURLUgandaUkraineUnapproveUnapprovedUnapproved User NotificationUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUpdateUpgrade Profile BuilderUpload UruguayUse these shortcodes on the pages you want the forms to be displayed:Use this shortcode on the page you want the form to be displayed:User Approval NotificationUser Email CustomizerUser IDUser ID / UsernameUser ID or UsernameUser IdUser ListingUser MetaUser NicenameUser RoleUser Role based RedirectsUser RolesUser Roles OrderUser not foundUser successfully approved!User successfully deleted!User successfully unapproved!User to edit:User-RoleUser-statusUserlisting SettingsUsernameUsername and EmailUsername or E-mailUsername or EmailUsernames cannot be changed.Users can register themselves or you can manually create users here.Users cannot currently register themselves, but you can manually create users here.Users successfully approved!Users successfully deleted!Users successfully unapproved!Users with Unconfirmed Email AddressUzbekistanValid tags {{reply_to}} and {{site_name}}VanuatuVaticanVenezuelaVersion %sVery WeakVery weakVietnamView all extra shortcode parametersView the Edit-profile FormView the Registration FormView the User ListingVisibilityVisible only to logged in users?Visible to following RolesWallis and FutunaWeakWebsiteWelcome to %1$s!


            Your username is:%2$s and password:%3$sWestern SaharaWhether the field is required or notWhether the field should be added to the WooCommerce checkout form or notWhether to automatically log in the newly registered user or not
            Only works on single-sites without "Admin Approval" and "Email Confirmation" features activated
            WARNING: Caching the registration form will make automatic login not workWhether to redirect the user to a specific page or notWhich redirect happens depends on the following priority:With Extra Profile Fields you can create the exact registration form your project needs.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.With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts.With these you can redirect various WordPress forms and pages to pages created with profile builder.WooCommerce SyncWooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!Yahoo IMYemenYesYimYou are currently logged in as %1$s. %2$sYou are currently logged in as %1s. You don't need another account. %2sYou are currently logged in as %s. You can add the information for the %s after you add a entryYou can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.You can find it in the Profile Builder menu.You can find the default file here: %1$sYou can't add duplicate redirects!You cannot register this user roleYou decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.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.You do not have permission to view this user list.You do not have the required user role to view this user list.You don't have any pagination settings on this userlisting!You either don't have permission for that action or there was an error!You have successfully reset your password to: %1$sYou must be logged in to edit your profile.You must enter a valid email address.You must enter a value for the date-format You must enter a value for the row number You must enter the secret key You must enter the site key You must select a field You need to activate the Userlisting feature from within the "Modules" tab!You need to specify the title of the form before creating itYou use the following tags in your URLs to redirect users to various pages.You will receive a link to create a new password via email.You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$sYour account has been successfully created!Your account has to be confirmed by an administrator before you can log in.Your account has to be confirmed by an administrator before you can use the "Password Recovery" feature.Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.Your account on %1$s has been approved!Your account on %1$s has been unapproved!Your account on {{site_name}} has been approved!Your account on {{site_name}} has been unapproved!Your email was successfully confirmed.Your password has been successfully changed!Your profile has been successfully updated!Your selected password at signupYour session has expired! Please refresh the page and try againYour session has expired! Please refresh the page and try again.ZambiaZimbabwe[%1$s] Activate %2$s[%1$s] Your new account information[{{site_name}}] Activate {{username}}[{{site_name}}] Password Reset[{{site_name}}] Password Reset Successfullyapprove this user?approvedconfirm this email yourself?delete this user from the _signups table?delete this user?displays all users except the ones you specified the user_id fordisplays only the users that you specified the user_id fordisplays users having a certain meta-value within a certain (extra) meta-fieldemailgenerates a url of the current website homepage.herein WordPress the site url can be different then the home urlreCAPTCHArequiredresend the activation link?showthe ID of the userthe URL of the previously visited pagethe URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces.unapprove this user?unapprovedusernameusername or emailPO-Revision-Date: 2016-04-18 14:37:34+0000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); X-Generator: GlotPress/0.1 Project-Id-Version: Profile Builder

            Поздравляем!

            Администратор только что утвердил вашу учётную запись: {{username}} на {{site_name}}.

            Здравствуйте,

            К сожалению администратор не утвердил вашу учётную запись: {{username}} на {{site_name}}.

            Добро пожаловать на {{site_name}}!

            Ваше имя пользователя:{{username}} и пароль:{{password}}

            Добро пожаловать на {{site_name}}!

            Ваше имя пользователя:{{username}} и пароль:{{password}}

            Прежде чем вы сможете войти в свой аккаунт, администратор должен его одобрить. Вы будете уведомлены по электронной почте.

            Новый подписчик от {{site_name}}.

            Имя пользователя:{{username}}

            Электронная почта:{{user_email}}

            Новый подписчик от {{site_name}}.

            Имя пользователя:{{username}}

            Электронная почта:{{user_email}}

            Функция одобрения администратором был активирована на момент регистрации, поэтому, пожалуйста, помните, что вы должны утвердить этого пользователя, прежде чем он/она может войти!

            Кто-то запросил пароль для сброса аккаунта: {{site_name}}
            Имя пользователя: {{username}}

            Если это была ошибка, не отвечайте на это письмо.

            Чтобы сбросить пароль, перейдите по ссылке:
            {{{reset_link}}}

            Для активации вашего пользователя, пожалуйста нажмите на следующую ссылку:
            {{{activation_link}}}

            После активации, вы получите еще одно письмо с учетными данными.

            Вы успешно сменили пароль на: {{password}}

            {{username}} запросил смену пароля.

            Его.её новый пароль: {{password}}

            * доступно только в %1$sHobbyist и Pro версиях%2$s.Серийный номер:Ваш серийный номер подходит к концу, пожалуйста,%1$s продлить лицензию%2$s.Серийный номер истек, пожалуйста,%1$s продлить лицензию%2$s.активирован. Вы должны деактивировать его, прежде чем активировать эту версию плагина."Одобрение администратором" активировано:"Одобрение администратором" особенность:"Одобрение администратором" в ролях пользователей:"Подтверждение по электронной почте" активировано:Целевая страница "подтверждения по электронной почте":"Email" - пользователи могут Войти только по Email."Логин и Email" - пользователи могут войти и с именем пользователя, и с Email."Логин" - пользователи могут Войти только по логину.%1$s %2$d%1$s запросил изменение пароля через функцию восстановления пароля.
            Его/её новый пароль: %2$s%1$s of %2$s%s не может быть удалён%s в ожидании« Предыдущий«« Первый(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)(без названия)** доступно только в %1$sPro версии%2$s.. Дополнительные типы полей доступны в Hobbyist или PRO версиях.... Выбрать...Выберите1 пункт

            Ваш Profile Builder серийный номер недействительный или отсутствует.
            Пожалуйста %1$s зарегистрируйте вашу копию %2$s чтобы иметь возможность автоматического обновления и получения технической поддержки. Нужен лицензионный ключ? %3$s Купите прямо сейчас %4$s

            Перенаправление
            URL
            Название (тип)
            Название
            Тип
            Мета имя
            Обязательное
            ID / имя пользователя
            Перенаправление
            URL
            Роль пользователя
            Перенаправление
            URL
            Примечание: изменение названия формы также меняет шорткод!ОШИБКА: пароль должен быть не легче чем %sОШИБКА: пароль должен иметь минимальную длину %s символовОШИБКА: Ваша учётная запись должна быть подтверждена администратором, прежде чем вы сможете войти.Profile Builder Новая учетная запись была создана для вас на {{site_name}}Новый абонент (был) зарегистрирован!Уникальный, автоматически сгенерированный ID для этой конкретной области
            Вы можете использовать это в связке с фильтрами как целевой элемент, если это необходимо
            Не может быть отредактированAIMО себеПринимайте платежи пользователей, создавайте планы подписок и ограничивайте контент на вашем сайте.Принимайте платежи пользователей, создавайте планы подписок и ограничивайте содержимое на вашем сайте.Управление аккаунтамиАктивироватьКлюч активацииСсылка активацииUrl активацииАктивныйДобавить записьДобавить полеДобавить новыйДобавить новое поле в списокДобавить пользователяФорма редактирования профиля добавить новыйДобавить новую регистрационную формуДобавить новый список пользователейРасширение активированоРасширение деактивированоРасширение активноРасширение не активноРасширение активноРасширенияАдресОдобрение администраторомОдобряется администратором (*)Настройки панели администратораНастройщик электронной почты администратораПодтверждение администратором сброса пароля пользователяАфганистанПосле редактирования профиляПосле входаПосле выходаПосле обновления профиля...После регистрацииПосле регистрации...После успешного подтверждения EmailПосле успешного сброса пароляПосле входа перенаправить на адрес (опционно):Флажок согласия с условиямиAimАландские островаАлбанияАлжирВсе пользователиВсе пользователи успешно удаленыШаблон всех списков пользователейРазрешить пользователям входить в систему с:Позволяет пользователям с различными ролями редактировать свою специфическую информацию. Настройка редактора профиля нескольких форм с различными полями для разных ролей пользователей.Разрешите пользователям входить на сайт используя адрес электронной почты или имя пользователя.Разрешить пользователям восстанавливать пароль во внешнем интерфейсе, используя %s.Допустимые расширения изображенийДопустимые расширения загружаемых файловДопустимое время для отображения успешных сообщений (в секундах)Американское СамоаАдминистратор одобрил вашу учётную запись %1$s (%2$s).Администратор не утвердил вашу учётную запись %1$s (%2$s).Произошла ошибка, попробуйте позднее.АндорраАнголаАнгильяАнтарктидаАнтигуа и БарбудаПрименитьОдобреноУтвержденоАргентинаАрменияАрубаВы не можете поменять свою роль: вы являетесь администраторомПовышениеАвстралияАвстрияАрхив автора ( http://sitename.com/author/admin )Автоматический входДоступные тегиДоступные тэги для динамических адресовАватарРазмер аватараРазмер аватара (Всех списков пользователей)Размер аватара (Одного списка пользователей)Загрузка аватараAvatar или GravatarАзербайджанНазадБагамские островаБахрейнБангладешБарбадосБазовая информацияКрасивые регистрационные формы, полностью настраиваемые с помощью шорткода %s.Прежде чем вы сможете получить доступ к вашей учетной записи %1s, администратор должен утвердить его. Вы будете уведомлены по электронной почте.Прежде чем вы сможете получить доступ к вашей учетной записи %1s, необходимо подтвердить свой адрес электронной почты. Пожалуйста, проверьте свой почтовый ящик и нажмите на ссылку активации.Прежде чем вы сможете войти в свой аккаунт, администратор должен его одобрить. Вы будете уведомлены по электронной почте.БелоруссияБельгияБелизБенинБермудские островаБутанПлатёжный адресБиографияБоливияБонэйр, Синт-Эстатиус и СабаБосния и ГерцеговинаОба поля пусты.БотсванаОстров БувеБразилияБританская Территория в Индийском ОкеанеБританские Виргинские ОстроваБрунейБолгарияМассовые действияБуркина-ФасоБурундиКамбоджаКамерунМожет содержать следующие динамические тэги:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}КанадаОтменаКабо-ВердеОстрова КайманЦентральноафриканская РеспубликаЧадПроверьте вашу электронную почту на предмет письма с подтверждающей ссылкой.ФлажокЧилиКитайВыберите форму редактирования профиля для отображения на странице "Мой аккаунт":Выберите форму регистрации для отображении на странице "Мой аккаунт":Выберите один их поддерживаемых типов полейВыберите одно из поддерживаемых полей, которыми вы управляете и попробуйте установить вручную.Невозможно установить плагин. Попробуйте еще раз или установите вручную.СтранаВыбор страныХорватияКубаКюрасаоПеренаправления пользователейНастройки ваших форм как вам хочется (*)КипрЧехияКонсоль (перенаправление пользователей от доступа к консоли)Формат датыВыбор датыОтключитьПо умолчаниюСодержимое по умолчаниюРедактирование профиля по умолчаниюПараметр по умолчаниюПараметры по умолчаниюРегистрация по умолчаниюРегистрация по умолчаниюРегистрация по умолчанию и Регистрация с подтверждением по электронной почтеРанг по умолчаниюКритерий сортировки по умолчаниюПорядок сортировки по умолчаниюЗначение по умолчаниюСтандартная форма входа WPСтандартная форма восстановления пароля WPСтандартная форма регистрации WPЗначение поля по умолчаниюЗначение по умолчанию для поляЗначение текстового поля по умолчаниюУдалитьУдалить всёУдалить все элементыУдалить этот пунктДемократическая Республика КонгоДанияПонижениеОписаниеОтключеноПоказать сообщенияОтображаемое имяПоказывать имя какПоказывать имя какВаше имя отображается только на странице Изменить профиль!Отображать на формах PBОтображать на странице оплаты WooCommerceОтображать на стандартных формах WPОтображать платёжные поля покупателюОтображать поля доставки покупателюДжибутиВы хотите, чтобыВы хотите массово утвердить выбранных пользователей?Вы хотите массово удалить выбранных пользователей?Вы хотите массово не утвердить выбранных пользователей?ДоминикаДоминиканская республикаЗагрузить сейчасЗагружаем и устанавливаем...Электронная почтаОШИБКАОШИБКА:Восточный ТиморЛегко редактировать шаблоны для списка пользователей вашего сайта, а также создавать отдельные страницы пользователей. Основано на шорткодах и предлагает множество опций для настройки ваших записей.ЭквадорРедактироватьИзменить профильРедактировать формы редактирования профиляРедактирование регистрационных формРедактировать список пользователейРедактировать этот пунктФорма редактирования профиляФормы редактирования профиляЕгипетСальвадорИсключите слабые пароли вообще, установив минимальную длину пароля и соблюдение определенной силы пароля.Электронная почтаe-mailПодтверждение по электронной почтеНастройщик электронной почтыТема электронного письмаШаблоны e-mailПользователю отправлено повторное уведомление по электронной почтеВключить дополнительные возможностиВключить ваши модулиВведите (подробнее) описание опции для ознакомления пользователям
            ДополнительноВведите разделенный запятыми список меток
            видимый для пользователяВведите разделенный запятыми список значений
            Это может быть что угодно, так как он скрыт от пользователя, но не должен содержать специальные символы или апострофыСоздайте подробное описание условий соглашения для пользователей. .
            Ссылки могут быть вставлены с помощью стандартного синтаксиса HTML: <a href="custom_url">custom_text</a>Укажите значение (между 20 и 200) для размера 'Аватара'
            Если не указано, по умолчанию 100Обозначьте минимальное количество знаков, которое должен иметь пароль. Оставьте пустым чтобы не ограничивать минимальный предел.Экваториальная ГвинеяЭритреяЭстонияЭфиопияВсё что вам надо для управления вашими пользователями возможно уже доступно с помощью Проф модулей.Пример:Просмотр отрывкаСуществующие страницыДополнительные возможностиДополнительные функцииДополнительные поля в профиле доступны в Hobbyist или PRO версияхДополнительные параметры шорткодовФолклендские ОстроваФарерские островаВозможности, которые дают вам больше контроля над пользователями, повышенную безопасность и поможет вам бороться со спам-регистрациями пользователей.ПолеСвойства поляНазвание поляФилжиУзнайте больше о Проф модуляхФинляндияИмяИмя/ФамилияИмяДля современного взаимодействия с пользователемВ целях безопасности вы должны проверить удалённый ip в reCAPTCHA!Шорткод формыФранцияБесплатноГвианаФранцузская ПолинезияФранцузские Южные и Антарктические территорииФорма входа в один клик, использующая шорткод %s или виджет.От (имя)От (ответ на электронную почту)ГабонГамбияОсновные настройкиОбщие загрузкиГрузияГерманияПолучить новый парольНачните работу с дополнительными полямиГанаГибралтарГлобальные редиректыПерейти обратно по ссылкеГрецияГренландияГренадаГваделупаГуамГватемалаГернсиГвинеяГвинея-БисауГайанаГаитиОстров Херд и острова МакдональдЗдесь вы можете активировать / деактивировать доступные модули Profile Builder.СкрытьГондурасГонконгКак это работает?ВенгрияIDИсландияЕсли вам нравится использование, %1$s пожалуйста, rпоставьте нам оценку на WordPress.org. Больше счастливых пользователей - значит, больше фишек, меньше багов и лучшая поддержка для всех.Если вы зарегистрируете эту версию Profile Builder, вы будете получать информацию, касающуюся обновлений, исправлений и техническую поддержку.Не активныйИндияИндивидуальные редиректы пользователяИндонезияВвод / Скрыть вводУстановитьУстановка завершенаНеверный ключ активации!Неверный ключ!Неправильное имя пользователяИранИракИрландияОстров МэнИзраильИталияКот-д’ИвуарJabberJabber / Google TalkЯмайкаЯпонияДжерсиИорданияКазахстанДержать пользователей подальше от панели управления WordPress, перенаправив их на заданную страницу после входа или регистрации, легко - в несколько кликов мышкой.КенияКирибатиКосовоКувейтКыргызстанМеткиЛаосПоследний »»ФамилияФамилияЛатвияЛиванЛесотоЛиберияЛивияЛихтенштейнПросмотр спискаЛитваЗагрузите собственный Profile Builder's CSS файл с внешней части сайта:ВыйтиВыйти »Выйти из этой учётной записиВыйти из этой учётной записи.ВойтиЛогин ( wp_login.php )Установлен вход с использованием электронной почты. Это поле НЕ отображается на внешней части сайта (вы можете изменить эти настройки на вкладке "%s")Вход по адресу электронной почты или имени пользователяВыходЗабыли пароль ( wp-login.php?action=lostpassword )Забыли свой парольЗабыли свой пароль?ЛюксембургМакаоМакедонияМадагаскарУбедитесь, что пользователи используют реальные электронные адреса. При регистрации пользователи получают уведомление для подтверждения адреса электронной почты.МалавиМалайзияМальдивыМалиМальтаУправление полями по умолчанию и дополнительными полямиУправление полямиМаршалловы островаМартиникаМавританияМаврикийМаойттаСреднийУправление членамиМета-имяМексикаМикронезияМинимальная длина пароля и измеритель его силыМинимальная длинна пароля:Минимальная сила пароля:Минимальная длинна %d символовМинимальная необходимая версия Profile Builder:МодулиМолдавияМонакоМонголияЧерногорияМонтсерратБольшеБольше деталейПодробнееПодробнее UrlБольше...МароккоМозамбикРедактор профиля нескольких формНесколько регистрационных формДолжен быть существующий адрес электронной почты или тэг {{reply_to}} ведущий по-умолчанию на адрес электронной почты администратораМьянмаИмя пользователяНазвание / ОписаниеНамибияНауруНепалНидерландыНовая КаледонияНовая форма редактирования профиляНовая регистрационная формаНовый список пользователейНовая ЗеландияНовый абонент %1$s.

            Имя пользователя:%2$s
            Электронная почта:%3$s
            Следующий » НикарагуаПсевдонимНигерНигерияНиуэНетНе найдено формы редактирования профиляНе найдено формы редактирования профиля в корзинеНе найдено регистрационной формыНе найдено регистрационной формы в корзинеНе найдено списка пользователейНе найдено списка пользователей в корзинеНикаких элементов не найдено.Ничего не найдено!ОтсутствуетНорфолкСеверная КореяСеверные Марианские ОстроваНорвегияНе совместимо с Profile BuilderНе совместимо с вашей версией Profile Builder Зарегистрируйте приобретённую копию %s с помощью полученного вами серийного номераКоличество сообщенийКоличество пользователей на страницеОманТолько администраторы могут видеть это поле в форме редактирования профиля.Только администратор может добавлять новых пользователей.ПараметрыПерезаписать существующееФорма входа PBФорма восстановления пароля PBФорма регистрации PBНумерация страницПлатные и бесплатные подпискиПлатные аккаунтыPaid Member Subscriptions - бесплатный плагин WordPressПакистанПалауПалестинаПанамаПапуа-Новая ГвинеяПарагвайПарольВосстановление утерянного пароля.Адрес страницы восстановления пароля (опционно):E-mail для сброса пароляПравильный e-mail для сброса пароляСброс пароля для "%1$s"Пароль успешно восстановлен для %1$s на "%2$s"Управление платежамиПерсонализируйте все электронные письма, отправляемые вашим пользователям или администраторам. По регистрации, подтверждению электронной почты, одобрению или неодобрению администратором.ПеруФилиппиныТелефонОстрова ПиткэрнПожалуйста проверьте, что вы ввели правильный адрес электронной почты.Пожалуйста проверьте, что вы ввели правильное имя пользователя.Пожалуйста выберите другой тип поля, так как этот уже существует в вашей форме (должен быть уникальным) Пожалуйста, введите (действительное) значение reCAPTCHAПожалуйста, введите действующее имя пользователя.Пожалуйста, введите значение для обязательного поляПожалуйста введите ваше имя пользователя или адрес электронной почты.Пожалуйста, выберите и введите ID или имя вашего пользователяПожалуйста, выберите хотя бы одну роль пользователя Пожалуйста, попробуйте другой!Плагин активированПлагин деактивированПлагинактивенПлагин неактивенПлагин активенПольшаПортугалияИндексСообщенийМощные модулиProfile Builder Login WidgetРегистрация Profile BuilderПуэрто-РикоКатарПереключателиПроизвольный (очень медленно на больших базах данных > 10K пользователей)Рекомендованные плагиныВосстановление пароляПеренаправлениеПеренаправление со стандартных форм и страниц WordpressПеренаправление стандартных форм и страниц WordPressТип редиректаURL редиректаРегистрацияЗарегистрироваться ( wp-login.php?action=register )Регистрация версииРегистрация вашей версииАдрес страницы регистрации (опционно):ЗарегистрированныйРегистрацияРегистрация и редактирование профиляДата регистрацииРегистрационная формаРегистрационные формыРегистрация с одобрением администраторомРегистрация с подтверждением по электронной почтеПомните, однако, что комбинаций значений поля должны существовать в базе данных.УдалитьПовторить парольОтветить комуРеспублика КонгоОбязательныйПовторное отправление письма для активацииКлюч для сбросаСсылка для сбросаВосстановление пароляURL для сброса аккаунтаОграничить контентОграничить список пользователей только этими определёнными рангами
            Если не определено, по умолчанию для всех существующих ранговПовторите установкуРеюньонРангОтображение ранговРумынияКоличество строкРоссияРуандаСен-БартелемиОстров Св. ЕленыСент-Китс и НевисСент-ЛюсияСен-МартенСен-Пьер и МикелонСент-Винсент и ГренадиныСамоаСан-МариноСан-Томе и ПринсипиСаудовская АравияСохранитьСохранить измененияСохранить настройкиСохраните выбранные ролей пользователейПоискПоиск пользователей по всем полямПоиск по всем полямПоиск форм редактирования профиляПоиск регистрационных формПоиск списка пользователейСекретный ключВыбратьВыбрать всёВыбрать файлВыбрать роль пользователяВыберите, для каких ролей активировать одобрение администратором.Выберите, на каких формах Profile Builder отображать reCAPTCHAВыберите, на каких стандартных формах WP отображать reCAPTCHAВыберите, какая форма редактирования профиля Profile Builder будет отображаться на странице "Мой аккаунт" WooCommerceВыберите, какая регистрационная форма Profile Builder будет отображаться на странице "Мой аккаунт" WooCommerce.
            Это также добавит форму входа Profile Builder на страницу "Мой аккаунт".Выберите, пользователя, чтобы показать роль (перетаскиванием измените порядок)Выбор 'Да' будет добавлять поле в список, но будет перезаписывать любое другое поле в базе данных, которое имеет такое же мета-имя
            Используйте это на свой страх и рискОтправить эти учётные данные по электронной почте.СенегалСербияУстановка рангаУстановка размера аватара только для всех списков пользователейУстановка размера аватара только для одного списка пользователейУстановка критерия сортировки по умолчанию
            Может быть временно изменено для каждой новой сессииУстановка порядка сортировки по умолчанию
            Может быть временно изменено для каждой новой сессииУстановите число пользователей, которые будут отображены на каждой странице таблицы пользователейНастройка нескольких регистрационных форм с различными полями для определенных ролей пользователей. Получение различной информации от разных типов пользователей.Сейшельские ОстроваРасскажите немного о себе, чтобы заполнить свой профиль. Эта информация может быть видна другим.Доставить на другой адрес?Адрес доставкиШорткодПоказатьПоказать все датыПоказать/скрыть панель администратора на внешней части сайтаСьерра-ЛеонеДата регистрацииСингапурШаблон одного списка пользователейСен-МартенКлюч сайтаНазвание сайтаUrl сайтаСловакияСловенияСоломоновы островаСомалиКто-то запросил сброс пароля для следующей учётной записи: %1$s
            Если запрос послан не вами - просто проигнорируйте это сообщение и ничего не произойдёт.
            Для сброса пароля проследуйте по следующей ссылке:%2$sПроизошла ошибка, невозможно соединиться с сервером. Пожалуйста, повторите попытку чуть позже.Извините, но у вас недостаточно прав на это действие!Извините, вы не можете загружать файлы этого типа в этом поле.ЮАРЮжная Георгия и Южные Сандвичевы ОстроваЮжная КореяЮжный СуданИспанияУкажите URL страницы, куда пользователи будут перенаправлены после регистрации с использованием этой формы
            Используйте следующий формат: http://www.mysite.comУкажите URL страницы, куда пользователи будут перенаправлены после обновления своего профиля, используя эту форму
            Используйте следующий формат: http://www.mysite.comУкажите расширения которые вы хотите ограничить, чтобы загрузить
            Пример: (. *) .ext1, .ext2, .ext3
            Если не указано, по умолчанию все расширения файлов доступныУкажите допущенные к загрузке расширения файлов
            Пример: .ext1, .ext2, .ext3
            Если не указано, по умолчанию: .jpg, .jpeg, .gif, .png (. *)Укажите количество строк для поля 'Текстовая область'
            Если не указано, по умолчанию 5Укажите вариант, который должен быть помечен по умолчанию
            Если есть несколько значений, разделите их ',' (запятой)Укажите вариант, который должен быть выбран по умолчаниюУкажите страницу, куда пользователи будут перенаправлены при подтверждении учетной записи электронной почты. Эта страница может отличаться от страницы (страниц) регистрации и может быть изменена в любое время. Если ничего не выбрано, отображаться будет просто страница подтверждения.Шри-ЛанкаРегионСтатусБыстрая пошаговая настройкаПрямые формы редактирования профиля с помощью шорткода %s.Индикатор силыСильныйУправление подпискамиСуданСуринамШпицберген и Ян-Майен СвазилендШвецияШвейцарияСирияТайваньТаджикистанТанзанияУсловия соглашенияТекстовое полеТайландТакое поле уже добавлено в эту форму Такое мета-имя уже используется Такое имя пользователя уже активировалось!Функция "Одобрение администратором" была активирована во время регистрации, поэтому, пожалуйста, помните, что вы должны утвердить этого пользователя, прежде чем он/она сможет войти!Учётная запись %1s была успешно создана!Лучший способ, чтобы добавить регистрацию на внешней части сайта, формы изменения профиля и пароля.Введённый адрес электронной почты не найден в базе данных!Введённый вами адрес электронной почты не существует.Введённый размер аватара меньше 20 или больше 200 Введённый размер аватара не число Введенные пароли не совпадают!Введённый номер строки не число Введённое значение в выборе даты имеет некорректный формат Следующая опция не совпадает ни с одной из списка опций: %s Следующая опция(и) не совпадает ни с одной из списка опций: %s Мета-имя не может быть пустым Пароль должен быть не менее %sПароль должен быть не менее %s знаковВведенный вами пароль неверен.Пароли не совпадаютСекретный ключ от Google, www.google.com/recaptchaВыбранный пользователь не может быть удалёнВыбранные пользователи активированыВыбранным пользователям отправлены письма для активацииСерийный номер не может быть подтверждён, так как он просрочен!Серийный номер не может быть подтверждён, так как истекло время проверки. Это возможно из-за проблем на сервере. Пожалуйста, повторите попытку позже!Введённый серийный номер подтвердить не удалось!Серийный номер истекает в ближайшее время!Серийный номер успешно проверен!Шорткод будет доступен после публикации этой формы.Ключ сайта от Google, www.google.com/recaptchaСписок пользователей будет виден только зарегистрированным пользователямСписок пользователей будет виден только следующим рангамВведённое имя пользователя не найдено в базе данных!Имя пользователя не может быть изменено.Произошла ошибка в представленной формеПри выполнении этого действия произошла ошибка!При попытке активировать пользователя произошла ошибкаПри попытке активировать пользователя произошла ошибка.Произошла ошибка при попытке отправить ссылку активации для %1$s!Эти перенаправления происходят после успешного действия вроде регистрации или успешного входаЭти настройки также будут воспроизведены на странице настроек в «Настройщике электронной почты администратора" после сохранения.Эти настройки также переносятся на страницу настроек "Настройщика электронной почты пользователя" после сохранения.Этот адрес электронной почты уже используется.Этот адрес электронной почты уже зарезервирован для использования в ближайшее время.Это поле должно быть заполненоЭто форма пустая.Этот виджет авторизации позволит вам добавить форму входа в боковую панель.Это сообщение видно только администраторамТакое имя пользователя уже существует.Это имя пользователя уже активировано!Такое имя пользователя уже зарезервировано для использования в ближайшее время.Имя пользователя некорректно, поскольку содержит неправильные символы.Это имя пользователя теперь активно!Выбор часового поясаНазвание для поляНазвание:Чтобы активировать вашего пользователя, нажмите на ссылку:

            %s%s%s

            После активации вы получите еще ​​*другой email* с вашим логином .Чтобы разрешить пользователям регистрироваться на вашем сайте с помощью профиля Builder, сначала необходимо включить регистрацию пользователя. Перейти на %1$sНастройки сетиs%2$s, и под регистрационным Настройки удостоверьтесь, чтобы проверить "Учетные записи пользователей могут быть зарегистрированы". %3$sубрать%4$sЧтобы у посетителей появилась возможность регистрироваться на сайте через Profile Builder, вы должны включить регистрацию. Пройдите %1$s Настройки -> Общие %2$s, и в пункте Членство поставьте галочку “Любой может зарегистрироваться”. %3$sDismiss%4$sДля создания страницы, содержащей пользователей, зарегистрированных на текущем сайте/блоге, вставьте следующий шорткод на странице по вашему выбору: %s.Для использования reCAPTCHA вы должны получить API ключ отДля использования reCAPTCHA вы должны получить API публичный ключ от:ТогоТокелауТонгаГородТринидад и ТобагоТунисТурцияТуркменистанТеркс и КайкосТувалуВведите свой пароль ещё раз.Введите свой пароль.Виргинские ОстроваURLУгандаУкраина Не утвержденоНе утвержденоУведомление не утверждённого пользователяОбъединенные Арабские ЭмиратыВеликобританияСШАВнешние малые острова СШАОбновитьОбновить Profile BuilderЗагрузитьУругвайИспользуйте эти шорткоды на страницах, где бы вы хотели, чтобы формы отображались:Используйте этот шорткод на тех страницах, где бы вы хотели чтобы форма отображалась:Уведомление утверждённого пользователяНастройщик электронной почты пользователяID пользователяID пользователя / Имя полтзователяID или имя пользователяId пользователяСписок пользователейМета пользователяИмя пользователяРоль пользователяРедиректы, основанные на роли пользователяРоли пользователейВыбрать роли пользователейПользователь не найденПользователь успешно одобрен!Пользователь успешно удалён!Пользователь успешно не подтверждён!Редактировать пользователя:Статус пользователяСтатус пользователяУстановки списка пользователейИмя пользователяЛогин и EmailИмя пользователя или адрес электронной почтыЛогин или EmailИмя пользователя не может быть изменено.Пользователи могут регистрироваться самостоятельно или вы можете вручную создавать пользователей здесь.В настоящее время пользователи не могут регистрироваться самостоятельно, но вы можете вручную создавать пользователей здесь.Пользователь успешно одобрен!Пользователь успешно удалён!Пользователь успешно не подтверждён!Пользователи с неподтверждёнными адресами электронной почтыУзбекистанСуществующие тэги {{reply_to}} и {{site_name}}ВануатуВатиканВенесуэлаВерсия %sОчень слабыйОчень слабыйВьетнамСмотреть все дополнительные параметрыПросмотр формы редактирования профиляПросмотр регистрационной формыПросмотр списка пользователейВидимостьОтображать только для зарегистрированных пользователей?Видимый для следующих ранговУоллис и ФутунаСлабыйСайтДобро пожаловать %1$s!


            Ваше имя пользователя:%2$s и пароль:%3$sЗападная СахараЯвляется ли поле обязательным или нетДолжно ли поле быть добавлено в форме оформления заказа WooCommerce или нетОпределяет будет ли автоматически входить вновь зарегистрированный пользователь или нет
            Работает только на одиночных сайтах с неактивными функциями "Одобрение администратором" и "Подтверждение по электронной почте"
            ПРЕДУПРЕЖДЕНИЕ: Кэширование регистрационной формы делает автоматический вход нерабочимПеренаправить ли пользователя на определенную страницу или нетКакое перенаправление происходит, зависит от следующего приоритета:С дополнительными полями в профиле вы можете создать регистрационную форму в точном соответствии с потребностями вашего проекта.С Profile Builder Pro v2 вы можете отображать различные поля в формах регистрации и редактирования профиля, используя модуль "Формы множественной регистрации и редактирования профиля".С новыми полями подписки в Profile Builder ваши регистрационные формы позволят пользователям подписываться на платные аккаунты.С этим вы сможете перенаправлять различные формы и страницы WordPress на страницы, созданные в Profile Builder.WooCommerce SyncWooCommerce должен быть установлен и активирован для работы Profile Builder - WooCommerce Sync Add-onYahoo IMЙеменДаYimВ настоящий момент вы вошли как %1$s. %2$sВ настоящее время вы вошли как %1s. Вам не нужна другая учётная запись. %2sВы в настоящее время вошли в систему как %s. Вы можете добавить информацию для %s после добавления записиВы можете найти список неподтверждённых адресов %1$sПользователи > Все пользователи > Подтверждение по электронной почте%2$s.Вы можете найти список пользователей в %1$sПользователи > Все пользователи > Одобреные администратором%2$s.Вы можете найти его в меню Profile Builder.Вы можете найти файл по умолчанию здесь: %1$sВы не можете добавлять дублирующиеся редиректы!Вы не можете зарегистрировать роли пользователяВы сами решаете, кто пользователь на вашем сайте. Получать уведомление по электронной почте или одобрять несколько пользователей одновременно с WordPress UI.Вы сами решаете, кого допустить на свой сайт. Получать уведомления по электронной почте или одобрять несколько пользователей одновременно с WordPress UI. Включить одобрения администратором через обновление до %1$s Hobbyist или PRO версий %2$s.У вас нет полномочий для просмотра этого списка пользователей.У вас нет требуемой роли пользователя для просмотра этого списка пользователей.У вас нет никаких настроек разбивки в этом листе пользователей!Либо у вас недостаточно прав на это действие, либо произошла ошибка!Вы успешно восстановили свой пароль для: %1$sВы должны войти, чтобы отредактировать свой профиль.Введите действующий email-адрес.Вам необходимо ввести значение для формата даты Вы должны задать значение количества строк Вы должны ввести секретный ключ Вы должны ввести ключ сайта Вы должны выбрать поле Вы должны активировать функцию Список пользователей (userlisting) с вкладки "Модули"!Вы должны указать название формы, прежде чем создавать еёВы используете следующие тэги в ваших адресах для перенаправления пользователей на различные страницы. Вы получите ссылку, чтобы создать новый пароль по электронной почте.Вскоре вы будете перенаправлены автоматически. Если вы видите эту страницу более чем %1$d секунд, пожалуйста нажмите %2$s.%3$sВаш аккаунт был успешно создан!Ваш аккаунт должен быть подтверждён администратором, прожде чем вы сможете войти.Ваша учётная запись должна быть подтверждена администратором, прежде чем вы сможете воспользоваться функцией "Восстановление пароля"Ваша учетная запись должна быть подтверждена администратором прежде чем вы сможете воспользоваться функцией "Восстановление пароля".Ваша учётная запись %1$s была одобрена!Ваша учётная запись %1$s не была утверждена!Ваша учётная запись на {{site_name}} была одобрена!Ваша учётная запись на {{site_name}} не была одобрена!Ваш адрес электронной почты был успешно подтверждён.Ваш пароль был успешно изменён!Ваш профиль был успешно обновлён!Пароль выбранный для регистрацииВремя сеанса истекло! Пожалуйста, обновите страницу и попробуйте еще разВремя сеанса истекло! Пожалуйста, обновите страницу и попробуйте еще раз.ЗамбияЗимбабве[%1$s] Активировать %2$s[%1$s] Информация о вашей новой учётной записи[{{site_name}}] Активировать {{username}}[{{site_name}}] Сброс пароля[{{site_name}}] Пароль успешно сброшенодобрить этого пользователя?одобреноподтвердить этот адрес электронной почты как ваш?удалить этого пользователя из _signups table?удалить этого пользователя?отображает всех пользователей, кроме тех, которые вы указали user_idотображаются только те пользователи, которые Вы указали user_idпоказывает пользователей, имеющих определённое мета-значение в пределах определённого (дополнительного) мета-поляэлектронный адресгенерирует URL текущей главной страницы сайта.здесьв WordPress URL сайта может отличаться от URL главной страницыreCAPTCHAобязательныйповторно отправить ссылку активации?показатьID пользоваткляURL предыдущей посещенной страницыобработанная для URL версия имени пользователя, никнейм может быть безопасно использован в URL-адресах, поскольку он не может содержать специальные символы или пробелы.не утверждать этого пользователя?не утвержденоимя пользователялогин или Emailwpml-config.xml000066600000003124152141651170007517 0ustar00 screenshot-2.png000066600000343077152141651170007613 0ustar00PNG  IHDRI\tEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp ;³IDATxX[p;AAQA@zmE  %2w/ b]w}>3uf)<Ç&H@H@&FeM~~}=65u5qq *)**LJLD;&xrC PRRRKKXZZ9<<M ;ziղe>e?޻WVFgjnn?v({^^VGCG#mmmUUU/_ܾ]vSzU#FHJLI2䘱cH??tuuM"22;8{R=XX?wn}Vxyyɠa)aavYYY?*C  EGuAKK+>>4ny9,UA'MںoL>>EEżܴ_ZZsر#mZ~~~;=RSS+***,, vvv~G)x,gJJJ?zL yyzQ}Ž5~vsL8^nk?iLYZ?|rcG<O |[d))X ? 77;66:&&ܬZ\\,''7::*4o\@PrfRRddd酆 ٴiS*ѣ0'6#-Lhs""_aMMǏ9weee8FW/sdee=y>z"'7sSshc57k-$$w1TTo_tŚ/ uW/go>7?&酄oמ9\WJJifv=>=)*]2%&&!!4ɐ͚6fK/ 1FDQQ~z9w~XD}(46Q,(((//qW- %0xz;nl~`P7o=o߹Ժ߸6[s#UT uw?FYY u ኦ$ũ ٭[7$}’ROomXaQQNnnl\'KJJZ!uwzzpn&l߲[ǎb Qeݶ~}.u;}{߸|˃]6ԭ@)fཟW S' 23s:M:ƌ~u0|ȠwoI 0?`̄ ֮,-)r&S31uX,uG۾s\~͊f۸Iw9 0k[kN3gLݴeGhXuV-?۶yCjjQ㍍ n\`֪;/$%$##tgff }è4Ǝ4f--UVq>ŝ?Q9 n%+VsO2̹wÔԖ-ML[Sy cZFch?>>͛VTT|15%  :*gQPn]+Cr$sL}+,|9OKINI6mayθxo_sgTUWרwÇ ;s/wi_3.n>k׶F^=hnOѬ;Shblh4g=B)3INl\ݒ(4vt37lǽa4ij蘇]:XS,ͨV\xDyVn s//J<--*.Sjddd`fnF9!66VNNKdddiiiyYy^~I 㼼|III0YYY'Nh߮]]?W;U؎9z枟_\\RoUeŹJ|B"4rV(c $"""u.X%%)٩́}'LMwiޯV󱠠q ^#((`gۍRݺr <;5""_uu FFF&=iLMM{??#cc߿Q1A+-lQ_^FK4AAQ^T!0 ykjj6ҔnݪeHؿb?N mY Wg{܃>=}h\//|hdXXXn]E}|,ڴ1ia/ Хsamm訸8Q]]]/w21,]z8\zjuxi)^O;{z&yyy'O'peXYYNQXhJJʵwlͻ}&׺ 'MtҲR/w^ބĉSgPywСcǎLwn^n#fyuvVB1bxYYx&ܺQ\B"==cT~C\\ݩ?xu ZK׮'O:DJJc<'+2[nQGss##KWL:=;Aq߄ޓZklj_!?~ީaTdĈ#\AM}&%Fos]]6*UU.]9bDDxDX_ʐo3\]lmM6iֈTUdʤN>5<,H3d;ٓZ9 gg焄!!!idd$##05m]1SSUSydrRrDDV<1|h@H@Ho@zD#          QT\n1 5_8{>>9YY=]z.**_Z/߼_P *"Ѿ~**ʍÑc$ط˺][^s/ yMXXS...&))YPP@ʍ1Fv5kmFɁ>ur)**ZZZVUVc3ݭK' -ucdn]gȞ=n1g].L*)IJN~܃6gvN.q>K@@`ڔIXD5N|=gc?vybjbҲ <k 9rH--zR~hFAAˍImnGEűqnO_~ k_VPIIM+((`YR LKŊPXXػϞ>wݎ2$$)uqvؔOHL,,,۬Y ȅ}t4ѹ( PWWS88/-)UVQ,=q Z#;1ӡzU^:vc:vr:*.>:ݺZZZzM(5--7/DFF45G|e_??*Q*Rn֔fW\-*.oY3`#Z+ 0)磹OcLO>xxԜӷlE%;l0$9Cۏ=B^^\leL*lݲ{$$)lܼ&z͛?sfRR]{rc릥r:#)cϿk[j|55ظx1QQj+~6AfƵB^⮼snpg-z߼a-Sr "ܼ}vnԭkg0CYs)+2323?|#uTc\' τP"SPpRSfϜUK]T\TTT\ LliѦVT^nc#O=թGjAI%Y]zٓXK+h=֠Ik g$))1m2[b"qٗt~b$eVnn_5yڗ~!vbUܹڍ[3MYt?ik7[h}( P8YYNUUWM0n֍#L`.]ҧg1ݩN-L׬X[_wTƜ^˛vϽϞ8rLUEm%٘!rgȺ\ݟ2RFZ-E](X۝f:XSHyBLZf=!ZYS-,*ںc#iHuYM Uee劊 ‘Q N4~6cݾci4l~}zlo'u۴v}%m*1N=ǜܕw뢪nZ7z$o&F y.*^zC@ԙsL IY׼u+j jp/_tӋ%+;.M-dXn*gjh}DDF**(R{Ɠ)ڲ}JNV_|ECL$!1 #77Qu5U@_@BꠔxCݶ̬ۃNVbVYkv\Mi{ay Z1rɢ?TUsrs{͉bXn^w^>Q<5''NHԄ3+6׬툡HSUZZݬV% )UTTм:{^[1ue4΍ z͟;fZ'3ppqqZ1>1s$[AN9Hmy.sPK{vnc~Z10nLH c4U 'O3ҹ1uFs3i޽(\8s֝{WLȨ5HbbRN#k7eC}?@ʐL{>zQI)VֹQf@P5z!;vh?5]`P0klmLfM#";--b$aWfV6u# t嬬,aa5dʍ.\ru{ZTx~gt&rEku*5g?YLGzBȧW(60Trr K:vmC۷4m?mпphh sW\\a?1#N1sPŪ1g-ژ_dZ)rz' [Q[@BNV$$ę̖T;N2#4x 0n"S\zœGw7_ù?OR |.u /šF9tϝݪ%J]&N`Oc*_HG|:ĩ$ӘԢ:d@Wo}u~gϞ;=8~@@` j+,ΝlÏѼuȨhkmv0Y''++)YZf߮mb.^Wded7_b {8qXKʲ MwJt$$&ٰsOg讧ۜ>w=YEJfܟgpF"-%%",aibbKmK%KWzQOGYcFʵ||95 y9N_;&iyEԪSYYIֺ]۽9)9 |wI޽oݾtԮҴvD;;Ozs6md<))а*yyIǪ(+>yl# 762ڱu@ĩ3S323.X9)lݱMh33&Mxֱ**h 4j+dngەO̓.={\\\<%%V͡gܾ{aUUurJJAAW99kv**))EEOncn!,"933w?_ظx Re5&M`l+K ޾ZKXG4kbdDz&enEdo.9POr8u&hbbT݌%+tnWZVFsE߶v4[ZZaȈ15n6eȨ_TmY12=#ۢ_Oљ7wnݚ^^^uSג?׫ K|| U9%;1nbnZW@`Є)33Zg|cZzEuujijjHGE||mh@O(AT9Gι-b$|$$$6׻y㨪S+׶lXJϞ{嫫/hsʵаpTmMXO #ڵkGQWW&+YY_*E#ƌ:d5x.]nG?}1vԈ8La sEVks#UԚ(5.),,Gndg焅G$%'sպUˏԔ0SS\HP0))1::)Qq=Nb5rr/^}{[17240oݺ" 99%?`҄qVm9z0Scz5o ߆sVF\ L>W׾}L}͛ƍc~IF3dbbҥK RXPW[w0n "#.XAVmڷo+$$f& Ty uCl뷞vfMʪܸe;V*X)CJl3ᩪwԨQsuuݻ7},..sΠA$~ AzKJIM _XX?߼,VظG[[ڊWV uXNXڼ웁g[Wm;>}1\zݝ322N< ##ӣGرcaaa666ӦM÷|~Q|"t OwȐ=Μ~V?4 Rc;JMMyK֭Ge5w ܶsc׺^~|{}8dfes]aQѰQISHf̙kvxBB;b?qh(5~JVvK=uzm;)O yRR&jȐ!vnݺ}ΝcR xTrJ{{K.}*={xٲeK.ZԜR>N=;:XiM5? ŪPTTlki1iXUc'{yy9"/oBBTTv,^TXTO#lc>n̨Z Bsrs=^)_ZVX䣜źp v\|@ӦZl?z]y^ ||F,-VSg""JK~ÇI6ڨk|!7e+ךr8zÂ%c>Ċ69v"GXOOr909|uM4E (VM$%%)::88DGGY[Zdddl߾]TTEaaa^j׮]nn.jjj`,(?vhS(C2'&'ܼ} k4~$O_EG R]];u4۵YLH3 $$q/_ݽqۻgzFF D쫭yBo?QunP{22<"r4džyN΢s+*+ SOl\k r=}ߧUUW{yy{x܃F6!S2Ӌ߿u1 kO phXREƍW۷n07<9xhUPpEvRН6e〈>{hʖ-N; =tZKuw?,--UPEs߾nǜRRR))IeT9(kԗ_SC?ĸIMw 5Uՙӧt֕Rz^%NQk0uKVPhv`} o999ZYXPVV{.^ ?oݺTTq0|DA/_? Ь XW!tRs***RK=qZ##3DUUe䉽{]>~fV6qȁ-?,2rl~^n5+19siii͚$3Y;RKZYZ4Q;v b?p҄UUUC@? 8#i34~2;/%+ִogm/Eǽ \0I%55e8 A33l DPPM6qP m>0I,]>4|3=rdFf{S\ao)L DVFVLLvZ~ɊծO)[1wm77kִf_<וk7cxh͚K{ee]ΜKTpBZ6k9rr} ~2<55Us0MIɷ5/P<MLL R ݺso-<{%:&&%KHHIJZZӞ]f=S;7i]+CS_r-JPPu+ 8$F!5\+Kj /_ZGmh4W <#=BYYI]M[LQTP9ؘLԾs8!!BTYCChҺE>1bDEE֬_mZ4izqZZZ/ JƨM6lޖ,//G˘Z;-&36IIgܤ\i䙙YbŢ%1-ҕk28fsO h+ xzP=/%7(+/GMMUOkI&&LX|gjj*CH-~[wxyyNxS2SgWS-MwsgΝv04Ч 3^tr{|W_RR+"N3+/ܝgL%2*ZEEzQI/ub׹8y&4}꤇wn\8H%W߬Y,;?xԈamvz_jwW#'m\yt ->^2z]{BVV4bSvӝWjMYO]蝺=r#kN+MكsM˃;Ga|'(S.e]=w2idPpQϦae;cCF\r;qۆ<07q{ncC4θꣻ7$%%kRٟmKsֵKخݸUwlMj1cޭkUyLii)}w^=u[ S7[M6_Sw Xſy.Oi.]>ϩ9h`ۮ].۞oF6mhhhرaj77 >>>< ۄӞhsfovC{ 9vh򊊊CGss32N7eݺԪ ,,̾wb'kDl._AnRGrLIJj*e66tt%2h򏥅7p0;;:uDg2sۢ}'UO'NٵsS'SrzЬR~}?*nߎg~ Ŗ~[2#Z Tb| )+*Tҭk߸}~5}ʔI: ޵OJGuW3>>#/ߌONJJYS̀ JIT8m\V/oL2MQ!܇np.C%v]-Y/]::|Km~?qB7F~}7npɪ*%%%,KYYy jZ<3-7%&p/1b}wXYZL7ZRRst|fokNʹ\h>soLb«nR< zjNsbh*ku\%S#D AKSr3j[}_dcOѢU=Sҽ}gCVFf 's8ubs&Џ^f];0(ĴO]wu1y[3lp2CUVT 3%G~R7kK.v3/S5b[O=JJH1wָ#|ZZlVAOx1_=TUHSS]@@ ''gԸI/5}-\v{]O>K;.,*j=;XrԘ22Q$j546yI3EL ˶kg~۷jݪ墂ʓ4)=^IJN޽8?.\8xw^RceKWsLdI=뮑L )ߦgdH[ 84Eu?O=w5AAAjgNrL1N=|H4iumƦM;{ FNvHjc;{1 h74G!!!Gz|Q%?\rmY[޾2xaaaEEřs\ݞrJcϮ@C3l?1#cia9X >}͛7'NPZPAvގ=ZVV`7͛7osj_|6lPͩCجYoC iW EEE[n1bB--Ə)g;;;7n= q13ӢٖcqIIM0bⵛ6wc>|`*,0۩^`PWꖑ_=G(QڵgȌ __ߓ'OJHH0%3fh.IJJhIuttgIi ***K?~7<66vHőcaIj_ZS(!.Ɠ~܅-ץgdzd9SIxxvݑ|ޭmo~;022 4o<%%>={622RRRr̘1666T͛Ϟ=;pugggO:uǎ͛7ێԻw7nܠQh.]J㧌J%߿GSٴi͛7_Zn={laaaP}ŤݻwSM.oiԄR1A*VHjjV=A>Iy5Gw4M4inEwBRx{sMD8B 7G˩^ѩvM&5ҙ-$k5.y1RZZO~jjj_,WR՝ӫ8)/)sy`I񃗇LoSsu|Ϊդ]ciX7p{$4KΧAkdSW{3o; )iK|vt@ !R*n6/,`$wr42"&XԜ@K~dKս}rK z^5!Aځ[235q_:r TBjUxE[~υgBn%ď#jȞ{ &LVsý"3(>VHO^L7q;hwՑ-}ߙ!-S (:גׄFPaUE]>IPgAuν I8R{֔j./aȟ}Hf)Impgkbd߾}kzZ%LEz*߰y;AgwG/W*k׮T {xƍ?p̔)-ٳɘ1cxj.8{l ޽K%QFqb$D۷Pr)@r&eXرԩS)xzzR@2**%K斔Tk(?ir5Х$%e4]!!wyڴi<5(q'Q)Qׯ77o&''S_GGGMM%K|P0 5~PPЮ]TTT(Qf"_CQ J㔸xjs X[[#GPrc;Sgޤnų4 V<d9КbV"g4?BGIiќp$66nSPw(jFuuu` 4c<80N)AQl+]^bI4c{w{ذ7R#|usH,_W.jy50f!26&o^LHא U (j17E*9m) BvB _ժ\RcF-L *D|rÈz#$ =G]Sa$T@STL(~gPLI+&%ގPSLjk4ҫ{_ԼG/4ƽ0` #W#:T)ͮ8J|R{T. W?䍎~:ZEeet!԰$ᴬ `I v%Fz~o!ATBtZ !y t ښT_*VN3^2!jPhoAF%ZG}ZTkgv-Bȗ˗!G)X@@ FDD@@zܻwM6B:P)Eqqqɺ T"㇒KLLڵXPlÑߞU8@@Èrх! Q2DAbÇUl 1b 0!!EXXXDEE؀*vrr'NlR< Kttt; f@q ܠ9 bD?oP #=> q.K޾q%F5Ϝ9sI([L"cٳ 6D=|ɒ%٭W,4\GS33S1'Mk|*_䐚ED*E1~_C9jWU6s#8N|k-&@cADHW,fu /8.W:J~ZF< 7bPze|H^ʆϿx]m-GO#Rw t#ui[@exJ9/E\rԆ%ĸ-lkч/ `m =|_++T̗=* G*SyJcEňg_nW[CD9,: rNoUw?cA!E13/S tLuTS)Hm/~*>9MdE ,o$ LJh:pv'6RpNB!h(BnZ10(6PD}v>>*k؈/(RrY ?Vc*"_јJtERM-0ӧRARBK`-$ GȡduvY:*$$L2(zdL) X}}bŊBJH"Y K I&ܨvEAT?e~hNmj]e($|Ba:;;CQ;::N2EWۃ )>Lt42!SC$UB^F':32oƊG+@ikiB '_fB BH?~ 2::L+B<0-JJFh-+kh%JQJssP`$_Ų=*BSYYY_#c۴i#m*T*b*hٲeH) I ML<FfwjѮ];1xcPN٭)&8_A 壏ʕ }͛7İ _AJDEEuڣ:P.nJnmժj7~=z]jdr}/Ք}|gYc =|8Xz5A|SX[cJUii< !ߺk,y'4n`"*]ڣi ~7 \ܢL +3 {Z_?DC] t 3wy4elM\nXg`*NmqBqjz&$ TzFnO#'@ ɾ-j+U >Hh`yy;KHfMQSIiX|y4zܫYrAkU[Ӯo7ҬԼE]Zros:Z5ތ`ꤸtd5O*D_Gm/^~Xj;Gg|"h-;aJv/^X*Y I*˄ Y?v$BV>d|A[[>}۷b̙Q*UԩSgժUPm۶=udn֭޽{4*Twy{{Xzĉ8$33rH>fD&-[DE鵊М^^^Wm׮]ZZZLL4'Vv…ٿ<51 {`Xߎ1b׮]PPraÆ)ST\EijW 9˖->}:D/t4ݻ|χ,^8|!. n*x@Vږ?;,e]xmSO] n]:Lzd Uϡ{G]tS #\W_J ˟IKNˀv+hPݫyUf6.9W7+f +1KYպHۮ7.aկ_E*m;"T kYFf&=4. ݥQ-(w(LT%CnX bo䂋f␾cjUeYA_F>6Xeմ%x>Q)M&<_dMж'eEz|^VNJUdÍA5adPd``} Шͷ]+ieXSG1-F՚'ENJj3JIŦ޶*Nr|+`zaɋ.A*31]סe)[-w>>" _1[FxoȎM;m<ǂZ ! ~~~ZZZQD ?P֮]א`e=]ԼcuJ`ijU/o0ĝ*}H&^z1 s:b^]NkXRR60!B!|2Rׯp蘘 [Xo^c'N̄D,Vd% Çgo_pԈgΞ6x333uغB!5HMMMʕ*Сkq&V(_2L^ſ9ԩU3>۞}%&qv 527o] !B!둑]:؀8<1olw(6x@ҥ7722Β%߾sWhH9%J8>?}Jv8wރK!B!_<~j?_LNN;.piii&; cc搚ۀ!ҞtХ[?̜61& !B!䋗QQя?ﱴ?i/;1oc@@cYs077Wl<P*,,|UW][davA!lcB!BedV"#cb~ISc_Jjؿ}[68nnŊ=.][0wq}/@а*iiiql`B!B e$7qʰ׬\~'Nk_4j}3riiiܾ{2zUZjM6#.2B!B>2bĉ;k֬P---㇖\sŕ͖{ny^!B!܎F 1O*/mmkת篥ٲ B!B>w`aaѱC;Ҟ<{6p(!B!{R+VB!BE. B!BI!B!2B!Be$!B!HB!B!B!B(#B!B!B!B(# !B!PFB!B$B!BI!B!2. B!BI!B!2B!Be$!B!HB!B!_':LQX[5͛]8gg___zBȗ˗/ʊN |*iV\AoB<A?B>YC>͗A5*o$''BGQGG[[[SS _1!ȏY^ԫ[<::;KRܡآjGI!!ՓB'B$ uZw?QZ!CvuBe䐁:wf%]FeT/6oyv;kz!f/"^s_R%kתvEKRSrYX5S}ff ;ivZcr?W\ -R8>5뎻B!B(#?-zzz߹ψ,YZZX۶/Wv1ї._544t8o?=b33g77784˗, >j}Q#9{^p2_˖ۧSg 934ob:蘘SBލx}+U7ȿEԐB?!u=|l~յKSC:]խﯽooݹxrחz^x1gKsNَ4ƭۇl;n_qs׮߬[y@_``{?|;;]\N>߼.z|>jش 9Ե۵6:רJOO;ph6BC>zA_F{>&-VYv&l,X-D7?%&6矟#[w6cy]&BFjj(fdddto>J_ݼ}MUV]OMM435#J*OviJp000pw9*kkk… eݏlwwժ:sG;]DWWŲ.URݽ{tKWr#8n߅NoiaQթrzOKtus_TKK W߸}V<..Ν˗筎QF!#x^+M7?ۯ=OCgNRr kV K!qq|䦰pΝx?sSSSuvZZv.`gLLoHɒխQ'+V;{矺l۴nU.bdhyMh(&744}Z6o""|wh*&]w ^8ڻg( ;f.~TfCNfL|ݶ[GFʶ0Sԝ~Аxɭw*;V!C)j* +W+K H77O4uB!qvqnѼEJirSXrr+W;oa7|<~~:wNJO sss z9I+516v>;qʀ~}~##rvvV7%KڶIE/;mSۺE:rK.5ibEl%gΞ4# Γ'[*YwfgLBb鳡!˗+;|…C½>c||^?k۫:::0i ||cKfeJB;Rv=~#QQѿt7%<|DPPpBBC[6jGlڲ-,<\WWR cG/X@r:+6oq y̹6 `AFGGը^m5 BW~u#;5Wyr`7o?jT;kؿ~PJaeiKOܻ׾.Gᷬ(y뎨˫V EpWթ]sy*.)qYP vT*/4tyC+!\H__+W'J/\\e[7nݾ3$$$ Bk7g6fN| ycOD`[GFE#xmva[\\|ݝO"X?r?@૒ŋwܙ,YBbYPn9$f;wA+ uOt6EF&$l\\A'#3#mhXGmmlc.] ϟcii! 08${IIIȵ6}`yTRs3$1f@A q '?B T-%%%&6&2*Uϙs[E!wTr;uf)_Cc'LɘѴIoDeN9 u:kjU̙1\2ZZبZQ%'\`ތ[w|GddX]+{ RSӼf-SCyy{WXMżڵjªQ__.20HKK:b'OORr#`En߹ Cg|D#Ƶ7(#gc ߺujeVqhvJ9|~1ҧ[H+;VڰfB;!5 {vz\`ȡRG|9x(;ρ=o?}}̙٘١]cҧΜ;JJNзVM5\r O5?K4nXB4C1iG+W#=^~ȡ6[%O?{ټ@acG'mB-?-))B~ԫ[i+l8r,(8Iv8z$$$KdQUv}忾9Wmgݜ7oXm:=]]tu|Q]:vPj <b{Śuҷ%;9AP ZȄCu!F帟>*!ހ6Hoٰi+4Ss'.9IQ;v%K֮s;+[Zd{;4dNn.G8/\\hȽv=}&XHC׵j=3BC2}f Օ=.]Ə~#̝icc3`p1Ӂ:Y?Bȇ>K켷f]ECG_U UUm+[&t8;7i4GN{/[Z>{IݗEmmmQI&*B?hjjBNJ424LHL566^zy<5&wjy.|[CDBx?|,hB{Ed?;Qw+Đs9g eZ؃d+78bE1خUz~ܾsψ1/Tűc%1 ,V!-#?PC%<)BKWG']Einw#M=cbV^W(`xg 252U6T ϦHųZXgiii z_ܒ}t,SZ((5-g!1lXi^ZZ3CXkĪW ?NnԶ_Yɮ2ueK3_|cY|L4S{433NGthF|֮X[y널;p" !6|857J+k[uOIb/edԭSو|q(eh(V: V7Ϫ@eY[[s6K5T NӁ%sk!D{NU%.'E '.(srr26CoST\8ݴunZtyo222^HNIQujׄɟ/^?)XΩJe4VV&ObT Ju9NU!?6 lްB~ygEf.M@`͠{,N_řd7k2kT!9%=gãOhii5탈ց =+>]t!ji)i͟"SXXY[[IXC إS1/7v466?wfB_Fݑ-iMkoffj_vq}zׇ;j׬ xϐ1#ij[.n7nym/#w^"P$!P<s"@!˗ Uy[_Uu4r{,_uyБc[ d# T?&333555((ʊ PFHB2HBQZ !B!PFB!B$B!BI!B!2B!Be$!B!BI!o NtB!DD'B!BH !\IB!B(# !B!PFB!B$B!BI!B!2B!B$B!BI!B!2B!Be$!B!HB!B!B!Be$!B!HB!B!B!B(# !B!|2ƶG_Ӹq#s3szBy^pΝEʊ߱cGTTjgΜ޻wyeddڵٳg=Gk_?/_޹s'*#!SmllUo}*T(O'B!={zJe'b֞={ltRZZGPn{&14LBffmUM:[nzzRSS<'Otp{'Jggr5{nddÒ!'ɓ'љ?]rp{a682(=#=#3Sڣ۪UvD!deǎ`Ƞ%K-RǼǏgCK_=yxZZO>]jUfp`utt>D穀Q A}7 g.Vĉ Vpϭ"Ebv΄!E_ԩbϞ=Y:%D*ïiӧOھh\i 7n͛ H>$!9YaJ|ojj?~NOOO4/vBmkk!8wRRҜ9sڹsf.]}Ț+9s111J(Wd3AӧO]-DZhh&Mnoo߻wk׮mڴ f͚4^-rlt;=._x"󕑦y! [|̪$ 䩭$>>nG.f-ԥ˗ڷپkǝNC!|>WH"22zROMKKkРA_vtt8p=ɩs>ܾ}{@@#|oܸ80::_7oG|4wGb ;;+W߿?$$` (ZrC#""2eJJJ ~!3fر) (0k,===Q4ͨ &nȑ/ ,ÇG ;8W^H۷o9rZjcǎݳgϥK^|n:uׯ#eÆ w.ڻwիW_x;7o? /]E9pTFFA-GDj{h"[tx dX* 6Dn va___i+o(.E-QǷ KNNd$<|lߺTXp2:ڠTk6R9YКЫ8fT\UFȠ 6~.VVV!+plٲfFJx\pR"X|9B 'OϜ9pu)*F*BtW.DNRw CucMxɕkj )S2:*:,--ԯoe}Wbvm:vhkkc,XrbC/`gglbNbKClmnj^ͩJTtw;7[?mzF3-]nCS&IJJm+K˩[XZ8ֱRaXcc%Vz\,BmSg͚;۷mݣ{׼y>x=oђ LhkժsF`I~Oqy۶m`͚5?"CO?!;wn7;oS=Bn޼PC|uhBDgϞ]zu׮]Q"bklC!BD3..D>f,Y{鈙"A 'Pbܹsif$5ތ=(ٳg@#D r-[I ݶG>PŨ ~UBJ*'HhWx mժU CYABq!R)]0rڴi8pȐ!a \ɓ(wܸq@?"NhDr0 ͇P[pa {8!o2NyuPGa6_͛k׮H;ʓ&MB T^"[GMBN  b$vٸqݻaA7n܀1j5>' PNqD {[ "~ԺL2(EB5 ر#.z1M o!ݻދL+^`3"'+W@],ZJmO@KP2GgΜ)NC.<+8SmsKU^mIcǎVZ]2M:pu.[A\gڷo/$\k!X\5 š}(9}4•G(Xmn5dA2%c\p%RV8)!a:D7ξ%w8.h(v4ҥKO:uŋѵ,r^p;hѢC#9sߪtyfwV{!R#$|Y3QY///47u420 )F$s!Auc' $Yl餤v ;tco_XHHm% 1u\U/Y7|85bhph虳7o݁6#mں]qz7oݞ84,uR%ˑ { +\Є2325m<Ό;G|W.]&JV<ѬI㡃,[=ϛ5BȗȔ)S㭡Z Aq3Bo>>>"xQ6ŋGqʭe1h)䜻;B^1D(4t̰e˖iă4r 5DH0P,Ƃ"V* e!%hqt3||)hBqv9Y|ѓp=.BǣOdWB7BC"6Dϭ[FH*ٟu!cfP;T Um5j$uQ)q|~@CTJG V!"#` W [D #2SCQ;vIJ-hR9)UGlxC[rWh{*ЁkӦ|+ߨ0eAIbK. 8kwYfA@O@A߸q#)) 'Oaaa(W\si!*+i[roGa sDZz H?/ch>4ڊdXrK^]sg׍=Z0PJ!MoRlQ:V)Pu577CY"p3]tѣǼylmmgϞ-Vٵ憫А3PG: a?j!EАv;wyoY.⪘7kQP 1D)θF*"t Qvm]>Rk׮]v*#>ٛ%v [[iNiLM6̥R-~^[6ozdhB)xFF8]J'G@ ԿzFy܀l&w(6x@ҥ7ЗfJaei(C9ȡXѢݻ(gk!&))͛7 C hb?9QzK9DNʗ/#$ " .ՌBQ@0! ի֭[I3!Xܰaòe!+>Q&Q;؉Ũ Z }"^  Gt=тbGmEpM,ҫshn{VO>P>*?ߤ|r "8A̮TDRpŃƱVVVipj1yd ɸvG̺̲Zmm$?YDzXW?ๆldR K P/ WW\y h p !t$`e7k(H\ _e JEpz!ʡMG%H TS՟\FիW_|$SR6mޔZ6Ii:u3eY}]AL/YLLocG +0c(رc^+T!DD/Q77'4bŎY ZI#iF$Hox)k CqH SL۵k;ꨘ-֐{$=J3g,^0[YRAx$0 E,aˍ7 IXʕ!{:u<(tTKj ȍ8)5>Ve$J4FƅO-[?=AM _Q֭[gWK[m7H=4E$&M}+4 {A+ -gkk{}!dYk9Om#"IJRKH)Т.PȧrW͚53(>>^yU)Q&KW]E#/"t Qm]>j Qt!#KR]J/u-6_o%?{򚘬YZ*n$._r ʗ<D?%)Y HKK [>V>o(󷱱.X.(^[H !|L>-#+H&`5ʗ/_`:66̙3˗Gz֭)"G:::"fEb49rdҤI"4^jhh}vQPNjxQ;(s`*TH\Q1c |433CHLի\YTA A킂*h1z)-@ E-D &p ZUV*΁y /\:trܹ#@ =K;dr ̕wsRJ!?{,kJ8p1x\"F(/>*W|D [q ?Gb~_7Г-Z;v-Lruuy&:ꎮ=vnذ#Eqےpćrm1#iժUz\>wʕ+@İڊdmĜ_mn)JgϩS`rޑjHd=~+\*!QA\y29KRqŋ!pUǢa't sH j(ga =eWJvԦJ/Dr/$|$Ыʞ۶mCnU/#ѐ#}} G]m\RnMMc'>i!#+UбC͚i \2Z|?ultoYn/XٴqGGlQ11?v/%5]k]r񂹛07wus߶c׬S_Dv]__O_)b)h`$*DY氁 ճg<<<|D&M@lq={ ?M4&"6իWDݻwGRWCTѱc-[""o4"QF,Ɉ@eA"43 O2( F$C %ީ;C]vɓQ1cTVM%Yff&.!TJWׯ_?|^ŋLBEO2)U&ly4;U>Bۢ8$z޽{W,\ G`yo߾Ç#̙3'$5*H/lӦͲeЬڵCY[['&&! б*aXSWMfaI5ڷo/f)^t ϹPeQLR֎ j$]Mvm nܭ[cǎAA99t6.ү6w8kCq/_|ƌh,(RI WgφyBz5jHU$4&)Ej(oüӧz㣡|XH5kIظr %^vp8gӚ5k X1ܻxbT L,9WDMC9q`РAh٩SbJAߖ47W鬳6Z6yz{Ŋ,XoPݡT쾫^zׯ]ssw–-2z$ݻޭYvcG P\RrrB!s,se-3b^А8gl۹aq阑j֨ 9i hH[cFUX.&6rEH|;wwAqleNJt(Vi]PA4CnشU{if6zК5@x>q},66>EB>[+ G>ϪU s %өS'5gOԡC~WχdСCg3C91uҸ.Zt!B!HB!b޽ϟԥ\|yΝY9sÃ5:vzYv V\Ǧ'2Bڸvڈ#:w %fdddooߩS+#|ݻ.\"..Ɛ3sήm۶k!n"ELLL a@&MT@VF"K. ӼysI[8pիQQQlٲAHXb!](Q">~X}/^\K \\\T^R533oQ/n޼ٰa #3gʕ+ryɓ'(O6MDT,7nhڴ)2IJJrww_x1v٥ǷS*޺CET&44G[[;,,rڲeK/_>z($88SHq7t6t#G̘1cժU111% *3CJ,s޽{sVRESS7:lٽL@$B -"""ԩ ׯ_޼y/_ɓ *L<b֭ׯ_G2hݻn߾4ժU;v!ڵk'qΝ;^c 0fԮ]㣾>ׯ=}thѾ}bcÆ AKKkNNN;wF)B"s77SNA!?00p۶m>422٨_{.]rQܺuRr!!c PhQf(q8U;xsIlGEEg޼yŋG1naa1rH8_ϑ?rF$Ϝ9  7oRRRׯ1u=w\xoĉƍwk֬AM0lڴ;33FH"AM\O"{{f͚?a"DYohaÆ-[6;O޹sþhA4JBB6mZr._|!H)S k׮۷^r)>k.wԩM60|ƍY&իWO^ mtҥKAã:Iv W;?-zC?At-nL$B=zU|D8}||B]@A@IB@ ̅l@\jհ@yC}9;t耍dDuC A+WJU:{-[)S&gϤA'd(1"C?) ~ХKpBr: zQk֪U = *U^!Ϟ=zj-H{b{AWTpܸq>JӦMY5P%0z… *$ 1 ov c?2 xSiVZ1c/ LUOAkJzOCM4 jM[[[_Bs G*/^;v,܈L uP)̙ߐ4522---$;P5Tرc&Ӻoqqqb]v{ޭ}Srx9pT|Dg>zQRã85;v)#!6@J1449sj Ebn!sz !BC( vܹ P|y.X`*UD#_t)>@< ,p}6B[ V9~/VXajj AeEh?rCC'$$$H5Bma/R dž Ϗ"A~ܴitѣ!JR q*sn|Xڶm-[ @bۧOM` `o+:Qohl׫Wի8<ڼy<}.]BA?ɢ`? H(P@[C9A Aݽ{w8ZY= !G4)kԨ!/Mv0`0Bo^?Sq  9n8Iw98K{V?m.*,7b1jƍFFFӧOG׮]X~RkvݘBI!;ׇdj׏|AIzPh۷o_z>峗g/f͚mD{cBA+15%^: %%%UXO\*W9`'l޼~:]Z C-C5j׳C 7tĉ,YױcGiD\Q2 `O y*ʁ3Q,3`)د_?泳$#MQl!4_(=xɜ?lذ*-eB]ZA2  DDD'P5CY2_۷CCC]rJOOL. ȳq$`dۦ83rh"M0 +H닋oݺ1POO大?SU<{M6F0l8>(( =: ;ѣNG/qQhƍ}||TTTN:VSWU4izi  C pZ o(~ᙁ__qU۹>p۷o'l]Q^BQlիW[l @1Bͤ~,#KMM [2a  oK$*} Ai7nf @޽6ߠ*hÇx3ԂV`d>}ě_c}m.at4 + g^x G"ㄅ0Ɵ:/VSG[W3o,rADM|2w"߿ %P Ȱo޼~ܹM'>Sw$Gxxidee#nժ9 `P2Ŗ!UH$K.e/8Թ~:@}A CΜ9@kEFFv;Byv~ ߻wa(v'O̚5K|'`l2̙3ǏgVA@ 1U4 Qacmm u%VC5p-rpp1l#lH~&*KAAI]ڤIP ԩkQ666l* B,\CAζmW1OOO xNO"`E,8pDOBF8zb 5r(/-*&&b~߹sтNWD DG7 *DJ/h2x@-}%q(#U1-l >6f-ې>c>&'A^V|$񀖸p‘#G$>HA|M͚th~:K7AAAbe= #G6nܘi3g kU߯ޭ hfVVBB ێ7*++N32JLIAAIHmm+(`߿Qy9А5uI_ù *Z~ry#S6xz   FZmѣRSKkfδK_SSӞ:rÆ 9`׎߬YŶ6rkҤ1mgOy?|p}a߹X+ϦSUQaǎyO.J#   jKf#MLMm(IwXNCN̅۱kNip^nqT_OoQjjeS5)\GG{P~G'  x?dZVe6 _VV6훨hfMΝ>>tԸ*x@AAHm]]zɩZ!?۵MLLWO}_$  dcOE,OOtcܰStusr<ݳAAA?L5Z;       IAAA$   HFAAA$#   AAAHrAAAA2    IAAA$   HFAAA$#      d$AAAA2    IAAA$   >Ok{BϞ=۵k+#+E$   )K6ݻwgvvvD   [ڲe+-Z AAA_Um}W/=cȞ9gPOAAA|22-=kjj*y   ?E힍 {ƆmWVVHS\̮We%71gC K/`߯]{ }ƼUKmSf=r :::iZM]KAA ]tgZZ4ev=m޲-##@_;\ܺ}M?o)(_jsإۮ{#lҤ1mаp##Ô#%  4d$pqqy)622?)ZZ9^ޥeB]\\\mi=8naCO6y3.(--_}v򁂝x]ӧN=j_< %  T2 Nwֽ;Ӑ }}}5/66ƺ=yP1s.M:zmrCC71{fRϞzԯAAAjf#U5kV,-{PTTXaϞ?q?u_^ӦxҩbjZbVVvvv % խ[uT&4(XF&[[DEE脆AAA'%'WSVRb522K/_uk}|~۳M06jd:cz3ޞ:;ݱ+++k ꥦx::ڳO54/8r$+AAAGB֬e*llpڴ5,ԩqqO' AAA|@AAADͩfQk||©S'MLL 444o)//NMKMJLš P   /UUUQUTT(*.:AAAgFgfefeg$jB$'ȱ/($?KjjѣG~Q...*S|899ED+߇ 111;v(//ŋȷnIpiթ9 `c”:}݆nۙ^o~gƃ:|靻“~QlcG4))?TSo߾o>'OP)ѹsj{R3gQ~T233?.//_wYx1S~~/6҂~96#?66￟TTF=ztAC_VVvl^v}M= 1lhr8wmxٮ'R5U5'5deeKE>ZTTTxֶtE/A+++''dv2+7AR;bĈZ2sLCCÿoҫWԩQMMM7l@&M$zy^^^vB̝=c \t_lM?'$653[p^N%jC`N,"Я7riS&ҲyFEG?fS~?r?2ouu[[;|`oNNN~qCaai*h vQUQޭ˲ ի=qrǎA|+))@FĜ:ujҥH_O< ѥ>eʔݻW>zh~9sl""ɐ\t "9(//gϜ9T>}X7o޿,m۶CH{|p \ѣGs`֭[/^DsX8^b? {fϞBQ5J;w_Qu~8:r: DQKmxf̘rknⅠs +V} ̆qOa0<:  t~xf={ 1(jժ "٥K1vBddt! ѓj%ʿ#PEî#F߿pm3[ƍOVVя|*q\_$#/p8Bb<V/Ņ i䒒}!<233g͚emm X\{al^f >ڪ I|,tuu~qc~T(C=s:/O=<{ &YYUQQAj/xjuW.e%ظo7tMd}w2Y& bpGA0P!._u\j9XyB! h3+1\P#D5(M֫.S.Xʋ]Uk`}ދWN޽+dȒҠg+VqqIl\v^~ / z[[butDbR%+O֩#Ò!v /A344ijhV]rll<`YV^^~=uuz5/^,*.vfF߶oqusvu I| G5_~946=|wټw^|#Mlp`rITEx5SSbe؉lϞ=ȇ&OlllAEEe@nݺRf͚Aaվ[(i\׮]^H2'OP8*őP)026hN$ЙEEEHQUi :pBL4^իܹsr~󑯠8wp _ @cdk2h"U-##jdidH!G߿D m6LwvvF_#oC,sXBdi@ׯ_PDIII-[> ?|Wp5-%JE#KB'Ę6&Q,vfQbǽI?8C5B3 FR$LCX|tӦM8~h} &8 6y6sτ_0 sǎdnACCGaBrB߿ ۷CnA`Hn޼YdXZ(bhD3J;v[nh,QJF+~7"k)l`[t|fGaA!qtt^s* 0`jÆ 1qi,.qHdu*Z"Z|Cr(Xo Q^x6q-*'~XZZ{l3Cڅ+?Fʉ`54uT \ I|DaL( 'ׯoݾ~W]g}q#Ǐԭ8lxl\mǎ6Fܾ6֣ONNN x$q=*٣F b .b7 `$F4 Y!E#]"a"XQ0ϯ988 4ԋ#@I(BC~`B)A0 {6n=(.6l"HiWia&~ޠAQ&1h8N-@| #EF! j&xQ6vb}TE90f(-(&#oq PZ*'~さ 1%회ѳ d^C7n eocv >~ii+xq_ΝTT1HաԬ @j.\)==Xnm.#x)_fZlabbV-c={ꨑ+uxs?ad$Na׬MSC?l;QWii'vc'x9aϾ#}F(+  ,9t%4$qYk[;!#BC kyK .Cמ{];wfkv4X#1+++$$d\^100*Hq|ɓ'sSs>} EB ]v9Ė"8533C^Ð(@ay _竑W"ekkK.8::v .FsB߾}Yš,6@cC0! ߳p4IG$^"Y2<*XobAu@]2…m _ A #86""dsٛrJddI➬6تu*6Ч\[E ĕqŵ̙3?Q|\_$#/ $P Ϥ@C\ʿV`8ݹ}yƴ)nվՐ]w؀x0C؛ nܾ+>WW.WR])!H'Oƿkm5bXkS`dg#zl̻M}=} Fs=V#@kg%TIv$9t#Sd A|*aÆi6g->}$-pnys^z=x4ĉO UBu- ۯ_T\\clh[H~iWQ*q` K.A0m֭2}% Ђ:lBDF\e"rrracƌ5(2ypC~~֭ÇW^k.iDGqrr;"Ew|.qY%dffBKs6~&rV/h˳g,Xpڵs!655E,Il#%رc=k,?qDXX{A dJa 6V̟?M#1P2𞻻x!la3wțrl1WJ0Jf.)Sv9a!Iu3fxh?*B3nDEEA0 rC0i"AڕGZUa?"ct@66"\ YU\ =YmU(///Ut"ZZqoуM0ю=k׮&6ůrao8Fx`EKU΅\p)oe$e Dm | odhIMKuddnfLկ_Zz7|7l ''qq޾~of oRZZ5wlYWlUʜ.]xޜY=lw{|巵lڌ~ڌi6hjpZ0kW\N2ZA ͅdkZf@Oh\[sdeKx+!j_q>y¸vm-i +"->qdR%ߪ%2 >T2!Z \LEVAV4p  ;!Df GA Cֈ,رczbKD: KG ^d6N1HlKB| ,W8-O0 YRN9ȺNRZ3{ H &&rn]| F___ #g%_x )2C A+RtzDƍcwq];b8y'Nټy3MKKC_O[ndX2YLyyy UuE1 ґ#GNG(Sf.&/$$s TlH3|+F-2µKH]WE(r8.=/G$0'ss))Y##-}vqѮTf }d׮]*➬6تujRRTu`MN:= ;[X +['>ůrq)-4]]]qI : 'iRH}X͛!%$ 5Wxٸ!#hk=r3xĘ{:8tԸuR#|ʵ됅Y^5Я/%Or~p72^i@JZl|%x*&M>m>=]iCVͤ =pZvNβ% Mhު%J޾s"FGOrqu7hX~~sZ'' 6JEE}Iq y]:wܵ}CCsss[ +Wm֭[Hζlق=zzzg!X/ G3gde!{CoF4СүD{phhh@? =z42{nlbIK.;t耼$''{] p.l2e RG8M[f pF&0B$:\#==ݳE۴i'OO3PJd0ɓ(A;rKQ <<[S#؀̈́NW>>>h)RIXix:d $ca6⮀ǻwo!G"O;wիWT… W,ؕ.P tu+-[«p2TgW B9G@x4(R;wUE@ ;w-Xe#3~ܫE\ek<<"#KI™WGIBvI\E [1^`"[Xc7Zk56ǵīrDE|r81h)X^`M޲%ׯ_gA$#|@Fo;ng "|o~?c^cM48(=}z9{ 502Zb ~b ž}KU((>wh~cͪ`ГS܈CBT-X g@Q{ih_c!߿[("60>0ܼK2Wk 7o{vWe;6ʃBthN ܑȮ AB@7^| ={ Ds DDC7B1FDD@"522b3?+%# ܎υN:M6 *Yћ/%b&$4K. 6%gȹѨ˗ULIʂ\Q;#C;H f- 6>'LrZZZ"ܹQ._7j #! C 2G AP>0e/_F۸C #|.ali&wbݼy w~Yܫw|X͍s!/ܰa۷3)TeK} 06A0 \$ZĚ& P,TڕGZI D|~޽{"А(-YҮ➔)Q.]vʀ-l"a6|\xeGdq>I,/),ߵkW77m۶!0H+6ѕF\.P>b!GYuϘˊc7Pyt6\2c߁ߏ85q/W. ! d\w7Ҿ!ׯoݺ5wς ]zR.\qFzS+AA]?+GGǯ4@~~GK;omahHᤫx3 -j% ˑ#G-,,6o̽Ƀ׭[7DmakE<.^*++!?ZMТϜV   >    IܖAAݳc-N6m++#v: RHӘk(ǮHOWN)ӈFJ 'b> xk q   >,<2.,5W-q@uC*]׷UM#_sF:Qk!F>U팕6Ԯi}ҐAAA|t6reٝW|y3L`lLTk_NsmF!FrQGFUTQm,m6Jºrٹťmi]4TQST&JHҎ/DE م~$  QHF)dȷ%X7;tnR5U&t2#oڮV6s}$'mBNa|}Ёmy#ma]v?s&}۷/->e1ϋx$w{o~"TTT888DFFz!::/^+JMM=zhQQǷ^^^gΜ?M\\\<<G/Rχ$UGem]{Ts c2J]q̎2hkQ:2ay?4;6?_nڠ6iR3~lJw 2 KlÆ oζ|;xqh/_Uk|cVͣW YN񖒆$tp'NQEאwjjj~"zߝ?.PVV*));w,^1o-ٴi|8uV333n۶ۛիm;w,.ZhQr"##A%ŋ͛װ4UUƖ-[N:s?&yyy, 04tuuNiǎSSSk۶m ztcnKw!)ܹ3gkkT~BBrҲr1>>Bk#GNٽd0RRR-Zdjj|yh;w~ DDD@r P4s(ƍWa!Cu~SNm5d~~~llKׯlYYف~QZzCH ?͛").&"@J8qb͏̈́f@>SBC"OHa 1maysR5j\wv>oNou@ˢ[/R܍0PSnn6旔?-×k{ ^|&Z?۷TQs5-i@UKm\ ?ש t:k3Y- a– PGNI^1?dn/};?22-{I?x- Ϥ#KKKYhoo{nPz֭:yW  rw#cbbΜ9t}H&'NO'L0zh(۫Wz{{}|ƌL)**BٳmD"šHAUUiӦӧOC O999Gȁ;w^p!A]|큊Zlh֬96Fߏ899{Pur޽{0~lrʯZ~ CNQ#Q]~.rY{ʐ2k( k‚qƱ;|[>G;wz555ۿx:3 :hxtٵkגׯ@՗/_NLLlذ!z z~( s1Xz.C]P6m:::"3x$؃7~zl{xx>|qHlp UxꫯpxCCC1̱/dq @FWlT`F>x]6hР1cưJQǏhӡC ɰ+h?VNƚr|ɿzDEfS;Ԣp2 !6L4wi e)>2ơz&[]~o1Ư&/fݣ87>H?xy-<9̎I9ũ%K3QVhcxNo *Xw!2H˜ܮa{#y]Ln>OΣeY5ƿ^,:,%rNhH-9(/#'"rPlu}F;6KCI~S[\_] K.( _Rh.脜"H۶3y{@3o"Vbso|կa! sD\`eѳ;55=~YCiqiG/ Kr ?FJrqq7{ kFA |#1@׼)HlCu=r{J?^G: 9iB ,+^~zڵH w} 4~xh{"KF>IҥKBv"C;v!ٔ_FB2622I*rGڷnBǏA.3,6 KP;ӝ;w 06jh4"`?2Y nJJTRR9op]-Hu!jHQQaa!-?{PSS311a2EZ0[! %_#߷o!9 N !X !Pz8 oЙLCex,B~شiMŦy1( _q~?vXnj"iӦҚ# 88\d$ۉ&C :]v8T>mԨQtt4dBlCDm۶ b 1]- e o@,m()O-:uBʰp Jt8܅`$ 0N8喂å.C-Xca4*:s֭[&L1(5c8wFd64!*E+. 4^PGg$Ԅ׭[WZ[,F5ͪa9EeRrwT:F؆>:5ansg2F\BҪMBnq6ȼ^]w ꝗ}Yuv{E߈H90bĜ" k*)ܙ!0Ro4{ƙj*d^Pbj)yљLدE%Vp(6sX??/1nu~ׂ'e YM2 2rhK}ȼli_hu="y٭{cV6mUX<=o]C,,ECξJk8]Uō}C.=$q}~5G$a= ťWW$!cBrz4{!Ёf:ƚOͫaA*=aH[+f} d)ĜzUWX?M۶a:r"_& Ss$%Ie$td\·Ԑ[qF$Ӌ-Bl?oA6 c}}!eO^*6hV|'2Q$5j[tI?^pjiiwF,"`NA E = VB!E.HPp x$<΂"?=PJ"s>1#" *{`9 fHAg_@2?$0!W* r0,UF~W{߄$l :Le@:rVQ!*MM%7YnI2U묹a^_v0)Rr ʧ[5SU'tT'Xv9RLhx4bD Qx:(zU>?jжnK#yFvRk~Nn֬%{=# m;CaFw JȺVɹELh F2rEf}՟ޤ6PX׾/N$^p,aAWؙ3Ҕy(VEζG/4n;57㝱NIa9p+ذ롔Aq'R BBBVWi$8;ŷ=̒l N @Vy ďė@F" ;vvff#T跪 lRv:u*{w(<<3wh & 0/OG-؀@ XH L$țe,o~{T(M i_h'32''--WCn}4g5XY!;e+a ^ˢz^2gT!XKk‘#GP;€HV;+>Rxw*Qĉ@8.CKKM}[1.Bkt lufdd`2ԩb}cJl:ʙ>}: ~T${ !1^`*'(bP0%vO0L}8%\ۗ{UΏ~&m`d`mnw7_*@TTVBt2~7W^)x YrN~Iy?VBzՕ8E%斯%h 8;49E-rjDiAuh L?o OM줫-\:l[|kzǶ^VT7}(WWz[ &siF  w΀ \e5Tfl:ZʊU7/.J/aȣl6J)r?gc2#X eaf_ }}:REAWV"d-Rfs.,e* م7oaveqYC^.aCW.D,Sj^)"fnGodtpH :WgǾ^\7 A:##:->P24'IQ{҄h*ܰaCAt=sxeU#6C-Ї"#29 o'''^? """III<$HM?IbArK"95|;Ef*"nzɒ%YDd lPw.\@X_H}\ rOpAi 6yT|Pt$Sd"~\4j۶-d 7ofrG<Q0ZcH%Y*8E ,iiiFOݻ^TUVHu7n@vٿ?@F͓ *>k'\ \7pkiȹ9sp݋a- 4hSNl-T.+W^۷/[̏X̹ "}v@@@xx={f> h+`ir0׷W^"ۅlE)Ns;:$B<@ b Q.NB3݇2a6A$J^Dѻ(,,į{_V\fW?99=hE5w(5BHW=̈́&@pq\Pbͅ,1b|wb`͹!/BSrOit%+#Sm< NW[^YTGE|0JJzXL[Sm'- v>i. W8>nr('J+*T-즪P[ky>4 ࣨ HTe&U7B><>dv^Cw%ݛN2VF $ j rb~,y*79gr ѭ[tnٲE毫԰㙚D CWX7W(O T DBS L˖-޽ӑ# fEnr)+l2C ޹s'+,?(̞WY@pO|mXX88 Mtһwo1B)88.{vttDGpռl&///8̙32¯ğm[R kggDžӱT{{{N2%_9*9 u^¡^ٳgutt>WČGH@Q쯰 ܽ{ĉٌP #$`30$:z1FXasϳ=c2~Yn?]C7up O9cy3]HiWRV L:$dٿs* FuoLS#gS$NS[W+-\M=0c򬬢?gstj~|V0oD+MJ+ZꩅAuF[ujE+_KQf~}ʋxd0Pa:\u눊=WׅII/Xm| B@_E p8bJ{ ˋ/VZ%ԢE +%\t}˖-ߊY)mHQQ4[|;ЄҊsB>\رuh!>FދHjQnPMʺL% ~mժiH{B\>o˗⾾7oj!jț7o^z]vMD0'p 122BC=z~/)p/.>|#Ld ~{Рxu),)zя A#??+{)A|-^!i jD QԻkNN-o jv9Y?rRR2+m  +gAAAׯ_je_eefffe֯_AAA%0y-8]__ccN:"8#G{}67&/' 77B99Ytii)9VeTUTQa!d$+TZFPWGEUݻ(?"''+GAAA?,(qz :ԩS/BB~ .*CzzF?{iBKUhc srcټ"ꪾF PZR(!^sP.KA >*\J   OUJZZNNNMMM6o#EEDHJJ~Pz ԗaPt旘ںn:} B*mBYY_*}ĤQ HW0"  ǡvʯeMINuwwEM{E¢Ą@e sյd0{Ą]v~o{rp<53 ͩ;;;"**С\7o\zg^IG; .%  A5hO^BN   +"F.    HFAAA rAAdrCQ{ HFAgRvm11N)--MJJ"?A2  (!!...**J cs HFAė )%%E~ { ueA|tAA! A$#   Ŀk.7؝հ'Nr ׉OHy1юi@8' I|CJJJVұ7 )q]Ϝu]jM6Aϱ\\\633J/]Yli223ڛx؉Sy `Sxz*ݵg?jur.eĩH9sⷮ |哶y[<{Ȼ&W :sv^som 222<|AFzJ JIJJ>zd“oGXxD_`k:(A$<}-|i'KM8|ؐYӧ$Q C g=:v5l5<"ۊeG߯wA>*a̽[[vVK o@QA|K/^AԈd;wtuH?UIIɑ_ѢႹ728|:wyZ۳O~6+-~O>aݏ}`Xc5+spuy,gw#GO'$fee(kI\fcDLIIMMMSSS||ɅqyAXҹ#vYڴՁ=gS^$'+;hPj?xt)Æ u:YYY\K]K87 d$pM2Ȫ @~t+(.ĂgO>d䋐HgwQ=!oڤl\n@qի['66NQlUkBhjj|5{G4o#_C}%'ԪUkמ7BYYIEY-: %=p(1)i514Z.VڳGi 5l7Py|ի7h"l8zd=݁q6l)͛搑HD-h~N,Q8ii-MM.%''"=x䨆F{zG2 D-@镗]bbb[wq󖘘x2 ;~VV֪ yZqz,5- t~yltߑ FDB7o߰v@\FFfC3{XfMjւo-l3qj|\X]GJOϐ>tmzKJZAUNhHQQRk+5&6.gO5oHK8u&z[55iu`r A_8W"ػMXpqc.^XqkɁG6i 3@䌈|Ʉe[K]#9sKzum߳sƟxdnםvETWB |>X hR._SS*y,سO|4εKN?RÆƵI2 7lޔDI>xj0!1QJJqFjRGE'ò/2i|&CAKW<]hޝF d=xb颕K>yswΞyaC2{t>37ku yc^Vf]sg۵r=ʏ18VYlrrr+_K# k{mЍGݨ65ٽ}Ykӹ 0˷*q;o^w<}Pz~O5b? !*kot9{e(W儒a)5Rc Y%rcrrs^߉'q͚6[V7k w^ݫ*+H8}ͱjkZ\w? PA^>;'' ((P0'ުm ءCoYw?7fTi1jԙ|A+LW_]h8y[iiip e؍KHЮ§ Hz&||<BR0;}A\Rv|6{*O7)J۵d{JFfr!צ5VSҶ [Z72`ْ_h\,kii#"sdRW!Yjki~O68wRM̚.CwOk<8^6MaYgУ{ 7W-_bӫC]][n+uBtkbm5_N&&؄$J>!ǕgN5~ѲUɾ 'i_/$<ޓBS\ue$LLhA # c>zNXXxƍX!//5.]ED0|؉g3gYze1|4[*,Z-LlMZTC& % \?{@% ? ̬Ⱦ7M ~+KK[nΖoަMŢT*"M+N΃G6?[JKKgy\2L]AAaԭ[;н ۾kϋ/ED sr2h>a&**<#m=CC[vxuQQQ|B̬-wya'eP$F-R#** ~kժ51xfY"4I?.#[ҸTBB'+g'!u=nJs֮]kӺegLvVP=7PGi$#yyy utRZVIMMSUUBDykִ "/r& 3pčni];w}rΝ:^~=i=P5R 8E޵u-w?y.t bDi))ƋūWȇJ7UVR<}^`t"ؼYPUUUGGnzeȟ F ٓ0bxqi͚*((deevܼ~mKW8sμͷn^/!.^Oh% cWJJHZYZHdžͯ߄\XMM؉S1cpR9m5yfuBFښC| lB-7dd7]<--=*:F[Kߩ!C{KEKMZgdVY^Nΰy3B*&$wY\{%Q gD?L?m4A5aʌs6lX._~Ӣs|øIrryRRRƎFs6zC52텐B[DA͜=K4km~%õX#oؼΞG<5u`fM+69 9闓{iZש{/ve5X}>u.?5mĥ+Vo۱!ǜ´jOAfin֥ܥJKK(+}op gNTU}޻s+Bzu=c! 4,?Ӷ;^:w &&'x0bG7eeo۠~=;^:/sWl0/$Ǯ[Æ c}ԭM ?nhYY /! e$ AC?x!/Kྜྷ0nt_޲r8Ѯߴ599Hv芊 iiNǏuWaaYh6]Vnnj9'{ee̬k.wWZZZmP"o2u.%+mswZYDG 3kvYLMUULLm/@1I':K7nѢ$0(xy)kN /!N ot\l1D#Fm t+mSSSE_υ.;]36I5^= #YY2m}}HJڥ$%ھmndʪޥsiS&~@#<g-!/_g;yƍ# +?'`<#;|ɮ*W #65a"Z;wpvGHHH& :ulѹc{:z?F w7 &=`mg|OaQ!No(+cނpԨ&jJ8yvC)))uut?|Q%N9ضeCIq-!?}ޜYM'ȁ=2teR~E8CN;]۷l߹|222m-5"y؉,ȿ#pCys&8NS'Oy]׮ټm?c@]nxpﺍ[/[%--m~`{e6uIaA!/fL|̹T&mܲ=XQc?̹ /AH񟔑lf)6.yF|nؐAٳ~hxM[ծ>[q¸S'Mh2rQH_!/cbbǏuh%sb] dg&7nծ]{wk*:6{j5dfeqaj '^=%w{D!{" zg\h*sr te? g+YO!ہ ǃG &4W~f6y"p؅0.W.p[qߢG  /?jҸj*O~i[+!A:U7S1uUA_jZnT0l޼>>١C333%%͛6"QZZZEYSĤ$su˖-EDE20lca//'V^y3}ڴ%K`ں{VKJ˂9#аgϞ*ʹqqHieb"-%v1yAAA|2_Ps[[[ȧǾdxRlLL&Mo2׭WfmzywQLML+&jjj۷nO}9$Mɺy@ULBRRBOOϮ]Aa/ mc]\R"+##^F`la|A"ÆePTD$wQ -"\K:9ۦ;H# !""e˖R^=Fmmm2~zѢE;wիƍ %nܸѣG#G())}v-8תUUAAAuDfRSSgquu=uꔣؗ>?**jׯr `T-,,0ͫ,--kXgf4b5jԘ1c=;~gᏢSΝkee(&My-%$% dϟiݺMlZkU9txeeU,,,7W2rAo͙3F-+{>>gΞy5?KqQ_WkP{q~RVGgOcbb2dȐؘ|A?ǏI֭EEEph޼9!$$DYYGА,l߿Emikkۮ]QhH0vXd.fEGi&&&FSSt˗/ҿ\CdeeT!??۷mUmݻѣG-crȑ}Uf~Аu~'?lެݻ ><ժ];SSׯ?5r仨waoBTTRrrr222 440wuuE";JJJH|ds)I ˶oBs7 BӧO{Y_baaQ#K~A~jjq5>}B7l૬"##)+MA?8ԩS7!(]]]d1+;;{{{kkklt֭tvgϖGX`6w׮]o޼YLMMmܸqЫ/>{,;;[KK~STT00f-jQEF=rvvrϞ=QÇ۶m;eLܫW>x 99s̙FFFP6l8qBhJ5<<&L 6m{A/^:ŋ2KKKdh Lс / Ƌ-:~8Gw8 n9u:́3,X a]t=++ Ι>}:T06lPQZ׋ &[\~zt 2/c x+Wh-ݻzA ތ = \a>@3XU>|NEQzzz˖-cXbb"ztdc`ef͂??|ΝWT\UXTuMȰW~-kJr*F/ү99jkYZVSU mJFV;O`7wwpuO?Ȥgf9s6/&ypp&M=G!!o/!&E}ﯬ3/i~~uexyݍGo[_pVEZ ÇD#?fE!CtyҤIIIIv q^Zn݊3 ²Ǐ#… ֮];,,XUPPv"Ç WM:Z2_|')į(%nl݈vɒ%޽{^XG2U T7k,Ae  ͛WOĈѐXD[ji|rF 9LFqqqΝ;WZWE.s4zjҥ4pT\:~S6R :3f̐MIIkH2?(iӦD(('gwލҘlعs',tVDQBz%$#IDhY~~~Wwׇ @AgB((dHv,BQzɓLr7Q/S/\&jgnNC7u>] (q^PP bA Bf@Eȑ#֬Y#(2448*؀^sᨅr|  iӦ 4] 6 ezڒ5?̬W堠eXj5b nyٲll|?PU;wJ哑~J~k,.v*x~OO|UB~]\+}ХKtТh#ׂEuWv!?sݻwbq c7AI !wBX]]]/___sЖ-[:v81C=TTT4pkhhܾ}6 (GZn]Dȏ]+q9si:{fVU4z 2忴>{& BOڥK4DLh9]vm%,<ˡҡͼ`9?_G2j6=cPz&V&&N~&@ "*d!6K.͛7sav''QF sw!hYn$=<*4 i2T(+ `ADb䰩`TANt%333(贊jfyr(.]C4aNN}qbPhߘdtdc$&&I]D;Ӆ@p#AWbnEUعÎ]\\P& 5BR2=ammmIrrrz#w.#]t yyaNN 9>7oq/Xs obw5lذ "cDlAܾ}vڴiȆȘ|Bff$%Ɉ#Eqł U7 CfNunm8/00A$"#Giӆ/nݺJ`qZ@MU=ЫWݻUUUU!89X^b{#'eqynD>\q_CMXZZ;v,++o߾[[[PDprOP| l/$   plˍ7 F6- WC ( a z%7n-9o߆Drc%pEGm1gFV9XoB*:UծO- ͺ\&,?v1 WpN]8gg'OD|)X=oʕ+Gf}}}6ztɓ*3Xˬ>Fؐ|}vAod HF儅mذ@AT$<<1.y~~~,tvv؈@4z9r!BWT XFltttӣd8 z z}"kmd2< ]B3gDϹE )2j(խl<̑;K3S9)Yh@]]=>>֭[s΅]p Le;TV'̰} UUU֛UYJKxO8>7=zTRRQ,>}lsIJ ʕîG9fff ! ؓ9޹s!fUcF .8)`&|RVr@J+A 3/_lhhJٕ܍G+գq=·݉.]BROOOx9V]]]֭ fɄQct.EӧOUΝ;9Xp&Y DV$ضo>ldCQ...h2u܍ 6]Ge].011A_`$_^tR&WX L?cϟ?GnݺsDDƛFE#sHHr;wm۶lv}FFǎŷ7oD]Ȇm_~7=W455EcBcQ,ߓXŊpLnN(88UVB1 ^8ArD2  sd@Ξ=aӦM̍1A3gΰk-dzg'":r}* _xƍ(oj,svv6d*[_N<mi#GܶmT7w՘rhOBF&''s .DX tw&za+K>}rrrX|Qpȑxѣ+WBң0 `ME0f.\\v'"ͼm=o֬Y7l؀h I{.eHk֬QV.@8pAUVihh|v_w2,f@533_$?׮].677zB/Ex\-
            ,"+99iM-[ .521B;F lp>jٲ%#"WuѣG[[[ _^hΝ; i֬Y^^^jj*Z]vөSľٳg_^__+===;]z޽{0,WUmf؀6U QF!6A75=J+iUeee.iH|φ ߽{7x`Uzuopݸqu>}Oǎc:P墴K֭MϞ=i㦐/utu8yPЦMÇIƍu6)}l2իAG8p >>%6jk׮q  KmӦMLLL֭q k޼9!$$g7DSS2쬗/_"xr ɊםBF6iձcG!3шMB4??YfBMg#em*(ybRRqIBfV s ii邂fefׯ_?.>8!!_={GkM-mBjluuu,@s@,߾ѡ}M ͸zaҸc_p_̧OaebjzŨh,yZ~ /_RRRM]A ڮSN:ubQWk)'#Ycǎ{NFF;99ݺu+==۷o [߾}wLƍJxgϲ~7EEs<``))CуmuQ؃ڷo۵k3uMJJJiӰ V/^|С/^YZZ"=|tt̙3-n߾B[/Z>DsuuNBrssMMM,Xϟ_r%!q(*GP.]rww222>}:ƾpuulll &TTFHkRG.\}0DgggLLLP5+&Fxx̘1]vQ z <ٽ{w;;;,-kф 0r5G^re-PfjjAaǎГ`)))׮]SUUm D3a^ΪtD>}1ڵo> Jۋnz*˩v#`'"##-2cBaTCb7.``nݺtD"@Fú)ؿ_>YYr9gl$5K^ŅJʑłvo-YRNN.!)Ih%%ڵ5VZVDd$ܜaN_YEf}}333**&=-M28 U.*ꪓS޽mظC(!@VVV_Lv>|8'7R tyҤIIIIv RVZ[nE UcdXp!0H*(( 臖8|0ˆm8d6$ {ӫؼ2/]7oMG"`{feVtCda,5k0o@a,xyyA[^z@jj*עHFF||Y`,ioyt 6zb>a_yzz"8݉'޾} YUVVc?w[ff&NĐs*'#F`3HA7srr]7 RH("|!iӦMj{hcǎ; WY/KKcǎ]pɓ|h'vMd` JJ p=D¹uӐPYHLU(!!3pc[R&[lllBF[ֲ4-߿ ]GXņLnkeYBg>xbOh0'; NރaBt>X|+DYYYLX uVU# E(ƊŶ(jԨQGD>ܹ/˹e>ݺuC!ql/:WFR2PR\|(UQQLNnR6}l pkNN}lmZfee_z>}L84?//.> y>}vZX\K5oۋ/d\{쩤~vJj N'8n޼Gqqr^~^hX]:srFD(! t А4hHgggFTDϋ/_~LL Gn Ed#<  ,, aЖϞ=*n((:'D-`J\a1cddo7nwtt ^bEdd$͔)Spqvٳ' XD0 ym۶q[JEVNPAx*ê%$ bjj ]܍vrN( Mfz!XO|t.Ś,,,XfQD0FQPPԩS/_ wil0ppp:㏐+Z`0F: T:PW^v- _bcc1Y 3VYl$2uݼy_BBdB!YYƃ>]낎?sNRRnnە ._**PUO#slC_!!CA|XYY!߸q` } -G;;^z!F(EXb & l< 8=sE3~lCTLgaЊ%Pbڵ m9s&DgPFN.dnK9mGV8`'zc-WT@@< S9M]'tEo46Eswޅ PS9l:ꈻ#^~ɓ'ݹG]]b ї-B+йJf |hP_kn%nnns1UՈB:^n`Wl/bCaN`{{19')))55b t#FF lժ]ҙY>7Aի#v@vǎ;vLIIrJ:u:8k vETQјb&֨Oc + vDEQJDAr'Ҍ޹3g罳;u븸8+++w diiy5?cccN|ZdIo!~<j4;"۷kjj"G8[8QrlmmqPJsƍCTԷhi%^Wd!n<|0\]]a!B{xx/_?Th$.]t۷o!\ͰgITPd!PejD,䊔ҥKWT Im8)ȆN:F!3Zׯ_?yQbk׮oR/ | ѽ{w (_, @̉`v킺1T۵tȐ!|ِ!`mDbMIIIpR(sPYHܴرc/^ Ӯ]; 4?3gS<$?~ H)+V@Gs-VXE3f֭PJ\}}}ҥ ׬Y<֎P_ZPty"  sssh9$"&T%KW<) ҥ 8}6m$te&I!E]@!}ZӧM4)Wnnn[1E@B'+#۴ickkccbsy_:__6/YdzF "##+B>BBB;w4lPUU544rرJ1Ԝ5k}}}[ngo!`:uT$E ^RYz")믿ʔ/PQV8xҥ˗_~)ުT2H4euӦ)1:ymcۺU /||PWG#֭_! U\J*ݼySGlRI߿y {驥կ_?{{{'99رcׯ_o7gΜ$箷`233G%dڵkcbbMkPJ>~ccckժ?맥Xӧ8N:#GܼyÇl6mbu]vSu...(˗7{F"\zgPaàW5jԐ'&&&n۶8n۶-% #G\v 311nܸDTϗܹ( %/vAeˢu&O<ԯ_Be 4( `ĉk֭֬ _Eh~pªUE'M$?~ʕ+Qŋa&\\zmٴiJkqqq+VͥK-Z|J 6}7nHIIi֬و#ķy;wHƈb'22_խܵk7EzZٴ 2+fܳWJ+geg=xT29|޽{"eǎޱcG &Z11ǎ PPAm&'^*%5BH͛7/2T0`HK7J2##":Dچ UeH;H5ȶ3g"3˗$( KKKq <-&-i b666}DDt)>mpСC`Å  c!H ;Q5_~D;&@M͘1f͚&LvځYtUJC(2e' ) yQ$r)M@HDPM8"rp0ŊV*** n`;v,̃B۽{7Jgvuu8p TH?w?Cnjhl3hń(֍=<XRPcRRs(L2~ cV*4ɓqqq9}4(d\p!NYH~G X q:uqܺu7os9[nѣJ]{V7`buKQ 礦-TY `CLL EP"?d'X냶ftG$#W^=Px!%Q2dd6m)8~8$urcr!22oJ. ]oϾ̌ o/&ߠݻw}qUK(ie̶*9gnɆ9vi`-Lsf[...-Z(nfQd Y^bB)nܸ1qDN$x[k АG &w RE 'IEdtt4̬Yͫ ``` .  6*j͓(IB!d`ܹs!cXEWre(=m.nX MB DCۍ]XH1h`ŊTq||kNz/%%?@pB]Jϣ>z킩٨Wz*=@ EڱcG X<ǒpbbń'bTD(C]*VSczz:"B)2Cpx+2I6K#Md ,`ɍiȼiԸQpS[ƍK.}hTsJ|*4-[zq U0Ȕd1b_.&;K1efnߺծ=tܚwJ!A̍Ť/Ls8???7C[/^֭[Ht":8077*X QZd tȑ$(T ɓVӧt#Cff&6m|0C~a`m|||?/^r˗5k֔M"DE"g'N%RmɍPSlٲ'zI"9-]b_"*)U999""B!$`kk+kP)OdxɤRl1O +QիWޱcǸ8+++w!---]Vre`| -O>|٠!]]]!G% T7Qj׮mbbuG,2Ŧ>h,|"Ԕ\Cw*)P87|5~xD/WBP2ܺu+<<\ImNm$eUWRsANNNQ,D(nnnu[9Çcƌ"0~b8 /ޔEj D~m۶J6C*5233jJur "Dj~Nn@//ϟ??ƶWFbR{.\vi5jx{8xM3҃_< k;kmo.Ef-ù~~֮->0_zj3__1`B)*ޫTQnUkbM#TAbb"8,4hByHΝ;'%%A|LJrGgϞS vٳgC. aw^g!!!9q 'nqRQlcO?kׯ_ AAAiii;v1b5$!2B!KttGN>xqڴi^9;;?L2?cu!#7~VB!BHѢFB!B$B!BI!B!2B!Be$!B!HB!B!t!B!HB!B!B!B(# !B!PFB!B$B!BIB!Bys4B!B!oW# !B!PFB!B$B!BI!B!2B!Be$!B!BI!B!2B!BA-Oh֬Y͚5 =zҕB!96Аj,88ꕫhc*an#B!@Fjݺt8;x`FF6X1#vmB!yZXYHn~lXcUR+&<=A!B!vvvYYwqܩSڵ K000%&&n߹B!BdedzzFJk]]vQUUD |Goݾ#}ԥsaJ,ɳe+Vy<ki_oqy2qʴ)ֱ:syTB!BHct)}Gogė͛Θ:yN/o.:\àMq|֖NVk!OLL7(SgggkG !B!?$#+TЫWo==_vnг/۰n7o޿kW\=С_||sK(1aJ2i``ōB!B7`ֆ  0@Ґɩ8x;۶oOKO;#,W{OC1_Fuװy )#{ȩ7w;ޮ5+lZdwB!BV#UUU7jPJܹcgdT6\| }Ξq}TB!By;૯2++ѣP_~w ozu4HMn:<񓧾uԖ֯YH*lnkӪlTB!Byibl0iqyoi 憄zytܩkϾݻΝ=Vku~Ԝhvk߮M諰gdd'$S !B!njVmllz-SS---<k.5560EDDd޽z薞>׹U_޽iovCҥJ\E8s^ݻjظe+=~N3at!B!QbiUǓ&MyٹUV-[|]23鸏B!BHRM/CB2{jHB!B)dS'O5l ::z=))t!B!|s.B!B@. B!BI!B!2B!Be$!B!HB!B!&t!"##affF'B(# !\MςBI!E uuuUUU|dgggffHB!]Ң@ZZ@ykx!'\$BI!B!2By?d+:!PFq{C^떼 ?wMB!BICGۻ`y>zܶ})f]2c֜EKG|_x=|tW`B!H8E]_~-%^v [7[)nP/ث>0Y~Ӗ#<& b{/=!B)Ws)EmUWDDD*e1jw%KѭKt!<"ªvlZZ;T_O/5-y>Xj9;W !B$Lx䟷Vٻ_jjjx=>nG9ԙ2i|eҕko zߪEYL͝8m$[)XV2=~Axc|G,a޳{WA_jjd&&&BZݰ9Ȩ(##ʕ*4vLaz׮)'OEtu{>aMtm5_,B!J '&&ŋ~yFmB1"EEJɓg3IFFw:vRH!!gΝ_~SJ64lҭTմy_dfPЋ@;:uǐPSq%Kdee߸)twZN+cbcGY O𛩩IXXvُtydJqEK/jɰŋ`@%*/oQn?rR\/_v|!BF᫑ʕ{^xD~zuC?װrJ5JYX@nֻWIA8mشzg#wp;yʧWdHA_gNoҤQ o.I|*]O-iKG1aQѱq~q^FFFWd;m12ؼn9[@^uԎƮEs~uK΃v=4PǁB;~hQjjSg*Uc&mmn*%~a 0t~Qޝ۠'{u3_Bث:m#92oK )Foߴe-..c7 _|C r!+W]R1.>ѓ8R24? ujK B!BYk׮-40vup=™[6i̺ƌڹ<լi)P IWCC~{( -VȾ][!# 8WC#g;#>Td9ESqJfȐVh\MS̩eddXf EUX9vޜ*MpmӺ^=ص3L,WL/\244ħO>|%IΖ-VV:ȍ7==-:Hxmo:_;R˙ mr5#)RM7MB!B7 M)h_ΟpwO|) tTb[N::9+1)=UN^r>c!/C 8c{{-V-M_N>~hZg"2(=}|F 7Fg94nZSeffzSE OcTX!!!q'Ohȓ?ư#GX*n'NLL|i}͊kآr Rzj,[FJJ g s<];vA=6oj]^=CCÄIq_9wkuHN5G.($w];wtڹE.=75-?i[ў:v6ǏaPBV-rw#(}ԤqCtl߱[__ޝfFc\>B!ύSː.:(+[fx/z*l/9Ϟ;_,K.;J۹{s^=wW_OܩWAiHokk3g/m_xnނş"EB (YRMM-22πA {vl^ z|DFF-[VSSS5G NOO6337!o]/woׯOA_9Lyj_TcUQpֽA/?iX|9mmmw2g޻ϓ4ng߁G\$~%yq1蘴թ! !BHȷx2?9v?.:yWźݼǪ5RC[䤦;0r̝gaVh ʕ677oڤ'B!edyۯ66_( dh` OI̕R0AAPVk'gQ#ʡe$X0W:B!_)s?[Ǫs$$&)]ʡoH{Pϟw  QaCʌ~鳞ݻ*^ZcDd 02++3!!QJ55xyL|Uccc9!(9!RiiiffS&do}57"p&Oq3SS|8u1Z5̚aV+WKM*]d?NcfFfH+Fڎ]zFƓ'[@!$88N B Z(ҿovt0wj%B!-Fx\roR <5۵KNN-W̐_wvaB!B{NNNu յi0"2ĩ3: !B!)VQÛZ !B!E]@!B!2B!Be$!B!HB!B!B!B(# !B!PFB!B(# !B!PFB!B$B!BI!B!2B!Be$]@!B!2B!*vb?v=IիW Γcǎw׫VPJ߼y3>CܸqcΝB)$ww:߿LMM9r$@y.]zןJDDDܿ ۷gffgϞ566~\]]͕o߾ᡣG'7>k֬A 6,00ӐBg3gΌ3歧ܹso89E%O!?,Y&OٺuQ>}}ӧO4iRRSS(YdyLMM]翧+eu뾧=ϟ?h}Y7)'ZZuԮRqffVllS_?%B! nѢ_|!Owss;ydpppVVVG-"ȫW"ڴiRnݺu,]?PbŴ+V gLL b3fbϞ=Ck׮É8 ?~y)U֏?/W^sQ~r:tpe577Bn߾oΜ9̦Æ kذ!2ܹsg;wD47o={ׯ×.]Bp w}w .Z%o>==ƍ)))͚51bܥhԉ'#""/dXg󁷷ѣG.٠AI&*uqq%Cݻ{G:3ydS駟t/o۶- ))u֛7o~avvvӦMG%5իWJ*8QCC/^@GB4v'' 4 ǎpB'L O333G}p&]y…+++8suA~zt=jG6ѨQ#Hٱc:*S̼y[TTcL:#!!!e˖ł-eɒ%c\ 7nL4HR>? CJ{ҥKbVR B8w <1кhS^Et } G!D<;ĝrJcF^ ö;B;}Y[[WP6 FЕ3g{h$\ &.X`FP_QN/_<޽Tz!,STG@65kp~APh"g/j_iԩSߡItuu1 "G$ #o߾iBo:,{})Zi>)?o$#ڶjg:Ϗ Q"c\X0.e!R$̜9Skz9sU?_.iVlπp1.^KaB6A` ի dR<%꒟."u늜 b?LdsvvF{ţ2:2eʈàL<==Ś6+" ֭RfJ$%b& Gd@p;K(L! PVr/(jmڴQ 0W\|駟B7(^>dIR`dRRb24 QHJ%{E-0Qu"dDF)U;ĵ*J -@7"vA웻]8@RB 4%peHGt Bɰ11wqq;wh# 2ӧQv%t9.T1ֲeK=ҥ gXuFIJOE0h{U+cPG#ŢFŭR~Wn~S2X\ _r%< <-((tCvexUHxI(իWwsJn@5@tBʢGI,Y.ʳ70pѡ؃ ĵP0LMMŖN(\LPK/twwsڋBDG7-OŸU2? )aq͚4noFYq:B:>&*X,*k_oO zc>"wAІa"D^*~Z)-_Cebb؆rʈsܹ300P)VC9YB*Xyf4Ѱ  A4@DN8Q^2<(GihHmrU_ϟ?XⱱaaaB(yJ ]]]ˈ^c{ ?ѕNNN *Y@DM@UOnZ q?"J!:#V;Wq [q.܈ 'B*]MtS1>qF~Wn~Sj۶--[&zkϳ7_ҵ,.dt,**JEq{v8zLhH jvaTW\~g~ȿ)x"*`G-&7q|AeL1Wz)B+큉I<V9889!ݴiӔ/ݑca'2x[3 <*+M.7>I1;A`#]IՇJjCQ-섷Z,{,QD߬b HM%ȏttt m VXif݂IRMUJ >txDdTRU Y*+ 4ώ=K*T !4oٳK,QQ|]TG"'\)FA $B ;;;)"ڵky 3R:],#Y׮]EݻwС>+Tr[z%إKWJc,DfbyK^*=#NAfARɽcDiҖ'ql>[əQUj6[)0;w-V"7&O cͤlh/wH&']!0p ?Жܿ`#Gh"v(YwǎU+^^^(bK-[؈0J>WɊ|TqXR$ìYNScI A+WW SEB1"NئE?9Br{zzBAur "BKHB-;h ooo o۶%ĭ8"0Bt@<_. ^vrʈF[YYL/@#^šX)Ѥ<3#h#G,U T #8`ǎB҈Hw*m \xQ"D_]t N@7%+jbMǏ֭#Ä=z1}D!Gb<ݫt_~druuEp)JɁ*=$"u87nMWxX2n8؃%wг...ݻw֭tT 0tCBBp :hРA(EOOoɢF8իף"w(5dm޽1VQfZs}6g8c Aܼy6@@D"6)Y{~[:up"ڋvܩxPIoQQ,aT ܹsEJW֭[-[&" CHA0 }ڥvR)]_OۡڽPJ:]~Y'OPBBB"4ސ_ޅ35wVޠƦ7C-[r ]y[|BAa`?t8ߢW{/c=q|LRC:\ss_vYq?y,K6UqT"sT.jւNڹ=BE*bDIJ_2e t䔤I|5l֮]c"JU~P,d́QFkxD"xJ7lذEWFۣGs<3KV(=e\ >xxdT93䙃_^ʗ+;"66olZv`> OmӺee؃y۴EKHHH:}ιe󦖖6nq{O9٪EukzXW3U6*bpHE+ẍo!Vnݙ5}|>F};P-}ѷW[?yCCB!:jΝoZ&y᯿ZhNH~ rT*w„ A! $#+/;vwi)))x524T1Ȩh%+DWW{UTP~R Xbddxѓg:uhץS]x@̩@1-{&h A-rKE񭤊˗;&&%IW(*dB`%$EӧO6ɍ։'r}XXgΜIg~.2Z?JSSS{Z5,9gߨAJӲ6+nZ"mkpʵ)zȝAUUQll|ȼwԫӿw!q! ^2"cԴ==y[Yt##p3B!|_l{CH TwZ]Eqѣ/ 믕%cVCBrF}<1)9B;}١o LM!p}[v=ݯ\e(MMtʔ."eSUQٞZ]lظbqqM=~X1#mؘWa9BNWG66Zx>VՅGMjjTn;?lټYll\ZZ~քB!)S ATp%Jq%#SSS9ӑ]:S-Oa6[f6m٣k-۵Pw|֯WSvp| +>ahkaGDnqc*Wг[g}}ĤKW AMvtؾmtF)D`fCmH=L /gz2zķ*ǂ B!B> bGй]M pSgf7!r!B!hyǯ!#"ڷk#6r˭;wJB!BxHN5}Q8Ibb>& FB!Bׯoݹ˅GB!BQ !B!PFB!B$B!BI!B!2B!Be$!B!HB!Be$!B!HB!B!B!B(# !B!PFB!B !B!PFB!B$B!BI!B!2B!Be$!B!HB!Be$!B!HB!B!B!B(# !B!PFB!B !B!PFB!B$B!BI!B!2B!Be$!B!HB!Be$!B!HB!B!B!B(# !B!PFB!B !B!PFB!B$B!BI!B!#B. B@dd$@>+Be$!N>铕A?B(# !wJWOLBI!АZZZIKK!o!B됄CB(# !B!PFp{C^}&&%]zĩ8򱓭~ BI>kakw<|m.S͠ eƬ9, xӟ`慆魷ß&k~v!ow~ut)!Hiמ-uk)HlشeFF޺JNNvrxy^폈Խ7LZՐ|}qQACn~n#K /06,X{}zуISyܘCd]dQ1>={ :XCC"pw {խsyOE!ʗHCݍ? _[Kujc'f:OtP 'O3ovg>>fvRl 7H7 PTT[QPQEQ@!(S R+{MxYmRnODD9?\x+c@E Z}:=ܹ T4sl=Z4_fŧ͔)'*lXy=EΩPܪoM|G "?hQ7nZ5/Y8WjլqyW>pP(-_t#EyhhS{`{rxпo`u%b׬zUx ":գ}6O>0(tḼ\v_\>iSޘ0i6 D?2oN|IǽF^w}g%k9sC}3/~0C^x)-E9bX1S+#[hU6o6}n{]WNmErsyD pW  ʳW+zm3WvbTTID+%m:Nl,6WN:ܼ#;uNȦ&^"~9my_.ZvE9bİzD{ݧVܤ ˓SR"#K> P>ngΜ$t(ܱßzԩ-}uYٱeL \Vp8Ϝ)StaaFFFrq ox⯄t=˜];ұXFڼE/8yЯO/13O;""JZc_|.ЫLҫV\AzwUńx1pm!MR"Èѱ}`ln^q?TOwqefjC"^h,r]ue&W3&),,fOƼ<>;;G<*Ҭ{}zps>?|(SdI9懵[/lѼYzFqr%lբ#?-Ϛ=GN˜ ժ\x3p̽^F^«V\6`ŪGjٶӄ7&9.eQQ7:z.#<|O>kҢxuMNNzuksqU-4E F)hFηt  =u1]yyЪEXOLe5po֮^>1X|)THs&d4=̓}!cB1sV-YBM \mX'Zo[zUNkTzUZEn+m/y.MXhNI9)^, #W ϝݨ)g8uev{ًړ}2bbɓO??FיM=@k-,[Fg_+Z's>gY3߽smWMdKe?! Æ̟qhg h# 4EЩWaY|vם[N[jskoۺՊUȒ%\0ZXiY]˖)c0E_,3o9شIꅆ<f!+W^ac0h'JJ.ؽkO?r[%#"=0ڸQCZ5x~LǮt:Ю%vhÏ?;۳@[xM=ib1Lλn5~\סKal2}0c)ۤX]F=ȍhoOlJ+DD.GSQOHvݥ[4KG2q9ԩT-/;;;::^͍.^,qviӓ|Š?G_S,ggYVGwyh6`/pϖ-[h4^cO>aO^W|*/ס][́gw+RM?\زe1co/a )]:ӏf^ORRFFdjצգ U%'E6|_}%pKn;E@1Ҕ}eDyxR|#b$\!vMȘYYfY&fK¹dōK Fb$ Wor*Fj@JJ b$bS+ Fb$ 1@#H1@ Fb$ F@#H1@# Fb$ F#H1@#)rU{=k0++#q g\JHx}:Ze \ԊpB:U5W;ő17<8 F@ytVĿEщ#b3ϧx=2C􊢒$b$]ί:z9^*7\HZqfcKuV˥}Z Q *FEPiQ*F(bxˤs/;(H_v.BzJe延dũ7>z 3 }^Y^W0iUUtzE+VrsB^ܨeh^/-k{<^t)S1Zd%b{ZD%"[Ղ,ZИ+h) /9=Ū `c|ۦjmP6|ڍ~ F)G*.w0󼡭X=%Cjp0&)(d:I1eTs8xʨ݊+l%ȢF9-ە-i~ў3V˯{SCԩLqs:lIIdӥ#']Y(6#-+_q:/5hfSADU>v+|9U1UVN1 )Rj7Ŀuyޭ眊([k(^6M6wŠ3%sEȜڽnPm74+9_1}iY-ؼl5$z"Micw oySfmW[LK:2z6[)ܼѡִbrnKۂld }2C)!Jplj_r͗v]Zq&V>e;曤T 3*wň\؅u/OP:ڇ:o9^m7[٠8c;TLt|gm +usyxM ʘ.l Šu_yXgjÉ_'gpܶlҲNe;hӁ:e"~kNJX92Bdw{N iRI,8yVdHBeWr{XQCUb9k?i{#FEV 2LJPo FWh]Y/w{GJ%-v'='_̼d': 7+txPcڰ@}>37[\w.)-t<-Wr#ƃzQܝv4T&iTl L9UU1O8"͊/-ӯ刲nm.j 1kg2g*&b2H}i>n̗VS+%/`w|mHTEo~?-fUGJ۠ܠw*FDFg&|48V* g3S26iOP5h#OUP~Ƿ7_/喩}>鿨PV-HQ&Z惯i">-AȈ l1S­F}A~nPFH˴0I)}LٜCau~8pJ̟$3a_A 2w~_R,%yPUk积x*R3o;FjRKDʶJ/~?5~ZݭL N;Rl:ez%qS"_f9">l+]|FR )#%oZUw>3e(pWQmߺo|%b_^Ù//I &y F_}RQdBŨWDZsɋ1BW./镍F*U}rVő/wjh4MU1:ɋUB^^ҨʋR*>l8]ۥ :f15#W[ qct'2Yd KQ|Zbm(;'eM1Uw~iΓim"G&1W?TŠ r@H3rsʁp2a/$4񬈔 *?0XNK:_kik#*ڰ:YOԤJYKmS12L9{HR"bE(E[_݅bH/'IU-b EDNӫE-nb,R0WtZ.U*'5ilJxAZ@zFqso-: vKm1R,?H\[q /b #q(p;iPL:ǹUbVLUR6P,N׳v,7ZNp5Rt_M8F6U[jq@k$ Fb$ 1@#H1@ Fb$ F dlV+eIENDB`screenshot-5.png000066600000244652152141651170007615 0ustar00PNG  IHDRwtEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp ,$vFIDATx|UeuwͨnnTBIQPADCztwm6q}}9y2f$[YZfNRRR=&mVd7ݹ{o؉!))ںpB˶l,.62--,_޼pdw&oݬtSSS֪OkתpW*""ȱ1}zu^Òe|k''ǣǎ8txJM/I[kxxį+VQ]? # |W)**Z9HyEY->?jlfffR'1)iiйc"m&qVëp3g,P -Y 3uקWZN, -BBCu7w^;ue9<<,ss׫>zdמkmܹ{Z\Hݹ{OXY,a9̙Uڣ*+p2΂YKmy +׬Ϻº %V"w>mPC}˒Ŗwݟ5g߭!""''G"Z^%ѭ/+VmڲWvOc֬( {u_-VYࡐШ(SbŊvhAM+DGG/u{ˎ,=JֹSZ54:s+jkܰ4Ds]{C߸8 s>ݺt9gl޺Ys *v/'}>e-¾O{~`PPRRmէNRWJ_Y~^t9&&ѱfj~逊.Yqq..βaXx:A+W9}|``[ ^G}/DoYBDTX᩿C]iG՟nڼMb*Kkը>~\lmmBî^.?ꡬ* cc#{̒s/1kF3v`y=o0b.ʲu^wXeظXʹŗ_<"_^vg JZPZ:Qu uBBFFDD*X? Sg~TK\ >ek:;::<6!!A%))r,&&&_Nس7N ]OYeol?*=,]2Y+1!'anٵgߴ3 S2/!_ޜ|􆫋KTT۵sA]{jaa^HaJٳvg?-"2v>xM[Mp?n۸ImgguG} c.==}u~x];u<̉#*q .ڲmDM7T-QzM4R+C:s޷IHlgk;cժjEqjRD_N^߼u{؈nش{N<;q;Jtc&Hի[gr ))̓]Oꛚիi^}gv͊mlle险ӿ>|ҟW^ki93zSrk(cccNPVc>:#'ͼo/\d/#>eWW033W,^8z*rl\ܫO\!2Yiii ߯OOаD;sfhk7n*_}z0WT/\ jn,_nѷdӔm@to Peڪh۝*w@**/WFV(UU T^ݻ*1gڍ0nmmx 7\ĐC;w/Fszs־+u'([}2h?Ggg'={Hqu1m99""̹WSPzfeރo~PJ̚1MYEԭ][ҽwjk zt?Z2?{ 153~K'ዜ>f9{‹_rujjj [O''‰SW2[knךիVyjUJ(rHbEu2iboC:(-ԑ[ݎ{N.=,eT~ƚCߔv1gΞzu(gC1)S#XȽW祕'=~C`CwKZm8 .kF 5oɗ]ZuH3o2mzoڲMRv4}$ sr/"mpqv.xaj5k)Zhkk똘VT1 _̸Bu9bصPneaaAoe"6&VYP,_γ\k7n=vB.GK/`dd$ӱqqJ"2*joZm*-6eS}3fVFEGU`9e@YM bb3/xB2#X߷}(7m+GFFwEhhXvzS$nqw3sƴ>5]]JJjΝ;U&TPȗH:\>;!ሌ̶<>>!::&_rD|}V]?gE?.mڸaoCo[".#maff>g#zz 'W6L[eMs/@-+U215  ~:Erq(kmpjj;wu_*0WTfJ,4+uUN-6tP-7oݾkϾ;wE J[)u{ukuwv,K(ؤQ?&:iժ~krt//> GUpw sbm?hҸo(N~*Yt٧>f݆.[zG&;N䂸xulݺtT;uly%VNIzwsMLJN暚*xfܜjŊqpW Ճ6-5UFQr%y=~Ttt?3%%EYȹ /oLchꦦJ^sm(k֨& M¥+VQ_轢eeb·,dnXVYfhhuÆ|5k(">{єi*'}(%ٜ0u+,Y zRJV-1sOe_m7oໟ j 9 sE2ǎ9s56ȏLf9Hp11ƏuKeڵjlݾ-?h.TpIL?|*ʴQnթˊRRR?y*ںufB6-Ud7bcb1Պe?XJoee]H|&Jضf/{9+{eի,P`W>~┬&ͮUfL P7mn˚FFFny ?JPJmZլ^am H[E(@G:Q-"mti H[E(@G:Q-"mti H[E(@G:Q-"mti ^All,rի}BRɫ; rK@@J20xՋ?H(@G:*Ez&亿vl H[E(@G:8}E?ܺ}'G^[f M+m׼u-DGGڂ/Y?5z/ ͎KMM<7Tm*rE.-6lẒ ?x OrZ=e/^Ujvk˶kնCmn߽.9q;>>S*rQnUdnnnhhYǏ<5-|ܨ}}}K KO``O>zU2bP>kgW]726LHHȹNss6pJu99$46$$eϾ316{4t{A_ YCמ))ƌ3''[ 4[zծ\i[… i? W߁\uttx< X-6owRC…RSSOmxzz{;Gx?&!!kհE =yٓn9NR<߰i,~ ݻv>{ --,;_J|ĵKgUgV]CϜ8ہ=6<#wlɨAz@^=:k޾YޡW>ߴ555u/ِ7oIYF]u'ڷ#eaaѲ?j%xSk33pYa[uyR"kȟa[FVV噿vWOV޸~^fB~κuj_c'߲Wnݻvf:Gp銍u ނŷiP=[͌uA]XR%5%b255*UD횿$5f_}z0#7> 2HϾZ̪4nXHM v30cd;-tp% G*_Lo_FoxJ/&Q^^ƣG *$ 鳌sʔ׃y\]sl7yyl޺}@*R" qqqާۢE [[[~LM dhh1mmmիUMII566:;w[MLL200.Y?.:rO8t-Rnܒ,۴uO _|Ŀ&nY@ƍH^ZiIxfFc칻ֲfHH{ ߯^#%o6T^g͞YK}|+רSn'O9;;5mH -?,ٳr ij݆M?xm5kT_ͪ]q>ӫ)3kԭRn-WTv&O!o ,ȌE=\600БcowoI" ؿ[XcccO%!C}ԤqCSSS'g' kVn"$4޾z*NNxmZ7'%'˫,KS+KKk+/kV"m^=}5}JRSSʔx>ۮmssȨ(kk^-RL5+UZY6&6@|Rnkccgg_^ݹY xx7$oGOh&2r~TTVD**!!eg{Xd73xc ^t &@G/\$-"mti H[E(@G:QF9|At- k}.:Q-"mti H[E(@G:Q-"mti H[E(@G:Q-"mti H[E(@G:Q-"mti tyE\Do'ݤRBBB w?)))qqqvvv~dllkP__;&===--~r?|M\r˖-'N\r+>}zԩ͚5>|G={ݺu+144411NJNN\ iVZ%&&jl޼/>>ٳg/J[$%%Tl?z%c< 0-vEժU~x۷?kicZYY.X`Ϟ=ƍ_~JJʚ5k:9dGGG?~>Ç-oÆ|BW;,/^Tlll4vaii9c ccɓ'_~=44Ts) 3gmܸR>a„;wԬYq[عr-mm6͋D:v. \Gbϟ_k[L \DDeˏ?aooWRőÇ-_`wl```llΝ;}ҥ Cߴűq׭rvvRJڴj,Сy\]FnZJ_xWW~{n\) f3gZh6ʳo6n޺bZe쯋-"n_ruTTteƎQ ˩@WVu3x2dHnϟ?Ċ;v266VJzEEE>}K)Yy"EÿCuB};/ƌ ɸ(4,lЧ̞eF ͘y^Fɓ' x');k]:/iOqȦpE}zv_8p؉<$[~TTVDh**!!ݝBn͗/?v֯{,\tKjnw9cz6~fŲS 1zۦy;w1s΁=snӿ,F#"&Lv%?/߳Iy5K, Oڹ{wlݣGw{/}zv?x?!F ʕ*p&qtH;Ϸן\O?ccc]\ys,> Wc>WϛMbffֲyOeW< ^~IҒqV;[[y۬icF<$7aqZ:na;fQ*=%MwV^pCxx$?qĩS?n``PP}Jedd?w~ᇮ]zxxH2m=~~~o!O|8""B[[[^GVhժUÆ %޴i͛7%BkѢE 4q޽m۶={ѱW^Edpǎ.]BiCJ2صkٳg飯Wd[ϝL}Q2e>Se_3IhZ~l9fg=%K+4^jwʕ+`iիDсrr$۞LKKa dcI}Ђ 1fqX ϟKwխ[W>}*U}7,ӧO7NJ*Yaaar n݊VimՙgΜY|qFÁʶR. tuR֭['&| 6A u(QB} ^Ҫ?X6mZ˖-˖-5meb5Jy21112'N>Y:\sw]x dܷn*'#.'ceȾdi NS!l޼YTNz̍ٳgB֙w{L{qOeJ29enH ÇJ:t ^ `w>|P})M S__xMN&Sڨ;;!%mk/?. Ю|t+0zঋMM=0n.O]aNnvA116)jib$tXcC:>;^iU6k]'?Yq ᯧKXռGa_~iD>;*WYIw<: mo?9~{w\A/77]{$"tnk3rUjV"fH[IڶmuB'tڵt'O\fKX.ѣ%>5kDJ&᢫?o߾;Jocc#qBBD ɲT2ydFB_pB ,+VgϞkN0AoI_T'NH_aÆO:QF ȡ fd#FHUL 2%>}^ߺ=䜛uJݺuS>8S_dI }}}-Z$*TH"/RرcM4ɶ'% sJ^CUJ\yl($;MptRDw3fЌI2Dȑ#ʹV%GԦM%"ѩ ~QgJO2|r.]dLիZvlٲsJu4}3M4IJde;oewK/ihB (p5kּtJ<<<$D+[7oޔh\3g!AJKs*HEHF磏>&-rtۛqeG:O}S}i ~3ot˥gd6l`nׯ˸HH;mmme,^JII?,M#_yGGG333m2[)nܸŋ:u#J{]3...RmʀʑvAeΜ9W\js/:(ҟ2SLoʪU䛢u aeڙKdl鉅ThW>Cm|yD4'aWч֜? ߐŜG/dm!]לm[6tԠˏg|ۗw30Ji-9H#Kյʟ={&ADi+WNb f9]/ 󷃢s13241yobNV6]mfH= :[M 4Oܷ}ڮոcոžޛwӆVFvʯy/2LCkS#i,{~Eeؓ~ :h5)>%M_?"2ylOp02З1]%Y脫Iim䕮h&SG&hU o&&&fffYB  HP$y꿱K<$:V)i(>ܹ+&L aHIx&+OI<^OfJ"!r!O<ߵ.\%ʒGԍQ=r,=fw\v9fg=F 2%V2I;dAjTVhԨROpplԼĴwܑu|WⷵkJ,(hrFFL!MŋQH߻wO}9teȑ#M6ͥ{T*iYGAǏoݺO {=:)PD &=U3J{iӦS9:uڅG^Kt-#tǏw)[V-ir24o 6TrdRVBDgd2_(]lgNE=&_XM%))mS.ӐZ~}ePʧRݑTN'5o޼֭);x[.`l+TRZ`PPmo[ͻ~*14;\| ˯l>GqKNH[k/<~J^DrZe{1v441 34 Yg_JYضB }wy x? u2U.t^`nk6#=]OR[n)ϢDT~ԧl )j`ִLijȄ6er+36-.kk(?}N it~Х*hٷjᡵi5va1 Jh۲yvlbh μQʅk!e*泷0j .bmi';;;"[@9[I(}DZ(:Kɵk>cY~̘1۶m۰aɓ%dO$8uͧOM 22 ҸqcWG9@k崴4'ÿshvcHI}-RJ wًEK /ѯKKG$BܹeIiL:uj>}*ijj*""B"Ih!Rbx߫e J؟mU+*ԩJۤjvTٳgʉpСrIhJ$߯_?`~JH+"qϚرC29QyAsev]H˗E:D/̙3GSkkkB\YPfcɣ5-/L!$ z̑W19._ꜚIBBzZCv2{„ jijq+ݕ,++) N-[v߾}&I(Zg^)2[jSID܎NSY9AIU5 O- >vV!GwuWVgonђuWD%4plBN7y>Հȸ4%Q̧ 1|Ǖ^~)q{yW6,my?ߏ' r5 95y?SmyIlRWS/:Z=F䱹_$*BI$x-Z$k)SFO$Yvly7SGxӲ,HьEp&i9fg=F ;%dܹsvvwr޽{%ѣ_SRR.\(픨/۞ ԗHRd5}%VQ:b$`H޽{UfKZ*̓>$,@J#fL9+VoXڬ\".]ѣG]K&R9:L2Ӳ2o J;ӺwޥK }(bL׿tl(CޅG9FsKיHI/*%?KY>=}ZkB˕+9/1s%dʧ'N()ZvoߴTzNVRUY+޷o:8o~͛%ͭI&AAAJ J =}t„ lRРlٲիW={TUVm۶^o޼)j…%y]rԩS%^\ (֭[%Kϭ4۠'BY7oDyR_m=J0u1@aÆWGBk`=kժ%1Q*T*}ٳg #GT!Qرc%WߘmOJ)a%JK@7o.-N}:M6]dĉ (3孌݌3;i;ӧOK_4zוknR.*Iu?K˲ԣ_u̬_~ٻwm֭eP<<?u漴4/O^:sLVXQhMPK.+V/qOٗb jrǏL9[ji&l+LKK;ql>ds/kogo,D3[t/$A?oqAP̓)M~l_% 'w4,L>diҴdK5.q@JiW+఻_TXvʁ[g>mhybP<>>OKOVQ"%=*vӿ\H}}J^ ,>w[Kj׵/v5ڴT٤k6]|jm6GNKckm+p˻_Gz~H4RGX\څVei?d?ֵ Ga=5k5._diπԷxcdףG۷r/ǣFRȃ^tIyh+o{ccc۷6L%ۙ]lhYD%W0}^yًq bbb9ҿW߿_HSyEi|ݼmmm=<<^SSN sȑ^_mdE5-fVxtQ~iU+x+p bbbBCCZ_vy =@u&Ajժt'E(@G:Q-"mti H[E(@G:Q-"mti H[E(@G:QFGtqPL;AVT-4~ oؿM[L>zI_= 3=wBҾMOכրoԿH 3rl-o׆9 z [rE(@GRB{򴌟3~љJek%`oJ~)z19$ R{ثqbIzIzaٟgnlأj,^HI ROjr[nu˛&u=uZ޶jtS m8w?F/~e)65RfwBbSRU(70LK.@r=?ɉzI zzzffJK˸POeg)!ۮ?M=IJKI|;H1ssUi)zzzƦKͲEsgPڢy*³Z5$4%UBō b+[%*fgR=ZabJZBʟV8[UbY_YT%,W0MbJꥇ(?Tnf+63LH671bȽ-RKuWB).lg^h>cNx8ۃu_E'ѥҥJEtJ*QnSJuGʙucak/gfyvgy&3(*mF`&WbJO;to#YT&<w>v1i$e\BMFP@I$+u16e4Pz(`)JYv1ElFnJdD؃xn@9*#+n-_-"%"/q1$>C$MEJGQ::@\vAcv),)(*N@M#la"J$*%"RbɜJXb%%v2 ?w1VK䩲E<+z/m&[ʕ0O~@Aj }M،ޗ1ѐkwmjk]ڼR~j.bt4:A77pӳB οJߢ->,UOE_25'yrJ7ry p*_~YE_NY|w[.f%$$t:fV(-B( a چ-Y"QOUF oV۰ds]|n}\xL.wYC+˯2EKRfMxU7+TKKK 444P@l :NjCrE!lP@Q[E!lP@Q[E!lP@Q[E!lP@Q[E!lP@Q[E!lP@QZ.fQɬ*YAgeec@ VCbI( a (-B( a (-B( a 2GO~~l ِޛ l3XLzƭC⃆^z ӑ'D󃇍rdѓI:-q>>M4f(n߭KJxsfNc6̏ [~=g*>-=i|apn^^t:(?:׬2q¸;0o-{}M m-͚# \䶢!CTYeo%$$7l֦&ƫW.CQܹ{oXpoo@QW!Ye^dy45TFE/[鑝`0qq}3#گoZ [tX*(vg)?yqۊ|7Yucͪ դloaN^v~~AvNL&;7Θ3sd~}_aY/ pr>3@QQ0!//O455mgko9v|t]7 r~{ܽGRϘ:gP'}?5~cʪaaàa+ݽw/77q8C;<QSU}4MV9\5m݊(9DΞY=Xv\`wy'&&fٱD/\}وx9R ppt#3pHk4Ynn32>F^1P' Ph*ʟE&s{nABΜ KMKSUU3bxgˎdfkyu5Q#W{=d 2о]祖awlq!': ?g]{G:ƿ{/))a۷Pr.))ٲ}kI2&=OfbTFFLǒCAAaQQ`fxą{[Ct?75"7yێ-vi-PiT49 Enj2okgB>v";;铵45ܴ7ZD"e߄4oxe5¥};G8ێ]o9th;~)6d߸%x{Cqqikqƭ-nOPO~ݪ˅KWoItZΝ?DZhҕ5 >}OCy&iԝUƌ =u|;w|'[wztڿϦ5b|}l W-.))$ȱ% 煝"gZ/v ~{X,G\uLd2Zh:\ۼ˺gwvr2gmXqᒠ[u?[7n8dd//^xa%%U.H.{vn#/9j\@4f+{u7)`ɲV-[xynقTJ!TaN<ݗ+=|כVU!lZy7;;GGGL;CF (R\\ypJJ H[?9cӨgh;~)!O7owEp#ڿ::-LLn߹z s^= -,$oDE5ҭ!NJ>g4ۚ~*HW-vUHSS#-HUZS$H[KI32aܬi^~]>"x>eDQQљsoc:oGކ@II!RHO&'+H;%!!q&z\]?u,;Lߺcݣ;9'iƍYTT~c'x%@cs s1#]$%\PEYq#]f<߉SCC}B">}&P_1-L8NA^*?<ȱ]-[4=c*'|i5YWƶ ٰ֮5$=# -)@KYq,(85-MA^{y櫫 Ӑ&9߾s[.\ٽۏ"_|uȱ$v2N+/05樁l#"=NNC3I¥9lL2LEEhr}a % 蓷Iɏ< ~TU>C_y?6;Ys^6TUU!뮟ÒǸԠOHLrռ{E/)͌wI4 arss AJVR>jL'q8`OۙX,oKh/~'"7ѻ|z gc" Ӑ0z K+:'>?&U/.ݲgϜڳGw&?9%[ i.\ҫG7Ḽg;c`q Wq|2@=&bt5Ӟ/&6eJSuD>][^Zʯr‹+=zbbb)z ⒊ukj^c[}\KQpܼ<6;jinf:i_Aj߰!:[ ())}i5YGD$%%I3*--=gt2`g۪e 2ޣ.yyIIxUIIIWJ8C?*++R];wzM*YkY>ֽW(&ͬtݶCMy¬MkA"'''11 Gpyg;c'wRE:&9h`JIMkc]yǏHːSD2#33/??@k''ͣTw=@#Hqj::ڂ`1D2{a\uRiӾ*-9:]FFiݒY9!jjԯbbb䜆Uv6}y>g塱 Yuy6ݻuu6,LPO~)rX773pWU41)LdĿ{O1.,,S'gϟ ޒ5ƽ#JOݪ5ys훛Kt?xQNd'XPpVN>}&TXdeFE 7oݮz薙1qna!9g^dAdE[ .g |P%,'Q`|M߭~>s^Cr7 =w#/ȟ|$gB͜:yƫv8KWq6'NWP'UdzӠ+nl۱lIv*7[>E\|LqmciI[WƯYb.Lg199ĉQQQTϠósryIn]zǫ d`(**n<@:iMqii0=shkẽ޿pFPP뽻wںUȋV{z]tR1=|ߖM?vpb2W,]Ȉhq?^PZX(SW[deeijj.\:Yx;vA#=ux% ;WC}K?iąK{Kxҕ^z}]W硿 iV?`FY^ ?ϖ-[VMN: 3E]][>ڵ'%Ӧ mgÆUPpo,O^o.^vU99ʺ}+SM%%%Q'K#ص_>M +},m~^aX];w;k;YbiPD}93yoڒ(##zz! >!%E]]}Ҹ1V];YQRRRqqmm-|y i{Kb7l&u~L&ӺIr@6;YQQa!EʯM(((XM=-Y4kgK[ h\=sXͳ:nȍH.}شe{VVIӜ9e;>xèI.K6Mml׸ObiI\L޻4woc㤤$lǎAHn߹;""'=k36"Wtz:b0HV=uxݟ<~X-1uRw$ӨUk֥55%?M'"1giSjT"3yyJ3###CCCyp]]]Ʉ AަM;v8^)…7 J0͒%M+&_&ҥVJ뫗oR~Kb}w% /59zVoxi#N۵G{g2CW^ۺg /]@cOU"§M=11 E PK#\ff~|)-<{x,N$$$.Gd7o\(> 5^ [dcW;Ǻ+V6Lk7{8]k֓k^5WٟU~&٨ظ}.mղEn_^c35a=wA#Bn>v.,<9z.|f=/t[.sR>?-΄zd<5sd \]֮.22,l4 }scp0dEݻaaaQe33)yfQ5~~j VV,u3g1@Kڽ[w"ICCiC ht:]\DhWECγǎrMMM#_&1#Y,M ,^|%Mo&!##ӨE[3EEFN'$OOmjd`0,;u0m:<eԖ+C0]Q#׬L_ rp#C{۾^>;nI6mFL =@ҒSgΩdH+[Nv6+'+#b۵"s,L$%FEw*HM^;r n홙<OEYIvŢ)X} R_#~6m 2D0-8"0FFFuq[bb87o_vЭ{~T}Xq2L/SxZXJ[u=^0mlEnۚ`lݚ,L_12Ggf͘:t@,Ofgq8 ꤧ#J J*<5Toܰq3e*јL;u8[&3pfl|ь|| R&bD+!*e'+-ΛoJnnn7~"e+fnC]9ۥ|>S߃ˡI8wlv5VDf?xf|.j../'M55mۖGc0$gn qq]!--Ѹ1Y"Nڽ$1L9*WBM"2oΌ_|r6} ySߥBBiwPWonbI:RR >~̪8*E[3A ''{%X,;ggedd5~*I6mDm~Bn.EII- BT@NV*FRܿ7ddfCԳg6}C>l){{ڞ>~\J\my<>[;dū>rfdj* ,ֵYt9 xy6m - KIMERRR<|C_LaF7/Y4޴CJߖM%U嫹yy7o%9==ҺzfAA#bbjb윜iipǣM3aA 4&Eڱdc4O>|LZJF$ "ۻi4,^ٲ#I7oIIygdnՒ/(>}߬9Yp˰GPxqJqq Mz^9[ww-ZL0̙34qƕ533{II5JQQOe{o>|zya{tqq=wJ7Y .#/i60E\\|@eKN1gE+M8ȁjsfNC?ػ y YY6Z.cc2/_N,1136+VZTO9(+Ϝ>9##{fyyw8ĥ=%%J ?,**y&yg_}6jqcG珛4l1O6<|dokݵ)**xؼmz)xVyecht|9YEn+6xp[ó!S&{ wʮY|Cuyg=y ]}=ߢ\gLM:8C҂ޫf+hW?25PO|zig}?F n۽'Q|̝_ TMɓ'LLLV^gJJJ t:)cl ATdzws.m왳aۗ#>w]'!lY4΅W?Bf =n=wPRR}ͬS{0_G^NOo4W[E!lu rT!|q%-IMMld,%%Oʀal csssy<'΢=PHKKS6{<ONNNSSTj c FFP\mP@Q[E!lPOx*éR/7 ]3lZP233FkMulX-nB( a (-B( a (&꜔B b)++g=-Cvv8rSSS|~ZM"PǤP3fAL◪=-)))lBddT!lP@Q[E!lP&++ hRM[ܻwoӧO~:~3ҽU?NDYYYpȴwHH`~QQ aGǧK.۷oOMMTيsea!ve?la2yǮmܖz]jS'OX`ظ;ܫy7ocI&+ܶc׈1#}ȱ98ߵsV¢iӦd"88,ĉǎKNNVQQ/U3}BbЩӮyl[y<^~~%4b֡>}TRRI&TGӕ\99 r$36E?!$N̝%##Wv]"-'p8rrr?կoi56>|ePW'GqqX,N|_Pp^v"嗁l߹mlcqcFh4PIKKG6:vhq6wuA,5dcGO2gn+- { 2tPS^W.|E^6K,Yv4WN~ȡktu e[6ߪޛdp iX|$nSzt">yqWߐª93Į߸EhaB&'oo۾ݤZ47t_Aʇ,{؉>O0UfܜSyoޭKE/_ ٷ{C:gעEsrکb:Wrutt3}||tuu @߿J& PY~~~'Nl&INH^kWߺzawߛ3f/Ru-;***tfjZ6'3[0y_~}{"iHw3߆T:RMkVDiRDEEM۴jPW%! Udo~6`TS%%$ H6SkNdiNvvǏ8zpqY,Q^Ԓ "-LL^="_ר%9u]S#CdLۄG`g-{e+W9͑$ i))ru˝;w&~&xí[,--͕۶m[R4M^#M"YYYk֬XqnH?ʹ0*Q)ۿUUUQ =šiNvmF=w~jOKɚwҕ[ٲGwkfU?$bu$b@ lW~^ŧC$Q1_$ '$%hS3ZcGs:[ǝqcF]ƭ;YXANzQzPifȐOCHKKFFF(-jԩSM4ڵ@ۭQQs8$WLwecF^q\x9/bpbx fdfں}zsħQ b999'|>~"/??;;&_-##CZ8j,֓ -I cC! \nV-ɉ{I71_a2e-I %)gGÇ[2Q6sZ$( ꖢ x<խ[]"jjj III(C-~L2gpnl^zL93N 3~r>6.4ZZM 55ޔ^Z/nj]bbbF\r㧤7WemXg=p[XNN6sCx6FEϜzMjĒ*KUUL:_,(( ZYiArfX,ذN~;w>C R,Z=jp+=33?'Q CMU65lW6'|Q^~}\.t>­wK2e$v3z909p0\J7*P߽{WآE &DFFΟ?ǧqƕ533322rww_vm||@IHH>ԄP@Q[E!lu rT!$~CTF.HRRRj EuLNNN||<ǣ`Y㗪=\mu e嵵K:`( a (-B( a W.r5æ-?!l!''W Կ@ p_Z$P@Q[E!lP@QL9iii酅RRRRVVT{[@%..NqRUUUXDIKKSQQf̂ ##/U{[@SRRB٘$~C( a (-oJ 9wԃ ALVVVG3'vvէ)-(ԁEDDĬYN^tݲ`2s:`nlVG9s3+ @v}P @AYYYӧOp8d;$$D0 {t |ܳg?ǫ ׬y1a&ظqiӦ?zhݭZjРϠ߽O8N߽qy$6.>5-yۯWt䠌`/Mv4"5 CQQu+N/gIlmV􌌾vfپgyJJ5mnݹPG[5۲iÿ=GyvS kG rmQWy𭊊ʆ ‚$ l6{ԩ_^^^BBgiavz84֪".\***v3oL4+I(!1Qc'[n٩÷ғ_`hb/FWc^F·7kjT52RBūW\nPAŊF^k`Tt3[j8jE0MߩSOb>e qqQ%%26meʉNN䀀6)XZ*+rS'ӪC4^`3gɑV:T-DD߿Ugϖ:H%%5mǪ7nmڲ޶}q7o'.!ݪˬSHO@:FgN]vӯoF>}IQqQ gk[biPD}93yoڒ(##zICw!Y8))I;۱G-jy\T-|y i{ ><'=Nϛ=dZs 'OգrEG?f'+** svKRjjt5TnIG%gcs.p9"t&a#f`̏>%jZZgO>޸y99Fm߼qۢw+L4Jd%6oNw]$$3{G:Qk=V^t}[-֮^ûcKUEyrxi#N۵Gʇ ]{]iii==;u .yyG//VP/++d0TU9_嚚r6GY./'GJw/^~Ϧ7 Ft-ښ)**h&ɧ Xd0::=w- Iu`FE'$$L4^\\7fȋ_Gu.e7eڦUÆ:/_oݲiRsssi4RInn¹&z/Kϛ3xЩq_4tz=njg454ڷxSKBJc776&{" vFHKB> 3j%F֐I1)K&#))AHKI:U5_6+6QMuƮPF uH#U@ͅKWP\PϮ_Nܺu\YYm۶ߨ#4rTb(V~GQJ {ϞkTW/L=3F-J_Ĭ[;9Žum~^-׸Q=_+)L M8a*GY饣Y3xbYq~ZZږ;_|+T=E0eW=)|`y&}6]TUf_WJ$v ׹uŏRTUUo FxDs糲8pk3j4Y'eOvÜ*L7ys-;vhoZVV024c릊cp(!1lc~^`$QI0 d0EEi4ΜSqUdH+cB>.1F,X-{vfv-e%%KL[XX}uƮP;9NZII(+ڴi3d4iddT%/&s󦑟He ݺ鹻W}UP`HI5۷'tqh+Aآ:ׯ_"OiTSuL_3fYDTTƏxE))EįY#ߥAdIdMMe۶ ==,(ٳC\\bW`HKK4nL #Hv& h,'WJ;w~ijjΞ=[Pѹ|~Ǐ mmkͧφ$lA̛3ccRSS?(U>(iMnԼmFftmPWl߱torssI%\jTPP*(|1 ST3fNNNNϏ:&%"egeU@SS-IIIIn^^#]]x_{xfggggfwڵ )QQцn{iF%~+⥪[w>{Az]'d$ ?n 4p$4[gdTUq >c-4ZNtwE_w'HҕkZlSP&TUݸURRBT׹15w:~[~JLzw֛TX]TDeM ""N-@t:=;ј4e/0$Y{Xxn}٬ 8b^|+YٹyyBBu Uguj5 ;LC&Ɔ8aln%/'7omRs+[ii+K e%Ŋ7FQ榩i3\瓴ٌUNadfӳW-A>k3/( %{w~ɟۜ Veel'JJrr:\=&!%e6ʚLO66CnήҒ6,]DzJFlZ5Oߍ>jj5n>[.)M9[>dC=_@`5gN}YRR2uQOm&=-uH$}:g,hEDeɄj~޹k>V/$9,Y^oEI]6d:z9MN;;o|$xΔϟ 4kv`6+=聀&m;vSnN>m?-//uRqq/ MKMnӮ~>_DDu'aȲOƄee)*wOo0%9#<ޭbrd>fɣL***Z0̼Apа_HMN"aƬ_:/rd8{???:@C:8O-qϞݕ94xᄩN4 9M9HWDFFVZ1gz{{=L?|ޞLXmYpnqLK1+u1kZy}KaU_l,uu E$?4UQq}99;cz;Ag/YÛd~R'v ܵ G_5fQ]V]8kVv.zjohrv%uK~hcp<# nlٸtʞBdrļ^<"3C竇-}],o"7n>Y1 6|ۺME]ؼw7.GeREU|+\4xpoQAC糍Uv߿q}ž\e!DŢN$޺r)p嫃bHm_KJ 7q/"/0YFQ}w:1 x.,VVUUeN];q'Р4Do܉Cjtwsflz0C *DTZwӗ*hT$#71o۱#F#YԵWorpY\X'\f{O6߹u)y_ր@RO=ſEQ`ka>οҪΪk7֕.h޽;7n9o4h\߾}#5gSir_ ūHO*.0?(y2 o/#3F5D?}]9g!|Nrrs҅+qp~U߻۫@1Mr3a˧OObTR|,5A*Է$QiHKI!ݞYWI4{UJn*+v-xT՜&N=:C U~Y${=uww۷*F#Xnd$֒&-54J!A}pjWX5pP!CtZuѭyBMYY)ӇЋkEQ`OCa&|m܌Tm_UBWФƆ>!ԩSSܖWqo[} SV2LfM㑒?$2cG` -޾C1+7?x6"hȲM[;tB.6ߥ[GO>{;XX9alr Vv/9噞~.Y9B3#2Y{O@@@XT4l4)hHSnkff U \z&S=RYjnbe=pwܾ:~u[C/E c`nn zb0oGG=-$9uGҞ޼|A!{vErH?}\i"4A?ߌ/i(?4ql 7b.p嵇ﹹQФv^NNuljj*E8ZʒFz:#3-Z`5YvUQƧіGLz8?.V@xWxhxZѤڴ?@pHHɿ-<(q/{K%%QssrHwEg,%.KD52B6UǏx B{9Јzׯ6ĚoWKJbA q$`R. Ud~~MŅYXk Өfj^UUEZҩfbtf6r̝E 9Y&Vc%QVM^o.kղR:sv3<™/Û"F&ԝ&yH :usyhR:5GAY%1! %39"I#'u, СCo߾}ޝO+ܵm@ɹ 95Y%{튤> Kn^)ji1yY^HDĤ]2ؖ'&TzQuL6.{H0lsڴK-șVƗ4懜i~ޞ2_Hps~ @>_ő $5';?/̙:ۋ*Œ8߽FNrڶ;vƢ}>W檸0+3#3#MˍK?}kRR_S\/%Q L;\&5RRIS/fmIHרjyք=`0rs&%+~oI~ReU56S_%I_|QQQqϟlocR;bԭܻGS'~ ~VClM;7o$%RDi4uRjR"U~j-EyI 'F.-C%x9*Ԉoߒ!F%hsNtp Qq16ܫޮ]#+BCy٨϶/)-m`n)Ȩ`.7gYN52/az lC||eo8ǩ_K1E\\5WENzdО}ps߰v9Ԓh۷}Jren#ИZ8{*Z/\^BJRLBrc'M=ѶkګYP@@h۸l(qssO`꫒ꢵ?WJFar .uԨ݇ru&ȩ r78yyyfQ+))QVSSS򩤹eDIN4gvr^=Iwrzy5}+xp($̈́/?;4gC K@Sa h&]Lhfpp( [@Et:'$${!,##cG.Hӹg[@E+..HHH`0,hS lӄ*84y &*)=\m7MT-0l 0l 0l?}DINfQa-܍[HKK.4?ʍ &$$hqp( [°p( [°p( [°E=rrr a: [°p( [°p( [°p( [E@YZZʁiSPPn}&˗/<:QUUp419fADbO> [@SQQc^zt܄ -8kr_f֭[̯[nm( @&BCCSSS]\\z33;y{=z=Os\UUEEE"""43]{ѴBLl.c!+..*.{6ڵ/'NP?:tGk/ll33kP.A>/g^~YT|ra$hP^^W=z͛t:`&"^M:Bko2x-^.+`0f̞x*R&:L 9rl2k;QcFlܫ)3u$1߸t,Ǟ =CisOfZt.#O;aaV6W^G-< o&qc7n.->)s]HrG\xt<<֭y%fVMNNA -d99_<{F\Ū*"N>}I;}׮ZtIqU+ŽzULw2Hw͸1QgNTڌ ;PjQ ?fw?`J/Zb0b1VB#vx>FȜ$W02IK u7بVeO\~;>~:%\=-eG>%$ 8s规gϱHIMu[vBLTEsss&|N\|5+jvi(3gs5&`۲p? O~ZbRS<linsU6e4tH̜5u՘(?s/=~̃N:ekkᡣSo--}5ڷoQPQ)&"i.%[[i}}%%3qHX\cGѮ]&L`&=mAAf -ؑ6lظqlB4&&'iʤLr&Tosc')))(+V_8coύ̋҇`doy9_-=8}i@~_M&wJKm&1) ;s¼s4Mo@ he$Դ/^&%%͞5]PPt}bTz! 5|||}zlݺU݋ nn%n e^QKlܫSI{e ZCYIiG>M:uHu+VݺUӪh2 ]$g"ϝ6e,iH[s(ePMH&H)م*L.^nal8Z^hA⼅N7MTFnFJi~~)TxRH;@]5(+)R%GA1@!\t 9^ 9thn).h޽;7}A@Y@&8jsrrd˗}HKϳ1c**kF0EE'S>edԍ}$o*a999!!g{lW:Z3A>ރnڼARB9S5Te`PRr wqQη*$"LT?>?||e5W'<|ywMIPbU2*IwT% 8x8O ̯4 rsHFnԛN;27&'HHP_._p;ΰ;-??aErrߚ~~Һ"UiYYfV 9s|rqB_#( |5)uԑ(3|;ͪt[lZQsO{RZ2K,jA&@C2(RRS55UP4i{ԩSSܖܛ7[}pTU6G㕒t=tHАu>`%}$`ӧ"""o޼!琄 v=c,k]}Ke}ny]{6ΠO /[t!/7%-{ \w-?g¸1hVn^žLrd~)V {tCD ݶfuzj3x4a 44E?$-%%,,ڒ~97(+6|XbRUA6oX`^YJ˗f&F 5o{'hZ$UU<9gReQФX. 1t۷o_~=;;;wg(**'%%k2##omh@ o?e+nkj>64̹^ZQMMk&ˌb]-9ʏ%Kb{bl\I`آQ85l0J[+55 6{j@.Q)6on%h<<kW8|/t?%>t:=++u>;*Ϟ PBGzF遐ݸzR^s]:wڞGl^bUzC|aQylTPIzz_* ZPPk/256lzTnjvQozIi.=63N63]1/?MKR77(ՍXEEʼnSaI<(`/1691؉S tX"pW03ѭ󮫆Jy0R3U8I#'|N<I*_yifb\&sX$''w9&&[CCuZZZ:urwwߴiS??CaC޸6s&7?O(Hu 3#(C/!0 6Vwojf!_EdMLꏄ)/~ٛz9N?yn]m'^q,$hea6yjƍZj y.[0Nt=sƆ-[sr*+).rۧwO)h! "2!..֧WC2osvm&}x[]kYRמ>a`2J^NuKғ";3^FZz%V7#+ך[ F#%LtRwyedgN6'{ [ޘڢƤiJQqr~>^̧lq m㷻zkoM_PW,s7tTUTa왫mfرC5+JK,^jwcuHRSSݺcO|deNv@.AT|;t?? ro6My5/cE}DJMMUnvϬɑF̮Ǐ5559?dTk7n02ojm,sgB il^d3sbhR}z8~\!a;(+!~%dee/UO6p631Jݷᳲͭi>>>e%ŁOOLs/@,ꐤWk̙G=|w'8-~$;K Ҳg'Oy 4Z=?KNgC FqqIy.^.++keMj~r$=;T%%%{JJbWdy׆ D~:^7kٳ GO;:4y6ҥ!3ml'<'Yg.[v镋ǽzMh3g/ѩ-YAE*++ݖޭۅ3v=zxM/pKnκ.^^̬ϟ9},$sh2?lT蝾ޗ#IhɊԙ7 ynղ%'KII:Ϛklhp,$o?ETUUΆ ard[23232qaQaZG ?mʼz"$^%= O}]zz!!Amm-I/??ѠȰB^>dO>~7yqڕ{趨YoEݶz҄k7̞|5&j~H*NX9VN{>)cT=ӅK|OnckTnEcI׵z"zWPQ[xiTso#A/_.^r͊=^3Vp1VW.Dm:u.*BݖtGϫa֭=. (jzÐݽp 6$ؚv!6 g"HDj9K +p͂Hygdfq]dnj|):{Kc'N!MTjjs9-))k=Io@eÃH ÁL ay-?r윧ϪES?%9P^^n?q<ڥsdxH`Vjf&DNI3YcW.J={t#3{tL&x4klݴ))>YEʹPeaa!ï߼>駣-*"bo7I} 'OTRR$j>{p FC&AǴm+murss$n]. o߮-n)jjOקw֭[y?Kj֤Ngd2),LIgCջ;˪_uYY )!DLLMuZ$IuդZR;vhOK֮FrTu7o+գǍ$VN2Un^^0q9`ztߴ~46 ƅ$WI>򒜏b}zV#_,L.^mgT2*i?J͚zGᣤnb4$Tffk٤pkOwzCNp-Ll=oo+-- /iy#.!nfbL]u :||g> md^ƚPm-L*_3%%%_ F6δtjEk:vnru㔑&=7&x\51O$6cHZ/"}6푕zn)/^բz5Re_kViE :t0krlIҾ~,U mӐTZ W͵TԳQkan 95- ???\9^Ւ\߯7EEY)///_cՆZz1{sH`@lܫw?@A\gNٹ^J֜(dzTQa&(T^y{Ŭw8^U099_?ǫP?ݹ{e+r:|(V@:WyH(` 99Ρ~h#v3d Fۖ8SgH Y$gs]:wKLkUk#LNN<[}97o >n#XZO1160%HnKJ}-޾{_=]/iiig/^ (,* ?4cvJäD:(-z6T*'R`236nRPf_kTUU5>_ssIRSn޺c?Źrάؔ۰dC9Nn6[4:՘e GU ͜`qzܛC6/c H?yZҲIkF6di][EB>}cgG߳oTj=6mY籙$g_Ҫ^J͉A+5UR_ #!r<"Px&"@. 7Ust=оk6n {z}"**;`4G' 3r3)))ύӻTYdkU˗]{Fpqy6 {Hگ\&!.t_o,nqZ}zYY7p]mH?pkvw?PVR-6cx⅒Җ HW̛={i8V qurssk=k ڳog]0z̄㩩i3\ٌVTjRH܊ysf6_I)IQjc'DG^.Kj7p$ii)M[ Ɔs]Iྦ1[a7MiHCu*đF yHymݹg߁C#GLvL[[c&HV̚ԫGw2sڔIk7XXȐ;<=ji_tfzWMڼfFSdd;MO֋4 +.޸ƶ\u>I#"yNW55-#G+Gѣ̑K_7Myu^UUUYYYRR܈Tf&'ߟ4gMtbaf|O!gzp]qc舿v)c,I uZfhv$@͠xH$~՜֨5æ9 $$0\m0m;vێ5N?rd~~a(;hTZ̬,-F@@@VVVNNaآ ts3Q-<+JJJ4hcm/"4-Azzzaa &NgddTVV*IX 7ԣ_ f[1 Ns׮][N_Io&, $r51g??bT6Y߉S3cbbHɉ7!CCCxlHΒf?Os.^dI//* ?,_^+p† 9/qÇz#ٿ#[666۶m;v옣#:ujԩmڴyYZZZӧO'|||xzb"H޽[qDCtybXU1)uڽ[ck1ǏϊV'<<(w'OP&Lӻ}Aɜ}]7_sGYzkR`Tܦg2kUUb={֍Hxf6a YYٴ4j3 p޽{PӢoNNNNݺin.ۺ헒t9xPu>`S9c_-tuu3h T6YrIYYT6񕗗sH%%ee%l 9x˜1d3ۗQTM m+.^UVV+ڵ+ f MTTHC ت4Nٷ啐7N&H#F :tK.޽Yˬ`ƅK7摥4ڨt@ƽp877_DDd8#gH%%jJ#ݺx~+ C#TT4%E9[=&lWБb: 0Ƃ.{iZo?IIqwסsPK:914D˺/FfW񳰰pmL͙iO3@DԥEE% lGS{$tPInLg>D_cC/dem0qtmXBVVݍu+pfjO>w3M˘WݖM @^ؔRk>//vO BTT1nTXXԾIc>&Jr${S>/--SUQܰvAkNqrYNrsK,XGd]}1t!"RL̇))kۺ`R,D}H>dY Y09ݻu"IvV׼>#c 1jQqI0!WJ8wyI g3~pu kvkHN! 41$ )o/IH df<WŃh-Hui(3V\\6߉t Wc)K_ƾuSh`O!ҏDH9z2UKgsose}pBblH/- ٺ}Nd;+1Qw> ЮMm32sR̩J ]-]Eqv)SAQPƵPn`" ,4K,|/Kpvf̙9g}ž OgV@_'22f- ؝kww{FdT,Ew.R< 5[߰Aۊj2v =C<qsR8g{\]Fdggkj,wjWǐ0iMC}]ii+ݸg ;=7vSJjZ.Z{$h;PK!ҕ̧i)IJH޼BVnq˺ujes,PC _{:uTWSO6} GխҪYLlٲdT*yçwӦru;W/E\>,֤y])716|e:5i wl柃cLӫo~bldX^m5'O_pJNvWS4mQ8?R_O]/%%%:ѓ y&h[ 7Oo;CWGKjUf{똚<|,RÌ7[4ܩ܅km-;ݦq#3˷j.:Od"保nC1&6n鲲2^߹Ecii H[@tjvÞȨXhִDs5{ϡ:b9N_D!JffP(ZUδqPLRPhhk0ImmOgz, ̜ŐF50/9%J>}qlA{2iԮiCS 2)2gAխH>}bohwg.FD0ܧSG;bˎ^ Z@۷9h_| kog#J4ԩ]}E*5xQ8_72M?|Aa!UUeIuа>q36ww=iecqݩ3:whm׺M˸%Ex*"<"+5)Sm=_&As԰ޅ 㩈v fTOsE]C՛EMJ}9gEN}!(*|L;ԸA^^C*ujYYşcH4T ׭{ƺ{7;}ʨKq$9L'^xnjgh<'0|p'O_5lqH(̡0i-5͚LAƭ8DfUHR̓_mԠ|x _iѪ(FbVȜr_aN9YYΖwMD hޤ'pR+M0Lհ{:uWK2;Y6kDy!N<2;;J*?qP}5hto8?ɳW&ƆΩٹEGTVV9w9:&V-58SN۷j<*yXjwOm+sA]{wS-R̨x1vvvRr5[4NjUUU?7?0ch ^v #|%SIIa憸yOUrlFa,kkH_BMw&ō !SiddLW߼ @#X̩ !jV27452ҺE_|; жf #?h}Tf~()a~}=Q]>{Me#u_PQќ<|ѓ *)O԰{t6\!BM1}(^/abDsҏ2Q3ReJF%ʢRԭS̀O ﲏ!aO7v.UEG/zvzZaᑢD?2rrmܗNHLz,.RjާKjZ/?V#5:(+)R.!gAϗ/KAL:D:cN Iv w:R' sYDEEIζ]b|)j;ʵ<99W(VQPNzXSqOV͙(+Q޴q==[w޾H!JhXxxiklcyw"3eE xΞFJ[BWX玭/^s{6VR\nxDTNvIKK?r\}vı5L;t@ /O Eh/҆lK6٩ߥT-8I.KuQ4idV| OO\Q}Z55•JݣAKSz^BB%̯D1Gϙ ti=CP_7)9nϿ"w_玭hTٺuϡ jt8ѣ[zȨ*QSS xtӶgO,pI)((n*ySH[OR deetzuoo[^;;[2~(L"%5mˎC23S\k_okMSRҪVxC-J8ZpˈO-ZUT F'S8vnkZeӻ M>mB3ljqRH[K!m,RH[KqPDEEdddn222ZZZMeT0III,@ *#\$LTT&;s*FգJbOPdgg6gQ%i `)-BH{ly*}4J''=R #f޼yKeVm,vCSS4ȱ`Θ=ϪU[J 1cO֊ww2pHDvwwf333Pws\QQpM[]֭BaYVti/\Wqǎ&9sZjUUc&'hh=rOSݻucHTtt KçϜ% =Y&::M϶mnݺ%SSSs͚5liiI3ɓ'|ĉ˽Y11QQ~X$…F'NTr22,WζZ|kiik׮|"a-8oT =N h^YY?|y?StnZ4-Fs?͞6d7oN]񓓦Nz]7kKޝA9?󣒓j2wѓ!#شСs7zwaN1`-MM}k枫W{y]gPl~47m[_gb5/z Z7DK@#ƱcFΞ1Yڵj}Z\X*Iii-=.>F0q4~DCCMjݪ]?lgg=o%]9{a]Fc˝'OI֭۟99ճ@jP^ωSޭmmy<4CG:Ӷ6n۱PIC( m:ti ".8tCLw~.]@Ի?mʴT=f{v/s@#--ҷ]\\ƌaќ'Od_tq7._X<Z A/_}-J% }g~y^ /_\r\kִ?lٰvC(kg|ZX]RJJTKWnܲm߳n^0ni,7)M˄3fׯ>so*n<~voLգMLJ, ;:e6dي54PLM+vuێݒ@BC?~|РAnnnEcnn#_͚5YUy=s"B7m4gg'c4ujnו+mn{:iXT~,دkJ7ee _~]%ҶаqΣh7ljuj[߬nϹr4gߑ1z5L tnfJsm_V8qu={0,r+ntȨΙY7 4ѬiĤ/_JFJKhT43y5C;ݻw~sFonٲFf͊\JBBB:ķu ,L:،;xwԜoq(&% SS_ +3:J^I9Vc+<<<""E^0-b Ex<  u efoܲνA223~n; P;ͿPmOb 'G#))-ZqcbDR{oBBDbbRY}¢˙/P,>pMV }SS5ٯcbbma09WX+++)3X,V(**2QQx$ ۵OϐD 76wwړTMYIEmRH(ڄ8UUrڵOQQQaʧI&}=UAA~ǗI?'5((ͺ[}gm[ӭGqUU9U/vWJo鉾:#CʿIl.[d#Jȕs[b]6њSRRZwI7) VtY8@A*!1ȨZLt }2]t b郓}v;幦Y]E3Jdևbb{~DdrrraD7K-'Ojxn\(SGBR2'g#)dfef)Ps}}&Ƣ?5Tkۖf$YYo!(&РʕO7ߦK¡/o:/a))#azzfTTfttKnݧ Y\B*șpr33S^Ȼ0ds匍i R<^Ui \Jذ"0og/ ̶Mх0%5W0׋OHo>IJJfO?ЉɆ<zdedDge|ADO 2ɆM[RÛȨågϛ[4crɢlHg|K%%%%)Ȝ)XSͥ%^;ݣoFGGۛ9ŷD_O711Q\Wc'Ԗy8tB9_{m;f#$3&#"ظҝSU{WTUTw*1BM6o߾~z\\\LQ /KkhĜ={av={O=T[ZV;Y}T`fի׳hҥj?8vݺ JϏ15Tmlhm:wN~ȕ mQZ>}:K*3/W"wν/_6yU ڸE n۱]U[O?SEճ/ۼ~؉S\'&6B.),,|5CØ| $B>}>s6[(|)` .%%%*?zi3ݸ`lPuLk׭c}mBb"ͳbǬyETn+VkiiDӬ ^zM?(--]/PTRR6e#-\B|MҩC{o]UU+W?z4] ͩgVרZ5O 9%*P%?ƨs^dC پ \.7/Twp166n ~DĤ)8#$:wII7o+v!Ցw}q{~8YYY?`? p֠Aggg3fxxx8Otɒ%+V)tnnv_MIi %@;duP]BB`#$$cYAjن^Pj҄)@HZD蕰2]k߮m[-55ڎ:H&u(.CNVֶKXQcǎ9eٶ]yg=:ɓV>!fMš/$$%Moߵ㧛=,vgL^`yhhf45mω:K$%%KdILkײjgA'[({glSyHȧ2|@~9xgl Y|v&Mޡ]>zdgg]dڔI::_{[os=iؠޝ[ س{ mpPp8@R82B*hf.bQQQ|R FQQ1999$$D(zyy{-122RTTdmBTl `8 O-BX i `)-@|R)7 6bi eeJ(oa~@;VDBX i `)-BX& '&&&666##uQWWn*;-JIIחeaAtttNNvV"`bbb455ٙ T1U{쐶 &;;9 U*=UvH[K!m,RH[IHH}4٦-ӷl2z߿O8<֭9g>h]pБGdF%''[X~!`Dvwwf3338*>|866vժU)))k֬QWWԩS9֧w>(4a~[螙৻'T6n4ڵj=&s7cHtLLsf?6.c{vl[4\ժׯQ%XC7KJ~w&}H Jf۶mnIfq3[ZZ 4qI>?qD4 ֪"""ʽJCpo o`C6{a'N{5v%-m_(׮USFFҧ-/1^]DKK N&p<@\&3`S>{:1%TS ŠAiQH666DVVVnn.UEƍ}}}MLL\Ǐ]]]˽JJJJ,iyyO U)׮ STT\tNA}/ϏTӯO?`=֭Y(ϋS'janfxxz) m[:F]]k`"Ueޢ}'9jmےsێ{|ω#wGи1x`?3"""9vinl]-뙹-O}ݣO22ԫ7k+ /mڷ1 (IW{zٵU^~sώN-w~(/_cQ#JHHDFF-_yEq{4mm-4#T *** Ϟ=+ EFFF=z 2&Ν[V-4Y}/7oIsk76oX{о_{¹O9p z5$%&sn^6|:|OޙSGO=QNN9m点K5ƺE>~(gQڑˍMMMݷkrE:}F>z|uw1Y9:w0cn&\Ƴwu똆g͡+~g7u?sy?y݆~#*Ǐ4ҲywY&ZkWq9r$Dg[wl߹G) (**VnT߬.J뙽~J}Ot&U3|Y:8.~w|~gCCC*+##++;z0.gL;9%'HHujںɫlYYYzŘ~o׆F?Q mE\*iV~2//,˗cFRykԱ=MW7.Sy<{/}q8T,w}3=`[[۷ol‚J5kKIHHHKK(Znn{n^ZؿO{[PٽZfޤ M1%y'#~=fߊ~g|/$$$JJJ$&&\0GRR2,-u):&FKS[mJP4iҤ_R`ojjAIHH\|YSS{{=;imQݖ*9}fCkV7K6 G$'$&VfKLW![(.[Ty[+ј ##Sx"mQx)aTɮ3Z4_p|ժoZd9; _OԪK ָaܻ3f4i3Z*:544K|~ HIIe9H[e[NNA~HM.#}e3s&@JNN\蹪PFlѩ_ݻ)))Q? UUtIwWɿnRRriZ1ߏVG׻|ժ'^@џq H"襾 *|?,YҠAggg}*ccɚ?zÇ#mE@#8PndǏw>SSCcxa(RQUA ]{O^ @IIFmU=9+#-M}vy=ݽг 5gn:-Xҽπ>'JYi3 &dG9|mS6mau˗LKҏuk.X.}מϏC(ͬZ]qKTBcՙQ*F:6?gVֶ?ZICgW}O< ϶mۆ>}z 3[ZZ֩S&NzceUTTdNygn9œw?P ?"",oբ94u $$&.-IKO{/{wl |}*SUp֋۷E_N~/ڳmW'OEaa}3|/<)W]|fۺk9!!/ZJ= ]!1#[X㥬a4bwssrw? ?~C[4w1o/߼~g}/0ksfiS9 h=ׯܻESg$mvm۸Qi3fB:wغcW蘘 ]\?aG 8~A,--|G5k2zzDnڤ3hNFGh__r°ۍ̩ZBz:f*%iԨQcٲeغu^9VᴰlS7g&M6Wr/?abIR)p=E;Us$$WJ<!/-NͱimzkۖM;8y?^)b`w4,))MUfHwԪvj<3x̼i5$%$_y˔8#!!{l߁qu={mihimհAf iJJJ\G[Ks߮m}{,i^=r#b=~%!Qe֌iGQQ5NHUN].^FsAvݱܸw۷[liaaѬYbt>`¤/Έ ߱ G?OzIMߢ0)IbpfO^^E]PJaW\.jhnqsnn.tZ7v搁מ.#SU͗rO>cbB#-|Ijn,ڶeW.)D:$߷Wv7oݹvfCV-[֦Lenj"Gw3D ^苐F "|>ETGazzfTTfttKnݧ Y\B*șpr33S^Ȼ0ds匍i R<^Ui .\Jذ"GΝ;۷SL0`@G]Mv<|d̜J(+)MIM+10OIIzMzz:!4Ly}Jim`?yw7 FddH(M[uut3+W<}E3&gs跏7oRҒK֊5LY"55笯OM_O7/maًwԭc{L({O7DDjij jщUgjvVkժws63 V^Kolu>4(=$$o)''UZۣΝ=*r%H[ʠAv5w\ TɺE'Okjjjk=ܢYG5lP_A^cZk)RZcܯב޲m@ k݊#8$Ekht;O4g}DEEGGFE?}|ʴnZ0w6)W{b& C^3W߻ sjCNJ=:99RRRgV#N櫡ggNccv/GDL2}KQQѧdggg 5r)Ydч6F;z&l Ktur\0@;w&/дq;.(Wۧ::8ijhN<.~ZU*wݧnٝe:u3ocϾ缥JYU7o1a#s-rzhpPQQԱÈaCF޵QVNvqQVTPoim=yTqt325-mĘYY>ֹ3)WIHHk#? k;xzi>gnh%+\n@+3!--=qD^yMrsssrruuuwK!m,RH[K!m,MNLLLlllFF &##TvH[@/++ 蜜---2E"Phjj3gAbT=$T!mLvv6ks U{쐶BX i `)-*Ļw+ m'!!G3)0c䤧CXHJJ;wď+V 2l#?YY;Ǻ3g<5qpO0T2o$&&Ҵ7SɆ}7ﺚ5ezz۷߶-W(, C-{쌴ϻxٳ#"" w% ׬YӪU+ޣO(XdXK?kxA-lܳoѳ X uLAAEK߼}8? x nߵj{/o"u7n/wPgǞwrJj9㺺:^Zʽ]ƍQ|.S53֭ZR&} vxoE&`Cf\Ȱ#kWzya_ -۩w?{1&."Itl8Kjsv8Cy(QKwTeUJ%H?f}WNܽ(dݬ!u/{BwذaC[5wMuOPeeŵEE]Zt RѣutRTTΞ]_RҺYSv^~=wFIt*7o~2hήk ԈL&͛7\䨢t%vER/oCcَN6 <}&O6`zƲrXIa7g~]] fS#𦬫3tD ]5΀edb3|B"YQѱx/veUUO&VgFB k)ay.wۧ޹7}xs +8[JL&‚r  ϰkmmӸ&sPM&ng(́4zƩDl o)\O)4\ =|VVS܅"lIV֣/y_َF{{ӝA4g~NMy Ks(dO=TOgؚ_wYNhpq֣ Sp-4G>ˆq*8OoxJl2,QS<|o6=v"^} BCCiiΜÏ)BxsKl.ݴ$a0镫Ͱ ;^JBlae#N-L礤503 |YB!$V&&&zxxq x;wOf+I\o/,$T,.3,*:.#$'[ѷÁZk[O|!6hg@L _Nwl\烁9XFϕk1aaP+v97&_%nɉqK;4j6gOV"cM 3Џ0Ubٖ_@^N*ys)d+*k~զʪ*DQ}>^[6QbL׷D8:C |2op55{>ИDkwL27 Yu_ 1PRj aWT;͢Q=4M`:^=5`AC![n-lqZh7nCH3|&?_^׺"\9cFcUU#OSQz4>={ڼD#. STT/-,,}6YvxXӅײ%ī'/-E+*..^F dظ|V )#䔕y'`( -'^J:fhQʂ&?r,w{y9 pj4 08Ʀ/sc'3kt\_C㠩jl|2apۯ߸ŝIWRYXOIg0?U;elGEiSii)>,"G BBBr#|9l~ Li"݉nCG` ߍ449VV6M*5e()y%:]،*)f˾@yچFnluNTNLB!>3sLbYBBX}vcb_78[ )ccM_߶knRR$qɘ~PqPyvv[t F=qℳ۷+** }6Av ;iC}Ǐ4quĻ1l|KY^ .edeeuu87ic~OȄƞGػL&1떟1@Yf.y L/ĶڠFE9rĎ[&ֱfu5ᐖP@njtLG3#Bb ۢU$q$Ny޽{ }F>Ia 40?oIqf2yųlmવ:4C' +?vsՕ:SU%@"jj IJ|{MH=z@ UUaiiX. nGv[|y۷ >[bbb8.z{-3iӗ-s֕b,Vyy9^˗PURTp׶4E^Yssx9dV휢vܰ=<f04g F{m OCPwPܴh=} 1zrMMm3yraCmA5ZZrYii7?rt( FC`3븸4SSX]LmaooOF[zcvءt)YHHh$ h0 uu \~a֣'Nd]!@{#(@MM IBg4FLLJJNT诶cWYh@3Yhav>!޴!Bң7@~Zс~[mbq8$IA^CG2 y:z*)sՔ׬"ӿ_߀mm;lj_h>~^YUEmrP㿉"y,$1&Zȝ67@Vn$2#y# Ю=qzPxy.&ÁDEM47 o%k> o j2zC S z8siHӬ.$]y6d8-=ci陝ɉ2#+]# e+*P(μ LӐ˼<h"<_!TtuuMLL ѣGqzzz}ݲeKnnw|_1_e Lde7723ǔxTɩi@ Қ&,P4}}GfgC ::JG `H@ԤUr|E83mm~0=3SQQqfJ'>p/P8e(b8jĎV.۾3g#akcM3?Tt4P5ُ߰bF^0&_+22R߄jmX63Զm&~| 9xFLp〗uG)lu>x`o^=6o5pi3""z:ַwԴLrt2R\zխ۩3eZ))*@idFߩ#;!4/'_!@r,7g|47_ӭym8+.+;o17Ds6YY˖qvڻg'WaDбcWD !!!hnZGh,Vkb΋Or}+ˉٸkutuR"䃬GfKnfIS4g@5uuf9;9bC!f7hֺvI,@ox#6{]cccuu'g2P8!?qq[qwb}}q\ZzƢ^דcOhIҚ?y)++/e9>|>|A&]!Bn B+brZF&gBa7nJ/XgAǎB!U! J ljxB!mB!B!>!B!TSS9A&J{mB!B)..۞ XQQN-B!Bu1Gw-B!Bu1|=CR ^G[ B!bH$8!B!B| -B!B!ħ!B!B| -B!B!ħ!B!B| -B!B!ħfCB!Ba k-b~B!B!l}=L&k$7 B!BOaB!B!#NQIENDB`screenshot-11.png000066600000226112152141651170007661 0ustar00PNG  IHDRdN_tEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp (IDATx \U黢 ߲5eђu,[a$F\ #F L6KKL\bєR?}JJH*e99||/;ΧZ&-^9Q xݻ֠AVVl`1`1`1@,O\;lWBK7vO}Vfm,L|[TۤVNN6jԮ(:NǵB_٪gqQ1CuwjM" !utr'_W}l\hE/ge:Ll#<ɽ'iPRS)i997M<}?͸^_rRiDuEzFUӯߔչ5mWE2g``Z-.Vˮ߈-?̙!:~EU5ˮP۟oHz6{׹|SN%:q+}QY%j۵2<*Uo֥gĐb gypu{}и(C}~:"ie~>v܇KҳyfE6l7[vNnnŹtlz7}Y _dlc~򅖶Y>P5WsTNgג6>'i47˚u&o ='n%wtcY󄲨:m=}K 4ȎQ6U;6?ѸmNUNXl&JY(3[\ǿ]#Q:v#Qa܏Sٹqㆹ]Q999IIIb볌oZ:57V&Z&\u3hmXu&7 L)V8JѶvnŁ4#]g+չB߻qW!t1L O~6ډ_|~%GJA{r:R,{-k_:߯ݖv16yioަųv9#{9Tq8α=1VZڵ޽Ko 444455C؜Z,1?w\~mnaVv\;çT"ё: ' wcvA۷ރ,KZ*xP|?`j*.lw65$P_vJі^V.!]M)13Ogq8E>y?C܍J>'kf꼐~*Q$JHԬRg\o4wx0a`a˻IYzF5iEv5|;zTF';>՘Uu5٬/~Ύ[:U|Y`fC- ^L ֜YK3Uebvvw׉Z7_TdO>/EdQ4SuJжg<1Wl]6^{^&hUt;y "wG !S$=}(E'54L5yy0ka^2ęvbqFWG~=8>c*,M}H"1|ŤJ:*Rڽw8xOt?^>r8.]UQNYS ҏ-:b#q"2#~яv"fOWQNO#1BMݑyGǗQqmkהw?p\&%IPxU ,{;eu^'_mԤh:|HjL sS6$.[4c2fye֘L,tf:h:t'D}{#y,֎;t'2O`nuĵ}EttZ q/W$ a,S_5OXi7ަVŕ6uLf]g|PQZM:G2_;z4cǖxt?-zwZ"O SrGR<%dN7ɖ! }9^~B^ I{g,)1{gwI/~ν*:fD٠EF* J9NYEŻ"5j$DX!:7]Cbh~ؘ'hh;@`Ol]AB܏*Y5vϷ=Aٴ$B8X2\u#,:ЈN%x(qWҟLYרnyMU}t7zwdWqU+ksBPetm}aVuoO(D9_4rSwتd`6/ |wsko׽f4R$F_۽ٝh u/mFFyJS[7-,sO5KBxK* \ Lk{PZma3k%,s4OȆ{x$iͽC1iM1O4 0⦳qi ۞M{ f=O}R9#F Tjunb{\UpG:~>M#{Mtj/TѲ*@l) 9F_}Qw4bi$ѐWFmUeKֶ̮vڍjF9km.n~ٗ&ާ9-5bBE^k0q}|r;WtG5295PhF_zh'CO*渷Qa5Z-|m2ҢJUixgeZ>{CnyB\nfeDreHK>8vC5UӤeƭ]4)v>#{ژTُKM*D{2V㉂ъKT´c2ՔR 7aɋ{^D=u(/e]+ǭf^}M6-XCTl7o'G:I7/5EStsIGRߝ}Z[f}3FDH2*p츥Ýߝ|;# UMg Օ;%(R<QiܾZ<uupO+ c=z>=VMKgNܿK.˶GWvG/]gd텸ÞRam?>QtM>BtJtGAߨĺo9X}w"P?w6ҝm0i"&F#T7l-Sۓu_7]i&#Ym(wlWO̯Ҩ. |6:KV?V{e-R<,Cx}Ϸ-Yuyq߶z߸)޷6 ͳVa;kQ[fO`7kDSuBwhczQ[Xwެ:~lza'gn2v|3דZ# +SDr>KZ}b-4#aUbSYsJ%p(m1r969!5+cu9avOG>,u~/9bsJDV[MVo6Ύs;/.J,F8Z`e_}eJfף]Ab;bkgCG~\x>NC$>S?,ƍ< 骴;)˾Zs:U:zMr.>kᲟ/gk:5y-1]!꼔_V.z:Eqq]?|^f'ذ2$"%SoN8ͪ^hp}!P%t އXե7.]|!7̞d?*_m'*YlmGK^ kA.kYP"1ʙf#oֿܸcƚuĔlgYN7(̚`5u]\8}]̵7n\hJ/MU& BQjkύ=-UUsڍ+5fo*)忳Wv_qQ C+X 83zmVJ0ϯTY<Ĝ s[FCEX[꩸c Ѵ5nky vU&;G› rT/`yqGrLumv9cZc4m6 >_hh|G:8Sex/ WȎӠ3-?ru)"DY40t]g){t z.\Xo`] F5]dOm< m3!"t˼$זPI-2jfoe~K,!&~𷔌Eu 722n[?Xp~%W].,Toc=9CӇRY|'eh'zn67 ̌UO7/9lx升^XK~V*AE }K,W-X+D/~ݥ je{0s FQzu$52+Ӊi>fG,wq %B#FFOaǭZL{:ӎZ֬X1)Im Qq6fpJ{g|ô %"ZfJ7RD5SdV7V٠[U\B_dŕZbEѿW%fi}}I{3rRŐ^WmIMuwGm=#GLo^7lrGDfLں5o4l6$&4677f'DHz$}V7n>>TkԬ)22+ѬmF?ry$!:[6s|ИCc8Td ,L33[m[C?RvtZٰ9Avq *b+J|Xd~8iqUl9+ߑK úK}&kWZiCo&|k8Kئٝs}սf|ZkXqԤfF1$!,~JjS[Tb%~\xA֫WzժU7^ݻsNrrу 7oN~w++fhbn=i v6H#$Uov0gK r;/#>4/\ǜC̥B[9U . aN]9պDA_} 3y`nn1 <=n<g]>kmNҪV߰ё˩҈ hҮCcrɹ7~ﺹJkmXVmڥ"!yLeջЀЫS*$9>}?ʕ s8-Iambw߆Ug\PHg*e`OBsc*s̬2WgXSIw7X`~nMǝx€橭GJnTbEеӀK vYΑ%/hضL-kD4 ,vژ+Ebx,KcӓѨpuNJt꾔zښyYו}|\;6FWя2۳S9{ Нq|f΅o;mk߇hqzxL4YEtVnew~QQ=SwݨE^ 2vBL 6ݾ<\'$_Gڽjcޚ ">2V'$z,ZcyLǮ]Ǯ|ܹ6o__*3ڄUVPP@?씃Jx&e>["RxpzU{҂:Z*ݴwH yThj5Q^GVJtX}r#v;}osyY L31Xԩc~#Rm?sU"WQ ڭc *55^z+ݻFFb9񇞞r颗rXSRR6l\>H8R\D-w3O`1"X,/|_sTvw% zwdxa ׯ+{jKT*511y|沂-ǻX/ z&]y1xƋ޽KW444*)Vz4­^~ƥC?n? LDb㻎=D _3+`1@,A b X `1@,A^ 3j[V}MZw̲}lSneFu^:s+60QW~۩;~lp3\:7)V2jŊ!I_ړ~\bYϻZ8 b[f^T4`o(QU=M|^;M|rw掓֨& ˏnC}[k^;7?QSe,Z}/!{w$O;}7m[wj_{͟Yz1ө ּzjͼfwTEs^܆A~CqAӮ_SWtrn+wg/ZVXlj_'S:~֖ۦU$m'‚#'pxueG=ױ[zBh9;w;P&phm6+BTw'%!5njҪXKav隵.NkYb~qٹ߅UXS^d.OeOIN*^eٷ/?i%fw vf8V>[`ܮvvaKQV&tIXIq(Cuik|RS{[Gw̺sټk-nWgT V.V;V.rR݇ۍrJ:36>y"t4z(VBgS+.QrS;w=w{YՊMO$9˾WI~CLvo6g%uM-QUkho n&/2:0kw>y㼔FMX2.7Jy){tqc7YXCXi]aꓗ6~"B#N1 Y uR Q-2`CZD}3~[nRp\2n&>ST.Q5S6M:NZѱ8]engcubc fe YO5KǺr`UVMB{PFRCiNZJn.{eP&( =Uh]}?:tJR_}\G=t<o^v9a7&\l +TFU2|:MSRᱠYЁXi{߀vJ76uwz֏ D^JԾ}SdT*d2h^n>>G~wO33ud`h! ɿ ߗ|`wm9Q >o\{˓G%tVj x\],LM=;:uNPyY@ReW3Jee\-7RL+[=[n"T5abUA]Gݻw֭[jYfj*CewoSSSx٥ܻwb@ ^ ,,,A b X `1@,(i=.˧Z{4OĦEM~ԩfE'sMCJ~fش׿va}?؄w|Ma3'n'֛iXV.#19ߧIK<%km=~eXw[cv\,;Zyfr.t/P^:^ST|\s]'= ]qxVONҼa! ^t4 e=k=?凭?r zJ2Ȼu!%{Y=u%BqaOvϲNaN3ɮcu>ԺT:ge( YuOTw's~Ep4%]=%EE?oi{I4Uzvߐcz&5UEM{z8w!Ofl礼`˧Ӕ>uyJLy7"GhI8qxഐjBdvMjs~XjSvٓ[i6S~+?ofO\)L0wO+NRVWrӣ,<[N-!SmndC {zlŸ;jQ +`s{LۑWꨁE}Yވ l~l:zE+=iKql*iteR߶7i=H1[:[U.Jlӹی 9%ʹC]>~C9"xuy {?jGkɉVΎ e15yD$WGmϨWl<޹{o7Xd~8iqqϾ3"B.neI8v1nN[_ЉgJE3~^w:6*io7=zΙr76=U{N̹:xtq7,Nk:M3]C>0ˋ^١|a_Gצ0~UWa۫*hk3')z,T48𼑇gBf6=:4Ty+:x%DYKF'?Ri3ܕ?b3hve3B8浿{DƊU}}ЕKF:d{9CB E^B=ȃg,|lq~'7|&2aX )/z]N+zĐڢf];aRޟsG~(,oƯm%mоӏլ(!5m2%ʶ@"e͸}*$Bj41-M}wj:8OLQۢDtfӊ4v}F޹U{,uHgZBJ.$/1>Rhȋ\wSg~CW/oo2̅HJ8+{Vd5uK׶p֥m?^$?݉P+ʹi?I/-.]]xXt ?dQ=S~ =e(vުܭ]/6+jb[} .d&#БsݛZ<¶[TXU M%7ttlXQXr-$ kpAG҅HKC@O\8ksvm^#`OR&3n`af'͎?Q9*ZCYBVjި2C#">|ǥ釃R4Leyy,ZݮG]KV~9|EdcbZ$Tj{n8XiևӬkgn&Ht'_ 9i)Y~U.~0n` sԘ.|w{mLw$Byk)hѭEҬ^ӏ_w]`oJϝ搷ueT~|HLڏuOC3_ZWyS2:i)?䬘iqy~}7Qƴ*q?.瞑-Tae|:H=;7j< ߅U;trzɠqz&൴0SfXZk!weU׻o(?7}P:999$^s{o ]EngX/%%EGGGSSlb-"[~})2');.X^OڹxX-zX(=`]*bT̵)?NB%fF^χv}u}>.6s[IvB::Ň/Z57M 1x&m?XX"RUJoi R񤃑P;]ûKXS\UNecVɗ2} c7V&QlkħMy^Gˇn?sk1Vlq5gF5 ~A=~Wtj6_0^B4r_ssмxgWw'E*Jf'{Dyq<=%/8ɺ-=z,͝M/ü ~ݍ~U-fc@RWq!hzvZ=Bˊ <obT=z)YYl0]J/N-O=Tߟ_TPx9nnPю6k-cGzڽu#w#O8V"zKR吔/hh|?M+ޗV&7SjG}N\Mܴh?|'^Nq[zr˻EY_}}αa|9k),!'봇 W)m GfmBdFqX9By^Z܉?|rj rC:\SSOCВֽ sD(No^zBwN-"fM&nQT6f*[{P^RfSBW!w9)WӖ~Y4g~4pTy/{h:r̠yOàG ./U41q5gޠ洓g&\Vomp5r~e!c9wkE"# ;(+[>燳mH8T凷Mp:o_Sa_?jT21f( o(-SnCZ_?Ehp<,HuN+.Bty]KaցKrs~7"Wnvf2Wണ\Myk&\Nۈqj f(^ٰ٘}6퍌Io1ڞ;XH4״ZptweݼIr1vzv2Ѿ{pO!<{vɘS,)wCsK/!Z8_ :Q8%Ez(t{/w3q9swUs>59q#i%&AqԚG sݹyÊ֮oh {d䕱->E-XMN)u-> ذ!Ł7l9uk άĿ!@'Ok<`k:[I(h=*`r_äGy; n5qc&i:pJ[6FCK0?Gi \gn=+NO6'5cVuGӋ<L Ou0s>Yz*O\ w :*9{i<+H-Z˶T)'+f8q'C`[glU!fB}1逷4DqFVmNr630Vs,k[:r*j5ek55kTjҽm]ρ={jjr3"VګBSM+ijh]yWX}fY~ NKM>V$i-..'w_‘-<>0kTǧK#ީ w] kء+N[trcOFfmGG³y~dBQSOs!' kflh\FeS#;jۼl&^B7o݁XN,+¿۽`yfY# ̸?Hw%g KbCu:5@RN|V&*hQ\Q"NM5+Z5mGz|q%iֆIsؕ1YDzr˒|-I\ѺEUNd9-E!sm꯼3tEޭ_WHٛדaA Miդ;VGQI.&ҿ\6&UWJ׼i7?ʊxs4)©Z9uPf_Y4&}қb'~# 3x cr]NǨ+X|ˎJ6"U ڎ8ɹn(鶬>RL̴s-\{+O'>/_ѐ7 ߃NVU+,4`k?'L'۪KIp?:u0!@nz?99mz=>/jc4r}b tS撄j[n)'V,ղb!i"}olwm~ohb%Z7+ٷLTѹ<^sSZּ2]\sS:& k\i>56tXgӪu;T(*9 .5c- *_<K(7#N܌Waw bIs}/ڂP|.&i?N]eZV~2*!pbQ;ٵ$w'u<hIny1GuP7SCR\tHëϧMm5*߃;rՇf"e墼_ I) Nj۫\F|„}qNG2-m~3䇐wRlrZթЖޛwrpPx4)^1Bqs.G~Hjޝ ![s7YUBІ7Hpaǁ<nstq͉-,/\vZu3]^';9v}ЅVT˨t~+]&k(p'Lܻ$qa]E'x֜t ("!M3z^4إMI|hM/)iO n'\Ls1=v`Wu )wf«+*-\?alZrYqV1dѼ6"DSݾX8ܦ?}paG!gAf/ٛ26bN))itr߶WJ=ʧc.u^uvkCQnV/޼oVeR.oѸ;aɯ/=K=KĶ_wZm~ 9vjtE#)RqΥKsvsǻ(?/&x;!ϩխSFOQv4~6z 2 ioo[%8?b<7JS[磧ꖜ$q1b WZ{vGlε'Ee6}w"vQpl-ΆD+,gynfGZ#ܻoޥm0lwXk/@:V-#I?'g YCzteKӅ۬K ۱KMW+GvE?zn7aՃx\>mbl<<^,^\o^X9:zj5u]겝"I%Vée)K[v*d%G3.>e[Tssd۾C։N_n'/˳UL)֒wn~}i1Gmوx)gyUWBmh|3_F8}^ZZZPPW*+((4iҤklMO=dY&JϮy?XV+[Yy'Y@ovqnF\e8ۭ`;Zgh wx;xN,,,)@C+FA+5v4TQPPRP1&Ś%%)hZ7sOk&ǤXSp=bKBFuV}Zk]xf%ⳕXev)))1 +ޕŝ=}e/9%kl]Or*/-݆Ib]uƋJ29kݿS۴N% 4r@gSʈ,^,GH6ٵO;Ц;8+=cu($3sWC99ogmi+& Jnx}BHoiBt"`WҬ?7tű[]:&:Z&:UԹo{M! ;fKlhVu1Pn]5pVzJ/npXn^ RBcDuq̴mL k!Uzws˘K GtbJoM-oU^ *gͻc7]Ǵy̢6޳nKZzo[dh3t%]!<& )e;z*44CO܏6Z"ź4_:B^Ec XZy44-iwS6Sn9J19_]bKy};֫q+ %%U%!Vxݽ+!una.LxUdJ'K`m_'fUGK$ #2Z4V/+b򱳥ŠbQ. J_ыEz~֭bn׮{숨nhC!{͚`z0q*\O7=4wNDF:h6ԩT?¢oYbK+hdjYYl`n_"*B9с+ ++6,t'_tk#IwR9O;CIN=^U+m !RIdc-޼|E!~B0pVЎpo UsVPzt s1KwҢ[vItpk&w}'/7 Up&k۶-f%.&W-8.p`?J7{|~e30NE;2p&嘍F^4nW-gqYev›磂Od3޽{%%%L#~N Ҏ //_h4ݻ$j@cP%n£%B(OM~sM~U ?̪͸~֖$qm\NA!HHC@7P QpA* z[7b ^ sd, __Gm82U/)oΟ^ K߭:tXF;3#u"XyHuJEAitf; ѵeYp?Ҏu-tnȖ_vk\)|c]0US7BMV\r#SbB[J Vljq\֜2~rܜt6u?ǽo@H٭AG,7dʵ/08qݵD!, 9tU& m˥)E8Wtŀdᩖ=|231/c 4:l!=7wKzrṨ[nt6~qJo\"]L]n._(-+fۧ}e#*r獪L\l9 cIJc)v~k)o?3 IV>2fzZqUG c>a{/RQ|GeLJɛ:"H qc[GLW1hԯ,RTLuoU Sgy+}Γ0VVXreZOq574{[SثҢƔw0_𾹬f7spS~ j2~K4NlkhvHO^uQ~} [ZK]x+ 7ϚϦ\Fe=AQE;tYϝ=/K7H}HCG|pa$r6O%.UZ5>ʇ"=vPoVԴB!t:V7W3b]n~家ZeW*D eިeed\_pd`RWÙZAZ~!ZVP4ЮNߤ&E8=$zh9Nȼp95eϽDÜR!hYk /d'B(}bR}TIC/5}qµB~tTѣ"^(ć:Bܪhrn<|u+_pW57򅙁ZeG|xEL/5 m^C/:xOB#;cEƞۻ'b9ѣkkKҾ~bwc/EjbNP?3+~~rS~yzs+%SF˺VS"LܔԄ?t#+L,O^E(-KS!Zw{-g*s1r&|ӭCzǥggX3]v0$ңOlekfˬ:|~"$^Jcڿ[?G",f˻?f1ٗT$Ax]E'z̽?_v ;cÓ)(`u CʇT93GɆ*b<WQC^AGyN4Դҧl{gKܰ;o"s{Gϴ\|3كf6n|FĶ=;]RL4rj,"wRy گKaS\rJ᥄-ҧ%拍{Œy!U¢lA;wc(8V̎\FY)=qR66lzGĞ=H(Qr]ngnJM&=VϮٙݶ}A |aZ~ԗ\8tϊC Ve*?m\$)a4- zِhE""6 VWY/Jr"xK wq܈Շ4xZFk;fH0?avuqWrr^G{ UM 7T}GY,<.|XU~g vA^of >0ԒteSvUOVmA`mρҽ Iz]jvJrF~׶jj$#u|lIY\ֵBXFIme5]B>u({x9;[{U+W3fO8Uتov,FP=<_ O#G[_wxr: ,9třihVj?neqG^rSɫ}Oz6'-葼lx2Gzɸ]`PJ7$WF5ҝlC"ԕgH |Jd ]`~/mJB")ẑ5S;c jEPRUt5ᬚRCOTke@ew՞3AW/pZ4%(QY.*(~H꥙ٵcӵߝגt5vײje#RSZtj7MZ0oQl+G]ׇԊ`1+4d"Y}}2Ƈn8QT*teH EFVNg/)"?>h{FH/F&s?!+,Ou1<,,a;#䅸-y8lQК e;E'|ǥ3RIvFQ=5u矨ivKZ7e`H|#642;oGDUa$[ڒ9czOWҵpxY5O'ΟṩXwW {I-8OXtwݲff -[=fn) ?ƾف=3<_hǐc~g ],R77BN3ߟ'ں~!J,^gSч饥$*\rE]]]AAI&UeN{Uc5nm6}z|Sz޽DҶm[rTUUUyyº>w,\/%,; Q"nr: 1K ;uϕG 4вo̓!O4YP)un^ITOLGKb /Vmi(#  m_'f 5wWz*7Je?ja+3y42r X)*h$?UAH+KOՑ;ׄ^~nl0.ʹvԝiBq\>jc)f0!o\(J,)Y_ Wͽr4Vm}<:aaq&vTkZ9uH:},!Ntgaa CG<>|Iӏ;d\ߐw*O&/Qbg.oan$F܏{JWg6KO7cƄ޷+wn^HYUڦB-Akz(kN^ՓZO,^lyHq!u'TII)ۢ"<r@Ŷ˷>s$YM)f"~N޵'Uqb/z=2N&hQr/\U;?~>qBm/zzMW1vk`="C w]:Ұe|%glӺZ;ms6F:JV6qki>iAjtsd(-K9y :{]/5;4M2sq΋k&925(^i){ &SҶx 9Mf~- VȶGj(:%'T/NjhXTK2ҪvO.bUN"$ˋ1V/Fs>^-_EU&C{ʺ ū?[-TFo;tFCs< 8<qܖ RdPܒ7kY}EW\gXLx$iqFmпGp|ש[Fu^zʈgugĵ, KWW߯ae+E{ZVw'ܥU+ǺcΥ %G-nZ͚os뵅Hٶʒi?^Vu0sB %KU8–nd׌^;O%V^dZ%[Zzf׉c5x1hf/Q$I [;; ?X6/5ͭ}<=&YhiՑPr3L<_ng(ċ$,Wqe|_OE;RSSUUU,屺*#%N:4E wq(]޼52CBY7':T )'U{8"{f9 mߍ{l@M1Ezʴ|4338xHUS*70lg`6B9-˘}%dwnfF:ͨuzNv]J"7n{׍pQN2Xeec`s9%^|Y~͟u`ܨ'ej_KjI-fn7~+ 1E:ZY.͖wb؁cX/HZza]E'z̽?_v ;cÓ)(`u CʇT93GɆ*:b^!fN{OީuLpPRV=$sԬUl97^c^hz54M J/zJ}m-g|`"[ˎO|KnBw.-wvBkZ杖U4ݞ0aqvtSil~~Z ([?榞&WHB.:R?gxMZ/6y.1:Td5i?ySԜyN+ YQ?yw>s3cmGtUʎ\FYwZQƉF6VR~"iFh/EߏZ&4I_>?!D=egm#DV٠}Dafz_f$i`Ŏ9̈́5S5U?q'!PԞpJ+'g )"=tpEC =wDƾY~sCgTKzY[İX ?Ѵ(ކLI"1z"ZuY2KmZ8;8?Ra6s!XpUs'VYywnնOTl6k{}\!9^X}{v:Quܷk3نz[w [e{j{y>u}Q;T*޶ 0vE^ Iz]jvJrF~׶jj$#u|l%Y\ֵn-F smSն|Vu !xQ:CIz=<ZG[Iph=jphSZIˡkŖm*Z[v]z0Rkږ'Әd"Y}}ڪn8QT*teH EFVNg/)"?>h{FH/F&s?!+,Ou1<,,a;#䅸-y8jQК e;ߟqLTQmFOM]8!'k[Mki<V Laobm+בGtmhdTO'wHxVgjI t%sk*jN?sS\?ZzqeZ_{8,S~:?:S}+^%'BE;;nXBfQ/>JvJ}G!/^Y{R= h([ my~YSzQn/3rJ}O8vbsYs$>zPTkr0hdoպ׸w'ws|O\ŬNU]|Vt`7ׅ۽4D$9ˮ"w߁cnj]=}+劔ws˦m ]X },575 xا48:Mu|_Q8]4626uK4OmkyCW2`sjiޱGK{d;5dUVr\U.iS6mei+N"\>(xW`SÙ}x%O ّ{)]m]cbҀF&ZgJ9nb׫t@;ݢ-  0ԯ^7s,ۓD6 C&:x']n$=}aR}[' E;#Njzm vyܽA[3qiU^U)ąt -f QZ!/^J}Z><+T]kۨH>Y#,[^Ѳf+OW5oSRnUs~O)9Ru,)֗g*깄ꭹ͛?lNQʱjR}s;>Y\]<;4ԵN򊄥>%{ٙf+yQ9jݭev&ɡa 𐸌2Yk71룳Ȋ ݝ\%GK:|bFJO/HؗYmh%3rM,3jWq^ȶi$pm{ $tE_c㬙5!/k㫧$ә5׊Ӆ[%lY ?ݭ"*N\ ژKȋ70TUv-'?9 g3 -j_ ]ͽhnNXHءW'\ 厽j %ٵڒDaATMiZYy-lܓX7INW5IIA1ihYh\>|bnvJ.'qӑ#?-TD}{V/(g̍̕>No%/, UDE_sL: )b[ʥCCT|^Ԯi5v*S3S7pj}r}ˢ~&4{m u׾2SQ%^b.?u53:k&|2}e{y qs>msbW~&=QR\dǬ=I^je+]f]9iF)*Eu^* 7|>v0³%P2ZZurVN98VlTUQՎurn$$6u{ޡ,pmv#C±ҡJkGj=lU˾ByvϐΎCJ8~릂! J<` 킂nt 8\T*+khHii(+ "B(Y +i`g6N0zRWCpw8uk}nJYSL, D4׈'KME#?#p㥤J۪о纛) QqP!%QRYϿRӋ7(-~K| OͱY+%f0)؝&r1+I1Qܺ'z4tqv|_=mMwo. uwf[{w!+3{UtQѦօ6>wA^=g@f𻣬duP50r ˖"MqXbYGȦڔf_|(+ȸSdicmU_/f[G#+[7[JsL;d3un-8ʒ6^xn ʆch['}&* 80|3y|f7KU]b`kMu:yѯ}%밂/l۽i9z  sM%eSOX6*&./py7'@ֹf[9=pgrYGrO/6: +fSIq;!.dQujt;_/7]3B U!^HN]c{lR$2`jF,!ܾ7U5+#ب4kOfIkU.)5'r*b[9E"n'~M.8yFr_/}:.VZXQ+t#%Jx]ob؂uN!Y \;ḥe('U2c M\BHHX@ܒ!S\,$#Y q cbbb Y $ Ak{sbլ v}qA ]}{ dƠ}"ॱN-f<0: t1Q.;3vφ M<ʼek'&2)1lZkۨ$СwIZXy}\Y?ȨKGp!ip݉֎"eg&3niწ;7O1yǎМQvcg8S)2gêR&f袞yF\=?6`!A$'eeexF0@@ Hb Y $d1@Bhŋ B3֡CfxTp^y;Ɗp{z Sm\AA h6nɔ KRj5{Yw.# dLn\z^(|mvq'G̓<֭[$@{W){9b`Lql#[ՑTQz4xͶ9"WM.&ƭ[ՄdqEp!kعA^꒣e"OzwkSpBQUgm/q4R-9kX;%AC:ɋ..v!~>n$)95`8/fg$/ʊu* I5gʎ/qߴ5۴GIA/&'bAo{}%n>_o bvNj/ _|qFjQP4J@&$8he'r#obڪ]\$됉Sy3)| b8`[G]|^k1FeG}63=;) D]Cn=S6}-!T/ZEdw\|z{IbnᗸQeߜ~fҼ+| ~:̬v\lO:y~w&թxD@i嗇6dx7JJc%G *Eݷ+mVt6nt?j'/ d62lErOM?SJe~qwZ';Vy5Ȅ u4qW3d<H;~ӳt"g;[/S<"8Z8N^sFGz5mgܗ8S$,_>NMUQ}]d/~T8n7Mx78"Ww,~zWt U߽fVDYa>7R>uZ훰3)箔i/[x0+d/,,MbyҼBYokcmՙ{K]$ ysTbʼn^Y9k)hg<ڨmO=th 3~ɛ"O9~=VxYGn:TejYxdWJ^K J'tdMZ$fѫ_ƼR3i5+_zB5ShsW/V|8KNg?ݴ>.^~6F.?+4{ds7gY0]߇~9V_].d#W}EK*z>q28t=bKO?/ތ//?\(UGtuej1)#ܞ? D^~=(̊^V7\](/DIsfqd=Gw\k' K}No༩eݖ[{˺3KHS;khK&vGžW~sϏVwN_'];'^=Uڵ0)KqoIew͚7K˄~VfBI'{'M?0M{/w*K8eяuUc_[?cCU?,[DCΑlVfJliZHF(cq&ZI zs淞ҭ6L}w-ZϝtYtM)ٲs6>rP1?#!PBCEK=XO9sY9Vt~soj[suq]I>~df|EuW q6nNSRw֟Z$]"IUKQo59_9W,DΟgfFJߴ.uS>J܅yQ+)]޿9E>3-;fuaN.nSfԖmlpeT`;Nswqsr1vΎUe+b./:zz<rI BNTuW/ד72)$6BZ`SHl^CܜO[z8BeX9ixuawn*a^c c|9g4士5е|ce^c 鋧Nر)A.Sj*937sʻ1/t9ԴicTN_)2աyKXnFywi)cBǢC{~e6զUijc__o7wͽ67&>bS mrzG3MOL-!k8|I\LtM:$ceKVl9gˊ7 jwn?۳qfpHRT~DB:O,OͮS{? :Y̬Ý /xpbfOߡ8yNV|?lI_Oy]ʁĞ~v"~qhTq/t@cª]6γ:n{Min ۲bͥt|&ڡ/%ޗL_<"SGo2jSv|g>!_6vD߁􊊊m>Foif~}P&Nݪ['?uϴ/*((hѢ 2'Ņ~MTjj1lxKޅ&L6kjםB?WoT|=B`UkWԟߙTGm6ޗ=GISf{s?Xv ;'.jIE،ioٹ,fٰ]fF$ g*5QS?֭[EEE:t!r劲|#pÇ7hTp~>&^/,[t.#?iq7ʊZ%.ULMu|Sޢ)߾hjXiQ8-",ߒ .^6Skkc&9kSTS(8,jt޾^ _jZۓ8]69O6? As`ώT9E¢&_\TvDuڊeSOX <}Izj衔Kz]lLsJu{96BĮayMjRIpnWʮL*wkwhn{jh_z~Vձ *S Z^YT矋R}4!C(ˍynӇN_^ZzBzmg$mL(+\z,Ipzss%1_ tuI9~TSAN$\b,t= ]qdISQ&7I*.̌`D|XuCX+ٽ|Ù.n}]SIOT64(߿" E-/k'˖d tUK o(ټNJc/+z j7hE?Ikhl[ vZ;„{j{qrs&/cؒa{bkW0ܡ(j+._̍:9ka2[/v:j ;G|ϕ& SA/ ]/C^YTtqF,[E6Qkw ikt3(9{hC%QySк@IF̆cY"/!4)Sh5>6)GeoCl.fސiDV4l˂}3T %*37sJR< ee!"Ą. ճvu<H IƏhm%#\IPJVk^BY٢IK8Yca'^AsS[Z.ZR.%aNM -!!Df ۽9\D{kJ>Qbh3D㮺%BNYMjP:z% >:%DX'Is^pged)((xY, B=<|lr+z6nwu1XgAc;m3G&A6[{ʒܓa?mcY脳TY{lШĔ^NoZ&Deyİ]]o*J2]_I.vJ[_=!:ad7Zl?+$'!!t> ~ECkƎ(<&w1dƴ7WTTmۖ]rEYYY^^jrDq2axR {7MY=s044x,~7,' X@@ Hb Y $d1@B>xF0@@ p58fHHb!Ш4Ќ@@ӾyPPh!C([2̓<֭[$@{@SWM.&ƭ[ENynĮۊ{CBX5E3TiR{/X>odh$*?NJm]du/6u}Uv*8Y:v*ys .;vs m+X0VQ_בּCrHZg# 薤oے0Vm#{)_j >97Bw]ueI&_HWyDz!J")T`wýeY>) '<~6S\*b<zO6]jƾGu#.uk KKJ%Fz O,׾RO3?k{ĂeWtbd}͍32ņ^ۄ۱}ϸz4Ҿ(-ÜO$ |-u+6|;4UgMևz#N׮l(Z%fkWmGO:.HmrϾ$i%Vn9Cxէ1k!bEgՎHȺì&^g4,62#䝅Nz`Ng䨧%έN~(٧.Vj'FI!mPVP(VWWQI~"PW +zXu7򪮣P۽q>"JU!jnl;X]uUk"KĻ_:Kwj(,>q^ =,eU{Y jya~U/yG0qA'z`%=Ϗfb%'֗rgxJfjG#.%ߎ<Ыz;w}w>]G~ל|QfHQ}cX[S(jBp=.e;|y'ZFMX_zy*YBWnFd^I[9̬TR}03ngRY yk~i{Iܘ)j$Yǟ?dEee%ɇdIal\sWMzjݼ%왳S>NE!.xgv47zEf%g9Qv=E=ޙ Uu/_KGwno9K³ŃKVO횹L}xڏzsv/ToGFJ BhDfno~5EtDk*6#}/3S- UDЮȐ ?/1kty]_tRd8)J|;egBR~\A ͒ 9 4X$v4F$)_2k)5_mK.2&Dz2.V>m᜚2$ƈ fT&tЎvǐOLʯS~wj],DǢҭ_qMC^FH<}:D|V\K>j%gR=e҅N} zbۦIKM34Z_;OkX\̋5oܨ2j*=7}~ӣdfwکS3B$OCfz_IߓWfݯ動TxBUˑ[frum,O6#ӣVV~z?'3RtT_?TҶy"p!_]|bk5גqG,K߼:e]wi1eb/ +[8jo՛?Ueٱk>yƦVU$?2قo0-C>WzҬ6:EN:jp.S]&`SOuf.Uyn{gG|,.s:ۊ_~n3gnQ[bu_s6m-.u?#3{͂.[>Sjj.3 ^8D٨y]:#-+KgMNJPõH:;mqo>`z+>n*///**211!4cUP<߽ߏ֗)ΉlX><={VNzs*ҷۙ]]76+{v+쓷ܜ\FLUlss],kjc=ݜ&qyHp=9СU/\:gŋV !Ofkf1Y 3_,ӓ6YYʺ~&Ƴ> hJgGO{f+**>lZ={#=J^xF!d4W$4Iqq1AhHh AhX@@ Hb Y $d1@, aRvJ <_V߃$5lF9fC?)fP; u)^sLf3UW.:{vQE);sxB_fM8x,6oZ3 YՑCmW[5& "tirLi5gwyuzrkKk%QWL ࿬bnB xD6ֲ;|(;#5y!*24oi^޽x]:Ymb#0vo?)g5~̆19LN5#SE aQ*RR:NNN{}u\{MoDE֞1wG4pZ魖d5jF/3}g*ږvcB܀X9yǂ7eqпRXsf讃ݜjpz|7l 5>4{ Em9ɗ/v^G+Y%Dbȶ9kN5h7Y&|.A+~+?9ԺDŽ'0jP+gS4۾7|Vrbyn;-[(^ln.MIL,_?HCxˠL&Mwn_ ^=ѵ3s)*XpMS.n;.D3'2l]TD􊈒fZth [zѝLb5gTl,ȅgQqXyȤmL>q]G?CoG~3!8-r$&dO8r]i DS6n{ku7Ν΅gQ4e)z] NɏSflp-D4&`͔d!KTv ߱BH.3eף^OQՏ_ xkߐKDVo<85nSm[({G7o N\s'elmmm* RRRTTTV7ӥuY;Icerwb*gn*khDE.b~T^)@X ,^pu!EjA"WRE)jA"QPP ,K @{@M(((<\L)ꌢ";<;73׷,s ɨs|bTG-T"^B>{nZ/ħZD l}fF[Ew~QـjHSL^RS=s~/J3fxIJkzInrt|,;JBPUүPFag4+o7X=æ*pg~΄2oR аHo3I5{rlp%S_λL V}!bV|}DgTc se-").>)[TrKw|KsDd¤?}SIu5cFƔu~N۹G~UQmgn^(rYi˖J~0(k zæSzZT bZQ'Y ahzW'd˼v`:-e_N.:T%׮eݬя~%uؔsMkuI޲`g_EQUC+q9Hֺ:6D¹KʪjʲWPUK TYY"^V+WE]xz}63ץ~jN+ y=|@UCl(;w}L)f|9736p߯GLHLcyps伃̈́+ɸ,W?谼Cwwck2c/UOPԵذt=Cg̒G= bHdDYQG1 '~o^Cb<M n2<#Ve=+"юeim=YlqowZ͆^Wֲ/'m“#銼1|"OcpۤB?kY[˿nN.D'cs[(N]֪c`&8|/!hKNYQUF]IWG9$ܨOmT½䨽s|kNGk{Gl9'p/z nPC7hA.~7G|d^KmN9edqucs+A|2|ao7WA]GzF*qt>/UzO!ɧ|cO^Rf;kKnẄ́,yv:͌(}u<(qɗBtԡ3na| i_:uh\eo%Ic=#qM}SPAM{iɂT&s_x)jM\/$ϑ#jy^Cpݗ+v]f'-Wn~ څR uMR j~  +-3:W :5 iDكE2qX.\W^6q=ke>]WrMr ^$iɨŃDH ȊP>Y6SIE#Y3v_VnI㗫95Wشn5i )< rbv%~ݝƽc\N f Z:ޫJek9\(e%]2,%msV|n.kR5ffiusvwV, NQln=|zи=^pk/*3iٓjXs6SL^4ҙUX89]{]d[z.}b4dU.<QCkOze%ḌVO;9>BDlt.QIE17L\H RJZo?7<<9k5Cqe⏮ytGk;~Œ>MD!A]4}1^X+(idc {0%F\QlEJs&LEbo+'>͵r}AFtiBL𷋃۹7a#[%M4ʦQ> ?Yh2+W@ Ok'dmLk~'| zz8{ D&m+5ljV#=ڤxGY35-J78aˀ6"*$,1W(3i1<&sK%մTZb~ql :zE"B V_ :r?`ǜ~7k:H%^ƿێ}VuO> @xPR갔U|pV١IS^ovtj"5kw_&uVizLII~=d)~\e﹌ O>%AX AX AX AX AX AX AX TEYMޭ 7"O%P=#[uC++ܶ?xĒ@P4V#'y$)~h?V6Mm՘';rz;+ǁ[Z 5ZMP JJJxMT75vErnlnP퓛ݭH-U+me!q,. /b^?E}`ω't6h.UpFבO HQ6jn[CAa-9 A>?uvL%VU Kkxu KG{-M;;FSqf 'oTyi~x;ļ! nµ'2`UlԱK~;qdMVC>0N̹f'Ţ۟7K;v6_V;[hmpfş-l>u6ZxG@]m}W#l9kf7kI®R9?L5=+WXH5UT$ڗ %MgXѲD++J4>cUX$ +q6{xbwmȎ_AbuוG;kh>4ΑVGwiWqd֫ۖڔחUo/?Tni?ᣑ#;U(r,VɆO9lG^v_VRUJxhcG9G.*C7:xL?cq.%Ex0֔Kuv޻lheDgmP6C+>܃IIΑ(Gd%:sfo(WvTUMegd>\ +I3妝y]ڙV{+Xk8Gޗ? s+ogȏݼEyf, s9vOl'/X2]VJԧ%KtW5df}U kyfpd߯i2)Ca[u6i˪?oS8ycOiCŨe)o~ KUӂ e~ط'z+oYӸbݺ9mn';AQ"c٪~#,~!,Fm,OzǕ HQ-Մ(D7^_qݖa6ߑux\?hyAjY- Y% FuXhY_*ۥIв=gh㸓 i>d*έ]sq  <}?(Yh֭qpVx!;sb ߄6nV%߇-lxu◭; xb<ǦyȔע[>÷P_1w/umDjfeӬ+ 5peMyviCM9]&.#)ߒpBw'*t:향nע ->}ts3C7;S=֓"+5͆ M*j KJ5AG+eld f=>참*=e5Gkhj(Vsn-[NԐ+𒸼}KmRx><{go{<Q[}IMrKbR - " #tUKMdAQ(7QG* /YWsn 5/T)oc(ڍ{ci^&M[-mޛ|5/bVH@Yw/'gd^v9% w3PSOY>v^v]ɮdݺu_WU@yekWy!,F5s~;| 4,Ϡiˎ pR<_~yzjjV%~#<2<4#GƸr_–e-4hi&必7/y{qv# ,6nm_294e@!-Ml#/+S{Jtܥ==mDIwb *>h˒w^j>u.(4cX>^j|ݼW\ W͋3~# :YqÎ3nR;CtAX\óz KRnr간j~<4j%).#8Ү=hhظETtEIuVRQRin*T򸰢xn8њk@45KK}%rjZ"19ACv3]r< \N U/ώ4'=ͳCԊ0cogn Qev؍sݻ|=8XWJn waOp|!K6&%>eV(nO8{C*ݹVTx }p,^pkj@X ,bbԁk *b5E0b311usAX AX AX AX AX AX AX AX AX AX PT&77" ,   #O0CCCÃDR3S ÃD@X\(PPP(yREEE#,Ƴ l퓑cxå|vxasW_m* WRԱJ@ bOX] WNT(P CXg7M 6o!_61\߳Un 45Ud 'AikQENfDH:}m^Q1k/Au5y^a5JJ/!,F?tHC+oF顫UR'&BˢuyTtl ɬiWleN)uprX1R",FmSkK6>2sߦs⧆rrPO9N!2E8^2er3ndSx%?f7ՀB/'~#GE닕g al*D ;{,}tODžtlN_ϛĤ~P r^2~pugҊ_F9B\8l񫫬<|.ϑ"|i?E{/g3pݡS' -JJХ^RŨSovM6mM VlňF3t21@NJuѧs+Q]Zr7_a~%%s#Vj?cуN7?Z7xyXΟ-ilW^]\R/w :\wlR]do+ޕ mɊPv|pG:YoL+[:w\PǸG=l޹|Eo}VXLd1?tYp.YPӺwB÷P ?t.gXRWdNY߂;*")U}%G6`fOw6l.MqrZшNP)4dGdWY^~|sq'vi6T/ij4TuBYmWwQ8u6&~iN],F(RiWeρI x*˽& &f8u!b7oR َ0 csܽ\(*+4nwQג#VFzK͆вyԦtYn>GSx<|֓NmQd/m_.YS u̕G(S ,R[w(_x71S*wnhY_w;GyfKm!R((@ݔt#2k>Z<<{O⹺b<|nbƭ^a1Aao.Uibm޲eؒ nzڊS¶UW}e!¯պ0iI^RУ[Lˎ;:iCϘ6HIޚ{Ȧe~YlTmN#Ev<NU~WlmȊ]qRzd) }L>E|xձN=Z>7OZn47ruUxڏW~M=eboW< Em.˯b$OvSܸb@\g?uWSb|d Z&ϋiKhy{iR)PT9|Yv/((600(q5uuuDR^Ҧz3-~{qu/9:Nԏv2+~[۸b-!R<_߷>e6fFOyo)**ϗJ&&&T:,!!AEEEAAn(s䏲vbJЕQfԥbc~c~<)~|7i0B[ψ1GrBë:zԤ LCgS;5͎u5PqҦg>Gb}!,{Nd"35P.]Yʭ\۔zۊF7$^e"ީ$d+]Vújl./"Vƥ{θk o9;s~9'iB jE~:zɚ;Oz'EN׷yբeN g,׮c5Ḳcw$ICX&nIjPϷ7<=#m+^eN%uv?QX™+V X,#,8ے+w3 uG+I57̥{p;=ڔf׶ʢ=c1DLx#zHi֢ ^5qpͮǐn?DWL" Bv_-d脥SMްw^8I[ټՇo)׷Ե{IFHmcY/6wsK ~SnO^f7z\{k׶1dƺ 2b'o;ݤ^5s&˭Ҟ:,3$ZJpY\N)4h3}҂M/JE 4a 9~~efz)&o(p_} $AƽN^4y5?}?|M)'`S{i;z0-}a4<}Ȋl]6Ϣ73dX7ޞ37{T5V>u< />T#vOJ<%x)/~d;p|fYZW YgޔqF=ko=ZwnMp!OݹU7`A=ah0ꡉ]m!]TRm~w۶_ז$gbZ7K^}>Ww{Qχ.gi X-o5&oV?+ \7%.}~MG"^81+%dtjujȹdjŕJUU?HZUM 159uebuޱ/j"yZK䲹&j\ޥ%SzOjĖc-]ܥFk~^FHn~NBgQɻUSm<ȭj%F_WMO<+Y|-aԃZT:]182?{똳p@E;ުgڶśr*U^5aFcOMuͣ2! MlؿpRGyݪy&EۜuHسeMצ;h7dn^U-\0dee$,edqxRnMCR{̄H{-}P>cVJ؛,guJ^漳\ZR2{I.lv%&^0ki/QKa1pƽ9w79|u)o^^6;:XCREkߥG.Xb,uֺ}ϽӖf儰mק&ʹuZгs}2Pc΋хGix1!|93|_Fd7m46iuى-Y$ЮOaK|~ ɘk~E>7[+=եz~ђžxw͗f.ZQg:1B(5k{o-^1]Z"EGxyWbv_<辴F ~BZqyYJ摹 sà8oۤ'6dAݮpCvܹ[uߦbm:mۺ;W$l~? |W+V 'sg999;v(^`?<..O/Pi'aՍ\rSF}no믿:str8mذp111~1W?G4'\vD^C/Erow7O>(<`ra(NNk NxSD>8MK ,@|K;اJX ˶m4ILX Y a1AX @a1AX @a1AX @a1AX @a1AX @D 8kj8ѝ~zr`a1UlY'5kg1P ,@X @a1AX @a1AX @9/)OAӧ9 K8wm 1iNh@__]~4_7I:;H+,Z,}5i[x '[?ֳmג+z~ɈkRF,>8Gͧv?z}1p9E}SmJ^?m9zkN_^ᛝS6gzz_;YѹZ! Qϸ'& }nW|cRnn $ņK^ 򩯄ܧk]{=9e@blLфq6MJfNoM>tZKp무'qKC\Y1B~y6/<&\g_MVh޾eVN-LT?c)iZT&񕚶mV*{Kfv~ b7aGI(ɮw"wz?VWO?/uLco3Y .;Z5V;Ɛw?ڱ{jtstjE{Y w]wGMʭۀjhdw֞3z;5yEn{tJ^?Wޱ2}m_4_ӶؕهM(_!i9dzK-m|Yסnp^,7O٘;es2#԰/,==dT= =06c嬟9%rh9-< οM ńG iV{clYY)-sNZjڹ' ?=|W֨c|sl2g̲5/h{5Ό{vPˌ;*n[&0obj wJ??︸PZ+l6Cg|9Twj#uٱ:uھEKW[䉏՛({mO+{?˔DotZ}'sϜ?~PMkgΟ=ִ~}86xzr߄Q}:]z)}j"tvЬ8\1p{7? R73ޛ9AS?58-~e{3l_}&'|t}Ls zN}%Ƥ.\xwwW!*U-5Ȁ /Dj _Só|q-}u_2bw+Q[ pz˽3 ݞ\)Zl۔I^v|LdFU.AeSk~Wzä{ݿywuDϑ~6aI{_}To=cAHn-/ [n:Z97uxKsڑܳmh1q[k; I];^P|ƍW^ۻ". ߮ҙ(qUۦo1I^fO{}{ Ǐb:YuvZ^=\n1fk2VD# ֭h6fܚ=?gB[׎۷)ޅ{kh9铏,[p+$[&!PشsKoccT!@B(\OՕsjR#@!U;yLNzG)|~IG/gI YyܺqM`ƕG޽x-QngM{-}uVf.qF؟$)2P9?%Q1MW+;V(l.,yWW݃vQ,&>{  t)߅j5j\?o* EJ+sSN(]!AAp|Fgy:qvB:#M3l=vN靡E D6uMH \p >Ӷ>[jĆ2Vlܸ+!AApBŕ2_g1I5x* ǗYiþ`z QAgd4hY!YhXϴ[99LbCCzp֙qSz4YǛy+3;鬔mt}xuC'^~)w)}cOf+՛Pb˖)y}=;swuy7r*rw!Ppb7 ^--84}֜/vE;.?a[:Ζ+ws>?u>OU0e=|eKH*SB|BΌE ]Zǟ{ \|Sk#w[o9'yj6f .Qc}-˧J^|& M^-a뒗4ak7}q3g 1EvF9٫5cS7|W|b qai<`G;$!`B릵C쟝WLB\޼`ԫc d-34-k.O9:lA\_6d-N4}Ԅ蔘IŲddX7%93w2=UX2d)zCBb"/c.*jhb J6B >}ptqB=jgb)GjcZ5{<ٵ!A$~jnW4nҾOO(sw:2~./ñt\W|u7黤^{ ;=@Sԭߠ۸}C$6[Gߓ;Hխg_\51*Tvg:gTy-,~o+R4_F +RB㛇-+SKnQue_7YU5,:kоG"/4do>j7 E=t|+^ғ]|㞯 wIf=U(]|sm_aGִ|]CBX'sg999;v(]~7dvj  =h?*~֬YSpᘘ+ߖMI1Qs;iéLYqG-QQdžtF8j890䗰a1b , b"NΚ5k4"@gq7|)Dwi(P CD]\G\LXQb , b , b , b ?߮ ?qWi^UbƆbmߟޙU:#MMs~*ngu_4pĉ-}5<<ϷB~un7g֮}ZX:q*.3ewj}f IWޚھّ70|3vWGৣx|>iT7ոxUףϗ=sMWi'>x/:h}/=Gwf7l f~аueB8xz5>]3jdb\Zm?V3+֬U_P`ܮ5=b۷mh)&W p%CήȄ7bsjMXX U0uG+s G\̲ džY|W>ykG\0?- Ϯqe҄QS2wUAg +~ZοT}k's]euX3 y~[m _?,;K#g b , b , b , b , b , b , b , b , b , b , b , b , b"OdLC*?MIENDB`screenshot-4.png000066600000520466152141651170007614 0ustar00PNG  IHDR 4tEXtSoftwareAdobe ImageReadyqe<fiTXtXML:com.adobe.xmp 뻬fIDATxXIp( H **`^{AP,XQD"R齅j ˁzٛLfggg'soY~M]C>FC@K@Z"4zc t+V'9 r#TïkX ]]޽X9!?L&/))$<<] U5mk-;;XFe~_ZJ_~Ϟ?kޖIJJ-E7/mkkliaaaiIU_0z|9nܸĄfAKJJN<$: ݢhÆҢk_,22]E@FNttt:;\:bpc~~eHfhxXJRrhXm&*,,$BEGw]MM-..tVIIiIIɏ?tiiiuڵ <#yyyVNNjjO|U5EYYY/-EaG>}>vsSQQ)(('O<==?{斕p޿{_RZf=&axgkE-ɴ1sGnv/\<ڦ7yGs'\e[%$$O.dph3WLL4;;'* )Ю]; FSQQILL$9,KG[;44ɭ}VWW'9$1q$j9ƸxivVVvD~I햭S\\ڦyz邴̬>Μɩ|O|W9_4t: FGǼzfm7R+W6yyrڴV}Z33jjkkXZXR3iIH0ۇ* ))ArHº5coT>UokkcK^UuoS9 ۗU@'kd} 1Q|&i``Qf0vZZ l6;**,gKIK剉7uE)gxkq8\u`X `0-..MvБ}D+&Sس377oҴr6/b]y hJ(--2h@j-t^nM1[7[xjm9u ^=ϛc׾аn]-LM%޳s[JJʘ S޾shX\\|c_/K0?q$III&&%S錌LpqqqRUSu>|kyjjVVvRrνc>_6| -rk|옑=~㗞qU7˚e^fؿ/93dKedF~Zn٪L &UGN97K * )''ՅzO/5y  -nپ6lrQ[7زͰ_/W[6#lѥ'! `٥qhIIqq 999*m>}QVVVZZ). USUMLHlrSFwUm߾{`=99))HNIefddmZ'5A)||:,,ZTyǎށAtzED444Ŋ0|}}%% hb/uBa!ˍ'z%S\n\yu*KKK33_r_XKTSVm] FNw˶3MYbiqqТ"RᲕkW.[|i~>畖߾wneeEsX9|#%++7| xqqރGN;D=~93.&.~pC{<''O-7M4 aG8s,5jIܹs$:9]>{Ϟy6XZ>4;^{-/?¾DF7Q_U+֚ӣ>mE=hqrr?n\DxD/4/}/z=yx<=gۣi+b9\Lii4VN칳"=hfU ?/}LBs ]]>}zgeeLqqq55U===))w'߀all>@h8Mjkk+(‚Ĥe7яPMߋ.4E -hhtt+t222444h99&"4E -hi\.:7F@@@Z?Hii)/5vlvo|t\rwr LqScÁf|7)itmvz(SgS'Xt6/ cG**g簪N+aܟy>|ٯ^{6虧ױSg/KT.e||ǦW 5s`jƆS&4ˤ)RoKrĤ[w%$%3"Ə!]^T\lkݣMظ iLa޹KTXf$LJy4!GSsXO3r)3cg.x'&%$=uOCVD"=ym^~m!a""V,{t'338:gȌ1TSCÓʕXn@TQF%:4#.&6rؐ|:ޯ޽U7)I *K]-:M?gdfE]j)}^f&^ޯ88e,_ox]\br^{][Ί V,y h;rH=]:ܾW^^. uİ45b]n,t" O?$H$^`0V,Yͽ|4eB6;1)yÚ7H36[Y\:eXvYٵF qqC98rF"&&B2Z ڽ2HOL怾eedZ)2"r$|?|ѽxL윜ԸCJH0 ڴV v%{UW551[<5Tpx412iIW/iFLlؑȩYz·4y/(HфSRh4Rzzɔ[!yf@F[5ͻzkW.ʖgԴRosHzT&l^mGqq爑CU9\`T۽[OòLqꭼlVvN2""t:MsfN{7]-:&QÇD}J:\&JB9l]IJ0#),%%n~̄$~~։׵#Vjp)}?hki T=+;[ZJ$tzYs#I0mzfTͨ|Zsg'UoNj9)>| aVhiXe? JMKNHKgdgdd簪ejb+++;+;;1bRR+7襤rs5R6\n}KT%{ʄGdfeE|Yjrr)ٹyjm\nMKψ~Ңy].//)**+doϺR 2,V;,e%'Sכ7{^6x|ս$%$Ϟz3OAAA#Ϛ>uy>.WNNvy5g1ԯWo= iij,Y4D}%r:YNr ?8}^PHp̈aL$in?t씈U7n]:n^^[v hWR1 ry۴}4O$::ZVVKp@lώ @hjjHJJU.S@FFnt ]U˷L]=hѣ&..cz4*- `۶ibɎ+d;uyyN?{xxpXmz`05нmz@ۛf# PǏWSSSfޱscbՂN>qvqq1@Ku{41)i_,VnҲҞVqc#xK.}Hh^{ ?w>jjjW|sɋJSmmmms3NԚqXcwe+~3.,o?,HHLw뽇lu?r=+''«Sm7'=4651B!)ϔ'n x43:|rr[cFHii]nݡ ϙnKVhh]b#ǃ?(++}k@f 8\iS>n4*_TTͤ:~x$-++sw}.]74ߴnuvv7HG$*bk7n'$ir/^?}VYI?8P6+++̭5gĤ~vN,V.umڴrrr||? blBN)//OH $ú|Lkejr@`˭;$ͻ[G ?vqcrss7lpHY3t#RHc||%7nA5`dT͉HKWyՑJgee޽`0t潍Ӎ{ED~9wƠI݂yTrL Vwټcz&h9zh,g}k . %%$΀v4-=j1qc̘:y@>22""">:ǝNKOKBB"P?kD{]OAh0_Frj檻jjqZ9ZHPf;:/Y4Z7H>]݂y6z]8,9%#6[E#$$TXyynElAA(ѪUvֽl{U-ƭ;!!%mZuy'//[W]*5FA^NRR23#3SŬS'S2:Vh!(HzG^֮"WUFF y傂/QQEj;yo%BT$$*JyyT{vGU+?޾9wx?]e'Na<^a f0jjII^ޯ^}ώVݫPu6Oyy2Ҳ2I)^ޯߞ>qcm#C}]4bx)Zj&NQQ乧W ܺiʌלoѽiE'$9~Nغ}\@=-a*q jyyr^ElvasmҪmœKOC=RbnvV&%%u”d245ڒ[b|BBV0KQXY`JH,ܘC**(u03jDrrSgH~t>mzZk>'- Z;wd5\\L$wnt#C^#jOfIZRdwm8Ҿ H1QU+2̢OA>cS[$ zI[}櫘Z8.VPg@_ 3z侒F9IIȘb+*˓g`Oʏ=g#?Rn!/))ov*WSnlɤi:tV5pبN`jbt髎N>ewk ˫o޽e{2^=fϜF kIWV?YvL7Y&wl]"V;M ! 50:-=ϼcG^b;%}}}kѿ߆ˋܬC;U?3dw?PWS6d(5bsSeyTkldhlh)(K(kLV;j1N)**/(9,>׬S^q*sțMrw=@\ 篪VMMx3aݧ ]yyy~Atr"+2)#muvE^5 0$4l5u GfݢԪɍٻk{4jRQV7g档'JK&ۦ? ºu09~@#DD.''Bvnn^70y_^s>x7f.͈.TEDDx*L4aŚלEEE 3*yy|CG}VRjzR3S!a̬KmĊo^jWOII#O=x3 h5S+tZ4~Z:,S IU=F{Pa]WߔɼyirܸW-mQx)=vҮO7Z^N٘A,8oWx3kҘK 2m\= g7ex4a_cTYU7eOA$-/'ֆCCB&tanZ)w~75rq;(Zjca}z4~G2NwkLvpZl񂹳põuZ͂.6nhPcFV].RUy3Kj{`U8GD~!zԐ 7W/9v$˛ܩzymBTTSmWy_Q5*,,L\5.EguxBU޲iݦ[)*st+gUF9߳Icaslޱr5p_u={on2fϜַ-I M аŠoϻаt%81QKO, o1sf-]퀡UTDDcb¸?tKHL2bl֭Lr^pQ_?x}=*W,ʑUTTtXfC*+++c摷TAV,H;}| -%%..Vfgff wM._q8yUG'e%%U%v;)y5p(/'^W'4,|9Ǝ8~ ={~+#-Mz@FFiKY^e+#DM6KZZ\M23BZ"(X4m7t`z[ѫǷP:w32\\'smyezZu_bi,X"|㛚N.9;mvf2LSR~%[yڔIUTp¯k^N $si=ΞHoܾ8y'N}VIl\|ffI VT)0U ͋ᐭ2~$Cњ/"?;F{Q䤤FrܘQEe^!i]ۮx.mnL/kF*|cU;:]w ǘ4*n]VV⒐X5ɓ'M8䓧6j|>mܚbSqBBwnݴZ˜8}n|;a!+ύ;W؉** Us pȬĤGD~151&Ȉަ=qj zZVQa}ّ!k6lqcpQ~ZCMUmرB EEŚ$gJH6K;tޝIA  +#p:2h@rJjAAiYYYn^^(77oƴ)++)ݽpQAAIavrrrpQ ~.*F߄{?;Hi8F͘q焄D'''3j(MM͐:^wpڔInʴtټe!!M[wVq+-գט7Y0wviYYxx]{1 ~|̔5s(#>!ɩdt3>>U%חl<+~$Aњ0 40z%TfYY>zG}h==='O={L^- z>O@~7o?usHh͏>;:%'-bbboݹWkX=a(h 4tCF8477bGO>~LRRr͏V^}瞔Դ_ʢV=;7:;\oj08P3xl6;sH՜Uk7ts\Z~߇5;$))(P3|M߁z U^^>iڬ}44+U}۸%11)"2RcbX=;Ybbn9v[w<|t߁CCy9/_.,d{y`q'uaoMMf4Oh,W5 ևk0m\#ݭ=2 B@eٺcM_wj-9q B*lؼ-1){G`2"$'| 8h^ C@@[ZDDG[kUeFx+7+;_LTGJIIY8>߲j9˗)j5f p*@҉IxV`pf<8Ñ{w}3j?0EϸM߁w rdt#Wp7%$$Xg/hܺo0]9j6vobg}jnݹkw ykdyqUI;>v4I9Dž}| ÑL:Z-]U?9w|z굗/ 4n( ڋ0k^jĩ)Z?qq%u>~n۹CCV@rͺX.;'=-=lK'LN]~R@NGOBE!=vv99!sؑ/_*+ڠJR%&%M1cLrrCG/_q!'H m۪Q?`\.Ɲm 9$c;y^II ).!}T5P3P\\j؊|zmU%;tyAIJInOw9P oݹpuЏݟhXN2iUĈ˯::EF~ imeee ̠WSWMQAԯ֦C.$!",.*q5h^@C33ߎO9KKI|䵗ǀ~}ݟ>V'OY\M_|xM$%%_wEVhoCz҄q=|߈?tYӇwdKՠgOJJJ3Owa|Mm$媕S9~v՚w6x|woU@zlĒmn\o:7Gv/ legMffToz'Mֺݿ3qZ+ ,?MwmyՌ'T95׮ܺ($(WȎ5ejkL;j$sMiiNWRjUO_u=r:m/ XϾ'Nl6 e4Qۥ{0<"RYYEdJnݴr=͸9E_PQQ&MNNw! ͌`&²sr-=ظWphrV)sM_?cڔjDDD+֪=b8oKrj6ֽFfegZHzuv׬ Cz2'&%UvmAMs/o+'~ʒS+)sINNFffVrJ*I8 { }4w3h*c +kK+CGr8*k֪a&|XU{lںC^^NrtzFSzlŋ_EH'liRAvaa&_9 ;t&ےVV@XXS`EŶWOi) *;TfQ7ouzf !fv~=xoBWFOǎeUlK+h0:cFy3mkJ($((H>u2(s]i6WKOovUvqqz^w ܵ} RRR=*^^ [(M=_e499%66J] j%;p҄qd߳.}9g{XyՊ_XO@cd{1#j[jȈ1.\+ vm FRR#͚m AAyNJ&>zͶ՟GU~==n l/,dLO^/k_k[sK5kBÆ "϶{A{QYL;Yz 8PSmrreB%$Aֿ4jj@J 6[X}^|C=oάJ7FXXXN^NHH躣=_gdHKKwd.''<=_%iT\L),++516rrdN*** uuu;qr&.CW6%$$p8wy|/0&//G+)-?iS?gEF B!v;r]MU5///@NVwAXCdfeIHwhњ?8,ߵoy 靖0554h QP^CVFG!QwPf@W 7>m=z[QQnъߠf@ >=).*6>vHʉ+:mZm MK9xk_o?JII]xvf\||ll,N! tԼysNNN׬m2I㝗aA74$F O]M-6.kN{ =666NUUmЀ_ٍRTT ڰe+[SRr=w-)) G^ ##ഌ7YٲkoO@|"VVR233O}7z- ݫ=yBzv6gt';V)pt}57e׮/tp^QVVq40N3ed&MLfͤ对!GTTbbns1|-g\tnrzu323{|պPx\BBn]ėmHJHY 22ͭ x9xЀ`M 4nl&///**rիg7z/m--99911W?a޽HKK.h揔JF6ccckǓ/(( gΚnٴɥ *啕;qRRSTfW o7Ѳ93 *L#_m<ѣ @|FEEEYYY_pIII_eee_婩u @|JU?@ffam.[ZZy…ף~;0 ү_?///[n~@:}j~l/X, @|2\.+.@\p3|Q5r{sNQQ5k(000 ̙cbb"ɓ7߸q#mxxx;w6:u4c IIjycU7.))IGGg޼yM49rA۷>}oylj*geeܹח16$$dZZZSNmݺ5;KN>TPPZ2޹s p(%%3p@͛73f̠tڶmkbbSD*͛陒B +oDDT)SP aϟ7nܘBj\ ͙3g޽v?~|Νӣ{bREEE%,,6Me˖uy>>E ޤs^TTBh___~|J%BcccRSPPvvvnժ`8%蘖jժݻw6 L+ORRfT}Yt풒.W^ݶm[y&GLa Cݺu+ zZw=jy9wW^nذa``͛7)<%%%??DEE:uvĉ.]P |yrVVVAaDXU\ۗҒuqqiӦMB9ϳiӦI&)((Ё(3GtzK;vJ^d,E*#fddP>))))=== ɪ(__!ؼ㪨 [l3f !))\(NPPPdd$Uݻ---***Vwqq1?ZΝϟ?O4lذ;w6oޜźDۤI޿{ h_iii3gd+Zm۶-;;[YYyĈ5M6Rd))m۲jӧܹ˦' QWWjjgggrKKK۵kG96PW^2gz{gްa:uJ[[{ҥl4ĉeDZZ777+VSy,YpرclluW޻wo׮]5[A濫;MVm 5IfVV||•k\Zf͚D cc+W39tЍ7̖/_>/'Nldu Wzw|<,n))A/?zouqnnQUM57'O :,\`ش<:&fAG^~^Kks/ZZoĂ[Qq֝[DDDgddJ!,,,[]2ZϞ9u@*zw\.wFF\nNJNg_~{=Κ.//o[!&+|444~.VEEEjj* ͛52xߧB??{.M,_6dP~AΥeV^nK/:ZZPPE&];wwSMU5::s4??_YYڷH ?玸؇[-r0m;lT-y>zaVڮol4kTSӆ ,4+6,Acii;WK117~KGhoѣGϟ?dkkj#x{{XW^sz.//…  _~<%%%0}ssӋY-/t,++[đfgTM4++kb GmGz'/AI+** 9w\dddAAA\\\M***}+11QNNg@I|茌7oCCT45V>0A瘘XfMR#VRR>Oغn\| kٲJBBbѢEC 155EJJJ +!!!--)pHUJ|Ux,o9`YY#kb޸QCyy~Y:zN [6:x i^=la=x`M oVf,-g梁~,,,yǘicz͚5< Uoyùybff& ^tPde+Ѣ_PTT /,,|u$ e˖~:--M04mt[n,988 ߻A\4|;j/L?V~}ss^/={NNNՆQhij%"2ۻ_,x?(//6l?0%%E0WuwG**-/; \#m}ƏWƍ CӦMBS_z⒘Xn] Գglٲ%;;{ƍ_>|8U75Sjj*%eCWWW(3f̈hӦͬY6ƌs:uл֭Ϟ=sϞ=*D7fEWSS[XXP'փ~/rTUUSVV6c w>sJBBٙ|H)I>=鷖ȫl8AAA666;j甞a7arQa Gߏy KKcǎׯ_q\QQQ͛S`~^ZZf͚Ç1n: ccc 6mZ߾}iwifŴ!!!JK,QPP|U)ȑ#~~~7o.++zL|Æ !..ٳm۶-\… eʶ]nnlxxͨQ޾}tAڵ+66[nmffJ5i&_uf`q=ѣիWS۷o|.[L(>Ucjj*哢9ӧt˗R={(StC5)ٳg8[G;>>^JJj߾}EEEp(Dp竩%$$8;;S{AD9a/^X`AFFѣϝ;G(TREOOYXXlܸ1#@9ε ~vĘh$7nغu+aӴiS6AгgO 2e ,`0aˆ#P?m;v;yLCCׇm :"11I[Ks۵a[ Ҝ8׾YxZZ-ۼƯ}z͘6)̹ GӻZlZW؈]t ƎT?ߦz%esfw@7oޜ'##0eٳիW;wٳl BDEEYQF9s[n+W,ZMd֭`׮]8;v {zzvЁ^TPPjժ~a]zꅄǗTͶ_>k,2ٳ'O%4#3lذ˗/9ŋ=z`).lSd֮:CRQdڠ겵}!5WԨq#""h* k֬eLCCcȐ!{EEEشi7hР6LMMWZ} 9s͛7>}Jz샛N]ܹq֭ۻwWbbb(2Kq6lH'T\\rGG)&&6J7n޶wp~EKKO>{/ZM05UT۵r9Z朕⺇+;kFXxĆ[ͱ07OH֪[]\͞aTpAEKN;\S2i”_N~ jjjlzzf͔RSSUTT+**9rݜ))jW`vtYYYIII=??hڵnc4hPˎIIIUĴk?MG {{L6%& (zzz%۠#_GGs^^^NyO%zf_!C.XnݺӧOj:B0B-++ҥoqqq͛7i޽F1)vgxOF|sy6}ۦO A KJJ5-zvJ͛5=~'֭^N߾w}i x֝e[~8ly7؉G2r/gE6gY[Y6l&AD0ڷoٲeKQKKe&)"߼ o74(,44Y&Ę wNKN p;ru3vH?N:?y_~|AΝExC-@\;===__`  %#4]WPϞ=8@98Ϫ۷;w<==#..#BpRRRI# ҦMӟSRR(^^^N:t(+Եk>|4|VV?!!!7 M(pJnիO IOlo.g.--eMFl4?#FܸqbccM9qDOXXmذKWҥKa4|봵B;ul_{Ljw{w|x/ܶis?vt.ф ?'6 m6~$t׬Y3QQQEEECBB6lȶ={6|999Knlmm׮];auuM6%۵k5g{7o^Mk777+Vб({Jaw(sݷo_FF3G;v, q\ggR*Ӆ277߳gOAAѣGm۶ۿjj*UرcxV/ټy35mڴ G]x=QޞIeee۶mKLL400Xn 0`ƍw9r$Ƹq(JJJlgB֭+!!!›Mruu=~8 ҧ>@w^jExTK5ndZ=}ҧ 󅅅IT"""ԩCﵘEΝ<&g+<޻}=nR66S~#?glٲwa3׭[{n T>,__zFF^wm={/8o֌c&=wWݐUScFfdf:/[߸5uD o֦QCΞ_v}aC(GEE_YZZ:o7{[#|x0V }8p]1%a pEB!uسrrrXײ蒆?lsw-MM'۷=]M6lںxrii龽{͞13>,''ۺeQ`n]('{:sգZ^tA}yX%8[aKp|%8sY`> @gh,0 4|@ባ C% 0 _*'FFF}zQTR)BNvuM5k}&.AU}|_۷m#%%.a*'ЮJff/nߙMK}c-7|hUU{ݎQWSkݪey~8_zzirrGKMKc!Wy ffl԰Arrʡǯ]AJJ׬4ЯvYF&ml~}ύ[KJJKScV_:~~=eg/t;ͫwTtc73sk7{>-++"*//WPPSSS9` MKKi"(///++N:B(##3/$URRkll\SB^ZmrJ鷢ĿR^]X!eڹ|jj;mNIMYx?-q\ƦoPƺ#g_w9RRnc^= ;sٺY\\|SLܩcOεw8uI)\M1{q9U˃߼:sʵ޼EJKKSSS℄]v̙KJJ"SV=+"""CN:E2eJRR=zT6l ڻwP`e~;>mgΜ]ww'O888#j.WKm۶K{F`Eeˮ wyy>W^VVyGmìw(7΀֒ (a999NKWVTTxyhijN46ػ_|ЧWOo߇(u-Ϟ.q5~_4mbѵs{=پ=A̲YvmܽGĦgІ«A4>|ljp„ )))?@w=rHSSrQQQN/nj^FFF~E^lY>}Zl.Ҳׯ/xՄ]VVVNNƦA[ujhh.B߿ϏjU}L8qի4iR˼ﰰ0fU)?s7333gΏ¯.0BPPYY}C}WQj6%ƛqK)ɰ6UзI}39Mu*|3kkS_MjxlVAu7"z*|Lݚm&%#*)/Tg[fR!UT*%1VۮoX|Nڊk{Yt5\OYA>XY_tZTr98|ً}zp5A,==]YIFLҩ)Nw|Ϟ=666.(( SRRB'wϯnݺ-Z ݻ7ehh_䬬ZPtuu!\.ӧOu޽uttw2ܨ5ښ6تU+[[[W_j]iBBBmذ6n޼I5kV׿¯.*ajI+tIM}aD,ɘݮA-1T*7&]BLO?7ڰGi}M{TpJУOgxTҾ%WǞzDWݐ_yZ_VNR|OxC_-nM=uw+|¢?=/{ϜE%.KJN.--olчeTL\mc ʚ<}6?Zqu"]RZ*.Q}ص1#mܻ=ƍzf͚%''7d6WRRrҥOYܢEQFĞw4664iBFF)B~tBgٳgӹsgl}ŋqqqjjjcǎ52wgϞQR ʊ}\zǧYfǏ!6`)S4nx?yrrrRRRxlmm;uTmkv2۷OEEM>*gРA:tW390U"&&|rHvvv`߫ZUݻ7&&ZSWW Br@J-.mcX9T MV4goR@,OCz5Pܼi*mb3(jXC(KoRr6?xSTOMonW1ӥG3:4Pڛ{ş)b{YLjUͲfWq1R[~m:I_\'@ڠ+V|”閊.UUU?S=zyϛxtN8A!a>2Cq`t{g蠁_HPHXmMl^\C"' K< /ϖ`~wZ:}o#mað ;#G433{щ'W}|\hQyy ,,,6mz[nM:UKKkϞ=7n6lٳg7nXXXH&C۔Ȳe(A\:mͯ_NUJy?GݨQR >t6g ڵ?*Qm:\.8|###?nѪUDxO-r*#K.ػR6lhooJ|l999;w|Aݫɘ+Wk׮lN7vZR:Uɓ')}5kֱQΜ9p=6?ڤDፘoڴ r] U&eD7#FC=mرth:l"&&V5#x.]J!ÿ*:,Ւ``>}(Ozgτ Ky055-**6j;sss|j22n_~MBBTRR*--ݺu+EFS^MMMZZ:==E򢳒=s挟éE5I&J:tPj͛7ӝ%{vFv\|9)ǎ3EhUi;'J2Q?t`9IUw|~ t.f[ջ2f #R;ܯinqY]/Wg*$_5Q6Ru8 .*T6?H;κ.GTpr3;ӡmvmkckA \nC2IӔ @yŇFxx}R;VF*Hee,!'XqSW3thc5B~Te+|LtJ^1%_q>svPXC0K% ~b@zˤ~,tC)ŭ[ 2+++ k׮UTTyfݺulQGG'==ի'OfCl&&&ENE+%%%&&\jhh8p@z˗BW.\ԩSv(1nf͚IJJziZʕ+V5Toa-{9qƍZZZܹP5W111_lSm69W9y|VY9w~)qΰNFekI=J:!o걥JXZ^{##~QSm*qd[YP"')&)aKd%t)-34^hJs y)ziY@5D?HM+0mhE8Ҋ [K]oML "BlVa/6#!QG!t{9WL4R\v!%k+w[sD)oڊ{xUpr 27֣}LuV r KoU?8T2dUndd$]{9rHM4|aϕqv&O4~ 99gͳ?g斍RRRn','mN1gт'$x7ϛݩCȨho]L[iY۷+׬G0YYYU֭F5559N``kzzzXXٝFlmm9$$6ݻףG#hw^֚ԑn޼Y5;w믿jٳgK𮉉ɳg̙C5Y5W=͛+W(Ç:])i"''GT<+WPiӆ!aMC֥KvL) m3C̦$)633^mϩTctRkAg[SN,N-'{d +euƍ]N:58.-'Zö-4JӔb\6}gnF(̶«edP4GoNn:!C^+{4*_KN?NK_U$[D?윖_|'$Yl[jrZ֛նPSwܨîлmy @SZQq跡AuTd%+O QѪ 7o]53M6h WWK.͜9-i龆.Mfwt yڵ/04y&M jJޢ+X gRste<|0]ٳ.k鎃.Ǐn!ѣJר{~ŋ)&ݧ۷/66.L:[ n,X@wgU<< ]/]>3 W?`ܤBI-l:_=swS9앝x߾c9vt\\\LߦBcC9?ِ.nPP}SOYիS+?:ttt˖-ʢFUCFF:̄Hnݺt؄_n j\Kukҕ KNGaݓר0تI&bp8*_^dV&9//ȑ#C uw1Y~={ٳ)K.t1`Ƥu+x?N׮k֬kod)EOeeetY۴ic D޽{M3+W&Gz}$!!1{sι7_rrrnn.OLLdC9Vllr߾}2}i&qqq 8pqv\^ѣGS>z(}gX[[[XX ++K^p2аaÅ  恭mt׬Y3զÆ%G軟.2?.%%E"lW-c6m~麁=ǕR@i񎎎TC_jI/kbbB)^ZEEMݻ7.444&L@qjf߾}K,0|ȿg;EIo>88={Z:E7Y+*~Mb9@B!c^ o_sWXر˄n*I/f67Qdjfa z"belM̾3JJJDH"##O,>>~;w/Ndj̙3=2TәI}Kc׮]{ŋ[z_DM&eKҾl2###GGG&u{ƍݺu{%0lذ~Ij N}%Jbnx[bw=z`&$FWլY37o*++k|0]C PQQyS?^aa5kڴih" 4 ڹ'%%]]]Z0W"4t-3<F#g53@ʊ.jtttZlپ} }}}k+???)ִ.ǏS~;v0G r6tchh{n==<[[[ *_~ˋQ,&XVVآE Jxs 7npssхԩSk,A|OXb&M\]]?K{ddd~i](**ܹz9sp(؃k9r 2oqЗ䀀kkkZ޽{PP=eeeWp7w@W {28Ah@@@ 44A hh@@@aq\W/EUTT|9*Z 1cF_իWo˗/r._iҲ.~:2/<<|...QQQÇwuux9sZhA)))EEEcǎ8p ;rʅ +++g͚eaa!,ʤ͛'.#^zM6MJJ:u-//WPPfvrrJLL`^xo߾BDݵkד'O$$$,--/:::;wtyykך9rٸqٳgwЁ6g:u*TSS GIMQ-489D)**FGGWTTRJDD-###i٩S(99Ν;ڵʕ+m`hhئMʰdɒ8a***NV\I[U(ۛjWUUt萧쬮iӦ;w<|P^^y8q"ˍj׮ݲe˧LB eXzűcǎ?^cuuu-ZĬmK.e.\H/_Ǿx&Ú5k L{ʕ:tvΝ;S1Ξ=6zPfш&&&*-((O>8hҥwHHHhhyXX؍7*++v*̌dffVn``@ˌ j<Џj6l.,٪Ù7n,V֭?~\ULhillLKN第WʴV /VVVRRR.\(..5kւ N8Aݻw˙ttti)63y9-555mmm*L -6MK*9###""ںƦRtϿ_okSQvvvTTTN^zU](q8U3gee͞=E̻#z'jidee ͓ iٲe탂ML+,,dݻ0_,}ǎ999QQQ=zM6qqqw˳߸qcv $'''IIIo^~R,Ø1c7l`jjܚ=dȐG:BÇ7nxGmݺ5ͦ@P_VDe˲efpb|ވA|wܽ{ [[[ <~ĉ())͚5Ғ%2KIIu%%%lmmm r===*fΜiffVEFFRè }O 666qloXpoK5whII;37Ƒb ~3~\^ES_WLrral3f~zĈFFFbf1>>>6l?h]^bŊ^z}98mڴD)ݻw_|y%OOOsByێ> ou`;wzVTT`(hmKII=~$'7%dw@W]f~_g dw@@ZG[g,,m۵yzhhvy)8<.HKI6lD5=s,SSӓ'NeffCϞ=7nL[>;}$~W8:>%xu @(0AAAƦ)S&O,!'э;*33k!/<\y!Z,SV,+ZBJ :i>PVVQQPg&O~c 54{_z.L1lș}n]g&Lz C{o^{2Xw,DG[k ҹ3Əe=Nw熏׵˝Ӄ')ՋMvhT۶kgOu*u^ʤl 8|{ܽ}l`Sj ŒԳ--һ6جѿ*G iXYlPt7o{}}_楍 -O81aDEcvu>{aC/_>|`;>LzVeW:+ȏ9{Gk`иY3Uqyܞ6wn4wᒇ$$$\vnKMK[xYp^RJoQQѡ#)][[iԃGQ}zxi %EŔԴm;]6q ,4L__I<~۾[6<|LFf&mg699 q$7썋=cͿ?y:w4PogU1LiVKV׵hʍ<3gW0Zc^Š}&q0\|Æ oR=y0n̞}eEE_}Z PEYy>ֵn#i3,..y޽}||MLLM-[ |$)N?ޯo,4j'!6ݭtʵVL[;͛DaiǏ9u/yڨi8j!-oذgv?'\^*+a,YqYEUjp$X[T nIwRfm0x]͛)VT>N|U3S-)tA76ݩS={JHO`ccSV^~7hEEE?MM}=5[QQY.[^^0Y?U&H_x~scu6gggO0N_OƖھȅKWVV:Z^c*y"a#Og C6J3}YE]h4א̭FrVƍfd7Rc[i8{.4IJcT2 XeU+ h]߷nZP?,Q[IF鏢DfPp3 IʍJWmP>|1󲴴˺tu*U+ݳm;C™e%}{vYu z,ټ_X@+ jjUAIw&&WzTU`bRRh um+W?y<..^[[^bR0mִXP MY,.U`Ȓ4i2-'.جBfUHAZ]IRΙ5>1sDVUwX9"wUo )-beh++e34T/) Iέ:*K+Wmh3rH###aKccZly՜W֣{76u2abDt[ Q#%%'OWW LE3nmfo7` p?66n9cX~zF%>˜F::5$67f4Y^QX{<߱uӡ#dzsrn:zokWgd== 5j_Q5vtREK4e8,Y锼b 2ҕ~"H0aXl2/K)dV*(-NOlNQoCqqUG^^p}^;Zu>? a oe z,}&>N(sEEECjbh8warJ ¼uqcGQm;]8/C9-O?DRrrȳ^xokeerrؘe:g}{vڏW9 ,t)Iа39,//7еh&Lپ5t3 +Ue%Ye, )? +xR "TSnsEQYeAzza^54m$].(PM!Ҳ;0cƌׯյk5kc˗/ 9uꔺz5رcΝ[jU>߿?\bE^kiӦ%&&RFylʕ+O8c=fccYf-]O>ˋRUU^j @wIw#+Щzc'Y󔕗ϙzzn^ފ_g_zLj y6y,,eRuTL=x^dNZ~qbf fe4m0*BVBeWhi$:RQ^6M0F9 #]liŸש<>_B#sڈ#DȬ! $..811ɓ'_>O|؆,}GFF}7i,Bi׮ʥKp|1Zg K+O|z֩9J^XJ޿Jdij)QT)]jdbJ+.'-t/ Dti9**ϛ9s?ᅯȑ#MMMk|7...--WQQQRRUUݼ~;(//O-QSSưw=~:NP[S͚5OL 1nLK)*ccG,CI%n[JbEeD*+*M,CJ~鐿U\~%2D/X%**aᮮ/^3gN-h=%%H[[{رdW\pBzzzee%3X*ӛ7oh:#66?8|paaۣGdddz5m4)))`jcǎQNZ5j^}ww7o2dҤIL.-hѢ;w.))sοyGOKL2eĈ>>>G5nx5[})ȈƐ`߾}bٜڴiD{;v쨩I+!!!;v򥥥s窩]|vʘ1cf̘qy*z7ydRfΜI}iժ… uuu)իW{JՍ=zذamB'Ǩ-)ɚfŦh8fff1|HZԩDEEikk?}t׮]<ޞ6IHH011QRR ^dpB]]'O\ĉʢ~VVVlT U)##3eʔ/^/nϞ=322r%֭+))S#ouASSLyj,<$$֬Y3&M{۳l7lؠЮ];jÊ+vw߉nBy6nH5v% ;vLYӄ u4fE^^mժիWŋ׾P_ ۷o߶m[zzE rF|)))$qF|$I ñ~в,&&аQFL$cǎϏ7oޙ3gG٫WӧO:t9;;oڴΝ;>pĉΝ;S,mQQQڵ[lYyy)S=̒͘1cԨQ7o|iWVVJKKiƆi1|pjs-3ƎG.]yߜ9sXuڵk;wX_v lbb{ԩ>}T@ᆪb\nNNθqh_sa/_4tpK.PᇤSn|_@K.]CBBBCCnܸQYYٵkWfff,} h^MrssŲWJJ 6lhJii)-i۷`ݻwoڴi .ܹs ;j?-iټysZfeeXҥKES r gu&$$p+++%f YWJIIR%%%חoP@ԅ g͚`'NPzrx<DZjii?Cfc 422rttdRk۶m_~/_zΝ;...[l9^xQ $L3`1ҥ֭TΪUw:pXkDe2fٓv5FCCCZZ|B_孬tttZlپ} }}}2q[~q/cǎf=zހ6m޽[OO///‚ LJJ~3X츬ѱE)87npssN:>>cƌqvvްa)s!ChL9}ƍ<8""ѣ[P-n]` TVV ө(aM扈 Θ1b/^G[[;$$$<<\ZZF/_nddt֭ӧOkhhjՊieʕzzzt<,Qo+CojjF-1cѣq74qKs7,8<N]:ߙyOZX,=a}5\]m INNp8;M{E6Ȍ3^~=b###X 6ى=n׮]W^]b񲲲w?޽{Iܽ{˗.]RPP9^0ԏ5L|iyd5e}֝;wk׮?|55Olcc# e};'d`hh@@@ 44A hho#5c:XvdoHG^aazՊߌ@KJJ=ڨiSZ+ȯv47nɪÇm;OYYYN/d󵱰PVQ6lK}>qdIq{շun]$%%srsr_W|!3++6.Qz%hѣGM O8YPPdPT΢tt}OobMtq>H?ؗ_:MҒ>9sZ46mӦYXץG8t -˝1m̈y٣{=wnQ ^b2Z⟧}oߠu+Q#u#h&M666{,?楪ڤ UYU7Jko%%%uܵs֟: 0PKKk/T}uӨ\4{͚9-mK==ݴtxV˪4'}Kil6[RRRII}6#G }TǶN:]PUQy[W1ӊaC6o۩>^Ka eX ,GTTTm޺m56nvڍ-M:< },.]<fggkii}zutt>}999())񊋋|lJ~|m75lylxxxݣIf9WW:U?cCl6[A^ު{ ˘s9۴c˳Ya 磻dܸq!!!+**o?~ӦM W'ƌӷo_ooWΙ3IwttLLL<<x@lhǎusQtwҥ*;;(D:il6elܬz7o[|4}}G #K]VNNnvvv7E :ϝ;722f6o|ԨQڵ԰3glڴI&222o޼xջ,A~|>&ݻ޽{YNvvM7{>w bOCu<}v o"_ڥ7mbغu8%%E ʕ+<Zܹ3##cÆ ̻Ce'NdRDo &ܻw۷o/[յyu6::rnZT^Sksrrݻf 48)**?~޽%knΜ9_^~Q߾}F3zw_~No?ttu?A`ЎL0nyyy! )ſhki5\IQ1"lP>en#G>ߪ ԢEDCCÊ ___zZ\\L(۴iC͛2&&f[^dX ӧOtRxxxͩ4Z˳ؼysNNKPP#@*L8uŊ%%%ʿ~`7***2 O>̭HJJZzÇo.VŋO>M":Ƞqxɓ{`*Wfff?~\g6 A:uz~))G^vO?$:?ƍi|rZSw:DK]}}}Y -0ah=whS6www###CmprrVWW]6ds۷oիh!Ϟ=}ҤId&‘Cb˖-l6{̘1Si\nvzzzb;j1߹sqݱc:88\@wرcظG8ֽg՘^QQd/—=z<~@ _|ihhvFGGs8&-aРAIeW^M+5kj˫oΝ;CeeeYII-33sͲLuV$%%oܸQؠ{M6T²ejl@aa{ZjCw%K<|0n:z+22r-[lܸqXXɓ 6ƛ7o|||qOQuTxn۶[5uїvӧգG"&MtԉV;VK-oCS΅ geeBՙرnLLL.]ƍB6idB222/_>a„>}$$$0!uQtH9r=HJJqwwCK.=pnEHNN^r Ν;%TKNN ?VdV萺| e>xѮm--eeN|255 #q8SS/^FUUݻ͛ݾl"O+Æ ۺuk*~tttdnf "jjj,,cǎ|2 .2ѣG_zZHJJ g[nQ42NKWWWZ\v- WnLLLi!VNzz}yy9n߾ytW^矙(Ν;k,nt&gǎ_zE=xZXxQQѯJ/gϞϧw>}rʷ iׯO>̾ Fz:DQWW^*++kPaaah___:Z&L@5~Bff&u)!''Giɉ{M3Bu!66C+tSzpppV?t }@@g :2h?}$-Mͼ'!]#99Q]]]ۗsz娩TO2eJϞ=j055UVVV]]yVכ/]Ƽr̃Dlڴ /,, Xlٞ={wp Ezi9~sxyhhhرAEEƉih>3Fii[KK{=|p˖-L:uɩiӦ?X&&&5{n&M*++[nZ5kV{SRRĦi~ꕛ[LLdQQ_LZj9rdIIɢEeddtuua@ ʄi>mڴw峜Y@^r -וk__'%5zW XYY8pƍL8}n 5jXfii=mOSX{̑---` \=(mm:̚5<***gFFF+**1kiޛ7oKvA^^ZE711aƁ]4O~(w}LذvZŋ׸ F}…m[RZhҘz,JSS,uVKKˍ7iӦxHK2X 5cǏwww_jpggرcÇS [XG:tK~3(Mjii}f3>6{Q^^~C } &>|Ҳ[nGFF)SKӪΞ=PPP066^n3СCW^]RRBy *:tlٲ'OȘo{;w.KSu9'O+W޽{)5h{xx2)aaaYYYyb2}znݾ^xzz>|puߤN˗/{{{ݻm49̜:uѣ9t̜?8p7w@  +8hG@@ 4{{soG=ž4@+((.6.09.]m\1y,!|#.;~.zVVv`㯴GwfffՒ6]PPP==''@啔G}333^ _ݾk7$'o_\t^׫]Wq;lmCy_'sMPga&gaa͍},0ZpO;t!##ͬKgxG}^~wdE+Y ,۴~Mc}=zrT{#^Ednj2h_NJOWOm ;{8~Zqy޸[©Τ@6ݭTWS%󆵫ƧgdXwAa[E :+PPP0xXf}݆-ì30>]wvp={]s?a41i1oC3NQV8UQ---M m߮-reYB#oző/^s?'--ݺ?ͦ yefܺ}455QÇ6?GݟiVVVέw230n >?BAAA[KsΌ)r%%$SRv|:w8Ggy9.۳GwNmߵN_-a2bs[wÆػAN/:wޛlffڮv4-M (uǮTUU4mtĤ^heoѺmm_:^pq趷#ѵs'G "k y6d1F0߁zWv&Mb֣W~/Ϸͽ@ҥ޽{vĉ뒓Jq7 VEEFr6="3𵄐 aӭ[6**(8\bbzIi+3gOuNkLfϜY lܲ}Ӯ\8lB7/^VǨ_{:r`m;\zNc$$b"UaeފUkt+#2ƹ=p&bUe%w:cFeˬSz9m4`uÇˌ ggCN<&1bDqqqUmѣFrwwg-ӧ2dK,f4k,*_lr *ԩS}7nܸw^ϟ5΀q1cPj?:߾}j/"r>{V>UaFN]Zh(>}ꅭgOlm-G ;/SRL[jhݡ[[fHMp¥g W oca:w[vm䪦8o}}q}zQb&ݸu1wy}'Ya*FMp#//'--kձCTԫ+PW:yn۶ΗE<}jѶAW-3[WMӃUBʴ%MMM:GS;uSwsE'-tZ8oL:[ul`{պ/'+;|ZN:˟8a,f-5ch/E?̺m>˖,|0N19{yP0-KKK323ںqG9̛ a`PzZ>ھm>wzt&ֻwx+Wwss+))qqq1ƍ-,,It҅^7u˿" _ o41d K'Wڑ̬%Ͽi{PVVڹmm,};ZWUUa ۨc';'1ŸG0fԯ)={x}?7#_G'rYYfcbJʆǼr5^"111qqq[nUQ\E5N_ Dcy)vZUUnݺ1믿rrr24oÇLVVVy# CFߺuKKKkȑ>ygfuZVBiiirr2+)e ={Y*:գG3gP~##u_H^^`kj%K^~=ܹs<{R|ѹ)XDcюСCll6qcǎ|pbFI&;w.11QyZh^rɤS{ICD-q xÌZd)1M__k<>@AӶm((@Op)>}1:v뎌v77n ays5a~VجݺvqXG}uۇN7?侗s3.k/?}$%$\-3]~}ouOyxnmYLE/Wj\:g]žG͞1MY0ѳb"/k.Ϫ }so;ݸ%z2 nwjj*bQ׊ʊ勊ͣW5KI+@$%)}SY{Q_ "&X<B tÆ 1U٢Ejsṡ~u4z͛{N6wu8;ԢlT]/֝k׮ /֘@y&Mjwȑ%%%-l?SU3PEtvS}%sjj*$NUک@Wb;̙3̭,po53X겎{r/ nW^999L&//`n9ݼٕk7^DZwh. @s(%e/D U]Vfz&yDd3}OLL:(eeeA|h];np8zzi̿oYY9tſn׶9*,yQqqAA_%.%&IOqVV6FM-B?b_{ػ&{Dv{".zӳ+v XQDQTD bDTPzI!{C 6)a2{c`@&oFffn|фrt(]I FNNonFIVVVBBbÆ =z/o rKҤgǑ_qv:o<:9Gvmd'5kԩSO8qF??흛)##gϞC$$>5955n_)**ڵk͛{FM ^*QûyK"mWߊ W·ִ6m|ۺuk|Mi4r~!_~]:BrkJ~;r "#G ?{ӧ䪪n[ /PZ6:>d}zz srȽ.;HK2(//"ko w}^gZ}6꤁M%J5Ջ>~*-+;s"77͟3M\|[BBGTNNCn*uZdAbRҥ+Jjmڊ܎/,*"ߞ܎n۹3.?*//O $~/5Cvڒns~*Ys4 |#9/^F^Yzvotm!wE|}BZxVvNpH܈a'Oy_xWQ*JJOß/^=mز ~#+;vHgddddffgϞ>6uKbbbNNԽ<666d޽k`+4MSS3444++ 6p$__ . eiii-6mggrw,gAj{ jdcO>MS>|HrL=lpРAd%""ßIq8CCRA[[;..dA\@uS#V!im$/^󳵵mrL,UVVrY?lFw3ӧ?U;YR7o|_r4m4/2DE+ݸyw͐[w mr+#-M=01(?K·c׾isxΰF.X]Ū262ܳsL owx^tz/qM)i&F7%Ӗ =<2h)P{߂^pO/^v:|njmՊU}֝6׷-93ydث(+/Z0'//qy~uQRT\4WݻmZɿҹ vu;VRZ:x`ܧr|DFPWb}mzWW^klW][x yΝ0u;=qJrh}^Mm۴6y}-C2On+?%%%tuM=ʎ7bْb7a:>WϞGλ%/١};f՗ψj֭Ǐ_vmiiq_FرmٲeBÇ:;wلƍeiѢE$m:;;7}Ϟ=K,--WZE§MiaaѵkWR:___WWWTBB":: SLiӦ͗rjj3f8p9rY֤olFw3R9bbbs577Kv;w$B$eܦCխu{4i{"fkii59--F"WnGO]\\)Mk^4ih _')!qdb˖,jf>!Ҳ2֘m2 L6|YY+=!!{ԇb?9e/ﯰpǎ颢۶mCs״JMK믿z]Ods'Zƌؿ=ιԔ(W.y=,6k uHVVf\Ľ022$9p}vxxz_9fpBAAsiݻ"Y/YQRT,,*~_LfUtLj99YÖ,_}Z2-)-yVnN544ll%$bbc~⽨?Θ=ƌBplժ 3kr.Qp4s~^\"''`KwOßz.&&'&*VPPXXXtZE?$$**(O_|ŗ^eeecb1 4H"F$!:HK/_xa5;L&''}'$pCӧM9vT4f͘^ZZ, ~8&߾}{TEm .fGSSMethc]]{}&99uڬD=uɡf˵&##jwpҕ ))Iф~z6%8qBIIi111k֬y ={Ӹ[{EGGر㋻X,w+vÆ !5UUUG.\x޽{[hnn>y A III222򖖖RRRMJ!66ozzzu>1bDSd2GyCCe˖nܸf,XЮ];GGGARXre~FMС ~St@z{$MKdXYYiiHԔTT(׼W^۾}~A &&&yeeӧԸ7oǷnݚ ILLU~Lfͷf\؇F䔚kHKIq8lFEe)_۷&L5jpVVݻ?~X^^>eʔӧ8JHHPWW_`AϞ=ɺ縄S:?~\^^~ѢE5'qN>}=cee5gΜ^#ƒp80$$+//QOOJƍ999>>>ݻw "##I$f"HnIIuYXX.Gjj͛gvuȱcH F.]vA xbB]611HFFfڴiď="J#Ƥ5o<$HMyqK.R^Yu))TNVX7<9??s$KBϤI8aҥTh5sKzzKZ__$|+fgg_|)''goo?d8je䅊yti^sFEE-]so޼9pN#5%!!A5Ě5kFqƗ/_nݺؘ|4uTjf3gDDD8;;WUUﺺÆ }{j\z+W֮]{i {{b))>ݛl7>>~ӦMcǎ=rHrr2Yٳ{.]G7ifՐRyyy|ƮXcǎvաCR ^ڹsk'Ky'e1cFnn.INNlٲƱcHy2ٳg!e' %!1/… mmmf4&U[RϤ|8iu֑Oc``[;<##CKKV[[;11QKKK Ν;QUV 'MLL544%--UVI$N-X,F7T㕷nݺ۷=z,^QFFvkkC޽Դh4C1++h"""$W|]RSEVZZ***J"g$.++᪳8i\j &&&...-+ 2hj^y&6lؤIjGPPPسgƦMLLLH`[l9sܹsnZZZqFYYVڵO8gffF6xmfllL"۶m[7-j @4+Vh߾=޽{CBBcRjoÇiq,2Kζl656OZZ?9!C龝L$%%`n&lvvvNNN:ujG ?~k~-d_+++-**ڼyOT9o߾]xqHHΨ_`4\p}&]\\a]tYt)*aQ -X&/^#1wp(ݷF@=) -_vvvNNNEEEs˘*Z$t@@ YRReq FVVny?, hhٲԚa3ArEFrf UUU5g ! Z$t@7hT~~d2cbbZ|=J.((h A O2ŋu~jR|_ǖ1??ĉ/_~***E}ܹsVVVv:~8 _fMߝO:@ŋ4IIB-[hff6}t&ֆĈ#tttjd2GyӬʀ455Mzjccc5CΝ;{px˼9sǏ6mK-77w"""JJJ]t2e HJJrwwjRykڵk?YjnɦuF%| UUU-D˖)Epg]iI .4hP~~[VZu)S_=V^_… W\صkW8*** /?L&R^XXHRSUU_Ϟ=+***Hn߿߫W/^u߾}|i#mvʘQ F*B}">G5a޳*I R?^K^BL^:iվ'G|#9+CB+>|c׾[~R{z|z`bFشIRRrݚ޳c[VާٳgY,ٳ=ciiij:óWai45]Lm/N]QH[ڵf%`k׮XZZVVV>}޽{jΜ94Z=ʒ166޽{7 srrԩSppONN Cɧ#tw .ܸqD $fXX{YYΒ%K:vHe*6l055'!!!!^^^yyyfffzzzw-(( ;/^,&&V"""rrr|)))^z${&&&y1}?"R"1-ZBTǏIKOC%$$ٳ'Y9.!nI 5u(FL;i}ʥ '>|EVdYYZlRg]I:N~1h۵E>搟 S[ێ97q}X @q ^ sFQRZz#֗Ur!x]{]H&_EE 7&:&;TT\[6_+,,LNn>&3o̦5h@֭L9l=y/oڀ$%%ܹsҚC8̜О11mgWV>߿ѣ"ӔKܟi۷oX,j3gDDD8;;ٳ޽{$իW;w:u󣢢jP^^~~ʕ[&9r "Y=pTǎ>|vڑ 񒪹 Ջd +͛7ϟ? `>>Ç'o׬Yӭ[7OOɓ'#"5L%[ORg4)pr 56{sέX]p!i!Cّ#Fpqq) [_l p1@uI "<<'K.%[!#7Juf0dP*Y oIm&ܟ8fqudزzњ8jlmǾވrfLFaqEπ{KrR4ʡ !J-,ogɖ:)d|;y Wf͙uu3g-YOIi[!W~\ݘ̦NNNv>8yv0UU9]]c/XpkAYرؼy?uV_4EEѣGh/c[UR'fNHWLHW7sL?+>}9x#-ȁk}~4{r2rՊe\YZV6j-/]bڪK]NIIE;sfdf/sg}_NXX])o;2}9NXvy6oI}."_dVvl~_q;|~g :HoQVG1+-3N䯧/L8ܼ99S}HH3nά|YُGL2CnGIm۬ب 'y>{ڊ{o srZ"ő"o[K yyΜ!;#=wvmsssO:HڴiClMY~=kff֬FPZfe^X/ej;c^∈XY ]]Q&YwwGd$ŃmBNÉ}vr\\\L.wI]Hs8[0--mȐ!#**{n\reԨQ$ w_zz:5\70QrFFǨe:߿ѣgϺxb޽NNN?200MYY25^vv6oJ/@jshiijkk'&& riiiS_qH敦H50gj9IllvM停aH37:S"Y122͛[E|f/tt_QQ>Om|i"#1Mٽz嶺xoAv㎍>Pi{m;fnYs}/Mٿ<j^C,(?SNs%wۨ-#OM*+^GW{jQOy!o3INǦ{$?κ9[GQIG,cR;~F*1w}U9@t%SklWhM)KIWW{҄q]Ǝ:߸yH WCu;;::7nٰ_YY / q}v !.aTT5ע6fw-?g/Swxm}=܊. 𗐔rMy~>W% Z99|ՙ AN)ii֮0n̽ .oܼqh/^  'ܺ޹S56<{!WmZ?z'_j:,;''G/c&}t= ?s'Ξ{~fV&LYwy{2gNNN [kۺuǪU[uOTfgED={jqMM;;9s;wj8wNBGGwR155u>~U(MBBXTD~R222***3f`X$DVV4-[nrݺuՕ j )333]vݾ}\ 7S'1nƻ`ouuu=Ռ _3$<<[nJJJvtt\~}HHСCVz)T,I<99&!TS# ,NLjjԩ֩8$ie樅F7W Ă[_S{m {Ǎw9* 8Sﮧ4=UkaN χV ՇV!o3;8GXB})5Fcօg5a)JcPaBDYQ4-BOFh׽8avЮ_ z?r3>++; Sשy$ŵzgcڎ)РGJJӡ}OՏ4z]6eo .CP_~ZZۺ5+ڮ /Omy sE < RHZfmEhdh0n蠛WEI>}^8Qƭ3g\NnދQB<"9!uK.4GѮ]j)Bq&}WgÇY"X_21!1|ׯ_fǏZZZuU ہ(ZA43{J^E;RI7oO hZkMFoٲeONOw}8(kk;wDDDznTTTii5TVVzX6$$$ǎ#ѣG211!Y2utt}DEEEIII`0n߾M mmO>5UZ{yyedd<}t ė&5LuFjlIII}Gn&^gR^;v${K")G͛76m_JxrFӚUУw9= IanX?#EM3>2^=O2VD ޓ ؚi^]11ETL :$fv3z>;Gt\z__.ۊT&h_hKiaԹm5lKCI.GkA"))q.TM{?SEYZ W$ D"IiS""_xoP_nq'p#_އ{bt|@S85-[oڔIKͯ3ίK&N'jEl4|JIMM{ݽ^| u'}'f{WXd䐫%W֌f!ԹΓ^VvZyd-!.{X)|LGh[$/'_XTbÓ[jϗI!id$պ5z=e֖"4f f< &k߾'6o'LD˃xQDEfY]aֹFMϤtRl{pDJ>[\ r;zbܘCBur~[j~ !}1+Ԟohpb]ӻWOjboݾv4PJSP/L{];s:]4O)_}߄bJJΔ&_#g~ի:rr_+*ƏOܱ}j&TOQP@V% \SUʒܹD~j5n۶ZUӲ5,+yujˋ/\NN]|+.5#L)FU3o5WUHmڴ:~mjj޺ukwwC[w CM^_4\QQ9\|ἶ72\_ n}yPPPj'X5q\Բ WMC})*TXFw!/^8 SOΡ"Fy뛜^ͣ=$?拖[VI~V@b;骫\&MM "1:M)rJ+L7{ [_6>ŅڥKKaX; !&J*"S ^d~ȭA6VULmd1Яw9%,6@Iv|NVTn*"`B'q:7E2#ⲊO[Gϟ?r;mʤ޵[y@Νnܼ=b#Ǥ_'cc֭ess˗;::9;;Y9m4wFk⚚}>|S-%C-a~>_C{FE5%|@WjUb|)&אf72<|lW=yl׉,Vni2Zl#&g3ivА(<{DGIQztzDJaYg KZHIY lMR3qR~ZuLUpv?ٖnߗW^gVzQDkV*_8h_n ).gayH9KHHL?fKWfݮ[MO?//_KSc}7vc&V麺ӧN2&!.۪Gyk߮W0FVpu?9@WGgqPKOW{7ϛ=~dG{޽@6\ o3j|qH3>%'6>@{ees.eV1M[ڿWFZ/]ߵdՐANW2>%5uҴ˗,{d8+w];\^^~|y"wB pSnVTnE.Z g[jKO}qˇ&!tӘ% 9.//j4rZZz ;<%/x+]_Ow'KeTX۸߹S͘}Yu554˗'z[iff}4MiR|cHtWgˇTT{2y3:iʇ9yV&iJ4: qo,_㥢9AM u/s׮?'!!i_d;8t@7O)Fl6sqe=˯ O<~Ts=G3*uQ` Ѧ)-ژ#Zl혈{w;IHH}E^?FkJ^xh"?.4"C3@p3!ruBXjЏR?FF@kW?/25^p#tV@6+T4G9L*$G 9Phnt:)! ZFF@/,&pJwY /?G@3`0aH233^_## >?/$F}G3@DC@˦'##3:җA4|5JJJ-Dyyy-P-R˾k>3coAT| oM t@7h& ߄Z슊1qqqUUUuuuH.##HGGGBB`deeq8 <ZL55fL\E#D/|r‡1cLMMig}|]iy6MO~h(NUUU}Ez޼::4ZYYYJJ ne%ٳ윆7|r}zꭦvh%s66mr;➕EDGEcwrA7oDGE+o̙. WUSK3>..7/[W GX.Yͼx @4a ʊrFyyFN;)+tVBB";';zPRR|ArEndM7xWOA ح[7qqw!%%S&+((^MLNVTDtEw]^^6xn]E11AA7GN/7OBJMHHJjkisG{5y}{UXmh{Cʪ}>ތF7ܹ֭M^{(yp% 11[6.\ɼ1cI:@e-3+̛Q._ڻw8d2V^ LJH4048qbRRRzF:v// nu7m2Ⴧp'O(VYgؕ*5u5H=BBB 2k}ZSA~yݻwOFFVYE $iX܉wNuڵvKKInaaiI ZOrvvIVBRREY"PkUXdCln7O_xwM:]ukS⢢⢨4[-XUUUaa!aM}'$$6Ψѣ**+;vؿEEJNWTTڻwﰧaoTnn&q&1RR|bR$%S$|TV tRjj:o!;;g>$$|n߱ޝCgϲXٳg=ztǎ,nNGP0QRR=X8:::!!P@JJrĉǶOz|3ݺu0B5eckeLYIzKe./h8?,Y6fEuΓMO g]#lXBddѣ߿#Gdee :" z͐}Ήh&CzY:}\?i;wKJKohii~/^ `2_nÆjTX$v+㧞}=xf_Q?Reggɓ' SSS0`$;wnZZ* #ť$$$ LLo߾-,DN馥~PҲYYԔ/p++‚FEȑMM";edRSgϦM!%%O>,VUw؍ P FpBzz:G@$ů# 99O }X}jk+F AW6ܧ f9LwP]%"rrsGtzQd=xX rұGB<{y=)飄AHbbb 〫GOڶmv&F| u}IrFjtǶRR,v¢B=]]`R]K}/'$,Mۡouy5@LL䱩Bn^JX~sF]f]@ur'O!IާO"3N)/^Fr2JJ{oLKSs$SyNkVmL7ZMK_FtpQ#۶iMru0q+/rwSb{:]C]O0=nޞ;{؂rr"_}J!1O# CHIէ.%i[TTLIOeЂov޻w% 竫eT0*~Rׯ_fǏZAKKX__εDDD44UPPsΉ'2g};A?¼e޶ldSRX>?|Vv YB'`r;MzaCEVԌ֡};S8o r#T=T܏iQAMSόR R;ikiah-^0v4M TKe4bMaVZȽ"3KHHɡfhi 0!_?ɢeee5C HDEE_fϴ[Oyp_:ũY0yX%+EM;Ƅε'wЯޝ؅(1 cUQrŲ&C#pgjEEDK??Q0;eV=a;ooFx2i"Tל;vKMK;]=MZIII!c>H0B騨4 ^wg7"yvD DCJ ?ӌOY7ʚ2hjjZYZֱIRFDaKjmmm=bUɢDΠB0/_|vkcnnExGԱ$l#+;|ѹy뎉qnnnrJ$2̒qYd~}K-{>Mc38ImL\;}1үSD",UPnfjBZ ,MWKWχPT+KsXLjխ5+{zw:wF/vRED_դ|GSrQ'\PCqܬLMMԩk׮C΋'׃=Ȉ+u!;C4V:Yʸq~m~ ν-w~7[:rq䫳B^$Žpk7oݰAk7qrbYzrb<N{<>?7/Oy=\3<%>8%5'&9;bNpu<, =`pY&x\e)#,{'c6{tVXP8s8suF d2y>|Ɍ3]Bڵ@||,FjGD B|:D24e g*;Ux25ԢE&~{nR'Mf͚3fծ]xɓ'3g)9YCCMVFpQ[XTXn-j.\m.96C1s΂277e *<Uv2 Pg0~~~e---J`HQ[c+ȱ[W/|bX$x<#-f TU 5 ٳg6669QQQ $NWTTT0S~ t@R|>f :@V>h }rI 䛦fNNN||P(nyd2@.hs暚3oBd`7\w@LvRrv|-*jee߫w@7wn޹KIAWR_UU;jءU|رc%9'OHh C8rP^~ͷN޽/]k]__P|,lٜ[7o(Xv@wu:0P15%U~ZZjp96M b`hNWܺ-Wڱc۶m5c߽ :`0}|zhܾu֘1 χ*Y+(HZZ]ZYZ߼y#,$ܳH$?ȦҥKĮ EƎ;wnٶquue2$<9)$=ME%666 4:uX:Ν/An޺u8,UV}]~H$253={68>o|||RrRz<===)u u uk~#(l7GG5pР_nb{?`kW>OY 6;Ç ~…GSbI'O aQQ+6^o_ߠธ K o$fzuwɩdzyʒّ {lnnܸd2 $qr\n7<<677'!-Z ܽw4 NFNN.yocT%aYÆ3v% 466616 @#ۺާED"aQt|$)Wa/žfsOA+++tt|~ZZJ@2O545333%!f.\iii/ZH.Vkji&%'=/'F'+:VNNNp"EYY̲tn,ԡRr} .mf;ҢP(3?Š(ǿM#6Œ!>119777w׮0q8 k %StzzZVv}ef'o^"S옘˗.WCǎZZ7}zb oܸi`U*.6N$.[L STTDwM Jby<(yh(y|d;c0rFRrIu|>.S1ŋ:6Аf1%..I(V-*y왓S3FZZ:,q(XALURR#KVr?Q-G===E&RSRII)))= 4L$33X3 cE*5##̮C;ԭ[WCCB`0I **) b:P"#yw=ڏJQĒpnw}]=:PPTtLeDGG^߸){;wz5e*$0"2ӒhM{(QN߼yCuhBF:gǎBݻ'OrsՠaQ~~gϞrU0Bq29|>2սZn^ޝ;w?|P5Bh4z~~>hEMMc5%^ybH$xFFF_f lc\a~t"BAQq ظGoM Mw\ bccW^U g@4_ZZZzz@ nhzzzG  r.%%%77XUU秦D")?\ZZ~5}&HHH@.\QQQ} y#9nh) ?:@4(ya;hVTT-OkzԠ*"xX"|%t@Cqʕ)S 8߸qs3. ʥSb⇯{ܺ4CGu(P>|800L~zyyydZX:dOt6qz`cj̘/'A@p0kz*JPSXZZN0dٳNGGǧC޻ûPDŧ5oT>qnNNC藯Fp5]~c%i:nanz()UurFn^ޅ@M o^gy(++AܶɮI+ʘϿtww ߽}mlݸq#?Ý?%JKK6mZ??VZŒ }}}rYXXH-Z䗯0=m^\{g59}٦ͷ(| ;54x ~ܔ̚{wNn`'%f\\1r̄.'O$$I<6jl?ܻܽ?rB1'/ !o9+@I%?$d=>~m.UX32Huq2Lå ${7rAjbJS-ݤ"L2i;N>=yWߐ/kgt# vv!)y,ӑzبCG4zY貕k BIA&NRz,#;F@R8tdlܧ*]|;|iIཿ!tP0)$["nrT%ś% |>I}!tqbbQš/^ۗGEA.I`XjհaæM-7h \s%WXQVh0^llbq4ZǏ,y5n\۷cyy91۶%C?;޹6%/& u:tXd1S;S( ٓɪF\hђ%KfϞ=p@ڵa=k" ̝7oh}}bvءO/GK+3fH?r8O>!'X(:ݻqƄj[ee嬬lvRRfs/测vBFںU޾Ν>Q~vڽ}zSyHTupܓBNUWH)u-N 9gf>qDSSDG6{>=o^ ٲa /\r}}.oܺP2@ǁËλ}҄1~\1~#׬LM*nU#W&{vl%{34)lgik_<[99NWߺɹy=2}]g*nZwRk-,((P(빐 :s6o$.c]hR7^ 6_8o*#cй֭>s򨹙HH||ŸKZꅅsgoڲMYF|Zzz^^9R/_(ѳ!zg?xHߴ߽ڥvMg+K%nڽ}3L9WL Hn:UUտkر܁hѢ={L>f\݂4ӧ'O\IUKS!1U5660AE_|l{UU)_LS!{TrRܼy>_f̣o<,,LZ F ˖-ݷ@0|P:o@0h7'g{}I*)IRJ(rrroݼ;~ ++T 2@__B򵴴TC}r۫GCPV-_d0գ YSSKgrVKWY׫ډlK ^!/P܌.lpW7IhӺ=#W_ؤ#rNnPW'\tqUpܰy[<ܺ8|ԄFSHA6 iF44ehg[KMK#KHΝ:*P(aaI7itipv,K]MMk߾7v,9_tΎ\ EC.K~bccd0䤤@www;{{Jlll@@JwRTT,_e˶[Kn8rpo~ /=tXsfnMex$Ҟ2iUk۷gDm޶ի7BDt?OFNw?VP* Jg"t9 a f:vpt%S'7uS{i`h=UbnRKȼY&.zb,%J^rYY";[̓>55zc IT$>J228K[R}>|maڒP򞙙UCWgRZOVul,uծigxv@P@>7燐2OGmּٳ"""vjkgN;>s񣵵$iЙw❚5zĉzx{zZXjH~EN7mبBuI?rHPRyi%쀀C999d߼yC117nܤ%Aܻݺ_|W*رn{*QD%+H£NI+WY6;wnkt㜚?XXX .˕$boo{.nN&ݷ{1. {U~~yps]fǷg?}{pl_ڶ :w9e?w 'Mo٢?dڢ%˥K˗FkzPwTS&۫UWOe^feasÙ phog;c!5)MΝ>ѓ{LݫW j톣J+ײvolkM M ']++A>Jcc!#*\#)=VCIAa,Uӓ~bUv"Z= -I~|}/\ ,>ϴh3g*ik-Z_K+/:Z$n҄ի}|feY(T*"==Aj]!FFFj{!,*lz>444*2233322,rBdYYWӥSpsic^(~]=g͞pNq]A+AOIIk`hi9S.It ^xc͜INo\Ab$'?uO] b{%w1OH77/M^,es,I4*9PIzzBڻ*4M TK\+T}}mm55zvC_JC?yii&P \ngyyyuٵkWBB-ɢѣ_Znhǎ^)4}ٮ$O :=rt|;cϏa4##s2.^|ܴ6mػ>ʕd *K YnÇ N&ÝjIZ F|\|3UJD&4JGpU+/kQQJݽ =&psw72U$UUJd&qV#=z(P^+޾NeRC|-r1]|s4 {Qι{_vl@o0s̚V\`իS|)lrQ}"&&޵w_⇅G׾?y|~n^ޥ3Ig᾽}9 ڶi5r.gbqJPti5ޅ}\5k4""r̹UU7MMM&cݻw##"UUU--,ݻ_|'M|۷BI.])Mt **[ļuttzAڵEp9N&GSC#33ں۷O$|E3=Nb++)+HsXzYҵ:!j"L-57oѼ~QOsq٭Ç A=]vޭx䍌t?zLϟ;ѵkEbQNNn~^^e)ff[Tsss"]N/]ܩfq?12*A Ϟ=7ntRRT|QtTtչ}`2Uh4N&ZFwWWW˻s t4ȎF瓉]Ԏ= ;xzT̝6խc5(aX=zxkjhظsBM~烰-t@`WvP&FR|~!v%t@KMM}$W)))9/ [$>3p4=SSS 7P`0j׮r w@R= ?:@4S~ %lQR+8:aXrFGV @.F{ EWG¯5]oİ;7.pnVY&k;m*UpQ8ӦL|Uˤ!4ʕ gImƿv6]IQձqesQUi 26ME4aTːkӺeLl)B/_Ȩ tjZ=} KP2hDQQq`>tu4wo"w՛֬~q#ikjjjp239q40LAGV^d͜FneiI=~."vH:16l.߾{Oq=Ϟk7F FW?}j2[ϟ߰Az[G\rBց&$Z G==ݎժeg&Asrr|;^G6iE$iؠ> w-MMilOMMzzJjJ.@ 6_]nnGEG[YZԭ[mjْw_^Mhii6]I^ *qGEOle"lٰƶIȨTiuӦLTVQ ~ #Yf2AW/WSG.7Di;LFqX,<YIIfyyh5# 3j1EDW#FR,Ah]\;)Q8|SSG$.YN=|V-_rL6/HJJ.N{͝8uFAAUtEB4gM"=t'2yrn } ;:UTTTiw%%%㣮p`Ȧ&&7iXJvi4R(yffcUU{nnnKC grCpH谔444]$SyDΜ8nP(<xFKSG;mݾ+,' {G2Pʫ'%4MKP>7 82l>='=c<%99VTXlhh=Gh4HHރup HNNjh+6iHYEYRXܬiff4ʵ&^=w.* >u:ȶI1́CGʾB.zw7?+UUڇgy|>ǫUpKkP'Juj8oDܻx=(15NJJY5}&H rIh55BqtTܜ}H%! ۶lᜓ"_[dQ]ݨJԴI}ȋL6jд 2}5 2l@7oh*A+j톌 NwOV-Ǘ !,[5aU$|800L~zyyydZX:dOtM^E-=ׯૠjꐓ|ʇ/]ڱy[tB*W]'Ijݾ#;Q[6._w9$Ȩ7/d`PaaIş4;׷…J6¾Je?x%je=p AebɄ N'Ǧ#G ₂fzў=ǭ[g޽)8C4$ .\yYa4|josMFx4yܺ͵c&L)((bڵ J6?NbIٻ? 99/e9i…>srr,X,.f#T(X4##f֍z9a$\cx߾i8X7We?|嶁ms??tvڵ,(jH}C2 3Eێ^&'L2].m;<||ĩ3^~ʥӻ2wq'+{oܲͳGv 3Ix%izz3mL_WH#Il:{[8'' bO^6 {7ocN|yĩHm";$d]z|RIWQI|QcI`MZ޽gCFH~T@rzn=I:rLTKl.ZZZTTTHHFFƪU 6mڴhIAI;w.bŊ:#Fbc PZ<{Vw1c߾- %y=zn׎Dۧ}1 t@Cq-ro֬Yud||‚EM7ˋ۰i{,m!Aϟ]qsƏo]kek&?u{3|u\ wlx%7NsKWΛ|8=bniISg׾x4]a3n =\(rK/w*s,1 ԔM3S57q'\:wFr/.\]\]<ëTi36ir};<}vi"<wo\}ETj -,,4ag#cEﺹv<~ȻV#\d}YhR?;~m"ŘTǓb<|Ƞe+ֈʪU߼uggN >sst̹?hٵZԦOسw'Be4HXu>JQhz K[S%WV!"U?J/"5-MreD&~Ht@ ]v[|Z(693ߦ{L?FY" 4)y#vڍ[]zpvj׶˒o/!=j[&ES"|АWTT$ώV%>cZ U#))ڬOGRe%eɡVF@?ANDi* ?e~tk+r D333UUUj|صnifm-'.>Zɺk5wtX(TPDOUMLN@P3X[[8TnoS>?`+V;qE٬tl] sss&/Sfq%'EFEܫB*Ŵ),fP8~ҴV-[,]P]M{ --M,s4i$3 Yƽ>s3ݺ(QkoXru4`_؋pҤlܼ;~15*:ژ =\MDe>o+Ҳ+c+TPn4~OP *|l+zY|TbUɢDzaAZw>ݛbx$wM[[ ǎ=[I[hѢ8ZZQQ"'vɒU |}feY(T*"%0T-; (CpH/#7s\9( ph4Z{ Z`n دX$:t[/""<= tDTy311MNI|xYey{u7N %拉~"JGNMM%U_ou55kI8$%KC3S:V䥫#KZ n]=$D~~S~>\N?ء}$coȒmƝrJZ-4)P}\࿪ZTh&ʜ驨IOMK3)g@pܬLMMԩk׮CNv(*?z(###..fƍFTTQqwOEQ3gB{5ud9\Q˖v쐤izuٳdy*K  5U59.uK[ۨVk7nyk7l20OKK ۫OO-"2ʸvm'32QVV>e]$d=Ğ:DӭbnԷnؠϝIZncrJέP@Ή)ŝglQӁ^=g)""rYV-/=B"upcw} d0>cer]:^zvL|UM:lnܻxҘ9zKd Hy+{^=(~i^-;fg.;{>} V/K[`hɲPs+Vj4*kФ?m7:WXV.]yh>ʜN:TCG4ihJPg0~~~e---J`HQ[54x=}~VRRrn}T^.]ZtÇ R|~F y#9n$kQm/^"#"99KCCC"#333##>Eehh`xlpzz$I%ɫ^zX\z)JT%UUUǬ,y󦆆H(*(,7 Ey MrBP@.:GS>$fp2txxQ-6;I/Y,((/o>EjqwvV@R} -FRs 55zPxpN[l7nO/!/?N 2ifee߹}flL,]ޢE Z;w,T*ԄNryyd?"*jeeߓ><225%Ur[4ߠATdS\\yv+,*!D8rH7!ChyyS>7nr28-Zԩ7.6viiieCCC[[[PP6&5u7+E"322bd6-KX,"\a~;H4:G5D3~ t@Oh) Gp8X)@ 0 9[l[)$Wpv|>E@a) ?:@4S~ %l{iiieFa\B4ȹ\cccUU7>* @`siiiհ "y#9nrz>Kb7\S~ t@OhP޽v _(;;[ĉAAUDDJ耆-ѣG6999ZU'`TOii郆j)1WxNn~Fn4m|fggggfof]sh:gϒYf!{_u/QK^NG(jjm45PG)lۿi.()))GGGrb*  Oݩpjj Nbӧ_7o/z+!v$|||nnn_O>:uÇL&9du /G%moeoa录kثrEKV)cO8qj%\\: u.'<"r}XyyS)jxyɟvÜ~Ȟ}IĬ셞-lLͭgΞ E8{gϻ i6I3xbsjmiQd>WǤ{Sp=v|ࡤO 55+G c5.v"ԹGEdݸEs}'9vxSɦIdC[~ v5׉Sl̙THOSRIS%gWr~6tY_RÎI $^S+Ԏ MEN?ŐQgϞSqSRf{,$Z3 e+p OyYZi6ACI+8ezDd Z qqqo?Meemܸqs΍Ǝ3'yaÆ;ǗTϡbEKc0?fӦ,-흳۷&&$2{.;h"=flRR҃LKIJ[i\\\h4څ -ZTXXgIMMe]UUU_m;w'$&xwa|weee+.%-|5sꩀ#ƌڰq ")_TOWڥ f>U3E"gdf]v !{v8rS3?U˗ܽqe_nKVNJJFE?'u^}m/G޵[W[mٶ3?? 3B6okt]dAqJ5w̬<?uzOI{._l ͮ ܵmbx#>:}ҍ9`K; &&z9a8Nn_ ˗\C:9I!W8#s٨ï`Qnn.]ҕ+-]_R.^ |e-7X_d9m.ryOHIIMs<vlYxμŪ*O8y[!?ұԎ]{#qEN:s,fĠE"-[ Yfԩ"""uF[r<<<[YFF˗/^b()ۋwu:gUUfoh3!h;&(h"_XǤo_e%es% ?i4ڍ7,XƤg+:#q 1.JJ*<vl~ԙs/^޴a 25M srȞ98y Aˇ DtuttQQ6 57f]qhQN7Ӌld @zJʗ&En\ZRB4.+Q+,VFݺvٱ8CY[hKϘ6e`GO#"6oZLݳf[7GvVhM!--˫IRHthҜFkA!:OAhc\Fr=Ic\|lIG[YI@_u}軰iM&IJJNzr} S#qpG)&V Sj̟?'WWWee6mڨ׹vH ɕ_1I(jj4ZyoMkR 111FFݟ}b&ױ\w?G񩨨4 v~~u=,+;d(}}Yo={㧛֯`R 5Cҥ5wDDFOLJxwJ&Ư$%p:_Yi]I))/_9|;}i)I*6c?TVUV&޾Cyf͋AJJJcO&---] 9eM2ʼtIY(/~ II1%zVrO\(2T~Ȑko$L<7K ihd?/ 'W.n`Pg"w&Su׮]ml ;52'od/^ܼjzPS8ow'2 !]v ۶l{ʝϝ#ڂ|rݺuͻx񢫫k.]OuzfHkWO#"ؓuL7vʥeeenՈK)DozTUTbj%55?\qb@SHzzzjZpg'aa Sጚϰ$quVjmh?Mu5b?TQRbw)9FM^di_kֳ'娭=jj3eVvnQ/Pi 5?[fl^fdd6»p[kK{ÿګxIIINN.yJ^NN@@ 698=#CfY ???VZm7>>>;;h4gϲbcc ʾAM@ݻ}R=sUYY.c|Uus4I~ppϻv}il/\ .[V_"} )%UY,-- ;}q^=.g񖑩.'$wIkY3z,XyClĉ?zƍ̚UZ{p6V'%%{yoMkD:&`,[oB5p՝9|j;\qgoކ;wHa_Bb n܍wjJ&Wo߅UTTܹ{[dIJH~f^2 ?>!1crrrrw}  jRY3H~Nԗr}{Ԕ\XYdffg|2k_/2OH++#ݵ! Z+W\SybccUTTVqqqył N:f;&4/ovvϨ":) 8%˗c!il#<\iX,adΝ}:^i ޙԗC]]}`'jY.Ot{,?y#G2|h~~UUUU?Uw8,p+#-fи^QP6mq4E___R92b՚ G֙l&Mt2hs_\c [sΚARÑ? ~:zè)m# YؾsO=7_=}`瑗.]0o]{Ϝ TSU:)E[ve۴ƹqluڧWr|}ݵ+q+&&syz03Ƈ6{%{}QII + qcG|ܾuF;vhFz=GZCSVgaۡ}KK,ZbMMU6m6p0@.WX#P<5g֌[VVV{mps~&;A  o-&Fҥf,3 &~&bۖyyV~G뼼C.S//YWUUedfX,&G?|dh5C4d9'}N.?ŐoRS|vXDUE9hh)I#IKp޹sӧO?1ݴaMʗ/ammdWOp 5+_IrsrX,ŀc'-}IM+**bhXQQ_P 42mkg#$$c==}Q.4ӧ?7>Z:fӌ$<#3,qy ރ :2yHFݺC@@ 11ihyyB߾~ㆉqbb@@Ue% wx!@˸ kݺ`<ɌӮOB?A#w@'E=sIOOocL&3-- CR52})$ޮKΩi!!KJPd{-,,l~t?輼<ZjPXX VYY)---Z6:rP+`~ @/h%0 Cϒ\a0 ?t ۣ얷S-R˾k{ a %0 4_K`~ @/h%1f552Dt9Cv6TQVftxFPP)8hH:ݵK7\<任WO"O֚3dۖZ엙YY?WTT@47|;;;ѐHHo۲1}5yim4I=~Jp!^_Rb"YXv1c]]۶^> 坻oϞ9MSuBbҎ]{<{NvHe+oܼM֭ZNȂ=ܧen]a]:HIJnظztwܘQC$%sr#x.#$5Zܳ/UXrJJeeUUUp5U[6 e~}7mX3xKzFyƭ;% iiTm;v?L[Ϟv㖢iSOuJ§M11waaᑨ_^pe[!'NZ=qL6 l߮nGwoP d+ I2dU+5KO\8o%:UPPХaQΜk`?WFF =k;Yk {޺mޢ% {ÅP4>EEE/lۼq|cƗ?y|8yubҲR>]"++*kٱ{ߝ{F~ྭw8u#Npˈۑ!a}(+~2υ2()ݸxJjYHHHŀaN9>W,,*(&*Û>}6p??ݰ|P0,..5ɱ__ t)u:[_O|NN:(hpeeWTUr\\|6))q _NN /*,/Ұ$UG90rPTƍ|I7G$NPHHE;jɡgd0H;%vm4?׌eee RPX")!AlL&sZ[.$!g6{kFs]Kh&oLP]:=vjgo]?ݺr<$sRR֯55ӫшaT={t'MSuDHViJNV-fdf^y}_nh.#u!۶EU ** /ڻW6 zWii/^v;wGvjyCGϵ4n/R6O? ֚Np۹g;CGƌ̹H!7~,aq{cm?WGxO2|yd!GCEf8gT9,lZ|5o;]8}{ڣGs4|H{41>˃$^[Hs#)UҮRs/RHBv;rp6ro`t)1 IwqY*p˶V^d3O,mI@"V&D 'N^{!rF&% Id˗TIƎ6o/2)Q_ZIG]ӻ::;yʲ>qq:ss\|$<(8{wmsK!b NJKKM2̉cS]Yr9g^}HHMK?Rй?r\a/7X_gw'$;D !]췌w%gBBFF8W޺=??+6m%1nߵiÚGwo[b?ŠQm-oܺS3yUܾ>V&%%Ok.FݺJJΊ0[ЍpVjF֝o^x^^NvT3yqs۹w4Rkۖ NiV߳O\CJ-پh ]--Ξ<6~՚ L&t}^W(7/!}HLL!/ϝ:/sv)k7Fvlt٪ Գg/Hx.{_kQ?qrú՗._dwu)uuv-ґwY{zkێ]&ݻnY (1zu]NѐD=oao}i\E3s\(׉엑QC.]I^}傂%WSÜdeGe n8sIJJJKK|ݑ ,))פ2Y._?h' qz[ΆIIɱHW]GAAA]qq< |n_ 9ft`AGђеKKWq:+ҿ/!Ғ ?$o JMոw/Ѻug{tb^4K!;$͟,?~,^ &V@]9{[Q݈n8;9V/wҩ$ݎp>^WS&?~7Y ri){vKJ@_O'T%e{kɲ_b)]Jj}<@aOqݻuݲmb]xi劊O6/_ӫ' x2֔kRܐk\5UG^qG~* N1+V=гUoIUEGZJ*##3ȃGi4bFQVFvF:;:ycLa.ڭKK45~c0ȹ#))e~=4551&+/GY6b s߽yĘV5Ss/;NUU%{f=ͳ7oݞmb;[+,7֝{.#zx&G:lko"y;[A^ku.S QQ{74 vcUJ48Uijڍ[m44dee;j=Ks"¤𗯬?N_rلqc?xtʵCG*+)Q#"[S5|#=x]wEM޾ջ]F#WUUEe3׻t>v;i5٥TV6w)u 烂}&1z\A8v}*v&e^ʜK{GhRHZ*EE nش/+/kX^[mj8dĞ}t uvާIbex{9 r :=hⷻBJK˲skEDFK~^=C.51nbBmMED6}T Sҩ%%%99u<TjC >>>!sj)##-`PSPeg;nܺmmiVzz:a"<5TxEEEn^FcG;_VFz9>~zyu WU1 xjj|U$F'x][mIHk4Դ4 s3@ҥ0~&˗,\@.~IRۋRޅލ}.((HHh8˜tP.!++'+ PVZyjw)T|BUYݥdgH/_zF9ɢBC´wa.{%8 8h/**+sbbcTT=~YVVpsde%qL&:nmem~&56I]Xxeeg6:KVZ6呝ݰi%jG#"LJJxi0V+5Ȩ%%W?}{M~x^=rrr橙Za9;wleܧזL0xإ gS&5#/?_^Nn䰡M~SRN<5󭫩;epj҆>zΘ׺9ΛΞRt5$pт>;v:s/pJMը{W׉SL0n&fWTVv;thqj:amN:g@uʞw)zM ~~RH&#iDsfMiTSu>^__O>Zf;L0@)8~TVD_( hx&󴚍h'>( hy>{XtztE++?[EEE^^^KڣΟo %w4f=zb WW׷oߢ4Y=k֬"\Y9d˗[-!PK+ͭ(*$XUZzGN8: B__ߘ''mJJJ@WȘ;w.g[޽9CX, //ojj*$$T^^N\RMM?VYYyffJbc|ާA`ɏbn46?`0P-_\FFZ/#Oͤl ~ii2'b„3zh{dd4/V1kżO?,\X%ҡֶmbTS#]65h"<ȝ;w*++Md2w>qN8ׯo<{)))EcccWXG$.\جvGuS۷7jzW_3FkWv1 p ;v԰5C--^:j8 ojjjggd2?>qD ;l٢f͚cǎmʕ***4Z{CU/Ȩi~99;wμvAUV3geMOxHK??MP,N }Nm45$++rss?| *+@oPTT1`@ :8ƍ,X@^@uuk 4a&&rrE5|С7$>u/EQQ4ZYj*5DM5hnjT:Yr0%j)))_st-YsrrQpdAUU1p*+yxyʾQSk8J~ҿɨ"uͷ+&&:rٯȜ(Xcܺu+!!!55ի*JRRRr5GL&3;;|||9ē{ƌI}; ֎:("4%%ɓ/*-Upv.۸$._P34/.vliRR%hm6ԤwgݻYڞ6ANVOfaaaffnݺ8,#ν~ނwyTpVV?_Jcv]sIL"ץ|&)f>!Ahs)**jժU۶m}}}㳳 h4yygϞeee}ajXW7b$уRTF ΟgUV03{l`~V}jS=yzCYK!!O ꕴw/fM҂*,/.L<ЮvxEE;C-4q>heL4[~9#3q$QŒ2vj*+s;TZ.(( xO22R{K)!1]xިKKK">uQ'&6F8-]9f mny|&ʶMK Fx9Yi_¢GNcMV.qOH z{ۦt:]f\rJrΝg͚~IoobqqqKKKU\\\;v6m,Z?cL<^QA,<}UUUZ,h1q/_%1m b> 8IBTm3.\IN™ySC}]Q&싌T6$7n% t:r^':ݵY,E~b| d H5oݹlDkҸŸ<{:GE47/?>!kXx(yw\7CAB%%@5 ۘBTtgS]G;5=KQcL{~ۖQ7#F8n0O8t1+޹%%$NMFZJNVpaቮ=y~9M uλV_:$B.#_ %)WTTl+ ofj2u{5[w6wH~AOmڮGܺ{>=FsڼmwUU;eeEȨ;(uɳ{ʐoN'Ieff|VZRlp?qu U{ImBLzx,^p*xđ$dm[Ydff>>:Fe0R}vINI/kocVIo;p?BQQncY+<ݩ+no4~3{_ '76uR>#>/""D5v w<$XRRdenɫ;9XY[~EIQnp}mL;U\$\;P>~^rεOL޾hyy\ ZG'$ƺ wvLO1‚Ç 0`N?sr,/ tDA^u`*ISIi hjң)g/\h:epveH6!+Kz];ruG^ݼa1;BQQ[32Hid8nAAF5dV{t73r,o> YXXԮm뉮C;bHE%%@mjb4~̐C~g---SUQ\r.Wm}LY*)lZBҙsWdd$9WiQkp?/KJmۨ}dTC{7P/:BBr6ajwt߾uWL?<''soB#H056lW}-*. $dy9/+r;DŰ('!=wZ#I8SN#e<ؚ*IېABBrM䭚?Y#М4^.Oyx /(yOϨsڷ0IMK/铢<XZV[}y阕'-%dVO@lgdlΤOOy9&:1)_R srèIqwZڿ|,ĝ;bAeM\7u(58E;T\\2d҈*++aIiXxQTb>'9D1Ԟ+A3$Aʉ3!O.[4ή}eee$SL"JRb=YZzuo[dǍv jhuh%mAw dmg/c]={ˤ%9lfRr̩ci46x?U_ceEr2e/qP99y+6wn?g y!@ $"#59.D 19#hkk, S]Gn_`lykg]r derp_س?`@4kveTΚJ=xnCr;#/IsPHHRVF*+;3d!a;i3-#3l{W/MSVx!5ԓN6b4Z,`zs,۵Q92Som112) Q\b6'oM2(T03zיIمjeLY&$eKOQG-;>}O6H4)I/떚q,N=SYSUQ[Μ:)8bb$YpII̬lEtnFfpw\***HNބ\`gcy֝wabrr}}"Vo7]2LE@``fu(/or ҨZ],;;sܼ|e%N:"th%`;4ж?ݝ :Q >;UUUQ ;r%+#-E$ bKWmMMPT&$PC_ELݸG ڿlO?#99rjJWoP2Zw/^47[GG}I2\PPtܥF;X}k˰u ^~OLLdjKg[w0IgR\m>4>OJNmRXX^g(.a|39OÝ0cU[Tݧv;R8oEhzݱISLc-ߕZ&Fh lJSi[[mh$/߶6IMZjܕ)*Jz~~~ǯFt6!RX~x)J 7RV/CUR͈ /ԌƗ551T} [EQP6rPi$*ӵ UݿO894ۼR7)Gd;R%QXt% Q@^^\:).R=fMƔEOcFfU b?}ݣM1t?NDm,u:j =O F{sv6HHL ЎRVF&bbb[w)..X;//xnn~P@ocrʗ/lJѰX,=2,-+;q\O E-TTVA1#]gY9 쬁^GN[J:Ӭ"Ӷ!9jߦgv{:գX"<{6/WGc#b£ɂF+sή,͍'>P/i4Zm?smt2R»vzprIs}gPXXtDPh{ѩ!Φ/U$HN:w\~733GUECO'0536?Ud%UX͖/)([ii /VIrV&ss8%هT3*ՉRm.RҖ1}Xj$RjL"8,^jjT>I4jAAzc ODXjS'_y3]xdۻ|pAū7eedE}&TSC]KC<5KKI 0*JIcs%20{Wm\~ۮ&rE*}[=RJreN],[ChBͅK75s}BEEu$%~Ps)oElugNr t+=#R ' 42RM9􄢢%= x{kW̡MUXZp5[QQVF]myPJJHٓ䤹hGweu~D]ĝW]7$H[|a23{$o<-U#Хn`N{-8CH4ED0KMKѲ=}G{ƽsrsNƅEDX8xfcby~ֺE,""*(c E(^܅kOx1}/_լ^Q9j3!/Vgcm/: oDfqzQS{MI#۞0?&66s0X;e|.O&ƙzl[Q*/O>Y}cgŃ2m5Z[FFFM0H$'j/8X}X\. {ܴVy.^"eqϞL~x鯫⥜^7a׹gLyùO2e{<{mܲ-}zæ?ҧn|c'NWƹ.\"^2n47olAQ>}}AD33iaG{Fy򈊒r^ީkڨvmlTSDԪ}bs(^Bf.*SL}mm'%%w,m|W8|^d-߮u#QKb3篼yټIO755yWqnCuQ˜>=g) )cA{п}#D8{8Į{U~ia͖tLb b,[$&%IDIfӉ!Oת^)(8^j_s xD\]ߡmY~_٩TGzCt;u(̛K{ن%,Y׾M㨨!S5p<xܺZl~6O;n3[ jVe?jT7 }QNq8]ubA!"%o^k7n/_eҸA ^7**;9ﳩ) ZRWN5e+?T%7<^q[__bcmٶUÆj+;y޺2ߐݍ(1ٚTji_ڷi}խ~ӮXqn*h?8qbFu21!6n;%bX9sVXX1eڍ;-ۨkogݸAL~cg {vmHa{._yrw]]3Sirf $%wdTTTjܦehfת?dyO. pzQQߗ.)2+1Smh{ym牎;b,`7kV|zu{''8f2%9ܲ2]| (gԣK[F xHI~c7os3rwTq)P(v>r##ê.bGdq׿{Di&-\l{:]]}:=u[5UL=eNg놅nju/\[pybd#-NԳ(oKK$*vlٹı#ӹWFy>-*\ڱmݖ|`~ph"QA2eQᢨ)))ư׌(P;***-999o޼vvv&jIӱX,fTVp'Oݾ{?+#o[z1*8kkfJ%<<ßԨU 1eqv٩8g2h[}7,Ý޲lᔜ<ĩ jTP_y 6y נT'ޭ;pBN-2&ר`wwTY &lZZZ TF_0\.vÓ@N*%%e#i׆ ry ;Z73ρ! x&VJzិZ);}_j|:TNp /T_Fx)3KP==}9}/B?,@6DDF8}1(8TGGzҸ}#*Cp 7b !8@.cr* *hJhJhJh [ j<Fϰ"lsx14 ܽaۗ| 7GTgXTöjE@0X P  P  P  P  P  P С O gu41RTͶ(""B6 Ԓzr]@1@%@T4@%@T4@%@T4@%tBBBBCCsZ$I|d2Z" \PPPtt~N+\.NIIdOP? \HHE> Tl&j4PsIII93$&Jn@T4@%@T44⼽^@|uڢC $K@#ڵk LB|M[S3 nUUxz7+ͦ-۵h1볬w{޽+W$$xԬ…XB@a4Ǐ[-Ͻ>mϛ֯:G[}F_91KwLOzF6 W"ԛDrpZxAzu7n:hبOmkmm*jkkgo8z&ym&&J+T`C,_nCƍd|a`jjTt6fݣN%&O *|,Y˖- ERB\".nU+vEC*^m3F\YkkڵnLO^YVYYhFuĉ]tKͯXٱP:j\* oi``Ј15j^^&L~HXs ܺ}=>zPqsqҰY&''/Yivwruq~SaMZΞP̵jl߱y+W~!ÕCpxxǚ?4jԬX{Դ%w}ݪ'OڳO;vUn]9{^X}k7ׄ Yfͱ+14ݻkI$]s6Of̙t];Y˖n2QCdNܹAAevB@4r'N,XXb߶A=ޥO"##E/VTP3T*ݷ{[DDL9[d=pp{vl-`r:qe"Z4#G-^p4q2h򗾾ׯ^z֬دOjU+wh+h``` 'O2dM:z`т9GضcGԕEO96@ͿLx?M2+tҹby9-X422r7П;gWbΜ=ߪes㌉~ݨa}1dي^уK9v<>>+Mϔi;s /] ^mߺ}njiS.510p+V; hcaCl߲g.,-勿/]_{wnX2ެ˼^_BlSnjf/]}U}8 U,2?򇄆zlXm}^`Ñ5V)o͛/VT[[z*'Zƌ3sTjdd԰Uq'&EP8tW[K$-ͬvvG['NprN?mڨa%&&oۺePzUFDF~P酷OB3\K:鯦-)=޻gw,h~---֊BDa*Tz(uܾs͛=bԪ~2vJ(+׮7nPAHav&Lf̘1⭏o=>87mW'%_(qN&HO9E^J ʴ.޶Tr??Rk򚛛Jʷ66 B$ۥv{;DOOiޤu\.>!!,<\.X}Z|Q9?FEi_qAhi ϛ7nJ4S搐%W>z$9%9uTwϙɞ;^v0x[zf7)aa Dg!zW\ϞG8x؛7ZZUתQmԠ^6Aҏ5E ;版wY2G ͐!R?4Txаo5?x}+?]1+HC*5їH9._Sckw򇅅X-QLRiDdh=&8ȽFeff&&?~}I.5k 2,Z496VlRϵ?-c''g3&*-fʻRSr!DӧOmķ7/mZy[ZXdLOJJ4553M|VX"]AkkF>K5vC{{@:oICGReڔpq괙gSd\8ovbsMMNR[['Ϟ7Te&e7o-]xۥGsiid7M )caaojBɛ7H{3n⸱#5lpREf\r{_(eȣIL&K7o^\nnnB\& ߺuٕ:q2F%J<4ر:ffriʩ71y %>ޢm3f̝kѮآ7o, ٣'89}p! Cp 7z ے.Ur/,cb:wu[7o>wK---묕ν{M5PƵ ՚vc/ll^H]ZxPKO=?~t?hu8B``PJJJA۵ch<钴ĿGEE|ķJoR_۰IzYiR雈Ȭ, nR>G&RfMJ9_4|mWdn\HNMD1ݟo|NLL}…WZmEKիaaa^^x/M==|<ֽMKOٳ5k* ZzNErgzWHusr%h6uŽVWR.Y&MB sH quu1bD)C}|tϽ^yۀ!FF+Ut)+V56֭]cRvy2..ɏ?ٵgvhXiҸ>^͞rF?(W >/<}7iԀ C w8RM7iS[;w}֝ݺs7))8<:&T*`s/|b1wuI9f7zĵ_Y3MDDW9d,`w45۴lfCj'+6GlWdD k7uRɺD筿c:9|+?qd WaGG$N:իWC͛7o^^^666߷^~}ر۷oXYU}VDD_*OɒںԖ-kxQ3i.Yu.*;sfhh/.[ ~};wj9:@& dS߭_b SόWN%i.3sMZ3ׯ^?({;ۊ{ ׻n̘]~yt)6x_OWN}{36nXZ|]]m_Z~|zuںes/Ԇ<>Y_xvvv$ܩr]w5oAxkk# v.q^}da_xjU+ϝ9mБu>/}v۶ٻN\Rn K\7q'|Ii׶w7oc! 2 ,,\,̴k玡T􌩓ČU*lڲYv)T&{PԳOʑ?o1}]‹1ʓG,E}m4ACG3Nzs,޶cWKvcެwn:vϟrؠw|Gzϛ _ OJnnn *) 4ԘՋٞWPvlfKKK5dIE9vݐ?"r}}}kml2}^v{L#\ww֭@DZ]Os000@.ַW( vۺ ︸k7+ZD]E&D ۊεS_fZ`NNҪeW~ +RqάgΞڕ/6٭x!mCWڵj{ CpT4Psr<OM@-/888gƠErƒ1@9##hooV6egTn ԜQ,[rrT*a7PKjN[[` P  P  P С O`u41jEQN]ߟCP{ P  P  P  P V0D",--Gh###mmmsZryppBȟ??{ a悂,,,r`Ye%d7PKKJJʙg%Q6QBvD*A*A%%%EDDPik-_W^nnn7n/< xEM8_ڽK:h3ש$7)9͛w%&?~g4k++6n077ҩcm5~/2wt>}o֩վsv n߹k ++n}Ԯl*[Smu_gdg܅7ʔ.=Q kФ徝([bqnۼA„: z6uY,D?+1bԫ{>d)܍.hRݺ8u/Y[ ?ԩ-.^v¥ŋ4zDaBڳi˶PY|]:wЮ u\4cJXXڵk=zdffUX15ewwwe &K(O?Q56mp.\`:ک̹U+پΝƎe҄}mgCx_&MmUhҨg4X}//yB'M}ouuT'-\,wr}s~vzzzW.&N9*::2qԴqljռeӤTAWWw1[Kox4zHےϽ׭đNeFΚ.L>e5O=`}}ӧ0 O<6u5k֌5 z@#Yreҥ?wܭ[viيU+W˘rdYF: TIss3XTGh.}˹GK(NTP{lբybEtU;;|[^3OiBa6tf]]rjzSΜ^rs*R%KDEE9)-|_jffM͘5'(8dЏnml,пovx޼a*jkk.Y\j„ ZZ]LLL̙;vXV$:88?'| ŕ+WNM}u N>KեsLc@6oAvYń,_>e 1K  : bB\9v|#oDhiiFDD&PqzwsL3e YtÇS4=g&{Zzt:L+[&JoR$zzfo]* ؿuW۵i-*b 1F Ԫ٢mGrNժViڨ CE#5jY2 kqӧ>4rMMM;;'OZXX˗/!8>8LMVVm4˞}ֻo^p^%N]{չwA>sv˙uR_tu׭R>ud2Yۼypssg<6R-vځ)S曏ѓJGGw<}K PQTT˗n@E>{~ĩԁ544lme200BV  ܡ]'߻@.IAenAY\]6sѤff4=`meS@֥s=- *A*A9mmm\c'&Jn@3cТTAAA#jI*8**;999MԔ@- ̲%''ٱ%z@5H= P  P  P p6 [@#Jl"""o@-n\.CpT4@%@T4@%@T4@%@TB*j/$$$444>>>L"˗O&%@EGG紲KKK@ͅXXX J%&Jn@53Jl&j4@%@T4@%@@#; ?4KJJP-zǏh/611Yl٠A6m~up+VuБ3gWQ7&6ծu~{*wޗdщSŹ|Q>nۑ.O9UWEg뢥+1Y͛7b\u}鹳fФ97;w3&֨TUHHHtR< B9aaaQV-qqշo_ Pg]+reJBG͚o.\%*\=r;O6lĤx...[Uvx׮׮{\~Ly ~]vv *+a⥉ ;k ݸya>1KtLT&*.?yQQoI~S"+bjjT4M Kϙ[ k&O *|,Y˖- ERB\".nU+vEC*^m3F\Ykkڵni*g[͛ge!A~|.^(cccSRRay*W;$$TֿkoTq$&^u74uzTT2#ǚl[A~%#r֮xȈ1ƻ!85n..e6kwAǎ]:u^~{gΞ >LSBJ(ީC;u<}k>G+Vqߴ u i[Ԫh"OhXXŪرkk+|l,2$ZRbBs鍌sh+f[شeu q؍Ov+5}N7.hдnLmP~!]o@5nf Jԏw 5k^|?TԆ;zzz"%,,lΜ9z9rټu>ׄ Yfͱ+14ݻkI$]s6Of̙t];Y˖n2QCdNܹAAevB@4rC>}mԨQ7ovD%uNII٪E䔧ϞW~]*Fokksp=;L#6.ׯYr筵5~onfvxvZ-\Q>ĵΚS;Wĩ72yٓG6qʴW8Hϲhܰ3<ѭO.+w>݂EK###w~hN}}v֬JWWsU\QNePMK!^^/֯^qAa̸QٽwL>gD_Ҕ"e߁w۲qGDI~<-]LӄvmZy<|-:jj6dua>Zl{WX"J*9rxy|<5$.,X?}ɓ٦Nfq/&D޸yzٳ%VV53)W.ĉ9nշ cSl/yPy>{HF+[]z¥F׶uL!tbÇԾ-?x`o()9y1U*LsCs.N6lY.y@J3}dmeU11H]@׮C"7oX]U.)J|շn߹xʒeصgHjV6wtoٳG9ۺqfUzPfff2,m޼yryxx?G=0!$DroouB.kH4.SƨDG;VL#McbAJ|E۶/f;ע];EoވY4  ٳGO&6qrB @k׮ɓ'?ydȐ!;vɗ7o\qi"{;ࡣ11*DGGR\\o"OXxr: "FH$Z5<~̔vydnn.N[w&%%9{^|'GJ7oiϝi/hR*Wsރ=~R./6 f-lpEڹ{_}Eyw*nlRYs~1;v۷K>^+"fxxZdjm]j˖5_´zu{wJʝ9S34˗E-{{\˝;5B ťzmZHOPؖҌ_&]y=MY$&%%k^x6k׬޹c;mm3~Yhuu|ŧMquv+8vدw\w5oAxkk# Ā<>Y_xvvv=vܩr]>}K$cG [KWTZyilݮƎx;wﵳm߶?qfe|*L/IlӂB>=cbc881)"-c' (ږ)?)9g~ێ]D10uBΟ=ClhLM ٽ+c*U(_˩?*ߎ6x%$$.Yrtuu%v2tTyB gvJC@:Mb5ybU()))qqq֟oczEnݺU2C\iPPPcZZZ 1F P  P  Ԝ\.ϱe%d7PK Ι1hQ MMMCfdd흜ʦ,JM=722ʙeKNNJ666&j@ikk,Xz=*A*A*A:T)l;8?\Ͷ(<<\6 Ԓzsj!8*A*A*A*C &Hd2%Z" \```dd~N+\.V(gOP? \PPE> Tl&j4PsIII93$&Jn@T4@%@T44⼽^@|uڢ $K@#7n{zʛ7o~WWWסC޹s'cwV1o&*7oY_fpBvR/̹u7QI~2V'u7 2BP${lݾs@@_x{s߱y]vǏ6,&&FL' ŋ8_i#?ҋŊ=psykF&}]FNwĉ1cdL\fF_paڵ͛yKISb;vMLL̘к}-ɘxUk_nànǎ@Et)q*_jڳ?'}ƱcbkmmYWNj"iHRΊ`E H 6XP,`E8;*ذA Ꝟ EDi!߄'sNvg$b؉S!v·*鳿=%֮؂B}aŸs_:iS/vfϋd7nԉ#8gԴ%[SNUUTTtv<%SHHuE_}IL?}).A͙3D;w7]\\#'<2jЀ.' 썛VVLZZoтžHB\u q2;;YwBKcG%Cǜ #=;:zdDѾamKmZPsf;}&Rc^55U1JNCCDYY+&tr/))x9@do[n ESQQ!<JzRU(r 2{6N=:AG#?ۖ ZZ-,J㒼=@ ƍסC!_700~l2;;ҕ'2zqu..=׷wFypŀ /{؇{O86jĊɉәlf ԟ$۷Ev[$]vR U_cƻ:|d#ɮ= ߂.sr- hCfBT)LfÆ872?ަDۑxyA3feP.8rIc.4<>>>O<?^0vZa[)SSS}hxcJmjՓ3=^;fE^CJ~$ׯ/(ٙP ?:...N-..!)`n&ZNEsj߅~E<gRTĩӿ-* X93{wC]=Uv6Y"Y+8dr͚]|eeK];sԀkR63/xmxd䇿9x)vgeU\nvNμGzm#c.@%=;,n ? -MM{񗮈tб`]9cWgΘ6~[nf7 6m%5LɣϞY~g /RHl5T)WjlnЈ:h={lۑb:u]p"Iv;uhi6>CvLLy.NWm߲1B>x))ы|.[r׮$yz;<Jf5onٰ0RMU{IdɶhLֻMlǪ*E~}{ >5,<$%%/qQ1$~҃냖.{..^"8$u3 S )MPPʕ+===+l &Ν۷ۮ_OprRڵ 6vGϙ#ϏY]BJJBFF\J3x_o ৣpw㖗+**D߲gkc߂n1={!/'7qj3SY3UUzVTT;g]^۳GwK59hocbl$))9h@Ν:_|mʖHII˓i8:#I\kK;kֲ밡gc sN!N۵%;E_s3ӮG߰n) <}ڔUJ7Ituc FqnI׼qgk7$u`dԹ)7ג==—ZJB򀕬7oL:vݦufϜN.xLu?ߘn^jղv?ֻc8T0mZv|ۢti΁}t‰I6Ccuо?=6'kJ&z  @4M`-fĉ:::Z<[&¶:,-y Z۶UUɧ޽1IjlDEnn}v&kEdty<97VXT/xCvW)UIgw/gxW)4meɓ'^s>v$^<_g?ٴY/-Z׺'Ԅ\)շMڎd[Ԟ3LRRAIKԝ৚fX7HJ zaIO_|o3:] :<{WN΢{͚qGE?3$G Hwzv9ڑsnjtdHѠ¿{'u5:""l~?rRN=dڵsyAB ;C/{.$k==Z5@zFRtiBK>\q-*jah8a{^rL^ZZJSPR/b,%%EmvPW/**&ulhvv5^DdQDCqq[nbȡn#[ jMR--02z- [zZtGTVV>zNvlIWWgl6,90hef JJwݧJ&Rs<Y^^ޘ$9۞;KZUUs!IS;k`ܽ$V~&lӮXkX7\.~R2Fkeo;pl'޾Ů?//?|2N2}Vmɘ\.f0rDמTUUUZZdR._zr6b++~#] wz`^^~xdI_J=Qj4O2yuuuBKOO}ڷ[qۢ"rv}Тii/ݦ mGcc#:=wH=Go4ĴIRÛݮpIII\B s>ػwʆ ϟc.77۷o/\ĉ?6tmm􁥥wǐq˼=SN<%EgD2ԣGonk5/(L@_#<2fpgGS~[U3jĮ=!<ްv%薍7nq*+#ck'5>q<6=t0Fc0ƺEhѧwٞ3Vn`h7?˴IiI]`ۧwP鳼^oMۆ@~k]t?>pYY3:|y*e);uڳsԷR kW޻oæS&M6Ĺ-jÆ|#ɫ3gi3fkjh9zWU6lwNff7lA3.imh67^aL;s$ɼwϩ,Z*%-=z={HsqNt:.~z+))yxx lٲ I d xvFvUWW|6rNNNc\>ѱ|7s/2gxϞ)“gG{s[ ܤM h4䑴b3HB4|l&w]4 "NAA$== [ڨ{@$hq ™6.`0@$hq4UVw@@@44 4@@@44 4@@@44 Id|+, +%%%["[)$Wpvl6.C$ M $ M $ M $$ LfAAtuuu l#IhWZZ'###licZZZR z8&)III!6$4@g II!6$4@@@44 4@@@4||o _Hٜ9ៈe ?K9rv`uuupp&m䓧|煺O<|:%%%-_}Ѭn*Ͽs1odwfni&LHfeeB9 o_]`mr vd{n2rzi23ooﲲ22̭! ~}U%vtƌgNb=æ/",!f۵k'|:z\Ff5٨ߢj{͚ڶYWGm"MM |ߗ o ⥥+Yփ>TRSKee"O+OE8KII52Q԰\Ǚɯm,gbPR:agp@M=]]r3l~*dǩw6Z ٱeQIL&_'*Cx<5iiiIN8+++I_*** Lrۯ_0}v<МO gΜyځVVVի?0m qv$d瞽 ,?q оpʹw[\iiTV-߂O~ &?|tl npO.+QVRꅲM[n|4af)㒒Rr?_d uCOx{o\.ݻ򶿴ӥ'w8  =:a}22 EECh4wYf ESQQqqq锣JzRU萏r>)S>q dg?_MbEZFՙT?m)tBݛ|+grgg .8@uСNA'..c&''\KӨSǑ223co=|Ը qT`AaYV$Ϳnw7d2 J@ԹvΧn#&id5d$马[`1`KWw+VqwYaSEE ,dXZΙ;?Ƭ }|)][ݻ?o5wJ6QZwM\Sء葮/NF?yuIYHBv =|;wɞUo!E,A,X )\VvNƒDM͍AںUSݫ̚EbEER\\Ətx!ݸISC#FV*G: [GRPA֩ oX gk>>O<?^0vZa[wT~< $jŊ3g{v̊dWW II$gӫW->; rYwyo KWv,Y8?!>fץ<<`ӿ/ݵ' KKIkMzzƯ+VϞq%wR4ҕ}>y,t-ܽD-.2pgu7Q[:r`;> 9pak{qqddeoҘdgd ̨zv \#%%x邳}CciijXB$VA#&ğ'em+^ʞ1e1Lɞl2BLBv ‡8;~E"#454:oۘ*cn}PW$$ϑ`?Q0ỵ ;E*䇏amycdTSU)4Xg?s򘡁eee/ڹuLy.?%(|l'Oc dZe<︘^^o %K89\ Lv㈳ 퐵`qԝqwn "bڶY^Nnʀ^[XYIGX 6% ڶcG>ʨSGKr D Yr\BBB|}}-t=uLf;ŷoYصkaܿ=vLFO1{RR22RR zY?ھ@׹ |DqlblDTܩKW***O6\жjb˿^sdgcM.eee Ȱ}zgӮ&OMg݋ 04blx:ޫG=5kfg;\$޼̶|lnuut-2~j5+HJm4md9ԡ=o̺ca 'gnDdcvmi4)kPbR'WpۤJ!>?ץ*hL"ROιg{W.qg3Ӯ$RܱcF*l5*EYIq1J!R!Ύ>!dVW)/ē!MkgGxT)"5NK[BZ^NQQQFky`Ç6C.u@ʗ8٩A޴=zrά L47?{=<1^^=n޶_<7גӧO\\\r}??5,X@~fdddeeM8QGGUVNE֤?ޑFE.?:tA>U׎I"Pc1yyuٙ_mg'EEb'L8GCC]!'u~AOO7+;۷պ:T`_Ԟ \om8YxZP"cC ]^n Y,6]gL&s=OͭVVVx\wru@ S+G7Իg@(A*'νRUWz 1&a#g{zŸ% 6s?Bտ-٣gUaaއ׺1U\fkW)Rp8߼J/Z}I*y?뮫 Ug25k:Jh3{tZ3 퐵@:"S;^AaVX*( dx?X=y^FOهz Y!tiM 뫢B]߼y###NNHl˖ڶ{GVOj*u*&$qbN#Sr&4@|=yy |oזGF2i BEeEIy5[JI/}uzIuȱMuw=vA/rpT1w+~]&׬kViz OR jڏz=bxC1YFxnf%%N Z0L =rvtCŪkjFU)qX|4_ UurC%tԈaV_'F=ve9C)uK#)}5j\kq7;*pDEEECCCSMMfX,UUY$%/T!`2Idg_pi~?f :<5pBIvFR/SeOTs8Ç\*czMWWFoߒIi4-gHkhpML @KHd"=Դ ==[,jwnfF5dff F lTɕOR"r&W6oz; p_$Vs3cj+:)yuzNoPp>L8\>u]꟩R޽kLRUUEiiU)*yyZBYꤽg323 T)"BC]?;g%BKMU>(pPzwO/Tp$%&nW!{B)!!!?k葼#NPhjhHKK}8BW>?o?(++oݺupppFF)ڭ[ ~lť x$CBZ,!A_?*FN{VVLMϟϫ9(y3::gefvoߜnn]~d$$mfPnDOaΜ9cǎheejժ*rO>{|1Ңv{; q?|zHء'J2'}\߾H}I0k7jii *dGFy޼WG}?_%$HbMOx*{݆MYUUUBRC2+ lo9;dx<1ӫGw3;2fPy˽`̄ɤԞ2t>yWY&'#3)TTPI}wS@"@vnL{d٤r9oG62X)OE=go;{hգ;٫{W~*,E[B32 }bIMKcֻC~z0d"s Ӯ]kH%E흶Q']]I!e'd[S|y?tSRRrbB jf]Q |w^qqq/// 6̟??--MWW$nnno^p'~l橩EEX^))탃:vgNGX~mvx=}|H{^=^үOff;ޟ![[LN3nh&u a![ܰnQ#&'[b h$eKf0/mL峀z6C?Hs=Ǔ\oܴ{{wԴ.gi];7&޳gC{73M4q[#zI2mǿ6ys-Y=otm֬QG{[T4cG a`^@Жy+H!hkiY`Anm* |߸un\޽MuwBl-zEīWJqvܹ';w]{WY}zM@f֧wϋg2aGEEQǎ;mB.NCC#44p%%%/hٲ I d xvFv\UWW|6rNN^QQRS̙dlees~҃^>ׯ !A[3׭ 7l ٱ%ĸQk֬?y%%%mߢWpIII;v?~-Mw}c5AVV\5y, Y͛,ցCGzg :-ezyy}ڵmla.8~ys֮6M&aڵ^jC\^exΙ]y֭׮CQ} @ /S$ "FlMII!6$4@6hAJJW]&c33m U 0L!Cx<5iiiIN8+++I<x,!7gΜ8Ayakk+Wc|[yɓLJK͛_ڴV2tS@AANHcFii&))-a*+)}Bl[ljff| T$%?\N1|(6"ﯦF 7k֬h***...b5r7p_quСIIIdi}i $V-[̚ 5^b-Xl`gy~M?y= 'N5h4JB"5vQc῟ ۰Doऩ3?I!cKL{=CKIBN;0xMj%injq>RHF;qj1(vUcWУn1̪8&蠃Qc' XQQ1`=stii* b5Oqnپq(I'Y;ws0ټߠ6냶P =JRba5Çte1psccƻ:| T)ߤuCaaa``ϓ'OhiiiǏLG~] h]vիBr:RY_M[N=̺H`jM[w_FBꕿEjf]<|(V9ۚZOz`ܹ eێ䇏٨B6#%o/x-Ϻ λݡ}7Z/]cU_5sƒ^eϜ1m8H4g[?[ػ ǜIKKSD:{ǖ+qm[-Xjk^OrC=~Uo`7R{A҃dR"ՋqglɢkcgΘrMg$TEs-D VF +Wzzz- $$9 hy%$$8p`ɒ%?<1U\n̅I~-a*e%%yyyVO>wQ*..Fi4Qc۴nUo`73Ӥ֢ԡ=Zt?Aw33un͵dtO%wޣRbo;@_VVJBQ}ͥzg(-[odԾ][RIa13*WH14*|s~v6gNȓj$\K3tHav35 6r=~@*iu8{HRRrЀ;uD1ȺJ&??5,X@~fdddeeM8QGGUVNENY֧;߁~J=:xe!&cǮ={lm ffrM Sq~Rc uɖ}'%UX"ZhANx*)U(/?_KSCTC}6j ׬w?*\'r9: 3k֌:cyJ@qq!ƌVؽe9 Ime8th=mz7z\fgV7@'fFsXZ`葜Q ^ EEE @~J>|8CcF8:YYYu/rgy7f"4meɓ'^s>v:6o{8U6Юm^~)jlG^^{Ú{Udtsƌtm(fCŹ^[nPYYIya.K- 4UkgީYZZo->zpk׮A:z|,CqV-[{W~?j T)RQQox555r]bTUUod$gMx!@m~>eeec?HLL!)QRRb0GL*WG߿-*jah8a{._Zo ;K?oejڅFijhHKKύwL^iS7ZR222_^h;1)8/^ FUWW׎Pq׼Sun^#nhݪ%}WO{:pFGy^48__g'N3FG֞PG )ӧOѱDWpwر0Ǧ5O]61DbY hh&hhh&hq4f mHH @$D_~~pAT剋cHDhSPP())IOOr–6geeel&IDp*++3 l&IDFkժ$ M $ M $ MBY JvhoFIII֨HV @$Ʈ 4 4@@@44 4@@@44 4@@@44 Id<&YPPp-at:]]]]CCD@啖[lv~~~uut"djjj a3AREFR" ⪪BFR" $ M $ b/_"B4***5z6gN~x'"xxY"|!4@OxҥG~VWW۷oƌ&L O>E\B,>*+Mx CDv=J=}4x왷wYYq^ѪUUU?;v|:cFYJ3j'ywϞaD`ڵB$$$lmm%%%ɨݻwo޼'u,jX\\ys->Szi/̞ݻ}"I-[Nq`ޫ'"ϊxi Ahah`=hCIb/< /Ջ>d/%%k7GF ~(`4u. |lgO$IFqvt3ʕTص@1L!Cx<5iiiIN8+++IFӟ}4!AZK<--u SkUVb/hv3gμxb@ccc;y?*mQM66myʀeMK7@NRiiYlE߅~MkH%C0(((L~ᣉ(--$ez::JJ_P6iv{o&L/]c 95o#*4i%?|q6IT\jVݾK~dkF;/[Lj'l6)56 c׋ԴR qdM&'è޾ >`989_rV)b53$uq$Tq9FVlACt2^>-EEE; }||4x&HՊOg|yyyɮ..=-,HdAϦWZ}v&4@{֭;w^jIIK񪫫_~ɣo7mA"h4wq֠s VHsr|r96zQbΝ%Qct|`56eR^#G ?vI"gHTxЖ'FYq aɲ'1?I8]oi䇏I%%r_/D{[qcĭ9'uHZ{w"fby⥤*%==ɚ^;xwf:ӣ]_04tTN߰Jt%aWpȒcfxL^z/%%`I}oy޽HL69 Yr\0 [zz仂,s6ѵv-31==Қ33K?KHIIȈKI}v& d544&ObR)|^e8tļwOIIfΘFKNx!b凮\deeI8;޻TRRr>6/ml[h- q@bڜ8r@AK;9ndzwMo;ӽwK){F_,ADe(ChRZJ{$m$WBhӂH)r{=O.wظm[ӟ˖|qC]]ݾ{JAp}}}5UU sw=r܉A I<O D?q$-~>{,,554>1()Ihoܼݩc{6hF8:3SgN̖-i0c@aێM}|)zpi{SlSLZT\WCSǘce`]\|KG$Ɲp}6MERX,֩3KG~>W^gJ/e ǑQeeMDe޵36v}هK,?i7uT+++ggg{{{> ui?4f承9uͦ dccWo*, WSQQQVV~SOÞ?$N;uXTwVvN@й{ٙ +KKf TI]ǑOZw*LI O!x55/[ZZ=]O/U<@K|2m%S|8skm;<*&V[Kl:u٢'ZJ`YYAئҢ٢! UTA#+'/}ȰrW6|]2&3w޹G9tDg渹:z3/S,/xGE`;t4^WHo]Nn.Ϟccc.R 7ȶ w^O>Ȉ{RMMM}}٣.ph:&'6-z-oܐ(O멛] h svvDgϞs˛yބqO<~i˶ys>4w554tuu]:`~NGRo++)khhtq/̿n;573gIKKԴYuEKڷkf:7oYf#zvnM;_ܩ܉A-[<~DSS1;'F<?vT-_NKIJI>g~ j y1vv̡pGFljf:/rp"oXs/0ng/ɱeOՐrԙ_FeX/,Ht ~4^KH!m^;###6-Ą㕔OQzama!xii{;(M#KՌxډ˯_#192uMF-◕[UU g5rn>.]Z|իʖ-[FJokk<]_  $UUU喖IߕO'rSurjtKdTԀ~}ė.F"IϤ 3vS.J$ѺL eCjEJ!sr*++_Kccc[\:-=}qC %%T~[kk٢T>20:Xjjj}ze"MMihצuTt̍[9c'Kа пc'N͜3M렁ŷ1|ȥ?ܧxi+7< Po޺`5\.J=rPGG6|$w!{~ٗN%gTW)IɩF:TmlnnF1B*7:B1h{/\3&6@_Ws8a"Bp PիW{F1?_x└k϶0aBhhҥK>f ai!9kyyv?U++;t sGYraNm,L ڴ ~KQQnj ᆱ!62s~~ٳM-܂016^0wM[ڷkl<|2pͪϥsw%Yn_Y%>mްvwРo^MDΞ z9?_@`Vm߲ޟ\3l lK?Y=wءݦukxN]Mtlhk7lHIdh u1YŢs7o>eZ_o \t)20`_o^U]տo^=t^fаJN4~1LCs>-%%V/K%1{ [#G8uFv6[6sޛ:y+6˗.8us 7c{ΌYsu|7Wm[60x2jǑ0c̛]\\Ba<4h( /-_xMERSXX⋵%%%vv۷ltqvjPZ_nڲG|'DZh}5n``0sfÇy899Ig@<:{ayD"Pr^8sNN;V{q=mƙō"""e} EGG7~ӷD~~KTTTd(4?GOO@H\ 4TUUy<[[<* IH@AS󕕕{@;NWW*--M mec}600nwwY6@````mm$\ 8UUUGGG?W@B  4(H@B  *%??(=   *dH@B  4(H@B  4(H@B  *(K/999 xS9 A^@CCC(PQ7ŐxUUUT)A{! -B  4(H@B  4(H@B  4(H@B  4(H@B  4(H@B  4(H@B  4(H@B  4(H@B  4(H@B  4(H@B  4(H@B  4(H@B  4(H@B  4(H@py<RWWWS[[vh:Af x{H$*-+{K(7HG@ NxW! ͍;!\7kCN2ed-XTS#vHteϜ;/]1ziO~yn^k_;>lߵw% "~GNbpx&eۺcpû}:g>{]{N:NO˯UT^GZ[[̟o9PX'/N:ҙW}wٶ3= /5l"2:ūO6c())@_OA˧%IOO޾﷣O9\MM ;Az8/y ΎA-b9uuu4pM`Xv6/\.\񔕕Zy>HM ̫7ZcanW+d?'=7 R\r,*oͤs: o /K =bn'v8dN?}0"/i6;[ e#wm)BmTTT>7/ϯKM=l oW>}妁}{ Q%|]ь|brc8:(D:pP$^v QSçv_;r2>1Ҥ#c$ +*vj`fdhO-}z{Bჰ^M{YyE,)i+-0cWohk͟=M[Kxxddpy9XGOK`$W[`6AT48~<ҖVDJ+mѮuKW :k5vĐڟ>}NIمHHJfӐI(%$GF8saĐ8>}beiN~~kmunOsR511:a41ezWo2Ed4x55}{Q iFfveUX[YМ|ݷgW: Nxa8_ת#Dсu*U̔\|'$wz?kW,-.)1 *ʃ٭ӆx>z|**ʝ;fuŸ I49?6IT's3E1grJ'h-ee嚚_~?pxl|fvCeTUW/6f*t7 hɩZж T-Y46yl#Ǹªv-n[z3~aWmbpGKk'y˫: - U:Ag=t5v_4_y4*DU8$eq'gKeI˩ickg[U'M8(S.!_N .sgrRK9U}LYNݜL~ l\K5u j \̃2)vqd66vʚZvu25~]PRU^yN[9Aj+@!L`WgGSOo |N3ӥ_3+IQAH(xHHB)ܥITV&+t"M7RCx" 6֢_~s]]889rϡ"JJ]~AHHY,&ImmHًW++l.8 ^:;RW:omwz [5.LnJ~nvnʈvlFӗ~Zis˴aAsm> US3ۑԺlU\nˡR2-C^==Sƻ:5S |9y4eƔtch_]Lj)t;w*qٻ:mZE{G mO]:P#9v< /';'oGs x\ނ93'$:hii͞1ζr+ΞBJ*4z :{N|BuGuut_);&. .ݾ /\SrkiW[uiߥ+7E,#+V۱m+&:v5m܍swXx$ZȨ: 5Ӧ>pipQQSq ::ڃn:PI[wk4֭zч۽<ܶkogC $KNnj0. aJPMHi4/ L_* ԤK.&SSSkCC'DJflӿY?H@ Щ.NtdFf@(Բ7s񒶖$JAඝ?9$(+4]tA^~ ǘa)ذ{z/ RzfvTt>ai yŸ4"!Әw+>@O͡-y{ry52FDXImI~f GGN50h+hhG#L&|7$a|]떴]{cܨ/_ryWW8,4^:P 74x65 Jr㶊*gfʂrLv݅~s36 )NXYhk3aW76mߥסm8ٮMtN{G6֖4j23ionfA5I69Ifɲkq;4l8*ϯsuqZӐUbJ[mZR i}B]T{1UA##?qtsqruݜf1-#+2:nQ8|YӒRR)&2fٻ5Mb:YZoGS';LMrr8dlKs3Ykh\=ip+K>ݽtsgwu49?ũWT{jsjCgw3TSQ˃a^3,[t>F6Qmgdm;4#4<*%n5;N??nv!ܙٮW7`ء'Ӄlo huq89Tf紐2fmNT#[|#"zJq,5eINy]]v ^u5Q[]|ֻ饭l XTK[N iPKT3kWu5bsj*ʿV~|tut]4J&]~әJ;A#өjWtuHS&?%fV]8&{04v jtΚ0zܖ#KU7uh}}ә%oOk.Fw{׭s{:}  f'&y(D39I>۴R%LoQxtRv8mvqTH$Z^M"ۮMbss6B }J;qϯo]fh<έ/lT#h~e7BiPѧgWN'ЗYT3'ju55ڽKǦW43;3ZE<}*(ptƝIF{t&jok3uhDZ% NM烎fĤT ߛjijv3'`6.aޛ8ʵ[[t2r}O;0F^z>^tlWVUǨafbl\l$)I@7U+h/yq?w*4z@:ȇͼ~'%ϑCL7O.D޴d5UU'TUU̘鮮%GgEeչKnq7:(=+w-GNbF|Z ]ZPTLoEӨB07t1uY&)Są)*. xB9i{7[r7mOLFB@U`@^~!Xi=5=s)4Z}I7it,<*I*I3>wVjgkMUTTT,W32.bjr46$ǿ0u[؂*/3=cmRK= 7SM5U5]2Wp 練~%̍,$ I[%%UeeC-u'gg)ŷRK l]wSrq^fYWGK=MmWy\ 5*wKb VpDEյqUW?jP㯻ZF{#fTVFlKUy٘msfuglKTljutKZ[e\HIRSפ&wq41aQM=3P/ }MNrCYxd F:p܌E홚xןn.NgqiY}Fq@UM摒2@_ÍZx~;:qSĠfD j^Q/,ljb+f?S\뿠QVRVQV. mc!#3/6[ۢ1鲴MW6ȥ>XYӊ\ 毼nKƍhC ]Qf&r&x<^J3ܸdV555%B'"zses L#6T]3 ޲BGAaQS-{m]p6EH:k'njM5l/wtR|O%=# 57մ$5T>yaj_PH`ϼ݅  .0Ti'B% 5f:@BDyE܉/ SkZh4B=f,s|(mMRZ>mD*%aB((H<"*&37ѐMEE(=*62:Kԝ?r(Kݰ'qzzԳb.g/,PoI=߹׶u u78f຺X%SǸu&"0_:WS?f hhNIiYaQ 3Kĸϯ`j4.e^3_oONM6-\@2H4v3@j3/œiEtHJ[Ckqr_`6ꃰ?>1ISiۮ~>SƏKp8~bXYN2Nv+kZ?YmYtC2>{ѨܬrӦz=]LxY4\A+ۄuyVRщe\;CMH^fVVz3FI^$Z|!newWzzvEЌaBjoh1&ǯ&kjK8%/glTZqfd^l-ɭ }=>: d AM>$+Ls*hfaȨ ,::ZBr" ,J-ⓒ)tH*ET(0iPiydeRsr1WcanK*ARjZNtwWXٍJNM(19 ;,[~p޽w{,!ookbWl<ۢi H'_PDq\"*r+7:6}V5211FT ٴt&ws3q¾MS^Ȇm>5qL@PHӻS3rBB։I v5d 4*KʪcKC~=l?_&i:y?u%IǶwX_FWj~ބCGOݽ:T'r+Mc0mmսėit2-J(~Ѿ>̢8𣲪ęLS+Eq9\yW|-ܒ PI[)FnE6 6۶ uPFYY9$Q d̖r\h`GC/ȖHNK4c'jeiN?|'1>xhM[DѪmC>nV4B0)5/ǻu~ݨ`.ew6oOSNIK>kPMē .-p(5aՇͬ QǒWuy=r+j $\ %ɜrjmlęM%?EF}cgXWxvF15umėVʸm{;k7?CǢs%"(k2-˿PHV_e\:%;9<#-iPJ_VZf밚%5ֽ2 .Dž|nrek9l{1:(8\$PK>|̴c]=V74MVWsG0w-B7T LjXjShea*3ƎBa㉍tut0RcI^33Z{,4=5x P:۳&҆xɍFlc泥Ҳrnr+, wRWLUwXICs'{:[{ILuef稫3If)/fdÎmU'Y㪓@q7¢G|4ZN~~ fLQ6l:R@fMB'Ҳ2i#+PB(9%@ rv@?^?t̷[)pgBTyϙ rvKWn:@nH.o{TWW;e$ 'MLJu^2jD0.>)~@(d W8pv0Xfv7UO$mY];_o|'si 4U[|.Ѐ:ԑNҗL 22=iMJ2N ~Ib\yǂө,;; I-\ߩ܂#Pԉi&rNth]zy▾j0J[K35={;7w3r g6>Q!QCrLQ36KKy瞑8%&ۈWGJG ;!F8~5r 1jtkij=dЍ"vE] 8naKQz9E.^_+7RHUVVOqx %l},әJ;.6>ETLX##2H_@.68:v<"o65:@`$?ζ=%͔$ksݜUd vӫf>`lhr/90O̬ls36UPUQ׻'>E4`?@vGrj:SE m ̙fogC aQCʝ _[YUMg޸zY2wxE5ȩɥgf=yvT/_1mxcrK":_khDi_ E<]H#;;k+}n<’FQL]]݌mܼTsǶ<u?*n3~ض~ώM?-/#/wZ]{ $XZ1Weܼ{gʼn,ic/x6x_+9kd$i\:~URZ6v`fT=q숣'x9/Y0mP^{ZzG7 e2i܈_Yxh҂)ai0n/ɍхF@cŁzue2)S /;rHMm-U/U~=_$~z{I90\NⓨzTUgO|d ˮU EhijRmth۪C[}{uAs~ K˒d!Sa]ySLNd!B0:6FfZ~n~A-WzeJOoQ4M/wsFԖhKՍ>}zv/ʶ6jF;!<\ŗ~g(^}=]Z3ߧǾߎa?izem$z=?<{E7'_~OrZ6f3vk 2zy\OSZXrג\Mt~R}ֆs̫qB3sۍ%!mm c-bRY}|&`I¦55bew7bK=zZg~nf=4VgiՁBZj\{B3$ D kí/42Md{nf]PŔbKL\bD&0>ۗbsaMTSSmb~'(($N6X1yjE%Tv[J?o獰{Ŀ#95Z㖯V[Mew:wjbr'>}q7 OLΝ>eĸ{tFQ rk7]k7~l^(C~Aѯ@Rwqt7ו}&GODCA{kKiu'WZU÷p 3"/n&:Y97i<ٛ{l ~p;Wcblԩ}xYIr5L|et?ybߞ]`zPgPW@^yJ .ˇרϏW< 8[ϯKLNpwQ{rW@nW @@ hP$@!@ hP$@!@ "%[ֹIENDB`screenshot-3.png000066600000147705152141651170007614 0ustar00PNG  IHDR tEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp y>9IDATxXTYp:. QAXBnW][ V\;P,TlBn?aT0Ãwܹqιyw iiif!"~%5u5IIƅkz ɡB)))---#222..BCCQsnSFFF dgetrv׿#2;++ p;7kaaz.]Q6CyyӧVVVqq h)ZO."6*AaC ߺ}CP^Q' wp…Çi_K IO NKKk(+*"&$(ԲQXhXQQQݵI5U˕7zvZO]%%̤oRZZѣu???W=--޿wOMM-//+77700?~޽{i<^{ܿw^" (PQE zH=4vuL: }X :Gskij4&Nׁ\VAQ-y9eii RCCȊSvh͛ P܍,}TB[3W#[fgp񲽗_kܪdq /YTTDْZ)**\8,UWZz'223/g~@@_ϴ][ለ/_5d^4mֵ+lֹ?{Δhݼjot?Ӛ~PPY3\^s=ii)mf}-TB{fJZlH/l(LPe%%}o ڿ"a@NNNqq7n. S0y#ojhsf.9߹s$yyn]^u۹Im}ؼa^sJUUSnaBye'ihDPPpY=44(6DEE5H577g)C*,((FedfFFE=~ĸ6W۶ls wC0kgwrv{V9Yٚ3P xULGƌLϟ;N;g%5'vl.TVRڵm U}0'ܽ-)! {R QYYFCvsw-,ZȢsI`ԁT5:n- B!Dkܪ%,+_i,)!K1UVaaabTs=XJ̙Xi)iKVNR$,/9.H(Q ]t޵w+O1ӼDsTRRܴ~uaATN1le4QRRBb:wZh"""7Y mkZy~Z{6w-;CBu䟓۷nJLL3~r˖-mӮSgaOO`SSDEE>cQZZk\KKk͚5QQQ/^侨/+**lXjZ3vaEBBBrthbbgܺ%nՒEҲ2mY|W}.T@@ybb⥥AA|61!' }(9P^֩eف9CKE2l6˗<ϻ<))==#>!AWGǸu;vEEG{9n!<U***j]1#NIM`wG7\<˝[;7=u}inЦoUK֭?H},849TZ:Ɉ=+f3ŷo>|`Ύ=rİP}{ߥ{Tgv4A ޴m^^oDߙړa^~RQV12jδŕHyyyO߿/,,,.*nպeVV%؈'Nuҫw@VҎ}ۣZgPmڄb (:&JxT%EE:Ç b"111y,^&-%[n2}ᔎyw o]c }]"DDDwW˷a{vجH -mٰ͐0 klt۶ up ?FԌ4۪UkJqqq9333UTu5{ЕmHHHII.%ٛemm|}qioޯ^w9ܾ5!1QBBajjjj{¹^II=uddRTQǏk҈lnnOHLҪV\VVf9`h_NLAfRw ?2ʿ/DEqvǼ\Z\w~HW,]<ɡj\~Ӌ9g~#,,diaNam\||z"+Œ޽}WQQ.'[}~߇02jيmR1;-> \r&M_ɷhzӜܣicbHܠѓeK>qF?YxכlS|oj?7bn[BR͛۷jٳg~~BBz %&&bdddC4KVج]dų\zj-8uY3<?y*b-}rVV։Sgb8NG۝?Mi؇KWLO_gxff-'VkæӦLZtQQQq`PpaQ!-pU/<}?Llԙs(}}yUݼw޽GtfV&7bg<ҬK'Qшo}W-^TTce<|lά黶mdSVۘJwuѣ=WF hojjddt~|9zqrhp4QQ}ƔK?QMZ ̳;_|eUXhXHg]EYZqWW7 fݻ{')J|irrIIY3g sssm< xvS(>.WZZIO ͭidd$++ 44U06n3Y"((HV___UMURB i*..++C=wf+@@@Yo@UsxJ,,,   ,,,   ,,,,   ,%&&mtuuddaVVvxxԯݺvQVRy˱ZYNT~ѹQ޳G7|>zwf-XkN@\I:vյmyk>潨l} f4KQvܸqZZZ>KCW\%޾[.BBByQnݯ^YTTeee_cIQ)YL3ʹ-,,xY3lkiϞ<\ ?7,^Vg(((8uEAXT#97Ԯ]Z3nm~hڮϛ7|699ϟ&=vwssgM%;m7w`*"*O%qT8zKWHmML;9HIKm޺#*:Y~ϞҌ߾{;_?UK %%%>=5wjsA6&-VSS;ͺ[N4]f.>ʢcbóQ/Y[JHL*))ST71n=t fڍ#/]mJJ =3l@?KqqqޗKIQѲy222=y3uuU#WOiۦ ???%ZܻYNĤͧ>!![•.]a#!!ab)4[tg]pߔEـm;\N o;Yf}x6mJ INI^zۣu6+uf毹F޴2Zq|)spZ,-{LbRn4o z'OǼpQiiiMTTtuQp hpq}4n4Qq))Oݱx<|?0|QܬN%%%7KJ긹}/!!S(",by=MUTTr/1THYg>ʜV}wMxƕG Б Vc׬\^^N*ʳgL 1^?'$$ݰyhڮͯc._---ɹ`wټwϯ ̟ۀ dXo3N<Ǯڵm\w!77w붝eee]:u\l&_ե~!?b5|GiVFZ}cvÇ)ɜ1[3m-}]:{ᶓUdr LM- Se߼}7_*Ʋ @_`yyhb?71n3#e<-1xT#ʤum۲qqqΝ:zYˌ9{?#))Çh=nǮ}#:v0]|s/[Ǐ1l~,K7sr}5$BKB_!PڥS^uZltt̩s<<32XmMDEDCG# ըQ|wj¦M4:ZT%XqmLavvCBeddX- &Xֵg)5:ټva|B=##22 :w0see<=x/!!~,IISVHH\h'''GAAsӦ4QQ6[7rrLGEGԍu XVVtP3I7iҤN^=,zbfzÁM|B"-MEYI__fRyy9Mиi6';,y:8-/FۣFs}R@T.+]?lC#fL#""mLLV^oݘд4][Iտ7oﱣGQ#Su{8#cO/m((?z^sie]\Z1c;::F?B[KU$ iұC{q11$%.U~eCoݸ֭ZwͺXWwk7h##ORFFwi;MM :Gi'g͵Yh](1-#vӫ͝5}ƴ)|UXr,v)KVp57?~4(8Ĩ!-#&8xmZ`>,},))PﱿO5Kp&*(2Xf͘ʹBjaC(^~ qmKkΚ1}$ڵ4A{ڿg=u]kмT?QݲKLs9^EYʺΜP'xƉ=ycjڎdn1gyS{tڻo4J{/^(--Z^^ OIi|=H̽o9:ӄʥ(WyA8iwfVTP`GY9 Јi69%ۻC]]݅ Ԝ+-jZnhԾs~,|nĘܴSR~cp`nh\sxYc3>FF_Ps}& ߟ6=rx7>ڛoK OT6CJqO/}f3>iQD[xzy'%'ڶ1fԴT_?Koݴ3Ѣ?yX,I/$BsfN;jNwG]pisFda߲ uuu{JSlj 5kqeeckeҺ#ew͚1UYI o,qy~PS 45[4b6iB!rm;4HU9N0~))߿7I윜O] 7KHHT7[tŕۉrtޱko͏OzJGrrr& ߻엔eeN<<_T$Ͼ 4jwYy٧P_12*(8ĸudTeeeVGZմi‚.wmU?߾= mY|QWP˫&$%%}eߺtkء]ؗ B#DYYSsݘ{ު6m[}TY3eۘXAXXJUiQDDdfIH3W>fT5 T͊Z ;6yWk%+#3e$n}6+/$*z9ݹW1H5ZZгU.跋룴z})ƍ}?^#wО]\HWݛ*K*JOˡikRa?o4ϝM>oYht?xWy~0_C͝pqPp{KS-%5-%+VU]rРrysk/_E`P-< ]^DݻI(xzCgh1q60F?@$.>9LKXX(/?5lzlqǧmn`OJN ---pΎĤ_iiiVp1 JD}{:CN(\9߽?oLaw,XrrrRRԴv){e%/PZZS)ܽÖ(oWmLQJoDEjۄ[#Օ]Vui/c>3Mf]lO?MT3*qUÆ bfޔR7e)3f(+Sn@iXC\~3$%%i/-Μȱh(?3Oo  |Ucq8iwլ6gջ\ΞAa\鳨謬,q11 i:͚YNAAc\|B||BYY8mjs]ݺZZ3w3櫺V{o8ܦ OHLNNko9nW32eed7C9|hvQ uܳڍ̛Ɔ'KHHc?x-G6_4OcϾg_*(HK &&%367 HHH4 4 4 HHH4 4 4 HHHH4 cYY9ݺ[[[KKKI?tuE=fUUR:cz &%%;vVLLGh<_g^i-?Çpݺv̌wt{ѹU7ٻk[Ë~H67]Cǎ|...`eg/]hkb|"m-%w^i,+#TUUDDDkӡCc.*99? W2hS>h`^~/^Z5jE .5)//FFFӦMcO񣠠 3/=}@U1g kkknݺյd^sH`` mLMMW^ͥSյ/lT+WLLL.E<{26mߛ̓'NNNIIIZU, B~~>y[sj;NMM-//WSSKxJcǎٳ'{{M/:4ێ;GQqj6lLڵ^˥9Kô*fo޽FuḆ}k6=Z| "99ZKM Ԛ;N4yݤTl'OJzKi,j}.=;;ސ.4n8BTNBMC%!!Ae%8YTإKT!V`ԔU|yߑZa?mc|L=I~yhu5Uf!b1W3VY?oVcf x۷gGjhhee%%%E3;;;MMMf|AȘÝ;wh H%\p‡(P9eF__ߝ;w>4@BCL@þRH#u@'h\nhhXZZJiDصkWB4{jBq>:UV(3ݻw^B^jb[f͚Mٌ Q֭kѢ ):uFi#_zտJ4e=>*-%(rG.5i/TRTûC#rq AD/˒yijˡ w(6lJY7nܠ&>z( iOM)k…Lf=˄ݻw={65Ǚ3g(Qf6mopͦg@*sɴ/tլJwtЎ/Xec[[[v/ڼy3⫺{?*eQ[Jeq=:ޞ: pҥ ԬRƾ}7l*ϐf4ƌ+",[XXw.%ŒiMO>{!(_!$$&̦m &;'0;;gڔIwWmӝqcGW7oԛh4zhnj)~C4&\j30266;w.ӧsy*==]AA ٧n޼٩S &49[^{Ei{i*..N[l),,̤YZiDH$oN.))z#;MQ=vR8ݻ7oI)m?30_e),Y6.ɔ4Nui4fMK5V]4~ڵkcbb444`x뢠EnM&z{{S5.p6%VGCyf!;U]k^0iթ)~T,?LҢ<<<RUģ*-4i¼@]\߾}Ptqpp`vJ ӟi3h(3IjdjZk7hEՖ)\Qcʊk.%%T7lQ$uoߦ9)2оԼ ݻw)"R,dF5zΝӭjSV)s, oY{;1c0UMx鍚*YXiVCScUe|2g9j( 6Н-/3e5ae))TީC{3"""116nK[wZxaߺz|%7@6_\Pl`n{fN ̷YpyjȐ!w?(8 (TpX2z/08ϏUCCXhW)hiuB~sss?%:#Zĉy(eaEI-¥9Ѻ7"s6J4&=zKh9Tc]tv#9s>//cOm;5g )l e$Lb  JC hSg.AΎꙪRm_m(}YkOg77rbcc9>{lwle( {1s~R{k:ؗ0PSrBvh,^z;kQQ2;vm633sϴ죘JQӬ)^|vTxuSv^Ifm;Sp͆5|)N> x(0#zQ`.<>L4ߺu+ki4:t(Zp׮]Uq…diJ}5W\-ɜzs; +$!Z/߿WܹCFMZݫ-.ݯwk+u+g8QPPૺ/ggM6q~ΐɓ')JKK2*y\'5GT\v)ӡ.8{WII 5gk67/]4-ۻwnmm-((xܹ/ojkoOm76HW%K0mˁ_m6f4[/(߽{fРAgq ݪ&,!!vΎe"]tyu~\0W&ӸyXXX\j)ϪQʢBb-_uqkUE|CCCR {e˖-kժI&QKrrr%c׮]1ҙ=9|WpFf̙duѪWQ>}ƍqˢeddh gk/,F<~)}aPW155 Jfw*(ܦT]M}V[[:CTT1cuQ`>0c6HoDcgRH~ZS{m^C LPO*(@r$U闿eo޼buW޹s53*ܬQݻwgri.]^xR R(iJrƼP[[{ҥ4]II0$ i)Ȓ Omݺ… N!,k?Ӥ\(D+WhJmGcOOOZGٳgsdnݚF,qK°˗/8*KFԩSJ=J}qqq(}v+s0NhkS ޽6DM6 2d]5-vǎEu%6To2dtzUUUŋr DiiQ@o\PqMmqYZ,AHlY\lCeVI1}tku޽HExʕ޷gΜiooNmDgT2w_װ5j'?T   ,,,   ,,,  4!^fjѢň#o޼os},To۹I&ihh,Xd MĜ?lԤ /]B+j匲>U k+STTu xrssQ X,7N HQA!&6΢w *o+//Ǟmİ!S&Mڹw?=[9ⅿ(..y!=󆵫W@;m7w`*"*ocwl\<:З(//ߪ $({ayZQ ifZVFG/˔ ߷Sϲ=iU)_|yubjV7|gKWHHHجXSܬ3*c֨K]r\+99hW?:zdfVָ_OMKyǏr-G޶s뗛ikgd gq.<6>޲y|Ln^u,hۙIKK 8r0JJ\[4bXuut5d=&**ܗ?m-)uKPM_[`^[[Nw(yYsssKKK^}Çh=nǮ}#:v0]|4𗨨z/v=|%)QX?1nlwUYWldT6|aǏ%%:gU+C}]iZVV]g4f>"xj%!!QPPfKKK:4!!V$YI|.\ݼ!9%KTTDTTjVVϛM%uuuj.<"e>ct5C V8hZ(: K>b?UPu–Œ,w{?{ѣgee<|Ĝn̬l1320-ݸ娭|BiiP f'ïkؚ'L9Olxٯ(///((h~تwK!@4ϞRWD|<|yn9:h4Y\\BoCהT|mܲdMO >e{ p<D^a?T{aaaEEju|]2.^K!R;x&s wi |3>1)Y@@@AA@OoڶAjbbӜ;╓U uu meᒒ:ͤX^C8m;DE4 (/+(;om323ޟ5oᑃ:vhʁbbb54n E 4 4ݺ<|]7-=o ްvںF_hE{[4u0>!sVBw0mĘtaNS~cOBOfqݼӵ6+*s~o س#W.[ 7jaXPPe%%%|U_#d -ffe<|bт/QǒMowLL,]MMռWO4 =z^9z)#M[6{7>CxD^~)H5IHHdegsdfeKJJЄͫvϜxs S]U6a/,\+ݹZb%EEd)>~ ԪcKDDEjtΜн|yjTSZZFGOVǼOGFF|ڨ~;0(877WY3桤x1vҟ?PA|B[hkbL?jLjS}fL5mf-n SRSccy߼l[IE~>~f5̬Wڴ)Z ð!S=v>lpT;",핇>_3JIJܜ\vI3mmvm{4Yh'4m>}Ν:S/_y++)EFE :cEEE;32TxXٯ_jԸ/^1mrnf4_nvYY3j,ͩ ݺvjL{ S'+((DUEY  o=m۹&:w9C# %%oܟ>{͠(/9/TJJs9|(9|}996+iiF- >_7ۊuq֏g_QuًXYiŲۛgd\qL[W{ph`نWPP ""B1qq{4ij~~rOyr J::ڔfߓx* eKKHx}тy,k5傂Bh݆JOKBʾA秽jda<<0))~h?qVfnjbڒRz*7'YB7.ML9'?等qk޽(*GEE{AiX$?[3~h2g;w: i BTLTRR }DYNzzbbb:2Chj4z]/䦦1 ^ܦt:PBB"++JJJ233g[.)*.ߔ`GZY[u㺗?V,]D?qo}(v̬HLL캍[f~Nϱfmkkm7T@@ླ:߽f㝏~mEEEyyyAA*j>I||8E9~~X>fL[S\ef]">F_LT: }'//?zpզMKKK>|%iih3JcJcǨ\z(-Œj-( ArW +bgNS---BM(.>[yYiizS%Qr~u ` ={vAAAvǏc3|B(--z NK۷o=mܸquqbQHP_:sYʕ+_zE:622m#:MXCOO7o,Y 4A`D3w~LYs+X]iZׯPL;h j,J)y_ϋ3geBʙǎ?ݻwwݩS'JżŦP YTTD9NS޽i:PO&ʒ)S 8rZXX hG1,=cǎjjj5f9y$hFݻk׮ŋS;2c zRPCn^WWHltnT~ fhhD"[JeyyyݿΎIYM0ftvvr?Ybg=hѢNaBBBΝiB1蘟j6*J%wwwuuu888lܸc崯Xzu۶mlqxQߛQ]+::zt***biusssMMMg͚pB2Q Qv 3]yhNÇӴuAdaa!k,,uqo޼ cLchutthEOi[{z})>~mL7ҢZqIbpz1((&֬Yj*??;w0}(ֳgOd-[FQ򭇇GJFK8|pKa.]^JY6um۶LkYYٖ-[\r5 ԓDFFVVV_}as+LA?zɛ6m֭[]\\dddvc BvM.K?ݻw\\[PQQgF*X#Q4@[Wgs' CBBf͚%ȅO艭]Fch|Fk!D\ Z7,HEN~Ù" \Zɯ_NUKKKWWӧ>՘~jӠ?~ڴi:˴l6[CCC2a5>>ٳ555FC햖/^`==="bnn^ωП82Ri nχyh7NњF]_oRڧ‚Vȑ#G>{ >|A8>Vii#֭[e߾}+?{)FEEmڴox=_۵kVXA#~ggg)))dt9V\&zw fQ:5.\N )WcŌP@bhSڂ|bURP(-\ӱT ɴSe>ҥ .豂*** 6dѕ0ҊklQ='FZ"vpJJJ,HO<(Kaw*;wh7p-[PС&iG#3u1cSuugϞ#++uqPnhk1 ='NPdo߾nݺፆ^F$;t`F-͛4%ͦҩSzSBi g? j5-zԨQ!׎mǨ2 t3))*0<(**233SSS鸸]6I2Њ;EgjtPVV...f.W9|}}{쩣Çӧ4vrr|)rܦ?;;{ӦM[pa6m(R#\)]/X`Νԡ,3f9si8+++[{ &tޝ0Ι324HTD$($>v0䛍%"##<<IKK}~˪!vBCCSSSUkkkՓ]{ILL 9(%44[O"))i۪i iS魨, h99ͪ.\-m]RRkO`=햔h١Oo+^}Ibb, σ_ JuYaOHjLڵ zw׳aC%322䘛))iXN]}>/0aᵟF|BNvZ1+ԭk'NG`hi67'>閕Dr}1;;q|^󖖕_?v}ܿgi}YU`%%%~Ǐ;vŒw0s{+((U_҉?))Wo ytjG~V/c111^r%޽Fbu߹cÞ<ILLviG=_|PK܄߃ح6ÑRBR"99:;m-55mf׻7묬5y"_DDmbbzliYٯ,^0ߦoظ Y3#"^߰ $mg.xoGY}UUUEEEʨ$4JzzXHcg@/qiQZ^EfJд***bUr5Gmۆڀ8OTQY Uhf͜1WUUKKKJJI}(/ǑPWWQ ~)%%)˖APCbbb>ql>JYYY(nɩi陽Zed+++U"b馆 8g%ѣ 6Dxx [VV@aꧤSi>ϙX>@yyyNNq@Ve}@PSSiʷoFumbd !!ABLLLTT9&&5]&!a*++ ;wiԩso~kxݻwc>|)lLchݻwgiPUW7ѣG380 IlbbFL#%FC}wtYڵk(l.;`KKzGFF^xqҥkÆ ݺu4hP+a^^ѣGUTThӣGִ唔zTznI8S6Fr,{ײe---;;;}J4 -~[JKKi4GVIIiYz#GӧO߹sR.I&IKK޽۷EEE#G%a&7/_KC{c/Q)ImooO6;v?bĈmc^ kH;o,XfV-ue2em&`ui^^^^aaaK.ŋ}:Hвyzz򎸮_4dFM4❖|)S0hHQ CG#~AX%w}R 0`3ghbŊ(nijj׏P<[t:Ew-ZpPP޽{;t蠦&ЏԢkةS+WPв+))1Ã… izǎ2226lܽ{7LA722v>^*4-**r[qxg Vd777Zm6nXTTDNkꩆZZZ{9z9s,lcǎڵ+3XXX|]Mip3iii_pT (lvAaǩ deQhˣqMGGG neeYφhB[[&(˝>>mllhdZ6|:FyJ;w>|[^ /_RCBBtuuCCC D-ي3xvJVӧnQ:k˙Czzz̕Tsss6l > BʪbIKK'&&5 ˙i)))IWYYE|UdeKh_ԡE6Q 233i+c>'UbFǎ@B["lhZ>MXCzըT+ړ̟?KN.tܴ4 )RP]X&Mrwwx9eP!&'dV5U_ccԨLQQqŊ{!++i=|~Õ 4 -[QQQvv6oI#oԩS4jӦ .~jjj]v{)Ӕ`)zzzv҅4 -{:m4Lbѱjo߾M3ZXXlNNN_bO?$""BFiin<0Ҿo]JL>7̜TBjׯ;w#'7C+78jQ%%%z])h777,4;v5f>|_tRD._WUUu֍ @KAQPHX':D 5oVS i 9O>^^^ifNNE/vqI)X711L3w 6)%$$hkkWk׮PWצMz 722ڿҥKk>{S]ZYYֱՏGeٳgWzTFZUM\.5Yh-kL5FŢh n:{VWfNCME],j_!j .JAAH5J8;;wؑkĉOvwwT;:88P JOC^^0hР$Z9m[y=zF7701m5nϯ^E]vsʕdv^*8q)Z+XDeqqq9~-[hMP{׮] 222(i an;sT xt筪QQQPɩi!azl>7o3cG?v*E![xO,̝hije EMUeݺt:}c^fSC];nQTTD?ݫ'R\\8wҚUr?Ѳˏsi^6[69%e0E]`~_BUU7nٰi+55a =! V)@3ssrKKK M]] ew\=*)*Rri0n,[v~M;_tg. ]o|nHIIQ|囷YXTظ5M:s. BAi+-~Ǯݏ< ,-+|uԴNs?yڥs~^78َ/\L/f{]v#>!!>8{;|;ls47g4DG75dn8B+x%#ۻ߃&_:졣ܕ M=?svnR@e>xHq>JjSg.,,z|@[R,܌aiʮ?M4X(4, кU(TֵIO?:y<{Movq}=]Xk>5AӬ  /Ў1FΝ,n߽G11/CÆݵ{on%%%Aۛ/i!Mq%%%}._`EEECiBVViNn]e8אk&&m*$$%xR󔖕*+){,CnJjZi 'M䵨!44+,,ܽ{~Q\qڒ xÇan](++g_0+k/T jvvۗ.v1rٸ933n{n_ [rJk^>@V""By垇{$5- TTTFggM-/'g#""⠆(gJcƌrlqqŋ55z-T]W0))nv"in];?zFgs^YwWWPPx7Q}[oߛfTUZ2nҐgFKD^#=^G]kaf('O"""ƍ絜|tTtdddAaAv/{gee `}}iC‡ ĤYK cGMLj;HCCsL̬(vؐ57R=11[7m8y(#3KֽRҨqaYYjw=fΞaSeelvl\ܶxRTPz֯IMK$(⒒(t oSzu5JKIUVVRjB(M]u史O?(L?b;R+%:L$])((5b۷/LLJbN~gl?{YLJJj55ڇ4gx>@?iի4:uj!F̨2Q:,IC迓h7ס\zrW^~f T}KܹsɓvlذA[[{ aG6qhKǏ300KMKE~8q}/%أG&''/ZiX~ŋ鯙իi⯿ʒ3f̐!C>^^^3gΤa:5?7n̤عsgQBa1ƨdRj?*--- Օѣ' zzzyfɒ%l6&?a%`D3w~LYs+X]hM !ͦWlOeݯ~ ~M=(R 4hP7mԦM޹p#FҥKDDMLL􂃃s\|_%$$,,,Ə%jDYh>r򍸺 Ilܨ(---WPIIi޽n)zyyݿΎIL0AݗD\볳ibX34;PHѢkйsgcccD\\c~~>%ڽ(++S#jK6lU,55u7n}Qyy)SV^ݶm/[^fTzcW^|ɓ'1ݻCCCi۷gܺu󹹹fp8KoA87b.dҢSϞ=)2ثW/MLg9T | >{#6664cPPMSҠ5k֬ZΝ;LgGvD[Ӳe(PHIIh[%>|װK.W^,Nuݺu۶mc;ZVVegg+W\vv;3<<4%**jhh܊;D/yӦM[nuqq}23EEEĆHвݼy{G{5VTUHKKc(T}n lqdE,((pdKQtuuy>՘ ӯ_?ڦ| h/u!&MFQСCLf544h2tP&SR={٨Q|||ŋ4gҩܼ?[qrdҨ,==ݞJn*Cգ5;(JeaaA+ȑ#={m JϏؑx-E) A@ _Ɗ ԂjC%')..YԡErK4Wff&B f՘G'&&"hfsOZn FZQx[p!yyy想T ɴS֥ꣻv rpppssQ``Cq܆,某WZ1T}QV0ʢv"6A=z* 4 -ғ'O(nڴw*;whgbbr1ʺ4Ac ^^USS{rrr\{KCFWWW333@ \t ti`:_~MҒfSpqqԩS=)XXXX67gggЬz54005jԾ}j]fBEEUFAAn&%%1ӞvD^+..k׮͡8r}?8bN~!㨲rqq1)hС=6yhp1|,__ߞ={(g4{ѣG(2Wd!tiD~ȑKwGGG`N2@$*"bafVQ;To6P0aGTXX`iQdڷoO[kxx8%~5DqP:,4hb6!iMD iiifffi%Y11`,,PAhib]]Z< sW,%&Lӣ̌&y\ݺ|ؼ#6cxG?RZd`awѣ({Ѣ¢F=~mՓ"qVv۷.]>RUUǼ􌌘rHOQQ֖%&FO<˥(t`˾T޻ )),~Z袧Ϗy ~_7ۥsg&Z[[kkk{y珲 S8L:\ }}N>;bvl۲|"fZ֓w }>yCߛ7\-MMj>lϕ LW,=W_֮fǏ} 7Ν:[PMSe&q8B*5ዊܫG~=uG***kV.SPvk>7ϛ4wf_,rq2TSS#%%o<@Oo BB㏲aaawdi,KVVeqcG=|X:ƭ;dy9~,&TƌIiVQA_RR0_EejP-)-Ds x1'i{nr._'QVRAσz;ΦhiX:ud.\ u8rD^^~zFFIII5󳰰4%3,)-aXLlbzcnj!xZ.?Ө |ei W ZlC|B=ʛL>+**zxZ4GߧOˡ`;G~;{洀` u5^O%>>!,"ªWOcff++VRR y'TQQ&7/?/nʲYn5Dq>_4hP=@~x9f>zmv'Ŧ>/\RUQ0~ .T}V+))NbO<O$)%54"lӆZ KJn7mg(@涫Gbt<ֶv{yyyfVf\L쓧O?6? )x[UUUYYYTT|^= %&gsuEìX5U DzzVijج1&$$Knx9עe$GvÔDքė{ݺuѨQ^rJ[ZZ*o|\=ZX,VQ^^P?"*v%oĴmk!d5-@"}ϟ߽{… U"UY3c%I|DGGΜ9sڴi?Ǐ5; OXW=z5򓔗/_݁πRhD 111QQQj4A7216 {U'MܹsNNNSNoLE[b+իWwލϧZçNfMf /]LKgPHH֭[{`99ׯ_4j 4.//sƢe~P[lbbFL#::ԳkFEEQPa\.w􏌌xҥK555? 6tmРAyyyG ...VQQ=zt=Z SRQ%LWI,ٳgw^˖-[lllj@K8x`gϞܤQ3ᑐL㤎;R'ON<]VVֶmۙ3g򾗻|rkjjJ.]}vffmO}}cR$hkkO6کq͚5VVV@ˋuvvI&ĸqFާTjFa0F$%S_m ӃvAylĈu٦#G޾}`6Mh[ JOt:sɔ5ٚEAA4l4 _dӧO9ݴi144֭MMMиybOOC-\_~$|,<<̌U5% צLxƍ-[IKKh,US_n'R-iUrimpZZZzԩVUUYYY}L 7קU"СCOyćߡj@ۢk͛;ѴNNNQݙ;vmذaܹ4^(2{W} U_ @TT66znnn7n7o#@5=z> B &++Kjn0--Fʖz 4##5.AnlvAa = deeS@ˣqͱcjjjXYY>ښo @Zz )O<޽{NNNxfWktx5UfڴiQzc)JennN+a3c54j=eeeɵ)E_24---]iPοLA)..YԡE6Q 233eee )ŋbcc;F, ħԐ^u5**##cX}F f7"!WNozI&WTT<Ʀ9mɢ+a YycM5j+x7[CVVdi=|+))bH"ѨnΝ4ׯDC̙3Oehh(ȵkֵUUU4OOO({9znݺQ%-w'Otuu@jߺF$;oF-4ͦT%)Oe_o'JͿ~g3Ly›߇\T@hbjj^~ݹsP9 ־Q\Z1(n֎JJJ) iZݻ@ LcK ŋ4:?{":t!AhᅅK,322`a JJJip(W3Աc8pb&LhSvFA!a,<PmyQS 5PUyyyQ999&kc~->-2[BB6m\]vK!Wk׮PWצMz =.]>|P #g֭Ç)2߭h+XzT={PpLed.׷o_j4---O09Њ맅6$%c^O>B\LlA+++|?ؾcgAa!y&$nWRRJMM[tELL,ZM|Þ={?&|*G~kӷͮjjeE.;ZqsEeŒE.sftݶCVߦva} .!/C555RRpiݺu+0 &(*(=xXVV"Q_GaC\?}tpHi)s KN}}%%% 5fIJJjkd_wʕ jTWWpIqɐ!~~)~SruķCO=t.]...ptcG=SgS14˖V{3Q6h A/>>K玼MQ},(,<~DMEEzxikyΔ鳢ǎukج 2mosFqqQܷmƫ|8I?zv&..#.&{¥ΒU{XiLL,[II)%: uYyA$**@ ˏnupd329{ߏnۑmo8mZAA'Oy к sۙsvɓC&$AMG?xުʢ"MMMT@pQsrr&G-''kh'*؇8:$&&JII Pb&61984⒒7}-L4P"i͛PQQSEEENvNjZjRbb4C#IaCLLLTTTMMjL B({48}4mvvvgϞ|.ׯmlVz͞=x~Ǐf 7 +11qǎet钗W}ܸqP|h>b_suX,3jw`)1Pgc~=K[rWh=gFFFرc=#""Ο?j*--hڵ={m5}UUUiwѫWִ唔zTznI8S6Fr,sΝ'Oڵײammɓ'0@JJ,MA$,44KiL, 1?P\ZZJUGGnXښ%S &'']4Nq/;͗/_NbccGedd̶oNӨ~ٲe֭[tiwhi|OtM3gQc탦B[{c/Q)IɤԴ`ee@ѣG՟}}}.]m۶;vP|ܼ|#n?Mlܨ(---WА{RTFh|{ٙE[#?T:zhrrEjώTٳ')PHII(>kإKooWRo͟T۶mc;ZVVegg+W\vvP3<<4%**jhh܊;~Џ^2%%%n"##ôS1cհiZ6ٳgߝ:uڰaC\\ )ux1==̙3i?޿7x&\̬7oP".=/XG]P(е 8ED(RƸ~:eT---]]]kkOWc&ttt8N~x4s^O6CxfkhhPX:t(V)LSSlԨQ>>>nii c>sszNlUwJV0Ia^)?ڍSezQz[irȑϞ=ö_4&#!!Al>2?Sd7^eeeoo߾w? 100%X)'kӦMx_Pڬ?P¢byƥY+33iaa!3j]/&&"E UkiҋWJApBNǥ&NYZڵ+((ͭK hqbJBV^iXS56FZh'KiWb&))Y,bj=7xWRRBfE" iJcla .())IIII4ӧO]=z4VUUե1(MԩSG߿?)3_oKnn.%gZ޽{iĉgϞE ;XQA?@S14н~WfI,2:v~Z͛7iFKKK6MťSNpbaabwQ\yg{eM:Q@A^w1%j;OSM=&gIb4hTcT lHea;{%hĂIe}c |7rsεZYY FAF3fڵeɉ/kŖ!P644?~\V2 :G.;N WWצ(2m;w6mHϠxo~_fΜi=[f >͘ɤ_i~J /Z~JKK)Ϥ[ׯg̘yO@M:1<,^xÆ w􈈈9sv ꐒ~>S;)%weI&YRV߾}7m$Hۭ >X~}a̗?dٱcǽ{ҷ'XWWg)JEߞIIIݻwhG!u>ܳgE/:Ç{zzު&xvӧSܹsьy=zO!y,[V\IB?ZTa^jUV!4.?)جy9Mynf7PHHp 34l|?8 <ڸLs]5fҹ6w[3JZ׮]-o=S[nOU*U?~4R Jakkk `Æ +**ZtF|2`*׳ge˖Xb̘1L Zt ">jccc)S?{[U믯]vbxMw߿\\^zm޼J쎨[x d:r9 GDD(ΫI&!}a^]<kߛFZ}-KSϷ11ZERp9'S_4Їt<**H$ՔHHHq\U('eWרE|nzImVGmzaI vo'Cxl?GzJZV}j%-\f%ϊ iN]ll%oNޞ$rD?C %8[\,9MI,J{}j[KGve0vgەRmaO yUR)m\[NmIɧg#|?.Z]8|YŕDznh'q].Y r+\j|:͗dzi]4?RDYJDkOȻy?}bV,%7cR+U+byd QK42M[^9.̭)Â_y5)6Ӧ{:~nj`}Ƿc']4ccr9>yZ5|'džToO+l~lBQQUgfT tBJxN*szg_/X5zctfcj^N]E9tDGݙ% >Day4k/>3󾌏wjf_l7OvR҄ ѻmnjDKnjx7o;nu }'w4{Ñ>QH$2>a[f7&]4ɈN&'iƧ9wWЃ㮌976M.s,/* =-il(yOc'r+s5 KeߞE?:&>]I09ˎV4_DxwtcGs9g [@4-`]YDŽУ [0p6oYXQ7Zt:fñjfWt1޳E5T܁a'VR̶\BWpmB Uα1<Ph4vb,u7>әo^\Xs: ~Nٕlw$aldb,Wd_7M>ҽ]|G6/-R9n!}>[X3ǽ>KN"ZPVwoh4sFA:'s6%祗Ra|js(Rl᯼{MZXֲiR{gh`JaMt>kZR*O+_bG;QFM+uԪ7|\Q*ѱ,מ+; ϭV^.n{@@d҄.>{VG /;if);YQ{@&XlwfQA+߮fFQH٢kc'V҃xVQTm֏g=gl=2Tw?ZWˊs|Os?yy KE{o[ݞS`̯QmK-xwrzOzC+4ωݾM>6HwBHh H,PGTox|K:l`p9ےf'tc9ۓСpalRE5M@ iiif~Gtsm<8\J*((;xtӧTWܾB*y:VѶbx/^媲2KIZjjUU5N,1{b)maxCw1#x:lSUWW;v̎M F`0HxSU(J{z}z'sr {e04\to|gs|ki6ZfFel-1U(d/kt*2"5ZO \c3:KjbF*fxvTmyiȖ39W/UC<5:bJjjr`/z=`ZLܝI\(WD@ꪓ ;!VGKg|,_l/Z3OR.{rˊzaIT')n<= |#ޑ?962<8 }--ҬQi̅c*\`G8bʫmuuJ~JkglKJO Q^qJ|,F^CËwxkީߝ<2ȓZZ9ZKU*9> c3JjTtf7}iPOSkߍ<[[+JPV;RI.LwNkpK;jVδg41nrzqN T4ݞ6-)UhB=CCgu5ǹVc:1mΗTx\vUoıE3ثiNr~mⳄBAKjlJcYxHM9L\FWo$==`P{7_{}:^B^b䢚eO/%y2rI$bJ.+ 8qv87ρlh1RdbkjT h4]|w"~M rW*΍AJg,7d☪պz~b3 S+sH$Zi/K]66"`$Y WßC$3;u m3{kckQTrM&Õͩb$*#j#ّ$[R/ uq83HqͷMbѫn)3K>˶1r,k7p sqau'8i?\l?"4 i5bڽ '.}4.4ZJVLuҊ*1Y3aNğս…1mYU61^TE1Vt {Q/ 5U(wr{%DQPpaNG\+ilbU75ءZ |!;Ė c0IESFe(4jM\Vl!Y෻Pe ) l54 ;5orɭ>|3'Nد_{F[TTyӦ5}'OZ^y[,/*O9jq6εۨǩQFgfl߶򲬴-O/(g]pƌ..VJ945kdd*ʕ];v*UJv Nb(P9sfhwoSM x2@V1r#(r<rR>h4,Z^-Yk_\pmv;00pȐ!r97THG%$D$fggw84`[ֲӧ>%W^O<n4vܕsgҤI%ڵ5|MeeeO6=//lrr_S5OM{j}EEf5U_X9eʊJ*M##s?ߪLql!Cl6j@\\eՍ㙇0~)ͪTcGQaZzz.ÆEm߾RM,EE [UU{K.Qwn= Bl՚5 Ç'M4ovXHTU]ѨmVVzС8NhDoD"+++ִЯ__TyW=|tyxx7Vf-Sk991]vvҥ.fffiiifffiiifгФw/<_K*YEo!ЁLxpM:y$筷}usu -l-5}v}~Yj~}֯;iSܦgcnM%~=vp/[^U,O0ڸ{<2.>Oni3mldY9w)H<=kjjU"»|siweE<=l嶷͍s]t p8>]PLx@lr]cGĔMiVk|J*]?_;;ۚݱA)XzTg/|Gh4.K.j+Viv jߣ}bRXh...:DbGK?hKsڶ-7i^EYZR)D"KQ_r3;Wk-_,1}8zI ʮy/}=8ZesW[O{yA|eTy)6@!pƌTy³yy>|}_s!=odko>ۋ~ٽcTرég{s_]R Դʦ-?ǖO$-#NR4-n{Z3ňeijfNKJ>(\Y.w BC -7UVVNVVVJ2*[*4+\Z}z뵮.{ #ڶec؝Zt?FO釭62ٻ:::[xء۳K*P[-,7D,+?`0]sZYJΝa)d}s0E2777{ʪn2hu7| AQ;;vw-o{%wqrr,/(((lJ6^ }/ge/lySڤgZm*5cOa[VQQyX1dOO>0\jD:?>p԰!o;o-?x8NG2>ާS_zUK6o!;n̨߭OMKm}|E2uאzp;MFO)%|ۖkkJ(+9JJnn@[7_OAVlʹ.5b}<_ɼpãͪ'>|ǍXF,}AzΒE" k/\Duz-ע+6L=ϖvFp(*;֨52\5tpO?_|jz?ow9+{D԰O?UV^v{HÇΝrSg^zB`0Ǽ_~ثW Yʴխ>zR_I:jE?`ȈCsrNoЀ~- ^hUC9cիy]:V7[/get_row( $wpdb->prepare( "SELECT * FROM " . $wpdb->signups . " WHERE activation_key = %s", $key ) ) : $wpdb->get_row( $wpdb->prepare( "SELECT * FROM " . $wpdb->base_prefix . "signups WHERE activation_key = %s", $key ) ) ); if ( empty( $signup ) || $signup->active ) { //bad key or already active } else { //check for password in signup meta $meta = unserialize( $signup->meta ); if ( !empty($meta['user_pass']) ) $password = $meta['user_pass']; } } return apply_filters( 'wppb_generated_random_password', $password, $key ); } add_filter( 'random_password', 'wppb_signup_password_random_password_filter' ); /** * Activate a signup. * * * @param string $key The activation key provided to the user. * @return array An array containing information about the activated user and/or blog */ function wppb_activate_signup( $key ) { global $wpdb; $bloginfo = get_bloginfo( 'name' ); $wppb_general_settings = get_option( 'wppb_general_settings' ); $signup = ( is_multisite() ? $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->signups WHERE activation_key = %s", $key) ) : $wpdb->get_row( $wpdb->prepare( "SELECT * FROM ".$wpdb->base_prefix."signups WHERE activation_key = %s", $key ) ) ); $user_login = ( ( isset( $wppb_general_settings['loginWith'] ) && ( $wppb_general_settings['loginWith'] == 'email' ) ) ? trim( $signup->user_email ) : trim( $signup->user_login ) ); $user_email = esc_sql( $signup->user_email ); /* the password is in hashed form in the signup table so we will add it later */ $password = NULL; $user_id = username_exists( $user_login ); if ( empty( $signup ) ) return apply_filters( 'wppb_register_activate_user_error_message1', '

            '.__( 'Invalid activation key!', 'profile-builder' ).'

            '); if ( $signup->active ) if ( empty( $signup->domain ) ) return apply_filters( 'wppb_register_activate_user_error_message2', '

            '.__( 'This username is now active!', 'profile-builder' ).'

            ', $user_id ); $meta = unserialize( $signup->meta ); if ( !$user_id ) $user_id = wppb_create_user( $user_login, $password, $user_email ); else $user_already_exists = true; if ( ! $user_id ) return apply_filters( 'wppb_register_activate_user_error_message4', '

            '.__('Could not create user!', 'profile-builder').'

            ' ); elseif ( isset( $user_already_exists ) && ( $user_already_exists == true ) ) return apply_filters( 'wppb_register_activate_user_error_message5', '

            '.__( 'This username is already activated!', 'profile-builder' ).'

            ' ); else{ $inserted_user = ( is_multisite() ? $wpdb->update( $wpdb->signups, array( 'active' => 1, 'activated' => current_time( 'mysql', true ) ), array( 'activation_key' => $key ) ) : $wpdb->update( $wpdb->base_prefix.'signups', array( 'active' => 1, 'activated' => current_time( 'mysql', true ) ), array( 'activation_key' => $key ) ) ); wppb_add_meta_to_user_on_activation( $user_id, '', $meta ); // if admin approval is activated, then block the user untill he gets approved $wppb_generalSettings = get_option('wppb_general_settings'); if( wppb_get_admin_approval_option_value() === 'yes' ){ $user_data = get_userdata( $user_id ); if( $wppb_generalSettings != 'not_found' && ! empty( $wppb_generalSettings['adminApprovalOnUserRole'] ) ) { foreach( $user_data->roles as $role ) { if( in_array( $role, $wppb_generalSettings['adminApprovalOnUserRole'] ) ) { wp_set_object_terms( $user_id, array( 'unapproved' ), 'user_status', false); clean_object_term_cache( $user_id, 'user_status' ); } else { add_filter( 'wppb_register_success_message', 'wppb_noAdminApproval_successMessage' ); } } } else { wp_set_object_terms( $user_id, array( 'unapproved' ), 'user_status', false); clean_object_term_cache( $user_id, 'user_status' ); } } if ( !isset( $wppb_generalSettings['adminApproval'] ) ) $wppb_generalSettings['adminApproval'] = 'no'; /* copy the hashed password from signup meta to wp user table */ if( !empty( $meta['user_pass'] ) ){ /* we might still have the base64 encoded password in signups and not the hash */ if( base64_encode(base64_decode($meta['user_pass'], true)) === $meta['user_pass'] ) $meta['user_pass'] = wp_hash_password( $meta['user_pass'] ); $wpdb->update( $wpdb->users, array('user_pass' => $meta['user_pass'] ), array('ID' => $user_id) ); wp_cache_delete( $user_id, 'users' ); } wppb_notify_user_registration_email($bloginfo, $user_login, $user_email, 'sending', $password, wppb_get_admin_approval_option_value() ); do_action( 'wppb_activate_user', $user_id, $password, $meta ); if( $inserted_user ) { // CHECK FOR REDIRECT $redirect_url = wppb_get_redirect_url( 'normal', 'after_success_email_confirmation', '', $user_login ); $redirect_delay = apply_filters( 'wppb_success_email_confirmation_redirect_delay', 3, $user_id ); $redirect_message = wppb_build_redirect( $redirect_url, $redirect_delay, 'after_success_email_confirmation' ); $success_message = apply_filters( 'wppb_success_email_confirmation', '

            ' . __( 'Your email was successfully confirmed.', 'profile-builder' ) . '

            ', $user_id ); $admin_approval_message = apply_filters( 'wppb_email_confirmation_with_admin_approval', '

            ' . __( 'Before you can access your account, an administrator needs to approve it. You will be notified via email.', 'profile-builder' ) . '

            ', $user_id ); $wppb_general_settings = get_option( 'wppb_general_settings', 'false' ); if ( wppb_get_admin_approval_option_value() === 'yes' ){ $user_data = get_userdata( $user_id ); if( $wppb_general_settings != 'not_found' && ! empty( $wppb_general_settings['adminApprovalOnUserRole'] ) ) { foreach( $user_data->roles as $role ) { if( in_array( $role, $wppb_general_settings['adminApprovalOnUserRole'] ) ) { return $success_message . $admin_approval_message . ( ! empty ( $redirect_message ) ? $redirect_message : '' ); } else { wp_set_object_terms( $user_id, NULL, 'user_status' ); clean_object_term_cache( $user_id, 'user_status' ); return $success_message . ( ! empty ( $redirect_message ) ? $redirect_message : '' ); } } } else { return $success_message . $admin_approval_message . ( ! empty ( $redirect_message ) ? $redirect_message : '' ); } } else { wp_set_object_terms( $user_id, NULL, 'user_status' ); clean_object_term_cache( $user_id, 'user_status' ); return $success_message . ( ! empty ( $redirect_message ) ? $redirect_message : '' ); } } else { return apply_filters('wppb_register_failed_user_activation', '

            '. __('There was an error while trying to activate the user.', 'profile-builder') .'

            '); } } } //function to display the registration page function wppb_front_end_register( $atts ){ extract( shortcode_atts( array( 'role' => get_option( 'default_role' ), 'form_name' => 'unspecified', 'redirect_url' => '', 'logout_redirect_url' => '', 'redirect_priority' => 'normal' ), $atts, 'wppb-register' ) ); $form = new Profile_Builder_Form_Creator( array( 'form_type' => 'register', 'form_name' => $form_name, 'role' => ( is_object( get_role( $role ) ) ? $role : get_option( 'default_role' ) ) , 'redirect_url' => $redirect_url, 'logout_redirect_url' => $logout_redirect_url, 'redirect_priority' => $redirect_priority ) ); return $form; } // function to choose whether to display the registration page or the validation message function wppb_front_end_register_handler( $atts ){ return ( isset( $_GET['activation_key'] ) ? wppb_activate_signup ( sanitize_text_field( $_GET['activation_key'] ) ) : wppb_front_end_register( $atts ) ); } add_action( 'user_register', 'wppbc_disable_admin_approval_for_user_role', 99, 1 ); function wppbc_disable_admin_approval_for_user_role( $user_id ) { if ( current_user_can( 'delete_users' ) ) { wp_set_object_terms( $user_id, NULL, 'user_status' ); clean_object_term_cache( $user_id, 'user_status' ); } } /* authors and contributors shouldn't be allowed to create pages with the register shortcode in them */ add_filter( 'the_content', 'wppb_maybe_remove_register_shortcode' ); function wppb_maybe_remove_register_shortcode( $content ){ if ( has_shortcode( $content, 'wppb-register' ) ){ $author_id = get_the_author_meta( 'ID' ); if( !empty( $author_id ) ){ if( !user_can( $author_id, 'edit_others_posts' ) ) { remove_shortcode('wppb-register'); } } } return $content; } /* custom redirect after registration on wp default register form */ function wppb_default_registration_redirect( $user_id ) { $user_data = get_userdata( $user_id ); // CHECK FOR REDIRECT $_POST['redirect_to'] = wppb_get_redirect_url( 'normal', 'after_registration', $_POST['redirect_to'], $user_data ); $_POST['redirect_to'] = apply_filters( 'wppb_after_registration_redirect_url', $_POST['redirect_to'] ); } add_action( 'register_new_user', 'wppb_default_registration_redirect' );front-end/logout.php000066600000003352152141651170010474 0ustar00 sprintf( __('You are currently logged in as %s. ','profile-builder') ,$current_user->user_login) , 'redirect' => '', 'redirect_url' => wppb_curpageurl(), 'redirect_priority' => 'normal', 'link_text' => __('Log out »','profile-builder')), $atts ) ); if( ! empty( $redirect ) ) { $redirect_url = $redirect; } // CHECK FOR REDIRECT $redirect_url = wppb_get_redirect_url( $redirect_priority, 'after_logout', $redirect_url, $current_user ); $redirect_url = apply_filters( 'wppb_after_logout_redirect_url', $redirect_url ); $logout_link = '' . $link_text . ''; $meta_tags = apply_filters( 'wppb_front_end_logout_meta_tags', array( '{{meta_user_name}}', '{{meta_first_name}}', '{{meta_last_name}}', '{{meta_display_name}}' ) ); $meta_tags_values = apply_filters( 'wppb_front_end_logout_meta_tags_values', array( $current_user->user_login, $current_user->first_name, $current_user->last_name, $current_user->display_name ) ); $text = apply_filters( 'wppb_front_end_logout_text', str_replace( $meta_tags, $meta_tags_values, $text ), $current_user ); return '

            ' . $text . '' . $logout_link . '

            '; }front-end/recover.php000066600000054046152141651170010636 0ustar00data->ID, 'user_status' ) ){ $message = ''. __('ERROR', 'profile-builder') . ': ' . __('Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.', 'profile-builder'); $message = apply_filters('wppb_recover_password_unapporved_user', $message); } } return $message; } /** * Function that retrieves the unique user key from the database. If we don't have one we generate one and add it to the database * * @param string $requested_user_login the user login * */ function wppb_retrieve_activation_key( $requested_user_login ){ global $wpdb; $key = $wpdb->get_var( $wpdb->prepare( "SELECT user_activation_key FROM $wpdb->users WHERE user_login = %s", $requested_user_login ) ); if ( empty( $key ) ) { // Generate something random for a key... $key = wp_generate_password( 20, false ); do_action('wppb_retrieve_password_key', $requested_user_login, $key); // Now insert the new md5 key into the db $wpdb->update($wpdb->users, array('user_activation_key' => $key), array('user_login' => $requested_user_login)); } return $key; } /** * Function that creates a generate new password form * * @param array $post_data $_POST * */ function wppb_create_recover_password_form( $user, $post_data ){ ?>
              '. wppb_password_length_text() .' '. wppb_password_strength_description() .'
            • '; /* if we have active the password strength checker */ $recover_inputPassword .= wppb_password_strength_checker_html(); echo apply_filters( 'wppb_recover_password_form_input', $recover_inputPassword, $passw_one, $passw_two, $user->ID ); ?>

            " value="" />

            ID, 'password_recovery_nonce_field2' ); ?>
            ' . __( 'Please enter your email address.', 'profile-builder' ); $username_email_label = __( 'E-mail', 'profile-builder' ); } else{ $recover_notification = '

            ' . __( 'Please enter your username or email address.', 'profile-builder' ); $username_email_label = __( 'Username or E-mail', 'profile-builder' ); } $recover_notification .= '
            '.__( 'You will receive a link to create a new password via email.', 'profile-builder' ).'

            '; echo apply_filters( 'wppb_recover_password_message1', $recover_notification ); $username_email = ( isset( $post_data['username_email'] ) ? $post_data['username_email'] : '' ); $recover_input = '
            '; echo apply_filters( 'wppb_recover_password_generate_password_input', $recover_input, trim( $username_email ) ); ?>

            " value="" />

            user_login; else $display_username_email = $user->user_email; return $display_username_email; } /** * Send the email for the password recovery request * @param $user * @return bool|string|void */ function wppb_send_recovery_email( $user ){ $requested_user_id = $user->ID; $requested_user_login = $user->user_login; $requested_user_email = $user->user_email; //search if there is already an activation key present, if not create one $key = wppb_retrieve_activation_key( $requested_user_login ); $display_username_email = wppb_get_email_display_username($user); //send primary email message $recovery_email_message = sprintf( __('Someone requested that the password be reset for the following account: %1$s
            If this was a mistake, just ignore this email and nothing will happen.
            To reset your password, visit the following link:%2$s', 'profile-builder'), $display_username_email, ''.esc_url( add_query_arg( array( 'key' => $key ), wppb_curpageurl() ) ).'' ); $recovery_email_message = apply_filters( 'wppb_recover_password_message_content_sent_to_user1', $recovery_email_message, $requested_user_id, $requested_user_login, $requested_user_email ); $recovery_email_message_title = sprintf(__('Password Reset from "%1$s"', 'profile-builder'), $blogname = get_option('blogname') ); $recovery_email_message_title = apply_filters('wppb_recover_password_message_title_sent_to_user1', $recovery_email_message_title, $requested_user_login); $recovery_email_from = apply_filters ( 'wppb_recover_password_notification_email_from_field', get_bloginfo( 'name' ) ); $recovery_email_context = 'email_user_recover'; $sent = false; //send mail to the user notifying him of the reset request if (trim($recovery_email_message_title) != '') { $sent = wppb_mail($requested_user_email, $recovery_email_message_title, $recovery_email_message, $recovery_email_from, $recovery_email_context); } return $sent; } /** * Function that sends the successful password reset email to the user * @param $user * @param $new_pass */ function wppb_send_successful_password_reset_email( $user, $new_pass ){ $display_username_email = wppb_get_email_display_username($user); //send secondary mail to the user containing the username and the new password $recovery_email_message = __( 'You have successfully reset your password.', 'profile-builder' ); $recovery_email_message = apply_filters( 'wppb_recover_password_message_content_sent_to_user2', $recovery_email_message, $display_username_email, $new_pass, $user->ID ); $recovery_email_message_title = sprintf( __('Password Successfully Reset for %1$s on "%2$s"', 'profile-builder' ), $display_username_email, $blogname = get_option('blogname') ); $recovery_email_message_title = apply_filters( 'wppb_recover_password_message_title_sent_to_user2', $recovery_email_message_title, $display_username_email ); $recovery_email_from = apply_filters ( 'wppb_recover_password_success_notification_email_from_field', get_bloginfo( 'name' ) ); $recovery_email_context = 'email_user_recover_success'; //send mail to the user notifying him of the reset request if ( trim( $recovery_email_message_title ) != '' ) wppb_mail( $user->user_email, $recovery_email_message_title, $recovery_email_message, $recovery_email_from, $recovery_email_context ); } /** * Function that sends an email to the admin after the password was reset * we disable the feature to send the admin a notification mail but can be still used using filters * @param $user */ function wppb_send_admin_password_reset_email( $user ){ $display_username_email = wppb_get_email_display_username($user); $recovery_admin_email_message = sprintf( __( '%1$s has requested a password change via the password reset feature.
            His/her new password is:%2$s', 'profile-builder' ), $display_username_email, '' ); $recovery_admin_email_message = apply_filters( 'wppb_recover_password_message_content_sent_to_admin', $recovery_admin_email_message, $display_username_email, '', $user->ID ); //we disable the feature to send the admin a notification mail but can be still used using filters $recovery_admin_email_title = ''; $recovery_admin_email_title = apply_filters( 'wppb_recover_password_message_title_sent_to_admin', $recovery_admin_email_title, $display_username_email ); $recovery_email_from = apply_filters ( 'wppb_recover_password_success_notification_email_from_field', get_bloginfo( 'name' ) ); $recovery_admin_email_context = 'email_admin_recover_success'; //send mail to the admin notifying him of of a user with a password reset request if (trim($recovery_admin_email_title) != '') wppb_mail(get_option('admin_email'), $recovery_admin_email_title, $recovery_admin_email_message, $recovery_email_from, $recovery_admin_email_context); } /** * The function for the recover password shortcode * */ function wppb_front_end_password_recovery(){ global $wppb_shortcode_on_front; $wppb_shortcode_on_front = true; $password_email_sent = false; $password_changed_success = false; $output = '
            '; global $wpdb; if( is_user_logged_in() ) return apply_filters( 'wppb_recover_password_already_logged_in', __( 'You are already logged in. You can change your password on the edit profile form.', 'profile-builder' ) ); //Get general settings $wppb_generalSettings = get_option( 'wppb_general_settings' ); // If the user entered an email/username, process the request if ( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action'] ) && $_POST['action'] == 'recover_password' && wp_verify_nonce($_POST['password_recovery_nonce_field'],'verify_true_password_recovery') ) { // filter must be applied on the $_POST variable so that the value returned to the form can be corrected too $username_email = apply_filters( 'wppb_before_processing_email_from_forms', $_POST['username_email'] ); //we get the raw data //check to see if it's an e-mail (and if this is valid/present in the database) or is a username // if we do not have an email in the posted date we try to get the email for that user if( !is_email( $username_email ) ){ /* make sure it is a username */ $username = sanitize_user( $username_email ); if ( username_exists($username) ){ $query = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->users WHERE user_login= %s", $username ) ); if( !empty( $query[0] ) ){ $username_email = $query[0]->user_email; } } else{ $warning = __( 'The username entered wasn\'t found in the database!', 'profile-builder').'
            '.__('Please check that you entered the correct username.', 'profile-builder' ); $warning = apply_filters( 'wppb_recover_password_sent_message4', $warning ); $output .= wppb_password_recovery_warning( $warning, 'wppb_recover_password_displayed_message1' ); } } // we should have an email by this point if ( is_email( $username_email ) ){ if ( email_exists( $username_email ) ){ $warning = wppb_check_for_unapproved_user($username_email, 'user_email'); if ($warning != ''){ $output .= wppb_password_recovery_warning( $warning, 'wppb_recover_password_displayed_message1' ); }else{ $success = sprintf( __( 'Check your e-mail for the confirmation link.', 'profile-builder'), $username_email ); $success = apply_filters( 'wppb_recover_password_sent_message1', $success, $username_email ); $output .= wppb_password_recovery_success( $success, 'wppb_recover_password_displayed_message2' ); //verify e-mail validity $query = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->users WHERE user_email= %s", sanitize_email( $username_email ) ) ); if( !empty( $query[0] ) ){ $user = $query[0]; //send mail to the user notifying him of the reset request $sent = wppb_send_recovery_email( $user ); if ($sent === false){ $warning = ''. __( 'ERROR', 'profile-builder' ) .': ' . sprintf( __( 'There was an error while trying to send the activation link to %1$s!', 'profile-builder' ), $username_email ); $warning = apply_filters( 'wppb_recover_password_sent_message_error_sending', $warning ); wppb_password_recovery_warning( $warning, 'wppb_recover_password_displayed_message1' ); } else $password_email_sent = true; } } }elseif ( !email_exists( $username_email ) ){ $warning = __('The email address entered wasn\'t found in the database!', 'profile-builder').'
            '.__('Please check that you entered the correct email address.', 'profile-builder'); $warning = apply_filters('wppb_recover_password_sent_message2', $warning); $output .= wppb_password_recovery_warning( $warning, 'wppb_recover_password_displayed_message1' ); } } } // If the user used the correct key-code, update his/her password elseif ( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action2'] ) && $_POST['action2'] == 'recover_password2' && wp_verify_nonce( $_POST['password_recovery_nonce_field2'], 'verify_true_password_recovery2_'.absint( $_POST['userData'] ) ) ) { $password_change_message = ''; if( ( !empty( $_POST['passw1'] ) && !empty( $_POST['passw2'] ) ) ){ if( $_POST['passw1'] != $_POST['passw2'] ) { $password_change_message = __('The entered passwords don\'t match!', 'profile-builder'); $output .= wppb_password_recovery_error( $password_change_message, 'wppb_recover_password_password_changed_message2' ); } if( !empty( $wppb_generalSettings['minimum_password_length'] ) || ( isset( $_POST['wppb_password_strength'] ) && !empty( $wppb_generalSettings['minimum_password_strength'] ) ) ){ if( wppb_check_password_length( $_POST['passw1'] ) ){ $password_change_message = sprintf( __( "The password must have the minimum length of %s characters", "profile-builder" ), $wppb_generalSettings['minimum_password_length'] ) . '
            '; $output .= wppb_password_recovery_error( $password_change_message, 'wppb_recover_password_password_changed_message2' ); } if( wppb_check_password_strength() ){ $password_change_message = sprintf( __( "The password must have a minimum strength of %s", "profile-builder" ), wppb_check_password_strength() ); $output .= wppb_password_recovery_error( $password_change_message, 'wppb_recover_password_password_changed_message2' ); } } if( empty($password_change_message) ){ $password_change_message = __( 'Your password has been successfully changed!', 'profile-builder' ); $output .= wppb_password_recovery_success( $password_change_message, 'wppb_recover_password_password_changed_message1' ); $password_changed_success = true; $userID = absint( $_POST['userData'] ); $new_pass = $_POST['passw1']; //update the new password and delete the key do_action( 'wppb_password_reset', $userID, $new_pass ); wp_set_password( $new_pass, $userID ); /* log out of all sessions on password reset */ $sessions = WP_Session_Tokens::get_instance( $userID ); $sessions->destroy_all(); $user_info = get_userdata( $userID ); //send email to user wppb_send_successful_password_reset_email( $user_info, $new_pass ); //send email to admin wppb_send_admin_password_reset_email( $user_info ); // CHECK FOR REDIRECT $redirect_url = wppb_get_redirect_url( 'normal', 'after_success_password_reset', '', sanitize_user( $user_info->user_login ) ); $redirect_delay = apply_filters( 'wppb_success_password_reset_redirect_delay', 3, sanitize_user( $user_info->user_login ) ); $redirect_message = wppb_build_redirect( $redirect_url, $redirect_delay, 'after_success_password_reset' ); if( isset( $redirect_message ) && ! empty( $redirect_message ) ) { $output .= '

            ' . $redirect_message . '

            '; } } } else{ $password_change_message .= __( "The password must not be empty!", "profile-builder" ); $output .= wppb_password_recovery_error( $password_change_message, 'wppb_recover_password_password_changed_message2' ); } } // use this action hook to add extra content before the password recovery form do_action( 'wppb_before_recover_password_fields' ); //this is the part that shows the forms if( isset( $_GET['key'] ) && !empty( $_GET['key'] ) ){ if( !$password_changed_success ) { //get the login name and key and verify if they match the ones in the database $key = sanitize_text_field( $_GET['key'] ); $user = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->users WHERE user_activation_key = %s", $key ) ); if( !empty( $user ) ) { ob_start(); wppb_create_recover_password_form($user, $_POST); $output .= ob_get_contents(); ob_end_clean(); } else { $output .= wppb_password_recovery_error('' . __('ERROR:', 'profile-builder') . '' . __('Invalid key!', 'profile-builder'), 'wppb_recover_password_invalid_key_message'); } } } else{ if( !$password_email_sent ) { ob_start(); wppb_create_generate_password_form($_POST); $output .= ob_get_contents(); ob_end_clean(); } } // use this action hook to add extra content after the password recovery form. do_action( 'wppb_after_recover_password_fields' ); $output .= '
            '; return $output; } /* function for displaying success messages on the recover password page */ function wppb_password_recovery_success( $message, $filter ){ return apply_filters( $filter, '

            '.$message.'

            ', $message ); } /* function for displaying warning messages on the recover password page */ function wppb_password_recovery_warning( $message, $filter ){ return apply_filters( $filter, '

            '.$message.'

            ', $message ); } /* function for displaying error messages on the recover password page */ function wppb_password_recovery_error( $message, $filter ){ return apply_filters( $filter, '

            '.$message.'

            ', $message ); } front-end/class-formbuilder.php000066600000121560152141651170012602 0ustar00 '', 'form_fields' => array(), 'form_name' => '', 'role' => '', //used only for the register-form settings 'redirect_url' => '', 'logout_redirect_url' => '', //used only for the register-form settings 'redirect_priority' => 'normal', 'ID' => null ); public $args; // Constructor method for the class function __construct( $args ) { /* we should stop the execution of the forms if they are in the wp_head hook because it should not be there. SEO plugins can execute shortcodes in the auto generated descriptions */ if( apply_filters( 'wppb_dont_render_form_in_wp_head_hook', true ) ){ global $wp_current_filter; if( !empty( $wp_current_filter ) && is_array( $wp_current_filter ) ){ foreach( $wp_current_filter as $filter ){ if( $filter == 'wp_head' ) return; } } } // Merge the input arguments and the defaults $this->args = wp_parse_args( $args, $this->defaults ); /* set up the ID here if it is a multi form */ if( $this->args['form_name'] != 'unspecified' ){ $this->args['ID'] = Profile_Builder_Form_Creator::wppb_get_form_id_from_form_name( $this->args['form_name'], $this->args['form_type'] ); } global $wppb_shortcode_on_front; $wppb_shortcode_on_front = true; if( empty( $this->args['form_fields'] ) ) $this->args['form_fields'] = apply_filters( 'wppb_change_form_fields', get_option( 'wppb_manage_fields' ), $this->args ); if ( file_exists ( WPPB_PLUGIN_DIR.'/front-end/default-fields/default-fields.php' ) ) require_once( WPPB_PLUGIN_DIR.'/front-end/default-fields/default-fields.php' ); if ( file_exists ( WPPB_PLUGIN_DIR.'/front-end/extra-fields/extra-fields.php' ) ) require_once( WPPB_PLUGIN_DIR.'/front-end/extra-fields/extra-fields.php' ); $this->wppb_retrieve_custom_settings(); if( ( !is_multisite() && current_user_can( 'edit_users' ) ) || ( is_multisite() && current_user_can( 'manage_network' ) ) ) add_action( 'wppb_before_edit_profile_fields', array( 'Profile_Builder_Form_Creator', 'wppb_edit_profile_select_user_to_edit' ) ); //enqueue frontend scripts for forms add_action( 'wp_footer', array( $this, 'wppb_frontend_scripts' ), 9999 ); } /** * @param $form_name The "slug" generated from the current Form Title * @param $form_type the form type of the form: register, edit_profile * @return null */ static function wppb_get_form_id_from_form_name( $form_name, $form_type ){ global $wpdb; if( $form_type == 'edit_profile' ){ $post_type = 'wppb-epf-cpt'; }elseif( $form_type == 'register' ){ $post_type = 'wppb-rf-cpt'; } $all_forms = $wpdb->get_results( " SELECT ID, post_title FROM $wpdb->posts WHERE post_status = 'publish' AND post_type = '$post_type' " ); if( !empty( $all_forms ) ) { foreach ($all_forms as $form) { if( empty( $form->post_title ) ) $form->post_title = '(no title)'; if ($form_name == Wordpress_Creation_Kit_PB::wck_generate_slug($form->post_title)) { return $form->ID; } } } return null; } function wppb_retrieve_custom_settings(){ $this->args['login_after_register'] = apply_filters( 'wppb_automatically_login_after_register', 'No' ); //used only for the register-form settings $this->args['redirect_activated'] = apply_filters( 'wppb_redirect_default_setting', '-' ); $this->args['redirect_url'] = apply_filters( 'wppb_redirect_default_location', ( $this->args['redirect_url'] != '' ) ? $this->args['redirect_url'] : '' ); $this->args['logout_redirect_url'] = apply_filters( 'wppb_logout_redirect_default_location', ( $this->args['logout_redirect_url'] != '' ) ? $this->args['logout_redirect_url'] : '' ); $this->args['redirect_delay'] = apply_filters( 'wppb_redirect_default_duration', 3 ); if ( !is_null( $this->args['ID'] ) ){ $meta_name = ( ( $this->args['form_type'] == 'register' ) ? 'wppb_rf_page_settings' : 'wppb_epf_page_settings' ); $page_settings = get_post_meta( $this->args['ID'], $meta_name, true ); if( !empty( $page_settings[0]['set-role'] ) ){ if( $page_settings[0]['set-role'] == 'default role' ){ $selected_role = trim( get_option( 'default_role' ) ); } else $selected_role = $page_settings[0]['set-role']; } $this->args['role'] = ( isset( $selected_role ) ? $selected_role : $this->args['role'] ); $this->args['login_after_register'] = ( isset( $page_settings[0]['automatically-log-in'] ) ? $page_settings[0]['automatically-log-in'] : $this->args['login_after_register'] ); $this->args['redirect_activated'] = ( isset( $page_settings[0]['redirect'] ) ? $page_settings[0]['redirect'] : $this->args['redirect_activated'] ); $this->args['redirect_url'] = ( ! empty( $page_settings[0]['url'] ) && $this->args['redirect_activated'] == 'Yes' && $this->args['redirect_priority'] != 'top' ? $page_settings[0]['url'] : $this->args['redirect_url'] ); $this->args['redirect_delay'] = ( isset( $page_settings[0]['display-messages'] ) && $this->args['redirect_activated'] == 'Yes' ? $page_settings[0]['display-messages'] : $this->args['redirect_delay'] ); } if( !empty( $this->args['role'] ) ){ $role_in_arg = get_role( $this->args['role'] ); if( !empty( $role_in_arg->capabilities['manage_options'] ) || !empty( $role_in_arg->capabilities['remove_users'] ) ){ if( !current_user_can( 'manage_options' ) || !current_user_can( 'remove_users' ) ){ $this->args['role'] = get_option('default_role'); echo apply_filters( 'wppb_register_pre_form_user_role_message', '

            '.__( '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.', 'profile-builder').'

            ' ); } } } } function wppb_form_logic() { if( $this->args['form_type'] == 'register' ){ $registration = apply_filters ( 'wppb_register_setting_override', true );//used to be get_option( 'users_can_register' ) if ( !is_user_logged_in() ){ if ( !$registration ) echo apply_filters( 'wppb_register_pre_form_message', '

            '.esc_html(__( 'Only an administrator can add new users.', 'profile-builder')).'

            ' ); elseif ( $registration ){ $this->wppb_form_content( apply_filters( 'wppb_register_pre_form_message', '' ) ); } }else{ $current_user_capability = apply_filters ( 'wppb_registration_user_capability', 'create_users' ); if ( current_user_can( $current_user_capability ) && $registration ) $this->wppb_form_content( apply_filters( 'wppb_register_pre_form_message', '

            '.esc_html(__( 'Users can register themselves or you can manually create users here.', 'profile-builder')). '' . '

            ' ) ); elseif ( current_user_can( $current_user_capability ) && !$registration ) $this->wppb_form_content( apply_filters( 'wppb_register_pre_form_message', '

            '.esc_html(__( 'Users cannot currently register themselves, but you can manually create users here.', 'profile-builder')). '' . '

            ' ) ); elseif ( !current_user_can( $current_user_capability ) ){ global $user_ID; $userdata = get_userdata( $user_ID ); $display_name = ( ( $userdata->data->display_name == '' ) ? $userdata->data->user_login : $userdata->data->display_name ); $wppb_general_settings = get_option( 'wppb_general_settings' ); if ( isset( $wppb_general_settings['loginWith'] ) && ( $wppb_general_settings['loginWith'] == 'email' ) ) $display_name = $userdata->data->user_email; if( empty( $this->args['logout_redirect_url'] ) ) { $this->args['logout_redirect_url'] = get_permalink(); } // CHECK FOR REDIRECT $this->args['logout_redirect_url'] = wppb_get_redirect_url( $this->args['redirect_priority'], 'after_logout', $this->args['logout_redirect_url'], $userdata ); $this->args['logout_redirect_url'] = apply_filters( 'wppb_after_logout_redirect_url', $this->args['logout_redirect_url'] ); echo apply_filters( 'wppb_register_pre_form_message', '

            '.sprintf( __( "You are currently logged in as %1s. You don't need another account. %2s", 'profile-builder' ), ''.$display_name.'', ''.__( 'Logout', 'profile-builder' ).' »' ).'

            ', $user_ID ); } } }elseif ( $this->args['form_type'] == 'edit_profile' ){ if ( !is_user_logged_in() ) echo apply_filters( 'wppb_edit_profile_user_not_logged_in_message', '

            '.esc_html(__( 'You must be logged in to edit your profile.', 'profile-builder' )) .'

            ' ); elseif ( is_user_logged_in() ) $this->wppb_form_content( apply_filters( 'wppb_edit_profile_logged_in_user_message', '' ) ); } } // Function used to automatically log in a user after register if that option is set on yes in register form settings function wppb_log_in_user( $redirect, $redirect_old ) { if( is_user_logged_in() ) { return; } $wppb_general_settings = get_option( 'wppb_general_settings' ); if ( isset( $wppb_general_settings['emailConfirmation'] ) && ( $wppb_general_settings['emailConfirmation'] == 'yes' ) ) { return $redirect_old; } /* get user id */ $user = get_user_by( 'email', trim( sanitize_email( $_POST['email'] ) ) ); $nonce = wp_create_nonce( 'autologin-'. $user->ID .'-'. (int)( time() / 60 ) ); if ( wppb_get_admin_approval_option_value() === 'yes' ) { if( !empty( $wppb_general_settings['adminApprovalOnUserRole'] ) ) { foreach ($user->roles as $role) { if ( in_array( $role, $wppb_general_settings['adminApprovalOnUserRole'] ) ) { return $redirect_old; } } } else { return $redirect_old; } } /* define redirect location */ if( $this->args['redirect_activated'] == 'No' ) { if( isset( $_POST['_wp_http_referer'] ) ) { $redirect = esc_url_raw($_POST['_wp_http_referer']); } else { $redirect = home_url(); } } if( empty( $redirect ) ) $redirect = wppb_curpageurl(); $redirect = apply_filters( 'wppb_login_after_reg_redirect_url', $redirect, $this ); $redirect = add_query_arg( array( 'autologin' => 'true', 'uid' => $user->ID, '_wpnonce' => $nonce ), $redirect ); // CHECK FOR REDIRECT if( $this->args['redirect_activated'] == 'No' || ( empty( $this->args['redirect_delay'] ) || $this->args['redirect_delay'] == '0' ) ) { $redirect = wppb_build_redirect( $redirect, 0, 'register', $this->args ); } else { $redirect = wppb_build_redirect( $redirect, $this->args['redirect_delay'], 'register', $this->args ); } return $redirect; } /** * Function to get redirect for Register and Edit Profile forms * * @param string $form_type - type of the form * @param string $redirect_type - type of the redirect * @param string $user - username or user email * @param string $user_role - user Role * * @return string $redirect */ function wppb_get_redirect( $form_type, $redirect_type, $user, $user_role ) { $this->args['redirect_delay'] = apply_filters( 'wppb_'. $form_type .'_redirect_delay', $this->args['redirect_delay'], $user, $this->args ); if( $this->args['redirect_activated'] == '-' ) { $this->args['redirect_url'] = wppb_get_redirect_url( $this->args['redirect_priority'], $redirect_type, $this->args['redirect_url'], $user, $user_role ); $redirect = wppb_build_redirect( $this->args['redirect_url'], $this->args['redirect_delay'], $form_type, $this->args ); } elseif( $this->args['redirect_activated'] == 'Yes' ) { $redirect = wppb_build_redirect( $this->args['redirect_url'], $this->args['redirect_delay'], $form_type, $this->args ); } else { $redirect = ''; } return $redirect; } function wppb_form_content( $message ) { $field_check_errors = array(); ob_start(); if( isset( $_REQUEST['action'] ) && $_REQUEST['form_name'] == $this->args['form_name'] ) { if( ! isset( $_POST[$this->args['form_type'].'_'. $this->args['form_name'] .'_nonce_field'] ) || ! wp_verify_nonce( $_POST[$this->args['form_type'].'_'. $this->args['form_name'] .'_nonce_field'], 'wppb_verify_form_submission' ) ) { echo ''. esc_html(__( 'You are not allowed to do this.', 'profile-builder' )) . ''; return; } $field_check_errors = $this->wppb_test_required_form_values( $_REQUEST ); if( empty( $field_check_errors ) ) { do_action( 'wppb_before_saving_form_values',$_REQUEST, $this->args ); // we only have a $user_id on default registration (no email confirmation, no multisite) $user_id = $this->wppb_save_form_values( $_REQUEST ); if( ( 'POST' == $_SERVER['REQUEST_METHOD'] ) && ( $_POST['action'] == $this->args['form_type'] ) ) { $form_message_tpl_start = apply_filters( 'wppb_form_message_tpl_start', '

            ' ); $form_message_tpl_end = apply_filters( 'wppb_form_message_tpl_end', '

            ' ); if( ! current_user_can( 'manage_options' ) && $this->args['form_type'] != 'edit_profile' && isset( $_POST['custom_field_user_role'] ) ) { $user_role = sanitize_text_field($_POST['custom_field_user_role']); } elseif( ! current_user_can( 'manage_options' ) && $this->args['form_type'] != 'edit_profile' && isset( $this->args['role'] ) ) { $user_role = $this->args['role']; } else { $user_role = NULL; } if( isset( $_POST['username'] ) && ( trim( $_POST['username'] ) != '' ) ) { $account_name = sanitize_user( $_POST['username'] ); } elseif( isset( $_POST['email'] ) && ( trim( $_POST['email'] ) != '' ) ) { $account_name = sanitize_email( $_POST['email'] ); }else{ /* we are in the edit form with no username or email field */ $current_user = wp_get_current_user(); if( !empty( $current_user ) ) $account_name = $current_user->user_login; } if( $this->args['form_type'] == 'register' ) { // ec = email confirmation setting // aa = admin approval setting $wppb_general_settings = get_option( 'wppb_general_settings', 'false' ); if ( $wppb_general_settings ) { if( !empty( $wppb_general_settings['emailConfirmation'] ) && apply_filters( 'wppb_email_confirmation_on_register', $wppb_general_settings['emailConfirmation'], $_POST ) == 'yes' ) $wppb_email_confirmation = $wppb_general_settings['emailConfirmation']; else $wppb_email_confirmation = 'no'; $wppb_admin_approval = wppb_get_admin_approval_option_value(); $account_management_settings = 'ec-' . $wppb_email_confirmation . '_' . 'aa-' . $wppb_admin_approval; } else { $account_management_settings = 'ec-no_aa-no'; } switch( $account_management_settings ) { case 'ec-no_aa-no': $wppb_register_success_message = apply_filters( 'wppb_register_success_message', sprintf( __( "The account %1s has been successfully created!", 'profile-builder' ), $account_name ), $account_name ); break; case 'ec-yes_aa-no': $wppb_register_success_message = apply_filters( 'wppb_register_success_message', sprintf( __( "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.", 'profile-builder' ), $account_name ), $account_name ); break; case 'ec-no_aa-yes': if( current_user_can( 'delete_users' ) ) { $wppb_register_success_message = apply_filters( 'wppb_register_success_message', sprintf( __( "The account %1s has been successfully created!", 'profile-builder' ), $account_name ), $account_name ); } else { $wppb_register_success_message = apply_filters( 'wppb_register_success_message', sprintf( __( "Before you can access your account %1s, an administrator has to approve it. You will be notified via email.", 'profile-builder' ), $account_name ), $account_name ); } break; case 'ec-yes_aa-yes': $wppb_register_success_message = apply_filters( 'wppb_register_success_message', sprintf( __( "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.", 'profile-builder' ), $account_name ), $account_name ); break; } // CHECK FOR REDIRECT $redirect = $this->wppb_get_redirect( 'register', 'after_registration', $account_name, $user_role ); if( $this->args['login_after_register'] == 'Yes' ) { $redirect = $this->wppb_log_in_user( $this->args['redirect_url'], $redirect ); } echo $form_message_tpl_start . $wppb_register_success_message . $form_message_tpl_end . $redirect; //action hook after registration success do_action( 'wppb_register_success', $_REQUEST, $this->args['form_name'], $user_id ); return; } elseif( $this->args['form_type'] == 'edit_profile' ) { // CHECK FOR REDIRECT $redirect = $this->wppb_get_redirect( 'edit_profile', 'after_edit_profile', $account_name, $user_role ); echo $form_message_tpl_start . apply_filters( 'wppb_edit_profile_success_message', esc_html(__( 'Your profile has been successfully updated!', 'profile-builder' )) ) . $form_message_tpl_end . $redirect; //action hook after edit profile success do_action( 'wppb_edit_profile_success', $_REQUEST, $this->args['form_name'], $user_id ); if( apply_filters( 'wppb_no_form_after_profile_update', false ) ) return; } } }else echo $message.apply_filters( 'wppb_general_top_error_message', '

            '.esc_html(__( 'There was an error in the submitted form', 'profile-builder' )).'

            ' ); }else echo $message; // use this action hook to add extra content before the register form do_action( 'wppb_before_'.$this->args['form_type'].'_fields', $this->args['form_name'], $this->args['ID'], $this->args['form_type'] ); $wppb_user_role_class = ''; if( is_user_logged_in() ) { $wppb_user = wp_get_current_user(); if( $wppb_user && isset( $wppb_user->roles ) ) { foreach( $wppb_user->roles as $wppb_user_role ) { $wppb_user_role_class .= ' wppb-user-role-'. $wppb_user_role; } } } else { $wppb_user_role_class = ' wppb-user-logged-out'; } $wppb_user_role_class = apply_filters( 'wppb_user_role_form_class', $wppb_user_role_class ); /* set up form id */ $wppb_form_id = ''; if( $this->args['form_type'] == 'register' ) $wppb_form_id = 'wppb-register-user'; elseif( $this->args['form_type'] == 'edit_profile' ) $wppb_form_id = 'wppb-edit-user'; if( isset($this->args['form_name']) && $this->args['form_name'] != "unspecified" ) $wppb_form_id .= '-' . $this->args['form_name']; /* set up form class */ $wppb_form_class = 'wppb-user-forms'; if( $this->args['form_type'] == 'register' ) $wppb_form_class .= ' wppb-register-user'; elseif( $this->args['form_type'] == 'edit_profile' ) $wppb_form_class .= ' wppb-edit-user'; $wppb_form_class .= $wppb_user_role_class; ?>
            args ); echo apply_filters( 'wppb_before_form_fields', '
              ', $this->args['form_type'], $this->args['ID'] ); echo $this->wppb_output_form_fields( $_REQUEST, $field_check_errors, $this->args['form_fields'] ); echo apply_filters( 'wppb_after_form_fields', '
            ', $this->args['form_type'], $this->args['ID'] ); echo apply_filters( 'wppb_before_send_credentials_checkbox', '
              ', $this->args['form_type'], $this->args['ID'] ); $this->wppb_add_send_credentials_checkbox( $_REQUEST, $this->args['form_type'] ); echo apply_filters( 'wppb_after_send_credentials_checkbox', '
            ', $this->args['form_type'] ); $wppb_form_submit_extra_attr = apply_filters( 'wppb_form_submit_extra_attr', '', $this->args['form_type'], $this->args['ID'] ); ?>

            > args['form_type'] == 'register' ) $button_name = ( current_user_can( 'create_users' ) ? __( 'Add User', 'profile-builder' ) : __( 'Register', 'profile-builder' ) ); elseif( $this->args['form_type'] == 'edit_profile' ) $button_name = __( 'Update', 'profile-builder' ); ?> args ); ?> " value="args['form_type'] .'_button_name', esc_attr( $button_name ), $this->args['form_name'] ); ?>" args['form_type'] );?>/> args ); ?> '; } ?>

            args['form_type'].'_'. $this->args['form_name'] .'_nonce_field' ); ?>
            args['form_type'] .'_fields', $this->args['form_name'], $this->args['ID'], $this->args['form_type'] ); $form_content = ob_get_clean(); echo apply_filters( 'wppb_' . $this->args['form_type'] . '_form_content', $form_content ); } function wppb_output_form_fields( $global_request, $field_check_errors, $form_fields, $called_from = NULL ){ $wppb_generalSettings = get_option( 'wppb_general_settings' ); $output_fields = ''; if( !empty( $form_fields ) ){ $output_fields .= apply_filters( 'wppb_output_before_first_form_field', '', $this->args['ID'], $this->args['form_type'], $form_fields, $called_from ); foreach( $form_fields as $field ){ $error_var = ( ( array_key_exists( $field['id'], $field_check_errors ) ) ? ' wppb-field-error' : '' ); $specific_message = ( ( array_key_exists( $field['id'], $field_check_errors ) ) ? $field_check_errors[$field['id']] : '' ); $display_field = apply_filters( 'wppb_output_display_form_field', true, $field, $this->args['form_type'], $this->args['role'], $this->wppb_get_desired_user_id() ); if( $display_field == false ) continue; $css_class = apply_filters( 'wppb_field_css_class', 'wppb-form-field wppb-'. Wordpress_Creation_Kit_PB::wck_generate_slug( $field['field'] ) .$error_var, $field, $error_var ); $output_fields .= apply_filters( 'wppb_output_before_form_field', '
          • ', $field, $error_var, $this->args['role'] ); $render_field = true; if( wppb_conditional_fields_exists() && isset( $wppb_generalSettings['conditional_fields_ajax'] ) ){ if($wppb_generalSettings['conditional_fields_ajax'] === 'yes' && isset($field['conditional-logic-enabled']) && $field['conditional-logic-enabled'] === 'yes') { $render_field = false; } } if( $render_field ){ $output_fields .= apply_filters('wppb_output_form_field_' . Wordpress_Creation_Kit_PB::wck_generate_slug($field['field']), '', $this->args['form_type'], $field, $this->wppb_get_desired_user_id(), $field_check_errors, $global_request, $this->args['role'], $this); $output_fields .= apply_filters('wppb_output_specific_error_message', $specific_message); } $output_fields .= apply_filters( 'wppb_output_after_form_field', '
          • ', $field, $this->args['ID'], $this->args['form_type'], $called_from ); } $output_fields .= apply_filters( 'wppb_output_after_last_form_field', '', $this->args['ID'], $this->args['form_type'], $called_from ); } return apply_filters( 'wppb_output_fields_filter', $output_fields ); } function wppb_add_send_credentials_checkbox ( $request_data, $form ){ if ( $form == 'edit_profile' ) echo ''; else{ $checkbox = apply_filters( 'wppb_send_credentials_checkbox_logic', '
          • ', $request_data, $form ); $wppb_general_settings = get_option( 'wppb_general_settings' ); echo ( isset( $wppb_general_settings['emailConfirmation'] ) && ( $wppb_general_settings['emailConfirmation'] == 'yes' ) ? '' : $checkbox ); } } function wppb_test_required_form_values( $global_request ){ $output_field_errors = array(); $form_fields = apply_filters( 'wppb_form_fields', $this->args['form_fields'], array( 'global_request' => $global_request, 'context' => 'validate_frontend', 'form_type' => $this->args['form_type'], 'role' => $this->args['role'], 'user_id' => $this->wppb_get_desired_user_id() ) ); if( !empty( $form_fields ) ){ foreach( $form_fields as $field ){ $error_for_field = apply_filters( 'wppb_check_form_field_'.Wordpress_Creation_Kit_PB::wck_generate_slug( $field['field'] ), '', $field, $global_request, $this->args['form_type'], $this->args['role'], $this->wppb_get_desired_user_id() ); if( !empty( $error_for_field ) ) $output_field_errors[$field['id']] = '' . $error_for_field . ''; } } return apply_filters( 'wppb_output_field_errors_filter', $output_field_errors, $this->args['form_fields'], $global_request, $this->args['form_type'] ); } function wppb_save_form_values( $global_request ){ $user_id = $this->wppb_get_desired_user_id(); $userdata = apply_filters( 'wppb_build_userdata', array(), $global_request, $this->args ); $new_user_signup = false; $wppb_general_settings = get_option( 'wppb_general_settings' ); if( $this->args['form_type'] == 'register' ){ $result = $this->wppb_register_user( $global_request, $userdata ); $user_id = $result['user_id']; $userdata = $result['userdata']; $new_user_signup = $result['new_user_signup']; }elseif( $this->args['form_type'] == 'edit_profile' ){ if( isset( $wppb_general_settings['loginWith'] ) && ( $wppb_general_settings['loginWith'] == 'email' ) ){ $user_info = get_userdata( $user_id ); $userdata['user_login'] = $user_info->user_login; } $userdata['ID'] = $this->wppb_get_desired_user_id(); $userdata = wp_unslash( $userdata ); /* if the user changes his password then we can't send it to the wp_update_user() function or the user will be logged out and won't be logged in again because we call wp_update_user() after the headers were sent( in the content as a shortcode ) */ if( isset( $userdata['user_pass'] ) && !empty( $userdata['user_pass'] ) ){ unset($userdata['user_pass']); } if( isset( $userdata['role'] ) && is_array( $userdata['role'] ) ) { $user_data = get_userdata( $user_id ); $user_data->remove_all_caps(); foreach( $userdata['role'] as $role ) { if( $role !== 'administrator' || $role !== 'super-admin' )//make sure this doesn't happen for any reason $user_data->add_role( $role ); } unset( $userdata['role'] ); } wp_update_user( $userdata ); } if( !empty( $this->args['form_fields'] ) && !$new_user_signup ){ foreach( $this->args['form_fields'] as $field ){ if( apply_filters( 'wppb_pre_save_form_field', true, $field, $user_id, $global_request, $this->args['form_type'] ) ) do_action( 'wppb_save_form_field', $field, $user_id, $global_request, $this->args['form_type'] ); } if ( $this->args['form_type'] == 'register' ){ if ( !is_wp_error( $user_id ) ){ $wppb_general_settings = get_option( 'wppb_general_settings' ); if( isset( $global_request['send_credentials_via_email'] ) && ( $global_request['send_credentials_via_email'] == 'sending' ) ) $send_credentials_via_email = 'sending'; else $send_credentials_via_email = ''; wppb_notify_user_registration_email( get_bloginfo( 'name' ), ( isset( $userdata['user_login'] ) ? trim( $userdata['user_login'] ) : trim( $userdata['user_email'] ) ), trim( $userdata['user_email'] ), $send_credentials_via_email, trim( $userdata['user_pass'] ), ( wppb_get_admin_approval_option_value() === 'yes' ? 'yes' : 'no' ) ); } } } return $user_id; } function wppb_register_user( $global_request, $userdata ){ $wppb_module_settings = get_option( 'wppb_module_settings' ); $wppb_general_settings = get_option( 'wppb_general_settings' ); $user_id = null; $new_user_signup = false; if( isset( $wppb_general_settings['loginWith'] ) && ( $wppb_general_settings['loginWith'] == 'email' ) ){ $userdata['user_login'] = apply_filters( 'wppb_generated_random_username', Wordpress_Creation_Kit_PB::wck_generate_slug( trim( $userdata['user_email'] ) ), $userdata['user_email'] ); } /* filter so we can bypass Email Confirmation on register */ $wppb_general_settings['emailConfirmation'] = apply_filters( 'wppb_email_confirmation_on_register', $wppb_general_settings['emailConfirmation'], $global_request ); if ( isset( $wppb_general_settings['emailConfirmation'] ) && ( $wppb_general_settings['emailConfirmation'] == 'yes' ) ){ $new_user_signup = true; $userdata = $this->wppb_add_custom_field_values( $global_request, $userdata, $this->args['form_fields'] ); if( ! isset( $userdata['role'] ) ) { $userdata['role'] = $this->args['role']; } $userdata['user_pass'] = wp_hash_password( $userdata['user_pass'] ); if( is_multisite() ){ /* since version 2.0.7 add this meta so we know on what blog the user registered */ $userdata['registered_for_blog_id'] = get_current_blog_id(); $userdata = wp_unslash( $userdata ); } wppb_signup_user( $userdata['user_login'], $userdata['user_email'], $userdata ); }else{ if( ! isset( $userdata['role'] ) ) { $userdata['role'] = $this->args['role']; } $userdata = wp_unslash( $userdata ); // change User Registered date and time according to timezone selected in WordPress settings $wppb_get_date = wppb_get_register_date(); if( isset( $wppb_get_date ) ) { $userdata['user_registered'] = $wppb_get_date; } // insert user to database $user_id = wp_insert_user( $userdata ); } return array( 'userdata' => $userdata, 'user_id' => $user_id, 'new_user_signup' => $new_user_signup ); } function wppb_add_custom_field_values( $global_request, $meta, $form_properties ){ $form_fields = apply_filters( 'wppb_form_fields', $this->args['form_fields'], array( 'meta' => $meta, 'global_request' => $global_request, 'context' => 'user_signup' ) ); if( !empty( $form_fields ) ){ foreach( $form_fields as $field ){ if( !empty( $field['meta-name'] ) ){ $posted_value = ( !empty( $global_request[$field['meta-name']] ) ? $global_request[$field['meta-name']] : '' ); $meta[$field['meta-name']] = apply_filters( 'wppb_add_to_user_signup_form_field_'.Wordpress_Creation_Kit_PB::wck_generate_slug( $field['field'] ), $posted_value, $field, $global_request ); } } } return apply_filters( 'wppb_add_to_user_signup_form_meta', $meta, $global_request, $this->args['role'] ); } /** * Function that returns the id for the current logged in user or for edit profile forms for administrator it can return the id of a selected user */ function wppb_get_desired_user_id(){ if( $this->args['form_type'] == 'edit_profile' ){ //only admins if( ( !is_multisite() && current_user_can( 'edit_users' ) ) || ( is_multisite() && current_user_can( 'manage_network' ) ) ) { if( isset( $_GET['edit_user'] ) && ! empty( $_GET['edit_user'] ) ){ return absint( $_GET['edit_user'] ); } } } return get_current_user_id(); } static function wppb_edit_profile_select_user_to_edit(){ $display_edit_users_dropdown = apply_filters( 'wppb_display_edit_other_users_dropdown', true ); if( !$display_edit_users_dropdown ) return; /* add a hard cap: if we have more than 5000 users don't display the dropdown for performance considerations */ $user_count = count_users(); if( $user_count['total_users'] > apply_filters( 'wppb_edit_other_users_count_limit', 5000 ) ) return; if( isset( $_GET['edit_user'] ) && ! empty( $_GET['edit_user'] ) ) $selected = absint( $_GET['edit_user'] ); else $selected = get_current_user_id(); $query_args['fields'] = array( 'ID', 'user_login', 'display_name' ); $query_args['role'] = apply_filters( 'wppb_edit_profile_user_dropdown_role', '' ); $users = get_users( apply_filters( 'wppb_edit_other_users_dropdown_query_args', $query_args ) ); if( !empty( $users ) ) { /* turn it in a select2 */ wp_enqueue_script( 'wppb_select2_js', WPPB_PLUGIN_URL .'assets/js/select2/select2.min.js', array( 'jquery' ), PROFILE_BUILDER_VERSION ); wp_enqueue_style( 'wppb_select2_css', WPPB_PLUGIN_URL .'assets/css/select2/select2.min.css', array(), PROFILE_BUILDER_VERSION ); wp_add_inline_script( 'wppb_select2_js', 'jQuery(".wppb-user-to-edit").change(function () {window.location.href = jQuery(this).val(); });jQuery(function(){jQuery(".wppb-user-to-edit").select2(); })' ); ?>

            '. apply_filters( 'wppb_no_users_to_edit_message', __( 'There are no other users to edit', 'profile-builder' ) ) .'

            '; } } function wppb_frontend_scripts(){ wp_enqueue_script( 'wppb_front_end_script', WPPB_PLUGIN_URL.'assets/js/script-front-end.js', array('jquery'), PROFILE_BUILDER_VERSION, true ); wp_print_scripts( 'wppb_front_end_script' ); } /** * Handle toString method * * @since 2.0 * * @return string $html html for the form. */ public function __toString() { try { ob_start(); $this->wppb_form_logic(); $html = ob_get_clean(); return "{$html}"; } catch (Exception $exception) { return __( 'Something went wrong. Please try again!', 'profile-builder'); } } } /* set action for automatic login after registration */ add_action( 'init', 'wppb_autologin_after_registration' ); function wppb_autologin_after_registration(){ if( isset( $_GET['autologin'] ) && isset( $_GET['uid'] ) ){ $uid = absint( $_GET['uid'] ); $nonce = $_REQUEST['_wpnonce']; $arr_params = array( 'autologin', 'uid', '_wpnonce' ); $current_page_url = remove_query_arg( $arr_params, wppb_curpageurl() ); if ( ! ( wp_verify_nonce( $nonce , 'autologin-'.$uid.'-'.(int)( time() / 60 ) ) || wp_verify_nonce( $nonce , 'autologin-'.$uid.'-'.(int)( time() / 60 ) - 1 ) ) ){ wp_redirect( $current_page_url ); exit; } else { wp_set_auth_cookie( $uid ); wp_redirect( $current_page_url ); exit; } } } front-end/default-fields/password/password.php000066600000007161152141651170015561 0ustar00*' : '' ); if ( array_key_exists( $field['id'], $field_check_errors ) ) $error_mark = ''; $extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location ); $output = ' '; if( ! empty( $item_description ) ) $output .= ''. $item_description .' '. wppb_password_length_text() .' '. wppb_password_strength_description() .''; else $output .= ''. wppb_password_length_text() .' '. wppb_password_strength_description() .''; /* if we have active the password strength checker */ $output .= wppb_password_strength_checker_html(); } return apply_filters( 'wppb_'.$form_location.'_password', $output, $form_location, $field, $user_id, $field_check_errors, $request_data ); } add_filter( 'wppb_output_form_field_default-password', 'wppb_password_handler', 10, 6 ); /* handle field validation */ function wppb_check_password_value( $message, $field, $request_data, $form_location ){ if ( $form_location == 'register' ){ if ( ( isset( $request_data['passw1'] ) && ( trim( $request_data['passw1'] ) == '' ) ) && ( $field['required'] == 'Yes' ) ) return wppb_required_field_error($field["field-title"]); elseif ( !isset( $request_data['passw1'] ) && ( $field['required'] == 'Yes' ) ) return wppb_required_field_error($field["field-title"]); } if ( trim( $request_data['passw1'] ) != '' ){ $wppb_generalSettings = get_option( 'wppb_general_settings' ); if( wppb_check_password_length( $request_data['passw1'] ) ) return '
            '. sprintf( __( "The password must have the minimum length of %s characters", "profile-builder" ), $wppb_generalSettings['minimum_password_length'] ); if( wppb_check_password_strength() ){ return '
            ' . sprintf( __( "The password must have a minimum strength of %s", "profile-builder" ), wppb_check_password_strength() ); } } return $message; } add_filter( 'wppb_check_form_field_default-password', 'wppb_check_password_value', 10, 4 ); /* handle field save */ function wppb_userdata_add_password( $userdata, $global_request, $form_args ){ if( wppb_field_exists_in_form( 'Default - Password', $form_args ) ) { if (isset($global_request['passw1']) && (trim($global_request['passw1']) != '')) $userdata['user_pass'] = trim($global_request['passw1']); } return $userdata; } add_filter( 'wppb_build_userdata', 'wppb_userdata_add_password', 10, 3 );front-end/default-fields/password-repeat/password-repeat.php000066600000005506152141651170020316 0ustar00*' : '' ); if ( array_key_exists( $field['id'], $field_check_errors ) ) $error_mark = ''; $extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location ); $output = ' '; if( !empty( $item_description ) ) $output .= ''.$item_description.''; } return apply_filters( 'wppb_'.$form_location.'_repeat_password', $output, $form_location, $field, $user_id, $field_check_errors, $request_data ); } add_filter( 'wppb_output_form_field_default-repeat-password', 'wppb_password_repeat_handler', 10, 6 ); /* handle field validation */ function wppb_check_repeat_password_value( $message, $field, $request_data, $form_location ){ if ( $form_location == 'register' ){ if ( ( isset( $request_data['passw2'] ) && ( trim( $request_data['passw2'] ) == '' ) ) && ( $field['required'] == 'Yes' ) ) return wppb_required_field_error($field["field-title"]); elseif ( !isset( $request_data['passw2'] ) && ( $field['required'] == 'Yes' ) ) return wppb_required_field_error($field["field-title"]); elseif ( isset( $request_data['passw1'] ) && isset( $request_data['passw2'] ) && ( trim( $request_data['passw1'] ) != trim( $request_data['passw2'] ) ) && ( $field['required'] == 'Yes' ) ) return __( "The passwords do not match", "profile-builder" ); }elseif ( $form_location == 'edit_profile' ){ if ( isset( $request_data['passw1'] ) && isset( $request_data['passw2'] ) && ( trim( $request_data['passw1'] ) != trim( $request_data['passw2'] ) ) ) return __( "The passwords do not match", "profile-builder" ); } return $message; } add_filter( 'wppb_check_form_field_default-repeat-password', 'wppb_check_repeat_password_value', 10, 4 );front-end/default-fields/recaptcha/recaptcha.php000066600000072525152141651170015747 0ustar00 $value) { $req .= $key . '=' . urlencode(stripslashes($value)) . '&'; } // Cut the last '&' $req=substr($req, 0, strlen($req)-1); return $req; } /** * Submits an HTTP GET to a reCAPTCHA server * @param string $path * @param array $data */ function _wppb_submitHTTPGet($path, $data) { $req = _wppb_encodeQS($data); $response = wp_remote_get($path . $req); if ( ! is_wp_error( $response )) return $response["body"]; } /** * Gets the challenge HTML (javascript and non-javascript version). * This is called from the browser, and the resulting reCAPTCHA HTML widget * is embedded within the HTML form it was called from. * @param string $pubkey A public key for reCAPTCHA * @param string $error The error given by reCAPTCHA (optional, default is null) * @param boolean $use_ssl Should the request be made over ssl? (optional, default is false) * @return string - The HTML to be embedded in the user's form. */ function wppb_recaptcha_get_html ( $pubkey, $form_name='' ){ global $wppb_recaptcha_forms; // is the counter for the number of forms that have recaptcha so we always have unique ids on the element if( is_null( $wppb_recaptcha_forms ) ) $wppb_recaptcha_forms = 0; $wppb_recaptcha_forms++; $field = wppb_get_recaptcha_field(); if ( empty($pubkey) ) echo $errorMessage = ''. __("To use reCAPTCHA you must get an API key from", "profile-builder"). " https://www.google.com/recaptcha/admin/create

            "; // extra class needed for Invisible reCAPTCHA html $invisible_class = ''; if ( isset($field['recaptcha-type']) && ($field['recaptcha-type'] == 'invisible') ) { $invisible_class = 'wppb-invisible-recaptcha'; } // reCAPTCHA html for all forms and we make sure we have a unique id for v2 return '
            '; } /** * Add reCAPTCHA scripts to both front-end PB forms (with support for multiple forms) as well as Default WP forms */ function wppb_recaptcha_script_footer(){ $field = wppb_get_recaptcha_field(); /* if we do not have a recaptcha field don't do nothing */ if( empty( $field ) ) return; //we don't have jquery on the backend if( current_filter() != 'wp_footer' ) { wp_print_scripts('jquery'); }else if(!wp_script_is('jquery')){ wp_print_scripts('jquery'); } //get site key $pubkey = ''; if( isset( $field['public-key'] ) ) { $pubkey = trim( $field['public-key'] ); } // Check if we have a reCAPTCHA type if ( !isset($field['recaptcha-type']) ) $field['recaptcha-type'] = 'v2' ; /*for invisible recaptcha we have extra parameters and the selector is different. v2 is initialized on the id of the div that must be unique and invisible is on the submit button of the forms that have the div */ if( $field['recaptcha-type'] === 'invisible' ) { $callback_conditions = 'jQuery("input[type=\'submit\']", jQuery( ".wppb-recaptcha-element" ).closest("form") )'; $invisible_parameters = '"callback" : wppbInvisibleRecaptchaOnSubmit,"size": "invisible"'; }else { $callback_conditions = 'jQuery(".wppb-recaptcha-element")'; $invisible_parameters = ''; } echo ''; if( $field['recaptcha-type'] === 'invisible' ) { echo ''; } $lang = '&hl=en'; $locale = get_locale(); if(!empty($locale)) { $locale_parts = explode('_',$locale); $lang = '&hl='.urlencode($locale_parts[0]); } echo ''; } add_action('wp_footer', 'wppb_recaptcha_script_footer', 9999); add_action('login_footer', 'wppb_recaptcha_script_footer'); add_action('register_form', 'wppb_recaptcha_script_footer'); add_action('lost_password', 'wppb_recaptcha_script_footer'); /** * A wppb_ReCaptchaResponse is returned from wppb_recaptcha_check_answer() */ class wppb_ReCaptchaResponse { var $is_valid; } /** * Calls an HTTP POST function to verify if the user's answer was correct * @param string $privkey * @param string $remoteip * @param string $response * @return wppb_ReCaptchaResponse */ function wppb_recaptcha_check_answer ( $privkey, $remoteip, $response ){ if ( $remoteip == null || $remoteip == '' ) echo ''. __("For security reasons, you must pass the remote ip to reCAPTCHA!", "profile-builder") .'

            '; // Discard empty solution submissions if ($response == null || strlen($response) == 0) { $recaptchaResponse = new wppb_ReCaptchaResponse(); if( isset( $_POST['wppb_recaptcha_load_error'] ) && wp_verify_nonce( $_POST['wppb_recaptcha_load_error'], 'wppb_recaptcha_init_error' ) ) $recaptchaResponse->is_valid = true; else $recaptchaResponse->is_valid = false; return $recaptchaResponse; } $getResponse = _wppb_submitHTTPGet( "https://www.google.com/recaptcha/api/siteverify?", array ( 'secret' => $privkey, 'remoteip' => $remoteip, 'response' => $response ) ); $answers = json_decode($getResponse, true); $recaptchaResponse = new wppb_ReCaptchaResponse(); if (trim($answers ['success']) == true) { $recaptchaResponse->is_valid = true; } else { $recaptchaResponse->is_valid = false; } return $recaptchaResponse; } /* the function to display error message on the registration page */ function wppb_validate_captcha_response( $publickey, $privatekey ){ if (isset($_POST['g-recaptcha-response'])){ $recaptcha_response_field = $_POST['g-recaptcha-response']; } else { $recaptcha_response_field = ''; } $resp = wppb_recaptcha_check_answer($privatekey, $_SERVER["REMOTE_ADDR"], $recaptcha_response_field ); if ( !empty( $_POST ) ) return ( ( !$resp->is_valid ) ? false : true ); } /* the function to add reCAPTCHA to the registration form of PB */ function wppb_recaptcha_handler ( $output, $form_location, $field, $user_id, $field_check_errors, $request_data ){ if ( $field['field'] == 'reCAPTCHA' ){ $item_title = apply_filters( 'wppb_'.$form_location.'_recaptcha_custom_field_'.$field['id'].'_item_title', wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_title_translation', $field['field-title'] ) ); $item_description = wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_description_translation', $field['description'] ); wppb_recaptcha_set_default_values(); if ( ($form_location == 'register') && ( isset($field['captcha-pb-forms']) ) && (strpos($field['captcha-pb-forms'],'pb_register') !== false) ) { $error_mark = ( ( $field['required'] == 'Yes' ) ? '*' : '' ); if ( array_key_exists( $field['id'], $field_check_errors ) ) $error_mark = ''; $publickey = trim( $field['public-key'] ); $privatekey = trim( $field['private-key'] ); if ( empty( $publickey ) || empty( $privatekey ) ) return ''.apply_filters( 'wppb_'.$form_location.'_recaptcha_custom_field_'.$field['id'].'_error_message', __("To use reCAPTCHA you must get an API public key from:", "profile-builder"). 'https://www.google.com/recaptcha/admin/create' ).''; if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) { $output = '' . wppb_recaptcha_get_html($publickey, 'pb_register'); if (!empty($item_description)) $output .= '' . $item_description . ''; } else { // html for Invisible reCAPTCHA $output = wppb_recaptcha_get_html($publickey, 'pb_register'); } return $output; } } } add_filter( 'wppb_output_form_field_recaptcha', 'wppb_recaptcha_handler', 10, 6 ); /* handle reCAPTCHA field validation on PB Register form */ function wppb_check_recaptcha_value( $message, $field, $request_data, $form_location ){ if( $field['field'] == 'reCAPTCHA' ){ if ( ( $form_location == 'register' ) && ( isset($field['captcha-pb-forms']) ) && (strpos($field['captcha-pb-forms'],'pb_register') !== false) ) { /* theme my login plugin executes the register_errors hook on the frontend on all pages so on our register forms we might have already a recaptcha response so do not verify it again or it will fail */ global $wppb_recaptcha_response; if (!isset($wppb_recaptcha_response)){ $wppb_recaptcha_response = wppb_validate_captcha_response( trim( $field['public-key'] ), trim( $field['private-key'] ) ); } if ( ( $wppb_recaptcha_response == false ) && ( $field['required'] == 'Yes' ) ){ return wppb_required_field_error($field["field-title"]); } } } return $message; } add_filter( 'wppb_check_form_field_recaptcha', 'wppb_check_recaptcha_value', 10, 4 ); // Get the reCAPTCHA field information function wppb_get_recaptcha_field(){ $wppb_manage_fields = get_option( 'wppb_manage_fields', 'not_found' ); $field = ''; if ( $wppb_manage_fields != 'not_found' ) { foreach ($wppb_manage_fields as $value) { if ($value['field'] == 'reCAPTCHA') $field = $value; } } return $field; } /* Display reCAPTCHA on PB Recover Password form */ function wppb_display_recaptcha_recover_password( $output ){ $field = wppb_get_recaptcha_field(); if ( !empty($field) ) { $publickey = trim($field['public-key']); $item_title = apply_filters('wppb_recover_password_recaptcha_custom_field_' . $field['id'] . '_item_title', wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_title_translation', $field['field-title'])); $item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']); // check where reCAPTCHA should display and add reCAPTCHA html if ( isset($field['captcha-pb-forms']) && ( strpos( $field['captcha-pb-forms'],'pb_recover_password' ) !== false ) ) { if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) { $recaptcha_output = '' . wppb_recaptcha_get_html($publickey, 'pb_recover_password'); if (!empty($item_description)) $recaptcha_output .= '' . $item_description . ''; $output = str_replace('', '
          • ' . $recaptcha_output . '
          • ' . '', $output); } else { // output Invisible reCAPTCHA html $output = str_replace('', '
          • ' . wppb_recaptcha_get_html($publickey, 'pb_recover_password') . '
          • ' . '', $output); } } } return $output; } add_filter('wppb_recover_password_generate_password_input','wppb_display_recaptcha_recover_password'); /* Function that changes the messageNo from the Recover Password form */ function wppb_recaptcha_change_recover_password_message_no($messageNo) { if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'recover_password') { $field = wppb_get_recaptcha_field(); if (!empty($field)) { global $wppb_recaptcha_response; if (!isset($wppb_recaptcha_response)) $wppb_recaptcha_response = wppb_validate_captcha_response( trim( $field['public-key'] ), trim( $field['private-key'] ) ); if ( isset($field['captcha-pb-forms']) && (strpos($field['captcha-pb-forms'], 'pb_recover_password') !== false) ) { if ( ($wppb_recaptcha_response == false ) && ( $field['required'] == 'Yes' ) ) $messageNo = ''; } } } return $messageNo; } add_filter('wppb_recover_password_message_no', 'wppb_recaptcha_change_recover_password_message_no'); /* Function that adds the reCAPTCHA error message on the Recover Password form */ function wppb_recaptcha_recover_password_displayed_message1( $message ) { $field = wppb_get_recaptcha_field(); if ( !empty($field) ){ global $wppb_recaptcha_response; if (!isset($wppb_recaptcha_response)) $wppb_recaptcha_response = wppb_validate_captcha_response( trim( $field['public-key'] ), trim( $field['private-key'] ) ); if ( isset($field['captcha-pb-forms']) && ( strpos( $field['captcha-pb-forms'],'pb_recover_password' ) !== false ) && ( $wppb_recaptcha_response == false )) { // This message is also altered by the plugin-compatibilities.php file, in regards to Captcha plugin ( function wppb_captcha_recover_password_displayed_message1 ) if (($message == '

            wppb_recaptcha_error

            ') || ($message == '

            wppb_captcha_error

            ')) $message = '

            ' . wppb_recaptcha_field_error($field["field-title"]) . '

            '; else $message = $message . '

            ' . wppb_recaptcha_field_error($field["field-title"]) . '

            '; } } return $message; } add_filter('wppb_recover_password_displayed_message1', 'wppb_recaptcha_recover_password_displayed_message1'); /* Function that changes the default success message to wppb_recaptcha_error if the reCAPTCHA doesn't validate so that we can change the message displayed with the wppb_recover_password_displayed_message1 filter */ function wppb_recaptcha_recover_password_sent_message_1($message) { if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'recover_password') { $field = wppb_get_recaptcha_field(); if (!empty($field)) { global $wppb_recaptcha_response; if (!isset($wppb_recaptcha_response)) $wppb_recaptcha_response = wppb_validate_captcha_response( trim( $field['public-key'] ), trim( $field['private-key'] ) ); if ( isset($field['captcha-pb-forms']) && ( strpos($field['captcha-pb-forms'], 'pb_recover_password') !== false ) && ( $wppb_recaptcha_response == false ) ){ $message = 'wppb_recaptcha_error'; } } } return $message; } add_filter('wppb_recover_password_sent_message1', 'wppb_recaptcha_recover_password_sent_message_1'); /* Display reCAPTCHA html on PB Login form */ function wppb_display_recaptcha_login_form($form_part, $args) { if( !isset( $args['form_id'] ) || $args['form_id'] != 'wppb-loginform' ) return $form_part; $field = wppb_get_recaptcha_field(); if ( !empty($field) ) { $item_title = apply_filters('wppb_login_recaptcha_custom_field_' . $field['id'] . '_item_title', wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_title_translation', $field['field-title'])); $item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']); if ( isset($field['captcha-pb-forms']) && ( strpos( $field['captcha-pb-forms'],'pb_login' ) !== false ) ) { // check where reCAPTCHA should display and add reCAPTCHA html if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) { $recaptcha_output = '' . wppb_recaptcha_get_html(trim($field['public-key']), 'pb_login'); if (!empty($item_description)) $recaptcha_output .= '' . $item_description . ''; $form_part .= '
            ' . $recaptcha_output . '
            '; } else { //output Invisible reCAPTCHA html $form_part .= wppb_recaptcha_get_html(trim($field['public-key']), 'pb_login'); } } } return $form_part; } add_filter('login_form_middle', 'wppb_display_recaptcha_login_form', 10, 2); /* Display reCAPTCHA html on default WP Login form */ function wppb_display_recaptcha_wp_login_form(){ $field = wppb_get_recaptcha_field(); if ( !empty($field) ) { $item_title = apply_filters('wppb_login_recaptcha_custom_field_' . $field['id'] . '_item_title', wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_title_translation', $field['field-title'])); $item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']); if ( isset($field['captcha-wp-forms']) && (strpos( $field['captcha-wp-forms'],'default_wp_login' ) !== false) ) { // check where reCAPTCHA should display and add reCAPTCHA html if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) { $recaptcha_output = '' . wppb_recaptcha_get_html(trim($field['public-key'])); if (!empty($item_description)) $recaptcha_output .= '' . $item_description . ''; echo '
            ' . $recaptcha_output . '
            '; } else { // output Invisible reCAPTCHA html echo wppb_recaptcha_get_html( trim($field['public-key'])); } } } } add_action( 'login_form', 'wppb_display_recaptcha_wp_login_form' ); //Show reCAPTCHA error on Login form (both default and PB one) function wppb_recaptcha_login_wp_error_message($user){ //make sure you're on a Login form (WP or PB) if ( isset( $_POST['wp-submit'] ) && !is_wp_error($user) && !isset( $_POST['pms_login'] ) ) { $field = wppb_get_recaptcha_field(); if ( !empty($field) ){ global $wppb_recaptcha_response; if (!isset($wppb_recaptcha_response)) $wppb_recaptcha_response = wppb_validate_captcha_response( trim( $field['public-key'] ), trim( $field['private-key'] ) ); //reCAPTCHA error for displaying on the PB login form if ( isset($_POST['wppb_login']) && ($_POST['wppb_login'] == true) ) { // it's a PB login form, check if we have a reCAPTCHA on it and display error if not valid if ((isset($field['captcha-pb-forms'])) && (strpos($field['captcha-pb-forms'], 'pb_login') !== false) && ($wppb_recaptcha_response == false)) { $user = new WP_Error('wppb_recaptcha_error', __('Please enter a (valid) reCAPTCHA value', 'profile-builder')); remove_filter( 'authenticate', 'wp_authenticate_username_password', 20, 3 ); remove_filter( 'authenticate', 'wp_authenticate_email_password', 20, 3 ); } } else { //reCAPTCHA error for displaying on the default WP login form if (isset($field['captcha-wp-forms']) && (strpos($field['captcha-wp-forms'], 'default_wp_login') !== false) && ($wppb_recaptcha_response == false)) { $user = new WP_Error('wppb_recaptcha_error', __('Please enter a (valid) reCAPTCHA value', 'profile-builder')); remove_filter( 'authenticate', 'wp_authenticate_username_password', 20, 3 ); remove_filter( 'authenticate', 'wp_authenticate_email_password', 20, 3 ); } } } } return $user; } add_filter('authenticate','wppb_recaptcha_login_wp_error_message', 9); // Display reCAPTCHA html on default WP Recover Password form function wppb_display_recaptcha_default_wp_recover_password() { $field = wppb_get_recaptcha_field(); if (!empty($field)) { $publickey = trim($field['public-key']); $item_title = apply_filters('wppb_recover_password_recaptcha_custom_field_' . $field['id'] . '_item_title', wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_title_translation', $field['field-title'])); $item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']); if ( isset($field['captcha-wp-forms']) && (strpos( $field['captcha-wp-forms'], 'default_wp_recover_password') !== false) ) { // check where reCAPTCHA should display and add reCAPTCHA html if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ){ $recaptcha_output = '' . wppb_recaptcha_get_html($publickey); if (!empty($item_description)) $recaptcha_output .= '' . $item_description . ''; echo '
            ' . $recaptcha_output . '
            '; } else { // output Invisible reCAPTCHA html echo wppb_recaptcha_get_html($publickey); } } } } add_action('lostpassword_form','wppb_display_recaptcha_default_wp_recover_password'); // Verify and show reCAPTCHA errors for default WP Recover Password function wppb_verify_recaptcha_default_wp_recover_password(){ // If field 'username or email' is empty - return if( isset( $_REQUEST['user_login'] ) && "" == $_REQUEST['user_login'] ) return; $field = wppb_get_recaptcha_field(); if ( !empty($field) ){ global $wppb_recaptcha_response; if (!isset($wppb_recaptcha_response)) $wppb_recaptcha_response = wppb_validate_captcha_response( trim( $field['public-key'] ), trim( $field['private-key'] ) ); // If reCAPTCHA not entered or incorrect reCAPTCHA answer if ( isset( $_REQUEST['g-recaptcha-response'] ) && ( ( "" == $_REQUEST['g-recaptcha-response'] ) || ( $wppb_recaptcha_response == false ) ) ) { wp_die( __('Please enter a (valid) reCAPTCHA value','profile-builder') . '
            ' . __( "Click the BACK button on your browser, and try again.", 'profile-builder' ) ) ; } } } add_action('lostpassword_post','wppb_verify_recaptcha_default_wp_recover_password'); /* Display reCAPTCHA html on default WP Register form */ function wppb_display_recaptcha_default_wp_register(){ $field = wppb_get_recaptcha_field(); if (!empty($field)) { $publickey = trim($field['public-key']); $item_title = apply_filters('wppb_register_recaptcha_custom_field_' . $field['id'] . '_item_title', wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_title_translation', $field['field-title'])); $item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']); wppb_recaptcha_set_default_values(); if (isset($field['captcha-wp-forms']) && (strpos($field['captcha-wp-forms'], 'default_wp_register') !== false)) { // check where reCAPTCHA should display and add reCAPTCHA html if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) { $recaptcha_output = '' . wppb_recaptcha_get_html($publickey); if (!empty($item_description)) $recaptcha_output .= '' . $item_description . ''; echo '
            ' . $recaptcha_output . '
            '; } else { // output reCAPTCHA html echo wppb_recaptcha_get_html($publickey); } } } } add_action( 'register_form', 'wppb_display_recaptcha_default_wp_register' ); // Verify and show reCAPTCHA errors for default WP Register form function wppb_verify_recaptcha_default_wp_register( $errors ){ $field = wppb_get_recaptcha_field(); if ( !empty($field) ){ global $wppb_recaptcha_response; if (!isset($wppb_recaptcha_response)) $wppb_recaptcha_response = wppb_validate_captcha_response( trim( $field['public-key'] ), trim( $field['private-key'] ) ); // If reCAPTCHA not entered or incorrect reCAPTCHA answer if ( isset( $_REQUEST['g-recaptcha-response'] ) && ( ( "" == $_REQUEST['g-recaptcha-response'] ) || ( $wppb_recaptcha_response == false ) ) ) { $errors->add( 'wppb_recaptcha_error', __('Please enter a (valid) reCAPTCHA value','profile-builder') ); } } return $errors; } add_filter('registration_errors','wppb_verify_recaptcha_default_wp_register'); // set default values in case there's already an existing reCAPTCHA field in Manage fields (when upgrading) function wppb_recaptcha_set_default_values() { $manage_fields = get_option('wppb_manage_fields', 'not_set'); if ($manage_fields != 'not_set') { foreach ($manage_fields as $key => $value) { if ($value['field'] == 'reCAPTCHA') { if ( !isset($value['captcha-pb-forms']) ) $manage_fields[$key]['captcha-pb-forms'] = 'pb_register'; if ( !isset($value['captcha-wp-forms']) ) $manage_fields[$key]['captcha-wp-forms'] = 'default_wp_register'; if ( !isset($value['recaptcha-type']) ) $manage_fields[$key]['recaptcha-type'] = 'v2'; } } update_option('wppb_manage_fields', $manage_fields); } } front-end/default-fields/gdpr-delete/gdpr-delete.php000066600000004711152141651170016443 0ustar00'. wp_kses_post( $item_title ) .' '; $output .= ''.trim( html_entity_decode ( $item_description ) ).''; $delete_url = add_query_arg( array( 'wppb_user' => $edited_user_id, 'wppb_action' => 'wppb_delete_user', 'wppb_nonce' => wp_create_nonce( 'wppb-user-own-account-deletion'), ), home_url()); wp_enqueue_script( 'wppb-gdpr-delete-script', WPPB_PLUGIN_URL.'front-end/default-fields/gdpr-delete/gdpr-delete.js', array('jquery'), PROFILE_BUILDER_VERSION, true ); wp_localize_script('wppb-gdpr-delete-script', 'wppbGdpr', array( 'delete_url' => $delete_url, 'delete_text' => sprintf(__('Type %s to confirm deleting your account and all data associated with it:', 'profile-builder'), 'DELETE' ), 'delete_error_text' => sprintf(__('You did not type %s. Try again!', 'profile-builder'), 'DELETE' ), )); return apply_filters( 'wppb_'.$form_location.'_gdpr_delete_custom_field_'.$field['id'], $output, $form_location, $field, $user_id, $field_check_errors, $request_data ); } } } add_filter( 'wppb_output_form_field_gdpr-delete-button', 'wppb_gdpr_delete_handler', 10, 6 ); front-end/default-fields/gdpr-delete/gdpr-delete.js000066600000000577152141651170016276 0ustar00jQuery(document).ready(function() { jQuery(".wppb-delete-account").on("click", function (e) { e.preventDefault(); var wppbDeleteUser = prompt(wppbGdpr.delete_text); if( wppbDeleteUser === "DELETE" ) { window.location.replace(wppbGdpr.delete_url); } else{ alert( wppbGdpr.delete_error_text ); } }); });front-end/default-fields/user-role/user-role.php000066600000025617152141651170015715 0ustar00roles ) ) { $user_role = $user_data->roles[0]; $user_roles = $user_data->roles; } if( isset( $user_data->allcaps['manage_options'] ) && $user_data->allcaps['manage_options'] == 1 ) { $user_can_manage_options = true; } } $input_value = isset( $request_data['custom_field_user_role'] ) ? $request_data['custom_field_user_role'] : $user_role; $input_value_multiple = isset( $request_data['custom_field_user_role'] ) ? $request_data['custom_field_user_role'] : $user_roles; $item_title = apply_filters( 'wppb_'.$form_location.'_user_role_custom_field_'.$field['id'].'_item_title', wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_title_translation', $field['field-title'] ) ); $item_description = wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_description_translation', $field['description'] ); //get user roles if( !empty( $field['user-roles'] ) ) { global $wp_roles; $available_user_roles = explode( ', ', $field['user-roles'] ); foreach( $available_user_roles as $key => $role_slug ) { if( isset( $wp_roles->roles[$role_slug]['name'] ) ) { $available_user_roles[$key] = array( 'slug' => $role_slug, 'name' => $wp_roles->roles[$role_slug]['name'] ); } else { unset( $available_user_roles[$key] ); } } } $extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location ); if( $form_location == 'register' || ( $form_location == 'edit_profile' && current_user_can('manage_options') && $user_can_manage_options == false ) || ( $show_user_role_on_edit_profile && !current_user_can('manage_options') ) ) { $error_mark = ( ( $field['required'] == 'Yes' ) ? '*' : '' ); if ( array_key_exists( $field['id'], $field_check_errors ) ) $error_mark = ''; $output = ' '; if( $form_location == 'edit_profile' && !$show_user_role_on_edit_profile ) $output .= ''. __( 'Only administrators can see this field on edit profile forms.', 'profile-builder' ) .''; if( !empty( $item_description ) ) $output .= ''.$item_description.''; } elseif( $form_location == 'edit_profile' && current_user_can('manage_options') && $user_can_manage_options == true ) { $output = '

            ' . __( 'As an administrator you cannot change your role.', 'profile-builder' ) . '

            '; $output .= ''; if( !$show_user_role_on_edit_profile ) $output .= ''. __( 'Only administrators can see this field on edit profile forms.', 'profile-builder' ) .''; if( !empty( $item_description ) ) $output .= ''.$item_description.''; } else{ if( !empty( $input_value_multiple ) ){ foreach( $input_value_multiple as $input_value_multi ){ $output .= ''; } } else { $output .= ''; } } return apply_filters( 'wppb_'.$form_location.'_user_role_custom_field_'.$field['id'], $output, $form_location, $field, $user_id, $field_check_errors, $request_data, $input_value, $input_value_multiple ); } } add_filter( 'wppb_output_form_field_select-user-role', 'wppb_user_role_handler', 10, 6 ); /* handle field validation */ function wppb_check_user_role_value( $message, $field, $request_data, $form_location ) { if( $form_location == 'edit_profile' && isset($field['user-roles-on-edit-profile']) && $field['user-roles-on-edit-profile'] === 'yes' ) $show_user_role_on_edit_profile = true; else $show_user_role_on_edit_profile = false; $field['meta-name'] = 'custom_field_user_role'; if( $form_location == 'back_end' ) return $message; if( $form_location == 'edit_profile' && ( ( !current_user_can( 'manage_options' ) && ( isset( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) ) ) && !$show_user_role_on_edit_profile ) ) return __( 'You cannot register this user role', 'profile-builder'); $roles_editor_active = false; $wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' ); if( $wppb_generalSettings != 'not_found' ) { if( ! empty( $wppb_generalSettings['rolesEditor'] ) && ( $wppb_generalSettings['rolesEditor'] == 'yes' ) && $form_location == 'edit_profile' && current_user_can('manage_options') ) { $roles_editor_active = true; } } if( $field['field'] == 'Select (User Role)' ){ if( ( $form_location == 'register' || $show_user_role_on_edit_profile ) && $field['required'] == 'Yes' && current_user_can( 'manage_options' ) === false ) { if( ( isset( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) && ( trim( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) == '' ) ) || !isset( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) ){ return wppb_required_field_error($field["field-title"]); } } if( isset( $field['user-roles'] ) && isset( $request_data['custom_field_user_role'] ) ) { $available_user_roles = explode(', ', $field['user-roles'] ); if( $roles_editor_active && is_array( $request_data['custom_field_user_role'] ) ) { foreach( $request_data['custom_field_user_role'] as $key => $value ) { if( ! in_array( $value, $available_user_roles ) ) { return __( 'You cannot register this user role', 'profile-builder'); } } } else { if( ! in_array( $request_data['custom_field_user_role'], $available_user_roles ) ) { return __( 'You cannot register this user role', 'profile-builder'); } } } } return $message; } add_filter( 'wppb_check_form_field_select-user-role', 'wppb_check_user_role_value', 10, 4 ); /* handle field save */ function wppb_userdata_add_user_role( $userdata, $global_request, $form_args ){ if( wppb_field_exists_in_form( 'Select (User Role)', $form_args ) ) { $roles_editor_active = false; $wppb_generalSettings = get_option('wppb_general_settings', 'not_found'); if ($wppb_generalSettings != 'not_found') { if (!empty($wppb_generalSettings['rolesEditor']) && $wppb_generalSettings['rolesEditor'] === 'yes' && current_user_can('manage_options')) { $roles_editor_active = true; } } if (isset($global_request['custom_field_user_role'])) { if ($roles_editor_active && is_array($global_request['custom_field_user_role'])) { $user_roles = array_map('trim', $global_request['custom_field_user_role']); $user_roles = array_map('sanitize_text_field', $user_roles); //don't allow administrator value. it should never be here but just in case make a hard check if (($key = array_search("administrator", $user_roles)) !== false) { unset($user_roles[$key]); } $userdata['role'] = $user_roles; } else { $role = sanitize_text_field(trim($global_request['custom_field_user_role'])); if( $role !== 'administrator' ) {//don't allow administrator value. it should never be here but just in case make a hard check $userdata['role'] = $role; } } } } return $userdata; } add_filter( 'wppb_build_userdata', 'wppb_userdata_add_user_role', 10, 3 );front-end/default-fields/last-name/last-name.php000066600000005705152141651170015621 0ustar00*' : '' ); if ( array_key_exists( $field['id'], $field_check_errors ) ) $error_mark = ''; $extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location ); $output = ' '; if( !empty( $item_description ) ) $output .= ''. $item_description .''; } return apply_filters( 'wppb_'.$form_location.'_lastname', $output, $form_location, $field, $user_id, $field_check_errors, $request_data ); } add_filter( 'wppb_output_form_field_default-last-name', 'wppb_last_name_handler', 10, 6 ); /* handle field validation */ function wppb_check_last_name_value( $message, $field, $request_data, $form_location ){ if( $field['required'] == 'Yes' ){ if( ( isset( $request_data['last_name'] ) && ( trim( $request_data['last_name'] ) == '' ) ) || !isset( $request_data['last_name'] ) ){ return wppb_required_field_error($field["field-title"]); } } return $message; } add_filter( 'wppb_check_form_field_default-last-name', 'wppb_check_last_name_value', 10, 4 ); /* handle field save */ function wppb_userdata_add_last_name( $userdata, $global_request, $form_args ){ if( wppb_field_exists_in_form( 'Default - Last Name', $form_args ) ) { if (isset($global_request['last_name'])) $userdata['last_name'] = sanitize_text_field(trim($global_request['last_name'])); } return $userdata; } add_filter( 'wppb_build_userdata', 'wppb_userdata_add_last_name', 10, 3 );front-end/default-fields/jabber/jabber.php000066600000005456152141651170014534 0ustar00*' : '' ); if ( array_key_exists( $field['id'], $field_check_errors ) ) $error_mark = ''; $extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location ); $output = ' '; if( !empty( $item_description ) ) $output .= ''. $item_description .''; } return apply_filters( 'wppb_'.$form_location.'_jabber', $output, $form_location, $field, $user_id, $field_check_errors, $request_data ); } add_filter( 'wppb_output_form_field_default-jabber-google-talk', 'wppb_jabber_handler', 10, 6 ); /* handle field validation */ function wppb_check_jabber_value( $message, $field, $request_data, $form_location ){ if( $field['required'] == 'Yes' ){ if( ( isset( $request_data['jabber'] ) && ( trim( $request_data['jabber'] ) == '' ) ) || !isset( $request_data['jabber'] ) ){ return wppb_required_field_error($field["field-title"]); } } return $message; } add_filter( 'wppb_check_form_field_default-jabber-google-talk', 'wppb_check_jabber_value', 10, 4 ); /* handle field save */ function wppb_userdata_add_jabber( $userdata, $global_request ){ if ( isset( $global_request['jabber'] ) ) $userdata['jabber'] = sanitize_text_field( trim( $global_request['jabber'] ) ); return $userdata; } add_filter( 'wppb_build_userdata', 'wppb_userdata_add_jabber', 10, 2 );front-end/default-fields/email/email.php000066600000013577152141651170014243 0ustar00*' : '' ); if ( array_key_exists( $field['id'], $field_check_errors ) ) $error_mark = ''; $extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location ); $output = ' '; if( !empty( $item_description ) ) $output .= ''. $item_description .''; } return apply_filters( 'wppb_'.$form_location.'_email', $output, $form_location, $field, $user_id, $field_check_errors, $request_data ); } add_filter( 'wppb_output_form_field_default-e-mail', 'wppb_email_handler', 10, 6 ); /* handle field validation */ function wppb_check_email_value( $message, $field, $request_data, $form_location ){ global $wpdb; // apply filter to allow stripping slashes if necessary $request_data['email'] = apply_filters( 'wppb_before_processing_email_from_forms', $request_data['email'] ); if ( ( isset( $request_data['email'] ) && ( trim( $request_data['email'] ) == '' ) ) && ( $field['required'] == 'Yes' ) ) return wppb_required_field_error($field["field-title"]); if ( isset( $request_data['email'] ) && !is_email( trim( $request_data['email'] ) ) ){ return __( 'The email you entered is not a valid email address.', 'profile-builder' ); } if ( empty( $request_data['email'] ) ) { return __( 'You must enter a valid email address.', 'profile-builder' ); } $wppb_generalSettings = get_option( 'wppb_general_settings' ); if ( isset( $wppb_generalSettings['emailConfirmation'] ) && ( $wppb_generalSettings['emailConfirmation'] == 'yes' ) ){ $user_signup = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM ".$wpdb->base_prefix."signups WHERE user_email = %s AND active=0", $request_data['email'] ) ); if ( !empty( $user_signup ) ){ if ( $form_location == 'register' ){ return __( 'This email is already reserved to be used soon.', 'profile-builder' ) .'
            '. __( 'Please try a different one!', 'profile-builder' ); } else if ( $form_location == 'edit_profile' ){ $current_user = wp_get_current_user(); if( ! current_user_can( 'edit_users' ) ) { if ( $current_user->user_email != $request_data['email'] ) return __( 'This email is already reserved to be used soon.', 'profile-builder' ) .'
            '. __( 'Please try a different one!', 'profile-builder' ); } } } } $users = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM {$wpdb->users} WHERE user_email = %s", $request_data['email'] ) ); if ( !empty( $users ) ){ if ( $form_location == 'register' ) return __( 'This email is already in use.', 'profile-builder' ) .'
            '. __( 'Please try a different one!', 'profile-builder' ); if ( $form_location == 'edit_profile' ){ $url_parts = parse_url( $_SERVER['HTTP_REFERER'] ); if( isset( $url_parts['query'] ) ) { parse_str( $url_parts['query'], $query ); } if( isset( $_GET['edit_user'] ) && ! empty( $_GET['edit_user'] ) ) { $current_user_id = absint( $_GET['edit_user'] ); } elseif( defined( 'DOING_AJAX' ) && DOING_AJAX && isset( $query['edit_user'] ) && ! empty( $query['edit_user'] ) ) { $current_user_id = $query['edit_user']; } else { $current_user = wp_get_current_user(); $current_user_id = $current_user->ID; } foreach ( $users as $user ) if ( $user->ID != $current_user_id ) return __( 'This email is already in use.', 'profile-builder' ) .'
            '. __( 'Please try a different one!', 'profile-builder' ); } } return $message; } add_filter( 'wppb_check_form_field_default-e-mail', 'wppb_check_email_value', 10, 4 ); /* handle field save */ function wppb_userdata_add_email( $userdata, $global_request, $form_args ){ if( wppb_field_exists_in_form( 'Default - E-mail', $form_args ) ) { // apply filter to allow stripping slashes if necessary if (isset($global_request['email'])) { $global_request['email'] = apply_filters('wppb_before_processing_email_from_forms', $global_request['email']); $userdata['user_email'] = sanitize_text_field(trim($global_request['email'])); } } return $userdata; } add_filter( 'wppb_build_userdata', 'wppb_userdata_add_email', 10, 3 );front-end/default-fields/aim/aim.php000066600000005322152141651170013366 0ustar00*' : '' ); if ( array_key_exists( $field['id'], $field_check_errors ) ) $error_mark = ''; $extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location ); $output = ' '; if( !empty( $item_description ) ) $output .= ''. $item_description .''; } return apply_filters( 'wppb_'.$form_location.'_aim', $output, $form_location, $field, $user_id, $field_check_errors, $request_data ); } add_filter( 'wppb_output_form_field_default-aim', 'wppb_aim_handler', 10, 6 ); /* handle field validation */ function wppb_check_aim_value( $message, $field, $request_data, $form_location ){ if( $field['required'] == 'Yes' ){ if( ( isset( $request_data['aim'] ) && ( trim( $request_data['aim'] ) == '' ) ) || !isset( $request_data['aim'] ) ){ return wppb_required_field_error($field["field-title"]); } } return $message; } add_filter( 'wppb_check_form_field_default-aim', 'wppb_check_aim_value', 10, 4 ); /* handle field save */ function wppb_userdata_add_aim( $userdata, $global_request ){ if ( isset( $global_request['aim'] ) ) $userdata['aim'] = sanitize_text_field ( trim( $global_request['aim'] ) ); return $userdata; } add_filter( 'wppb_build_userdata', 'wppb_userdata_add_aim', 10, 2 );front-end/default-fields/username/username.php000066600000010716152141651170015513 0ustar00*' : '' ); if ( array_key_exists( $field['id'], $field_check_errors ) ) $error_mark = ''; $readonly = ( ( $form_location == 'edit_profile' ) ? ' disabled="disabled"' : '' ); $extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location ); $output = ' '; if( !empty( $item_description ) ) $output .= ''.$item_description.''; } return apply_filters( 'wppb_'.$form_location.'_username', $output, $form_location, $field, $user_id, $field_check_errors, $request_data ); } add_filter( 'wppb_output_form_field_default-username', 'wppb_username_handler', 10, 6 ); /* handle field validation */ function wppb_check_username_value( $message, $field, $request_data, $form_location ){ global $wpdb; if( $field['required'] == 'Yes' ){ if( ( isset( $request_data['username'] ) && ( trim( $request_data['username'] ) == '' ) ) || ( $form_location == 'register' && !isset( $request_data['username'] ) ) ){ return wppb_required_field_error($field["field-title"]); } } if( !empty( $request_data['username'] ) ){ if( $form_location == 'register' ) { if( username_exists($request_data['username'] ) ){ return __('This username already exists.', 'profile-builder') . '
            ' . __('Please try a different one!', 'profile-builder'); } if (!validate_username($request_data['username'])) { return __('This username is invalid because it uses illegal characters.', 'profile-builder') . '
            ' . __('Please enter a valid username.', 'profile-builder'); } } $wppb_generalSettings = get_option('wppb_general_settings'); if ( $wppb_generalSettings['emailConfirmation'] == 'yes' ){ if( is_multisite() && $request_data['username'] != preg_replace( '/\s+/', '', $request_data['username'] ) ){ return __( 'This username is invalid because it uses illegal characters.', 'profile-builder' ) .'
            '. __( 'Please enter a valid username.', 'profile-builder' ); } $userSignup = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM ".$wpdb->prefix."signups WHERE user_login = %s", $request_data['username'] ) ); if ( !empty( $userSignup ) ){ return __( 'This username is already reserved to be used soon.', 'profile-builder') .'
            '. __( 'Please try a different one!', 'profile-builder' ); } } } return $message; } add_filter( 'wppb_check_form_field_default-username', 'wppb_check_username_value', 10, 4 ); /* handle field save */ function wppb_userdata_add_username( $userdata, $global_request, $form_args ){ if( wppb_field_exists_in_form( 'Default - Username', $form_args ) ) { if (isset($global_request['username'])) $userdata['user_login'] = sanitize_user(trim($global_request['username'])); } return $userdata; } add_filter( 'wppb_build_userdata', 'wppb_userdata_add_username', 10, 3 );front-end/default-fields/description/description.php000066600000006211152141651170016716 0ustar00description; } if ( trim( $input_value ) == '' ) $input_value = $field['default-content']; $input_value = ( isset( $request_data['description'] ) ? trim( $request_data['description'] ) : $input_value ); $extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location ); if ( $form_location != 'back_end' ){ $error_mark = ( ( $field['required'] == 'Yes' ) ? '*' : '' ); if ( array_key_exists( $field['id'], $field_check_errors ) ) $error_mark = ''; $output = ' '; if( !empty( $item_description ) ) $output .= ''. $item_description .''; } return apply_filters( 'wppb_'.$form_location.'_description', $output, $form_location, $field, $user_id, $field_check_errors, $request_data ); } add_filter( 'wppb_output_form_field_default-biographical-info', 'wppb_description_handler', 10, 6 ); /* handle field validation */ function wppb_check_description_value( $message, $field, $request_data, $form_location ){ if( $field['required'] == 'Yes' ){ if( ( isset( $request_data['description'] ) && ( trim( $request_data['description'] ) == '' ) ) || !isset( $request_data['description'] ) ){ return wppb_required_field_error($field["field-title"]); } } return $message; } add_filter( 'wppb_check_form_field_default-biographical-info', 'wppb_check_description_value', 10, 4 ); /* handle field save */ function wppb_userdata_add_description( $userdata, $global_request, $form_args ){ if( wppb_field_exists_in_form( 'Default - Biographical Info', $form_args ) ) { if (isset($global_request['description'])) { $description = apply_filters('pre_user_description', trim($global_request['description'])); $userdata['description'] = $description; } } return $userdata; } add_filter( 'wppb_build_userdata', 'wppb_userdata_add_description', 10, 3 );front-end/default-fields/default-fields.php000066600000005576152141651170014755 0ustar00*' : '' ); if ( array_key_exists( $field['id'], $field_check_errors ) ) $error_mark = ''; $extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location ); $output = ' '; if( !empty( $item_description ) ) $output .= ''. $item_description .''; return apply_filters( 'wppb_'.$form_location.'_nickname', $output, $form_location, $field, $user_id, $field_check_errors, $request_data ); } } add_filter( 'wppb_output_form_field_default-nickname', 'wppb_nickname_handler', 10, 6 ); /* handle field validation */ function wppb_check_nickname_value( $message, $field, $request_data, $form_location ){ if( $field['required'] == 'Yes' ){ if( ( isset( $request_data['nickname'] ) && ( trim( $request_data['nickname'] ) == '' ) ) || !isset( $request_data['nickname'] ) ){ return wppb_required_field_error($field["field-title"]); } } return $message; } add_filter( 'wppb_check_form_field_default-nickname', 'wppb_check_nickname_value', 10, 4 ); /* handle field save */ function wppb_userdata_add_nickname( $userdata, $global_request, $form_args ){ if( wppb_field_exists_in_form( 'Default - Nickname', $form_args ) ) { if (isset($global_request['nickname'])) $userdata['nickname'] = sanitize_text_field(trim($global_request['nickname'])); } return $userdata; } add_filter( 'wppb_build_userdata', 'wppb_userdata_add_nickname', 10, 3 );front-end/default-fields/headings/contact-info.php000066600000002051152141651170016214 0ustar00'.$item_title.''.$item_description.''; return apply_filters( 'wppb_'.$form_location.'_default_heading_contact_info_'.$field['id'], $ret_custom_field, $form_location, $field, $user_id, $field_check_errors, $request_data ); } } add_filter( 'wppb_output_form_field_default-contact-info-heading', 'wppb_default_contact_info_handler', 10, 6 ); front-end/default-fields/headings/about-yourself.php000066600000002050152141651170016607 0ustar00'.$item_title.''.$item_description.''; return apply_filters( 'wppb_'.$form_location.'_default_heading_about_yourself_'.$field['id'], $output, $form_location, $field, $user_id, $field_check_errors, $request_data ); } } add_filter( 'wppb_output_form_field_default-about-yourself-heading', 'wppb_default_about_yourself_handler', 10, 6 );front-end/default-fields/headings/name.php000066600000001772152141651170014561 0ustar00'.$item_title.''.$item_description.''; return apply_filters( 'wppb_'.$form_location.'_default_heading_name_'.$field['id'], $ret_custom_field, $form_location, $field, $user_id, $field_check_errors, $request_data ); } } add_filter( 'wppb_output_form_field_default-name-heading', 'wppb_default_name_handler', 10, 6 );front-end/default-fields/first-name/first-name.php000066600000005736152141651170016175 0ustar00*' : '' ); if ( array_key_exists( $field['id'], $field_check_errors ) ) $error_mark = ''; $extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location ); $output = ' '; if( !empty( $item_description ) ) $output .= ''. $item_description .''; } return apply_filters( 'wppb_'.$form_location.'_firstname', $output, $form_location, $field, $user_id, $field_check_errors, $request_data ); } add_filter( 'wppb_output_form_field_default-first-name', 'wppb_first_name_handler', 10, 6 ); /* handle field validation */ function wppb_check_first_name_value( $message, $field, $request_data, $form_location ){ if( $field['required'] == 'Yes' ){ if( ( isset( $request_data['first_name'] ) && ( trim( $request_data['first_name'] ) == '' ) ) || !isset( $request_data['first_name'] ) ){ return wppb_required_field_error($field["field-title"]); } } return $message; } add_filter( 'wppb_check_form_field_default-first-name', 'wppb_check_first_name_value', 10, 4 ); /* handle field save */ function wppb_userdata_add_first_name( $userdata, $global_request, $form_args ){ if( wppb_field_exists_in_form( 'Default - First Name', $form_args ) ) { if ( isset( $global_request['first_name'] ) ) $userdata['first_name'] = sanitize_text_field( trim( $global_request['first_name'] ) ); } return $userdata; } add_filter( 'wppb_build_userdata', 'wppb_userdata_add_first_name', 10, 3 );front-end/default-fields/website/website.php000066600000005620152141651170015157 0ustar00*' : '' ); if ( array_key_exists( $field['id'], $field_check_errors ) ) $error_mark = ''; $extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location ); $output = ' '; if( !empty( $item_description ) ) $output .= ''. $item_description .''; } return apply_filters( 'wppb_'.$form_location.'_website', $output, $form_location, $field, $user_id, $field_check_errors, $request_data ); } add_filter( 'wppb_output_form_field_default-website', 'wppb_website_handler', 10, 6 ); /* handle field validation */ function wppb_check_website_value( $message, $field, $request_data, $form_location ){ if( $field['required'] == 'Yes' ){ if( ( isset( $request_data['website'] ) && ( trim( $request_data['website'] ) == '' ) ) || !isset( $request_data['website'] ) ){ return wppb_required_field_error($field["field-title"]); } } return $message; } add_filter( 'wppb_check_form_field_default-website', 'wppb_check_website_value', 10, 4 ); /* handle field save */ function wppb_userdata_add_website( $userdata, $global_request, $form_args ){ if( wppb_field_exists_in_form( 'Default - Website', $form_args ) ) { if (isset($global_request['website'])) $userdata['user_url'] = esc_url_raw(trim($global_request['website'])); } return $userdata; } add_filter( 'wppb_build_userdata', 'wppb_userdata_add_website', 10, 3 );front-end/default-fields/yim/yim.php000066600000005333152141651170013450 0ustar00*' : '' ); if ( array_key_exists( $field['id'], $field_check_errors ) ) $error_mark = ''; $extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location ); $output = ' '; if( !empty( $item_description ) ) $output .= ''. $item_description .''; } return apply_filters( 'wppb_'.$form_location.'_yim', $output, $form_location, $field, $user_id, $field_check_errors, $request_data ); } add_filter( 'wppb_output_form_field_default-yahoo-im', 'wppb_yim_handler', 10, 6 ); /* handle field validation */ function wppb_check_yim_value( $message, $field, $request_data, $form_location ){ if( $field['required'] == 'Yes' ){ if( ( isset( $request_data['yim'] ) && ( trim( $request_data['yim'] ) == '' ) ) || !isset( $request_data['yim'] ) ){ return wppb_required_field_error($field["field-title"]); } } return $message; } add_filter( 'wppb_check_form_field_default-yahoo-im', 'wppb_check_yim_value', 10, 4 ); /* handle field save */ function wppb_userdata_add_yim( $userdata, $global_request ){ if ( isset( $global_request['yim'] ) ) $userdata['yim'] = sanitize_text_field( trim( $global_request['yim'] ) ); return $userdata; } add_filter( 'wppb_build_userdata', 'wppb_userdata_add_yim', 10, 2 );front-end/default-fields/blog-details/blog-details.php000066600000027576152141651170017005 0ustar00'; $item_description = wppb_icl_t( 'plugin profile-builder-pro', 'default_field_'.$field['id'].'_description_translation', $field['description'] ); $heading = '
          • '.wppb_icl_t('plugin profile-builder-pro', 'custom_field_'.$field['id'].'_title_translation', $field['field-title']).'

            '.$item_description.'
          • '; $output .= apply_filters( 'wppb_blog_details_heading', $heading ); ?> .wppb-blog-details-fields {display:none;} '; } $create_new_site_checkbox = '
          • '; $output .= apply_filters( 'wppb_blog_details_checkbox', $create_new_site_checkbox ); $output .= '
              '; // Site URL $item_description = __( 'Your site url will look like this:
              ', 'profile-builder' ); if ( is_subdomain_install() ) { global $current_site; $subdomain_base = apply_filters( 'wppb_blogs_subdomain_base', preg_replace( '|^www\.|', '', $current_site->domain ) . $current_site->path ); $domain = '"http://'. esc_attr( '.' ) . $subdomain_base; } else { $domain = '"' . esc_url( home_url( '/' ) ) . esc_attr( '' ) . '"'; } $blog_url_input_value = ''; $blog_url_input_value = ( isset( $request_data['wppb_blog_url'] ) ? trim( $request_data['wppb_blog_url'] ) : $blog_url_input_value ); $error_mark = '*'; $extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location ); $error_class = ''; $is_error = wppb_check_individual_blog_fields( 'wppb_blog_url', $request_data, $form_location ); if ($is_error != '') { $error_mark = ''; $error_class = ' wppb-field-error'; } $output .= '
            • '; $output .= ''. $item_description . $domain . ''; $output .= $is_error .'
            • '; // Site title $blog_title_input_value = ''; $blog_title_input_value = ( isset( $request_data['wppb_blog_title'] ) ? trim( $request_data['wppb_blog_title'] ) : $blog_title_input_value ); $error_mark = '*'; $extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location ); $error_class = ''; $is_error = wppb_check_individual_blog_fields( 'wppb_blog_title', $request_data, $form_location ); if ($is_error != '') { $error_mark = ''; $error_class = ' wppb-field-error'; } $output .= '
            • ' . $is_error . '
            • '; // Privacy $blog_privacy_input_value = 'Yes'; $blog_privacy_input_value = ( isset( $request_data['wppb_blog_privacy'] ) ? trim( $request_data['wppb_blog_privacy'] ) : $blog_privacy_input_value ); $error_mark = '*'; $radio_values = array( 'Yes', 'No' ); $error_class = ''; $is_error = wppb_check_individual_blog_fields( 'wppb_blog_privacy', $request_data, $form_location ); if ($is_error != '') { $error_mark = ''; $error_class = ' wppb-field-error'; } $output .= '
            • '; $output .= '
                '; foreach( $radio_values as $key => $value){ $output .= '
              • '. trim( $radio_values[$key] ) .'
              • '; } $output .= '
              ' . $is_error . '
            • '; // end wppb-blog-details-fields $output .= '
            '; $output .= ''; return apply_filters( 'wppb_blog_details_output', $output, $form_location, $field, $user_id, $field_check_errors, $request_data ); } add_filter( 'wppb_output_form_field_default-blog-details', 'wppb_blog_details_handler', 10, 6 ); /* handle field save */ function wppb_create_blog_on_registration( $field, $user_id, $request_data, $form_location ){ if( $form_location == 'register' && $field['field'] == 'Default - Blog Details' && isset( $request_data['wppb_create_new_site_checkbox'] ) && $request_data['wppb_create_new_site_checkbox'] == 'yes' ) { $blog_url = $request_data['wppb_blog_url']; $blog_title = $request_data['wppb_blog_title']; $usermeta['public'] = ( isset( $request_data['wppb_blog_privacy'] ) && 'Yes' == $request_data['wppb_blog_privacy'] ) ? true : false; $blog_details = wpmu_validate_blog_signup( $blog_url, $blog_title ); if ( empty($blog_details['errors']->errors['blogname']) && empty($blog_details['errors']->errors['blog_title'])) { wpmu_create_blog( $blog_details['domain'], $blog_details['path'], $blog_details['blog_title'], $user_id, $usermeta ); } } } add_action( 'wppb_save_form_field', 'wppb_create_blog_on_registration', 10, 4 ); /* handle field validation */ function wppb_check_blog_details_values( $message, $field, $request_data, $form_location ){ if ( isset( $request_data['wppb_create_new_site_checkbox'] ) && $request_data['wppb_create_new_site_checkbox'] == 'yes' ){ $blog_fields_array = wppb_blog_details_fields_array(); foreach ( $blog_fields_array as $blog_field ){ if( ( isset( $request_data[$blog_field] ) && ( trim( $request_data[$blog_field] ) == '' ) ) || !isset( $request_data[$blog_field] ) ){ return wppb_required_field_error($blog_field); } } } return $message; } add_filter( 'wppb_check_form_field_default-blog-details', 'wppb_check_blog_details_values', 10, 4 ); /* Add blog details information to wp_signups table (when Email Confirmation is active) */ function wppb_add_blog_details_to_signup_table( $meta, $global_request, $role ){ if ( isset( $global_request['wppb_create_new_site_checkbox'] ) && $global_request['wppb_create_new_site_checkbox'] == 'yes' ) { $blog_details_fields_array = wppb_blog_details_fields_array(); foreach ($blog_details_fields_array as $blog_field) { $meta[$blog_field] = $global_request[$blog_field]; } } return $meta; } add_filter( 'wppb_add_to_user_signup_form_meta', 'wppb_add_blog_details_to_signup_table',10, 3 ); function wppb_blog_details_fields_array(){ return array( 'wppb_blog_title', 'wppb_blog_url', 'wppb_blog_privacy', 'wppb_create_new_site_checkbox' ); } function wppb_check_individual_blog_fields( $field_key, $request_data, $form_location ){ if ( isset( $request_data['wppb_create_new_site_checkbox'] ) && $request_data['wppb_create_new_site_checkbox'] == 'yes' ) { if ( $field_key == 'wppb_blog_privacy' && ( ! isset( $request_data[$field_key] ) || ( isset( $request_data[$field_key] ) && ( trim( $request_data[$field_key] ) == '' ) ) ) ) { return '' . wppb_required_field_error($field_key) . ''; } $wp_error = wpmu_validate_blog_signup($request_data['wppb_blog_url'], $request_data['wppb_blog_title']); if ( $field_key == 'wppb_blog_url' && !empty($wp_error['errors']->errors['blogname'])){ return '' . $wp_error['errors']->errors['blogname'][0] . ''; } if ( $field_key == 'wppb_blog_title' && !empty($wp_error['errors']->errors['blog_title'])){ return '' . $wp_error['errors']->errors['blog_title'][0] . ''; } } return ''; } front-end/default-fields/display-name/display-name.php000066600000010077152141651170017023 0ustar00*' : '' ); if ( array_key_exists( $field['id'], $field_check_errors ) ) $error_mark = ''; /* * Create the options for the display_name drop-down * They are created same as in user-edit.php of the WordPress core */ $user_data = get_userdata( $user_id ); $public_display = array(); $public_display['display_nickname'] = $user_data->nickname; $public_display['display_username'] = $user_data->user_login; if ( !empty($user_data->first_name) ) $public_display['display_firstname'] = $user_data->first_name; if ( !empty($user_data->last_name) ) $public_display['display_lastname'] = $user_data->last_name; if ( !empty($user_data->first_name) && !empty($user_data->last_name) ) { $public_display['display_firstlast'] = $user_data->first_name . ' ' . $user_data->last_name; $public_display['display_lastfirst'] = $user_data->last_name . ' ' . $user_data->first_name; } if ( !in_array( $user_data->display_name, $public_display ) ) // Only add this if it isn't duplicated elsewhere $public_display = array( 'display_displayname' => $user_data->display_name ) + $public_display; $public_display = array_map( 'trim', $public_display ); $public_display = array_unique( $public_display ); $output = ''; $output .= ''; if( !empty( $item_description ) ) $output .= ''. $item_description .''; } return apply_filters( 'wppb_'.$form_location.'_display-name', $output, $form_location, $field, $user_id, $field_check_errors, $request_data ); } add_filter( 'wppb_output_form_field_default-display-name-publicly-as', 'wppb_display_name_handler', 10, 6 ); /* handle field validation */ function wppb_check_display_name_value( $message, $field, $request_data, $form_location ){ if( $form_location != 'register' ){ if ($field['required'] == 'Yes') { if ((isset($request_data['display_name']) && (trim($request_data['display_name']) == '')) || !isset($request_data['display_name'])) { return wppb_required_field_error($field["field-title"]); } } } return $message; } add_filter( 'wppb_check_form_field_default-display-name-publicly-as', 'wppb_check_display_name_value', 10, 4 ); /* handle field save */ function wppb_userdata_add_display_name( $userdata, $global_request, $form_args ){ if( wppb_field_exists_in_form( 'Default - Display name publicly as', $form_args ) ) { if (isset($global_request['display_name'])) $userdata['display_name'] = trim(sanitize_text_field($global_request['display_name'])); } return $userdata; } add_filter( 'wppb_build_userdata', 'wppb_userdata_add_display_name', 10, 3 );front-end/default-fields/gdpr/gdpr.php000066600000010045152141651170013740 0ustar00*' : '' ); if ( array_key_exists( $field['id'], $field_check_errors ) ) $error_mark = ''; $extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location ); $output = '
            Focused
            Content
            Statusbar text.
            Statusbar
            Content
            Statusbar text.
            Statusbar, Resizable
            Content
            Statusbar text.
            Resizable, Maximizable
            Content
            Statusbar text.
            Blurred, Maximizable, Statusbar, Resizable
            Content
            Statusbar text.
            Maximized, Maximizable, Minimizable
            Content
            Statusbar text.
            Blured
            Content
            Statusbar text.
            Alert
            This is a very long error message. This is a very long error message. This is a very long error message. This is a very long error message. This is a very long error message. This is a very long error message. This is a very long error message. This is a very long error message. This is a very long error message. This is a very long error message. This is a very long error message. This is a very long error message.
            Ok
            Confirm
            This is a very long error message. This is a very long error message. This is a very long error message. This is a very long error message. This is a very long error message. This is a very long error message. This is a very long error message. This is a very long error message. This is a very long error message. This is a very long error message. This is a very long error message. This is a very long error message.
            Ok Cancel