Version Description
- Implemented Content Restriction feature
- Added nonce field on Profile Builder login form for security check
- Security improvements on login form
- Fixed an issue with po file-names that was causing random issues with different environments/FTP clients.
- Fixed a redirect loop when we log in from Paid Member Subscribtions and we had a redirect for default WordPress login
- Changed the locale for the Slovenian translation files. It was using the locale for Sierra Leone.
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 2.6.9 |
Comparing to | |
See all releases |
Code changes from version 2.6.8 to 2.6.9
- admin/general-settings.php +20 -1
- assets/js/jquery-email-confirmation.js +14 -0
- features/content-restriction/assets/css/content-restriction.css +74 -0
- features/content-restriction/assets/js/content-restriction.js +48 -0
- features/content-restriction/content-restriction-filtering.php +193 -0
- features/content-restriction/content-restriction-functions.php +218 -0
- features/content-restriction/content-restriction-meta-box.php +200 -0
- features/content-restriction/content-restriction.php +130 -0
- features/functions.php +1 -0
- front-end/class-formbuilder.php +1 -1
- front-end/login.php +31 -3
- front-end/register.php +13 -1
- index.php +3 -2
- readme.txt +13 -4
- translation/profile-builder-sl_SI.mo +0 -0
- translation/profile-builder-sl_SI.po +5598 -0
admin/general-settings.php
CHANGED
@@ -13,7 +13,7 @@ add_action( 'admin_menu', 'wppb_register_general_settings_submenu_page', 3 );
|
|
13 |
|
14 |
|
15 |
function wppb_generate_default_settings_defaults(){
|
16 |
-
add_option( 'wppb_general_settings', array( 'extraFieldsLayout' => 'default', 'emailConfirmation' => 'no', 'activationLandingPage' => '', 'adminApproval' => 'no', 'loginWith' => 'usernameemail', 'rolesEditor' => 'no' ) );
|
17 |
}
|
18 |
|
19 |
|
@@ -157,6 +157,25 @@ function wppb_general_settings_content() {
|
|
157 |
</tr>
|
158 |
<?php } ?>
|
159 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
<?php
|
161 |
if ( PROFILE_BUILDER == 'Profile Builder Free' ) {
|
162 |
?>
|
13 |
|
14 |
|
15 |
function wppb_generate_default_settings_defaults(){
|
16 |
+
add_option( 'wppb_general_settings', array( 'extraFieldsLayout' => 'default', 'emailConfirmation' => 'no', 'activationLandingPage' => '', 'adminApproval' => 'no', 'loginWith' => 'usernameemail', 'rolesEditor' => 'no', 'contentRestriction' => 'no' ) );
|
17 |
}
|
18 |
|
19 |
|
157 |
</tr>
|
158 |
<?php } ?>
|
159 |
|
160 |
+
<?php
|
161 |
+
if( file_exists( WPPB_PLUGIN_DIR.'/features/content-restriction/content-restriction.php' ) ) {
|
162 |
+
?>
|
163 |
+
<tr>
|
164 |
+
<th scope="row">
|
165 |
+
<?php _e( '"Content Restriction" Activated:', 'profile-builder' ); ?>
|
166 |
+
</th>
|
167 |
+
<td>
|
168 |
+
<select id="contentRestrictionSelect" name="wppb_general_settings[contentRestriction]" class="wppb-select" onchange="wppb_display_page_select_cr(this.value)">
|
169 |
+
<option value="no" <?php if( !empty( $wppb_generalSettings['contentRestriction'] ) && $wppb_generalSettings['contentRestriction'] == 'no' ) echo 'selected'; ?>><?php _e( 'No', 'profile-builder' ); ?></option>
|
170 |
+
<option value="yes" <?php if( !empty( $wppb_generalSettings['contentRestriction'] ) && $wppb_generalSettings['contentRestriction'] == 'yes' ) echo 'selected'; ?>><?php _e( 'Yes', 'profile-builder' ); ?></option>
|
171 |
+
</select>
|
172 |
+
<ul>
|
173 |
+
<li class="description dynamic4"><?php printf( __( 'Set your settings at %1$sProfile Builder > Content Restriction%2$s and use each page / post / custom post type individual meta-box to restrict content.', 'profile-builder' ), '<a href="'.get_bloginfo( 'url' ).'/wp-admin/admin.php?page=profile-builder-content_restriction">', '</a>' )?></li>
|
174 |
+
<ul>
|
175 |
+
</td>
|
176 |
+
</tr>
|
177 |
+
<?php } ?>
|
178 |
+
|
179 |
<?php
|
180 |
if ( PROFILE_BUILDER == 'Profile Builder Free' ) {
|
181 |
?>
|
assets/js/jquery-email-confirmation.js
CHANGED
@@ -26,6 +26,14 @@ function wppb_display_page_select_re( value ){
|
|
26 |
jQuery ( '.dynamic3' ).hide();
|
27 |
}
|
28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
jQuery(function() {
|
31 |
if ( ( jQuery( '#wppb_settings_email_confirmation' ).val() == 'yes' ) || ( jQuery( '#wppb_general_settings_hidden' ).val() == 'multisite' ) ){
|
@@ -50,4 +58,10 @@ jQuery(function() {
|
|
50 |
|
51 |
else
|
52 |
jQuery ( '.dynamic3' ).hide();
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
});
|
26 |
jQuery ( '.dynamic3' ).hide();
|
27 |
}
|
28 |
|
29 |
+
function wppb_display_page_select_cr( value ){
|
30 |
+
if ( value == 'yes' )
|
31 |
+
jQuery ( '.dynamic4' ).show();
|
32 |
+
|
33 |
+
else
|
34 |
+
jQuery ( '.dynamic4' ).hide();
|
35 |
+
}
|
36 |
+
|
37 |
|
38 |
jQuery(function() {
|
39 |
if ( ( jQuery( '#wppb_settings_email_confirmation' ).val() == 'yes' ) || ( jQuery( '#wppb_general_settings_hidden' ).val() == 'multisite' ) ){
|
58 |
|
59 |
else
|
60 |
jQuery ( '.dynamic3' ).hide();
|
61 |
+
|
62 |
+
if ( jQuery( '#contentRestrictionSelect' ).val() == 'yes' )
|
63 |
+
jQuery ( '.dynamic4' ).show();
|
64 |
+
|
65 |
+
else
|
66 |
+
jQuery ( '.dynamic4' ).hide();
|
67 |
});
|
features/content-restriction/assets/css/content-restriction.css
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.wppb-content-restriction-wrap form {
|
2 |
+
margin-top: 40px;
|
3 |
+
max-width: 900px;
|
4 |
+
}
|
5 |
+
|
6 |
+
#wppb-settings-content-restriction .wppb-restriction-fields-group {
|
7 |
+
margin-bottom: 40px;
|
8 |
+
}
|
9 |
+
|
10 |
+
#wppb-settings-content-restriction .wppb-restriction-label {
|
11 |
+
display: inline-block;
|
12 |
+
vertical-align: top;
|
13 |
+
margin: 0 20px 10px 0;
|
14 |
+
width: 140px;
|
15 |
+
font-weight: bold;
|
16 |
+
}
|
17 |
+
|
18 |
+
#wppb-settings-content-restriction .wppb-restriction-type label {
|
19 |
+
margin-right: 15px;
|
20 |
+
}
|
21 |
+
|
22 |
+
#wppb-settings-content-restriction input {
|
23 |
+
max-width: 360px;
|
24 |
+
}
|
25 |
+
|
26 |
+
#wppb-settings-content-restriction .wppb-restriction-type,
|
27 |
+
#wppb-settings-content-restriction #wp-message_logged_out-wrap,
|
28 |
+
#wppb-settings-content-restriction #wp-message_logged_in-wrap,
|
29 |
+
#wppb-settings-content-restriction .wppb-restriction-post-preview {
|
30 |
+
display: inline-block;
|
31 |
+
width: 80%;
|
32 |
+
}
|
33 |
+
|
34 |
+
#wppb-settings-content-restriction .description {
|
35 |
+
margin-top: 10px;
|
36 |
+
}
|
37 |
+
|
38 |
+
#wppb-meta-box-fields-wrapper-restriction-redirect-url,
|
39 |
+
.wppb-meta-box-field-wrapper-custom-redirect-url,
|
40 |
+
.wppb-meta-box-field-wrapper-custom-messages {
|
41 |
+
display: none;
|
42 |
+
}
|
43 |
+
|
44 |
+
#wppb-meta-box-fields-wrapper-restriction-redirect-url.wppb-content-restriction-enabled,
|
45 |
+
.wppb-meta-box-field-wrapper-custom-redirect-url.wppb-content-restriction-enabled,
|
46 |
+
.wppb-meta-box-field-wrapper-custom-messages.wppb-content-restriction-enabled {
|
47 |
+
display: block;
|
48 |
+
}
|
49 |
+
|
50 |
+
.wppb-meta-box-field-wrapper {
|
51 |
+
position: relative;
|
52 |
+
padding-left: 210px;
|
53 |
+
margin: 25px 0;
|
54 |
+
}
|
55 |
+
|
56 |
+
.wppb-meta-box-fields-wrapper h4 {
|
57 |
+
background: #f1f1f1;
|
58 |
+
padding: 10px 7px;
|
59 |
+
margin: 0 -7px;
|
60 |
+
}
|
61 |
+
|
62 |
+
.wppb-meta-box-field-wrapper label {
|
63 |
+
display: inline-block;
|
64 |
+
margin-right: 10px;
|
65 |
+
}
|
66 |
+
|
67 |
+
.wppb-meta-box-field-wrapper .wppb-meta-box-field-label {
|
68 |
+
font-weight: bold;
|
69 |
+
width: 200px;
|
70 |
+
position: absolute;
|
71 |
+
display: block;
|
72 |
+
top: 0;
|
73 |
+
left: 0;
|
74 |
+
}
|
features/content-restriction/assets/js/content-restriction.js
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery( function(){
|
2 |
+
|
3 |
+
/* Display custom redirect URL section if type of restriction is "Redirect" */
|
4 |
+
jQuery( 'input[type=radio][name=wppb-content-restrict-type]' ).click( function() {
|
5 |
+
if( jQuery( this ).is(':checked') && jQuery( this ).val() == 'redirect' )
|
6 |
+
jQuery( '#wppb-meta-box-fields-wrapper-restriction-redirect-url' ).addClass( 'wppb-content-restriction-enabled' );
|
7 |
+
else
|
8 |
+
jQuery( '#wppb-meta-box-fields-wrapper-restriction-redirect-url' ).removeClass( 'wppb-content-restriction-enabled' );
|
9 |
+
} );
|
10 |
+
|
11 |
+
/* Display custom redirect URL field */
|
12 |
+
jQuery( '#wppb-content-restrict-custom-redirect-url-enabled' ).click( function() {
|
13 |
+
if( jQuery( this ).is( ':checked' ) )
|
14 |
+
jQuery( '.wppb-meta-box-field-wrapper-custom-redirect-url' ).addClass( 'wppb-content-restriction-enabled' );
|
15 |
+
else
|
16 |
+
jQuery( '.wppb-meta-box-field-wrapper-custom-redirect-url' ).removeClass( 'wppb-content-restriction-enabled' );
|
17 |
+
} );
|
18 |
+
|
19 |
+
/* Display custom messages editors */
|
20 |
+
jQuery( '#wppb-content-restrict-messages-enabled' ).click( function() {
|
21 |
+
if( jQuery( this ).is( ':checked' ) )
|
22 |
+
jQuery( '.wppb-meta-box-field-wrapper-custom-messages' ).addClass( 'wppb-content-restriction-enabled' );
|
23 |
+
else
|
24 |
+
jQuery( '.wppb-meta-box-field-wrapper-custom-messages' ).removeClass( 'wppb-content-restriction-enabled' );
|
25 |
+
} );
|
26 |
+
|
27 |
+
|
28 |
+
/* Disable / Enable the user roles from the "Display for" field if the "Logged in Users" option is checked or not */
|
29 |
+
jQuery( document ).on( 'ready click', 'input[name="wppb-content-restrict-user-status"]', function() {
|
30 |
+
wppb_disable_enable_user_roles( jQuery( this ) );
|
31 |
+
} );
|
32 |
+
|
33 |
+
jQuery( 'input[name="wppb-content-restrict-user-status"]' ).each( function() {
|
34 |
+
wppb_disable_enable_user_roles( jQuery( this ) );
|
35 |
+
} );
|
36 |
+
|
37 |
+
|
38 |
+
function wppb_disable_enable_user_roles( $element ) {
|
39 |
+
$wrapper = $element.closest( '.wppb-meta-box-field-wrapper' );
|
40 |
+
|
41 |
+
if( $element.is( ':checked' ) ) {
|
42 |
+
$wrapper.find( 'input[name="wppb-content-restrict-user-role[]"]' ).attr( 'disabled', false );
|
43 |
+
} else {
|
44 |
+
$wrapper.find( 'input[name="wppb-content-restrict-user-role[]"]' ).attr( 'disabled', true );
|
45 |
+
}
|
46 |
+
}
|
47 |
+
|
48 |
+
} );
|
features/content-restriction/content-restriction-filtering.php
ADDED
@@ -0,0 +1,193 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/* Hijack the content when restrictions are set on a single post */
|
4 |
+
function wppb_content_restriction_filter_content( $content, $post = null ) {
|
5 |
+
|
6 |
+
global $user_ID, $wppb_show_content, $pms_show_content;
|
7 |
+
|
8 |
+
if( is_null( $post ) ) {
|
9 |
+
global $post;
|
10 |
+
}
|
11 |
+
|
12 |
+
/*
|
13 |
+
* Defining this variable:
|
14 |
+
*
|
15 |
+
* $wppb_show_content can have 3 states: null, true and false
|
16 |
+
*
|
17 |
+
* - if the state is "null" the $content is showed, but it did not go through any actual filtering
|
18 |
+
* - if the state is "true" the $content is showed, but it did go through filters that explicitly said the $content should be shown
|
19 |
+
* - if the state is "false" the $content is not showed, it is replaced with a restriction message, thus it explicitly says that it was filtered and access is denied to it
|
20 |
+
*
|
21 |
+
*/
|
22 |
+
$wppb_show_content = null;
|
23 |
+
|
24 |
+
// Show for administrators
|
25 |
+
if( current_user_can( 'manage_options' ) ) {
|
26 |
+
return $content;
|
27 |
+
}
|
28 |
+
|
29 |
+
// Check if any PMS restriction should take place. PMS restrictions have priority
|
30 |
+
if( $pms_show_content === false ) {
|
31 |
+
return $content;
|
32 |
+
}
|
33 |
+
|
34 |
+
// Get user roles that have access to this post
|
35 |
+
$user_status = get_post_meta( $post->ID, 'wppb-content-restrict-user-status', true );
|
36 |
+
$post_user_roles = get_post_meta( $post->ID, 'wppb-content-restrict-user-role' );
|
37 |
+
|
38 |
+
if( empty( $user_status ) && empty( $post_user_roles ) ) {
|
39 |
+
return $content;
|
40 |
+
} else if( $user_status == 'loggedin' ) {
|
41 |
+
if( is_user_logged_in() ) {
|
42 |
+
if( ! empty($post_user_roles ) ) {
|
43 |
+
$user_data = get_userdata( $user_ID );
|
44 |
+
|
45 |
+
foreach( $post_user_roles as $post_user_role ) {
|
46 |
+
foreach( $user_data->roles as $role ) {
|
47 |
+
if( $post_user_role == $role ) {
|
48 |
+
$wppb_show_content = true;
|
49 |
+
return $content;
|
50 |
+
}
|
51 |
+
}
|
52 |
+
}
|
53 |
+
|
54 |
+
$wppb_show_content = false;
|
55 |
+
|
56 |
+
$message = wppb_content_restriction_process_content_message( 'logged_in', $user_ID, $post->ID );
|
57 |
+
|
58 |
+
return do_shortcode( apply_filters( 'wppb_content_restriction_message_logged_in', $message, $content, $post, $user_ID ) );
|
59 |
+
} else {
|
60 |
+
return $content;
|
61 |
+
}
|
62 |
+
} else {
|
63 |
+
// If user is not logged in prompt the correct message
|
64 |
+
$wppb_show_content = false;
|
65 |
+
|
66 |
+
$message = wppb_content_restriction_process_content_message( 'logged_out', $user_ID, $post->ID );
|
67 |
+
|
68 |
+
return do_shortcode( apply_filters( 'wppb_content_restriction_message_logged_out', $message, $content, $post, $user_ID ) );
|
69 |
+
}
|
70 |
+
}
|
71 |
+
|
72 |
+
return $content;
|
73 |
+
|
74 |
+
}
|
75 |
+
add_filter( 'the_content', 'wppb_content_restriction_filter_content', 12 );
|
76 |
+
add_filter( 'wppb_content_restriction_post_check', 'wppb_content_restriction_filter_content', 10, 2 );
|
77 |
+
|
78 |
+
/* Checks to see if the attachment image is restricted and returns false instead of the image if it is restricted */
|
79 |
+
function wppb_content_restriction_filter_attachment_image_src( $image, $attachment_id ) {
|
80 |
+
|
81 |
+
if( is_admin() ) {
|
82 |
+
return $image;
|
83 |
+
}
|
84 |
+
|
85 |
+
if( wppb_content_restriction_is_post_restricted( $attachment_id ) ) {
|
86 |
+
return false;
|
87 |
+
}
|
88 |
+
|
89 |
+
return $image;
|
90 |
+
|
91 |
+
}
|
92 |
+
add_filter( 'wp_get_attachment_image_src', 'wppb_content_restriction_filter_attachment_image_src', 10, 2 );
|
93 |
+
|
94 |
+
/* Checks to see if the attachment is restricted and returns false instead of the metadata if it is restricted */
|
95 |
+
function wppb_content_restriction_filter_attachment_metadata( $data, $attachment_id ) {
|
96 |
+
|
97 |
+
if( is_admin() ) {
|
98 |
+
return $data;
|
99 |
+
}
|
100 |
+
|
101 |
+
if( wppb_content_restriction_is_post_restricted( $attachment_id ) ) {
|
102 |
+
return false;
|
103 |
+
}
|
104 |
+
|
105 |
+
return $data;
|
106 |
+
|
107 |
+
}
|
108 |
+
add_filter( 'wp_get_attachment_metadata', 'wppb_content_restriction_filter_attachment_metadata', 10, 2 );
|
109 |
+
|
110 |
+
/* Checks to see if the attachment thumb is restricted and returns false instead of the thumb url if it is restricted */
|
111 |
+
function wppb_content_restriction_filter_attachment_thumb_url( $url, $attachment_id ) {
|
112 |
+
|
113 |
+
if( is_admin() ) {
|
114 |
+
return $url;
|
115 |
+
}
|
116 |
+
|
117 |
+
if( wppb_content_restriction_is_post_restricted( $attachment_id ) ) {
|
118 |
+
return false;
|
119 |
+
}
|
120 |
+
|
121 |
+
return $url;
|
122 |
+
|
123 |
+
}
|
124 |
+
add_filter( 'wp_get_attachment_thumb_url', 'wppb_content_restriction_filter_attachment_thumb_url', 10, 2 );
|
125 |
+
|
126 |
+
/* Checks to see if the attachment is restricted and returns an empty string instead of the attachment url if it is restricted*/
|
127 |
+
function wppb_content_restriction_filter_attachment_url( $url, $attachment_id ) {
|
128 |
+
|
129 |
+
if( is_admin() ) {
|
130 |
+
return $url;
|
131 |
+
}
|
132 |
+
|
133 |
+
if( wppb_content_restriction_is_post_restricted( $attachment_id ) ) {
|
134 |
+
return '';
|
135 |
+
}
|
136 |
+
|
137 |
+
return $url;
|
138 |
+
|
139 |
+
}
|
140 |
+
add_filter( 'wp_get_attachment_url', 'wppb_content_restriction_filter_attachment_url', 10, 2 );
|
141 |
+
add_filter( 'attachment_link', 'wppb_content_restriction_filter_attachment_url', 10, 2 );
|
142 |
+
|
143 |
+
/* Formats the error messages to display accordingly to the WYSIWYG editor */
|
144 |
+
function wppb_content_restriction_message_wpautop( $message = '' ) {
|
145 |
+
|
146 |
+
if( ! empty( $message ) ) {
|
147 |
+
$message = wpautop( $message );
|
148 |
+
}
|
149 |
+
|
150 |
+
return apply_filters( 'wppb_content_restriction_message_wpautop' ,$message );
|
151 |
+
|
152 |
+
}
|
153 |
+
add_filter( 'wppb_content_restriction_message_logged_in', 'wppb_content_restriction_message_wpautop', 30, 1 );
|
154 |
+
add_filter( 'wppb_content_restriction_message_logged_out', 'wppb_content_restriction_message_wpautop', 30, 1 );
|
155 |
+
|
156 |
+
/* Adds a preview of the restricted post before the default restriction messages */
|
157 |
+
function wppb_content_restriction_add_post_preview( $message, $content, $post, $user_ID ) {
|
158 |
+
|
159 |
+
$preview = '';
|
160 |
+
$settings = get_option( 'wppb_content_restriction_settings' );
|
161 |
+
$preview_option = ( ! empty( $settings['post_preview'] ) ? $settings['post_preview'] : '' );
|
162 |
+
|
163 |
+
if( empty( $preview_option ) || $preview_option == 'none' ) {
|
164 |
+
return $message;
|
165 |
+
}
|
166 |
+
|
167 |
+
$post_content = $content;
|
168 |
+
|
169 |
+
// Trim the content
|
170 |
+
if( $preview_option == 'trim-content' ) {
|
171 |
+
$length = ( ! empty( $settings['post_preview_length'] ) ? (int) $settings['post_preview_length'] : 0 );
|
172 |
+
|
173 |
+
if( $length !== 0 ) {
|
174 |
+
// Do shortcodes on the content
|
175 |
+
$post_content = do_shortcode( $post_content );
|
176 |
+
|
177 |
+
// Trim the preview
|
178 |
+
$preview = wp_trim_words( $post_content, $length, apply_filters( 'wppb_content_restriction_post_preview_more', __( '…' ) ) );
|
179 |
+
}
|
180 |
+
}
|
181 |
+
|
182 |
+
// More tag
|
183 |
+
if( $preview_option == 'more-tag' ) {
|
184 |
+
$content_parts = get_extended( $post->post_content );
|
185 |
+
$preview = $content_parts['main'];
|
186 |
+
}
|
187 |
+
|
188 |
+
// Return the preview
|
189 |
+
return wpautop( $preview ) . $message;
|
190 |
+
|
191 |
+
}
|
192 |
+
add_filter( 'wppb_content_restriction_message_logged_in', 'wppb_content_restriction_add_post_preview', 30, 4 );
|
193 |
+
add_filter( 'wppb_content_restriction_message_logged_out', 'wppb_content_restriction_add_post_preview', 30, 4 );
|
features/content-restriction/content-restriction-functions.php
ADDED
@@ -0,0 +1,218 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/* Verifies whether the current post or the post with the provided id has any restrictions in place */
|
4 |
+
function wppb_content_restriction_is_post_restricted( $post_id = null ) {
|
5 |
+
|
6 |
+
global $post, $wppb_show_content, $wppb_is_post_restricted_arr;
|
7 |
+
|
8 |
+
// If we have a cached result, return it
|
9 |
+
if( isset( $wppb_is_post_restricted_arr[$post_id] ) ) {
|
10 |
+
return $wppb_is_post_restricted_arr[$post_id];
|
11 |
+
}
|
12 |
+
|
13 |
+
$post_obj = $post;
|
14 |
+
|
15 |
+
if( ! is_null( $post_id ) ) {
|
16 |
+
$post_obj = get_post( $post_id );
|
17 |
+
}
|
18 |
+
|
19 |
+
// This filter was added in order to take advantage of the existing functions that hook to the_content and check to see if the post is restricted or not
|
20 |
+
$t = apply_filters( 'wppb_content_restriction_post_check', '', $post_obj );
|
21 |
+
|
22 |
+
// Cache the result for further usage
|
23 |
+
if( $wppb_show_content === false ) {
|
24 |
+
$wppb_is_post_restricted_arr[$post_id] = true;
|
25 |
+
} else {
|
26 |
+
$wppb_is_post_restricted_arr[$post_id] = false;
|
27 |
+
}
|
28 |
+
|
29 |
+
return $wppb_is_post_restricted_arr[$post_id];
|
30 |
+
|
31 |
+
}
|
32 |
+
|
33 |
+
/* Returns the restriction message added by the admin in the settings page or a default message if the first one is missing */
|
34 |
+
function wppb_get_restriction_content_message( $message_type = '', $post_id = 0 ) {
|
35 |
+
|
36 |
+
$wppb_content_restriction_settings = get_option( 'wppb_content_restriction_settings', 'not_found' );
|
37 |
+
$wppb_content_restriction_message = '';
|
38 |
+
|
39 |
+
if( $message_type == 'logged_out' ) {
|
40 |
+
$wppb_content_restriction_message = ( ( $wppb_content_restriction_settings != 'not_found' && ! empty( $wppb_content_restriction_settings['message_logged_out'] ) ) ? $wppb_content_restriction_settings['message_logged_out'] : __( 'You must be logged in to view this content.', 'profile-builder' ) );
|
41 |
+
} elseif ( $message_type == 'logged_in' ) {
|
42 |
+
$wppb_content_restriction_message = ( ( $wppb_content_restriction_settings != 'not_found' && ! empty( $wppb_content_restriction_settings['message_logged_in'] ) ) ? $wppb_content_restriction_settings['message_logged_in'] : __( 'This content is restricted for your user role.', 'profile-builder' ) );
|
43 |
+
} else {
|
44 |
+
$wppb_content_restriction_message = apply_filters( 'wppb_get_restriction_content_message_default', $wppb_content_restriction_message, $message_type, $wppb_content_restriction_settings );
|
45 |
+
}
|
46 |
+
|
47 |
+
$custom_message_enabled = get_post_meta( $post_id, 'wppb-content-restrict-messages-enabled', true );
|
48 |
+
|
49 |
+
if( ! empty( $post_id ) && ! empty( $custom_message_enabled ) ) {
|
50 |
+
$custom_message = get_post_meta( $post_id, 'wppb-content-restrict-message-' . $message_type, true );
|
51 |
+
|
52 |
+
if( ! empty( $custom_message ) ) {
|
53 |
+
$wppb_content_restriction_message = $custom_message;
|
54 |
+
}
|
55 |
+
}
|
56 |
+
|
57 |
+
return wp_kses_post( $wppb_content_restriction_message );
|
58 |
+
|
59 |
+
}
|
60 |
+
|
61 |
+
/* Returns the restriction message with any tags processed */
|
62 |
+
function wppb_content_restriction_process_content_message( $type, $user_ID, $post_id = 0 ) {
|
63 |
+
|
64 |
+
$message = wppb_get_restriction_content_message( $type, $post_id );
|
65 |
+
$user_info = get_userdata( $user_ID );
|
66 |
+
$message = wppb_content_restriction_merge_tags( $message, $user_info, $post_id );
|
67 |
+
|
68 |
+
return '<span class="wppb-frontend-restriction-message">'. $message .'</span>';
|
69 |
+
|
70 |
+
}
|
71 |
+
|
72 |
+
/* 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 */
|
73 |
+
function wppb_content_restriction_get_post_message( $post_id = 0 ) {
|
74 |
+
|
75 |
+
global $post, $user_ID, $wppb_show_content;
|
76 |
+
|
77 |
+
if( ! empty( $post_id ) ) {
|
78 |
+
$post = get_post( $post_id );
|
79 |
+
}
|
80 |
+
|
81 |
+
// If the $wppb_show_content global is different than false then the post is either not restricted or not processed for restriction
|
82 |
+
if( $wppb_show_content !== false ) {
|
83 |
+
return '';
|
84 |
+
}
|
85 |
+
|
86 |
+
if( ! is_user_logged_in() ) {
|
87 |
+
$message_type = 'logged_out';
|
88 |
+
} else {
|
89 |
+
$message_type = 'logged_in';
|
90 |
+
}
|
91 |
+
|
92 |
+
$message_type = apply_filters( 'wppb_get_restricted_post_message_type', $message_type );
|
93 |
+
|
94 |
+
$message = wppb_content_restriction_process_content_message( $message_type, $user_ID, $post->ID );
|
95 |
+
|
96 |
+
// Filter the restriction message before returning it
|
97 |
+
$message = apply_filters( 'wppb_restriction_message_' . $message_type, $message, $post->post_content, $post, $user_ID );
|
98 |
+
|
99 |
+
return do_shortcode( $message );
|
100 |
+
|
101 |
+
}
|
102 |
+
|
103 |
+
/* 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 */
|
104 |
+
function wppb_content_restriction_post_redirect() {
|
105 |
+
|
106 |
+
if( ! is_singular() ) {
|
107 |
+
return;
|
108 |
+
}
|
109 |
+
|
110 |
+
global $post;
|
111 |
+
|
112 |
+
$redirect_url = '';
|
113 |
+
$post_restriction_type = get_post_meta( $post->ID, 'wppb-content-restrict-type', true );
|
114 |
+
$settings = get_option( 'wppb_content_restriction_settings', array() );
|
115 |
+
$general_restriction_type = ( ! empty( $settings['restrict_type'] ) ? $settings['restrict_type'] : 'message' );
|
116 |
+
|
117 |
+
if( $post_restriction_type !== 'redirect' && $general_restriction_type !== 'redirect' ) {
|
118 |
+
return;
|
119 |
+
}
|
120 |
+
|
121 |
+
if( ! in_array( $post_restriction_type, array( 'default', 'redirect' ) ) ) {
|
122 |
+
return;
|
123 |
+
}
|
124 |
+
|
125 |
+
if( ! wppb_content_restriction_is_post_restricted( $post->ID ) ) {
|
126 |
+
return;
|
127 |
+
}
|
128 |
+
|
129 |
+
// Get the redirect URL from the post meta if enabled
|
130 |
+
if( $post_restriction_type === 'redirect' ) {
|
131 |
+
$post_redirect_url_enabled = get_post_meta( $post->ID, 'wppb-content-restrict-custom-redirect-url-enabled', true );
|
132 |
+
$post_redirect_url = get_post_meta( $post->ID, 'wppb-content-restrict-custom-redirect-url', true );
|
133 |
+
|
134 |
+
$redirect_url = ( ! empty( $post_redirect_url_enabled ) && ! empty( $post_redirect_url ) ? $post_redirect_url : '' );
|
135 |
+
}
|
136 |
+
|
137 |
+
|
138 |
+
// If the post doesn't have a custom redirect URL set, get the default from the Settings page
|
139 |
+
if( empty( $redirect_url ) ) {
|
140 |
+
$redirect_url = ( ! empty( $settings['redirect_url'] ) ? $settings['redirect_url'] : '' );
|
141 |
+
}
|
142 |
+
|
143 |
+
if( empty( $redirect_url ) ) {
|
144 |
+
return;
|
145 |
+
}
|
146 |
+
|
147 |
+
// To avoid a redirect loop we break in case the redirect URL is the same as the current page URL
|
148 |
+
$current_url = wppb_curpageurl();
|
149 |
+
|
150 |
+
if( $current_url == $redirect_url ) {
|
151 |
+
return;
|
152 |
+
}
|
153 |
+
|
154 |
+
// Redirect
|
155 |
+
wp_redirect( $redirect_url );
|
156 |
+
exit;
|
157 |
+
|
158 |
+
}
|
159 |
+
add_action( 'wp', 'wppb_content_restriction_post_redirect' );
|
160 |
+
|
161 |
+
function wppb_content_restriction_merge_tags( $text, $user_info, $post_id = 0 ) {
|
162 |
+
|
163 |
+
$merge_tags = apply_filters( 'wppb_content_restriction_merge_tags', array( 'display_name', 'unrestricted_user_roles', 'current_user_role' ) );
|
164 |
+
|
165 |
+
if( ! empty( $merge_tags ) ) {
|
166 |
+
foreach( $merge_tags as $merge_tag ) {
|
167 |
+
$text = str_replace( '{{'. $merge_tag .'}}', apply_filters( 'wppb_content_restriction_merge_tag_'. $merge_tag, '', $user_info, $post_id ), $text );
|
168 |
+
}
|
169 |
+
}
|
170 |
+
|
171 |
+
return $text;
|
172 |
+
|
173 |
+
}
|
174 |
+
|
175 |
+
function wppb_content_restriction_tag_display_name( $value, $user_info, $post_id = 0 ) {
|
176 |
+
|
177 |
+
if( ! empty( $user_info->display_name ) ) {
|
178 |
+
return $user_info->display_name;
|
179 |
+
} else if( ! empty( $user_info->user_login ) ) {
|
180 |
+
return $user_info->user_login;
|
181 |
+
} else {
|
182 |
+
return '';
|
183 |
+
}
|
184 |
+
|
185 |
+
}
|
186 |
+
add_filter( 'wppb_content_restriction_merge_tag_display_name', 'wppb_content_restriction_tag_display_name', 10, 3 );
|
187 |
+
|
188 |
+
function wppb_content_restriction_tag_unrestricted_user_roles( $value, $user_info, $post_id = 0 ) {
|
189 |
+
|
190 |
+
if( $post_id != 0 ) {
|
191 |
+
$unrestricted_user_roles = get_post_meta( $post_id, 'wppb-content-restrict-user-role' );
|
192 |
+
|
193 |
+
if( ! empty( $unrestricted_user_roles ) ) {
|
194 |
+
$user_roles = implode( ', ', $unrestricted_user_roles );
|
195 |
+
|
196 |
+
return $user_roles;
|
197 |
+
} else {
|
198 |
+
return '';
|
199 |
+
}
|
200 |
+
} else {
|
201 |
+
return '';
|
202 |
+
}
|
203 |
+
|
204 |
+
}
|
205 |
+
add_filter( 'wppb_content_restriction_merge_tag_unrestricted_user_roles', 'wppb_content_restriction_tag_unrestricted_user_roles', 10, 3 );
|
206 |
+
|
207 |
+
function wppb_content_restriction_tag_current_user_role( $value, $user_info, $post_id = 0 ) {
|
208 |
+
|
209 |
+
if( ! empty( $user_info ) && ! empty( $user_info->roles ) ) {
|
210 |
+
$user_role = implode( ', ', $user_info->roles );
|
211 |
+
|
212 |
+
return $user_role;
|
213 |
+
} else {
|
214 |
+
return '';
|
215 |
+
}
|
216 |
+
|
217 |
+
}
|
218 |
+
add_filter( 'wppb_content_restriction_merge_tag_current_user_role', 'wppb_content_restriction_tag_current_user_role', 10, 3 );
|
features/content-restriction/content-restriction-meta-box.php
ADDED
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
function wppb_content_restriction_initialize_meta_box() {
|
4 |
+
|
5 |
+
add_action( 'add_meta_boxes', 'wppb_content_restriction_add_meta_box' );
|
6 |
+
|
7 |
+
}
|
8 |
+
add_action( 'init', 'wppb_content_restriction_initialize_meta_box', 12 );
|
9 |
+
|
10 |
+
function wppb_content_restriction_add_meta_box() {
|
11 |
+
|
12 |
+
$post_types = get_post_types( array( 'public' => true ) );
|
13 |
+
|
14 |
+
if( ! empty( $post_types ) ) {
|
15 |
+
foreach( $post_types as $post_type ) {
|
16 |
+
add_meta_box(
|
17 |
+
'wppb_post_content_restriction',
|
18 |
+
__( 'Profile Builder Content Restriction', 'profile-builder' ),
|
19 |
+
'wppb_content_restriction_meta_box_output',
|
20 |
+
$post_type,
|
21 |
+
'normal'
|
22 |
+
);
|
23 |
+
}
|
24 |
+
}
|
25 |
+
|
26 |
+
}
|
27 |
+
|
28 |
+
function wppb_content_restriction_meta_box_output( $post ) {
|
29 |
+
|
30 |
+
?>
|
31 |
+
<div class="wppb-meta-box-fields-wrapper">
|
32 |
+
<h4><?php echo __( 'Display Options', 'profile-builder' ); ?></h4>
|
33 |
+
|
34 |
+
<div class="wppb-meta-box-field-wrapper">
|
35 |
+
<?php
|
36 |
+
$wppb_content_restrict_types = apply_filters( 'wppb_single_post_content_restrict_types', array( 'message' => __( 'Message', 'profile-builder' ), 'redirect' => __( 'Redirect', 'profile-builder' ) ) );
|
37 |
+
|
38 |
+
$wppb_content_restrict_type = get_post_meta( $post->ID, 'wppb-content-restrict-type', true );
|
39 |
+
?>
|
40 |
+
|
41 |
+
<label class="wppb-meta-box-field-label"><?php _e( 'Type of Restriction', 'profile-builder' ); ?></label>
|
42 |
+
|
43 |
+
<label class="wppb-meta-box-checkbox-label" for="wppb-content-restrict-type-default">
|
44 |
+
<input type="radio" id="wppb-content-restrict-type-default" value="default" <?php if( empty( $wppb_content_restrict_type ) || $wppb_content_restrict_type == 'default' ) echo 'checked="checked"'; ?> name="wppb-content-restrict-type">
|
45 |
+
<?php echo __( 'Settings Default', 'profile-builder' ); ?>
|
46 |
+
</label>
|
47 |
+
|
48 |
+
<?php foreach( $wppb_content_restrict_types as $type_slug => $type_label ) { ?>
|
49 |
+
<label class="wppb-meta-box-checkbox-label" for="wppb-content-restrict-type-<?php echo esc_attr( $type_slug ); ?>">
|
50 |
+
<input type="radio" id="wppb-content-restrict-type-<?php echo esc_attr( $type_slug ); ?>" value="<?php echo esc_attr( $type_slug ); ?>" <?php if( $wppb_content_restrict_type == $type_slug ) echo 'checked="checked"'; ?> name="wppb-content-restrict-type">
|
51 |
+
<?php echo esc_html( $type_label ); ?>
|
52 |
+
</label>
|
53 |
+
<?php } ?>
|
54 |
+
</div>
|
55 |
+
|
56 |
+
<div class="wppb-meta-box-field-wrapper">
|
57 |
+
<label class="wppb-meta-box-field-label"><?php _e( 'Display For', 'profile-builder' ); ?></label>
|
58 |
+
|
59 |
+
<?php
|
60 |
+
$wppb_roles = get_editable_roles();
|
61 |
+
$wppb_user_status = get_post_meta( $post->ID, 'wppb-content-restrict-user-status', true );
|
62 |
+
$wppb_selected_roles = get_post_meta( $post->ID, 'wppb-content-restrict-user-role' );
|
63 |
+
?>
|
64 |
+
|
65 |
+
<label class="wppb-meta-box-checkbox-label" for="wppb-content-restrict-user-status">
|
66 |
+
<input type="checkbox" value="loggedin" <?php if( ! empty( $wppb_user_status ) && $wppb_user_status == 'loggedin' ) echo 'checked="checked"'; ?> name="wppb-content-restrict-user-status" id="wppb-content-restrict-user-status">
|
67 |
+
<?php echo __( 'Logged In Users', 'profile-builder' ); ?>
|
68 |
+
</label>
|
69 |
+
|
70 |
+
<?php
|
71 |
+
if( ! empty( $wppb_roles ) ) {
|
72 |
+
foreach( $wppb_roles as $wppb_role => $wppb_role_details ) {
|
73 |
+
?>
|
74 |
+
<label class="wppb-meta-box-checkbox-label" for="wppb-content-restrict-user-role-<?php echo esc_attr( $wppb_role ) ?>">
|
75 |
+
<input type="checkbox" value="<?php echo esc_attr( $wppb_role ); ?>" <?php if( in_array( $wppb_role, $wppb_selected_roles ) ) echo 'checked="checked"'; ?> name="wppb-content-restrict-user-role[]" id="wppb-content-restrict-user-role-<?php echo esc_attr( $wppb_role ) ?>">
|
76 |
+
<?php echo esc_html( $wppb_role_details['name'] ); ?>
|
77 |
+
</label>
|
78 |
+
<?php } ?>
|
79 |
+
|
80 |
+
<p class="description" style="margin-top: 10px;">
|
81 |
+
<?php printf( __( 'Checking only "Logged In Users" will show this %s to all logged in users, regardless of user role.', 'profile-builder' ), $post->post_type); ?>
|
82 |
+
</p>
|
83 |
+
|
84 |
+
<p class="description">
|
85 |
+
<?php printf( __( 'Checking any user role will show this %s only to users that have one of those user roles assigned.', 'profile-builder' ), $post->post_type); ?>
|
86 |
+
</p>
|
87 |
+
<?php } ?>
|
88 |
+
</div>
|
89 |
+
</div>
|
90 |
+
|
91 |
+
<div id="wppb-meta-box-fields-wrapper-restriction-redirect-url" class="wppb-meta-box-fields-wrapper <?php echo ( $wppb_content_restrict_type == 'redirect' ? 'wppb-content-restriction-enabled' : '' ); ?>">
|
92 |
+
<h4><?php echo __( 'Restriction Redirect URL', 'profile-builder' ); ?></h4>
|
93 |
+
|
94 |
+
<div class="wppb-meta-box-field-wrapper">
|
95 |
+
|
96 |
+
<?php $wppb_custom_redirect_url_enabled = get_post_meta( $post->ID, 'wppb-content-restrict-custom-redirect-url-enabled', true ); ?>
|
97 |
+
|
98 |
+
<label class="wppb-meta-box-field-label"><?php _e( 'Enable Custom Redirect URL', 'profile-builder' ); ?></label>
|
99 |
+
|
100 |
+
<label class="wppb-meta-box-checkbox-label" for="wppb-content-restrict-custom-redirect-url-enabled">
|
101 |
+
<input type="checkbox" value="yes" <?php echo ( ! empty( $wppb_custom_redirect_url_enabled ) ? 'checked="checked"' : '' ); ?> name="wppb-content-restrict-custom-redirect-url-enabled" id="wppb-content-restrict-custom-redirect-url-enabled">
|
102 |
+
<span class="description"><?php printf( __( 'Check if you wish to add a custom redirect URL for this %s.', 'profile-builder' ), $post->post_type ); ?></span>
|
103 |
+
</label>
|
104 |
+
</div>
|
105 |
+
|
106 |
+
<div class="wppb-meta-box-field-wrapper wppb-meta-box-field-wrapper-custom-redirect-url <?php echo ( ! empty( $wppb_custom_redirect_url_enabled ) ? 'wppb-content-restriction-enabled' : '' ); ?>">
|
107 |
+
<?php $wppb_custom_redirect_url = get_post_meta( $post->ID, 'wppb-content-restrict-custom-redirect-url', true ); ?>
|
108 |
+
|
109 |
+
<label class="wppb-meta-box-field-label" for="wppb-content-restrict-custom-redirect-url"><?php _e( 'Custom Redirect URL', 'profile-builder' ); ?></label>
|
110 |
+
|
111 |
+
<label class="wppb-meta-box-checkbox-label">
|
112 |
+
<input type="text" value="<?php echo ( ! empty( $wppb_custom_redirect_url ) ? esc_url( $wppb_custom_redirect_url ) : '' ); ?>" name="wppb-content-restrict-custom-redirect-url" id="wppb-content-restrict-custom-redirect-url" class="widefat">
|
113 |
+
<p class="description"><?php printf( __( 'Add a URL where you wish to redirect users that do not have access to this %s and try to access it directly.', 'profile-builder' ), $post->post_type ); ?></p>
|
114 |
+
</label>
|
115 |
+
</div>
|
116 |
+
</div>
|
117 |
+
|
118 |
+
<div id="wppb-meta-box-fields-wrapper-restriction-custom-messages" class="wppb-meta-box-fields-wrapper">
|
119 |
+
<h4><?php echo __( 'Restriction Messages', 'profile-builder' ); ?></h4>
|
120 |
+
|
121 |
+
<div class="wppb-meta-box-field-wrapper">
|
122 |
+
<?php
|
123 |
+
$wppb_custom_messages_enabled = get_post_meta( $post->ID, 'wppb-content-restrict-messages-enabled', true );
|
124 |
+
?>
|
125 |
+
<label class="wppb-meta-box-field-label"><?php _e( 'Enable Custom Messages', 'profile-builder' ); ?></label>
|
126 |
+
|
127 |
+
<label class="wppb-meta-box-checkbox-label" for="wppb-content-restrict-messages-enabled">
|
128 |
+
<input type="checkbox" value="yes" <?php echo ( ! empty( $wppb_custom_messages_enabled ) ? 'checked="checked"' : '' ); ?> name="wppb-content-restrict-messages-enabled" id="wppb-content-restrict-messages-enabled">
|
129 |
+
<span class="description"><?php printf( __( 'Check if you wish to add custom messages for this %s.', 'profile-builder' ), $post->post_type ); ?></span>
|
130 |
+
</label>
|
131 |
+
</div>
|
132 |
+
|
133 |
+
<div class="wppb-meta-box-field-wrapper-custom-messages <?php echo ( ! empty( $wppb_custom_messages_enabled ) ? 'wppb-content-restriction-enabled' : '' ); ?>">
|
134 |
+
<?php do_action( 'wppb_view_meta_box_content_restrict_restriction_messages_top', $post->ID ); ?>
|
135 |
+
|
136 |
+
<p><strong><?php _e( 'Messages for logged-out users', 'profile-builder' ); ?></strong></p>
|
137 |
+
<?php wp_editor( get_post_meta( $post->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 ) ); ?>
|
138 |
+
|
139 |
+
<p><strong><?php _e( 'Messages for logged-in users', 'profile-builder' ); ?></strong></p>
|
140 |
+
<?php wp_editor( get_post_meta( $post->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 ) ); ?>
|
141 |
+
</div>
|
142 |
+
</div>
|
143 |
+
|
144 |
+
<?php
|
145 |
+
wp_nonce_field( 'wppb_meta_box_single_content_restriction_nonce', 'wppb_content_restriction_token', false );
|
146 |
+
|
147 |
+
}
|
148 |
+
|
149 |
+
function wppb_content_restriction_save_data( $post_id, $post ) {
|
150 |
+
|
151 |
+
if( empty( $_POST['wppb_content_restriction_token'] ) || ! wp_verify_nonce( $_POST['wppb_content_restriction_token'], 'wppb_meta_box_single_content_restriction_nonce' ) ) {
|
152 |
+
return;
|
153 |
+
}
|
154 |
+
|
155 |
+
// Handle restriction rules
|
156 |
+
delete_post_meta( $post_id, 'wppb-content-restrict-type' );
|
157 |
+
|
158 |
+
if( ! empty( $_POST['wppb-content-restrict-type'] ) ) {
|
159 |
+
update_post_meta( $post_id, 'wppb-content-restrict-type', sanitize_text_field( $_POST['wppb-content-restrict-type'] ) );
|
160 |
+
}
|
161 |
+
|
162 |
+
if( isset( $_POST['wppb-content-restrict-user-status'] ) && $_POST['wppb-content-restrict-user-status'] == 'loggedin' ) {
|
163 |
+
delete_post_meta( $post_id, 'wppb-content-restrict-user-role' );
|
164 |
+
|
165 |
+
if( isset( $_POST['wppb-content-restrict-user-role'] ) ) {
|
166 |
+
foreach( $_POST['wppb-content-restrict-user-role'] as $user_role_id ) {
|
167 |
+
if( ! empty( $user_role_id ) ) {
|
168 |
+
add_post_meta( $post_id, 'wppb-content-restrict-user-role', sanitize_text_field( $user_role_id ) );
|
169 |
+
}
|
170 |
+
}
|
171 |
+
}
|
172 |
+
}
|
173 |
+
|
174 |
+
if( isset( $_POST['wppb-content-restrict-user-status'] ) && $_POST['wppb-content-restrict-user-status'] == 'loggedin' ) {
|
175 |
+
update_post_meta( $post_id, 'wppb-content-restrict-user-status', 'loggedin' );
|
176 |
+
} else {
|
177 |
+
delete_post_meta( $post_id, 'wppb-content-restrict-user-status' );
|
178 |
+
}
|
179 |
+
|
180 |
+
// Handle custom redirect URL
|
181 |
+
delete_post_meta( $post_id, 'wppb-content-restrict-custom-redirect-url-enabled' );
|
182 |
+
|
183 |
+
if( isset( $_POST['wppb-content-restrict-custom-redirect-url-enabled'] ) ) {
|
184 |
+
update_post_meta( $post_id, 'wppb-content-restrict-custom-redirect-url-enabled', 'yes' );
|
185 |
+
}
|
186 |
+
|
187 |
+
update_post_meta( $post_id, 'wppb-content-restrict-custom-redirect-url', ( ! empty( $_POST['wppb-content-restrict-custom-redirect-url'] ) ? esc_url_raw( $_POST['wppb-content-restrict-custom-redirect-url'] ) : '' ) );
|
188 |
+
|
189 |
+
// Handle custom messages
|
190 |
+
delete_post_meta( $post_id, 'wppb-content-restrict-messages-enabled' );
|
191 |
+
|
192 |
+
if( isset( $_POST['wppb-content-restrict-messages-enabled'] ) ) {
|
193 |
+
update_post_meta( $post_id, 'wppb-content-restrict-messages-enabled', 'yes' );
|
194 |
+
}
|
195 |
+
|
196 |
+
update_post_meta( $post_id, 'wppb-content-restrict-message-logged_out', ( ! empty( $_POST['wppb-content-restrict-message-logged_out'] ) ? wp_kses_post( $_POST['wppb-content-restrict-message-logged_out'] ) : '' ) );
|
197 |
+
update_post_meta( $post_id, 'wppb-content-restrict-message-logged_in', ( ! empty( $_POST['wppb-content-restrict-message-logged_in'] ) ? wp_kses_post( $_POST['wppb-content-restrict-message-logged_in'] ) : '' ) );
|
198 |
+
|
199 |
+
}
|
200 |
+
add_action( 'save_post', 'wppb_content_restriction_save_data', 10, 2 );
|
features/content-restriction/content-restriction.php
ADDED
@@ -0,0 +1,130 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
$wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' );
|
4 |
+
if( $wppb_generalSettings != 'not_found' ) {
|
5 |
+
if( ! empty( $wppb_generalSettings['contentRestriction'] ) && ( $wppb_generalSettings['contentRestriction'] == 'yes' ) ) {
|
6 |
+
include_once 'content-restriction-meta-box.php';
|
7 |
+
include_once 'content-restriction-functions.php';
|
8 |
+
include_once 'content-restriction-filtering.php';
|
9 |
+
|
10 |
+
add_action( 'admin_menu', 'wppb_content_restriction_submenu', 10 );
|
11 |
+
add_action( 'admin_enqueue_scripts', 'wppb_content_restriction_scripts_styles' );
|
12 |
+
}
|
13 |
+
}
|
14 |
+
|
15 |
+
function wppb_content_restriction_submenu() {
|
16 |
+
|
17 |
+
add_submenu_page( 'profile-builder', __( 'Content Restriction', 'profile-builder' ), __( 'Content Restriction', 'profile-builder' ), 'manage_options', 'profile-builder-content_restriction', 'wppb_content_restriction_content' );
|
18 |
+
|
19 |
+
}
|
20 |
+
|
21 |
+
function wppb_content_restriction_settings_defaults() {
|
22 |
+
|
23 |
+
add_option( 'wppb_content_restriction_settings',
|
24 |
+
array(
|
25 |
+
'restrict_type' => 'message',
|
26 |
+
'redirect_url' => '',
|
27 |
+
'message_logged_out' => '',
|
28 |
+
'message_logged_in' => '',
|
29 |
+
'post_preview' => 'none',
|
30 |
+
'post_preview_length' => '20',
|
31 |
+
)
|
32 |
+
);
|
33 |
+
|
34 |
+
}
|
35 |
+
|
36 |
+
function wppb_content_restriction_content() {
|
37 |
+
|
38 |
+
wppb_content_restriction_settings_defaults();
|
39 |
+
|
40 |
+
$wppb_content_restriction_settings = get_option( 'wppb_content_restriction_settings', 'not_found' );
|
41 |
+
|
42 |
+
?>
|
43 |
+
<div class="wrap wppb-content-restriction-wrap">
|
44 |
+
<h2><?php _e( 'Content Restriction', 'profile-builder' ); ?></h2>
|
45 |
+
|
46 |
+
<form method="post" action="options.php">
|
47 |
+
<?php settings_fields( 'wppb_content_restriction_settings' ); ?>
|
48 |
+
|
49 |
+
<div id="wppb-settings-content-restriction">
|
50 |
+
<div class="wppb-restriction-fields-group">
|
51 |
+
<label class="wppb-restriction-label"><?php _e( 'Type of Restriction', 'profile-builder' ); ?></label>
|
52 |
+
|
53 |
+
<div class="wppb-restriction-type">
|
54 |
+
<label for="wppb-content-restrict-type-message">
|
55 |
+
<input type="radio" id="wppb-content-restrict-type-message" value="message" <?php echo ( ( $wppb_content_restriction_settings != 'not_found' && $wppb_content_restriction_settings['restrict_type'] == 'message' ) ? 'checked="checked"' : '' ); ?> name="wppb_content_restriction_settings[restrict_type]">
|
56 |
+
<?php _e( 'Message', 'profile-builder' ); ?>
|
57 |
+
</label>
|
58 |
+
|
59 |
+
<label for="wppb-content-restrict-type-redirect">
|
60 |
+
<input type="radio" id="wppb-content-restrict-type-redirect" value="redirect" <?php echo ( ( $wppb_content_restriction_settings != 'not_found' && $wppb_content_restriction_settings['restrict_type'] == 'redirect' ) ? 'checked="checked"' : '' ); ?> name="wppb_content_restriction_settings[restrict_type]">
|
61 |
+
<?php _e( 'Redirect', 'profile-builder' ); ?>
|
62 |
+
</label>
|
63 |
+
|
64 |
+
<p class="description" style="margin-top: 10px;"><?php echo __( 'If you select "Message", the post\'s content will be protected by being replaced with a custom message.', 'profile-builder' ); ?></p>
|
65 |
+
<p class="description"><?php echo __( '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.', 'profile-builder' ); ?></p>
|
66 |
+
</div>
|
67 |
+
</div>
|
68 |
+
|
69 |
+
<div class="wppb-restriction-fields-group">
|
70 |
+
<label class="wppb-restriction-label"><?php _e( 'Redirect URL', 'profile-builder' ); ?></label>
|
71 |
+
<input type="text" class="widefat" name="wppb_content_restriction_settings[redirect_url]" value="<?php echo ( ( $wppb_content_restriction_settings != 'not_found' && ! empty( $wppb_content_restriction_settings['redirect_url'] ) ) ? esc_url( $wppb_content_restriction_settings['redirect_url'] ) : '' ); ?>" />
|
72 |
+
</div>
|
73 |
+
|
74 |
+
<div class="wppb-restriction-fields-group">
|
75 |
+
<label class="wppb-restriction-label"><?php _e( 'Message for logged-out users', 'profile-builder' ); ?></label>
|
76 |
+
<?php wp_editor( wppb_get_restriction_content_message( 'logged_out' ), 'message_logged_out', array( 'textarea_name' => 'wppb_content_restriction_settings[message_logged_out]', 'editor_height' => 250 ) ); ?>
|
77 |
+
</div>
|
78 |
+
|
79 |
+
<div class="wppb-restriction-fields-group">
|
80 |
+
<label class="wppb-restriction-label"><?php _e( 'Message for logged-in users', 'profile-builder' ); ?></label>
|
81 |
+
<?php wp_editor( wppb_get_restriction_content_message( 'logged_in' ), 'message_logged_in', array( 'textarea_name' => 'wppb_content_restriction_settings[message_logged_in]', 'editor_height' => 250 ) ); ?>
|
82 |
+
</div>
|
83 |
+
|
84 |
+
<div class="wppb-restriction-fields-group">
|
85 |
+
<label class="wppb-restriction-label" for="restricted-posts-preview"><?php echo __( 'Restricted Posts Preview', 'profile-builder' ) ?></label>
|
86 |
+
|
87 |
+
<div class="wppb-restriction-post-preview">
|
88 |
+
<div>
|
89 |
+
<label>
|
90 |
+
<input type="radio" name="wppb_content_restriction_settings[post_preview]" value="none" <?php echo ( ( $wppb_content_restriction_settings != 'not_found' ) && $wppb_content_restriction_settings['post_preview'] == 'none' ? 'checked' : '' ); ?> />
|
91 |
+
<span><?php echo __( 'None', 'profile-builder' ); ?></span>
|
92 |
+
</label>
|
93 |
+
</div>
|
94 |
+
|
95 |
+
<div>
|
96 |
+
<label>
|
97 |
+
<input type="radio" name="wppb_content_restriction_settings[post_preview]" value="trim-content" <?php echo ( ( $wppb_content_restriction_settings != 'not_found' ) && $wppb_content_restriction_settings['post_preview'] == 'trim-content' ? 'checked' : '' ); ?> />
|
98 |
+
|
99 |
+
<span>
|
100 |
+
<?php echo sprintf( __( 'Show the first %s words of the post\'s content', 'profile-builder' ), '<input name="wppb_content_restriction_settings[post_preview_length]" type="text" value="'. ( $wppb_content_restriction_settings != 'not_found' && ! empty( $wppb_content_restriction_settings['post_preview_length'] ) ? esc_attr( $wppb_content_restriction_settings['post_preview_length'] ) : 20 ) .'" style="width: 50px;" />' ); ?>
|
101 |
+
</span>
|
102 |
+
</label>
|
103 |
+
</div>
|
104 |
+
|
105 |
+
<div>
|
106 |
+
<label>
|
107 |
+
<input type="radio" name="wppb_content_restriction_settings[post_preview]" value="more-tag" <?php echo ( ( $wppb_content_restriction_settings != 'not_found' ) && $wppb_content_restriction_settings['post_preview'] == 'more-tag' ? 'checked' : '' ); ?> />
|
108 |
+
<span><?php echo __( 'Show the content before the "more" tag', 'profile-builder' ); ?></span>
|
109 |
+
</label>
|
110 |
+
</div>
|
111 |
+
|
112 |
+
<p class="description"><?php echo __( 'Show a portion of the restricted post to logged-out users or users that are not allowed to see it.', 'profile-builder' ); ?></p>
|
113 |
+
</div>
|
114 |
+
</div>
|
115 |
+
</div>
|
116 |
+
|
117 |
+
<?php submit_button( __( 'Save Settings', 'profile-builder' ) ); ?>
|
118 |
+
</form>
|
119 |
+
</div>
|
120 |
+
<?php
|
121 |
+
|
122 |
+
}
|
123 |
+
|
124 |
+
function wppb_content_restriction_scripts_styles() {
|
125 |
+
|
126 |
+
wp_enqueue_script( 'wppb_content_restriction_js', plugin_dir_url( __FILE__ ) .'assets/js/content-restriction.js', array( 'jquery' ), PROFILE_BUILDER_VERSION );
|
127 |
+
wp_enqueue_style( 'wppb_content_restriction_css', plugin_dir_url( __FILE__ ) .'assets/css/content-restriction.css', array(), PROFILE_BUILDER_VERSION );
|
128 |
+
|
129 |
+
}
|
130 |
+
|
features/functions.php
CHANGED
@@ -17,6 +17,7 @@ function wppb_register_settings() {
|
|
17 |
register_setting( 'customUserListingSettings', 'customUserListingSettings' );
|
18 |
register_setting( 'reCaptchaSettings', 'reCaptchaSettings' );
|
19 |
register_setting( 'emailCustomizer', 'emailCustomizer' );
|
|
|
20 |
}
|
21 |
|
22 |
|
17 |
register_setting( 'customUserListingSettings', 'customUserListingSettings' );
|
18 |
register_setting( 'reCaptchaSettings', 'reCaptchaSettings' );
|
19 |
register_setting( 'emailCustomizer', 'emailCustomizer' );
|
20 |
+
register_setting( 'wppb_content_restriction_settings', 'wppb_content_restriction_settings' );
|
21 |
}
|
22 |
|
23 |
|
front-end/class-formbuilder.php
CHANGED
@@ -706,7 +706,7 @@ class Profile_Builder_Form_Creator{
|
|
706 |
$html = ob_get_clean();
|
707 |
return "{$html}";
|
708 |
} catch (Exception $exception) {
|
709 |
-
return '';
|
710 |
}
|
711 |
}
|
712 |
}
|
706 |
$html = ob_get_clean();
|
707 |
return "{$html}";
|
708 |
} catch (Exception $exception) {
|
709 |
+
return __( 'Something went wrong. Please try again!', 'profile-builder');
|
710 |
}
|
711 |
}
|
712 |
}
|
front-end/login.php
CHANGED
@@ -15,8 +15,11 @@ function wppb_login_form_bottom( $form_part, $args ){
|
|
15 |
$form_part .= '<input type="hidden" name="wppb_lostpassword_url" value="'.esc_url( $args['lostpassword_url'] ).'"/>';
|
16 |
$form_part .= '<input type="hidden" name="wppb_redirect_priority" value="'. esc_attr( isset( $args['redirect_priority'] ) ? $args['redirect_priority'] : '' ) .'"/>';
|
17 |
$form_part .= '<input type="hidden" name="wppb_referer_url" value="'.esc_url( isset( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : '' ).'"/>';
|
|
|
18 |
}
|
19 |
-
|
|
|
|
|
20 |
return $form_part;
|
21 |
}
|
22 |
add_filter( 'login_form_bottom', 'wppb_login_form_bottom', 10, 2 );
|
@@ -111,6 +114,16 @@ if( isset( $wppb_generalSettings['loginWith'] ) && ( $wppb_generalSettings['logi
|
|
111 |
|
112 |
// login redirect filter. used to redirect from wp-login.php if it errors out
|
113 |
function wppb_login_redirect( $redirect_to, $requested_redirect_to, $user ){
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
// if login action initialized by our form
|
115 |
if( isset( $_POST['wppb_login'] ) ){
|
116 |
if( is_wp_error( $user ) ) {
|
@@ -227,7 +240,7 @@ function wppb_front_end_login( $atts ){
|
|
227 |
// display our login errors
|
228 |
if( isset( $_GET['loginerror'] ) || isset( $_POST['loginerror'] ) ){
|
229 |
$loginerror = isset( $_GET['loginerror'] ) ? $_GET['loginerror'] : $_POST['loginerror'];
|
230 |
-
$loginerror = '<p class="wppb-error">'.
|
231 |
if( isset( $_GET['request_form_location'] ) ){
|
232 |
if( $_GET['request_form_location'] == 'widget' && !in_the_loop() ){
|
233 |
$login_form .= $loginerror;
|
@@ -299,4 +312,19 @@ function wppb_front_end_login( $atts ){
|
|
299 |
|
300 |
return apply_filters( 'wppb_login_message', $logged_in_message, $wppb_user->ID, $display_name );
|
301 |
}
|
302 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
$form_part .= '<input type="hidden" name="wppb_lostpassword_url" value="'.esc_url( $args['lostpassword_url'] ).'"/>';
|
16 |
$form_part .= '<input type="hidden" name="wppb_redirect_priority" value="'. esc_attr( isset( $args['redirect_priority'] ) ? $args['redirect_priority'] : '' ) .'"/>';
|
17 |
$form_part .= '<input type="hidden" name="wppb_referer_url" value="'.esc_url( isset( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : '' ).'"/>';
|
18 |
+
$form_part .= wp_nonce_field( 'wppb_login', 'CSRFToken' );
|
19 |
}
|
20 |
+
|
21 |
+
$form_part .= '<input type="hidden" name="wppb_redirect_check" value="true"/>';
|
22 |
+
|
23 |
return $form_part;
|
24 |
}
|
25 |
add_filter( 'login_form_bottom', 'wppb_login_form_bottom', 10, 2 );
|
114 |
|
115 |
// login redirect filter. used to redirect from wp-login.php if it errors out
|
116 |
function wppb_login_redirect( $redirect_to, $requested_redirect_to, $user ){
|
117 |
+
// custom redirect after login on default wp login form
|
118 |
+
if( ! is_wp_error( $user ) ) {
|
119 |
+
// we don't have an error make sure to remove the error from the query arg
|
120 |
+
$redirect_to = remove_query_arg( 'loginerror', $redirect_to );
|
121 |
+
|
122 |
+
// CHECK FOR REDIRECT
|
123 |
+
$redirect_to = wppb_get_redirect_url( 'normal', 'after_login', $redirect_to, $user );
|
124 |
+
$redirect_to = apply_filters( 'wppb_after_login_redirect_url', $redirect_to );
|
125 |
+
}
|
126 |
+
|
127 |
// if login action initialized by our form
|
128 |
if( isset( $_POST['wppb_login'] ) ){
|
129 |
if( is_wp_error( $user ) ) {
|
240 |
// display our login errors
|
241 |
if( isset( $_GET['loginerror'] ) || isset( $_POST['loginerror'] ) ){
|
242 |
$loginerror = isset( $_GET['loginerror'] ) ? $_GET['loginerror'] : $_POST['loginerror'];
|
243 |
+
$loginerror = '<p class="wppb-error">'. wp_kses_post( urldecode( base64_decode( $loginerror ) ) ) .'</p><!-- .error -->';
|
244 |
if( isset( $_GET['request_form_location'] ) ){
|
245 |
if( $_GET['request_form_location'] == 'widget' && !in_the_loop() ){
|
246 |
$login_form .= $loginerror;
|
312 |
|
313 |
return apply_filters( 'wppb_login_message', $logged_in_message, $wppb_user->ID, $display_name );
|
314 |
}
|
315 |
+
}
|
316 |
+
|
317 |
+
function wppb_login_security_check( $user, $password ) {
|
318 |
+
|
319 |
+
if( isset( $_POST['wppb_login'] ) ) {
|
320 |
+
if( ! isset( $_POST['CSRFToken'] ) || ! wp_verify_nonce( $_POST['CSRFToken'], 'wppb_login' ) ) {
|
321 |
+
$errorMessage = __( 'You are not allowed to do this.', 'profile-builder' );
|
322 |
+
|
323 |
+
return new WP_Error( 'wppb_login_csrf_token_error', $errorMessage );
|
324 |
+
}
|
325 |
+
}
|
326 |
+
|
327 |
+
return $user;
|
328 |
+
|
329 |
+
}
|
330 |
+
add_filter( 'wp_authenticate_user', 'wppb_login_security_check', 10, 2 );
|
front-end/register.php
CHANGED
@@ -193,4 +193,16 @@ function wppb_maybe_remove_register_shortcode( $content ){
|
|
193 |
}
|
194 |
|
195 |
return $content;
|
196 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
}
|
194 |
|
195 |
return $content;
|
196 |
+
}
|
197 |
+
|
198 |
+
/* custom redirect after registration on wp default register form */
|
199 |
+
function wppb_default_registration_redirect( $user_id ) {
|
200 |
+
|
201 |
+
$user_data = get_userdata( $user_id );
|
202 |
+
|
203 |
+
// CHECK FOR REDIRECT
|
204 |
+
$_POST['redirect_to'] = wppb_get_redirect_url( 'normal', 'after_registration', $_POST['redirect_to'], $user_data );
|
205 |
+
$_POST['redirect_to'] = apply_filters( 'wppb_after_registration_redirect_url', $_POST['redirect_to'] );
|
206 |
+
|
207 |
+
}
|
208 |
+
add_action( 'register_new_user', 'wppb_default_registration_redirect' );
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
-
Version: 2.6.
|
7 |
Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
License: GPL2
|
@@ -73,7 +73,7 @@ function wppb_free_plugin_init() {
|
|
73 |
*
|
74 |
*
|
75 |
*/
|
76 |
-
define('PROFILE_BUILDER_VERSION', '2.6.
|
77 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
78 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
79 |
define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
|
@@ -138,6 +138,7 @@ function wppb_free_plugin_init() {
|
|
138 |
}
|
139 |
include_once(WPPB_PLUGIN_DIR . '/features/login-widget/login-widget.php');
|
140 |
include_once(WPPB_PLUGIN_DIR . '/features/roles-editor/roles-editor.php');
|
|
|
141 |
|
142 |
if (file_exists(WPPB_PLUGIN_DIR . '/update/update-checker.php')) {
|
143 |
include_once(WPPB_PLUGIN_DIR . '/update/update-checker.php');
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
+
Version: 2.6.9
|
7 |
Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
License: GPL2
|
73 |
*
|
74 |
*
|
75 |
*/
|
76 |
+
define('PROFILE_BUILDER_VERSION', '2.6.9' );
|
77 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
78 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
79 |
define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
|
138 |
}
|
139 |
include_once(WPPB_PLUGIN_DIR . '/features/login-widget/login-widget.php');
|
140 |
include_once(WPPB_PLUGIN_DIR . '/features/roles-editor/roles-editor.php');
|
141 |
+
include_once(WPPB_PLUGIN_DIR . '/features/content-restriction/content-restriction.php');
|
142 |
|
143 |
if (file_exists(WPPB_PLUGIN_DIR . '/update/update-checker.php')) {
|
144 |
include_once(WPPB_PLUGIN_DIR . '/update/update-checker.php');
|
readme.txt
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
=== User registration & user profile - Profile Builder ===
|
2 |
Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungureanu, iova.mihai, barinagabriel
|
3 |
Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
4 |
-
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form
|
5 |
Requires at least: 3.1
|
6 |
-
Tested up to: 4.8.
|
7 |
-
Stable tag: 2.6.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
-
Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes.
|
12 |
|
13 |
== Description ==
|
14 |
|
@@ -50,6 +50,7 @@ Users with administrator rights have access to the following features:
|
|
50 |
* role editor: add, remove, clone and edit roles and also capabilities for these roles.
|
51 |
* reacaptcha for Profile Builder forms and WordPress default forms
|
52 |
* user role select field on register and edit profile forms
|
|
|
53 |
|
54 |
**PROFILE BUILDER PRO**
|
55 |
|
@@ -158,6 +159,14 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
158 |
12. Role Editor
|
159 |
|
160 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
= 2.6.8 =
|
162 |
* Edit other users dropdown on the frontend Edit Profile form is now a select2
|
163 |
* Fixed a potential error when submitting the Register form
|
1 |
=== User registration & user profile - Profile Builder ===
|
2 |
Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungureanu, iova.mihai, barinagabriel
|
3 |
Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
4 |
+
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction
|
5 |
Requires at least: 3.1
|
6 |
+
Tested up to: 4.8.3
|
7 |
+
Stable tag: 2.6.9
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
+
Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes. Built in Role Editor grants you control over user roles and capabilities on your site. Add Content Restriction based on user role.
|
12 |
|
13 |
== Description ==
|
14 |
|
50 |
* role editor: add, remove, clone and edit roles and also capabilities for these roles.
|
51 |
* reacaptcha for Profile Builder forms and WordPress default forms
|
52 |
* user role select field on register and edit profile forms
|
53 |
+
* content restriction based on user role
|
54 |
|
55 |
**PROFILE BUILDER PRO**
|
56 |
|
159 |
12. Role Editor
|
160 |
|
161 |
== Changelog ==
|
162 |
+
= 2.6.9 =
|
163 |
+
* Implemented Content Restriction feature
|
164 |
+
* Added nonce field on Profile Builder login form for security check
|
165 |
+
* Security improvements on login form
|
166 |
+
* Fixed an issue with po file-names that was causing random issues with different environments/FTP clients.
|
167 |
+
* Fixed a redirect loop when we log in from Paid Member Subscribtions and we had a redirect for default WordPress login
|
168 |
+
* Changed the locale for the Slovenian translation files. It was using the locale for Sierra Leone.
|
169 |
+
|
170 |
= 2.6.8 =
|
171 |
* Edit other users dropdown on the frontend Edit Profile form is now a select2
|
172 |
* Fixed a potential error when submitting the Register form
|
translation/profile-builder-sl_SI.mo
ADDED
Binary file
|
translation/profile-builder-sl_SI.po
ADDED
@@ -0,0 +1,5598 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Profile Builder in Slovenian
|
2 |
+
# This file is distributed under the same license as the Profile Builder package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2015-09-29 11:56:41+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: Profile Builder\n"
|
12 |
+
|
13 |
+
#: profile-builder-2.0/admin/general-settings.php:154
|
14 |
+
msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: profile-builder-2.0/admin/general-settings.php:146
|
18 |
+
msgid "\"Roles Editor\" Activated:"
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: profile-builder-2.0/features/roles-editor/roles-editor.php:300
|
22 |
+
msgid "M j, Y @ G:i"
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: profile-builder-2.0/front-end/recover.php:117
|
26 |
+
msgid "Please enter your email address."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: profile-builder-2.0/admin/manage-fields.php:127
|
30 |
+
msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244
|
34 |
+
msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: profile-builder-2.0/admin/manage-fields.php:1217
|
38 |
+
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."
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240
|
42 |
+
msgid "Multiple Registration and Edit Profile form settings Redirects"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: profile-builder-2.0/admin/register-version.php:251
|
46 |
+
msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s</p>"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: profile-builder-2.0/admin/register-version.php:246
|
50 |
+
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s</p>"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: profile-builder-2.0/front-end/recover.php:159
|
54 |
+
msgid "You are already logged in. You can change your password on the edit profile form."
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70
|
58 |
+
msgid "Your site url will look like this:<br>"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: profile-builder-2.0/features/functions.php:909
|
62 |
+
msgid "<br><br>You can visit your site at "
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: profile-builder-2.0/features/functions.php:896
|
66 |
+
msgid "<br><br>Also, you will be able to visit your site at "
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138
|
70 |
+
msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116
|
74 |
+
msgid "Site Title"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93
|
78 |
+
msgid "Site URL slug"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63
|
82 |
+
msgid "Yes, I'd like to create a new site"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:36
|
86 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:118
|
87 |
+
msgid "Blog URL"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: profile-builder-2.0/admin/admin-functions.php:44
|
91 |
+
msgid "Blog Details - only appears on the Registration page!"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: profile-builder-2.0/admin/manage-fields.php:222
|
95 |
+
msgid "Blog Details"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:239
|
99 |
+
msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579
|
103 |
+
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1320
|
107 |
+
msgid "View Map"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267
|
111 |
+
#: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367
|
112 |
+
#: pb-add-on-woocommerce/index.php:493
|
113 |
+
msgid "Address line 2"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: pb-add-on-woocommerce/index.php:256
|
117 |
+
msgid "Billing Fields"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: pb-add-on-woocommerce/index.php:256
|
121 |
+
msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: pb-add-on-woocommerce/index.php:257
|
125 |
+
msgid "Billing Fields Order"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: pb-add-on-woocommerce/index.php:257
|
129 |
+
msgid "Save the billing fields order from the billing fields checkboxes"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: pb-add-on-woocommerce/index.php:258
|
133 |
+
msgid "Billing Fields Name"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: pb-add-on-woocommerce/index.php:258
|
137 |
+
msgid "Save the billing fields names"
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: pb-add-on-woocommerce/index.php:275
|
141 |
+
msgid "Shipping Fields"
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: pb-add-on-woocommerce/index.php:275
|
145 |
+
msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: pb-add-on-woocommerce/index.php:276
|
149 |
+
msgid "Shipping Fields Order"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: pb-add-on-woocommerce/index.php:276
|
153 |
+
msgid "Save the shipping fields order from the billing fields checkboxes"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: pb-add-on-woocommerce/index.php:277
|
157 |
+
msgid "Shipping Fields Name"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: pb-add-on-woocommerce/index.php:277
|
161 |
+
msgid "Save the shipping fields names"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: pb-add-on-woocommerce/index.php:305
|
165 |
+
msgid "Field Name"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: pb-add-on-woocommerce/index.php:369
|
169 |
+
msgid "Click to edit "
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: pb-add-on-woocommerce/woo-checkout-field-support.php:368
|
173 |
+
msgid "is not a valid phone number."
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: pb-add-on-woocommerce/woo-checkout-field-support.php:377
|
177 |
+
msgid "is not a number."
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: pb-add-on-woocommerce/woo-checkout-field-support.php:382
|
181 |
+
msgid "must be a multiplier of "
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: pb-add-on-woocommerce/woo-checkout-field-support.php:387
|
185 |
+
msgid "must be a greater than or equal to "
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: pb-add-on-woocommerce/woo-checkout-field-support.php:392
|
189 |
+
msgid "must be less than or equal to "
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: profile-builder-2.0/admin/add-ons.php:103
|
193 |
+
msgid "Available in Hobbyist and Pro Versions"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: profile-builder-2.0/admin/add-ons.php:105
|
197 |
+
msgid "Available in All Versions"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: profile-builder-2.0/admin/add-ons.php:148
|
201 |
+
msgid "Learn More"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: profile-builder-2.0/admin/basic-info.php:99
|
205 |
+
msgid "Timepicker"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: profile-builder-2.0/admin/basic-info.php:100
|
209 |
+
msgid "Colorpicker"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: profile-builder-2.0/admin/basic-info.php:103
|
213 |
+
msgid "Currency Select"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: profile-builder-2.0/admin/basic-info.php:109
|
217 |
+
msgid "Number"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: profile-builder-2.0/admin/basic-info.php:114
|
221 |
+
msgid "Validation"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: profile-builder-2.0/admin/basic-info.php:115
|
225 |
+
msgid "Map"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: profile-builder-2.0/admin/basic-info.php:116
|
229 |
+
msgid "HTML"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: profile-builder-2.0/admin/basic-info.php:162
|
233 |
+
#: profile-builder-2.0/modules/modules.php:117
|
234 |
+
msgid "Repeater Fields"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: profile-builder-2.0/admin/basic-info.php:163
|
238 |
+
msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: profile-builder-2.0/admin/general-settings.php:59
|
242 |
+
msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: profile-builder-2.0/admin/manage-fields.php:120
|
246 |
+
msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: profile-builder-2.0/admin/manage-fields.php:143
|
250 |
+
msgid "Show Currency Symbol"
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: profile-builder-2.0/admin/manage-fields.php:143
|
254 |
+
msgid "Whether the currency symbol should be displayed after the currency name in the select option."
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: profile-builder-2.0/admin/manage-fields.php:144
|
258 |
+
msgid "Show Post Type"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: profile-builder-2.0/admin/manage-fields.php:144
|
262 |
+
msgid "Posts from what post type will be displayed in the select."
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: profile-builder-2.0/admin/manage-fields.php:145
|
266 |
+
msgid "Allowable Values"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: profile-builder-2.0/admin/manage-fields.php:145
|
270 |
+
msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: profile-builder-2.0/admin/manage-fields.php:146
|
274 |
+
msgid "Error Message"
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: profile-builder-2.0/admin/manage-fields.php:146
|
278 |
+
msgid "Set a custom error message that will be displayed to the user."
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: profile-builder-2.0/admin/manage-fields.php:147
|
282 |
+
msgid "Time Format"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: profile-builder-2.0/admin/manage-fields.php:147
|
286 |
+
msgid "Specify the time format."
|
287 |
+
msgstr ""
|
288 |
+
|
289 |
+
#: profile-builder-2.0/admin/manage-fields.php:148
|
290 |
+
msgid "Google Maps API Key"
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: profile-builder-2.0/admin/manage-fields.php:148
|
294 |
+
msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: profile-builder-2.0/admin/manage-fields.php:149
|
298 |
+
msgid "Default Latitude"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: profile-builder-2.0/admin/manage-fields.php:149
|
302 |
+
msgid "The latitude at which the map should be displayed when no pins are attached."
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: profile-builder-2.0/admin/manage-fields.php:150
|
306 |
+
msgid "Default Longitude"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: profile-builder-2.0/admin/manage-fields.php:150
|
310 |
+
msgid "The longitude at which the map should be displayed when no pins are attached."
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: profile-builder-2.0/admin/manage-fields.php:151
|
314 |
+
msgid "Default Zoom Level"
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: profile-builder-2.0/admin/manage-fields.php:151
|
318 |
+
msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: profile-builder-2.0/admin/manage-fields.php:152
|
322 |
+
msgid "Map Height"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: profile-builder-2.0/admin/manage-fields.php:152
|
326 |
+
msgid "The height of the map."
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: profile-builder-2.0/admin/manage-fields.php:154
|
330 |
+
msgid "HTML Content"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: profile-builder-2.0/admin/manage-fields.php:154
|
334 |
+
msgid "Add your HTML (or text) content"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: profile-builder-2.0/admin/manage-fields.php:155
|
338 |
+
msgid "Phone Format"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: profile-builder-2.0/admin/manage-fields.php:155
|
342 |
+
msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: profile-builder-2.0/admin/manage-fields.php:155
|
346 |
+
msgid "Eg. (###) ###-####"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: profile-builder-2.0/admin/manage-fields.php:155
|
350 |
+
msgid "Empty field won't check for correct phone number."
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: profile-builder-2.0/admin/manage-fields.php:156
|
354 |
+
msgid "Heading Tag"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: profile-builder-2.0/admin/manage-fields.php:156
|
358 |
+
msgid "Change heading field size on front-end forms"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: profile-builder-2.0/admin/manage-fields.php:157
|
362 |
+
msgid "Min Number Value"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: profile-builder-2.0/admin/manage-fields.php:157
|
366 |
+
msgid "Min allowed number value (0 to allow only positive numbers)"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: profile-builder-2.0/admin/manage-fields.php:157
|
370 |
+
msgid "Leave it empty for no min value"
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: profile-builder-2.0/admin/manage-fields.php:158
|
374 |
+
msgid "Max Number Value"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: profile-builder-2.0/admin/manage-fields.php:158
|
378 |
+
msgid "Max allowed number value (0 to allow only negative numbers)"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: profile-builder-2.0/admin/manage-fields.php:158
|
382 |
+
msgid "Leave it empty for no max value"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: profile-builder-2.0/admin/manage-fields.php:159
|
386 |
+
msgid "Number Step Value"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: profile-builder-2.0/admin/manage-fields.php:159
|
390 |
+
msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: profile-builder-2.0/admin/manage-fields.php:159
|
394 |
+
msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: profile-builder-2.0/admin/manage-fields.php:159
|
398 |
+
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)"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: profile-builder-2.0/admin/manage-fields.php:159
|
402 |
+
msgid "Leave it empty for no restriction"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: profile-builder-2.0/admin/manage-fields.php:564
|
406 |
+
msgid "Albania Lek"
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: profile-builder-2.0/admin/manage-fields.php:565
|
410 |
+
msgid "Afghanistan Afghani"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: profile-builder-2.0/admin/manage-fields.php:566
|
414 |
+
msgid "Argentina Peso"
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: profile-builder-2.0/admin/manage-fields.php:567
|
418 |
+
msgid "Aruba Guilder"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: profile-builder-2.0/admin/manage-fields.php:568
|
422 |
+
msgid "Australia Dollar"
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: profile-builder-2.0/admin/manage-fields.php:569
|
426 |
+
msgid "Azerbaijan New Manat"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: profile-builder-2.0/admin/manage-fields.php:570
|
430 |
+
msgid "Bahamas Dollar"
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: profile-builder-2.0/admin/manage-fields.php:571
|
434 |
+
msgid "Barbados Dollar"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: profile-builder-2.0/admin/manage-fields.php:572
|
438 |
+
msgid "Bangladeshi taka"
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: profile-builder-2.0/admin/manage-fields.php:573
|
442 |
+
msgid "Belarus Ruble"
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: profile-builder-2.0/admin/manage-fields.php:574
|
446 |
+
msgid "Belize Dollar"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: profile-builder-2.0/admin/manage-fields.php:575
|
450 |
+
msgid "Bermuda Dollar"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: profile-builder-2.0/admin/manage-fields.php:576
|
454 |
+
msgid "Bolivia Boliviano"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: profile-builder-2.0/admin/manage-fields.php:577
|
458 |
+
msgid "Bosnia and Herzegovina Convertible Marka"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: profile-builder-2.0/admin/manage-fields.php:578
|
462 |
+
msgid "Botswana Pula"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: profile-builder-2.0/admin/manage-fields.php:579
|
466 |
+
msgid "Bulgaria Lev"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: profile-builder-2.0/admin/manage-fields.php:580
|
470 |
+
msgid "Brazil Real"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: profile-builder-2.0/admin/manage-fields.php:581
|
474 |
+
msgid "Brunei Darussalam Dollar"
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: profile-builder-2.0/admin/manage-fields.php:582
|
478 |
+
msgid "Cambodia Riel"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: profile-builder-2.0/admin/manage-fields.php:583
|
482 |
+
msgid "Canada Dollar"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: profile-builder-2.0/admin/manage-fields.php:584
|
486 |
+
msgid "Cayman Islands Dollar"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: profile-builder-2.0/admin/manage-fields.php:585
|
490 |
+
msgid "Chile Peso"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: profile-builder-2.0/admin/manage-fields.php:586
|
494 |
+
msgid "China Yuan Renminbi"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: profile-builder-2.0/admin/manage-fields.php:587
|
498 |
+
msgid "Colombia Peso"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: profile-builder-2.0/admin/manage-fields.php:588
|
502 |
+
msgid "Costa Rica Colon"
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: profile-builder-2.0/admin/manage-fields.php:589
|
506 |
+
msgid "Croatia Kuna"
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: profile-builder-2.0/admin/manage-fields.php:590
|
510 |
+
msgid "Cuba Peso"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: profile-builder-2.0/admin/manage-fields.php:591
|
514 |
+
msgid "Czech Republic Koruna"
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: profile-builder-2.0/admin/manage-fields.php:592
|
518 |
+
msgid "Denmark Krone"
|
519 |
+
msgstr ""
|
520 |
+
|
521 |
+
#: profile-builder-2.0/admin/manage-fields.php:593
|
522 |
+
msgid "Dominican Republic Peso"
|
523 |
+
msgstr ""
|
524 |
+
|
525 |
+
#: profile-builder-2.0/admin/manage-fields.php:594
|
526 |
+
msgid "East Caribbean Dollar"
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: profile-builder-2.0/admin/manage-fields.php:595
|
530 |
+
msgid "Egypt Pound"
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
#: profile-builder-2.0/admin/manage-fields.php:596
|
534 |
+
msgid "El Salvador Colon"
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: profile-builder-2.0/admin/manage-fields.php:597
|
538 |
+
msgid "Estonia Kroon"
|
539 |
+
msgstr ""
|
540 |
+
|
541 |
+
#: profile-builder-2.0/admin/manage-fields.php:598
|
542 |
+
msgid "Euro"
|
543 |
+
msgstr ""
|
544 |
+
|
545 |
+
#: profile-builder-2.0/admin/manage-fields.php:599
|
546 |
+
msgid "Falkland Islands (Malvinas) Pound"
|
547 |
+
msgstr ""
|
548 |
+
|
549 |
+
#: profile-builder-2.0/admin/manage-fields.php:600
|
550 |
+
msgid "Fiji Dollar"
|
551 |
+
msgstr ""
|
552 |
+
|
553 |
+
#: profile-builder-2.0/admin/manage-fields.php:601
|
554 |
+
msgid "Ghana Cedis"
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: profile-builder-2.0/admin/manage-fields.php:602
|
558 |
+
msgid "Gibraltar Pound"
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: profile-builder-2.0/admin/manage-fields.php:603
|
562 |
+
msgid "Guatemala Quetzal"
|
563 |
+
msgstr ""
|
564 |
+
|
565 |
+
#: profile-builder-2.0/admin/manage-fields.php:604
|
566 |
+
msgid "Guernsey Pound"
|
567 |
+
msgstr ""
|
568 |
+
|
569 |
+
#: profile-builder-2.0/admin/manage-fields.php:605
|
570 |
+
msgid "Guyana Dollar"
|
571 |
+
msgstr ""
|
572 |
+
|
573 |
+
#: profile-builder-2.0/admin/manage-fields.php:606
|
574 |
+
msgid "Honduras Lempira"
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: profile-builder-2.0/admin/manage-fields.php:607
|
578 |
+
msgid "Hong Kong Dollar"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: profile-builder-2.0/admin/manage-fields.php:608
|
582 |
+
msgid "Hungary Forint"
|
583 |
+
msgstr ""
|
584 |
+
|
585 |
+
#: profile-builder-2.0/admin/manage-fields.php:609
|
586 |
+
msgid "Iceland Krona"
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#: profile-builder-2.0/admin/manage-fields.php:610
|
590 |
+
msgid "India Rupee"
|
591 |
+
msgstr ""
|
592 |
+
|
593 |
+
#: profile-builder-2.0/admin/manage-fields.php:611
|
594 |
+
msgid "Indonesia Rupiah"
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#: profile-builder-2.0/admin/manage-fields.php:612
|
598 |
+
msgid "Iran Rial"
|
599 |
+
msgstr ""
|
600 |
+
|
601 |
+
#: profile-builder-2.0/admin/manage-fields.php:613
|
602 |
+
msgid "Isle of Man Pound"
|
603 |
+
msgstr ""
|
604 |
+
|
605 |
+
#: profile-builder-2.0/admin/manage-fields.php:614
|
606 |
+
msgid "Israel Shekel"
|
607 |
+
msgstr ""
|
608 |
+
|
609 |
+
#: profile-builder-2.0/admin/manage-fields.php:615
|
610 |
+
msgid "Jamaica Dollar"
|
611 |
+
msgstr ""
|
612 |
+
|
613 |
+
#: profile-builder-2.0/admin/manage-fields.php:616
|
614 |
+
msgid "Japan Yen"
|
615 |
+
msgstr ""
|
616 |
+
|
617 |
+
#: profile-builder-2.0/admin/manage-fields.php:617
|
618 |
+
msgid "Jersey Pound"
|
619 |
+
msgstr ""
|
620 |
+
|
621 |
+
#: profile-builder-2.0/admin/manage-fields.php:618
|
622 |
+
msgid "Kazakhstan Tenge"
|
623 |
+
msgstr ""
|
624 |
+
|
625 |
+
#: profile-builder-2.0/admin/manage-fields.php:619
|
626 |
+
msgid "Korea (North) Won"
|
627 |
+
msgstr ""
|
628 |
+
|
629 |
+
#: profile-builder-2.0/admin/manage-fields.php:620
|
630 |
+
msgid "Korea (South) Won"
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
#: profile-builder-2.0/admin/manage-fields.php:621
|
634 |
+
msgid "Kyrgyzstan Som"
|
635 |
+
msgstr ""
|
636 |
+
|
637 |
+
#: profile-builder-2.0/admin/manage-fields.php:622
|
638 |
+
msgid "Laos Kip"
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: profile-builder-2.0/admin/manage-fields.php:623
|
642 |
+
msgid "Latvia Lat"
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: profile-builder-2.0/admin/manage-fields.php:624
|
646 |
+
msgid "Lebanon Pound"
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
+
#: profile-builder-2.0/admin/manage-fields.php:625
|
650 |
+
msgid "Liberia Dollar"
|
651 |
+
msgstr ""
|
652 |
+
|
653 |
+
#: profile-builder-2.0/admin/manage-fields.php:626
|
654 |
+
msgid "Lithuania Litas"
|
655 |
+
msgstr ""
|
656 |
+
|
657 |
+
#: profile-builder-2.0/admin/manage-fields.php:627
|
658 |
+
msgid "Macedonia Denar"
|
659 |
+
msgstr ""
|
660 |
+
|
661 |
+
#: profile-builder-2.0/admin/manage-fields.php:628
|
662 |
+
msgid "Malaysia Ringgit"
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: profile-builder-2.0/admin/manage-fields.php:629
|
666 |
+
msgid "Mauritius Rupee"
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: profile-builder-2.0/admin/manage-fields.php:630
|
670 |
+
msgid "Mexico Peso"
|
671 |
+
msgstr ""
|
672 |
+
|
673 |
+
#: profile-builder-2.0/admin/manage-fields.php:631
|
674 |
+
msgid "Mongolia Tughrik"
|
675 |
+
msgstr ""
|
676 |
+
|
677 |
+
#: profile-builder-2.0/admin/manage-fields.php:632
|
678 |
+
msgid "Mozambique Metical"
|
679 |
+
msgstr ""
|
680 |
+
|
681 |
+
#: profile-builder-2.0/admin/manage-fields.php:633
|
682 |
+
msgid "Namibia Dollar"
|
683 |
+
msgstr ""
|
684 |
+
|
685 |
+
#: profile-builder-2.0/admin/manage-fields.php:634
|
686 |
+
msgid "Nepal Rupee"
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
+
#: profile-builder-2.0/admin/manage-fields.php:635
|
690 |
+
msgid "Netherlands Antilles Guilder"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: profile-builder-2.0/admin/manage-fields.php:636
|
694 |
+
msgid "New Zealand Dollar"
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: profile-builder-2.0/admin/manage-fields.php:637
|
698 |
+
msgid "Nicaragua Cordoba"
|
699 |
+
msgstr ""
|
700 |
+
|
701 |
+
#: profile-builder-2.0/admin/manage-fields.php:638
|
702 |
+
msgid "Nigeria Naira"
|
703 |
+
msgstr ""
|
704 |
+
|
705 |
+
#: profile-builder-2.0/admin/manage-fields.php:639
|
706 |
+
msgid "Norway Krone"
|
707 |
+
msgstr ""
|
708 |
+
|
709 |
+
#: profile-builder-2.0/admin/manage-fields.php:640
|
710 |
+
msgid "Oman Rial"
|
711 |
+
msgstr ""
|
712 |
+
|
713 |
+
#: profile-builder-2.0/admin/manage-fields.php:641
|
714 |
+
msgid "Pakistan Rupee"
|
715 |
+
msgstr ""
|
716 |
+
|
717 |
+
#: profile-builder-2.0/admin/manage-fields.php:642
|
718 |
+
msgid "Panama Balboa"
|
719 |
+
msgstr ""
|
720 |
+
|
721 |
+
#: profile-builder-2.0/admin/manage-fields.php:643
|
722 |
+
msgid "Paraguay Guarani"
|
723 |
+
msgstr ""
|
724 |
+
|
725 |
+
#: profile-builder-2.0/admin/manage-fields.php:644
|
726 |
+
msgid "Peru Nuevo Sol"
|
727 |
+
msgstr ""
|
728 |
+
|
729 |
+
#: profile-builder-2.0/admin/manage-fields.php:645
|
730 |
+
msgid "Philippines Peso"
|
731 |
+
msgstr ""
|
732 |
+
|
733 |
+
#: profile-builder-2.0/admin/manage-fields.php:646
|
734 |
+
msgid "Poland Zloty"
|
735 |
+
msgstr ""
|
736 |
+
|
737 |
+
#: profile-builder-2.0/admin/manage-fields.php:647
|
738 |
+
msgid "Qatar Riyal"
|
739 |
+
msgstr ""
|
740 |
+
|
741 |
+
#: profile-builder-2.0/admin/manage-fields.php:648
|
742 |
+
msgid "Romania New Leu"
|
743 |
+
msgstr ""
|
744 |
+
|
745 |
+
#: profile-builder-2.0/admin/manage-fields.php:649
|
746 |
+
msgid "Russia Ruble"
|
747 |
+
msgstr ""
|
748 |
+
|
749 |
+
#: profile-builder-2.0/admin/manage-fields.php:650
|
750 |
+
msgid "Saint Helena Pound"
|
751 |
+
msgstr ""
|
752 |
+
|
753 |
+
#: profile-builder-2.0/admin/manage-fields.php:651
|
754 |
+
msgid "Saudi Arabia Riyal"
|
755 |
+
msgstr ""
|
756 |
+
|
757 |
+
#: profile-builder-2.0/admin/manage-fields.php:652
|
758 |
+
msgid "Serbia Dinar"
|
759 |
+
msgstr ""
|
760 |
+
|
761 |
+
#: profile-builder-2.0/admin/manage-fields.php:653
|
762 |
+
msgid "Seychelles Rupee"
|
763 |
+
msgstr ""
|
764 |
+
|
765 |
+
#: profile-builder-2.0/admin/manage-fields.php:654
|
766 |
+
msgid "Singapore Dollar"
|
767 |
+
msgstr ""
|
768 |
+
|
769 |
+
#: profile-builder-2.0/admin/manage-fields.php:655
|
770 |
+
msgid "Solomon Islands Dollar"
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: profile-builder-2.0/admin/manage-fields.php:656
|
774 |
+
msgid "Somalia Shilling"
|
775 |
+
msgstr ""
|
776 |
+
|
777 |
+
#: profile-builder-2.0/admin/manage-fields.php:657
|
778 |
+
msgid "South Africa Rand"
|
779 |
+
msgstr ""
|
780 |
+
|
781 |
+
#: profile-builder-2.0/admin/manage-fields.php:658
|
782 |
+
msgid "Sri Lanka Rupee"
|
783 |
+
msgstr ""
|
784 |
+
|
785 |
+
#: profile-builder-2.0/admin/manage-fields.php:659
|
786 |
+
msgid "Sweden Krona"
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: profile-builder-2.0/admin/manage-fields.php:660
|
790 |
+
msgid "Switzerland Franc"
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: profile-builder-2.0/admin/manage-fields.php:661
|
794 |
+
msgid "Suriname Dollar"
|
795 |
+
msgstr ""
|
796 |
+
|
797 |
+
#: profile-builder-2.0/admin/manage-fields.php:662
|
798 |
+
msgid "Syria Pound"
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: profile-builder-2.0/admin/manage-fields.php:663
|
802 |
+
msgid "Taiwan New Dollar"
|
803 |
+
msgstr ""
|
804 |
+
|
805 |
+
#: profile-builder-2.0/admin/manage-fields.php:664
|
806 |
+
msgid "Thailand Baht"
|
807 |
+
msgstr ""
|
808 |
+
|
809 |
+
#: profile-builder-2.0/admin/manage-fields.php:665
|
810 |
+
msgid "Trinidad and Tobago Dollar"
|
811 |
+
msgstr ""
|
812 |
+
|
813 |
+
#: profile-builder-2.0/admin/manage-fields.php:666
|
814 |
+
#: profile-builder-2.0/admin/manage-fields.php:667
|
815 |
+
msgid "Turkey Lira"
|
816 |
+
msgstr ""
|
817 |
+
|
818 |
+
#: profile-builder-2.0/admin/manage-fields.php:668
|
819 |
+
msgid "Tuvalu Dollar"
|
820 |
+
msgstr ""
|
821 |
+
|
822 |
+
#: profile-builder-2.0/admin/manage-fields.php:669
|
823 |
+
msgid "Ukraine Hryvna"
|
824 |
+
msgstr ""
|
825 |
+
|
826 |
+
#: profile-builder-2.0/admin/manage-fields.php:670
|
827 |
+
msgid "United Kingdom Pound"
|
828 |
+
msgstr ""
|
829 |
+
|
830 |
+
#: profile-builder-2.0/admin/manage-fields.php:671
|
831 |
+
msgid "Uganda Shilling"
|
832 |
+
msgstr ""
|
833 |
+
|
834 |
+
#: profile-builder-2.0/admin/manage-fields.php:672
|
835 |
+
msgid "US Dollar"
|
836 |
+
msgstr ""
|
837 |
+
|
838 |
+
#: profile-builder-2.0/admin/manage-fields.php:673
|
839 |
+
msgid "Uruguay Peso"
|
840 |
+
msgstr ""
|
841 |
+
|
842 |
+
#: profile-builder-2.0/admin/manage-fields.php:674
|
843 |
+
msgid "Uzbekistan Som"
|
844 |
+
msgstr ""
|
845 |
+
|
846 |
+
#: profile-builder-2.0/admin/manage-fields.php:675
|
847 |
+
msgid "Venezuela Bolivar"
|
848 |
+
msgstr ""
|
849 |
+
|
850 |
+
#: profile-builder-2.0/admin/manage-fields.php:676
|
851 |
+
msgid "Viet Nam Dong"
|
852 |
+
msgstr ""
|
853 |
+
|
854 |
+
#: profile-builder-2.0/admin/manage-fields.php:677
|
855 |
+
msgid "Yemen Rial"
|
856 |
+
msgstr ""
|
857 |
+
|
858 |
+
#: profile-builder-2.0/admin/manage-fields.php:678
|
859 |
+
msgid "Zimbabwe Dollar"
|
860 |
+
msgstr ""
|
861 |
+
|
862 |
+
#: profile-builder-2.0/admin/manage-fields.php:1097
|
863 |
+
msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
|
864 |
+
msgstr ""
|
865 |
+
|
866 |
+
#: profile-builder-2.0/admin/manage-fields.php:1314
|
867 |
+
msgid "Search Location"
|
868 |
+
msgstr ""
|
869 |
+
|
870 |
+
#: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754
|
871 |
+
msgid "You are not allowed to do this."
|
872 |
+
msgstr ""
|
873 |
+
|
874 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461
|
875 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460
|
876 |
+
msgid "Search Users"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
+
#: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
|
880 |
+
msgid "Conditional Logic"
|
881 |
+
msgstr ""
|
882 |
+
|
883 |
+
#: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79
|
884 |
+
msgid "Conditional Rules"
|
885 |
+
msgstr ""
|
886 |
+
|
887 |
+
#: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448
|
888 |
+
msgid "This field has conditional logic enabled."
|
889 |
+
msgstr ""
|
890 |
+
|
891 |
+
#: profile-builder-2.0/features/functions.php:685
|
892 |
+
msgid "Incorrect phone number"
|
893 |
+
msgstr ""
|
894 |
+
|
895 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:124
|
896 |
+
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."
|
897 |
+
msgstr ""
|
898 |
+
|
899 |
+
#: profile-builder-2.0/front-end/extra-fields/map/map.php:46
|
900 |
+
#: profile-builder-2.0/front-end/extra-fields/map/map.php:69
|
901 |
+
msgid "Please add the Google Maps API key for this field."
|
902 |
+
msgstr ""
|
903 |
+
|
904 |
+
#: profile-builder-2.0/front-end/extra-fields/map/map.php:134
|
905 |
+
msgid "Something went wrong. Please try again."
|
906 |
+
msgstr ""
|
907 |
+
|
908 |
+
#: profile-builder-2.0/front-end/extra-fields/number/number.php:69
|
909 |
+
msgid "Please enter numbers only"
|
910 |
+
msgstr ""
|
911 |
+
|
912 |
+
#: profile-builder-2.0/front-end/extra-fields/number/number.php:73
|
913 |
+
msgid "Value must be a multiplier of %1$s"
|
914 |
+
msgstr ""
|
915 |
+
|
916 |
+
#: profile-builder-2.0/front-end/extra-fields/number/number.php:77
|
917 |
+
msgid "Value must be greater than or equal to %1$s"
|
918 |
+
msgstr ""
|
919 |
+
|
920 |
+
#: profile-builder-2.0/front-end/extra-fields/number/number.php:81
|
921 |
+
msgid "Value must be less than or equal to %1$s"
|
922 |
+
msgstr ""
|
923 |
+
|
924 |
+
#: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22
|
925 |
+
msgid "Required phone number format: "
|
926 |
+
msgstr ""
|
927 |
+
|
928 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
929 |
+
msgid "Bolivia, __( Plurinational State of"
|
930 |
+
msgstr ""
|
931 |
+
|
932 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
933 |
+
msgid "Bonaire, __( Sint Eustatius and Saba"
|
934 |
+
msgstr ""
|
935 |
+
|
936 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
937 |
+
msgid "Brunei Darussalam"
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
941 |
+
msgid "Cabo Verde"
|
942 |
+
msgstr ""
|
943 |
+
|
944 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
945 |
+
msgid "Cocos (Keeling) Islands"
|
946 |
+
msgstr ""
|
947 |
+
|
948 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
949 |
+
msgid "Congo"
|
950 |
+
msgstr ""
|
951 |
+
|
952 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
953 |
+
msgid "Congo, __( the Democratic Republic of the"
|
954 |
+
msgstr ""
|
955 |
+
|
956 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
957 |
+
msgid "Cote dIvoire"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
961 |
+
msgid "Falkland Islands (Malvinas)"
|
962 |
+
msgstr ""
|
963 |
+
|
964 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
965 |
+
msgid "Holy See (Vatican City State)"
|
966 |
+
msgstr ""
|
967 |
+
|
968 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
969 |
+
msgid "Iran, __( Islamic Republic of"
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
973 |
+
msgid "Korea, __( Democratic Peoples Republic of"
|
974 |
+
msgstr ""
|
975 |
+
|
976 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
977 |
+
msgid "Korea, __( Republic of"
|
978 |
+
msgstr ""
|
979 |
+
|
980 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
981 |
+
msgid "Lao Peoples Democratic Republic"
|
982 |
+
msgstr ""
|
983 |
+
|
984 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
985 |
+
msgid "Macedonia, __( the former Yugoslav Republic of"
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
989 |
+
msgid "Micronesia, __( Federated States of"
|
990 |
+
msgstr ""
|
991 |
+
|
992 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
993 |
+
msgid "Moldova, __( Republic of"
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
997 |
+
msgid "Palestine, __( State of"
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1001 |
+
msgid "Russian Federation"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1005 |
+
msgid "Saint Helena, __( Ascension and Tristan da Cunha"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1009 |
+
msgid "Saint Martin (French part)"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1013 |
+
msgid "Sint Maarten (Dutch part)"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1017 |
+
msgid "Syrian Arab Republic"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1021 |
+
msgid "Taiwan, __( Province of China"
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1025 |
+
msgid "Tanzania, __( United Republic of"
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1029 |
+
msgid "Timor-Leste"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1033 |
+
msgid "Venezuela, __( Bolivarian Republic of"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1037 |
+
msgid "Viet Nam"
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1041 |
+
msgid "Virgin Islands, __( British"
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1045 |
+
msgid "Virgin Islands, __( U.S."
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:11
|
1049 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:186
|
1050 |
+
msgid "User Fields Tags"
|
1051 |
+
msgstr ""
|
1052 |
+
|
1053 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:479
|
1054 |
+
msgid "The users selected password at signup"
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278
|
1058 |
+
msgid "[{{site_name}}] Notice of Email Change"
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289
|
1062 |
+
msgid "Changed Email Address Notification"
|
1063 |
+
msgstr ""
|
1064 |
+
|
1065 |
+
#: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
|
1066 |
+
msgid "Limit"
|
1067 |
+
msgstr ""
|
1068 |
+
|
1069 |
+
#: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
|
1070 |
+
msgid "Enable limit to the number of fields to be generated by users in front end forms "
|
1071 |
+
msgstr ""
|
1072 |
+
|
1073 |
+
#: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
|
1074 |
+
msgid "General Limit"
|
1075 |
+
msgstr ""
|
1076 |
+
|
1077 |
+
#: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
|
1078 |
+
msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
|
1079 |
+
msgstr ""
|
1080 |
+
|
1081 |
+
#: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
|
1082 |
+
msgid "Limit reached message"
|
1083 |
+
msgstr ""
|
1084 |
+
|
1085 |
+
#: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
|
1086 |
+
msgid "The maximum number of fields has been reached."
|
1087 |
+
msgstr ""
|
1088 |
+
|
1089 |
+
#: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
|
1090 |
+
msgid "The popup message to display when the limit of repeater groups is reached."
|
1091 |
+
msgstr ""
|
1092 |
+
|
1093 |
+
#: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
|
1094 |
+
msgid "Limit per Role"
|
1095 |
+
msgstr ""
|
1096 |
+
|
1097 |
+
#: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
|
1098 |
+
msgid "Leave 0 for unlimited."
|
1099 |
+
msgstr ""
|
1100 |
+
|
1101 |
+
#: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
|
1102 |
+
msgid "Repeated field group"
|
1103 |
+
msgstr ""
|
1104 |
+
|
1105 |
+
#: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
|
1106 |
+
msgid "Manage field or group of fields that will be repeatable."
|
1107 |
+
msgstr ""
|
1108 |
+
|
1109 |
+
#: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259
|
1110 |
+
msgid "Edit field group"
|
1111 |
+
msgstr ""
|
1112 |
+
|
1113 |
+
#: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260
|
1114 |
+
msgid "Repeatable fields saved!"
|
1115 |
+
msgstr ""
|
1116 |
+
|
1117 |
+
#: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277
|
1118 |
+
#: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326
|
1119 |
+
msgid "Please enter a unique field title.\n"
|
1120 |
+
msgstr ""
|
1121 |
+
|
1122 |
+
#: profile-builder-2.0/modules/repeater-field/repeater-field.php:267
|
1123 |
+
msgid "Are you sure you want to delete this?"
|
1124 |
+
msgstr ""
|
1125 |
+
|
1126 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:192
|
1127 |
+
msgid "Sort Tags"
|
1128 |
+
msgstr ""
|
1129 |
+
|
1130 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:201
|
1131 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2308
|
1132 |
+
msgid "Faceted Menus"
|
1133 |
+
msgstr ""
|
1134 |
+
|
1135 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:202
|
1136 |
+
msgid "User Count"
|
1137 |
+
msgstr ""
|
1138 |
+
|
1139 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1553
|
1140 |
+
msgid "Show All"
|
1141 |
+
msgstr ""
|
1142 |
+
|
1143 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1710
|
1144 |
+
msgid "No options available"
|
1145 |
+
msgstr ""
|
1146 |
+
|
1147 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1861
|
1148 |
+
msgid "Remove All Filters"
|
1149 |
+
msgstr ""
|
1150 |
+
|
1151 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2298
|
1152 |
+
msgid "Label"
|
1153 |
+
msgstr ""
|
1154 |
+
|
1155 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2298
|
1156 |
+
msgid "Choose the facet name that appears on the frontend"
|
1157 |
+
msgstr ""
|
1158 |
+
|
1159 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2299
|
1160 |
+
msgid "Facet Type"
|
1161 |
+
msgstr ""
|
1162 |
+
|
1163 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2299
|
1164 |
+
msgid "Choose the facet menu type"
|
1165 |
+
msgstr ""
|
1166 |
+
|
1167 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2300
|
1168 |
+
msgid "Facet Meta"
|
1169 |
+
msgstr ""
|
1170 |
+
|
1171 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2300
|
1172 |
+
msgid "Choose the meta field for the facet menu"
|
1173 |
+
msgstr ""
|
1174 |
+
|
1175 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2301
|
1176 |
+
msgid "Behaviour"
|
1177 |
+
msgstr ""
|
1178 |
+
|
1179 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2301
|
1180 |
+
msgid "Narrow the results"
|
1181 |
+
msgstr ""
|
1182 |
+
|
1183 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2301
|
1184 |
+
msgid "Expand the results"
|
1185 |
+
msgstr ""
|
1186 |
+
|
1187 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2301
|
1188 |
+
msgid "Choose how multiple selections affect the results"
|
1189 |
+
msgstr ""
|
1190 |
+
|
1191 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2302
|
1192 |
+
msgid "Visible choices"
|
1193 |
+
msgstr ""
|
1194 |
+
|
1195 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2302
|
1196 |
+
msgid "Show a toggle link after this many choices. Leave blank for all"
|
1197 |
+
msgstr ""
|
1198 |
+
|
1199 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2325
|
1200 |
+
msgid "Search Fields"
|
1201 |
+
msgstr ""
|
1202 |
+
|
1203 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2325
|
1204 |
+
msgid "Choose the fields in which the Search Field will look in"
|
1205 |
+
msgstr ""
|
1206 |
+
|
1207 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2330
|
1208 |
+
msgid "Search Settings"
|
1209 |
+
msgstr ""
|
1210 |
+
|
1211 |
+
#: pb-add-on-woocommerce/billing-fields.php:8
|
1212 |
+
#: pb-add-on-woocommerce/shipping-fields.php:8
|
1213 |
+
msgid "Company Name"
|
1214 |
+
msgstr ""
|
1215 |
+
|
1216 |
+
#: pb-add-on-woocommerce/billing-fields.php:9
|
1217 |
+
#: pb-add-on-woocommerce/shipping-fields.php:9
|
1218 |
+
msgid "Address"
|
1219 |
+
msgstr ""
|
1220 |
+
|
1221 |
+
#: pb-add-on-woocommerce/billing-fields.php:5
|
1222 |
+
#: pb-add-on-woocommerce/shipping-fields.php:5
|
1223 |
+
msgid "Country"
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: pb-add-on-woocommerce/billing-fields.php:11
|
1227 |
+
#: pb-add-on-woocommerce/shipping-fields.php:11
|
1228 |
+
msgid "Town / City"
|
1229 |
+
msgstr ""
|
1230 |
+
|
1231 |
+
#: pb-add-on-woocommerce/billing-fields.php:12
|
1232 |
+
#: pb-add-on-woocommerce/shipping-fields.php:12
|
1233 |
+
msgid "State / County"
|
1234 |
+
msgstr ""
|
1235 |
+
|
1236 |
+
#: pb-add-on-woocommerce/billing-fields.php:13
|
1237 |
+
#: pb-add-on-woocommerce/shipping-fields.php:13
|
1238 |
+
msgid "Postcode / Zip"
|
1239 |
+
msgstr ""
|
1240 |
+
|
1241 |
+
#: pb-add-on-woocommerce/billing-fields.php:14
|
1242 |
+
msgid "Email Address"
|
1243 |
+
msgstr ""
|
1244 |
+
|
1245 |
+
#: pb-add-on-woocommerce/billing-fields.php:15
|
1246 |
+
msgid "Phone"
|
1247 |
+
msgstr ""
|
1248 |
+
|
1249 |
+
#: pb-add-on-woocommerce/billing-fields.php:278
|
1250 |
+
msgid "Ship to a different address?"
|
1251 |
+
msgstr ""
|
1252 |
+
|
1253 |
+
#: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
|
1254 |
+
msgid "Billing Address"
|
1255 |
+
msgstr ""
|
1256 |
+
|
1257 |
+
#: pb-add-on-woocommerce/index.php:169
|
1258 |
+
msgid "Displays customer billing fields in front-end. "
|
1259 |
+
msgstr ""
|
1260 |
+
|
1261 |
+
#: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
|
1262 |
+
msgid "Shipping Address"
|
1263 |
+
msgstr ""
|
1264 |
+
|
1265 |
+
#: pb-add-on-woocommerce/index.php:173
|
1266 |
+
msgid "Displays customer shipping fields in front-end. "
|
1267 |
+
msgstr ""
|
1268 |
+
|
1269 |
+
#: pb-add-on-woocommerce/woo-checkout-field-support.php:96
|
1270 |
+
msgid "Display on WooCommerce Checkout"
|
1271 |
+
msgstr ""
|
1272 |
+
|
1273 |
+
#: pb-add-on-woocommerce/woo-checkout-field-support.php:96
|
1274 |
+
msgid "Whether the field should be added to the WooCommerce checkout form or not"
|
1275 |
+
msgstr ""
|
1276 |
+
|
1277 |
+
#: pb-add-on-woocommerce/index.php:541
|
1278 |
+
msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: pb-add-on-woocommerce/woosync-page.php:23
|
1282 |
+
#: pb-add-on-woocommerce/woosync-page.php:70
|
1283 |
+
msgid "WooCommerce Sync"
|
1284 |
+
msgstr ""
|
1285 |
+
|
1286 |
+
#: pb-add-on-woocommerce/woosync-page.php:76
|
1287 |
+
msgid "Choose Register form to display on My Account page:"
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: pb-add-on-woocommerce/woosync-page.php:81
|
1291 |
+
msgid "Default Register"
|
1292 |
+
msgstr ""
|
1293 |
+
|
1294 |
+
#: pb-add-on-woocommerce/woosync-page.php:103
|
1295 |
+
msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
|
1296 |
+
msgstr ""
|
1297 |
+
|
1298 |
+
#: pb-add-on-woocommerce/woosync-page.php:110
|
1299 |
+
msgid "Choose Edit Profile form to display on My Account page:"
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: pb-add-on-woocommerce/woosync-page.php:115
|
1303 |
+
msgid "Default Edit Profile"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: pb-add-on-woocommerce/woosync-page.php:137
|
1307 |
+
msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
+
#: profile-builder-2.0/admin/add-ons.php:190
|
1311 |
+
msgid "Recommended Plugins"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: profile-builder-2.0/admin/add-ons.php:219
|
1315 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:102
|
1316 |
+
msgid "Free"
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: profile-builder-2.0/admin/add-ons.php:221
|
1320 |
+
msgid "Accept user payments, create subscription plans and restrict content on your membership site."
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: profile-builder-2.0/admin/add-ons.php:222
|
1324 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:105
|
1325 |
+
msgid "More Details"
|
1326 |
+
msgstr ""
|
1327 |
+
|
1328 |
+
#: profile-builder-2.0/admin/add-ons.php:240
|
1329 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:88
|
1330 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:123
|
1331 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:202
|
1332 |
+
msgid "Plugin is <strong>inactive</strong>"
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: profile-builder-2.0/admin/add-ons.php:242
|
1336 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:87
|
1337 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:125
|
1338 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:204
|
1339 |
+
msgid "Plugin is <strong>active</strong>"
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: profile-builder-2.0/admin/add-ons.php:256
|
1343 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:146
|
1344 |
+
msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
|
1345 |
+
msgstr ""
|
1346 |
+
|
1347 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:10
|
1348 |
+
msgid "Paid Accounts"
|
1349 |
+
msgstr ""
|
1350 |
+
|
1351 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:33
|
1352 |
+
msgid "Paid Member Subscriptions - a free WordPress plugin"
|
1353 |
+
msgstr ""
|
1354 |
+
|
1355 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:37
|
1356 |
+
msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:40
|
1360 |
+
msgid "Paid & Free Subscriptions"
|
1361 |
+
msgstr ""
|
1362 |
+
|
1363 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:41
|
1364 |
+
msgid "Restrict Content"
|
1365 |
+
msgstr ""
|
1366 |
+
|
1367 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:42
|
1368 |
+
msgid "Member Management"
|
1369 |
+
msgstr ""
|
1370 |
+
|
1371 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:43
|
1372 |
+
msgid "Email Templates"
|
1373 |
+
msgstr ""
|
1374 |
+
|
1375 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:44
|
1376 |
+
msgid "Account Management"
|
1377 |
+
msgstr ""
|
1378 |
+
|
1379 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:45
|
1380 |
+
msgid "Subscription Management"
|
1381 |
+
msgstr ""
|
1382 |
+
|
1383 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:46
|
1384 |
+
msgid "Payment Management"
|
1385 |
+
msgstr ""
|
1386 |
+
|
1387 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:83
|
1388 |
+
msgid "Plugin is Active"
|
1389 |
+
msgstr ""
|
1390 |
+
|
1391 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:84
|
1392 |
+
msgid "Plugin has been activated"
|
1393 |
+
msgstr ""
|
1394 |
+
|
1395 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:91
|
1396 |
+
msgid "Plugin has been deactivated."
|
1397 |
+
msgstr ""
|
1398 |
+
|
1399 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:104
|
1400 |
+
msgid "Accept user payments, create subscription plans and restrict content on your website."
|
1401 |
+
msgstr ""
|
1402 |
+
|
1403 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:155
|
1404 |
+
msgid "Step by Step Quick Setup"
|
1405 |
+
msgstr ""
|
1406 |
+
|
1407 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401
|
1408 |
+
msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
|
1409 |
+
msgstr ""
|
1410 |
+
|
1411 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
|
1412 |
+
msgid "After Login"
|
1413 |
+
msgstr ""
|
1414 |
+
|
1415 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
|
1416 |
+
msgid "After Logout"
|
1417 |
+
msgstr ""
|
1418 |
+
|
1419 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
|
1420 |
+
msgid "After Registration"
|
1421 |
+
msgstr ""
|
1422 |
+
|
1423 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
|
1424 |
+
msgid "After Edit Profile"
|
1425 |
+
msgstr ""
|
1426 |
+
|
1427 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
|
1428 |
+
msgid "After Successful Email Confirmation"
|
1429 |
+
msgstr ""
|
1430 |
+
|
1431 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
|
1432 |
+
msgid "After Successful Password Reset"
|
1433 |
+
msgstr ""
|
1434 |
+
|
1435 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
|
1436 |
+
msgid "Dashboard (redirect users from accessing the dashboard)"
|
1437 |
+
msgstr ""
|
1438 |
+
|
1439 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
|
1440 |
+
msgid "User ID"
|
1441 |
+
msgstr ""
|
1442 |
+
|
1443 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
|
1444 |
+
msgid "User ID or Username"
|
1445 |
+
msgstr ""
|
1446 |
+
|
1447 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
|
1448 |
+
msgid "User ID / Username"
|
1449 |
+
msgstr ""
|
1450 |
+
|
1451 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
|
1452 |
+
msgid "Please select and enter the ID or username of your user."
|
1453 |
+
msgstr ""
|
1454 |
+
|
1455 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63
|
1456 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93
|
1457 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112
|
1458 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131
|
1459 |
+
msgid "Redirect Type"
|
1460 |
+
msgstr ""
|
1461 |
+
|
1462 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
|
1463 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
|
1464 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
|
1465 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
|
1466 |
+
msgid "Redirect URL"
|
1467 |
+
msgstr ""
|
1468 |
+
|
1469 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
|
1470 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
|
1471 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
|
1472 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
|
1473 |
+
msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
|
1474 |
+
msgstr ""
|
1475 |
+
|
1476 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71
|
1477 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241
|
1478 |
+
msgid "Individual User Redirects"
|
1479 |
+
msgstr ""
|
1480 |
+
|
1481 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
|
1482 |
+
msgid "... Choose"
|
1483 |
+
msgstr ""
|
1484 |
+
|
1485 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
|
1486 |
+
msgid "Select a user role."
|
1487 |
+
msgstr ""
|
1488 |
+
|
1489 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101
|
1490 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
|
1491 |
+
msgid "User Role based Redirects"
|
1492 |
+
msgstr ""
|
1493 |
+
|
1494 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120
|
1495 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243
|
1496 |
+
msgid "Global Redirects"
|
1497 |
+
msgstr ""
|
1498 |
+
|
1499 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
|
1500 |
+
msgid "Login ( wp_login.php )"
|
1501 |
+
msgstr ""
|
1502 |
+
|
1503 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134
|
1504 |
+
msgid "Register ( wp-login.php?action=register )"
|
1505 |
+
msgstr ""
|
1506 |
+
|
1507 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
|
1508 |
+
msgid "Lost Password ( wp-login.php?action=lostpassword )"
|
1509 |
+
msgstr ""
|
1510 |
+
|
1511 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136
|
1512 |
+
msgid "Author Archive ( http://sitename.com/author/admin )"
|
1513 |
+
msgstr ""
|
1514 |
+
|
1515 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145
|
1516 |
+
msgid "Redirect Default WordPress Forms and Pages"
|
1517 |
+
msgstr ""
|
1518 |
+
|
1519 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
|
1520 |
+
msgid "How does this work?"
|
1521 |
+
msgstr ""
|
1522 |
+
|
1523 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
|
1524 |
+
msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
|
1525 |
+
msgstr ""
|
1526 |
+
|
1527 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
|
1528 |
+
msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
|
1529 |
+
msgstr ""
|
1530 |
+
|
1531 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
|
1532 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
|
1533 |
+
msgid "<pre>Redirect</pre><pre>URL</pre>"
|
1534 |
+
msgstr ""
|
1535 |
+
|
1536 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236
|
1537 |
+
msgid "These redirects happen after a successful action, like registration or after a successful login."
|
1538 |
+
msgstr ""
|
1539 |
+
|
1540 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238
|
1541 |
+
msgid "Which redirect happens depends on the following priority:"
|
1542 |
+
msgstr ""
|
1543 |
+
|
1544 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
|
1545 |
+
msgid "Redirect Default WordPress forms and pages"
|
1546 |
+
msgstr ""
|
1547 |
+
|
1548 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248
|
1549 |
+
msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
|
1550 |
+
msgstr ""
|
1551 |
+
|
1552 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
|
1553 |
+
msgid "Available tags for dynamic URLs"
|
1554 |
+
msgstr ""
|
1555 |
+
|
1556 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251
|
1557 |
+
msgid "You use the following tags in your URLs to redirect users to various pages."
|
1558 |
+
msgstr ""
|
1559 |
+
|
1560 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253
|
1561 |
+
msgid "generates a url of the current website homepage."
|
1562 |
+
msgstr ""
|
1563 |
+
|
1564 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
|
1565 |
+
msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
|
1566 |
+
msgstr ""
|
1567 |
+
|
1568 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
|
1569 |
+
msgid "the ID of the user"
|
1570 |
+
msgstr ""
|
1571 |
+
|
1572 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
|
1573 |
+
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."
|
1574 |
+
msgstr ""
|
1575 |
+
|
1576 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257
|
1577 |
+
msgid "the URL of the previously visited page"
|
1578 |
+
msgstr ""
|
1579 |
+
|
1580 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340
|
1581 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346
|
1582 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352
|
1583 |
+
msgid "You can't add duplicate redirects!"
|
1584 |
+
msgstr ""
|
1585 |
+
|
1586 |
+
#: profile-builder-2.0/admin/admin-functions.php:41
|
1587 |
+
msgid "Display name publicly as - only appears on the Edit Profile page!"
|
1588 |
+
msgstr ""
|
1589 |
+
|
1590 |
+
#: profile-builder-2.0/admin/basic-info.php:37
|
1591 |
+
msgid "Friction-less login using %s shortcode or a widget."
|
1592 |
+
msgstr ""
|
1593 |
+
|
1594 |
+
#: profile-builder-2.0/admin/basic-info.php:41
|
1595 |
+
msgid "Beautiful registration forms fully customizable using the %s shortcode."
|
1596 |
+
msgstr ""
|
1597 |
+
|
1598 |
+
#: profile-builder-2.0/admin/basic-info.php:45
|
1599 |
+
msgid "Straight forward edit profile forms using %s shortcode."
|
1600 |
+
msgstr ""
|
1601 |
+
|
1602 |
+
#: profile-builder-2.0/admin/basic-info.php:58
|
1603 |
+
msgid "Allow users to recover their password in the front-end using the %s."
|
1604 |
+
msgstr ""
|
1605 |
+
|
1606 |
+
#: profile-builder-2.0/admin/basic-info.php:140
|
1607 |
+
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."
|
1608 |
+
msgstr ""
|
1609 |
+
|
1610 |
+
#: profile-builder-2.0/admin/general-settings.php:115
|
1611 |
+
msgid "\"Admin Approval\" on User Role:"
|
1612 |
+
msgstr ""
|
1613 |
+
|
1614 |
+
#: profile-builder-2.0/admin/general-settings.php:134
|
1615 |
+
msgid "Select on what user roles to activate Admin Approval."
|
1616 |
+
msgstr ""
|
1617 |
+
|
1618 |
+
#: profile-builder-2.0/admin/manage-fields.php:133
|
1619 |
+
msgid "Display on PB forms"
|
1620 |
+
msgstr ""
|
1621 |
+
|
1622 |
+
#: profile-builder-2.0/admin/manage-fields.php:133
|
1623 |
+
msgid "PB Login"
|
1624 |
+
msgstr ""
|
1625 |
+
|
1626 |
+
#: profile-builder-2.0/admin/manage-fields.php:133
|
1627 |
+
msgid "PB Register"
|
1628 |
+
msgstr ""
|
1629 |
+
|
1630 |
+
#: profile-builder-2.0/admin/manage-fields.php:133
|
1631 |
+
msgid "PB Recover Password"
|
1632 |
+
msgstr ""
|
1633 |
+
|
1634 |
+
#: profile-builder-2.0/admin/manage-fields.php:133
|
1635 |
+
msgid "Select on which Profile Builder forms to display reCAPTCHA"
|
1636 |
+
msgstr ""
|
1637 |
+
|
1638 |
+
#: profile-builder-2.0/admin/manage-fields.php:134
|
1639 |
+
msgid "Display on default WP forms"
|
1640 |
+
msgstr ""
|
1641 |
+
|
1642 |
+
#: profile-builder-2.0/admin/manage-fields.php:134
|
1643 |
+
msgid "Default WP Login"
|
1644 |
+
msgstr ""
|
1645 |
+
|
1646 |
+
#: profile-builder-2.0/admin/manage-fields.php:134
|
1647 |
+
msgid "Default WP Register"
|
1648 |
+
msgstr ""
|
1649 |
+
|
1650 |
+
#: profile-builder-2.0/admin/manage-fields.php:134
|
1651 |
+
msgid "Default WP Recover Password"
|
1652 |
+
msgstr ""
|
1653 |
+
|
1654 |
+
#: profile-builder-2.0/admin/manage-fields.php:134
|
1655 |
+
msgid "Select on which default WP forms to display reCAPTCHA"
|
1656 |
+
msgstr ""
|
1657 |
+
|
1658 |
+
#: profile-builder-2.0/admin/manage-fields.php:140
|
1659 |
+
#: profile-builder-2.0/admin/manage-fields.php:141
|
1660 |
+
#: profile-builder-2.0/admin/manage-fields.php:142
|
1661 |
+
msgid "Default option of the field"
|
1662 |
+
msgstr ""
|
1663 |
+
|
1664 |
+
#: profile-builder-2.0/admin/manage-fields.php:282
|
1665 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1666 |
+
msgid "Afghanistan"
|
1667 |
+
msgstr "Afghanistan"
|
1668 |
+
|
1669 |
+
#: profile-builder-2.0/admin/manage-fields.php:283
|
1670 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1671 |
+
msgid "Aland Islands"
|
1672 |
+
msgstr "Aland Islands"
|
1673 |
+
|
1674 |
+
#: profile-builder-2.0/admin/manage-fields.php:284
|
1675 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1676 |
+
msgid "Albania"
|
1677 |
+
msgstr "Albania"
|
1678 |
+
|
1679 |
+
#: profile-builder-2.0/admin/manage-fields.php:285
|
1680 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1681 |
+
msgid "Algeria"
|
1682 |
+
msgstr "Algeria"
|
1683 |
+
|
1684 |
+
#: profile-builder-2.0/admin/manage-fields.php:286
|
1685 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1686 |
+
msgid "American Samoa"
|
1687 |
+
msgstr "American Samoa"
|
1688 |
+
|
1689 |
+
#: profile-builder-2.0/admin/manage-fields.php:287
|
1690 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1691 |
+
msgid "Andorra"
|
1692 |
+
msgstr "Andorra"
|
1693 |
+
|
1694 |
+
#: profile-builder-2.0/admin/manage-fields.php:288
|
1695 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1696 |
+
msgid "Angola"
|
1697 |
+
msgstr "Angola"
|
1698 |
+
|
1699 |
+
#: profile-builder-2.0/admin/manage-fields.php:289
|
1700 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1701 |
+
msgid "Anguilla"
|
1702 |
+
msgstr "Anguilla"
|
1703 |
+
|
1704 |
+
#: profile-builder-2.0/admin/manage-fields.php:290
|
1705 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1706 |
+
msgid "Antarctica"
|
1707 |
+
msgstr "Antarctica"
|
1708 |
+
|
1709 |
+
#: profile-builder-2.0/admin/manage-fields.php:291
|
1710 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1711 |
+
msgid "Antigua and Barbuda"
|
1712 |
+
msgstr "Antigua and Barbuda"
|
1713 |
+
|
1714 |
+
#: profile-builder-2.0/admin/manage-fields.php:292
|
1715 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1716 |
+
msgid "Argentina"
|
1717 |
+
msgstr "Argentina"
|
1718 |
+
|
1719 |
+
#: profile-builder-2.0/admin/manage-fields.php:293
|
1720 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1721 |
+
msgid "Armenia"
|
1722 |
+
msgstr "Armenia"
|
1723 |
+
|
1724 |
+
#: profile-builder-2.0/admin/manage-fields.php:294
|
1725 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1726 |
+
msgid "Aruba"
|
1727 |
+
msgstr "Aruba"
|
1728 |
+
|
1729 |
+
#: profile-builder-2.0/admin/manage-fields.php:295
|
1730 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1731 |
+
msgid "Australia"
|
1732 |
+
msgstr "Australia"
|
1733 |
+
|
1734 |
+
#: profile-builder-2.0/admin/manage-fields.php:296
|
1735 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1736 |
+
msgid "Austria"
|
1737 |
+
msgstr "Austria"
|
1738 |
+
|
1739 |
+
#: profile-builder-2.0/admin/manage-fields.php:297
|
1740 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1741 |
+
msgid "Azerbaijan"
|
1742 |
+
msgstr "Azerbaijan"
|
1743 |
+
|
1744 |
+
#: profile-builder-2.0/admin/manage-fields.php:298
|
1745 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1746 |
+
msgid "Bahamas"
|
1747 |
+
msgstr "Bahamas"
|
1748 |
+
|
1749 |
+
#: profile-builder-2.0/admin/manage-fields.php:299
|
1750 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1751 |
+
msgid "Bahrain"
|
1752 |
+
msgstr "Bahrain"
|
1753 |
+
|
1754 |
+
#: profile-builder-2.0/admin/manage-fields.php:300
|
1755 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1756 |
+
msgid "Bangladesh"
|
1757 |
+
msgstr "Bangladesh"
|
1758 |
+
|
1759 |
+
#: profile-builder-2.0/admin/manage-fields.php:301
|
1760 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1761 |
+
msgid "Barbados"
|
1762 |
+
msgstr "Barbados"
|
1763 |
+
|
1764 |
+
#: profile-builder-2.0/admin/manage-fields.php:302
|
1765 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1766 |
+
msgid "Belarus"
|
1767 |
+
msgstr "Belarus"
|
1768 |
+
|
1769 |
+
#: profile-builder-2.0/admin/manage-fields.php:303
|
1770 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1771 |
+
msgid "Belgium"
|
1772 |
+
msgstr "Belgium"
|
1773 |
+
|
1774 |
+
#: profile-builder-2.0/admin/manage-fields.php:304
|
1775 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1776 |
+
msgid "Belize"
|
1777 |
+
msgstr "Belize"
|
1778 |
+
|
1779 |
+
#: profile-builder-2.0/admin/manage-fields.php:305
|
1780 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1781 |
+
msgid "Benin"
|
1782 |
+
msgstr "Benin"
|
1783 |
+
|
1784 |
+
#: profile-builder-2.0/admin/manage-fields.php:306
|
1785 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1786 |
+
msgid "Bermuda"
|
1787 |
+
msgstr "Bermuda"
|
1788 |
+
|
1789 |
+
#: profile-builder-2.0/admin/manage-fields.php:307
|
1790 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1791 |
+
msgid "Bhutan"
|
1792 |
+
msgstr "Bhutan"
|
1793 |
+
|
1794 |
+
#: profile-builder-2.0/admin/manage-fields.php:308
|
1795 |
+
msgid "Bolivia"
|
1796 |
+
msgstr "Bolivia"
|
1797 |
+
|
1798 |
+
#: profile-builder-2.0/admin/manage-fields.php:309
|
1799 |
+
msgid "Bonaire, Saint Eustatius and Saba"
|
1800 |
+
msgstr "Bonaire, Saint Eustatius and Saba"
|
1801 |
+
|
1802 |
+
#: profile-builder-2.0/admin/manage-fields.php:310
|
1803 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1804 |
+
msgid "Bosnia and Herzegovina"
|
1805 |
+
msgstr "Bosnia and Herzegovina"
|
1806 |
+
|
1807 |
+
#: profile-builder-2.0/admin/manage-fields.php:311
|
1808 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1809 |
+
msgid "Botswana"
|
1810 |
+
msgstr "Botswana"
|
1811 |
+
|
1812 |
+
#: profile-builder-2.0/admin/manage-fields.php:312
|
1813 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1814 |
+
msgid "Bouvet Island"
|
1815 |
+
msgstr "Bouvet Island"
|
1816 |
+
|
1817 |
+
#: profile-builder-2.0/admin/manage-fields.php:313
|
1818 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1819 |
+
msgid "Brazil"
|
1820 |
+
msgstr "Brazil"
|
1821 |
+
|
1822 |
+
#: profile-builder-2.0/admin/manage-fields.php:314
|
1823 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1824 |
+
msgid "British Indian Ocean Territory"
|
1825 |
+
msgstr "British Indian Ocean Territory"
|
1826 |
+
|
1827 |
+
#: profile-builder-2.0/admin/manage-fields.php:315
|
1828 |
+
msgid "British Virgin Islands"
|
1829 |
+
msgstr "British Virgin Islands"
|
1830 |
+
|
1831 |
+
#: profile-builder-2.0/admin/manage-fields.php:316
|
1832 |
+
msgid "Brunei"
|
1833 |
+
msgstr "Brunei"
|
1834 |
+
|
1835 |
+
#: profile-builder-2.0/admin/manage-fields.php:317
|
1836 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1837 |
+
msgid "Bulgaria"
|
1838 |
+
msgstr "Bulgaria"
|
1839 |
+
|
1840 |
+
#: profile-builder-2.0/admin/manage-fields.php:318
|
1841 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1842 |
+
msgid "Burkina Faso"
|
1843 |
+
msgstr "Burkina Faso"
|
1844 |
+
|
1845 |
+
#: profile-builder-2.0/admin/manage-fields.php:319
|
1846 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1847 |
+
msgid "Burundi"
|
1848 |
+
msgstr "Burundi"
|
1849 |
+
|
1850 |
+
#: profile-builder-2.0/admin/manage-fields.php:320
|
1851 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1852 |
+
msgid "Cambodia"
|
1853 |
+
msgstr "Cambodia"
|
1854 |
+
|
1855 |
+
#: profile-builder-2.0/admin/manage-fields.php:321
|
1856 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1857 |
+
msgid "Cameroon"
|
1858 |
+
msgstr "Cameroon"
|
1859 |
+
|
1860 |
+
#: profile-builder-2.0/admin/manage-fields.php:322
|
1861 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1862 |
+
msgid "Canada"
|
1863 |
+
msgstr "Canada"
|
1864 |
+
|
1865 |
+
#: profile-builder-2.0/admin/manage-fields.php:323
|
1866 |
+
msgid "Cape Verde"
|
1867 |
+
msgstr "Cape Verde"
|
1868 |
+
|
1869 |
+
#: profile-builder-2.0/admin/manage-fields.php:324
|
1870 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1871 |
+
msgid "Cayman Islands"
|
1872 |
+
msgstr "Cayman Islands"
|
1873 |
+
|
1874 |
+
#: profile-builder-2.0/admin/manage-fields.php:325
|
1875 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1876 |
+
msgid "Central African Republic"
|
1877 |
+
msgstr "Central African Republic"
|
1878 |
+
|
1879 |
+
#: profile-builder-2.0/admin/manage-fields.php:326
|
1880 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1881 |
+
msgid "Chad"
|
1882 |
+
msgstr "Chad"
|
1883 |
+
|
1884 |
+
#: profile-builder-2.0/admin/manage-fields.php:327
|
1885 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1886 |
+
msgid "Chile"
|
1887 |
+
msgstr "Chile"
|
1888 |
+
|
1889 |
+
#: profile-builder-2.0/admin/manage-fields.php:328
|
1890 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1891 |
+
msgid "China"
|
1892 |
+
msgstr "China"
|
1893 |
+
|
1894 |
+
#: profile-builder-2.0/admin/manage-fields.php:329
|
1895 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1896 |
+
msgid "Christmas Island"
|
1897 |
+
msgstr "Christmas Island"
|
1898 |
+
|
1899 |
+
#: profile-builder-2.0/admin/manage-fields.php:330
|
1900 |
+
msgid "Cocos Islands"
|
1901 |
+
msgstr "Cocos Islands"
|
1902 |
+
|
1903 |
+
#: profile-builder-2.0/admin/manage-fields.php:331
|
1904 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1905 |
+
msgid "Colombia"
|
1906 |
+
msgstr "Colombia"
|
1907 |
+
|
1908 |
+
#: profile-builder-2.0/admin/manage-fields.php:332
|
1909 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1910 |
+
msgid "Comoros"
|
1911 |
+
msgstr "Comoros"
|
1912 |
+
|
1913 |
+
#: profile-builder-2.0/admin/manage-fields.php:333
|
1914 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1915 |
+
msgid "Cook Islands"
|
1916 |
+
msgstr "Cook Islands"
|
1917 |
+
|
1918 |
+
#: profile-builder-2.0/admin/manage-fields.php:334
|
1919 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1920 |
+
msgid "Costa Rica"
|
1921 |
+
msgstr "Costa Rica"
|
1922 |
+
|
1923 |
+
#: profile-builder-2.0/admin/manage-fields.php:335
|
1924 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1925 |
+
msgid "Croatia"
|
1926 |
+
msgstr "Croatia"
|
1927 |
+
|
1928 |
+
#: profile-builder-2.0/admin/manage-fields.php:336
|
1929 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1930 |
+
msgid "Cuba"
|
1931 |
+
msgstr "Cuba"
|
1932 |
+
|
1933 |
+
#: profile-builder-2.0/admin/manage-fields.php:337
|
1934 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1935 |
+
msgid "Curacao"
|
1936 |
+
msgstr "Curacao"
|
1937 |
+
|
1938 |
+
#: profile-builder-2.0/admin/manage-fields.php:338
|
1939 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1940 |
+
msgid "Cyprus"
|
1941 |
+
msgstr "Cyprus"
|
1942 |
+
|
1943 |
+
#: profile-builder-2.0/admin/manage-fields.php:339
|
1944 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1945 |
+
msgid "Czech Republic"
|
1946 |
+
msgstr "Czech Republic"
|
1947 |
+
|
1948 |
+
#: profile-builder-2.0/admin/manage-fields.php:340
|
1949 |
+
msgid "Democratic Republic of the Congo"
|
1950 |
+
msgstr "Democratic Republic of the Congo"
|
1951 |
+
|
1952 |
+
#: profile-builder-2.0/admin/manage-fields.php:341
|
1953 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1954 |
+
msgid "Denmark"
|
1955 |
+
msgstr "Denmark"
|
1956 |
+
|
1957 |
+
#: profile-builder-2.0/admin/manage-fields.php:342
|
1958 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1959 |
+
msgid "Djibouti"
|
1960 |
+
msgstr "Djibouti"
|
1961 |
+
|
1962 |
+
#: profile-builder-2.0/admin/manage-fields.php:343
|
1963 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1964 |
+
msgid "Dominica"
|
1965 |
+
msgstr "Dominica"
|
1966 |
+
|
1967 |
+
#: profile-builder-2.0/admin/manage-fields.php:344
|
1968 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1969 |
+
msgid "Dominican Republic"
|
1970 |
+
msgstr "Dominican Republic"
|
1971 |
+
|
1972 |
+
#: profile-builder-2.0/admin/manage-fields.php:345
|
1973 |
+
msgid "East Timor"
|
1974 |
+
msgstr "East Timor"
|
1975 |
+
|
1976 |
+
#: profile-builder-2.0/admin/manage-fields.php:346
|
1977 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1978 |
+
msgid "Ecuador"
|
1979 |
+
msgstr "Ecuador"
|
1980 |
+
|
1981 |
+
#: profile-builder-2.0/admin/manage-fields.php:347
|
1982 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1983 |
+
msgid "Egypt"
|
1984 |
+
msgstr "Egypt"
|
1985 |
+
|
1986 |
+
#: profile-builder-2.0/admin/manage-fields.php:348
|
1987 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1988 |
+
msgid "El Salvador"
|
1989 |
+
msgstr "El Salvador"
|
1990 |
+
|
1991 |
+
#: profile-builder-2.0/admin/manage-fields.php:349
|
1992 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1993 |
+
msgid "Equatorial Guinea"
|
1994 |
+
msgstr "Equatorial Guinea"
|
1995 |
+
|
1996 |
+
#: profile-builder-2.0/admin/manage-fields.php:350
|
1997 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
1998 |
+
msgid "Eritrea"
|
1999 |
+
msgstr "Eritrea"
|
2000 |
+
|
2001 |
+
#: profile-builder-2.0/admin/manage-fields.php:351
|
2002 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2003 |
+
msgid "Estonia"
|
2004 |
+
msgstr "Estonia"
|
2005 |
+
|
2006 |
+
#: profile-builder-2.0/admin/manage-fields.php:352
|
2007 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2008 |
+
msgid "Ethiopia"
|
2009 |
+
msgstr "Ethiopia"
|
2010 |
+
|
2011 |
+
#: profile-builder-2.0/admin/manage-fields.php:353
|
2012 |
+
msgid "Falkland Islands"
|
2013 |
+
msgstr "Falkland Islands"
|
2014 |
+
|
2015 |
+
#: profile-builder-2.0/admin/manage-fields.php:354
|
2016 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2017 |
+
msgid "Faroe Islands"
|
2018 |
+
msgstr "Faroe Islands"
|
2019 |
+
|
2020 |
+
#: profile-builder-2.0/admin/manage-fields.php:355
|
2021 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2022 |
+
msgid "Fiji"
|
2023 |
+
msgstr "Fiji"
|
2024 |
+
|
2025 |
+
#: profile-builder-2.0/admin/manage-fields.php:356
|
2026 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2027 |
+
msgid "Finland"
|
2028 |
+
msgstr "Finland"
|
2029 |
+
|
2030 |
+
#: profile-builder-2.0/admin/manage-fields.php:357
|
2031 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2032 |
+
msgid "France"
|
2033 |
+
msgstr "France"
|
2034 |
+
|
2035 |
+
#: profile-builder-2.0/admin/manage-fields.php:358
|
2036 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2037 |
+
msgid "French Guiana"
|
2038 |
+
msgstr "French Guiana"
|
2039 |
+
|
2040 |
+
#: profile-builder-2.0/admin/manage-fields.php:359
|
2041 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2042 |
+
msgid "French Polynesia"
|
2043 |
+
msgstr "French Polynesia"
|
2044 |
+
|
2045 |
+
#: profile-builder-2.0/admin/manage-fields.php:360
|
2046 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2047 |
+
msgid "French Southern Territories"
|
2048 |
+
msgstr "French Southern Territories"
|
2049 |
+
|
2050 |
+
#: profile-builder-2.0/admin/manage-fields.php:361
|
2051 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2052 |
+
msgid "Gabon"
|
2053 |
+
msgstr "Gabon"
|
2054 |
+
|
2055 |
+
#: profile-builder-2.0/admin/manage-fields.php:362
|
2056 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2057 |
+
msgid "Gambia"
|
2058 |
+
msgstr "Gambia"
|
2059 |
+
|
2060 |
+
#: profile-builder-2.0/admin/manage-fields.php:363
|
2061 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2062 |
+
msgid "Georgia"
|
2063 |
+
msgstr "Georgia"
|
2064 |
+
|
2065 |
+
#: profile-builder-2.0/admin/manage-fields.php:364
|
2066 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2067 |
+
msgid "Germany"
|
2068 |
+
msgstr "Germany"
|
2069 |
+
|
2070 |
+
#: profile-builder-2.0/admin/manage-fields.php:365
|
2071 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2072 |
+
msgid "Ghana"
|
2073 |
+
msgstr "Ghana"
|
2074 |
+
|
2075 |
+
#: profile-builder-2.0/admin/manage-fields.php:366
|
2076 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2077 |
+
msgid "Gibraltar"
|
2078 |
+
msgstr "Gibraltar"
|
2079 |
+
|
2080 |
+
#: profile-builder-2.0/admin/manage-fields.php:367
|
2081 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2082 |
+
msgid "Greece"
|
2083 |
+
msgstr "Greece"
|
2084 |
+
|
2085 |
+
#: profile-builder-2.0/admin/manage-fields.php:368
|
2086 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2087 |
+
msgid "Greenland"
|
2088 |
+
msgstr "Greenland"
|
2089 |
+
|
2090 |
+
#: profile-builder-2.0/admin/manage-fields.php:369
|
2091 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2092 |
+
msgid "Grenada"
|
2093 |
+
msgstr "Grenada"
|
2094 |
+
|
2095 |
+
#: profile-builder-2.0/admin/manage-fields.php:370
|
2096 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2097 |
+
msgid "Guadeloupe"
|
2098 |
+
msgstr "Guadeloupe"
|
2099 |
+
|
2100 |
+
#: profile-builder-2.0/admin/manage-fields.php:371
|
2101 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2102 |
+
msgid "Guam"
|
2103 |
+
msgstr "Guam"
|
2104 |
+
|
2105 |
+
#: profile-builder-2.0/admin/manage-fields.php:372
|
2106 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2107 |
+
msgid "Guatemala"
|
2108 |
+
msgstr "Guatemala"
|
2109 |
+
|
2110 |
+
#: profile-builder-2.0/admin/manage-fields.php:373
|
2111 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2112 |
+
msgid "Guernsey"
|
2113 |
+
msgstr "Guernsey"
|
2114 |
+
|
2115 |
+
#: profile-builder-2.0/admin/manage-fields.php:374
|
2116 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2117 |
+
msgid "Guinea"
|
2118 |
+
msgstr "Guinea"
|
2119 |
+
|
2120 |
+
#: profile-builder-2.0/admin/manage-fields.php:375
|
2121 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2122 |
+
msgid "Guinea-Bissau"
|
2123 |
+
msgstr "Guinea-Bissau"
|
2124 |
+
|
2125 |
+
#: profile-builder-2.0/admin/manage-fields.php:376
|
2126 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2127 |
+
msgid "Guyana"
|
2128 |
+
msgstr "Guyana"
|
2129 |
+
|
2130 |
+
#: profile-builder-2.0/admin/manage-fields.php:377
|
2131 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2132 |
+
msgid "Haiti"
|
2133 |
+
msgstr "Haiti"
|
2134 |
+
|
2135 |
+
#: profile-builder-2.0/admin/manage-fields.php:378
|
2136 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2137 |
+
msgid "Heard Island and McDonald Islands"
|
2138 |
+
msgstr "Heard Island and McDonald Islands"
|
2139 |
+
|
2140 |
+
#: profile-builder-2.0/admin/manage-fields.php:379
|
2141 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2142 |
+
msgid "Honduras"
|
2143 |
+
msgstr "Honduras"
|
2144 |
+
|
2145 |
+
#: profile-builder-2.0/admin/manage-fields.php:380
|
2146 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2147 |
+
msgid "Hong Kong"
|
2148 |
+
msgstr "Hong Kong"
|
2149 |
+
|
2150 |
+
#: profile-builder-2.0/admin/manage-fields.php:381
|
2151 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2152 |
+
msgid "Hungary"
|
2153 |
+
msgstr "Hungary"
|
2154 |
+
|
2155 |
+
#: profile-builder-2.0/admin/manage-fields.php:382
|
2156 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2157 |
+
msgid "Iceland"
|
2158 |
+
msgstr "Iceland"
|
2159 |
+
|
2160 |
+
#: profile-builder-2.0/admin/manage-fields.php:383
|
2161 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2162 |
+
msgid "India"
|
2163 |
+
msgstr "India"
|
2164 |
+
|
2165 |
+
#: profile-builder-2.0/admin/manage-fields.php:384
|
2166 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2167 |
+
msgid "Indonesia"
|
2168 |
+
msgstr "Indonesia"
|
2169 |
+
|
2170 |
+
#: profile-builder-2.0/admin/manage-fields.php:385
|
2171 |
+
msgid "Iran"
|
2172 |
+
msgstr "Iran"
|
2173 |
+
|
2174 |
+
#: profile-builder-2.0/admin/manage-fields.php:386
|
2175 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2176 |
+
msgid "Iraq"
|
2177 |
+
msgstr "Iraq"
|
2178 |
+
|
2179 |
+
#: profile-builder-2.0/admin/manage-fields.php:387
|
2180 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2181 |
+
msgid "Ireland"
|
2182 |
+
msgstr "Ireland"
|
2183 |
+
|
2184 |
+
#: profile-builder-2.0/admin/manage-fields.php:388
|
2185 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2186 |
+
msgid "Isle of Man"
|
2187 |
+
msgstr "Isle of Man"
|
2188 |
+
|
2189 |
+
#: profile-builder-2.0/admin/manage-fields.php:389
|
2190 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2191 |
+
msgid "Israel"
|
2192 |
+
msgstr "Israel"
|
2193 |
+
|
2194 |
+
#: profile-builder-2.0/admin/manage-fields.php:390
|
2195 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2196 |
+
msgid "Italy"
|
2197 |
+
msgstr "Italy"
|
2198 |
+
|
2199 |
+
#: profile-builder-2.0/admin/manage-fields.php:391
|
2200 |
+
msgid "Ivory Coast"
|
2201 |
+
msgstr "Ivory Coast"
|
2202 |
+
|
2203 |
+
#: profile-builder-2.0/admin/manage-fields.php:392
|
2204 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2205 |
+
msgid "Jamaica"
|
2206 |
+
msgstr "Jamaica"
|
2207 |
+
|
2208 |
+
#: profile-builder-2.0/admin/manage-fields.php:393
|
2209 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2210 |
+
msgid "Japan"
|
2211 |
+
msgstr "Japan"
|
2212 |
+
|
2213 |
+
#: profile-builder-2.0/admin/manage-fields.php:394
|
2214 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2215 |
+
msgid "Jersey"
|
2216 |
+
msgstr "Jersey"
|
2217 |
+
|
2218 |
+
#: profile-builder-2.0/admin/manage-fields.php:395
|
2219 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2220 |
+
msgid "Jordan"
|
2221 |
+
msgstr "Jordan"
|
2222 |
+
|
2223 |
+
#: profile-builder-2.0/admin/manage-fields.php:396
|
2224 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2225 |
+
msgid "Kazakhstan"
|
2226 |
+
msgstr "Kazakhstan"
|
2227 |
+
|
2228 |
+
#: profile-builder-2.0/admin/manage-fields.php:397
|
2229 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2230 |
+
msgid "Kenya"
|
2231 |
+
msgstr "Kenya"
|
2232 |
+
|
2233 |
+
#: profile-builder-2.0/admin/manage-fields.php:398
|
2234 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2235 |
+
msgid "Kiribati"
|
2236 |
+
msgstr "Kiribati"
|
2237 |
+
|
2238 |
+
#: profile-builder-2.0/admin/manage-fields.php:399
|
2239 |
+
msgid "Kosovo"
|
2240 |
+
msgstr "Kosovo"
|
2241 |
+
|
2242 |
+
#: profile-builder-2.0/admin/manage-fields.php:400
|
2243 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2244 |
+
msgid "Kuwait"
|
2245 |
+
msgstr "Kuwait"
|
2246 |
+
|
2247 |
+
#: profile-builder-2.0/admin/manage-fields.php:401
|
2248 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2249 |
+
msgid "Kyrgyzstan"
|
2250 |
+
msgstr "Kyrgyzstan"
|
2251 |
+
|
2252 |
+
#: profile-builder-2.0/admin/manage-fields.php:402
|
2253 |
+
msgid "Laos"
|
2254 |
+
msgstr "Laos"
|
2255 |
+
|
2256 |
+
#: profile-builder-2.0/admin/manage-fields.php:403
|
2257 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2258 |
+
msgid "Latvia"
|
2259 |
+
msgstr "Latvia"
|
2260 |
+
|
2261 |
+
#: profile-builder-2.0/admin/manage-fields.php:404
|
2262 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2263 |
+
msgid "Lebanon"
|
2264 |
+
msgstr "Lebanon"
|
2265 |
+
|
2266 |
+
#: profile-builder-2.0/admin/manage-fields.php:405
|
2267 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2268 |
+
msgid "Lesotho"
|
2269 |
+
msgstr "Lesotho"
|
2270 |
+
|
2271 |
+
#: profile-builder-2.0/admin/manage-fields.php:406
|
2272 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2273 |
+
msgid "Liberia"
|
2274 |
+
msgstr "Liberia"
|
2275 |
+
|
2276 |
+
#: profile-builder-2.0/admin/manage-fields.php:407
|
2277 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2278 |
+
msgid "Libya"
|
2279 |
+
msgstr "Libya"
|
2280 |
+
|
2281 |
+
#: profile-builder-2.0/admin/manage-fields.php:408
|
2282 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2283 |
+
msgid "Liechtenstein"
|
2284 |
+
msgstr "Liechtenstein"
|
2285 |
+
|
2286 |
+
#: profile-builder-2.0/admin/manage-fields.php:409
|
2287 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2288 |
+
msgid "Lithuania"
|
2289 |
+
msgstr "Lithuania"
|
2290 |
+
|
2291 |
+
#: profile-builder-2.0/admin/manage-fields.php:410
|
2292 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2293 |
+
msgid "Luxembourg"
|
2294 |
+
msgstr "Luxembourg"
|
2295 |
+
|
2296 |
+
#: profile-builder-2.0/admin/manage-fields.php:411
|
2297 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2298 |
+
msgid "Macao"
|
2299 |
+
msgstr "Macao"
|
2300 |
+
|
2301 |
+
#: profile-builder-2.0/admin/manage-fields.php:412
|
2302 |
+
msgid "Macedonia"
|
2303 |
+
msgstr "Macedonia"
|
2304 |
+
|
2305 |
+
#: profile-builder-2.0/admin/manage-fields.php:413
|
2306 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2307 |
+
msgid "Madagascar"
|
2308 |
+
msgstr "Madagascar"
|
2309 |
+
|
2310 |
+
#: profile-builder-2.0/admin/manage-fields.php:414
|
2311 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2312 |
+
msgid "Malawi"
|
2313 |
+
msgstr "Malawi"
|
2314 |
+
|
2315 |
+
#: profile-builder-2.0/admin/manage-fields.php:415
|
2316 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2317 |
+
msgid "Malaysia"
|
2318 |
+
msgstr "Malaysia"
|
2319 |
+
|
2320 |
+
#: profile-builder-2.0/admin/manage-fields.php:416
|
2321 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2322 |
+
msgid "Maldives"
|
2323 |
+
msgstr "Maldives"
|
2324 |
+
|
2325 |
+
#: profile-builder-2.0/admin/manage-fields.php:417
|
2326 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2327 |
+
msgid "Mali"
|
2328 |
+
msgstr "Mali"
|
2329 |
+
|
2330 |
+
#: profile-builder-2.0/admin/manage-fields.php:418
|
2331 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2332 |
+
msgid "Malta"
|
2333 |
+
msgstr "Malta"
|
2334 |
+
|
2335 |
+
#: profile-builder-2.0/admin/manage-fields.php:419
|
2336 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2337 |
+
msgid "Marshall Islands"
|
2338 |
+
msgstr "Marshall Islands"
|
2339 |
+
|
2340 |
+
#: profile-builder-2.0/admin/manage-fields.php:420
|
2341 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2342 |
+
msgid "Martinique"
|
2343 |
+
msgstr "Martinique"
|
2344 |
+
|
2345 |
+
#: profile-builder-2.0/admin/manage-fields.php:421
|
2346 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2347 |
+
msgid "Mauritania"
|
2348 |
+
msgstr "Mauritania"
|
2349 |
+
|
2350 |
+
#: profile-builder-2.0/admin/manage-fields.php:422
|
2351 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2352 |
+
msgid "Mauritius"
|
2353 |
+
msgstr "Mauritius"
|
2354 |
+
|
2355 |
+
#: profile-builder-2.0/admin/manage-fields.php:423
|
2356 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2357 |
+
msgid "Mayotte"
|
2358 |
+
msgstr "Mayotte"
|
2359 |
+
|
2360 |
+
#: profile-builder-2.0/admin/manage-fields.php:424
|
2361 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2362 |
+
msgid "Mexico"
|
2363 |
+
msgstr "Mexico"
|
2364 |
+
|
2365 |
+
#: profile-builder-2.0/admin/manage-fields.php:425
|
2366 |
+
msgid "Micronesia"
|
2367 |
+
msgstr "Micronesia"
|
2368 |
+
|
2369 |
+
#: profile-builder-2.0/admin/manage-fields.php:426
|
2370 |
+
msgid "Moldova"
|
2371 |
+
msgstr "Moldova"
|
2372 |
+
|
2373 |
+
#: profile-builder-2.0/admin/manage-fields.php:427
|
2374 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2375 |
+
msgid "Monaco"
|
2376 |
+
msgstr "Monaco"
|
2377 |
+
|
2378 |
+
#: profile-builder-2.0/admin/manage-fields.php:428
|
2379 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2380 |
+
msgid "Mongolia"
|
2381 |
+
msgstr "Mongolia"
|
2382 |
+
|
2383 |
+
#: profile-builder-2.0/admin/manage-fields.php:429
|
2384 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2385 |
+
msgid "Montenegro"
|
2386 |
+
msgstr "Montenegro"
|
2387 |
+
|
2388 |
+
#: profile-builder-2.0/admin/manage-fields.php:430
|
2389 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2390 |
+
msgid "Montserrat"
|
2391 |
+
msgstr "Montserrat"
|
2392 |
+
|
2393 |
+
#: profile-builder-2.0/admin/manage-fields.php:431
|
2394 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2395 |
+
msgid "Morocco"
|
2396 |
+
msgstr "Morocco"
|
2397 |
+
|
2398 |
+
#: profile-builder-2.0/admin/manage-fields.php:432
|
2399 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2400 |
+
msgid "Mozambique"
|
2401 |
+
msgstr "Mozambique"
|
2402 |
+
|
2403 |
+
#: profile-builder-2.0/admin/manage-fields.php:433
|
2404 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2405 |
+
msgid "Myanmar"
|
2406 |
+
msgstr "Myanmar"
|
2407 |
+
|
2408 |
+
#: profile-builder-2.0/admin/manage-fields.php:434
|
2409 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2410 |
+
msgid "Namibia"
|
2411 |
+
msgstr "Namibia"
|
2412 |
+
|
2413 |
+
#: profile-builder-2.0/admin/manage-fields.php:435
|
2414 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2415 |
+
msgid "Nauru"
|
2416 |
+
msgstr "Nauru"
|
2417 |
+
|
2418 |
+
#: profile-builder-2.0/admin/manage-fields.php:436
|
2419 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2420 |
+
msgid "Nepal"
|
2421 |
+
msgstr "Nepal"
|
2422 |
+
|
2423 |
+
#: profile-builder-2.0/admin/manage-fields.php:437
|
2424 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2425 |
+
msgid "Netherlands"
|
2426 |
+
msgstr "Netherlands"
|
2427 |
+
|
2428 |
+
#: profile-builder-2.0/admin/manage-fields.php:438
|
2429 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2430 |
+
msgid "New Caledonia"
|
2431 |
+
msgstr "New Caledonia"
|
2432 |
+
|
2433 |
+
#: profile-builder-2.0/admin/manage-fields.php:439
|
2434 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2435 |
+
msgid "New Zealand"
|
2436 |
+
msgstr "New Zealand"
|
2437 |
+
|
2438 |
+
#: profile-builder-2.0/admin/manage-fields.php:440
|
2439 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2440 |
+
msgid "Nicaragua"
|
2441 |
+
msgstr "Nicaragua"
|
2442 |
+
|
2443 |
+
#: profile-builder-2.0/admin/manage-fields.php:441
|
2444 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2445 |
+
msgid "Niger"
|
2446 |
+
msgstr "Niger"
|
2447 |
+
|
2448 |
+
#: profile-builder-2.0/admin/manage-fields.php:442
|
2449 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2450 |
+
msgid "Nigeria"
|
2451 |
+
msgstr "Nigeria"
|
2452 |
+
|
2453 |
+
#: profile-builder-2.0/admin/manage-fields.php:443
|
2454 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2455 |
+
msgid "Niue"
|
2456 |
+
msgstr "Niue"
|
2457 |
+
|
2458 |
+
#: profile-builder-2.0/admin/manage-fields.php:444
|
2459 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2460 |
+
msgid "Norfolk Island"
|
2461 |
+
msgstr "Norfolk Island"
|
2462 |
+
|
2463 |
+
#: profile-builder-2.0/admin/manage-fields.php:445
|
2464 |
+
msgid "North Korea"
|
2465 |
+
msgstr "North Korea"
|
2466 |
+
|
2467 |
+
#: profile-builder-2.0/admin/manage-fields.php:446
|
2468 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2469 |
+
msgid "Northern Mariana Islands"
|
2470 |
+
msgstr "Northern Mariana Islands"
|
2471 |
+
|
2472 |
+
#: profile-builder-2.0/admin/manage-fields.php:447
|
2473 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2474 |
+
msgid "Norway"
|
2475 |
+
msgstr "Norway"
|
2476 |
+
|
2477 |
+
#: profile-builder-2.0/admin/manage-fields.php:448
|
2478 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2479 |
+
msgid "Oman"
|
2480 |
+
msgstr "Oman"
|
2481 |
+
|
2482 |
+
#: profile-builder-2.0/admin/manage-fields.php:449
|
2483 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2484 |
+
msgid "Pakistan"
|
2485 |
+
msgstr "Pakistan"
|
2486 |
+
|
2487 |
+
#: profile-builder-2.0/admin/manage-fields.php:450
|
2488 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2489 |
+
msgid "Palau"
|
2490 |
+
msgstr "Palau"
|
2491 |
+
|
2492 |
+
#: profile-builder-2.0/admin/manage-fields.php:451
|
2493 |
+
msgid "Palestinian Territory"
|
2494 |
+
msgstr "Palestinian Territory"
|
2495 |
+
|
2496 |
+
#: profile-builder-2.0/admin/manage-fields.php:452
|
2497 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2498 |
+
msgid "Panama"
|
2499 |
+
msgstr "Panama"
|
2500 |
+
|
2501 |
+
#: profile-builder-2.0/admin/manage-fields.php:453
|
2502 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2503 |
+
msgid "Papua New Guinea"
|
2504 |
+
msgstr "Papua New Guinea"
|
2505 |
+
|
2506 |
+
#: profile-builder-2.0/admin/manage-fields.php:454
|
2507 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2508 |
+
msgid "Paraguay"
|
2509 |
+
msgstr "Paraguay"
|
2510 |
+
|
2511 |
+
#: profile-builder-2.0/admin/manage-fields.php:455
|
2512 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2513 |
+
msgid "Peru"
|
2514 |
+
msgstr "Peru"
|
2515 |
+
|
2516 |
+
#: profile-builder-2.0/admin/manage-fields.php:456
|
2517 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2518 |
+
msgid "Philippines"
|
2519 |
+
msgstr "Philippines"
|
2520 |
+
|
2521 |
+
#: profile-builder-2.0/admin/manage-fields.php:457
|
2522 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2523 |
+
msgid "Pitcairn"
|
2524 |
+
msgstr "Pitcairn"
|
2525 |
+
|
2526 |
+
#: profile-builder-2.0/admin/manage-fields.php:458
|
2527 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2528 |
+
msgid "Poland"
|
2529 |
+
msgstr "Poland"
|
2530 |
+
|
2531 |
+
#: profile-builder-2.0/admin/manage-fields.php:459
|
2532 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2533 |
+
msgid "Portugal"
|
2534 |
+
msgstr "Portugal"
|
2535 |
+
|
2536 |
+
#: profile-builder-2.0/admin/manage-fields.php:460
|
2537 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2538 |
+
msgid "Puerto Rico"
|
2539 |
+
msgstr "Puerto Rico"
|
2540 |
+
|
2541 |
+
#: profile-builder-2.0/admin/manage-fields.php:461
|
2542 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2543 |
+
msgid "Qatar"
|
2544 |
+
msgstr "Qatar"
|
2545 |
+
|
2546 |
+
#: profile-builder-2.0/admin/manage-fields.php:462
|
2547 |
+
msgid "Republic of the Congo"
|
2548 |
+
msgstr "Republic of the Congo"
|
2549 |
+
|
2550 |
+
#: profile-builder-2.0/admin/manage-fields.php:463
|
2551 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2552 |
+
msgid "Reunion"
|
2553 |
+
msgstr "Reunion"
|
2554 |
+
|
2555 |
+
#: profile-builder-2.0/admin/manage-fields.php:464
|
2556 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2557 |
+
msgid "Romania"
|
2558 |
+
msgstr "Romania"
|
2559 |
+
|
2560 |
+
#: profile-builder-2.0/admin/manage-fields.php:465
|
2561 |
+
msgid "Russia"
|
2562 |
+
msgstr "Russia"
|
2563 |
+
|
2564 |
+
#: profile-builder-2.0/admin/manage-fields.php:466
|
2565 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2566 |
+
msgid "Rwanda"
|
2567 |
+
msgstr "Rwanda"
|
2568 |
+
|
2569 |
+
#: profile-builder-2.0/admin/manage-fields.php:467
|
2570 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2571 |
+
msgid "Saint Barthelemy"
|
2572 |
+
msgstr "Saint Barthelemy"
|
2573 |
+
|
2574 |
+
#: profile-builder-2.0/admin/manage-fields.php:468
|
2575 |
+
msgid "Saint Helena"
|
2576 |
+
msgstr "Saint Helena"
|
2577 |
+
|
2578 |
+
#: profile-builder-2.0/admin/manage-fields.php:469
|
2579 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2580 |
+
msgid "Saint Kitts and Nevis"
|
2581 |
+
msgstr "Saint Kitts and Nevis"
|
2582 |
+
|
2583 |
+
#: profile-builder-2.0/admin/manage-fields.php:470
|
2584 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2585 |
+
msgid "Saint Lucia"
|
2586 |
+
msgstr "Saint Lucia"
|
2587 |
+
|
2588 |
+
#: profile-builder-2.0/admin/manage-fields.php:471
|
2589 |
+
msgid "Saint Martin"
|
2590 |
+
msgstr "Saint Martin"
|
2591 |
+
|
2592 |
+
#: profile-builder-2.0/admin/manage-fields.php:472
|
2593 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2594 |
+
msgid "Saint Pierre and Miquelon"
|
2595 |
+
msgstr "Saint Pierre and Miquelon"
|
2596 |
+
|
2597 |
+
#: profile-builder-2.0/admin/manage-fields.php:473
|
2598 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2599 |
+
msgid "Saint Vincent and the Grenadines"
|
2600 |
+
msgstr "Saint Vincent and the Grenadines"
|
2601 |
+
|
2602 |
+
#: profile-builder-2.0/admin/manage-fields.php:474
|
2603 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2604 |
+
msgid "Samoa"
|
2605 |
+
msgstr "Samoa"
|
2606 |
+
|
2607 |
+
#: profile-builder-2.0/admin/manage-fields.php:475
|
2608 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2609 |
+
msgid "San Marino"
|
2610 |
+
msgstr "San Marino"
|
2611 |
+
|
2612 |
+
#: profile-builder-2.0/admin/manage-fields.php:476
|
2613 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2614 |
+
msgid "Sao Tome and Principe"
|
2615 |
+
msgstr "Sao Tome and Principe"
|
2616 |
+
|
2617 |
+
#: profile-builder-2.0/admin/manage-fields.php:477
|
2618 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2619 |
+
msgid "Saudi Arabia"
|
2620 |
+
msgstr "Saudi Arabia"
|
2621 |
+
|
2622 |
+
#: profile-builder-2.0/admin/manage-fields.php:478
|
2623 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2624 |
+
msgid "Senegal"
|
2625 |
+
msgstr "Senegal"
|
2626 |
+
|
2627 |
+
#: profile-builder-2.0/admin/manage-fields.php:479
|
2628 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2629 |
+
msgid "Serbia"
|
2630 |
+
msgstr "Serbia"
|
2631 |
+
|
2632 |
+
#: profile-builder-2.0/admin/manage-fields.php:480
|
2633 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2634 |
+
msgid "Seychelles"
|
2635 |
+
msgstr "Seychelles"
|
2636 |
+
|
2637 |
+
#: profile-builder-2.0/admin/manage-fields.php:481
|
2638 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2639 |
+
msgid "Sierra Leone"
|
2640 |
+
msgstr "Sierra Leone"
|
2641 |
+
|
2642 |
+
#: profile-builder-2.0/admin/manage-fields.php:482
|
2643 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2644 |
+
msgid "Singapore"
|
2645 |
+
msgstr "Singapore"
|
2646 |
+
|
2647 |
+
#: profile-builder-2.0/admin/manage-fields.php:483
|
2648 |
+
msgid "Sint Maarten"
|
2649 |
+
msgstr "Sint Maarten"
|
2650 |
+
|
2651 |
+
#: profile-builder-2.0/admin/manage-fields.php:484
|
2652 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2653 |
+
msgid "Slovakia"
|
2654 |
+
msgstr "Slovakia"
|
2655 |
+
|
2656 |
+
#: profile-builder-2.0/admin/manage-fields.php:485
|
2657 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2658 |
+
msgid "Slovenia"
|
2659 |
+
msgstr "Slovenia"
|
2660 |
+
|
2661 |
+
#: profile-builder-2.0/admin/manage-fields.php:486
|
2662 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2663 |
+
msgid "Solomon Islands"
|
2664 |
+
msgstr "Solomon Islands"
|
2665 |
+
|
2666 |
+
#: profile-builder-2.0/admin/manage-fields.php:487
|
2667 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2668 |
+
msgid "Somalia"
|
2669 |
+
msgstr "Somalia"
|
2670 |
+
|
2671 |
+
#: profile-builder-2.0/admin/manage-fields.php:488
|
2672 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2673 |
+
msgid "South Africa"
|
2674 |
+
msgstr "South Africa"
|
2675 |
+
|
2676 |
+
#: profile-builder-2.0/admin/manage-fields.php:489
|
2677 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2678 |
+
msgid "South Georgia and the South Sandwich Islands"
|
2679 |
+
msgstr "South Georgia and the South Sandwich Islands"
|
2680 |
+
|
2681 |
+
#: profile-builder-2.0/admin/manage-fields.php:490
|
2682 |
+
msgid "South Korea"
|
2683 |
+
msgstr "South Korea"
|
2684 |
+
|
2685 |
+
#: profile-builder-2.0/admin/manage-fields.php:491
|
2686 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2687 |
+
msgid "South Sudan"
|
2688 |
+
msgstr "South Sudan"
|
2689 |
+
|
2690 |
+
#: profile-builder-2.0/admin/manage-fields.php:492
|
2691 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2692 |
+
msgid "Spain"
|
2693 |
+
msgstr "Spain"
|
2694 |
+
|
2695 |
+
#: profile-builder-2.0/admin/manage-fields.php:493
|
2696 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2697 |
+
msgid "Sri Lanka"
|
2698 |
+
msgstr "Sri Lanka"
|
2699 |
+
|
2700 |
+
#: profile-builder-2.0/admin/manage-fields.php:494
|
2701 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2702 |
+
msgid "Sudan"
|
2703 |
+
msgstr "Sudan"
|
2704 |
+
|
2705 |
+
#: profile-builder-2.0/admin/manage-fields.php:495
|
2706 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2707 |
+
msgid "Suriname"
|
2708 |
+
msgstr "Suriname"
|
2709 |
+
|
2710 |
+
#: profile-builder-2.0/admin/manage-fields.php:496
|
2711 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2712 |
+
msgid "Svalbard and Jan Mayen"
|
2713 |
+
msgstr "Svalbard and Jan Mayen"
|
2714 |
+
|
2715 |
+
#: profile-builder-2.0/admin/manage-fields.php:497
|
2716 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2717 |
+
msgid "Swaziland"
|
2718 |
+
msgstr "Swaziland"
|
2719 |
+
|
2720 |
+
#: profile-builder-2.0/admin/manage-fields.php:498
|
2721 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2722 |
+
msgid "Sweden"
|
2723 |
+
msgstr "Sweden"
|
2724 |
+
|
2725 |
+
#: profile-builder-2.0/admin/manage-fields.php:499
|
2726 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2727 |
+
msgid "Switzerland"
|
2728 |
+
msgstr "Switzerland"
|
2729 |
+
|
2730 |
+
#: profile-builder-2.0/admin/manage-fields.php:500
|
2731 |
+
msgid "Syria"
|
2732 |
+
msgstr "Syria"
|
2733 |
+
|
2734 |
+
#: profile-builder-2.0/admin/manage-fields.php:501
|
2735 |
+
msgid "Taiwan"
|
2736 |
+
msgstr "Taiwan"
|
2737 |
+
|
2738 |
+
#: profile-builder-2.0/admin/manage-fields.php:502
|
2739 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2740 |
+
msgid "Tajikistan"
|
2741 |
+
msgstr "Tajikistan"
|
2742 |
+
|
2743 |
+
#: profile-builder-2.0/admin/manage-fields.php:503
|
2744 |
+
msgid "Tanzania"
|
2745 |
+
msgstr "Tanzania"
|
2746 |
+
|
2747 |
+
#: profile-builder-2.0/admin/manage-fields.php:504
|
2748 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2749 |
+
msgid "Thailand"
|
2750 |
+
msgstr "Thailand"
|
2751 |
+
|
2752 |
+
#: profile-builder-2.0/admin/manage-fields.php:505
|
2753 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2754 |
+
msgid "Togo"
|
2755 |
+
msgstr "Togo"
|
2756 |
+
|
2757 |
+
#: profile-builder-2.0/admin/manage-fields.php:506
|
2758 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2759 |
+
msgid "Tokelau"
|
2760 |
+
msgstr "Tokelau"
|
2761 |
+
|
2762 |
+
#: profile-builder-2.0/admin/manage-fields.php:507
|
2763 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2764 |
+
msgid "Tonga"
|
2765 |
+
msgstr "Tonga"
|
2766 |
+
|
2767 |
+
#: profile-builder-2.0/admin/manage-fields.php:508
|
2768 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2769 |
+
msgid "Trinidad and Tobago"
|
2770 |
+
msgstr "Trinidad and Tobago"
|
2771 |
+
|
2772 |
+
#: profile-builder-2.0/admin/manage-fields.php:509
|
2773 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2774 |
+
msgid "Tunisia"
|
2775 |
+
msgstr "Tunisia"
|
2776 |
+
|
2777 |
+
#: profile-builder-2.0/admin/manage-fields.php:510
|
2778 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2779 |
+
msgid "Turkey"
|
2780 |
+
msgstr "Turkey"
|
2781 |
+
|
2782 |
+
#: profile-builder-2.0/admin/manage-fields.php:511
|
2783 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2784 |
+
msgid "Turkmenistan"
|
2785 |
+
msgstr "Turkmenistan"
|
2786 |
+
|
2787 |
+
#: profile-builder-2.0/admin/manage-fields.php:512
|
2788 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2789 |
+
msgid "Turks and Caicos Islands"
|
2790 |
+
msgstr "Turks and Caicos Islands"
|
2791 |
+
|
2792 |
+
#: profile-builder-2.0/admin/manage-fields.php:513
|
2793 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2794 |
+
msgid "Tuvalu"
|
2795 |
+
msgstr "Tuvalu"
|
2796 |
+
|
2797 |
+
#: profile-builder-2.0/admin/manage-fields.php:514
|
2798 |
+
msgid "U.S. Virgin Islands"
|
2799 |
+
msgstr "U.S. Virgin Islands"
|
2800 |
+
|
2801 |
+
#: profile-builder-2.0/admin/manage-fields.php:515
|
2802 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2803 |
+
msgid "Uganda"
|
2804 |
+
msgstr "Uganda"
|
2805 |
+
|
2806 |
+
#: profile-builder-2.0/admin/manage-fields.php:516
|
2807 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2808 |
+
msgid "Ukraine"
|
2809 |
+
msgstr "Ukraine"
|
2810 |
+
|
2811 |
+
#: profile-builder-2.0/admin/manage-fields.php:517
|
2812 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2813 |
+
msgid "United Arab Emirates"
|
2814 |
+
msgstr "United Arab Emirates"
|
2815 |
+
|
2816 |
+
#: profile-builder-2.0/admin/manage-fields.php:518
|
2817 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2818 |
+
msgid "United Kingdom"
|
2819 |
+
msgstr "United Kingdom"
|
2820 |
+
|
2821 |
+
#: profile-builder-2.0/admin/manage-fields.php:519
|
2822 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2823 |
+
msgid "United States"
|
2824 |
+
msgstr "United States"
|
2825 |
+
|
2826 |
+
#: profile-builder-2.0/admin/manage-fields.php:520
|
2827 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2828 |
+
msgid "United States Minor Outlying Islands"
|
2829 |
+
msgstr "United States Minor Outlying Islands"
|
2830 |
+
|
2831 |
+
#: profile-builder-2.0/admin/manage-fields.php:521
|
2832 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2833 |
+
msgid "Uruguay"
|
2834 |
+
msgstr "Uruguay"
|
2835 |
+
|
2836 |
+
#: profile-builder-2.0/admin/manage-fields.php:522
|
2837 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2838 |
+
msgid "Uzbekistan"
|
2839 |
+
msgstr "Uzbekistan"
|
2840 |
+
|
2841 |
+
#: profile-builder-2.0/admin/manage-fields.php:523
|
2842 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2843 |
+
msgid "Vanuatu"
|
2844 |
+
msgstr "Vanuatu"
|
2845 |
+
|
2846 |
+
#: profile-builder-2.0/admin/manage-fields.php:524
|
2847 |
+
msgid "Vatican"
|
2848 |
+
msgstr "Vatican"
|
2849 |
+
|
2850 |
+
#: profile-builder-2.0/admin/manage-fields.php:525
|
2851 |
+
msgid "Venezuela"
|
2852 |
+
msgstr "Venezuela"
|
2853 |
+
|
2854 |
+
#: profile-builder-2.0/admin/manage-fields.php:526
|
2855 |
+
msgid "Vietnam"
|
2856 |
+
msgstr "Vietnam"
|
2857 |
+
|
2858 |
+
#: profile-builder-2.0/admin/manage-fields.php:527
|
2859 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2860 |
+
msgid "Wallis and Futuna"
|
2861 |
+
msgstr "Wallis and Futuna"
|
2862 |
+
|
2863 |
+
#: profile-builder-2.0/admin/manage-fields.php:528
|
2864 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2865 |
+
msgid "Western Sahara"
|
2866 |
+
msgstr "Western Sahara"
|
2867 |
+
|
2868 |
+
#: profile-builder-2.0/admin/manage-fields.php:529
|
2869 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2870 |
+
msgid "Yemen"
|
2871 |
+
msgstr "Yemen"
|
2872 |
+
|
2873 |
+
#: profile-builder-2.0/admin/manage-fields.php:530
|
2874 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2875 |
+
msgid "Zambia"
|
2876 |
+
msgstr "Zambia"
|
2877 |
+
|
2878 |
+
#: profile-builder-2.0/admin/manage-fields.php:531
|
2879 |
+
#: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2880 |
+
msgid "Zimbabwe"
|
2881 |
+
msgstr "Zimbabwe"
|
2882 |
+
|
2883 |
+
#: profile-builder-2.0/admin/manage-fields.php:1219
|
2884 |
+
msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
|
2885 |
+
msgstr ""
|
2886 |
+
|
2887 |
+
#: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
|
2888 |
+
msgid "Your account has to be confirmed by an administrator before you can log in."
|
2889 |
+
msgstr ""
|
2890 |
+
|
2891 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:216
|
2892 |
+
msgid "Your account has been successfully created!"
|
2893 |
+
msgstr ""
|
2894 |
+
|
2895 |
+
#: profile-builder-2.0/features/functions.php:678
|
2896 |
+
#: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374
|
2897 |
+
#: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379
|
2898 |
+
#: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
|
2899 |
+
#: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458
|
2900 |
+
msgid "Please enter a (valid) reCAPTCHA value"
|
2901 |
+
msgstr ""
|
2902 |
+
|
2903 |
+
#: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
|
2904 |
+
msgid "Click the BACK button on your browser, and try again."
|
2905 |
+
msgstr ""
|
2906 |
+
|
2907 |
+
#: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78
|
2908 |
+
#: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
|
2909 |
+
msgid "Sorry, you cannot upload this file type for this field."
|
2910 |
+
msgstr ""
|
2911 |
+
|
2912 |
+
#: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
|
2913 |
+
msgid "An error occurred, please try again later."
|
2914 |
+
msgstr ""
|
2915 |
+
|
2916 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:282
|
2917 |
+
msgid "More"
|
2918 |
+
msgstr ""
|
2919 |
+
|
2920 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:376
|
2921 |
+
msgid "You do not have permission to view this user list."
|
2922 |
+
msgstr ""
|
2923 |
+
|
2924 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:389
|
2925 |
+
msgid "You do not have the required user role to view this user list."
|
2926 |
+
msgstr ""
|
2927 |
+
|
2928 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2253
|
2929 |
+
msgid "Ascending"
|
2930 |
+
msgstr ""
|
2931 |
+
|
2932 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2254
|
2933 |
+
msgid "Descending"
|
2934 |
+
msgstr ""
|
2935 |
+
|
2936 |
+
#: profile-builder-2.0/admin/add-ons.php:148
|
2937 |
+
#: profile-builder-2.0/admin/add-ons.php:248
|
2938 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:134
|
2939 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:213
|
2940 |
+
msgid "Download Now"
|
2941 |
+
msgstr "Prenesite sedaj"
|
2942 |
+
|
2943 |
+
#: profile-builder-2.0/admin/admin-functions.php:200
|
2944 |
+
msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
|
2945 |
+
msgstr "Če ste zadovoljni z uporabo <strong> %1$s </strong> nas prosimo <a href=\"%2$s\" target=\"_blank\">ocenite na WordPress.org</a>. Več zadovoljnih uporabnikov pomeni več dodatnih funkcij, manj napak in boljšo podporo za vse."
|
2946 |
+
|
2947 |
+
#: profile-builder-2.0/admin/manage-fields.php:82
|
2948 |
+
msgid "Choose one of the supported field types"
|
2949 |
+
msgstr "Izberite enega izmed podprtih tipov polj"
|
2950 |
+
|
2951 |
+
#: profile-builder-2.0/admin/manage-fields.php:84
|
2952 |
+
msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
|
2953 |
+
msgstr "Dodatni tipi polj so na voljo v <a href=\"%s\">Hobbyist ali PRO različici</a>."
|
2954 |
+
|
2955 |
+
#: profile-builder-2.0/admin/manage-fields.php:131
|
2956 |
+
msgid "Site Key"
|
2957 |
+
msgstr "Ključ spletne strani"
|
2958 |
+
|
2959 |
+
#: profile-builder-2.0/admin/manage-fields.php:131
|
2960 |
+
msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2961 |
+
msgstr "Ključ Google strani, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2962 |
+
|
2963 |
+
#: profile-builder-2.0/admin/manage-fields.php:132
|
2964 |
+
msgid "Secret Key"
|
2965 |
+
msgstr "Skriti ključ"
|
2966 |
+
|
2967 |
+
#: profile-builder-2.0/admin/manage-fields.php:132
|
2968 |
+
msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2969 |
+
msgstr "Skriti ključ iz Googla, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2970 |
+
|
2971 |
+
#: profile-builder-2.0/admin/manage-fields.php:1023
|
2972 |
+
msgid "You must enter the site key\n"
|
2973 |
+
msgstr "Vnesti morate ključ spletne strani\n"
|
2974 |
+
|
2975 |
+
#: profile-builder-2.0/admin/manage-fields.php:1025
|
2976 |
+
msgid "You must enter the secret key\n"
|
2977 |
+
msgstr "Vnesti morate skrivni ključ\n"
|
2978 |
+
|
2979 |
+
#: profile-builder-2.0/admin/add-ons.php:10
|
2980 |
+
#: profile-builder-2.0/admin/add-ons.php:32
|
2981 |
+
msgid "Add-Ons"
|
2982 |
+
msgstr "Dodatki"
|
2983 |
+
|
2984 |
+
#: profile-builder-2.0/admin/add-ons.php:34
|
2985 |
+
#: profile-builder-2.0/admin/add-ons.php:129
|
2986 |
+
#: profile-builder-2.0/admin/add-ons.php:231
|
2987 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:78
|
2988 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:114
|
2989 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:193
|
2990 |
+
msgid "Activate"
|
2991 |
+
msgstr "Aktiviraj"
|
2992 |
+
|
2993 |
+
#: profile-builder-2.0/admin/add-ons.php:36
|
2994 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:80
|
2995 |
+
msgid "Downloading and installing..."
|
2996 |
+
msgstr "Prenašanje in nameščanje..."
|
2997 |
+
|
2998 |
+
#: profile-builder-2.0/admin/add-ons.php:37
|
2999 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:81
|
3000 |
+
msgid "Installation complete"
|
3001 |
+
msgstr "Namestitev končana"
|
3002 |
+
|
3003 |
+
#: profile-builder-2.0/admin/add-ons.php:39
|
3004 |
+
msgid "Add-On is Active"
|
3005 |
+
msgstr "Dodatek je aktiven"
|
3006 |
+
|
3007 |
+
#: profile-builder-2.0/admin/add-ons.php:40
|
3008 |
+
msgid "Add-On has been activated"
|
3009 |
+
msgstr "Dodatek je bil aktiviran"
|
3010 |
+
|
3011 |
+
#: profile-builder-2.0/admin/add-ons.php:41
|
3012 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:85
|
3013 |
+
msgid "Retry Install"
|
3014 |
+
msgstr "Ponoven poskus namestitve"
|
3015 |
+
|
3016 |
+
#: profile-builder-2.0/admin/add-ons.php:43
|
3017 |
+
#: profile-builder-2.0/admin/add-ons.php:140
|
3018 |
+
msgid "Add-On is <strong>active</strong>"
|
3019 |
+
msgstr "Dodatek je <strong>aktiven</strong>"
|
3020 |
+
|
3021 |
+
#: profile-builder-2.0/admin/add-ons.php:44
|
3022 |
+
#: profile-builder-2.0/admin/add-ons.php:138
|
3023 |
+
msgid "Add-On is <strong>inactive</strong>"
|
3024 |
+
msgstr "Dodatek je <strong>neaktiven</strong>"
|
3025 |
+
|
3026 |
+
#: profile-builder-2.0/admin/add-ons.php:46
|
3027 |
+
#: profile-builder-2.0/admin/add-ons.php:133
|
3028 |
+
#: profile-builder-2.0/admin/add-ons.php:235
|
3029 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:90
|
3030 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:118
|
3031 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:197
|
3032 |
+
msgid "Deactivate"
|
3033 |
+
msgstr "Deaktiviraj"
|
3034 |
+
|
3035 |
+
#: profile-builder-2.0/admin/add-ons.php:47
|
3036 |
+
msgid "Add-On has been deactivated."
|
3037 |
+
msgstr "Dodatek je bil deaktiviran"
|
3038 |
+
|
3039 |
+
#: profile-builder-2.0/admin/add-ons.php:59
|
3040 |
+
msgid "Something went wrong, we could not connect to the server. Please try again later."
|
3041 |
+
msgstr "Nekaj je šlo narobe, povezava na strežnik je bila neuspešna. Prosimo poizkusite kasneje."
|
3042 |
+
|
3043 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:137
|
3044 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:216
|
3045 |
+
msgid "Install Now"
|
3046 |
+
msgstr "Namestite sedaj"
|
3047 |
+
|
3048 |
+
#: profile-builder-2.0/admin/add-ons.php:153
|
3049 |
+
#: profile-builder-2.0/admin/add-ons.php:251
|
3050 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:141
|
3051 |
+
#: profile-builder-2.0/admin/pms-cross-promotion.php:220
|
3052 |
+
msgid "Compatible with your version of Profile Builder."
|
3053 |
+
msgstr "Združljivo z vašo različico Profile Builder"
|
3054 |
+
|
3055 |
+
#: profile-builder-2.0/admin/add-ons.php:162
|
3056 |
+
msgid "Upgrade Profile Builder"
|
3057 |
+
msgstr "Posodobite Profile Builder"
|
3058 |
+
|
3059 |
+
#: profile-builder-2.0/admin/add-ons.php:163
|
3060 |
+
msgid "Not compatible with Profile Builder"
|
3061 |
+
msgstr "Ni združljivo s Profile Builder"
|
3062 |
+
|
3063 |
+
#: profile-builder-2.0/admin/add-ons.php:171
|
3064 |
+
msgid "Not compatible with your version of Profile Builder."
|
3065 |
+
msgstr "Ni združljivo z vašo različico Profile Builder"
|
3066 |
+
|
3067 |
+
#: profile-builder-2.0/admin/add-ons.php:172
|
3068 |
+
msgid "Minimum required Profile Builder version:"
|
3069 |
+
msgstr "Minimalna zahtevana različica Profile Builder:"
|
3070 |
+
|
3071 |
+
#: profile-builder-2.0/admin/add-ons.php:177
|
3072 |
+
msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
|
3073 |
+
msgstr "Namestitev dodatka je bila neuspešna. Poizkusite ponovno ali <a href=\"%s\" target=\"_blank\">namestite ročno</a>."
|
3074 |
+
|
3075 |
+
#: profile-builder-2.0/front-end/default-fields/email/email.php:51
|
3076 |
+
msgid "You must enter a valid email address."
|
3077 |
+
msgstr "Vnesti morate veljaven e-naslov."
|
3078 |
+
|
3079 |
+
#: profile-builder-2.0/front-end/default-fields/username/username.php:52
|
3080 |
+
#: profile-builder-2.0/front-end/default-fields/username/username.php:60
|
3081 |
+
msgid "This username is invalid because it uses illegal characters."
|
3082 |
+
msgstr "To uporabniško ime je neveljavno, ker vsebuje nedovoljene znake."
|
3083 |
+
|
3084 |
+
#: profile-builder-2.0/front-end/default-fields/username/username.php:52
|
3085 |
+
#: profile-builder-2.0/front-end/default-fields/username/username.php:60
|
3086 |
+
msgid "Please enter a valid username."
|
3087 |
+
msgstr "Prosimo vpišite veljavno uporabniško ime."
|
3088 |
+
|
3089 |
+
#: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72
|
3090 |
+
#: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85
|
3091 |
+
msgid "Only administrators can see this field on edit profile forms."
|
3092 |
+
msgstr "Samo skrbniki strani lahko vidijo to polje na urejanju profilnih obrazcev"
|
3093 |
+
|
3094 |
+
#: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81
|
3095 |
+
msgid "As an administrator you cannot change your role."
|
3096 |
+
msgstr "Kot skrbnik strani ne morete spremeniti svoje vloge."
|
3097 |
+
|
3098 |
+
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117
|
3099 |
+
msgid ""
|
3100 |
+
"\n"
|
3101 |
+
"<p>{{username}} has requested a password change via the password reset feature.</p>\n"
|
3102 |
+
"<p>His/her new password is: {{password}}</p>\n"
|
3103 |
+
msgstr ""
|
3104 |
+
"\n"
|
3105 |
+
"<p>{{username}} je prosil za spremembo gesla preko funkcije za zamenjavo gesla.</p>\n"
|
3106 |
+
"<p>Novo geslo je: {{password}}</p>\n"
|
3107 |
+
|
3108 |
+
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141
|
3109 |
+
msgid "Admin Notification for User Password Reset"
|
3110 |
+
msgstr "Obvestilo skrbniku strani za ponastavitev gesla uporabnika"
|
3111 |
+
|
3112 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:46
|
3113 |
+
msgid "Reset Key"
|
3114 |
+
msgstr "Ponastavitveni ključ"
|
3115 |
+
|
3116 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:47
|
3117 |
+
msgid "Reset Url"
|
3118 |
+
msgstr "Ponastavitveni spletni naslov"
|
3119 |
+
|
3120 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:48
|
3121 |
+
msgid "Reset Link"
|
3122 |
+
msgstr "Ponastavitvena povezava"
|
3123 |
+
|
3124 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204
|
3125 |
+
msgid ""
|
3126 |
+
"\n"
|
3127 |
+
"<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
|
3128 |
+
"Username: {{username}}</p>\n"
|
3129 |
+
"<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
|
3130 |
+
"<p>To reset your password, visit the following address:<br/>\n"
|
3131 |
+
"{{{reset_link}}}</p>\n"
|
3132 |
+
msgstr ""
|
3133 |
+
"\n"
|
3134 |
+
"<p>Nekdo je sprožil zahtevo po ponastavitvi gesla za sledeči uporabniški račun: {{site_name}}<br/>\n"
|
3135 |
+
"Uporabniško ime: {{username}}</p>\n"
|
3136 |
+
"<p>Če je prišlo do napake, ignorirajte to e-pošto in nič se ne bo zgodilo.</p>\n"
|
3137 |
+
"<p>Za ponastavitev vašega gesla obiščite sledečo povezavo:<br/>\n"
|
3138 |
+
"{{{reset_link}}}</p>\n"
|
3139 |
+
|
3140 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218
|
3141 |
+
msgid "[{{site_name}}] Password Reset"
|
3142 |
+
msgstr "[{{site_name}}] Ponastavitev gesla"
|
3143 |
+
|
3144 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229
|
3145 |
+
msgid "Password Reset Email"
|
3146 |
+
msgstr "E-pošta za ponastavitev gesla"
|
3147 |
+
|
3148 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235
|
3149 |
+
msgid ""
|
3150 |
+
"\n"
|
3151 |
+
"<p>You have successfully reset your password to: {{password}}</p>\n"
|
3152 |
+
msgstr ""
|
3153 |
+
"\n"
|
3154 |
+
"<p>Uspešno ste spremenili vaše geslo v: {{password}}</p>\n"
|
3155 |
+
|
3156 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245
|
3157 |
+
msgid "[{{site_name}}] Password Reset Successfully"
|
3158 |
+
msgstr "[{{site_name}}] Uspešno ponastavljeno geslo"
|
3159 |
+
|
3160 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256
|
3161 |
+
msgid "Password Reset Success Email"
|
3162 |
+
msgstr "E-pošta o uspešni ponastavitvi gesla"
|
3163 |
+
|
3164 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:159
|
3165 |
+
msgid "User Nicename"
|
3166 |
+
msgstr "Uporabnikovo olepšano ime"
|
3167 |
+
|
3168 |
+
#: pb-add-on-woocommerce/woosync-page.php:80
|
3169 |
+
#: pb-add-on-woocommerce/woosync-page.php:114
|
3170 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:499
|
3171 |
+
msgid "None"
|
3172 |
+
msgstr "Noben"
|
3173 |
+
|
3174 |
+
#: profile-builder-2.0/admin/admin-functions.php:132
|
3175 |
+
msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
|
3176 |
+
msgstr "<strong>NAPAKA</strong>: Geslo mora vsebovati najmanj %s znakov"
|
3177 |
+
|
3178 |
+
#: profile-builder-2.0/admin/admin-functions.php:148
|
3179 |
+
msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
|
3180 |
+
msgstr "<strong>NAPAKA</strong>: Geslo mora biti najmanj %s v težavnosti"
|
3181 |
+
|
3182 |
+
#: profile-builder-2.0/admin/general-settings.php:179
|
3183 |
+
msgid "Username and Email"
|
3184 |
+
msgstr "Uporabniško ime in e-naslov"
|
3185 |
+
|
3186 |
+
#: profile-builder-2.0/admin/general-settings.php:184
|
3187 |
+
msgid "\"Username and Email\" - users can Log In with both Username and Email."
|
3188 |
+
msgstr "\"Uporabniško ime in e-naslov\" - uporabnik se lahko prijavi tako z uporabniškim imenom kot tudi z e-naslovom."
|
3189 |
+
|
3190 |
+
#: profile-builder-2.0/admin/general-settings.php:185
|
3191 |
+
msgid "\"Username\" - users can Log In only with Username."
|
3192 |
+
msgstr "\"Uporabniško ime\" - uporabniki se lahko prijavijo le z njihovim uporabniškim imenom."
|
3193 |
+
|
3194 |
+
#: profile-builder-2.0/admin/general-settings.php:186
|
3195 |
+
msgid "\"Email\" - users can Log In only with Email."
|
3196 |
+
msgstr "\"E-naslov\" - uporabniki se lahko prijavijo samo z e-poštnim naslovom"
|
3197 |
+
|
3198 |
+
#: profile-builder-2.0/admin/manage-fields.php:124
|
3199 |
+
msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
|
3200 |
+
msgstr "Določite končnice na katere hočete omejiti naložene datoteke<br/>Primer: .ext1,.ext2,.ext3<br/>Če niso določene, so privzete končnice: .jpg,.jpeg,.gif,.png (.*)"
|
3201 |
+
|
3202 |
+
#: profile-builder-2.0/admin/manage-fields.php:125
|
3203 |
+
msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
|
3204 |
+
msgstr "Določite končnice na katere hočete omejiti naložene datoteke<br/>Primer: .ext1,.ext2,.ext3<br/>Če niso določene, so privzete končnice vse dovoljene WordPress končnice (.*)"
|
3205 |
+
|
3206 |
+
#: profile-builder-2.0/admin/manage-fields.php:135
|
3207 |
+
msgid "User Roles"
|
3208 |
+
msgstr "Vloge uporabnikov"
|
3209 |
+
|
3210 |
+
#: profile-builder-2.0/admin/manage-fields.php:135
|
3211 |
+
msgid "Select which user roles to show to the user ( drag and drop to re-order )"
|
3212 |
+
msgstr "Izberite katere vloge uporabnikov se prikažejo uporabniku ( povleci in spusti za razvrstitev )"
|
3213 |
+
|
3214 |
+
#: profile-builder-2.0/admin/manage-fields.php:136
|
3215 |
+
msgid "User Roles Order"
|
3216 |
+
msgstr "Vrstni red vlog uporabnikov"
|
3217 |
+
|
3218 |
+
#: profile-builder-2.0/admin/manage-fields.php:136
|
3219 |
+
msgid "Save the user role order from the user roles checkboxes"
|
3220 |
+
msgstr "Shranite vrstni red vlog uporabnikov s pomočjo potrditvenih polj"
|
3221 |
+
|
3222 |
+
#: profile-builder-2.0/admin/manage-fields.php:1128
|
3223 |
+
msgid "Please select at least one user role\n"
|
3224 |
+
msgstr "Prosimo izberite vsaj eno vlogo uporabnika\n"
|
3225 |
+
|
3226 |
+
#: profile-builder-2.0/admin/register-version.php:22
|
3227 |
+
msgid "Profile Builder Register"
|
3228 |
+
msgstr "Registriranje Profile Builder"
|
3229 |
+
|
3230 |
+
#: profile-builder-2.0/admin/register-version.php:81
|
3231 |
+
msgid "The serial number is about to expire soon!"
|
3232 |
+
msgstr "Serijska številka bo kmalu potekla!"
|
3233 |
+
|
3234 |
+
#: profile-builder-2.0/admin/register-version.php:81
|
3235 |
+
msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
|
3236 |
+
msgstr "Vaša serijska številka bo kmalu potekla, prosimo %1$sObnovite vašo licenco%2$s."
|
3237 |
+
|
3238 |
+
#: profile-builder-2.0/admin/register-version.php:83
|
3239 |
+
msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
|
3240 |
+
msgstr "Vaša serijska številka je potekla, prosimo %1$sObnovite vašo licenco%2$s."
|
3241 |
+
|
3242 |
+
#: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
|
3243 |
+
msgid "Add Entry"
|
3244 |
+
msgstr "Dodaj vnos"
|
3245 |
+
|
3246 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
|
3247 |
+
msgid "show"
|
3248 |
+
msgstr "prikaži"
|
3249 |
+
|
3250 |
+
#: profile-builder-2.0/features/functions.php:736
|
3251 |
+
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"
|
3252 |
+
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"
|
3253 |
+
|
3254 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:659
|
3255 |
+
msgid "User to edit:"
|
3256 |
+
msgstr "Uporabnik, ki ga urejate:"
|
3257 |
+
|
3258 |
+
#: profile-builder-2.0/front-end/default-fields/password/password.php:46
|
3259 |
+
#: profile-builder-2.0/front-end/recover.php:262
|
3260 |
+
msgid "The password must have the minimum length of %s characters"
|
3261 |
+
msgstr "Geslo mora imeti najmanj %s znakov"
|
3262 |
+
|
3263 |
+
#: profile-builder-2.0/front-end/default-fields/password/password.php:50
|
3264 |
+
#: profile-builder-2.0/front-end/recover.php:266
|
3265 |
+
msgid "The password must have a minimum strength of %s"
|
3266 |
+
msgstr "Geslo mora biti najmanj takšne težavnosti: %s"
|
3267 |
+
|
3268 |
+
#: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118
|
3269 |
+
msgid "You cannot register this user role"
|
3270 |
+
msgstr "Te uporabniške vloge ne morete registrirati"
|
3271 |
+
|
3272 |
+
#: profile-builder-2.0/front-end/login.php:153
|
3273 |
+
msgid "username or email"
|
3274 |
+
msgstr "uporabniško ime ali e-naslov"
|
3275 |
+
|
3276 |
+
#: profile-builder-2.0/front-end/login.php:222
|
3277 |
+
msgid "Username or Email"
|
3278 |
+
msgstr "Uporabniško ime ali e-naslov"
|
3279 |
+
|
3280 |
+
#: profile-builder-2.0/front-end/logout.php:15
|
3281 |
+
msgid "You are currently logged in as %s. "
|
3282 |
+
msgstr "Trenutno ste prijavljeni kot %1$s."
|
3283 |
+
|
3284 |
+
#: profile-builder-2.0/front-end/logout.php:15
|
3285 |
+
msgid "Log out »"
|
3286 |
+
msgstr "Izpis »"
|
3287 |
+
|
3288 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
|
3289 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:31
|
3290 |
+
msgid "User Role"
|
3291 |
+
msgstr "Vloga uporabnika"
|
3292 |
+
|
3293 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2167
|
3294 |
+
msgid "View all extra shortcode parameters"
|
3295 |
+
msgstr "Preglej vse parametre kratke kode (shortcode)"
|
3296 |
+
|
3297 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2181
|
3298 |
+
msgid "displays only the users that you specified the user_id for"
|
3299 |
+
msgstr "prikaže samo uporabnike za katere ste določili user_id"
|
3300 |
+
|
3301 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2187
|
3302 |
+
msgid "displays all users except the ones you specified the user_id for"
|
3303 |
+
msgstr "prikaže vse uporabnike razen tistih za katere ste določili user_id"
|
3304 |
+
|
3305 |
+
#: profile-builder-2.0/features/functions.php:566
|
3306 |
+
msgid "Minimum length of %d characters"
|
3307 |
+
msgstr "Najmanjša dolžina %d znakov"
|
3308 |
+
|
3309 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:146
|
3310 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:149
|
3311 |
+
msgid "This message is only visible by administrators"
|
3312 |
+
msgstr "To sporočilo je vidno samo skrbnikom strani"
|
3313 |
+
|
3314 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:413
|
3315 |
+
msgid "User not found"
|
3316 |
+
msgstr "Uporabnik ni bil najden"
|
3317 |
+
|
3318 |
+
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
|
3319 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
|
3320 |
+
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
3321 |
+
msgstr "Veljavni oznaki {{reply_to}} in {{site_name}}"
|
3322 |
+
|
3323 |
+
#: profile-builder-2.0/admin/admin-bar.php:48
|
3324 |
+
msgid "Choose which user roles view the admin bar in the front-end of the website."
|
3325 |
+
msgstr "Izberite katere vloge uporabnikov (user roles) vidijo Admin Bar na sprednji strani (Front-End) spletne strani."
|
3326 |
+
|
3327 |
+
#: profile-builder-2.0/admin/manage-fields.php:129
|
3328 |
+
msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
|
3329 |
+
msgstr "Vnesite seznam vrednosti ločenih z vejico<br/>To je lahko karkoli, ker je skrito pred uporabniki, ampak ne sme vsebovati posebnih znakov ali opuščajev (apostrofov)."
|
3330 |
+
|
3331 |
+
#: profile-builder-2.0/admin/manage-fields.php:1055
|
3332 |
+
msgid "The meta-name cannot be empty\n"
|
3333 |
+
msgstr "Meta-ime ne more biti prazno\n"
|
3334 |
+
|
3335 |
+
#: profile-builder-2.0/admin/register-version.php:69
|
3336 |
+
msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
|
3337 |
+
msgstr "Sedaj ko ste pridobili svoj izvod %s, si vzamite čas in ga registrirajte z serijsko številko, ki ste jo dobili"
|
3338 |
+
|
3339 |
+
#: profile-builder-2.0/admin/register-version.php:243
|
3340 |
+
msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
|
3341 |
+
msgstr "<p>Your <strong>Profile Builder</strong> serijska številka je neveljavna ali manjkajoča. <br/>Prosimo %1$sregistrirajte svoj izvod%2$s, da dobite dostop do samodejnih posodobitev in podpore. Potrebujete licenčni ključ? %3$sKupite sedaj%4$s</p>"
|
3342 |
+
|
3343 |
+
#: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14
|
3344 |
+
#: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17
|
3345 |
+
#: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14
|
3346 |
+
#: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15
|
3347 |
+
#: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36
|
3348 |
+
#: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60
|
3349 |
+
msgid "...Choose"
|
3350 |
+
msgstr "...Izberite"
|
3351 |
+
|
3352 |
+
#: profile-builder-2.0/features/class-list-table.php:526
|
3353 |
+
#: profile-builder-2.0/features/class-list-table.php:942
|
3354 |
+
msgid "1 item"
|
3355 |
+
msgstr "1 element"
|
3356 |
+
|
3357 |
+
#: profile-builder-2.0/features/functions.php:552
|
3358 |
+
msgid "Very Weak"
|
3359 |
+
msgstr "Zelo slabo"
|
3360 |
+
|
3361 |
+
#: profile-builder-2.0/features/functions.php:640
|
3362 |
+
msgid "This field is required"
|
3363 |
+
msgstr "To polje je obvezno"
|
3364 |
+
|
3365 |
+
#: profile-builder-2.0/features/functions.php:704
|
3366 |
+
msgid "Cancel"
|
3367 |
+
msgstr "Prekini"
|
3368 |
+
|
3369 |
+
#: profile-builder-2.0/features/functions.php:740
|
3370 |
+
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"
|
3371 |
+
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"
|
3372 |
+
|
3373 |
+
#: profile-builder-2.0/front-end/login.php:144
|
3374 |
+
msgid "Invalid username."
|
3375 |
+
msgstr "Neveljavno uporabniško ime."
|
3376 |
+
|
3377 |
+
#: profile-builder-2.0/front-end/login.php:149
|
3378 |
+
#: profile-builder-2.0/front-end/login.php:153
|
3379 |
+
msgid "username"
|
3380 |
+
msgstr "uporabniško ime"
|
3381 |
+
|
3382 |
+
#: profile-builder-2.0/front-end/login.php:149
|
3383 |
+
msgid "email"
|
3384 |
+
msgstr "e-naslov"
|
3385 |
+
|
3386 |
+
#: profile-builder-2.0/front-end/login.php:256
|
3387 |
+
msgid "Lost your password?"
|
3388 |
+
msgstr "Izgubljeno geslo?"
|
3389 |
+
|
3390 |
+
#: profile-builder-2.0/index.php:34
|
3391 |
+
msgid " is also activated. You need to deactivate it before activating this version of the plugin."
|
3392 |
+
msgstr "je tudi aktiviran. Za aktivacijo te različice vtičnika morate najprej deaktivirati trenutnega."
|
3393 |
+
|
3394 |
+
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54
|
3395 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
|
3396 |
+
msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
|
3397 |
+
msgstr "Mora biti veljaven e-naslov ali oznaka {{reply_to}}, ki ima privzeto vrednost e-naslova skrbnika strani"
|
3398 |
+
|
3399 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574
|
3400 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583
|
3401 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:487
|
3402 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:494
|
3403 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:508
|
3404 |
+
msgid "Your selected password at signup"
|
3405 |
+
msgstr "Vaše izbrano geslo pri registraciji"
|
3406 |
+
|
3407 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
|
3408 |
+
msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
|
3409 |
+
msgstr "Te nastavitve bodo podvojene tudi na \"Oblikovalec Skrbniškega E-naslova\" strani z nastavitvami ob shranitvi."
|
3410 |
+
|
3411 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274
|
3412 |
+
msgid "This form is empty."
|
3413 |
+
msgstr "Ta obrazec je prazen."
|
3414 |
+
|
3415 |
+
#: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
|
3416 |
+
msgid "Delete all items"
|
3417 |
+
msgstr "Izbris vseh elementov"
|
3418 |
+
|
3419 |
+
#: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
|
3420 |
+
msgid "Delete all"
|
3421 |
+
msgstr "Izbriši vse"
|
3422 |
+
|
3423 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1621
|
3424 |
+
msgid "Choose..."
|
3425 |
+
msgstr "Izberi..."
|
3426 |
+
|
3427 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2263
|
3428 |
+
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
3429 |
+
msgstr "Nastavi število uporabnikov, ki se jih prikaže na vsaki oštevilčeni strani seznama uporabnikov"
|
3430 |
+
|
3431 |
+
#: profile-builder-2.0/admin/admin-bar.php:10
|
3432 |
+
msgid "Show/Hide the Admin Bar on the Front-End"
|
3433 |
+
msgstr "Prikaži/skrij Admin Bar na sprednji strani (Front-End)"
|
3434 |
+
|
3435 |
+
#: profile-builder-2.0/admin/admin-bar.php:10
|
3436 |
+
#: profile-builder-2.0/admin/admin-bar.php:47
|
3437 |
+
msgid "Admin Bar Settings"
|
3438 |
+
msgstr "Admin Bar nastavitve"
|
3439 |
+
|
3440 |
+
#: profile-builder-2.0/admin/admin-bar.php:57
|
3441 |
+
msgid "User-Role"
|
3442 |
+
msgstr "Vloga uporabnika"
|
3443 |
+
|
3444 |
+
#: profile-builder-2.0/admin/admin-bar.php:58
|
3445 |
+
msgid "Visibility"
|
3446 |
+
msgstr "Vidnost"
|
3447 |
+
|
3448 |
+
#: profile-builder-2.0/admin/admin-bar.php:73
|
3449 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
|
3450 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
|
3451 |
+
msgid "Default"
|
3452 |
+
msgstr "Privzeto"
|
3453 |
+
|
3454 |
+
#: profile-builder-2.0/admin/admin-bar.php:74
|
3455 |
+
msgid "Show"
|
3456 |
+
msgstr "Prikaži"
|
3457 |
+
|
3458 |
+
#: profile-builder-2.0/admin/admin-bar.php:75
|
3459 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1554
|
3460 |
+
msgid "Hide"
|
3461 |
+
msgstr "Skrij"
|
3462 |
+
|
3463 |
+
#: pb-add-on-woocommerce/woosync-page.php:147
|
3464 |
+
#: profile-builder-2.0/admin/admin-bar.php:86
|
3465 |
+
#: profile-builder-2.0/admin/general-settings.php:224
|
3466 |
+
#: profile-builder-2.0/admin/register-version.php:95
|
3467 |
+
#: profile-builder-2.0/features/functions.php:697
|
3468 |
+
#: profile-builder-2.0/modules/modules.php:127
|
3469 |
+
msgid "Save Changes"
|
3470 |
+
msgstr "Shrani spremembe"
|
3471 |
+
|
3472 |
+
#: profile-builder-2.0/admin/admin-functions.php:37
|
3473 |
+
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 )"
|
3474 |
+
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\" )"
|
3475 |
+
|
3476 |
+
#: profile-builder-2.0/admin/admin-functions.php:37
|
3477 |
+
#: profile-builder-2.0/admin/general-settings.php:10
|
3478 |
+
#: profile-builder-2.0/admin/general-settings.php:35
|
3479 |
+
msgid "General Settings"
|
3480 |
+
msgstr "Splošne nastavitve"
|
3481 |
+
|
3482 |
+
#: profile-builder-2.0/admin/admin-functions.php:137
|
3483 |
+
#: profile-builder-2.0/admin/general-settings.php:210
|
3484 |
+
msgid "Very weak"
|
3485 |
+
msgstr "Zelo slabo"
|
3486 |
+
|
3487 |
+
#: profile-builder-2.0/admin/admin-functions.php:137
|
3488 |
+
#: profile-builder-2.0/admin/general-settings.php:211
|
3489 |
+
#: profile-builder-2.0/features/functions.php:552
|
3490 |
+
msgid "Weak"
|
3491 |
+
msgstr "Slabo"
|
3492 |
+
|
3493 |
+
#: profile-builder-2.0/admin/admin-functions.php:137
|
3494 |
+
#: profile-builder-2.0/admin/general-settings.php:212
|
3495 |
+
#: profile-builder-2.0/features/functions.php:552
|
3496 |
+
msgid "Medium"
|
3497 |
+
msgstr "Srednje"
|
3498 |
+
|
3499 |
+
#: profile-builder-2.0/admin/admin-functions.php:137
|
3500 |
+
#: profile-builder-2.0/admin/general-settings.php:213
|
3501 |
+
#: profile-builder-2.0/features/functions.php:552
|
3502 |
+
msgid "Strong"
|
3503 |
+
msgstr "Močno"
|
3504 |
+
|
3505 |
+
#: profile-builder-2.0/admin/admin-functions.php:187
|
3506 |
+
msgid "Add Field"
|
3507 |
+
msgstr "Dodaj polje"
|
3508 |
+
|
3509 |
+
#: profile-builder-2.0/admin/admin-functions.php:189
|
3510 |
+
#: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390
|
3511 |
+
msgid "Save Settings"
|
3512 |
+
msgstr "Shrani nastavitve"
|
3513 |
+
|
3514 |
+
#: profile-builder-2.0/admin/basic-info.php:10
|
3515 |
+
msgid "Basic Information"
|
3516 |
+
msgstr "Osnovne informacije"
|
3517 |
+
|
3518 |
+
#: profile-builder-2.0/admin/basic-info.php:29
|
3519 |
+
msgid "Version %s"
|
3520 |
+
msgstr "Različica %s"
|
3521 |
+
|
3522 |
+
#: profile-builder-2.0/admin/basic-info.php:30
|
3523 |
+
msgid "<strong>Profile Builder </strong>"
|
3524 |
+
msgstr "<strong>Profile Builder </strong>"
|
3525 |
+
|
3526 |
+
#: profile-builder-2.0/admin/basic-info.php:31
|
3527 |
+
msgid "The best way to add front-end registration, edit profile and login forms."
|
3528 |
+
msgstr "Najboljši način za registracijo na sprednji strani (Front-End), urejanje profila in obrazce za prijavo."
|
3529 |
+
|
3530 |
+
#: profile-builder-2.0/admin/basic-info.php:33
|
3531 |
+
msgid "For Modern User Interaction"
|
3532 |
+
msgstr "Interakcija za moderne uporabnike"
|
3533 |
+
|
3534 |
+
#: pb-add-on-woocommerce/templates/myaccount-login-register.php:25
|
3535 |
+
#: profile-builder-2.0/admin/basic-info.php:36
|
3536 |
+
#: profile-builder-2.0/features/login-widget/login-widget.php:59
|
3537 |
+
msgid "Login"
|
3538 |
+
msgstr "Prijava"
|
3539 |
+
|
3540 |
+
#: profile-builder-2.0/admin/basic-info.php:40
|
3541 |
+
msgid "Registration"
|
3542 |
+
msgstr "Registracija"
|
3543 |
+
|
3544 |
+
#: profile-builder-2.0/admin/basic-info.php:44
|
3545 |
+
msgid "Edit Profile"
|
3546 |
+
msgstr "Uredi profil"
|
3547 |
+
|
3548 |
+
#: profile-builder-2.0/admin/basic-info.php:51
|
3549 |
+
msgid "Extra Features"
|
3550 |
+
msgstr "Dodatne funkcije"
|
3551 |
+
|
3552 |
+
#: profile-builder-2.0/admin/basic-info.php:52
|
3553 |
+
msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
|
3554 |
+
msgstr "Funkcije, ki vam dajo več nadzora nad vašimi uporabniki, povečano varnost in pomagajo pri borbi proti nezaželenim prijavam."
|
3555 |
+
|
3556 |
+
#: profile-builder-2.0/admin/basic-info.php:53
|
3557 |
+
msgid "Enable extra features"
|
3558 |
+
msgstr "Omogoči dodatne funkcije"
|
3559 |
+
|
3560 |
+
#: profile-builder-2.0/admin/basic-info.php:57
|
3561 |
+
msgid "Recover Password"
|
3562 |
+
msgstr "Obnovitev gesla"
|
3563 |
+
|
3564 |
+
#: profile-builder-2.0/admin/basic-info.php:61
|
3565 |
+
msgid "Admin Approval (*)"
|
3566 |
+
msgstr "Odobritev skrbnikov strani (*)"
|
3567 |
+
|
3568 |
+
#: profile-builder-2.0/admin/basic-info.php:62
|
3569 |
+
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
|
3570 |
+
msgstr "Vi določite kdo bo postal uporabnik vaše strani. Prejmite obvestilo preko e-pošte ali odobrite več uporabnikov iz WordPress-a."
|
3571 |
+
|
3572 |
+
#: profile-builder-2.0/admin/basic-info.php:65
|
3573 |
+
msgid "Email Confirmation"
|
3574 |
+
msgstr "Potrditev e-naslova"
|
3575 |
+
|
3576 |
+
#: profile-builder-2.0/admin/basic-info.php:66
|
3577 |
+
msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
|
3578 |
+
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."
|
3579 |
+
|
3580 |
+
#: profile-builder-2.0/admin/basic-info.php:69
|
3581 |
+
msgid "Minimum Password Length and Strength Meter"
|
3582 |
+
msgstr "Najmanjša dolžina gesla ter prikaz težavnosti gesla"
|
3583 |
+
|
3584 |
+
#: profile-builder-2.0/admin/basic-info.php:70
|
3585 |
+
msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
|
3586 |
+
msgstr "V celoti onemogočite slaba gesla z nastavitvijo najmanjše dolžine gesla in z zahtevo močnih gesel."
|
3587 |
+
|
3588 |
+
#: profile-builder-2.0/admin/basic-info.php:73
|
3589 |
+
msgid "Login with Email or Username"
|
3590 |
+
msgstr "Prijava z e-naslovom ali uporabniškim imenom"
|
3591 |
+
|
3592 |
+
#: profile-builder-2.0/admin/basic-info.php:74
|
3593 |
+
msgid "Allow users to log in with their email or username when accessing your site."
|
3594 |
+
msgstr "Dovolite uporabnikom, da se prijavijo z njihovim e-naslovom ali uporabniškim imenom pri prijavi na vašo stran."
|
3595 |
+
|
3596 |
+
#: profile-builder-2.0/admin/basic-info.php:87
|
3597 |
+
msgid "Customize Your Forms The Way You Want (*)"
|
3598 |
+
msgstr "Prilagodite vaše obrazce po svojih željah (*)"
|
3599 |
+
|
3600 |
+
#: profile-builder-2.0/admin/basic-info.php:88
|
3601 |
+
msgid "With Extra Profile Fields you can create the exact registration form your project needs."
|
3602 |
+
msgstr "Z dodatnimi profilnimi polji lahko ustvarite registracijski obrazec po vaši meri."
|
3603 |
+
|
3604 |
+
#: profile-builder-2.0/admin/basic-info.php:90
|
3605 |
+
msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
|
3606 |
+
msgstr "Dodatna profilna polja so na voljo v različicah Hobbyist ali PRO"
|
3607 |
+
|
3608 |
+
#: profile-builder-2.0/admin/basic-info.php:92
|
3609 |
+
msgid "Get started with extra fields"
|
3610 |
+
msgstr "Začnite z uporabo dodatnih polj"
|
3611 |
+
|
3612 |
+
#: profile-builder-2.0/admin/basic-info.php:95
|
3613 |
+
msgid "Avatar Upload"
|
3614 |
+
msgstr "Nastavitev prikazne slike"
|
3615 |
+
|
3616 |
+
#: profile-builder-2.0/admin/basic-info.php:96
|
3617 |
+
msgid "Generic Uploads"
|
3618 |
+
msgstr "Splošni upload-i"
|
3619 |
+
|
3620 |
+
#: profile-builder-2.0/admin/basic-info.php:97
|
3621 |
+
msgid "Agree To Terms Checkbox"
|
3622 |
+
msgstr "Strinjam se s pogoji uporabe Checkbox"
|
3623 |
+
|
3624 |
+
#: profile-builder-2.0/admin/basic-info.php:98
|
3625 |
+
msgid "Datepicker"
|
3626 |
+
msgstr "Izbira datuma z vmesnikom"
|
3627 |
+
|
3628 |
+
#: profile-builder-2.0/admin/basic-info.php:101
|
3629 |
+
msgid "reCAPTCHA"
|
3630 |
+
msgstr "reCAPTCHA"
|
3631 |
+
|
3632 |
+
#: profile-builder-2.0/admin/basic-info.php:102
|
3633 |
+
msgid "Country Select"
|
3634 |
+
msgstr "Izbira države"
|
3635 |
+
|
3636 |
+
#: profile-builder-2.0/admin/basic-info.php:104
|
3637 |
+
msgid "Timezone Select"
|
3638 |
+
msgstr "Izbira časovnega pasa"
|
3639 |
+
|
3640 |
+
#: profile-builder-2.0/admin/basic-info.php:108
|
3641 |
+
msgid "Input / Hidden Input"
|
3642 |
+
msgstr "Vnosno polje / skrito vnosno polje"
|
3643 |
+
|
3644 |
+
#: profile-builder-2.0/admin/basic-info.php:110
|
3645 |
+
msgid "Checkbox"
|
3646 |
+
msgstr "Checkbox"
|
3647 |
+
|
3648 |
+
#: profile-builder-2.0/admin/basic-info.php:111
|
3649 |
+
msgid "Select"
|
3650 |
+
msgstr "Select"
|
3651 |
+
|
3652 |
+
#: profile-builder-2.0/admin/basic-info.php:112
|
3653 |
+
msgid "Radio Buttons"
|
3654 |
+
msgstr "Izbirni gumbi (radio buttons)"
|
3655 |
+
|
3656 |
+
#: profile-builder-2.0/admin/basic-info.php:113
|
3657 |
+
msgid "Textarea"
|
3658 |
+
msgstr "Textarea"
|
3659 |
+
|
3660 |
+
#: profile-builder-2.0/admin/basic-info.php:125
|
3661 |
+
msgid "Powerful Modules (**)"
|
3662 |
+
msgstr "Zmogljivi moduli (**)"
|
3663 |
+
|
3664 |
+
#: profile-builder-2.0/admin/basic-info.php:126
|
3665 |
+
msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
|
3666 |
+
msgstr "Vse kar boste kadarkoli potrebovali za upravljanje z vašimi uporabniki je verjetno že na voljo v naboru Pro modulov."
|
3667 |
+
|
3668 |
+
#: profile-builder-2.0/admin/basic-info.php:128
|
3669 |
+
msgid "Enable your modules"
|
3670 |
+
msgstr "Omogočite vaše module"
|
3671 |
+
|
3672 |
+
#: profile-builder-2.0/admin/basic-info.php:131
|
3673 |
+
msgid "Find out more about PRO Modules"
|
3674 |
+
msgstr "Izvedite več o PRO modulih"
|
3675 |
+
|
3676 |
+
#: profile-builder-2.0/admin/basic-info.php:136
|
3677 |
+
#: profile-builder-2.0/modules/modules.php:89
|
3678 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:11
|
3679 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:12
|
3680 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:17
|
3681 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:23
|
3682 |
+
msgid "User Listing"
|
3683 |
+
msgstr "Seznam uporabnikov"
|
3684 |
+
|
3685 |
+
#: profile-builder-2.0/admin/basic-info.php:138
|
3686 |
+
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."
|
3687 |
+
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."
|
3688 |
+
|
3689 |
+
#: profile-builder-2.0/admin/basic-info.php:144
|
3690 |
+
msgid "Email Customizer"
|
3691 |
+
msgstr "Spremenite e-poštna sporočila"
|
3692 |
+
|
3693 |
+
#: profile-builder-2.0/admin/basic-info.php:145
|
3694 |
+
msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
|
3695 |
+
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."
|
3696 |
+
|
3697 |
+
#: profile-builder-2.0/admin/basic-info.php:148
|
3698 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32
|
3699 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33
|
3700 |
+
#: profile-builder-2.0/modules/modules.php:110
|
3701 |
+
msgid "Custom Redirects"
|
3702 |
+
msgstr "Preusmeritve po meri"
|
3703 |
+
|
3704 |
+
#: profile-builder-2.0/admin/basic-info.php:149
|
3705 |
+
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."
|
3706 |
+
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."
|
3707 |
+
|
3708 |
+
#: profile-builder-2.0/admin/basic-info.php:154
|
3709 |
+
#: profile-builder-2.0/modules/modules.php:75
|
3710 |
+
msgid "Multiple Registration Forms"
|
3711 |
+
msgstr "Več registracijskih obrazcev"
|
3712 |
+
|
3713 |
+
#: profile-builder-2.0/admin/basic-info.php:155
|
3714 |
+
msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
|
3715 |
+
msgstr "Postavite več registracijskih obrazcev z različnimi polji za določene vloge uporabnikov. Zajemite več različnih informacij od različnih tipov uporabnikov."
|
3716 |
+
|
3717 |
+
#: profile-builder-2.0/admin/basic-info.php:158
|
3718 |
+
#: profile-builder-2.0/modules/modules.php:82
|
3719 |
+
msgid "Multiple Edit-profile Forms"
|
3720 |
+
msgstr "Več obrazcev za urejanje profila"
|
3721 |
+
|
3722 |
+
#: profile-builder-2.0/admin/basic-info.php:159
|
3723 |
+
msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
|
3724 |
+
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."
|
3725 |
+
|
3726 |
+
#: profile-builder-2.0/admin/basic-info.php:187
|
3727 |
+
msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
|
3728 |
+
msgstr "* na voljo samo v %1$sHobbyist in Pro različicah%2$s."
|
3729 |
+
|
3730 |
+
#: profile-builder-2.0/admin/basic-info.php:188
|
3731 |
+
msgid "** only available in the %1$sPro version%2$s."
|
3732 |
+
msgstr "** na voljo samo v %1$sPro različici%2$s."
|
3733 |
+
|
3734 |
+
#: profile-builder-2.0/admin/general-settings.php:39
|
3735 |
+
msgid "Load Profile Builder's own CSS file in the front-end:"
|
3736 |
+
msgstr "Naložite lastno Profile Builder CSS datoteko na sprednji strani (Front-End):"
|
3737 |
+
|
3738 |
+
#: profile-builder-2.0/admin/general-settings.php:42
|
3739 |
+
#: profile-builder-2.0/admin/general-settings.php:55
|
3740 |
+
#: profile-builder-2.0/admin/general-settings.php:104
|
3741 |
+
#: profile-builder-2.0/admin/general-settings.php:151
|
3742 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
|
3743 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
|
3744 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
|
3745 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2268
|
3746 |
+
msgid "Yes"
|
3747 |
+
msgstr "Da"
|
3748 |
+
|
3749 |
+
#: profile-builder-2.0/admin/general-settings.php:44
|
3750 |
+
msgid "You can find the default file here: %1$s"
|
3751 |
+
msgstr "Originalno datoteko lahko najdete tu: %1$s"
|
3752 |
+
|
3753 |
+
#: profile-builder-2.0/admin/general-settings.php:51
|
3754 |
+
msgid "\"Email Confirmation\" Activated:"
|
3755 |
+
msgstr "\"Potrditvena e-pošta\" aktivirana:"
|
3756 |
+
|
3757 |
+
#: profile-builder-2.0/admin/general-settings.php:56
|
3758 |
+
#: profile-builder-2.0/admin/general-settings.php:105
|
3759 |
+
#: profile-builder-2.0/admin/general-settings.php:150
|
3760 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
|
3761 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
|
3762 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
|
3763 |
+
msgid "No"
|
3764 |
+
msgstr "Ne"
|
3765 |
+
|
3766 |
+
#: profile-builder-2.0/admin/general-settings.php:61
|
3767 |
+
msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
|
3768 |
+
msgstr "Seznam nepotrjenih e-naslovov lahko najdete na %1$sUporabniki > Vsi uporabniki > Potrditvena e-pošta%2$s."
|
3769 |
+
|
3770 |
+
#: profile-builder-2.0/admin/general-settings.php:69
|
3771 |
+
msgid "\"Email Confirmation\" Landing Page:"
|
3772 |
+
msgstr "Ciljna stran za \"Potrditveno e-pošto\""
|
3773 |
+
|
3774 |
+
#: profile-builder-2.0/admin/general-settings.php:74
|
3775 |
+
msgid "Existing Pages"
|
3776 |
+
msgstr "Obstoječe strani"
|
3777 |
+
|
3778 |
+
#: profile-builder-2.0/admin/general-settings.php:89
|
3779 |
+
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."
|
3780 |
+
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."
|
3781 |
+
|
3782 |
+
#: profile-builder-2.0/admin/general-settings.php:100
|
3783 |
+
msgid "\"Admin Approval\" Activated:"
|
3784 |
+
msgstr "\"Odobritev s strani skrbnikov\" je bila aktivirana:"
|
3785 |
+
|
3786 |
+
#: profile-builder-2.0/admin/general-settings.php:108
|
3787 |
+
msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
|
3788 |
+
msgstr "Seznam e-naslovov uporabnikov lahko najdete na %1$sUporabniki > Vsi uporabniki > Potrditve skrbnikov strani%2$s."
|
3789 |
+
|
3790 |
+
#: profile-builder-2.0/admin/general-settings.php:165
|
3791 |
+
msgid "\"Admin Approval\" Feature:"
|
3792 |
+
msgstr "\"Odobritev s strani skrbnikov\" možnost:"
|
3793 |
+
|
3794 |
+
#: profile-builder-2.0/admin/general-settings.php:168
|
3795 |
+
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."
|
3796 |
+
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."
|
3797 |
+
|
3798 |
+
#: profile-builder-2.0/admin/general-settings.php:175
|
3799 |
+
msgid "Allow Users to Log in With:"
|
3800 |
+
msgstr "Dovolite uporabnikom, da se prijavijo z:"
|
3801 |
+
|
3802 |
+
#: profile-builder-2.0/admin/general-settings.php:180
|
3803 |
+
#: profile-builder-2.0/admin/manage-fields.php:201
|
3804 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166
|
3805 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167
|
3806 |
+
#: profile-builder-2.0/front-end/login.php:85
|
3807 |
+
#: profile-builder-2.0/front-end/login.php:99
|
3808 |
+
#: profile-builder-2.0/front-end/login.php:218
|
3809 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56
|
3810 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:28
|
3811 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:102
|
3812 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:277
|
3813 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:730
|
3814 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2219
|
3815 |
+
msgid "Username"
|
3816 |
+
msgstr "Uporabniško ime"
|
3817 |
+
|
3818 |
+
#: profile-builder-2.0/admin/general-settings.php:181
|
3819 |
+
#: profile-builder-2.0/front-end/login.php:215
|
3820 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:29
|
3821 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:736
|
3822 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2220
|
3823 |
+
msgid "Email"
|
3824 |
+
msgstr "E-naslov"
|
3825 |
+
|
3826 |
+
#: profile-builder-2.0/admin/general-settings.php:193
|
3827 |
+
msgid "Minimum Password Length:"
|
3828 |
+
msgstr "Najmanjša dolžina gesla:"
|
3829 |
+
|
3830 |
+
#: profile-builder-2.0/admin/general-settings.php:198
|
3831 |
+
msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
|
3832 |
+
msgstr "Vnesite minimalno št., ki jih mora imeti geslo. Pustite prazno za brez omejitve"
|
3833 |
+
|
3834 |
+
#: profile-builder-2.0/admin/general-settings.php:205
|
3835 |
+
msgid "Minimum Password Strength:"
|
3836 |
+
msgstr "Najmanjša težavnost gesla:"
|
3837 |
+
|
3838 |
+
#: profile-builder-2.0/admin/general-settings.php:209
|
3839 |
+
msgid "Disabled"
|
3840 |
+
msgstr "Onemogočeno"
|
3841 |
+
|
3842 |
+
#: profile-builder-2.0/admin/manage-fields.php:12
|
3843 |
+
msgid "Manage Fields"
|
3844 |
+
msgstr "Upravljajte s polji"
|
3845 |
+
|
3846 |
+
#: profile-builder-2.0/admin/manage-fields.php:13
|
3847 |
+
msgid "Manage Default and Extra Fields"
|
3848 |
+
msgstr "Upravljajte s privzetimi in dodatnimi polji"
|
3849 |
+
|
3850 |
+
#: profile-builder-2.0/admin/manage-fields.php:118
|
3851 |
+
msgid "Field Title"
|
3852 |
+
msgstr "Naslov polja"
|
3853 |
+
|
3854 |
+
#: profile-builder-2.0/admin/manage-fields.php:118
|
3855 |
+
msgid "Title of the field"
|
3856 |
+
msgstr "Naslov polja"
|
3857 |
+
|
3858 |
+
#: profile-builder-2.0/admin/manage-fields.php:119
|
3859 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
|
3860 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
|
3861 |
+
msgid "Field"
|
3862 |
+
msgstr "Polje"
|
3863 |
+
|
3864 |
+
#: profile-builder-2.0/admin/manage-fields.php:120
|
3865 |
+
msgid "Meta-name"
|
3866 |
+
msgstr "Meta-ime"
|
3867 |
+
|
3868 |
+
#: profile-builder-2.0/admin/manage-fields.php:121
|
3869 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65
|
3870 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95
|
3871 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114
|
3872 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139
|
3873 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
|
3874 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
|
3875 |
+
msgid "ID"
|
3876 |
+
msgstr "ID"
|
3877 |
+
|
3878 |
+
#: profile-builder-2.0/admin/manage-fields.php:121
|
3879 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
|
3880 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
|
3881 |
+
msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
|
3882 |
+
msgstr "Edinstven, samodejno ustvarjen ID za to določeno polje<br/>Če je potrebno lahko uporabite to v povezavi s filtri za ciljanje tega elementa<br/>Ni mogoče urejati"
|
3883 |
+
|
3884 |
+
#: profile-builder-2.0/admin/manage-fields.php:122
|
3885 |
+
msgid "Description"
|
3886 |
+
msgstr "Opis"
|
3887 |
+
|
3888 |
+
#: profile-builder-2.0/admin/manage-fields.php:122
|
3889 |
+
msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
|
3890 |
+
msgstr "Vnesite (podroben) opis možnosti za končnega uporabnika<br/>Izbirno"
|
3891 |
+
|
3892 |
+
#: profile-builder-2.0/admin/manage-fields.php:123
|
3893 |
+
msgid "Row Count"
|
3894 |
+
msgstr "Število vrstic"
|
3895 |
+
|
3896 |
+
#: profile-builder-2.0/admin/manage-fields.php:123
|
3897 |
+
msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
|
3898 |
+
msgstr "Določite število vrstic za polje 'Textarea'<br/>Če ni določeno, je privzeta vrednost 5"
|
3899 |
+
|
3900 |
+
#: profile-builder-2.0/admin/manage-fields.php:124
|
3901 |
+
msgid "Allowed Image Extensions"
|
3902 |
+
msgstr "Dovoljene končnice datotek za slike"
|
3903 |
+
|
3904 |
+
#: profile-builder-2.0/admin/manage-fields.php:125
|
3905 |
+
msgid "Allowed Upload Extensions"
|
3906 |
+
msgstr "Dovoljene končnice datotek za nalaganje"
|
3907 |
+
|
3908 |
+
#: profile-builder-2.0/admin/manage-fields.php:126
|
3909 |
+
msgid "Avatar Size"
|
3910 |
+
msgstr "Velikost prikazne slike"
|
3911 |
+
|
3912 |
+
#: profile-builder-2.0/admin/manage-fields.php:126
|
3913 |
+
msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
|
3914 |
+
msgstr "Vnesite vrednost (med 20 in 200) za velikost prikazne slike<br/>Če ni določena vrednost, je privzeta vrednost 100"
|
3915 |
+
|
3916 |
+
#: profile-builder-2.0/admin/manage-fields.php:127
|
3917 |
+
msgid "Date-format"
|
3918 |
+
msgstr "Format datuma"
|
3919 |
+
|
3920 |
+
#: profile-builder-2.0/admin/manage-fields.php:128
|
3921 |
+
msgid "Terms of Agreement"
|
3922 |
+
msgstr "Splošni pogoji"
|
3923 |
+
|
3924 |
+
#: profile-builder-2.0/admin/manage-fields.php:128
|
3925 |
+
msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>"
|
3926 |
+
msgstr "Vnesite podroben opis pogojev uporabe za uporabnike.<br/>Povezave so lahko vnešene s strandardno HTML sintakso: <a href=\"custom_url\">custom_text</a>"
|
3927 |
+
|
3928 |
+
#: profile-builder-2.0/admin/manage-fields.php:129
|
3929 |
+
msgid "Options"
|
3930 |
+
msgstr "Možnosti"
|
3931 |
+
|
3932 |
+
#: profile-builder-2.0/admin/manage-fields.php:130
|
3933 |
+
msgid "Labels"
|
3934 |
+
msgstr "Oznake"
|
3935 |
+
|
3936 |
+
#: profile-builder-2.0/admin/manage-fields.php:130
|
3937 |
+
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
3938 |
+
msgstr "Vnesite seznam vrednosti ločenih z vejico<br/>Vidno končnemu uporabniku"
|
3939 |
+
|
3940 |
+
#: profile-builder-2.0/admin/manage-fields.php:137
|
3941 |
+
msgid "Default Value"
|
3942 |
+
msgstr "Privzeta vrednost"
|
3943 |
+
|
3944 |
+
#: profile-builder-2.0/admin/manage-fields.php:137
|
3945 |
+
msgid "Default value of the field"
|
3946 |
+
msgstr "Privzeta vrednost polja"
|
3947 |
+
|
3948 |
+
#: profile-builder-2.0/admin/manage-fields.php:138
|
3949 |
+
#: profile-builder-2.0/admin/manage-fields.php:140
|
3950 |
+
#: profile-builder-2.0/admin/manage-fields.php:141
|
3951 |
+
#: profile-builder-2.0/admin/manage-fields.php:142
|
3952 |
+
msgid "Default Option"
|
3953 |
+
msgstr "Privzeta možnost"
|
3954 |
+
|
3955 |
+
#: profile-builder-2.0/admin/manage-fields.php:138
|
3956 |
+
msgid "Specify the option which should be selected by default"
|
3957 |
+
msgstr "Določite možnost, ki naj bo izbrana kot privzeta"
|
3958 |
+
|
3959 |
+
#: profile-builder-2.0/admin/manage-fields.php:139
|
3960 |
+
msgid "Default Option(s)"
|
3961 |
+
msgstr "Privzeta(e) možnost(i)"
|
3962 |
+
|
3963 |
+
#: profile-builder-2.0/admin/manage-fields.php:139
|
3964 |
+
msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
|
3965 |
+
msgstr "Določite katere možnosti naj bodo privzeto označene<br/>Če mislite napisate več možnosti, jih ločite z ',' (vejica)"
|
3966 |
+
|
3967 |
+
#: profile-builder-2.0/admin/manage-fields.php:153
|
3968 |
+
msgid "Default Content"
|
3969 |
+
msgstr "Privzeta vsebina"
|
3970 |
+
|
3971 |
+
#: profile-builder-2.0/admin/manage-fields.php:153
|
3972 |
+
msgid "Default value of the textarea"
|
3973 |
+
msgstr "Privzeta vrednost besedilnega polja"
|
3974 |
+
|
3975 |
+
#: pb-add-on-woocommerce/index.php:306
|
3976 |
+
#: profile-builder-2.0/admin/manage-fields.php:160
|
3977 |
+
msgid "Required"
|
3978 |
+
msgstr "Zahtevano"
|
3979 |
+
|
3980 |
+
#: profile-builder-2.0/admin/manage-fields.php:160
|
3981 |
+
msgid "Whether the field is required or not"
|
3982 |
+
msgstr "Ali je polje zahtevano ali ne"
|
3983 |
+
|
3984 |
+
#: profile-builder-2.0/admin/manage-fields.php:161
|
3985 |
+
msgid "Overwrite Existing"
|
3986 |
+
msgstr "Prepiši obstoječe"
|
3987 |
+
|
3988 |
+
#: profile-builder-2.0/admin/manage-fields.php:161
|
3989 |
+
msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
|
3990 |
+
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.<br/>Uporabite na lastno odgovornost"
|
3991 |
+
|
3992 |
+
#: profile-builder-2.0/admin/manage-fields.php:167
|
3993 |
+
msgid "Field Properties"
|
3994 |
+
msgstr "Lastnosti polja"
|
3995 |
+
|
3996 |
+
#: profile-builder-2.0/admin/manage-fields.php:181
|
3997 |
+
msgid "Registration & Edit Profile"
|
3998 |
+
msgstr "Registracija & urejanje profila"
|
3999 |
+
|
4000 |
+
#: profile-builder-2.0/admin/manage-fields.php:200
|
4001 |
+
msgid "Name"
|
4002 |
+
msgstr "Ime"
|
4003 |
+
|
4004 |
+
#: profile-builder-2.0/admin/manage-fields.php:201
|
4005 |
+
msgid "Usernames cannot be changed."
|
4006 |
+
msgstr "Uporabniškega imena se ne da spremeniti."
|
4007 |
+
|
4008 |
+
#: pb-add-on-woocommerce/billing-fields.php:6
|
4009 |
+
#: pb-add-on-woocommerce/shipping-fields.php:6
|
4010 |
+
#: profile-builder-2.0/admin/manage-fields.php:202
|
4011 |
+
msgid "First Name"
|
4012 |
+
msgstr "Ime"
|
4013 |
+
|
4014 |
+
#: pb-add-on-woocommerce/billing-fields.php:7
|
4015 |
+
#: pb-add-on-woocommerce/shipping-fields.php:7
|
4016 |
+
#: profile-builder-2.0/admin/manage-fields.php:203
|
4017 |
+
msgid "Last Name"
|
4018 |
+
msgstr "Priimek"
|
4019 |
+
|
4020 |
+
#: profile-builder-2.0/admin/manage-fields.php:204
|
4021 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:769
|
4022 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2227
|
4023 |
+
msgid "Nickname"
|
4024 |
+
msgstr "Vzdevek"
|
4025 |
+
|
4026 |
+
#: profile-builder-2.0/admin/manage-fields.php:205
|
4027 |
+
msgid "Display name publicly as"
|
4028 |
+
msgstr "Prikaži ime javno kot"
|
4029 |
+
|
4030 |
+
#: profile-builder-2.0/admin/manage-fields.php:206
|
4031 |
+
msgid "Contact Info"
|
4032 |
+
msgstr "Kontaktni podatki"
|
4033 |
+
|
4034 |
+
#: profile-builder-2.0/admin/manage-fields.php:207
|
4035 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169
|
4036 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168
|
4037 |
+
#: profile-builder-2.0/front-end/recover.php:118
|
4038 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:108
|
4039 |
+
msgid "E-mail"
|
4040 |
+
msgstr "E-naslov"
|
4041 |
+
|
4042 |
+
#: profile-builder-2.0/admin/manage-fields.php:208
|
4043 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:32
|
4044 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:111
|
4045 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:751
|
4046 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2221
|
4047 |
+
msgid "Website"
|
4048 |
+
msgstr "Spletna stran"
|
4049 |
+
|
4050 |
+
#: profile-builder-2.0/admin/manage-fields.php:212
|
4051 |
+
msgid "AIM"
|
4052 |
+
msgstr "AIM"
|
4053 |
+
|
4054 |
+
#: profile-builder-2.0/admin/manage-fields.php:213
|
4055 |
+
msgid "Yahoo IM"
|
4056 |
+
msgstr "Yahoo IM"
|
4057 |
+
|
4058 |
+
#: profile-builder-2.0/admin/manage-fields.php:214
|
4059 |
+
msgid "Jabber / Google Talk"
|
4060 |
+
msgstr "Jabber / Google Talk"
|
4061 |
+
|
4062 |
+
#: profile-builder-2.0/admin/manage-fields.php:217
|
4063 |
+
msgid "About Yourself"
|
4064 |
+
msgstr "O vas"
|
4065 |
+
|
4066 |
+
#: profile-builder-2.0/admin/manage-fields.php:218
|
4067 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:114
|
4068 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:754
|
4069 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2222
|
4070 |
+
msgid "Biographical Info"
|
4071 |
+
msgstr "Biografija"
|
4072 |
+
|
4073 |
+
#: profile-builder-2.0/admin/manage-fields.php:218
|
4074 |
+
msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
|
4075 |
+
msgstr "Delite malo svoje biografije, da zapolnite profil. Ta del bo lahko javno dostopen."
|
4076 |
+
|
4077 |
+
#: profile-builder-2.0/admin/manage-fields.php:219
|
4078 |
+
#: profile-builder-2.0/front-end/recover.php:73
|
4079 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:30
|
4080 |
+
msgid "Password"
|
4081 |
+
msgstr "Geslo"
|
4082 |
+
|
4083 |
+
#: profile-builder-2.0/admin/manage-fields.php:219
|
4084 |
+
msgid "Type your password."
|
4085 |
+
msgstr "Vpišite geslo."
|
4086 |
+
|
4087 |
+
#: profile-builder-2.0/admin/manage-fields.php:220
|
4088 |
+
#: profile-builder-2.0/front-end/recover.php:74
|
4089 |
+
msgid "Repeat Password"
|
4090 |
+
msgstr "Ponovite geslo"
|
4091 |
+
|
4092 |
+
#: profile-builder-2.0/admin/manage-fields.php:220
|
4093 |
+
msgid "Type your password again. "
|
4094 |
+
msgstr "Ponovno vpišite geslo."
|
4095 |
+
|
4096 |
+
#: profile-builder-2.0/admin/manage-fields.php:980
|
4097 |
+
#: profile-builder-2.0/admin/manage-fields.php:1137
|
4098 |
+
msgid "You must select a field\n"
|
4099 |
+
msgstr "Izbrati morate polje\n"
|
4100 |
+
|
4101 |
+
#: profile-builder-2.0/admin/manage-fields.php:990
|
4102 |
+
msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
|
4103 |
+
msgstr "Prosimo izberite drugačen tip polja, ker to polje že obstaja v vašem obrazcu (mora biti unikatno)\n"
|
4104 |
+
|
4105 |
+
#: profile-builder-2.0/admin/manage-fields.php:1001
|
4106 |
+
msgid "The entered avatar size is not between 20 and 200\n"
|
4107 |
+
msgstr "Vnešena velikost prikazne slike ni med 20 in 200\n"
|
4108 |
+
|
4109 |
+
#: profile-builder-2.0/admin/manage-fields.php:1004
|
4110 |
+
msgid "The entered avatar size is not numerical\n"
|
4111 |
+
msgstr "Vnešena vrednost velikosti prikazne slike ni numerična\n"
|
4112 |
+
|
4113 |
+
#: profile-builder-2.0/admin/manage-fields.php:1012
|
4114 |
+
msgid "The entered row number is not numerical\n"
|
4115 |
+
msgstr "Vnešena vrednost za vrstico ni numerična\n"
|
4116 |
+
|
4117 |
+
#: profile-builder-2.0/admin/manage-fields.php:1015
|
4118 |
+
msgid "You must enter a value for the row number\n"
|
4119 |
+
msgstr "Vnesti morate vrednost za številko vrstice\n"
|
4120 |
+
|
4121 |
+
#: profile-builder-2.0/admin/manage-fields.php:1036
|
4122 |
+
msgid "The entered value for the Datepicker is not a valid date-format\n"
|
4123 |
+
msgstr "Vnešena vrednost za datumski vmesnik ni v veljavnem formatu datuma\n"
|
4124 |
+
|
4125 |
+
#: profile-builder-2.0/admin/manage-fields.php:1039
|
4126 |
+
msgid "You must enter a value for the date-format\n"
|
4127 |
+
msgstr "Vnesti morate vrednost za format datuma\n"
|
4128 |
+
|
4129 |
+
#: profile-builder-2.0/admin/manage-fields.php:1067
|
4130 |
+
#: profile-builder-2.0/admin/manage-fields.php:1075
|
4131 |
+
#: profile-builder-2.0/admin/manage-fields.php:1086
|
4132 |
+
msgid "That meta-name is already in use\n"
|
4133 |
+
msgstr "To meta-ime je že v uporabi\n"
|
4134 |
+
|
4135 |
+
#: profile-builder-2.0/admin/manage-fields.php:1117
|
4136 |
+
msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
|
4137 |
+
msgstr "Sledeče možnosti niso sovpadale s tistimi iz seznama možnosti: %s\n"
|
4138 |
+
|
4139 |
+
#: profile-builder-2.0/admin/manage-fields.php:1121
|
4140 |
+
msgid "The following option did not coincide with the ones in the options list: %s\n"
|
4141 |
+
msgstr "Sledeča možnost ni sovpadale s tistimi iz seznama možnosti: %s\n"
|
4142 |
+
|
4143 |
+
#: profile-builder-2.0/admin/manage-fields.php:1144
|
4144 |
+
msgid "That field is already added in this form\n"
|
4145 |
+
msgstr "To polje je že v tem obrazcu\n"
|
4146 |
+
|
4147 |
+
#: profile-builder-2.0/admin/manage-fields.php:1193
|
4148 |
+
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
4149 |
+
msgstr "<pre>Naslov</pre><pre>Tip</pre><pre>Meta Ime</pre><pre class=\"wppb-mb-head-required\">Zahtevano</pre>"
|
4150 |
+
|
4151 |
+
#: profile-builder-2.0/admin/manage-fields.php:1193
|
4152 |
+
#: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
|
4153 |
+
#: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
|
4154 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108
|
4155 |
+
#: profile-builder-2.0/features/functions.php:718
|
4156 |
+
#: profile-builder-2.0/features/functions.php:725
|
4157 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
|
4158 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
|
4159 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
|
4160 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
|
4161 |
+
#: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
|
4162 |
+
msgid "Edit"
|
4163 |
+
msgstr "Uredi"
|
4164 |
+
|
4165 |
+
#: profile-builder-2.0/admin/manage-fields.php:1193
|
4166 |
+
#: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
|
4167 |
+
#: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
|
4168 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
|
4169 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224
|
4170 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
|
4171 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217
|
4172 |
+
#: profile-builder-2.0/features/functions.php:711
|
4173 |
+
#: profile-builder-2.0/features/functions.php:725
|
4174 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
|
4175 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
|
4176 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
|
4177 |
+
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
|
4178 |
+
msgid "Delete"
|
4179 |
+
msgstr "Izbriši"
|
4180 |
+
|
4181 |
+
#: profile-builder-2.0/admin/manage-fields.php:1208
|
4182 |
+
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
4183 |
+
msgstr "Uporabite te kratke kode (shortcode) na straneh, kjer hočete, da se prikažejo obrazci:"
|
4184 |
+
|
4185 |
+
#: profile-builder-2.0/admin/register-version.php:14
|
4186 |
+
msgid "Register Your Version"
|
4187 |
+
msgstr "Registrirajte vašo različico"
|
4188 |
+
|
4189 |
+
#: profile-builder-2.0/admin/register-version.php:14
|
4190 |
+
msgid "Register Version"
|
4191 |
+
msgstr "Registrirajte različico"
|
4192 |
+
|
4193 |
+
#: profile-builder-2.0/admin/register-version.php:70
|
4194 |
+
msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
|
4195 |
+
msgstr "Če registrirate to različico Profile Builder, boste deležni informacij o posodobitvah, popravkih in tehnične podpore."
|
4196 |
+
|
4197 |
+
#: profile-builder-2.0/admin/register-version.php:72
|
4198 |
+
msgid " Serial Number:"
|
4199 |
+
msgstr "Serijska številka:"
|
4200 |
+
|
4201 |
+
#: profile-builder-2.0/admin/register-version.php:77
|
4202 |
+
msgid "The serial number was successfully validated!"
|
4203 |
+
msgstr "Serijska številka je bila uspešno validirana!"
|
4204 |
+
|
4205 |
+
#: profile-builder-2.0/admin/register-version.php:79
|
4206 |
+
msgid "The serial number entered couldn't be validated!"
|
4207 |
+
msgstr "Vnešena serijska številka ni bila validirana!"
|
4208 |
+
|
4209 |
+
#: profile-builder-2.0/admin/register-version.php:83
|
4210 |
+
msgid "The serial number couldn't be validated because it expired!"
|
4211 |
+
msgstr "Serisjke številke ni bilo možno validirati, ker je potekla!"
|
4212 |
+
|
4213 |
+
#: profile-builder-2.0/admin/register-version.php:85
|
4214 |
+
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!"
|
4215 |
+
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!"
|
4216 |
+
|
4217 |
+
#: profile-builder-2.0/admin/register-version.php:87
|
4218 |
+
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
4219 |
+
msgstr "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
4220 |
+
|
4221 |
+
#: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
|
4222 |
+
#: profile-builder-2.0/features/functions.php:725
|
4223 |
+
msgid "Content"
|
4224 |
+
msgstr "Vsebina"
|
4225 |
+
|
4226 |
+
#: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
|
4227 |
+
msgid "Edit this item"
|
4228 |
+
msgstr "Uredi ta element"
|
4229 |
+
|
4230 |
+
#: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
|
4231 |
+
msgid "Delete this item"
|
4232 |
+
msgstr "Izbriši ta element"
|
4233 |
+
|
4234 |
+
#: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705
|
4235 |
+
msgid "Please enter a value for the required field "
|
4236 |
+
msgstr "Prosimo vnesite vrednost za zahtevano polje"
|
4237 |
+
|
4238 |
+
#: pb-add-on-woocommerce/woo-checkout-field-support.php:262
|
4239 |
+
#: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122
|
4240 |
+
msgid "Select File"
|
4241 |
+
msgstr ""
|
4242 |
+
|
4243 |
+
#: pb-add-on-woocommerce/woo-checkout-field-support.php:252
|
4244 |
+
#: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43
|
4245 |
+
#: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112
|
4246 |
+
msgid "Remove"
|
4247 |
+
msgstr "Odstrani"
|
4248 |
+
|
4249 |
+
#: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8
|
4250 |
+
msgid "You can add the information for the %s after you add a entry"
|
4251 |
+
msgstr "Informacije za %s lahko dodate šele ko dodate vnos"
|
4252 |
+
|
4253 |
+
#: pb-add-on-woocommerce/woo-checkout-field-support.php:268
|
4254 |
+
#: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75
|
4255 |
+
#: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128
|
4256 |
+
msgid "Upload "
|
4257 |
+
msgstr "Naloži"
|
4258 |
+
|
4259 |
+
#: profile-builder-2.0/features/class-list-table.php:184
|
4260 |
+
msgid "No items found."
|
4261 |
+
msgstr "Ni najdenih elementov."
|
4262 |
+
|
4263 |
+
#: profile-builder-2.0/features/class-list-table.php:308
|
4264 |
+
msgid "Bulk Actions"
|
4265 |
+
msgstr "Več dejanj hkrati"
|
4266 |
+
|
4267 |
+
#: profile-builder-2.0/features/class-list-table.php:318
|
4268 |
+
msgid "Apply"
|
4269 |
+
msgstr "Uporabite"
|
4270 |
+
|
4271 |
+
#: profile-builder-2.0/features/class-list-table.php:402
|
4272 |
+
msgid "Show all dates"
|
4273 |
+
msgstr "Prikaži vse datume"
|
4274 |
+
|
4275 |
+
#: profile-builder-2.0/features/class-list-table.php:415
|
4276 |
+
msgid "%1$s %2$d"
|
4277 |
+
msgstr "%1$s %2$d"
|
4278 |
+
|
4279 |
+
#: profile-builder-2.0/features/class-list-table.php:431
|
4280 |
+
msgid "List View"
|
4281 |
+
msgstr "Pogled seznama"
|
4282 |
+
|
4283 |
+
#: profile-builder-2.0/features/class-list-table.php:432
|
4284 |
+
msgid "Excerpt View"
|
4285 |
+
msgstr "Pogled izvlečka"
|
4286 |
+
|
4287 |
+
#: profile-builder-2.0/features/class-list-table.php:458
|
4288 |
+
msgid "%s pending"
|
4289 |
+
msgstr "%s v čakanju"
|
4290 |
+
|
4291 |
+
#: profile-builder-2.0/features/class-list-table.php:566
|
4292 |
+
msgid "%1$s of %2$s"
|
4293 |
+
msgstr "%1$s od %2$s"
|
4294 |
+
|
4295 |
+
#: profile-builder-2.0/features/class-list-table.php:713
|
4296 |
+
msgid "Select All"
|
4297 |
+
msgstr "Izberi vse"
|
4298 |
+
|
4299 |
+
#: profile-builder-2.0/features/functions.php:526
|
4300 |
+
msgid "Strength indicator"
|
4301 |
+
msgstr "Indikator moči gesla"
|
4302 |
+
|
4303 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:14
|
4304 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453
|
4305 |
+
msgid "Admin Approval"
|
4306 |
+
msgstr "Odobritev skrbnika strani"
|
4307 |
+
|
4308 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:28
|
4309 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58
|
4310 |
+
msgid "Do you want to"
|
4311 |
+
msgstr "Ali hočete"
|
4312 |
+
|
4313 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:51
|
4314 |
+
msgid "Your session has expired! Please refresh the page and try again"
|
4315 |
+
msgstr "Vaša seja je potekla! Prosimo ponovno naložite stran in poizkusite ponovno"
|
4316 |
+
|
4317 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:64
|
4318 |
+
msgid "User successfully approved!"
|
4319 |
+
msgstr "Uporabnik uspešno odobren!"
|
4320 |
+
|
4321 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:74
|
4322 |
+
msgid "User successfully unapproved!"
|
4323 |
+
msgstr "Uporabnik uspešno neodobren!"
|
4324 |
+
|
4325 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:80
|
4326 |
+
msgid "User successfully deleted!"
|
4327 |
+
msgstr "Uporabnik uspešno izbrisan!"
|
4328 |
+
|
4329 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:85
|
4330 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:131
|
4331 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132
|
4332 |
+
msgid "You either don't have permission for that action or there was an error!"
|
4333 |
+
msgstr "Nimate zadosti pravic za dokončanje tega dejanja ali pa je prišlo do napake!"
|
4334 |
+
|
4335 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:96
|
4336 |
+
msgid "Your session has expired! Please refresh the page and try again."
|
4337 |
+
msgstr "Vaša seja je potekla! Prosimo ponovno naložite stran in poizkusite ponovno"
|
4338 |
+
|
4339 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:109
|
4340 |
+
msgid "Users successfully approved!"
|
4341 |
+
msgstr "Uporabniki uspešno odobreni!"
|
4342 |
+
|
4343 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:119
|
4344 |
+
msgid "Users successfully unapproved!"
|
4345 |
+
msgstr "Uporabniki uspešno neodobreni!"
|
4346 |
+
|
4347 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:127
|
4348 |
+
msgid "Users successfully deleted!"
|
4349 |
+
msgstr "Uporabniki uspešno izbrisani!"
|
4350 |
+
|
4351 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:147
|
4352 |
+
msgid "Your account on %1$s has been approved!"
|
4353 |
+
msgstr "Vaš račun na %1$s je bil odobren!"
|
4354 |
+
|
4355 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:148
|
4356 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:151
|
4357 |
+
msgid "approved"
|
4358 |
+
msgstr "odobren"
|
4359 |
+
|
4360 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:150
|
4361 |
+
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
4362 |
+
msgstr "Skrbnik strani je pravkar odobril vaš račun na %1$s (%2$s)."
|
4363 |
+
|
4364 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:155
|
4365 |
+
msgid "Your account on %1$s has been unapproved!"
|
4366 |
+
msgstr "Vaš račun na %1$s ni bil odobren!"
|
4367 |
+
|
4368 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:156
|
4369 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:159
|
4370 |
+
msgid "unapproved"
|
4371 |
+
msgstr "neodobren"
|
4372 |
+
|
4373 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:158
|
4374 |
+
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
4375 |
+
msgstr "Skrbnik strani ni odobril vašega računa na %1$s (%2$s)."
|
4376 |
+
|
4377 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:177
|
4378 |
+
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
4379 |
+
msgstr "<strong>NAPAKA</strong>: Vaš račun mora biti odobren s strani skrbnika strani preden se lahko prijavite."
|
4380 |
+
|
4381 |
+
#: profile-builder-2.0/features/admin-approval/admin-approval.php:189
|
4382 |
+
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
|
4383 |
+
msgstr "Vaš uporabniški račun mora biti odobren s strani skrbnika strani preden lahko uporabite funkcijo \"Obnovitev gesla\"."
|
4384 |
+
|
4385 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
|
4386 |
+
msgid "delete this user?"
|
4387 |
+
msgstr "izbriši tega uporabnika?"
|
4388 |
+
|
4389 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
|
4390 |
+
msgid "unapprove this user?"
|
4391 |
+
msgstr "neodobri tega uporabnika?"
|
4392 |
+
|
4393 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
|
4394 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223
|
4395 |
+
msgid "Unapprove"
|
4396 |
+
msgstr "Neodobri"
|
4397 |
+
|
4398 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
|
4399 |
+
msgid "approve this user?"
|
4400 |
+
msgstr "odobri tega uporabnika?"
|
4401 |
+
|
4402 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
|
4403 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222
|
4404 |
+
msgid "Approve"
|
4405 |
+
msgstr "Odobri"
|
4406 |
+
|
4407 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167
|
4408 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:278
|
4409 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:742
|
4410 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2224
|
4411 |
+
msgid "Firstname"
|
4412 |
+
msgstr "Ime"
|
4413 |
+
|
4414 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168
|
4415 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:745
|
4416 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2225
|
4417 |
+
msgid "Lastname"
|
4418 |
+
msgstr "Priimek"
|
4419 |
+
|
4420 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170
|
4421 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:149
|
4422 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:279
|
4423 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:772
|
4424 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2229
|
4425 |
+
msgid "Role"
|
4426 |
+
msgstr "Vloga"
|
4427 |
+
|
4428 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171
|
4429 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169
|
4430 |
+
msgid "Registered"
|
4431 |
+
msgstr "Registriran"
|
4432 |
+
|
4433 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172
|
4434 |
+
msgid "User-status"
|
4435 |
+
msgstr "Status uporabnika"
|
4436 |
+
|
4437 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252
|
4438 |
+
msgid "Do you want to bulk approve the selected users?"
|
4439 |
+
msgstr "Ali hočete odobriti vse izbrane uporabnike?"
|
4440 |
+
|
4441 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260
|
4442 |
+
msgid "Do you want to bulk unapprove the selected users?"
|
4443 |
+
msgstr "Ali hočete neodobriti vse izbrane uporabnike?"
|
4444 |
+
|
4445 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266
|
4446 |
+
msgid "Do you want to bulk delete the selected users?"
|
4447 |
+
msgstr "Ali hočete izbrisati vse izbrane uporabnike?"
|
4448 |
+
|
4449 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274
|
4450 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278
|
4451 |
+
msgid "Sorry, but you don't have permission to do that!"
|
4452 |
+
msgstr "Oprostite, ampak nimate pravic za dokočnanje tega dejanja!"
|
4453 |
+
|
4454 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339
|
4455 |
+
msgid "Approved"
|
4456 |
+
msgstr "Odobren"
|
4457 |
+
|
4458 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341
|
4459 |
+
msgid "Unapproved"
|
4460 |
+
msgstr "Neodobren"
|
4461 |
+
|
4462 |
+
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456
|
4463 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454
|
4464 |
+
msgid "All Users"
|
4465 |
+
msgstr "Vsi uporabniki"
|
4466 |
+
|
4467 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
|
4468 |
+
msgid "delete this user from the _signups table?"
|
4469 |
+
msgstr "izbriši tega uporabnika iz _signups tabele?"
|
4470 |
+
|
4471 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
|
4472 |
+
msgid "confirm this email yourself?"
|
4473 |
+
msgstr "želite potrditi ta e-naslov?"
|
4474 |
+
|
4475 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
|
4476 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218
|
4477 |
+
msgid "Confirm Email"
|
4478 |
+
msgstr "Potrdite e-naslov"
|
4479 |
+
|
4480 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
|
4481 |
+
msgid "resend the activation link?"
|
4482 |
+
msgstr "ponovno pošljem aktivacijsko povezavo?"
|
4483 |
+
|
4484 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
|
4485 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219
|
4486 |
+
msgid "Resend Activation Email"
|
4487 |
+
msgstr "Ponovno pošlji aktivacijsko e-pošto"
|
4488 |
+
|
4489 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249
|
4490 |
+
msgid "%s couldn't be deleted"
|
4491 |
+
msgstr "%s ni bilo mogoče izbrisati"
|
4492 |
+
|
4493 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253
|
4494 |
+
msgid "All users have been successfully deleted"
|
4495 |
+
msgstr "Vsi uporabniki so bili uspešno izbrisani"
|
4496 |
+
|
4497 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263
|
4498 |
+
msgid "The selected users have been activated"
|
4499 |
+
msgstr "Izbrani uporabniki so bili aktivirani"
|
4500 |
+
|
4501 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274
|
4502 |
+
msgid "The selected users have had their activation emails resent"
|
4503 |
+
msgstr "Izbranim uporabnikom so bile ponovno poslane potrditvene e-pošte"
|
4504 |
+
|
4505 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451
|
4506 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47
|
4507 |
+
msgid "Users with Unconfirmed Email Address"
|
4508 |
+
msgstr "Uporabniki z nepotrjenimi e-naslovi"
|
4509 |
+
|
4510 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107
|
4511 |
+
msgid "There was an error performing that action!"
|
4512 |
+
msgstr "Prišlo je do napake pri zadnjem dejanju!"
|
4513 |
+
|
4514 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115
|
4515 |
+
msgid "The selected user couldn't be deleted"
|
4516 |
+
msgstr "Izbranega uporabnika ni bilo moč zbrisati"
|
4517 |
+
|
4518 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126
|
4519 |
+
msgid "Email notification resent to user"
|
4520 |
+
msgstr "Obvestilo preko e-pošte je bilo preposlano uporabniku"
|
4521 |
+
|
4522 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398
|
4523 |
+
msgid "[%1$s] Activate %2$s"
|
4524 |
+
msgstr "[%1$s] Aktiviraj %2$s"
|
4525 |
+
|
4526 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442
|
4527 |
+
#: profile-builder-2.0/front-end/register.php:71
|
4528 |
+
msgid "Could not create user!"
|
4529 |
+
msgstr "Ni bilo moč ustvariti novega uporabnika!"
|
4530 |
+
|
4531 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445
|
4532 |
+
msgid "That username is already activated!"
|
4533 |
+
msgstr "To uporabniško ime je že aktivno!"
|
4534 |
+
|
4535 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468
|
4536 |
+
msgid "There was an error while trying to activate the user"
|
4537 |
+
msgstr "Prišlo je do napake pri aktiviranju uporabnika"
|
4538 |
+
|
4539 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516
|
4540 |
+
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73
|
4541 |
+
msgid "A new subscriber has (been) registered!"
|
4542 |
+
msgstr "Nov naročnik se je registriral!"
|
4543 |
+
|
4544 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519
|
4545 |
+
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
4546 |
+
msgstr "Novi naročnik na %1$s.<br/><br/>Uporabniško ime:%2$s<br/>E-naslov:%3$s<br/>"
|
4547 |
+
|
4548 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634
|
4549 |
+
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!"
|
4550 |
+
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!"
|
4551 |
+
|
4552 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
|
4553 |
+
msgid "[%1$s] Your new account information"
|
4554 |
+
msgstr "[%1$s] Vaše nove informacije v računu"
|
4555 |
+
|
4556 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581
|
4557 |
+
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
|
4558 |
+
msgstr "Dobrodošli na %1$s!<br/><br/><br/>Vaše uporabniško ime je:%2$s in geslo:%3$s"
|
4559 |
+
|
4560 |
+
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642
|
4561 |
+
#: profile-builder-2.0/front-end/register.php:125
|
4562 |
+
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
4563 |
+
msgstr "Preden lahko uporabljate svoj račun ga mora odobriti skrbnik strani. Obveščeni boste po e-pošti."
|
4564 |
+
|
4565 |
+
#: profile-builder-2.0/features/login-widget/login-widget.php:10
|
4566 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
4567 |
+
msgstr "Ta prijavni gradnik vam omogoča dodajanje prijavnega obrazca v stransko vrstico."
|
4568 |
+
|
4569 |
+
#: profile-builder-2.0/features/login-widget/login-widget.php:15
|
4570 |
+
msgid "Profile Builder Login Widget"
|
4571 |
+
msgstr "Prijavni gradnik Profile Builder"
|
4572 |
+
|
4573 |
+
#: pb-add-on-woocommerce/templates/myaccount-login-register.php:36
|
4574 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:415
|
4575 |
+
#: profile-builder-2.0/front-end/login.php:250
|
4576 |
+
msgid "Register"
|
4577 |
+
msgstr "Registriraj se"
|
4578 |
+
|
4579 |
+
#: profile-builder-2.0/features/login-widget/login-widget.php:63
|
4580 |
+
msgid "Title:"
|
4581 |
+
msgstr "Naslov:"
|
4582 |
+
|
4583 |
+
#: profile-builder-2.0/features/login-widget/login-widget.php:68
|
4584 |
+
msgid "After login redirect URL (optional):"
|
4585 |
+
msgstr "Preusmeritvena povezava po prijavi (opcijsko):"
|
4586 |
+
|
4587 |
+
#: profile-builder-2.0/features/login-widget/login-widget.php:73
|
4588 |
+
msgid "Register page URL (optional):"
|
4589 |
+
msgstr "Registrirajte spletni naslov strani (izbirno):"
|
4590 |
+
|
4591 |
+
#: profile-builder-2.0/features/login-widget/login-widget.php:78
|
4592 |
+
msgid "Password Recovery page URL (optional):"
|
4593 |
+
msgstr "Spletni naslov strani za obnovitev gesla (izbirno):"
|
4594 |
+
|
4595 |
+
#: profile-builder-2.0/features/upgrades/upgrades-functions.php:91
|
4596 |
+
#: profile-builder-2.0/features/upgrades/upgrades-functions.php:134
|
4597 |
+
msgid "The usernames cannot be changed."
|
4598 |
+
msgstr "Uporabniškega imena se ne more spremeniti."
|
4599 |
+
|
4600 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:136
|
4601 |
+
msgid "Only an administrator can add new users."
|
4602 |
+
msgstr "Samo skrbnik strani lahko doda nove uporabnike."
|
4603 |
+
|
4604 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:146
|
4605 |
+
msgid "Users can register themselves or you can manually create users here."
|
4606 |
+
msgstr "Uporabniki se lahko registrirajo ali pa jih ročno ustvarite tu."
|
4607 |
+
|
4608 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:149
|
4609 |
+
msgid "Users cannot currently register themselves, but you can manually create users here."
|
4610 |
+
msgstr "Uporabniki se trenutno ne morejo registrirati, lahko pa jih ročno dodate tu."
|
4611 |
+
|
4612 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:169
|
4613 |
+
msgid "You are currently logged in as %1s. You don't need another account. %2s"
|
4614 |
+
msgstr "Trenutno ste prijavljeni kot %1s. Ne potrebujete drugega uporabniškega računa. %2s"
|
4615 |
+
|
4616 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:169
|
4617 |
+
msgid "Log out of this account."
|
4618 |
+
msgstr "Odjavi se iz tega računa."
|
4619 |
+
|
4620 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:169
|
4621 |
+
msgid "Logout"
|
4622 |
+
msgstr "Odjava"
|
4623 |
+
|
4624 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:175
|
4625 |
+
msgid "You must be logged in to edit your profile."
|
4626 |
+
msgstr "Za urejanje profila morate biti prijavljeni."
|
4627 |
+
|
4628 |
+
#: profile-builder-2.0/features/functions.php:994
|
4629 |
+
msgid "here"
|
4630 |
+
msgstr "tukaj"
|
4631 |
+
|
4632 |
+
#: profile-builder-2.0/features/functions.php:995
|
4633 |
+
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4634 |
+
msgstr "Kmalu boste samodejno preusmerjeni. Če ostanete na tej strani več kot %1$d sekund, prosimo kliknite %2$s.%3$s"
|
4635 |
+
|
4636 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:315
|
4637 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:322
|
4638 |
+
msgid "The account %1s has been successfully created!"
|
4639 |
+
msgstr "Račun %1s je bil uspećno ustvarjen!"
|
4640 |
+
|
4641 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:318
|
4642 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:328
|
4643 |
+
msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
|
4644 |
+
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."
|
4645 |
+
|
4646 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:324
|
4647 |
+
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
4648 |
+
msgstr "Preden lahko uporabljate svoj račun %1s ga mora odobriti skrbnik strani. Obveščeni boste po e-pošti."
|
4649 |
+
|
4650 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:347
|
4651 |
+
msgid "Your profile has been successfully updated!"
|
4652 |
+
msgstr "Vaš profil je bil uspešno posodobljen!"
|
4653 |
+
|
4654 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:358
|
4655 |
+
msgid "There was an error in the submitted form"
|
4656 |
+
msgstr "Prišlo je do napake pri oddaji obrazca"
|
4657 |
+
|
4658 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:415
|
4659 |
+
msgid "Add User"
|
4660 |
+
msgstr "Dodaj uporabnika"
|
4661 |
+
|
4662 |
+
#: profile-builder-2.0/admin/add-ons.php:170
|
4663 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:418
|
4664 |
+
msgid "Update"
|
4665 |
+
msgstr "Posodobi"
|
4666 |
+
|
4667 |
+
#: profile-builder-2.0/front-end/class-formbuilder.php:481
|
4668 |
+
msgid "Send these credentials via email."
|
4669 |
+
msgstr "Pošlji te vpisne podatke po e-pošti."
|
4670 |
+
|
4671 |
+
#: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92
|
4672 |
+
#: profile-builder-2.0/front-end/login.php:137
|
4673 |
+
#: profile-builder-2.0/front-end/login.php:144
|
4674 |
+
#: profile-builder-2.0/front-end/login.php:158
|
4675 |
+
#: profile-builder-2.0/front-end/recover.php:17
|
4676 |
+
#: profile-builder-2.0/front-end/recover.php:245
|
4677 |
+
msgid "ERROR"
|
4678 |
+
msgstr "NAPAKA"
|
4679 |
+
|
4680 |
+
#: profile-builder-2.0/front-end/login.php:137
|
4681 |
+
msgid "The password you entered is incorrect."
|
4682 |
+
msgstr "Vnešeno geslo je nepravilno."
|
4683 |
+
|
4684 |
+
#: profile-builder-2.0/front-end/login.php:138
|
4685 |
+
#: profile-builder-2.0/front-end/login.php:145
|
4686 |
+
msgid "Password Lost and Found."
|
4687 |
+
msgstr "Geslo izgubljeno in najdeno"
|
4688 |
+
|
4689 |
+
#: profile-builder-2.0/front-end/login.php:138
|
4690 |
+
#: profile-builder-2.0/front-end/login.php:145
|
4691 |
+
msgid "Lost your password"
|
4692 |
+
msgstr "Izgubljeno geslo"
|
4693 |
+
|
4694 |
+
#: profile-builder-2.0/front-end/login.php:158
|
4695 |
+
msgid "Both fields are empty."
|
4696 |
+
msgstr "Obe polji sta prazni."
|
4697 |
+
|
4698 |
+
#: profile-builder-2.0/front-end/login.php:296
|
4699 |
+
msgid "You are currently logged in as %1$s. %2$s"
|
4700 |
+
msgstr "Trenutno ste prijavljeni kot %1$s. %2$s"
|
4701 |
+
|
4702 |
+
#: profile-builder-2.0/front-end/login.php:295
|
4703 |
+
#: profile-builder-2.0/front-end/logout.php:25
|
4704 |
+
msgid "Log out of this account"
|
4705 |
+
msgstr "Izpis iz tega računa"
|
4706 |
+
|
4707 |
+
#: profile-builder-2.0/front-end/login.php:295
|
4708 |
+
msgid "Log out"
|
4709 |
+
msgstr "Izpis"
|
4710 |
+
|
4711 |
+
#: profile-builder-2.0/front-end/recover.php:17
|
4712 |
+
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
4713 |
+
msgstr "Vaš uporabniški račun mora biti odobren s strani skrbnika strani preden lahko uporabite funkcijo \"Ponastavitev gesla\"."
|
4714 |
+
|
4715 |
+
#: profile-builder-2.0/front-end/recover.php:94
|
4716 |
+
msgid "Reset Password"
|
4717 |
+
msgstr "Ponastavi geslo"
|
4718 |
+
|
4719 |
+
#: profile-builder-2.0/front-end/recover.php:121
|
4720 |
+
msgid "Please enter your username or email address."
|
4721 |
+
msgstr "Prosimo vpišite vaše uporabniško ime ali e-naslov"
|
4722 |
+
|
4723 |
+
#: profile-builder-2.0/front-end/recover.php:125
|
4724 |
+
msgid "You will receive a link to create a new password via email."
|
4725 |
+
msgstr "Prejeli boste povezavo, da ustvarite novo geslo preko e-naslova"
|
4726 |
+
|
4727 |
+
#: profile-builder-2.0/front-end/recover.php:122
|
4728 |
+
msgid "Username or E-mail"
|
4729 |
+
msgstr "Uporabniško ime ali e-naslov"
|
4730 |
+
|
4731 |
+
#: profile-builder-2.0/front-end/recover.php:138
|
4732 |
+
msgid "Get New Password"
|
4733 |
+
msgstr "Pridobite novo geslo"
|
4734 |
+
|
4735 |
+
#: profile-builder-2.0/front-end/recover.php:185
|
4736 |
+
msgid "The username entered wasn't found in the database!"
|
4737 |
+
msgstr "Vnešeno uporabniško ime ni bilo najdeno v bazi!"
|
4738 |
+
|
4739 |
+
#: profile-builder-2.0/front-end/recover.php:185
|
4740 |
+
msgid "Please check that you entered the correct username."
|
4741 |
+
msgstr "Prosimo preverite ali ste vnesli pravilno uporabniško ime."
|
4742 |
+
|
4743 |
+
#: profile-builder-2.0/front-end/recover.php:200
|
4744 |
+
msgid "Check your e-mail for the confirmation link."
|
4745 |
+
msgstr "Preverite vaš e-naslov za potrditveno povezavo."
|
4746 |
+
|
4747 |
+
#: profile-builder-2.0/front-end/recover.php:235
|
4748 |
+
msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
|
4749 |
+
msgstr "Nekdo je oddal prošnjo za ponastavitev gesla za sledeči uporabniški račun: <b>%1$s</b><br/>Če je to bila pomota, ignorirajte to e-pošto in nič se ne bo zgodilo.<br/>Za ponastavitev gesla, obiščite sledečo povezavo:%2$s"
|
4750 |
+
|
4751 |
+
#: profile-builder-2.0/front-end/recover.php:238
|
4752 |
+
msgid "Password Reset from \"%1$s\""
|
4753 |
+
msgstr "Ponastavitev gesla od \"%1$s\""
|
4754 |
+
|
4755 |
+
#: profile-builder-2.0/front-end/recover.php:245
|
4756 |
+
msgid "There was an error while trying to send the activation link to %1$s!"
|
4757 |
+
msgstr "Prišlo je do napake pri pošiljanju aktivacijske povezave na %1$s!"
|
4758 |
+
|
4759 |
+
#: profile-builder-2.0/front-end/recover.php:207
|
4760 |
+
msgid "The email address entered wasn't found in the database!"
|
4761 |
+
msgstr "Vnešeni e-naslov ni bil najden v bazi!"
|
4762 |
+
|
4763 |
+
#: profile-builder-2.0/front-end/recover.php:207
|
4764 |
+
msgid "Please check that you entered the correct email address."
|
4765 |
+
msgstr "Prosimo preverite, da ste vnesli pravilen e-naslov."
|
4766 |
+
|
4767 |
+
#: profile-builder-2.0/front-end/recover.php:273
|
4768 |
+
msgid "Your password has been successfully changed!"
|
4769 |
+
msgstr "Vaše geslo je bilo uspešno spremenjeno!"
|
4770 |
+
|
4771 |
+
#: profile-builder-2.0/front-end/recover.php:292
|
4772 |
+
msgid "You have successfully reset your password to: %1$s"
|
4773 |
+
msgstr "Uspešno ste spremenili geslo v: %1$s"
|
4774 |
+
|
4775 |
+
#: profile-builder-2.0/front-end/recover.php:295
|
4776 |
+
#: profile-builder-2.0/front-end/recover.php:306
|
4777 |
+
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
4778 |
+
msgstr "Geslo je bilo uspešno ponastavljeno za %1$s na \"%2$s\""
|
4779 |
+
|
4780 |
+
#: profile-builder-2.0/front-end/recover.php:303
|
4781 |
+
msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
|
4782 |
+
msgstr "%1$s je oddal prošnjo za spremembo gesla preko funkcije za ponastavitev gesla.<br/>Njegovo/Njeno novo geslo je:%2$s"
|
4783 |
+
|
4784 |
+
#: profile-builder-2.0/front-end/recover.php:320
|
4785 |
+
msgid "The entered passwords don't match!"
|
4786 |
+
msgstr "Vnešeni gesli se ne ujemata!"
|
4787 |
+
|
4788 |
+
#: profile-builder-2.0/front-end/recover.php:375
|
4789 |
+
msgid "ERROR:"
|
4790 |
+
msgstr "NAPAKA:"
|
4791 |
+
|
4792 |
+
#: profile-builder-2.0/front-end/recover.php:375
|
4793 |
+
msgid "Invalid key!"
|
4794 |
+
msgstr "Neveljaven ključ!"
|
4795 |
+
|
4796 |
+
#: profile-builder-2.0/front-end/register.php:56
|
4797 |
+
msgid "Invalid activation key!"
|
4798 |
+
msgstr "Neveljaven aktivacijski ključ!"
|
4799 |
+
|
4800 |
+
#: profile-builder-2.0/front-end/register.php:60
|
4801 |
+
msgid "This username is now active!"
|
4802 |
+
msgstr "To uporabniško ime je sedaj aktivno!"
|
4803 |
+
|
4804 |
+
#: profile-builder-2.0/front-end/register.php:74
|
4805 |
+
msgid "This username is already activated!"
|
4806 |
+
msgstr "To uporabniško ime je že aktivno!"
|
4807 |
+
|
4808 |
+
#: profile-builder-2.0/front-end/register.php:124
|
4809 |
+
msgid "Your email was successfully confirmed."
|
4810 |
+
msgstr "Vaš e-naslov je bil uspešno potrjen."
|
4811 |
+
|
4812 |
+
#: profile-builder-2.0/front-end/register.php:153
|
4813 |
+
msgid "There was an error while trying to activate the user."
|
4814 |
+
msgstr "Prišlo je do napake pri aktivaciji uporabnika."
|
4815 |
+
|
4816 |
+
#: pb-add-on-woocommerce/index.php:393
|
4817 |
+
#: profile-builder-2.0/front-end/default-fields/email/email.php:47
|
4818 |
+
msgid "The email you entered is not a valid email address."
|
4819 |
+
msgstr "E-naslov, ki ste ga vnesli, ni veljaven."
|
4820 |
+
|
4821 |
+
#: profile-builder-2.0/front-end/default-fields/email/email.php:60
|
4822 |
+
#: profile-builder-2.0/front-end/default-fields/email/email.php:67
|
4823 |
+
msgid "This email is already reserved to be used soon."
|
4824 |
+
msgstr "Ta e-naslov je že rezerviran in bo kmalu uporabljen."
|
4825 |
+
|
4826 |
+
#: profile-builder-2.0/front-end/default-fields/email/email.php:60
|
4827 |
+
#: profile-builder-2.0/front-end/default-fields/email/email.php:67
|
4828 |
+
#: profile-builder-2.0/front-end/default-fields/email/email.php:77
|
4829 |
+
#: profile-builder-2.0/front-end/default-fields/email/email.php:95
|
4830 |
+
#: profile-builder-2.0/front-end/default-fields/username/username.php:49
|
4831 |
+
#: profile-builder-2.0/front-end/default-fields/username/username.php:65
|
4832 |
+
msgid "Please try a different one!"
|
4833 |
+
msgstr "Prosimo poskusite drugega!"
|
4834 |
+
|
4835 |
+
#: profile-builder-2.0/front-end/default-fields/email/email.php:77
|
4836 |
+
#: profile-builder-2.0/front-end/default-fields/email/email.php:95
|
4837 |
+
msgid "This email is already in use."
|
4838 |
+
msgstr "Ta e-naslov je že v uporabi."
|
4839 |
+
|
4840 |
+
#: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37
|
4841 |
+
#: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41
|
4842 |
+
msgid "The passwords do not match"
|
4843 |
+
msgstr "Gesli se ne ujemata"
|
4844 |
+
|
4845 |
+
#: profile-builder-2.0/front-end/default-fields/username/username.php:49
|
4846 |
+
msgid "This username already exists."
|
4847 |
+
msgstr "To uporabniško ime že obstaja."
|
4848 |
+
|
4849 |
+
#: profile-builder-2.0/front-end/default-fields/username/username.php:65
|
4850 |
+
msgid "This username is already reserved to be used soon."
|
4851 |
+
msgstr "To uporabniško ime je že rezervirano, da bo kmalu uporabljeno."
|
4852 |
+
|
4853 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:276
|
4854 |
+
msgid "Avatar"
|
4855 |
+
msgstr "Prikazna slika"
|
4856 |
+
|
4857 |
+
#: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72
|
4858 |
+
#: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45
|
4859 |
+
#: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45
|
4860 |
+
#: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40
|
4861 |
+
#: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34
|
4862 |
+
#: profile-builder-2.0/front-end/extra-fields/input/input.php:30
|
4863 |
+
#: profile-builder-2.0/front-end/extra-fields/map/map.php:51
|
4864 |
+
#: profile-builder-2.0/front-end/extra-fields/number/number.php:30
|
4865 |
+
#: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39
|
4866 |
+
#: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44
|
4867 |
+
#: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52
|
4868 |
+
#: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46
|
4869 |
+
#: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49
|
4870 |
+
#: profile-builder-2.0/front-end/extra-fields/select/select.php:51
|
4871 |
+
#: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30
|
4872 |
+
#: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70
|
4873 |
+
#: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
|
4874 |
+
msgid "required"
|
4875 |
+
msgstr "zahtevano"
|
4876 |
+
|
4877 |
+
#: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48
|
4878 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
4879 |
+
msgstr "Za uporabo reCAPTCHA morate priskrbeti API ključ"
|
4880 |
+
|
4881 |
+
#: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131
|
4882 |
+
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
4883 |
+
msgstr "Zavoljo varnostnih razlogov, morate priskrbeti oddaljeni ip za reCAPTCHA!"
|
4884 |
+
|
4885 |
+
#: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192
|
4886 |
+
msgid "To use reCAPTCHA you must get an API public key from:"
|
4887 |
+
msgstr "Za uporabo reCAPTCHA morate pridobiti API javni ključ od:"
|
4888 |
+
|
4889 |
+
#: profile-builder-2.0/modules/modules.php:11
|
4890 |
+
#: profile-builder-2.0/modules/modules.php:58
|
4891 |
+
msgid "Modules"
|
4892 |
+
msgstr "Moduli"
|
4893 |
+
|
4894 |
+
#: profile-builder-2.0/modules/modules.php:59
|
4895 |
+
msgid "Here you can activate / deactivate available modules for Profile Builder."
|
4896 |
+
msgstr "Tukaj lahko aktivirate / deaktivirate module, ki so na voljo za Profile Builder"
|
4897 |
+
|
4898 |
+
#: profile-builder-2.0/modules/modules.php:69
|
4899 |
+
msgid "Name/Description"
|
4900 |
+
msgstr "Ime/Opis"
|
4901 |
+
|
4902 |
+
#: profile-builder-2.0/modules/modules.php:70
|
4903 |
+
msgid "Status"
|
4904 |
+
msgstr "Status"
|
4905 |
+
|
4906 |
+
#: profile-builder-2.0/modules/modules.php:77
|
4907 |
+
#: profile-builder-2.0/modules/modules.php:84
|
4908 |
+
#: profile-builder-2.0/modules/modules.php:91
|
4909 |
+
#: profile-builder-2.0/modules/modules.php:98
|
4910 |
+
#: profile-builder-2.0/modules/modules.php:105
|
4911 |
+
#: profile-builder-2.0/modules/modules.php:112
|
4912 |
+
#: profile-builder-2.0/modules/modules.php:119
|
4913 |
+
msgid "Active"
|
4914 |
+
msgstr "Aktiven"
|
4915 |
+
|
4916 |
+
#: profile-builder-2.0/modules/modules.php:78
|
4917 |
+
#: profile-builder-2.0/modules/modules.php:85
|
4918 |
+
#: profile-builder-2.0/modules/modules.php:92
|
4919 |
+
#: profile-builder-2.0/modules/modules.php:99
|
4920 |
+
#: profile-builder-2.0/modules/modules.php:106
|
4921 |
+
#: profile-builder-2.0/modules/modules.php:113
|
4922 |
+
#: profile-builder-2.0/modules/modules.php:120
|
4923 |
+
msgid "Inactive"
|
4924 |
+
msgstr "Neaktiven"
|
4925 |
+
|
4926 |
+
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11
|
4927 |
+
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12
|
4928 |
+
#: profile-builder-2.0/modules/modules.php:96
|
4929 |
+
msgid "Admin Email Customizer"
|
4930 |
+
msgstr "Oblikovalec Skrbniškega E-naslova"
|
4931 |
+
|
4932 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11
|
4933 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12
|
4934 |
+
#: profile-builder-2.0/modules/modules.php:103
|
4935 |
+
msgid "User Email Customizer"
|
4936 |
+
msgstr " Oblikovalec Uporabniškega E-naslova"
|
4937 |
+
|
4938 |
+
#: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
|
4939 |
+
#: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253
|
4940 |
+
msgid "Save"
|
4941 |
+
msgstr "Shrani"
|
4942 |
+
|
4943 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
|
4944 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
|
4945 |
+
msgid "Redirect"
|
4946 |
+
msgstr "Preusmeritev"
|
4947 |
+
|
4948 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
|
4949 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
|
4950 |
+
msgid "URL"
|
4951 |
+
msgstr "URL"
|
4952 |
+
|
4953 |
+
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
|
4954 |
+
msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
|
4955 |
+
msgstr "Te nastavitve se shranijo tudi (kopirajo) v \"Oblikovalec Uporabniškega E-naslova\" stran z nastavitvami ob shranitvi."
|
4956 |
+
|
4957 |
+
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41
|
4958 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
|
4959 |
+
msgid "From (name)"
|
4960 |
+
msgstr "Od (ime)"
|
4961 |
+
|
4962 |
+
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49
|
4963 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49
|
4964 |
+
msgid "From (reply-to email)"
|
4965 |
+
msgstr "Od (odgovori-na e-naslov)"
|
4966 |
+
|
4967 |
+
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57
|
4968 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57
|
4969 |
+
msgid "Common Settings"
|
4970 |
+
msgstr "Pogoste nastavitve"
|
4971 |
+
|
4972 |
+
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60
|
4973 |
+
msgid ""
|
4974 |
+
"\n"
|
4975 |
+
"<p>New subscriber on {{site_name}}.</p>\n"
|
4976 |
+
"<p>Username:{{username}}</p>\n"
|
4977 |
+
"<p>E-mail:{{user_email}}</p>\n"
|
4978 |
+
msgstr ""
|
4979 |
+
"\n"
|
4980 |
+
"<p>Nov naročnik na {{site_name}}.</p>\n"
|
4981 |
+
"<p>Uporabniško ime:{{username}}</p>\n"
|
4982 |
+
"<p>E-naslov:{{user_email}}</p>\n"
|
4983 |
+
|
4984 |
+
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69
|
4985 |
+
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99
|
4986 |
+
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126
|
4987 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71
|
4988 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99
|
4989 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128
|
4990 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155
|
4991 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183
|
4992 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214
|
4993 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241
|
4994 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274
|
4995 |
+
msgid "Email Subject"
|
4996 |
+
msgstr "Zadeva e-pošte"
|
4997 |
+
|
4998 |
+
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84
|
4999 |
+
msgid "Default Registration & Registration with Email Confirmation"
|
5000 |
+
msgstr "Privzeta registracija & registracija s potrditveno e-pošto"
|
5001 |
+
|
5002 |
+
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87
|
5003 |
+
msgid ""
|
5004 |
+
"\n"
|
5005 |
+
"<p>New subscriber on {{site_name}}.</p>\n"
|
5006 |
+
"<p>Username:{{username}}</p>\n"
|
5007 |
+
"<p>E-mail:{{user_email}}</p>\n"
|
5008 |
+
"<p>The Admin Approval feature was activated at the time of registration,\n"
|
5009 |
+
"so please remember that you need to approve this user before he/she can log in!</p>\n"
|
5010 |
+
msgstr ""
|
5011 |
+
"\n"
|
5012 |
+
"<p>Nov naročnik na {{site_name}}.</p>\n"
|
5013 |
+
"<p>Uporabniško ime:{{username}}</p>\n"
|
5014 |
+
"<p>E-naslov:{{user_email}}</p>\n"
|
5015 |
+
"<p>Opcija za odobritev s strani skrbnika strani je bila aktivirana ob času registracije,\n"
|
5016 |
+
"zato ne pozabite, da morate uporabnika potrditi preden se lahko prijavi!</p>\n"
|
5017 |
+
|
5018 |
+
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
|
5019 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
|
5020 |
+
msgid "Registration with Admin Approval"
|
5021 |
+
msgstr "Registracija z odobritvijo skrbnika strani"
|
5022 |
+
|
5023 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:7
|
5024 |
+
msgid "Available Tags"
|
5025 |
+
msgstr "Oznake, ki so na voljo"
|
5026 |
+
|
5027 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
|
5028 |
+
#: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170
|
5029 |
+
msgid "User Meta"
|
5030 |
+
msgstr "Meta uporabnika"
|
5031 |
+
|
5032 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:21
|
5033 |
+
msgid "Site Url"
|
5034 |
+
msgstr "Spletni naslov"
|
5035 |
+
|
5036 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:22
|
5037 |
+
msgid "Site Name"
|
5038 |
+
msgstr "Ime spletnega mesta"
|
5039 |
+
|
5040 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:25
|
5041 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:158
|
5042 |
+
msgid "User Id"
|
5043 |
+
msgstr "Identifikacijska št. uporabnika"
|
5044 |
+
|
5045 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:33
|
5046 |
+
msgid "Reply To"
|
5047 |
+
msgstr "Odgovori na"
|
5048 |
+
|
5049 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:40
|
5050 |
+
msgid "Activation Key"
|
5051 |
+
msgstr "Aktivacijski ključ"
|
5052 |
+
|
5053 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:41
|
5054 |
+
msgid "Activation Url"
|
5055 |
+
msgstr "Aktivacijski spletni naslov"
|
5056 |
+
|
5057 |
+
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:42
|
5058 |
+
msgid "Activation Link"
|
5059 |
+
msgstr "Aktivacijska povezava"
|
5060 |
+
|
5061 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64
|
5062 |
+
msgid ""
|
5063 |
+
"\n"
|
5064 |
+
"<h3>Welcome to {{site_name}}!</h3>\n"
|
5065 |
+
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
5066 |
+
msgstr ""
|
5067 |
+
"\n"
|
5068 |
+
"<h3>Dobrodošli na {{site_name}}!</h3>\n"
|
5069 |
+
"<p>Vaše uporabniško ime je:{{username}} in geslo:{{password}}</p>\n"
|
5070 |
+
|
5071 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85
|
5072 |
+
msgid "Default Registration"
|
5073 |
+
msgstr "Privzeta registracija"
|
5074 |
+
|
5075 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91
|
5076 |
+
msgid ""
|
5077 |
+
"\n"
|
5078 |
+
"<p>To activate your user, please click the following link:<br/>\n"
|
5079 |
+
"{{{activation_link}}}</p>\n"
|
5080 |
+
"<p>After you activate, you will receive another email with your credentials.</p>\n"
|
5081 |
+
msgstr ""
|
5082 |
+
"\n"
|
5083 |
+
"<p>Za aktivacijo vašega uporabniškega računa, prosimo klknite sledečo povezavo:<br/>\n"
|
5084 |
+
"{{{activation_link}}}</p>\n"
|
5085 |
+
"<p>Po aktivaciji boste prejeli dodatno e-pošto s prijavnimi podatki.</p>\n"
|
5086 |
+
|
5087 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103
|
5088 |
+
msgid "[{{site_name}}] Activate {{username}}"
|
5089 |
+
msgstr "[{{site_name}}] Aktiviraj {{username}}"
|
5090 |
+
|
5091 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114
|
5092 |
+
msgid "Registration with Email Confirmation"
|
5093 |
+
msgstr "Registracija s potrditveno e-pošto"
|
5094 |
+
|
5095 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120
|
5096 |
+
msgid ""
|
5097 |
+
"\n"
|
5098 |
+
"<h3>Welcome to {{site_name}}!</h3>\n"
|
5099 |
+
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
5100 |
+
"<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
|
5101 |
+
msgstr ""
|
5102 |
+
"\n"
|
5103 |
+
"<h3>Dobrodošli na {{site_name}}!</h3>\n"
|
5104 |
+
"<p>Vaše uporabniško ime je:{{username}} in geslo:{{password}}</p>\n"
|
5105 |
+
"<p>Preden lahko dostopate do svojega uporabniškega računa ga mora odobriti skrbnik strani. Obveščeni boste po e-pošti.</p>\n"
|
5106 |
+
|
5107 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
|
5108 |
+
msgid "A new account has been created for you on {{site_name}}"
|
5109 |
+
msgstr "Na {{site_name}} je bil ustvarjen nov račun za vas"
|
5110 |
+
|
5111 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148
|
5112 |
+
msgid ""
|
5113 |
+
"\n"
|
5114 |
+
"<h3>Good News!</h3>\n"
|
5115 |
+
"<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
|
5116 |
+
msgstr ""
|
5117 |
+
"\n"
|
5118 |
+
"<h3>Dobra novica!</h3>\n"
|
5119 |
+
"<p>Skrbnik strani je pravkar odobril vaš račun: {{username}} na {{site_name}}.</p>\n"
|
5120 |
+
|
5121 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159
|
5122 |
+
msgid "Your account on {{site_name}} has been approved!"
|
5123 |
+
msgstr "Vaš račun na {{site_name}} je bil odobren!"
|
5124 |
+
|
5125 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170
|
5126 |
+
msgid "User Approval Notification"
|
5127 |
+
msgstr "Obvestilo o odobritvi uporabnika"
|
5128 |
+
|
5129 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175
|
5130 |
+
msgid ""
|
5131 |
+
"\n"
|
5132 |
+
"<h3>Hello,</h3>\n"
|
5133 |
+
"<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
|
5134 |
+
msgstr ""
|
5135 |
+
"\n"
|
5136 |
+
"<h3>Pozdravljeni,</h3>\n"
|
5137 |
+
"<p>Na žalost je skrbnik strani pravkar označil vaš uporabniški račun kot neodobrenega: {{username}} na strani {{site_name}}.</p>\n"
|
5138 |
+
|
5139 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
|
5140 |
+
msgid "Your account on {{site_name}} has been unapproved!"
|
5141 |
+
msgstr "Vaš račun na {{site_name}} ni bil odobren!"
|
5142 |
+
|
5143 |
+
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198
|
5144 |
+
msgid "Unapproved User Notification"
|
5145 |
+
msgstr "Obvestilo o neodobritvi uporabnika"
|
5146 |
+
|
5147 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11
|
5148 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12
|
5149 |
+
msgid "Edit-profile Form"
|
5150 |
+
msgstr "Obrazec za ureditev profila"
|
5151 |
+
|
5152 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13
|
5153 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:13
|
5154 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:13
|
5155 |
+
msgid "Add New"
|
5156 |
+
msgstr "Dodaj novo"
|
5157 |
+
|
5158 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14
|
5159 |
+
msgid "Add new Edit-profile Form"
|
5160 |
+
msgstr "Dodaj nov obrazec za ureditev profila"
|
5161 |
+
|
5162 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15
|
5163 |
+
msgid "Edit the Edit-profile Forms"
|
5164 |
+
msgstr "Uredi obrazec za ureditev profila"
|
5165 |
+
|
5166 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16
|
5167 |
+
msgid "New Edit-profile Form"
|
5168 |
+
msgstr "Nov obrazec za ureditev profila"
|
5169 |
+
|
5170 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17
|
5171 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23
|
5172 |
+
msgid "Edit-profile Forms"
|
5173 |
+
msgstr "Obrazci za ureditev profila"
|
5174 |
+
|
5175 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18
|
5176 |
+
msgid "View the Edit-profile Form"
|
5177 |
+
msgstr "Ogled obrazcev za urejanje profila"
|
5178 |
+
|
5179 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19
|
5180 |
+
msgid "Search the Edit-profile Forms"
|
5181 |
+
msgstr "Išči med obrazci za urejanje profila"
|
5182 |
+
|
5183 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20
|
5184 |
+
msgid "No Edit-profile Form found"
|
5185 |
+
msgstr "Noben obrazec za urejanje profila ni bil najden"
|
5186 |
+
|
5187 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21
|
5188 |
+
msgid "No Edit-profile Forms found in trash"
|
5189 |
+
msgstr "Noben obrazec za urejanje profila ni bil najden v smeteh"
|
5190 |
+
|
5191 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135
|
5192 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:138
|
5193 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2115
|
5194 |
+
msgid "Shortcode"
|
5195 |
+
msgstr "Kratka koda (shortcode)"
|
5196 |
+
|
5197 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155
|
5198 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:159
|
5199 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2136
|
5200 |
+
msgid "(no title)"
|
5201 |
+
msgstr "(brez naslova)"
|
5202 |
+
|
5203 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175
|
5204 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:178
|
5205 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2156
|
5206 |
+
msgid "The shortcode will be available after you publish this form."
|
5207 |
+
msgstr "Kratka koda (shortcode) bo na voljo po objavi tega obrazca."
|
5208 |
+
|
5209 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177
|
5210 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:180
|
5211 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2158
|
5212 |
+
msgid "Use this shortcode on the page you want the form to be displayed:"
|
5213 |
+
msgstr "Uporabite to kratko kodo (shortcode) na strani, kjer hočete, da se prikaže obrazec:"
|
5214 |
+
|
5215 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181
|
5216 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:184
|
5217 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2162
|
5218 |
+
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
5219 |
+
msgstr "<span style=\"color:red;\">Opomba:</span> sprememba naslova obrazca spremeni tudi kratko kodo (shortcode)!"
|
5220 |
+
|
5221 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187
|
5222 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:190
|
5223 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2195
|
5224 |
+
msgid "Form Shortcode"
|
5225 |
+
msgstr "Kratka koda (shortcode) obrazca"
|
5226 |
+
|
5227 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
|
5228 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
|
5229 |
+
msgid "Whether to redirect the user to a specific page or not"
|
5230 |
+
msgstr "Ali preusmeriti uporabnika na določeno stran ali ne"
|
5231 |
+
|
5232 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
|
5233 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
|
5234 |
+
msgid "Display Messages"
|
5235 |
+
msgstr "Prikazna sporočila"
|
5236 |
+
|
5237 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
|
5238 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
|
5239 |
+
msgid "Allowed time to display any success messages (in seconds)"
|
5240 |
+
msgstr "Dovoljen čas prikaza kakršnihkoli sporočil o uspehu (v sekundah)"
|
5241 |
+
|
5242 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
|
5243 |
+
msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
|
5244 |
+
msgstr "Določite spletno povezavo strani, na katero bodo preusmerjeni uporabniki, ko posodobijo svoj profil preko tega obrazca<br/>Uporabite naslednji format: http://www.mysite.com"
|
5245 |
+
|
5246 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
|
5247 |
+
msgid "After Profile Update..."
|
5248 |
+
msgstr "Po posodobitvi profila..."
|
5249 |
+
|
5250 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241
|
5251 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:262
|
5252 |
+
msgid "Add New Field to the List"
|
5253 |
+
msgstr "Dodaj novo polje na seznam"
|
5254 |
+
|
5255 |
+
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
|
5256 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
|
5257 |
+
msgid "Choose one of the supported fields you manage <a href=\""
|
5258 |
+
msgstr "Izberite eno izmed podprtih polj, s katerimi upravljate <a href=\""
|
5259 |
+
|
5260 |
+
#: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
|
5261 |
+
msgid "<pre>Title (Type)</pre>"
|
5262 |
+
msgstr "<pre>Naslov (Tip)</pre>"
|
5263 |
+
|
5264 |
+
#: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222
|
5265 |
+
msgid "You need to specify the title of the form before creating it"
|
5266 |
+
msgstr "Navesti morate naslov obrazca preden ga lahko ustvarite"
|
5267 |
+
|
5268 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:11
|
5269 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:12
|
5270 |
+
msgid "Registration Form"
|
5271 |
+
msgstr "Registracijski obrazec"
|
5272 |
+
|
5273 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:14
|
5274 |
+
msgid "Add new Registration Form"
|
5275 |
+
msgstr "Dodaj nov registracijski obrazec"
|
5276 |
+
|
5277 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:15
|
5278 |
+
msgid "Edit the Registration Forms"
|
5279 |
+
msgstr "Uredite registracijske obrazce"
|
5280 |
+
|
5281 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:16
|
5282 |
+
msgid "New Registration Form"
|
5283 |
+
msgstr "Nov registracijski obrazec"
|
5284 |
+
|
5285 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:17
|
5286 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:23
|
5287 |
+
msgid "Registration Forms"
|
5288 |
+
msgstr "Registracijski obrazci"
|
5289 |
+
|
5290 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:18
|
5291 |
+
msgid "View the Registration Form"
|
5292 |
+
msgstr "Preglej registracijske obrazce"
|
5293 |
+
|
5294 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:19
|
5295 |
+
msgid "Search the Registration Forms"
|
5296 |
+
msgstr "Išči med registracijskimi obrazci"
|
5297 |
+
|
5298 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:20
|
5299 |
+
msgid "No Registration Form found"
|
5300 |
+
msgstr "Noben registracijski obrazec ni bil najden"
|
5301 |
+
|
5302 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:21
|
5303 |
+
msgid "No Registration Forms found in trash"
|
5304 |
+
msgstr "Noben registracijski obrazec ni bil najden v smeteh"
|
5305 |
+
|
5306 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:219
|
5307 |
+
msgid "Default Role"
|
5308 |
+
msgstr "Privzeta vloga"
|
5309 |
+
|
5310 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
|
5311 |
+
msgid "Set Role"
|
5312 |
+
msgstr "Nastavi vlogo"
|
5313 |
+
|
5314 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
|
5315 |
+
msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
|
5316 |
+
msgstr "Izberite katere vloge bo uporabnik imel, ko se registrira<br/>Če vloge niso določene bodo privzete vloge v nastavitvah WordPress"
|
5317 |
+
|
5318 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
|
5319 |
+
msgid "Automatically Log In"
|
5320 |
+
msgstr "Samodejna prijava"
|
5321 |
+
|
5322 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
|
5323 |
+
msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
|
5324 |
+
msgstr "Samodejna prijava novo ustvarjenih uporabnikov<br/>Deluje le na enojnih instalacijah brez aktiviranih funkcij \"Odobritev skrbnikov strani\" ter \"Potrditvena e-pošta\"<br/>OPOZORILO: Če je vključeno predpomnenje (caching) registracijskega obrazca samodejna prijava ne bo delovala"
|
5325 |
+
|
5326 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
|
5327 |
+
msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
|
5328 |
+
msgstr "Določite spletno povezavo na katero bodo preusmerjeni uporabniki ko se registrirajo s tem obrazcem<br/>Uporabite sledeči format: http://www.mysite.com"
|
5329 |
+
|
5330 |
+
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:238
|
5331 |
+
msgid "After Registration..."
|
5332 |
+
msgstr "Po registraciji..."
|
5333 |
+
|
5334 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1038
|
5335 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1485
|
5336 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1953
|
5337 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2426
|
5338 |
+
msgid "Search Users by All Fields"
|
5339 |
+
msgstr "Išči uporabnike po vseh poljih"
|
5340 |
+
|
5341 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:14
|
5342 |
+
msgid "Add new User Listing"
|
5343 |
+
msgstr "Dodaj nov seznam uporabnikov"
|
5344 |
+
|
5345 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:15
|
5346 |
+
msgid "Edit the User Listing"
|
5347 |
+
msgstr "Uredi seznam uporabnikov"
|
5348 |
+
|
5349 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:16
|
5350 |
+
msgid "New User Listing"
|
5351 |
+
msgstr "Nov seznam uporabnikov"
|
5352 |
+
|
5353 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:18
|
5354 |
+
msgid "View the User Listing"
|
5355 |
+
msgstr "Oglej si seznam uporabnikov"
|
5356 |
+
|
5357 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:19
|
5358 |
+
msgid "Search the User Listing"
|
5359 |
+
msgstr "Išči po seznamu uporabnikov"
|
5360 |
+
|
5361 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:20
|
5362 |
+
msgid "No User Listing found"
|
5363 |
+
msgstr "Noben seznam uporabnikov ni bil najden"
|
5364 |
+
|
5365 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:21
|
5366 |
+
msgid "No User Listing found in trash"
|
5367 |
+
msgstr "Noben seznam uporabnikov ni bil najden v smeteh"
|
5368 |
+
|
5369 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:105
|
5370 |
+
msgid "Display name as"
|
5371 |
+
msgstr "Prikaži ime kot"
|
5372 |
+
|
5373 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:150
|
5374 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2223
|
5375 |
+
msgid "Registration Date"
|
5376 |
+
msgstr "Datum registracije"
|
5377 |
+
|
5378 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:151
|
5379 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2228
|
5380 |
+
msgid "Number of Posts"
|
5381 |
+
msgstr "Število objav"
|
5382 |
+
|
5383 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:155
|
5384 |
+
msgid "More Info"
|
5385 |
+
msgstr "Več informacij"
|
5386 |
+
|
5387 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:156
|
5388 |
+
msgid "More Info Url"
|
5389 |
+
msgstr "Povezava do več informacij"
|
5390 |
+
|
5391 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:157
|
5392 |
+
msgid "Avatar or Gravatar"
|
5393 |
+
msgstr "Prikazna slika ali globalno prepoznavna prikazna slika (gravatar)"
|
5394 |
+
|
5395 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:196
|
5396 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:227
|
5397 |
+
msgid "Extra Functions"
|
5398 |
+
msgstr "Dodatne funkcije"
|
5399 |
+
|
5400 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:199
|
5401 |
+
msgid "Pagination"
|
5402 |
+
msgstr "Oštevilčenje strani"
|
5403 |
+
|
5404 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:200
|
5405 |
+
msgid "Search all Fields"
|
5406 |
+
msgstr "Išči po vseh poljih"
|
5407 |
+
|
5408 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:229
|
5409 |
+
msgid "Go Back Link"
|
5410 |
+
msgstr "Vrni se nazaj"
|
5411 |
+
|
5412 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:247
|
5413 |
+
msgid "All-userlisting Template"
|
5414 |
+
msgstr "Predloga za seznam vseh uporabnikov"
|
5415 |
+
|
5416 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:250
|
5417 |
+
msgid "Single-userlisting Template"
|
5418 |
+
msgstr "Predloga za seznam enega uporabnika"
|
5419 |
+
|
5420 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:733
|
5421 |
+
msgid "First/Lastname"
|
5422 |
+
msgstr "Ime/Priimek"
|
5423 |
+
|
5424 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:281
|
5425 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:739
|
5426 |
+
msgid "Sign-up Date"
|
5427 |
+
msgstr "Datum registracije"
|
5428 |
+
|
5429 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:748
|
5430 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2226
|
5431 |
+
msgid "Display Name"
|
5432 |
+
msgstr "Prikazno ime"
|
5433 |
+
|
5434 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:280
|
5435 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:757
|
5436 |
+
msgid "Posts"
|
5437 |
+
msgstr "Objave"
|
5438 |
+
|
5439 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:760
|
5440 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2233
|
5441 |
+
msgid "Aim"
|
5442 |
+
msgstr "Aim"
|
5443 |
+
|
5444 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:763
|
5445 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2234
|
5446 |
+
msgid "Yim"
|
5447 |
+
msgstr "Yim"
|
5448 |
+
|
5449 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:766
|
5450 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2235
|
5451 |
+
msgid "Jabber"
|
5452 |
+
msgstr "Jabber"
|
5453 |
+
|
5454 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1290
|
5455 |
+
msgid "Click here to see more information about this user"
|
5456 |
+
msgstr "Kliknite tukaj za več informacij o uporabniku"
|
5457 |
+
|
5458 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1290
|
5459 |
+
msgid "More..."
|
5460 |
+
msgstr "Več..."
|
5461 |
+
|
5462 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1293
|
5463 |
+
msgid "Click here to see more information about this user."
|
5464 |
+
msgstr "Kliknite tukaj za več informacij o uporabniku"
|
5465 |
+
|
5466 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1439
|
5467 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1442
|
5468 |
+
msgid "Click here to go back"
|
5469 |
+
msgstr "Kliknite tukaj za korak nazaj"
|
5470 |
+
|
5471 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1439
|
5472 |
+
msgid "Back"
|
5473 |
+
msgstr "Nazaj"
|
5474 |
+
|
5475 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1472
|
5476 |
+
msgid "«« First"
|
5477 |
+
msgstr "«« Prvi"
|
5478 |
+
|
5479 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1473
|
5480 |
+
msgid "« Prev"
|
5481 |
+
msgstr "« Prejšnji"
|
5482 |
+
|
5483 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1474
|
5484 |
+
msgid "Next » "
|
5485 |
+
msgstr "Naslednji » "
|
5486 |
+
|
5487 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1475
|
5488 |
+
msgid "Last »»"
|
5489 |
+
msgstr "Zadnji »»"
|
5490 |
+
|
5491 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1504
|
5492 |
+
msgid "You don't have any pagination settings on this userlisting!"
|
5493 |
+
msgstr "Na temu seznamu uporabnikov ni nobenega oštevilčenja strani!"
|
5494 |
+
|
5495 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1970
|
5496 |
+
msgid "Search"
|
5497 |
+
msgstr "Išči"
|
5498 |
+
|
5499 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:1971
|
5500 |
+
msgid "Clear Results"
|
5501 |
+
msgstr "Počisti rezultate"
|
5502 |
+
|
5503 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2165
|
5504 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2169
|
5505 |
+
msgid "Extra shortcode parameters"
|
5506 |
+
msgstr "Dodatni parametri kratke kode (shortcode)"
|
5507 |
+
|
5508 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2172
|
5509 |
+
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
5510 |
+
msgstr "prikaži uporabnike z določeno meta-vrednostjo znotraj (dodatnega) meta-polja"
|
5511 |
+
|
5512 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2173
|
5513 |
+
msgid "Example:"
|
5514 |
+
msgstr "Primer:"
|
5515 |
+
|
5516 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2175
|
5517 |
+
msgid "Remember though, that the field-value combination must exist in the database."
|
5518 |
+
msgstr "Ne pozabite, da mora v bazi obstajati par polje-vrednost"
|
5519 |
+
|
5520 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2250
|
5521 |
+
msgid "Random (very slow on large databases > 10K user)"
|
5522 |
+
msgstr "Naključno (zelo počasno pri velikih bazah > 10k uporabnikov)"
|
5523 |
+
|
5524 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2262
|
5525 |
+
msgid "Roles to Display"
|
5526 |
+
msgstr "Vloge za prikaz"
|
5527 |
+
|
5528 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2262
|
5529 |
+
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
5530 |
+
msgstr "Omeji seznam uporabnikov samo na izbrane vloge<br/>Če niso izbrane, vzami privzeto vse vloge"
|
5531 |
+
|
5532 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2263
|
5533 |
+
msgid "Number of Users/Page"
|
5534 |
+
msgstr "Število uporabnikov/strani"
|
5535 |
+
|
5536 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2264
|
5537 |
+
msgid "Default Sorting Criteria"
|
5538 |
+
msgstr "Privzeti kriterij za razvrščanje"
|
5539 |
+
|
5540 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2264
|
5541 |
+
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
5542 |
+
msgstr "Nastavi privzeti kriterij za razvrščanje<br/>To je lahko začasno nastavljeno za vsako novo sejo"
|
5543 |
+
|
5544 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2265
|
5545 |
+
msgid "Default Sorting Order"
|
5546 |
+
msgstr "Privzeti vrstni red"
|
5547 |
+
|
5548 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2265
|
5549 |
+
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
5550 |
+
msgstr "Nastavi privzeti vrstni red<br/>To je lahko začasno nastavljeno za vsako novo sejo"
|
5551 |
+
|
5552 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2266
|
5553 |
+
msgid "Avatar Size (All-userlisting)"
|
5554 |
+
msgstr "Velikost prikazne slike (vsi seznami uporabnikov)"
|
5555 |
+
|
5556 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2266
|
5557 |
+
msgid "Set the avatar size on the all-userlisting only"
|
5558 |
+
msgstr "Nastavi velikost prikazne slike samo na vseobsegajočih seznamih uporabnikov"
|
5559 |
+
|
5560 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2267
|
5561 |
+
msgid "Avatar Size (Single-userlisting)"
|
5562 |
+
msgstr "Velikost prikazne slike (enojni seznam uporabnikov)"
|
5563 |
+
|
5564 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2267
|
5565 |
+
msgid "Set the avatar size on the single-userlisting only"
|
5566 |
+
msgstr "Nastavi prikazno sliko samo na enojnih seznamih uporabnikov"
|
5567 |
+
|
5568 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2268
|
5569 |
+
msgid "Visible only to logged in users?"
|
5570 |
+
msgstr "Vidno samo prijavljenim uporabnikom?"
|
5571 |
+
|
5572 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2268
|
5573 |
+
msgid "The userlisting will only be visible only to the logged in users"
|
5574 |
+
msgstr "Seznam uporabnikov bo viden samo prijavljenim uporabnikom"
|
5575 |
+
|
5576 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2269
|
5577 |
+
msgid "Visible to following Roles"
|
5578 |
+
msgstr "Vidno naslednjim vlogam"
|
5579 |
+
|
5580 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2269
|
5581 |
+
msgid "The userlisting will only be visible to the following roles"
|
5582 |
+
msgstr "Seznam uporabnikov bo viden samo naslednjim vlogam"
|
5583 |
+
|
5584 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2275
|
5585 |
+
msgid "Userlisting Settings"
|
5586 |
+
msgstr "Nastavitve seznama uporabnikov"
|
5587 |
+
|
5588 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2402
|
5589 |
+
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
5590 |
+
msgstr "Aktivirati morate možnost seznamov uporabnikov v zavihku \"Moduli\""
|
5591 |
+
|
5592 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2402
|
5593 |
+
msgid "You can find it in the Profile Builder menu."
|
5594 |
+
msgstr "Najdete ga lahko v Profile Builder meniju"
|
5595 |
+
|
5596 |
+
#: profile-builder-2.0/modules/user-listing/userlisting.php:2565
|
5597 |
+
msgid "No results found!"
|
5598 |
+
msgstr "Brez rezultatov!"
|